:root {
    --green: #123c2b;
    --green-2: #1f5a3d;
    --lime: #c7e86c;
    --orange: #ff7a1a;
    --cream: #f5f1e7;
    --ink: #142019;
    --muted: #67746d;
    --white: #fff;
    --line: #dbe0d9;
    --shadow: 0 24px 70px rgba(18, 60, 43, .16);
    --radius: 26px;
    --container: 1180px;
    --ease: cubic-bezier(.2, .75, .25, 1)
}

* {
    box-sizing: border-box
}

html {
    scroll-behavior: smooth
}

body {
    margin: 0;
    font-family: "DM Sans", sans-serif;
    color: var(--ink);
    background: #fff;
    line-height: 1.55;
    overflow-x: hidden
}

img {
    max-width: 100%;
    display: block
}

a {
    color: inherit;
    text-decoration: none
}

button {
    font: inherit
}

.container {
    width: min(var(--container), calc(100% - 40px));
    margin-inline: auto
}

.skip-link {
    position: fixed;
    z-index: 1000;
    top: 10px;
    left: 10px;
    padding: 10px 16px;
    background: #fff;
    transform: translateY(-150%);
    border-radius: 8px
}

.skip-link:focus {
    transform: none
}

.header {
    position: absolute;
    z-index: 100;
    width: 100%;
    top: 0;
    padding: 24px 0;
    color: #fff
}

.nav-wrap {
    display: flex;
    align-items: center;
    justify-content: space-between
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px
}

.brand-mark {
    width: 46px;
    height: 46px;
    display: grid;
    place-items: center;
    border: 1px solid rgba(255, 255, 255, .35);
    border-radius: 50%;
    font-family: Manrope, sans-serif;
    font-size: 14px;
    font-weight: 800
}

.brand>span:last-child {
    display: flex;
    flex-direction: column;
    line-height: 1.15
}

.brand strong {
    font: 700 16px Manrope, sans-serif
}

.brand small {
    text-transform: uppercase;
    letter-spacing: .14em;
    font-size: 8px;
    margin-top: 4px;
    opacity: .72
}

.header nav {
    display: flex;
    align-items: center;
    gap: 30px;
    font-size: 14px
}

.header nav>a:not(.nav-cta) {
    opacity: .8;
    transition: .2s
}

.header nav>a:hover {
    opacity: 1
}

.nav-cta {
    padding: 12px 20px;
    border: 1px solid rgba(255, 255, 255, .45);
    border-radius: 99px
}

.menu-button {
    display: none;
    background: transparent;
    border: 0
}

.hero {
    position: relative;
    background: var(--green);
    color: #fff;
    min-height: 840px;
    padding-top: 150px;
    overflow: hidden
}

.hero:before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 18% 25%, rgba(199, 232, 108, .1), transparent 30%), linear-gradient(115deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
    background-size: auto, 62px 62px
}

.hero-glow {
    position: absolute;
    width: 540px;
    height: 540px;
    border: 1px solid rgba(199, 232, 108, .16);
    border-radius: 50%;
    right: -80px;
    top: 90px
}

.hero-glow:before,
.hero-glow:after {
    content: "";
    position: absolute;
    border: inherit;
    border-radius: inherit;
    inset: 60px
}

.hero-glow:after {
    inset: 120px
}

.hero-grid {
    position: relative;
    display: grid;
    grid-template-columns: 1.08fr .92fr;
    gap: 50px;
    align-items: center
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    text-transform: uppercase;
    letter-spacing: .16em;
    font: 700 11px Manrope, sans-serif;
    color: var(--lime)
}

.eyebrow i {
    width: 24px;
    height: 1px;
    background: currentColor
}

.eyebrow.dark {
    color: var(--green-2)
}

.eyebrow.light {
    color: var(--lime)
}

h1,
h2,
h3 {
    font-family: Manrope, sans-serif;
    margin: 0;
    line-height: 1.05
}

h1 {
    font-size: clamp(48px, 5.6vw, 78px);
    letter-spacing: -.05em;
    max-width: 720px;
    margin: 24px 0
}

h1 em,
h2 em {
    font-style: normal;
    color: var(--lime)
}

.hero-lead {
    font-size: 18px;
    color: rgba(255, 255, 255, .72);
    max-width: 600px
}

.hero-actions {
    display: flex;
    align-items: center;
    gap: 28px;
    margin-top: 34px
}

.button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 34px;
    border-radius: 99px;
    padding: 17px 22px;
    font-weight: 700;
    transition: transform .25s var(--ease), box-shadow .25s
}

.button:hover {
    transform: translateY(-3px)
}

.button b {
    font-size: 19px
}

.button-primary {
    background: var(--orange);
    box-shadow: 0 14px 34px rgba(255, 122, 26, .25)
}

.text-link {
    font-size: 14px;
    border-bottom: 1px solid rgba(255, 255, 255, .3);
    padding-bottom: 4px
}

.text-link span {
    margin-left: 8px
}

.trust-row {
    display: flex;
    gap: 36px;
    margin-top: 58px;
    padding-top: 28px;
    border-top: 1px solid rgba(255, 255, 255, .12)
}

.trust-row div {
    display: flex;
    flex-direction: column
}

.trust-row strong {
    font: 700 16px Manrope, sans-serif
}

.trust-row span {
    font-size: 11px;
    color: rgba(255, 255, 255, .54);
    margin-top: 2px
}

.hero-visual {
    position: relative;
    height: 620px
}

.portrait-frame {
    position: absolute;
    inset: 0 0 0 45px;
    border-radius: 220px 220px 28px 28px;
    overflow: hidden
}

.portrait-frame:after {
    content: "";
    position: absolute;
    inset: 10px;
    border: 1px solid rgba(255, 255, 255, .18);
    border-radius: inherit
}

.portrait-frame img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center
}

.portrait-shade {
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(18, 60, 43, .46), transparent 36%)
}

.floating-card {
    position: absolute;
    z-index: 2;
    background: rgba(255, 255, 255, .96);
    color: var(--ink);
    border-radius: 16px;
    padding: 14px 17px;
    box-shadow: var(--shadow);
    display: flex;
    align-items: center;
    gap: 12px;
    backdrop-filter: blur(10px)
}

.floating-card div {
    display: flex;
    flex-direction: column
}

.floating-card strong {
    font: 700 13px Manrope, sans-serif
}

.floating-card small {
    color: var(--muted);
    font-size: 10px
}

.approval-card {
    left: 0;
    top: 125px
}

.check {
    width: 32px;
    height: 32px;
    background: var(--green);
    color: var(--lime);
    display: grid;
    place-items: center;
    border-radius: 50%
}

.contact-card {
    right: -20px;
    bottom: 78px
}

.pulse {
    width: 10px;
    height: 10px;
    background: #3ccc6b;
    border-radius: 50%;
    box-shadow: 0 0 0 6px rgba(60, 204, 107, .14)
}

.hero-ticker {
    position: absolute;
    bottom: 0;
    width: 100%;
    border-block: 1px solid rgba(255, 255, 255, .11);
    padding: 15px 0;
    overflow: hidden;
    color: rgba(255, 255, 255, .45);
    text-transform: uppercase;
    letter-spacing: .13em;
    font: 600 10px Manrope, sans-serif;
    white-space: nowrap
}

.hero-ticker div {
    display: flex;
    justify-content: space-around;
    min-width: 900px
}

.hero-ticker b {
    color: var(--orange)
}

.section {
    padding: 120px 0
}

.section-heading {
    display: flex;
    align-items: end;
    justify-content: space-between;
    margin-bottom: 58px
}

.section-heading h2,
.about h2,
.faq h2 {
    font-size: clamp(40px, 5vw, 64px);
    letter-spacing: -.05em;
    margin-top: 18px
}

.section-heading h2 em,
.about h2 em,
.faq h2 em {
    color: var(--green-2)
}

.section-heading>p {
    max-width: 410px;
    color: var(--muted);
    font-size: 16px
}

.solutions {
    background: var(--cream)
}

.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px
}

.service-card {
    position: relative;
    min-height: 340px;
    padding: 30px;
    border: 1px solid #d9ded6;
    background: rgba(255, 255, 255, .6);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    transition: .35s var(--ease);
    overflow: hidden
}

.service-card:hover {
    transform: translateY(-6px);
    background: #fff;
    box-shadow: 0 22px 50px rgba(30, 70, 48, .11)
}

.service-card.featured {
    background: var(--green);
    color: #fff;
    border-color: var(--green)
}

.service-number {
    font: 600 10px Manrope, sans-serif;
    letter-spacing: .12em;
    opacity: .45
}

.service-icon {
    position: absolute;
    right: 26px;
    top: 22px;
    width: 50px;
    height: 50px;
    border: 1px solid currentColor;
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--green-2);
    font-size: 24px
}

.featured .service-icon {
    color: var(--lime)
}

.service-card h3 {
    font-size: 23px;
    max-width: 230px;
    margin-top: 72px
}

.service-card p {
    font-size: 14px;
    color: var(--muted);
    max-width: 290px
}

.featured p {
    color: rgba(255, 255, 255, .65)
}

.service-card a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-top: 1px solid rgba(95, 110, 100, .24);
    padding-top: 16px;
    margin-top: auto;
    font-size: 13px;
    font-weight: 700
}

.featured a {
    border-color: rgba(255, 255, 255, .16);
    color: var(--lime)
}

.process {
    background: #173f2e;
    color: #fff
}

.process-grid {
    display: grid;
    grid-template-columns: .88fr 1.12fr;
    gap: 90px;
    align-items: center
}

.process-photo {
    height: 680px;
    border-radius: 220px 220px 24px 24px;
    overflow: hidden;
    position: relative
}

.process-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.process-photo:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(4, 24, 15, .78), transparent 40%)
}

.photo-caption {
    position: absolute;
    z-index: 2;
    bottom: 34px;
    left: 34px;
    display: flex;
    flex-direction: column
}

.photo-caption strong {
    font: 700 20px Manrope
}

.photo-caption span {
    font-size: 12px;
    opacity: .65
}

.process-copy h2 {
    font-size: clamp(44px, 5vw, 66px);
    letter-spacing: -.05em;
    margin: 18px 0 42px
}

.steps {
    list-style: none;
    margin: 0 0 36px;
    padding: 0
}

.steps li {
    display: grid;
    grid-template-columns: 48px 1fr;
    gap: 22px;
    padding: 23px 0;
    border-top: 1px solid rgba(255, 255, 255, .12)
}

.steps>li>span {
    width: 40px;
    height: 40px;
    border: 1px solid rgba(199, 232, 108, .5);
    border-radius: 50%;
    display: grid;
    place-items: center;
    color: var(--lime);
    font: 700 10px Manrope
}

.steps h3 {
    font-size: 18px;
    margin: 2px 0 8px
}

.steps p {
    margin: 0;
    color: rgba(255, 255, 255, .58);
    font-size: 14px;
    max-width: 490px
}

.button-light {
    background: #fff;
    color: var(--green)
}

.about {
    background: #fff
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr .86fr;
    gap: 90px;
    align-items: center
}

.about-copy>p {
    color: var(--muted);
    max-width: 570px
}

.about-lead {
    font-size: 20px !important;
    color: var(--ink) !important;
    margin-top: 30px
}

.about blockquote {
    font: 600 22px/1.4 Manrope, sans-serif;
    color: var(--green);
    border-left: 3px solid var(--orange);
    margin: 34px 0;
    padding-left: 24px;
    max-width: 560px
}

.signature {
    font: 700 20px Manrope;
    color: var(--green);
    display: flex;
    flex-direction: column
}

.signature span {
    font: 500 9px "DM Sans";
    text-transform: uppercase;
    letter-spacing: .18em;
    color: var(--muted);
    margin-top: 4px
}

.about-photo {
    position: relative;
    height: 650px;
    border-radius: 24px;
    overflow: hidden
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.about-photo:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(0deg, rgba(18, 60, 43, .38), transparent 35%)
}

.photo-stamp {
    position: absolute;
    z-index: 2;
    right: 22px;
    bottom: 22px;
    width: 130px;
    height: 130px;
    background: var(--orange);
    color: #fff;
    border-radius: 50%;
    display: grid;
    place-content: center;
    text-align: center;
    text-transform: uppercase;
    font-size: 9px;
    letter-spacing: .12em;
    transform: rotate(-8deg)
}

.photo-stamp strong {
    font: 800 17px Manrope;
    letter-spacing: 0
}

.faq {
    background: var(--cream)
}

.faq-grid {
    display: grid;
    grid-template-columns: .8fr 1.2fr;
    gap: 90px
}

.faq-intro>p {
    color: var(--muted)
}

details {
    border-top: 1px solid #cbd2c9;
    padding: 24px 0
}

details:last-child {
    border-bottom: 1px solid #cbd2c9
}

summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font: 700 17px Manrope
}

summary::-webkit-details-marker {
    display: none
}

summary span {
    font-size: 25px;
    font-weight: 400;
    transition: .2s
}

details[open] summary span {
    transform: rotate(45deg)
}

details p {
    color: var(--muted);
    margin: 14px 40px 0 0;
    font-size: 14px
}

.final-cta {
    background: var(--green);
    color: #fff;
    padding: 110px 0;
    text-align: center;
    position: relative;
    overflow: hidden
}

.final-cta:before {
    content: "";
    position: absolute;
    width: 650px;
    height: 650px;
    border: 1px solid rgba(199, 232, 108, .1);
    border-radius: 50%;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    box-shadow: 0 0 0 80px rgba(199, 232, 108, .03), 0 0 0 160px rgba(199, 232, 108, .02)
}

.final-cta-inner {
    position: relative
}

.final-cta h2 {
    font-size: clamp(44px, 6vw, 76px);
    letter-spacing: -.055em;
    margin: 18px 0
}

.final-cta p {
    color: rgba(255, 255, 255, .62);
    max-width: 580px;
    margin: 0 auto 32px
}

.button-orange {
    background: var(--orange);
    min-width: 250px
}

.final-cta small {
    display: block;
    margin-top: 16px;
    opacity: .48
}

footer {
    background: #0c281d;
    color: #fff;
    padding: 65px 0 24px
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr .7fr;
    align-items: center;
    padding-bottom: 45px
}

.brand-light .brand-mark {
    border-color: rgba(255, 255, 255, .25)
}

.footer-grid>p {
    font: 600 18px Manrope;
    color: rgba(255, 255, 255, .7)
}

.footer-contact {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 6px
}

.footer-contact a:first-child {
    font: 700 18px Manrope
}

.footer-contact a:last-child {
    font-size: 11px;
    color: var(--lime)
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .1);
    padding-top: 22px;
    display: flex;
    justify-content: space-between;
    color: rgba(255, 255, 255, .35);
    font-size: 10px
}

.whatsapp-float {
    position: fixed;
    z-index: 50;
    right: 20px;
    bottom: 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 8px 8px 8px 17px;
    background: #fff;
    color: var(--green);
    border-radius: 99px;
    box-shadow: 0 14px 40px rgba(0, 0, 0, .22);
    font-size: 12px;
    font-weight: 700
}

.whatsapp-float b {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    background: #29ad5f;
    color: #fff
}

.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .75s var(--ease), transform .75s var(--ease)
}

.reveal.visible {
    opacity: 1;
    transform: none
}

.delay-1 {
    transition-delay: .1s
}

.delay-2 {
    transition-delay: .2s
}

@media(max-width:900px) {
    .header nav {
        position: absolute;
        top: 80px;
        left: 20px;
        right: 20px;
        display: none;
        flex-direction: column;
        align-items: stretch;
        background: #fff;
        color: var(--ink);
        padding: 24px;
        border-radius: 16px;
        box-shadow: var(--shadow)
    }

    .header nav.open {
        display: flex
    }

    .menu-button {
        display: flex;
        flex-direction: column;
        gap: 5px;
        padding: 10px
    }

    .menu-button span {
        width: 24px;
        height: 2px;
        background: #fff
    }

    .hero {
        padding-top: 130px;
        min-height: auto
    }

    .hero-grid {
        grid-template-columns: 1fr
    }

    .hero-visual {
        height: 580px;
        max-width: 560px;
        width: 100%;
        margin: auto
    }

    .trust-row {
        margin-top: 38px
    }

    .hero-ticker {
        position: relative;
        margin-top: 70px
    }

    .section {
        padding: 85px 0
    }

    .solutions-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .section-heading {
        align-items: start;
        flex-direction: column;
        gap: 20px
    }

    .process-grid,
    .about-grid,
    .faq-grid {
        grid-template-columns: 1fr;
        gap: 55px
    }

    .process-photo {
        height: 570px;
        max-width: 520px;
        width: 100%;
        margin: auto
    }

    .process-copy {
        max-width: 650px
    }

    .about-photo {
        height: 600px;
        grid-row: 1
    }

    .footer-grid {
        grid-template-columns: 1fr 1fr
    }

    .footer-grid>p {
        display: none
    }
}

@media(max-width:600px) {
    .container {
        width: min(100% - 28px, var(--container))
    }

    .header {
        padding: 17px 0
    }

    .brand-mark {
        width: 40px;
        height: 40px
    }

    .hero {
        padding-top: 115px
    }

    .hero-grid {
        gap: 30px
    }

    h1 {
        font-size: clamp(39px, 11vw, 43px);
        line-height: 1.08;
        overflow-wrap: anywhere
    }

    .hero-lead {
        font-size: 16px
    }

    .hero-actions {
        align-items: flex-start;
        flex-direction: column;
        gap: 18px
    }

    .trust-row {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 10px
    }

    .trust-row strong {
        font-size: 14px
    }

    .trust-row span {
        font-size: 8px;
        line-height: 1.35
    }

    .hero-visual {
        height: 470px
    }

    .portrait-frame {
        left: 0;
        border-radius: 150px 150px 22px 22px
    }

    .approval-card {
        display: none
    }

    .contact-card {
        right: -4px;
        bottom: 30px
    }

    .section {
        padding: 72px 0
    }

    .section-heading h2,
    .about h2,
    .faq h2,
    .process-copy h2 {
        font-size: 42px
    }

    .solutions-grid {
        grid-template-columns: 1fr
    }

    .service-card {
        min-height: 300px
    }

    .process-photo {
        height: 480px
    }

    .about-photo {
        height: 520px
    }

    .about-grid {
        gap: 45px
    }

    .about-lead {
        font-size: 18px !important
    }

    .faq-grid {
        gap: 38px
    }

    .final-cta {
        padding: 85px 0
    }

    .final-cta h2 {
        font-size: 43px
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 30px
    }

    .footer-contact {
        align-items: flex-start
    }

    .footer-bottom {
        flex-direction: column;
        gap: 7px
    }

    .whatsapp-float span {
        display: none
    }

    .whatsapp-float {
        padding: 7px
    }

    .whatsapp-float b {
        width: 42px;
        height: 42px
    }
}

@media(max-width:600px) {
    .container {
        width: calc(100% - 28px)
    }

    h1 {
        font-size: clamp(36px, 9.8vw, 40px);
        max-width: 100%;
        overflow-wrap: normal
    }

    .hero-lead {
        font-size: 15px;
        max-width: 100%
    }

    .trust-row {
        gap: 8px
    }

    .trust-row div {
        min-width: 0
    }

    .trust-row strong {
        font-size: 13px
    }

    .trust-row span {
        font-size: 7px
    }
}

@media(prefers-reduced-motion:reduce) {
    html {
        scroll-behavior: auto
    }

    .reveal {
        opacity: 1;
        transform: none;
        transition: none
    }

    .button {
        transition: none
    }
}

/* Refined conversion system */
.nav-cta {
    padding: 11px 17px 11px 13px;
    border: 1px solid rgba(255, 255, 255, .28);
    background: rgba(255, 255, 255, .08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 9px;
    font-weight: 700;
    backdrop-filter: blur(12px);
    transition: .25s var(--ease)
}

.nav-cta:hover {
    background: #fff;
    color: var(--green);
    transform: translateY(-1px)
}

.wa-dot {
    width: 9px;
    height: 9px;
    background: #37d675;
    border-radius: 50%;
    box-shadow: 0 0 0 4px rgba(55, 214, 117, .13)
}

.button {
    gap: 14px;
    border-radius: 16px;
    padding: 10px 10px 10px 12px;
    min-height: 66px
}

.button:focus-visible,
.nav-cta:focus-visible,
.whatsapp-float:focus-visible {
    outline: 3px solid var(--lime);
    outline-offset: 4px
}

.button-icon {
    width: 44px;
    height: 44px;
    display: grid;
    place-items: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, .15);
    flex: 0 0 auto
}

.button-icon svg {
    width: 22px;
    height: 22px;
    fill: currentColor
}

.button-copy {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    line-height: 1.18
}

.button-copy strong {
    font: 700 14px Manrope, sans-serif
}

.button-copy small {
    font: 500 9px "DM Sans", sans-serif;
    opacity: .68;
    margin-top: 4px
}

.button .button-arrow {
    width: 40px;
    height: 40px;
    display: grid;
    place-items: center;
    border-radius: 11px;
    background: rgba(255, 255, 255, .17);
    font-size: 19px;
    margin-left: 10px;
    transition: transform .25s
}

.button:hover .button-arrow {
    transform: translateX(3px)
}

.button-primary:hover {
    background: #ff852b;
    box-shadow: 0 18px 42px rgba(255, 122, 26, .34)
}

.button-light {
    box-shadow: 0 12px 35px rgba(0, 0, 0, .12)
}

.button-light .button-arrow {
    background: var(--cream)
}

.button-orange {
    background: #fff;
    color: var(--green);
    min-width: 370px;
    box-shadow: 0 18px 55px rgba(0, 0, 0, .22);
    text-align: left
}

.button-orange .button-icon {
    background: #27b460;
    color: #fff
}

.button-orange .button-arrow {
    background: var(--orange);
    color: #fff
}

.button-orange:hover {
    background: #fff;
    box-shadow: 0 24px 65px rgba(0, 0, 0, .3)
}

.cta-assurance {
    display: flex;
    justify-content: center;
    gap: 24px;
    margin-top: 20px;
    color: rgba(255, 255, 255, .62);
    font-size: 10px;
    letter-spacing: .03em
}

.whatsapp-float {
    gap: 12px;
    padding: 8px 8px 8px 16px;
    border: 1px solid rgba(18, 60, 43, .08);
    border-radius: 16px;
    box-shadow: 0 18px 50px rgba(9, 40, 28, .24);
    transition: .25s var(--ease)
}

.whatsapp-float:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 55px rgba(9, 40, 28, .3)
}

.whatsapp-float>span {
    display: flex;
    flex-direction: column;
    line-height: 1.15
}

.whatsapp-float small {
    font-size: 8px;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: #34a765;
    margin-bottom: 3px
}

.whatsapp-float b {
    width: 42px;
    height: 42px;
    border-radius: 12px
}

.whatsapp-float svg {
    width: 21px;
    height: 21px;
    fill: currentColor
}

@media(max-width:600px) {
    .button {
        width: 100%;
        max-width: 360px
    }

    .button-orange {
        min-width: 0
    }

    .cta-assurance {
        flex-wrap: wrap;
        gap: 7px 15px
    }

    .whatsapp-float>span {
        display: none
    }

    .whatsapp-float {
        padding: 7px;
        border-radius: 14px
    }

    .whatsapp-float b {
        width: 44px;
        height: 44px
    }

    .hero-actions {
        width: 100%
    }
}

/* Editorial service cards - Fileira de 3 Cards */
.solutions-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
}

.centered-card {
    grid-column: 2;
}

@media(max-width:1100px) {
    .centered-card {
        grid-column: auto;
    }
}

.service-card,
.service-card.featured {
    min-height: 0;
    height: auto;
    padding: 0;
    background: #fff;
    color: var(--ink);
    border: 1px solid rgba(18, 60, 43, .12);
    border-radius: 18px;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    box-shadow: 0 8px 25px rgba(18, 60, 43, .05);
    isolation: isolate;
    transition: transform .35s var(--ease), box-shadow .35s var(--ease), border-color .35s var(--ease);
}

.service-card:hover,
.service-card.featured:hover {
    background: #fff;
    transform: translateY(-7px);
    border-color: rgba(18, 60, 43, .28);
    box-shadow: 0 18px 40px rgba(18, 60, 43, .14);
}

.service-media {
    position: relative;
    height: 180px;
    flex: 0 0 180px;
    overflow: hidden;
    background: var(--green);
}

.service-media:after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(5, 30, 20, .02) 0%, rgba(5, 30, 20, .4) 100%);
    pointer-events: none;
}

.service-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transition: transform .6s var(--ease), filter .4s ease;
}

.service-card:hover .service-media img {
    transform: scale(1.06);
}

.service-tag {
    position: absolute;
    z-index: 2;
    left: 12px;
    bottom: 10px;
    padding: 5px 10px;
    background: rgba(255, 255, 255, .94);
    color: var(--green);
    border-radius: 99px;
    text-transform: uppercase;
    letter-spacing: .08em;
    font: 700 8.5px Manrope, sans-serif;
    box-shadow: 0 4px 10px rgba(0, 0, 0, .12);
    backdrop-filter: blur(8px);
}

.service-media .service-number {
    position: absolute;
    z-index: 2;
    right: 12px;
    top: 10px;
    width: 28px;
    height: 28px;
    display: grid;
    place-items: center;
    background: rgba(18, 60, 43, .85);
    border: 1px solid rgba(255, 255, 255, .3);
    border-radius: 50%;
    color: #fff;
    font-size: 9.5px;
    font-weight: 700;
    backdrop-filter: blur(8px);
}

.service-content {
    flex: 1;
    padding: 14px 14px 14px;
    display: flex;
    flex-direction: column;
}

.service-content h3 {
    font-size: 17px;
    line-height: 1.1;
    letter-spacing: -.03em;
    margin: 0;
    color: var(--ink);
}

.service-content p,
.featured .service-content p {
    font-size: 11.5px;
    line-height: 1.4;
    color: var(--muted);
    margin: 6px 0 10px;
    max-width: 100%;
}

.card-benefits {
    list-style: none;
    padding: 0;
    margin: 0 0 12px 0;
    display: flex;
    flex-direction: column;
    gap: 5px;
    border-top: 1px dashed rgba(18, 60, 43, .12);
    padding-top: 8px;
}

.card-benefits li {
    font-size: 10.5px;
    font-weight: 600;
    color: var(--ink);
    display: flex;
    align-items: center;
    gap: 6px;
    line-height: 1.25;
}

.check-icon {
    display: inline-grid;
    place-items: center;
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: rgba(41, 173, 95, .15);
    color: #1e8346;
    font-size: 10px;
    font-weight: 800;
    flex-shrink: 0;
}

.card-cta-button,
.service-content a,
.featured .service-content a {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    width: 100%;
    padding: 10px 12px;
    margin-top: auto;
    background: linear-gradient(135deg, #1fa357 0%, #157a40 100%);
    color: #ffffff !important;
    border-radius: 10px;
    font: 700 12px Manrope, sans-serif;
    text-decoration: none;
    box-shadow: 0 6px 18px rgba(31, 163, 87, 0.28);
    transition: all 0.3s var(--ease);
    border: none;
}

.card-cta-button:hover,
.service-content a:hover {
    background: linear-gradient(135deg, #ff7a1a 0%, #e66300 100%);
    box-shadow: 0 8px 24px rgba(255, 122, 26, 0.42);
    transform: translateY(-3px);
    color: #ffffff !important;
}

.card-cta-button b,
.service-content a b {
    width: 24px;
    height: 24px;
    display: grid;
    place-items: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.25);
    color: #ffffff;
    font-size: 13px;
    transition: transform .25s var(--ease), background .25s ease;
}

.card-cta-button:hover b,
.service-content a:hover b {
    background: rgba(255, 255, 255, 0.38);
    transform: translateX(4px);
}

@media(max-width:1100px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 18px;
    }

    .service-media {
        height: 180px;
        flex-basis: 180px;
    }
}

@media(max-width:600px) {
    .solutions-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 12px;
    }

    .service-media {
        height: 140px;
        flex-basis: 140px;
    }

    .service-content {
        padding: 12px 10px 10px;
    }

    .service-content h3 {
        font-size: 15px;
    }
}

/* Tighter portrait crop: the copy already provides the negative space */
.photo-stamp {
    display: none !important
}

.about-grid {
    grid-template-columns: minmax(0, 1fr) 390px;
    gap: 100px
}

.about-photo {
    width: 390px;
    height: 650px;
    justify-self: center;
    border-radius: 28px;
    overflow: hidden;
    clip-path: inset(0 round 28px)
}

.about-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center;
    transform: none;
    border-radius: inherit
}

.about-photo:after {
    background: linear-gradient(0deg, rgba(18, 60, 43, .16), transparent 28%)
}

@media(max-width:900px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 55px
    }

    .about-photo {
        width: min(100%, 420px);
        height: 590px;
        justify-self: center
    }

    .about-photo img {
        object-position: center;
        transform: none
    }
}

@media(max-width:600px) {
    .about-photo {
        width: 100%;
        height: 520px;
        border-radius: 22px;
        clip-path: inset(0 round 22px)
    }

    .about-photo img {
        transform: none;
        object-position: center
    }
}