.icon {
    color: var(--primary);
    font-family: var(--font-main);
    line-height: 1;
}

.icon::before {
    display: inline-block;
}

.icon-spark::before {
    content: "*";
}

.icon-phone::before {
    content: "tel";
}

.icon-chat::before {
    content: "msg";
}

.icon-calendar::before {
    content: "cal";
}

.icon-team::before {
    content: "eq";
}

.icon-alert::before {
    content: "!";
}

.icon-brain::before {
    content: "ia";
}

.icon-clock::before {
    content: "h";
}

.icon-calm::before {
    content: "ok";
}

.icon-heart::before {
    content: "+";
}

.hero,
.solution {
    display: grid;
    align-items: center;
    gap: 64px;
    padding: 128px 32px;
}

.hero {
    grid-template-columns: minmax(0, 7fr) minmax(0, 5fr);
}

.solution {
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 80px;
    padding-top: 96px;
    padding-bottom: 96px;
}

.hero-copy,
.solution-copy {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.hero-statement {
    position: relative;
    display: flex;
    max-width: 860px;
    flex-direction: column;
    gap: 24px;
    padding-left: 0;
    transition: transform 250ms ease;
}

.hero-statement:hover {
    transform: translateY(-2px);
}

.hero-statement::before {
    content: "";
    position: absolute;
    top: -18px;
    bottom: -18px;
    left: 0;
    width: 120px;
    border-radius: 9999px;
    background: rgba(0, 107, 44, 0.08);
    filter: blur(36px);
    transform: translateX(-35%);
    transition: background 250ms ease, filter 250ms ease;
}

.hero-statement:hover::before {
    background: rgba(0, 107, 44, 0.12);
    filter: blur(40px);
}

.hero-statement h1,
.hero-statement h2,
.solution h2,
.section-heading h2,
.how-it-works h2,
.cta-card h2 {
    margin: 0;
    font-family: var(--font-main);
    font-weight: 700;
    letter-spacing: -0.04em;
}

.hero-statement h1 {
    position: relative;
    z-index: 1;
    font-size: clamp(50px, 6.4vw, 70px);
    font-weight: 800;
    line-height: 0.92;
    transition: color 250ms ease;
}

.hero-statement h2 {
    position: relative;
    z-index: 1;
    max-width: 780px;
    color: var(--on-surface);
    font-size: clamp(40px, 5.4vw, 68px);
    font-weight: 800;
    line-height: 0.98;
    transition: color 250ms ease;
}

.hero-statement span {
    color: var(--primary);
    font-style: italic;
    font-weight: 800;
    transition: color 250ms ease;
}

.hero-statement:hover h1,
.hero-statement:hover h2 {
    color: #236b53;
}

.hero-statement:hover span {
    color: #4caf50;
}

.hero-statement h2 span {
    display: inline-block;
    padding: 0;
    border-radius: 0;
    background: none;
}

.hero-lead,
.solution-lead p {
    max-width: 576px;
    margin: 0;
    color: var(--secondary);
    font-size: 20px;
    line-height: 1.65;
    transition: transform 250ms ease, color 250ms ease;
}

.hero-lead:hover {
    transform: translateY(-2px);
    color: var(--on-surface);
}

.hero-lead {
    max-width: 680px;
    padding: 22px 26px;
    border-left: 4px solid var(--primary);
    border-radius: 18px;
    background: rgba(0, 107, 44, 0.06);
    color: var(--on-surface);
    font-size: clamp(20px, 2vw, 25px);
    font-weight: 700;
    line-height: 1.45;
}

.hero-notes {
    position: relative;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 680px;
    margin-top: -18px;
    padding-left: 0;
}

.hero-notes p {
    margin: 0;
    padding: 9px 14px;
    border: 1px solid rgba(0, 107, 44, 0.18);
    border-radius: 9999px;
    background: rgba(255, 255, 255, 0.65);
    color: rgba(28, 27, 27, 0.72);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.02em;
    backdrop-filter: blur(12px);
    transition: transform 250ms ease, border-color 250ms ease, box-shadow 250ms ease, color 250ms ease;
}

.hero-notes p:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 107, 44, 0.26);
    box-shadow: 0 18px 36px -28px rgba(28, 27, 27, 0.24);
    color: var(--on-surface);
}

.button-group {
    display: flex;
    gap: 16px;
    padding-top: 16px;
}

.btn-primary {
    padding: 16px 32px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-container) 100%);
    color: var(--on-primary);
    font-size: 18px;
    text-align: center;
    box-shadow: var(--editorial-shadow);
}

.btn-primary:hover {
    transform: scale(1.02);
}

.btn-secondary {
    padding: 16px 32px;
    background: var(--surface-container-highest);
    color: var(--primary);
    font-size: 18px;
    text-align: center;
    transition: transform 250ms ease, background 250ms ease, box-shadow 250ms ease;
}

.btn-secondary:hover {
    transform: translateY(-2px);
    background: var(--surface-container-high);
    box-shadow: 0 18px 40px -28px rgba(28, 27, 27, 0.22);
}

.hero-visual,
.solution-visual {
    position: relative;
}

.hero-visual {
    transition: transform 300ms ease;
}

.hero-visual:hover {
    transform: translateY(-3px);
}

.solution-visual {
    transition: transform 300ms ease;
}

.solution-visual:hover {
    transform: translateY(-3px);
}

.hero-image-card,
.solution-image-card,
.floating-card,
.stat-card,
.cta-card,
.step-number {
    box-shadow: var(--editorial-shadow);
}

.hero-image-card {
    position: relative;
    aspect-ratio: 1;
    overflow: hidden;
    border-radius: 24px;
    background: var(--surface-container-low);
    transition: box-shadow 300ms ease, transform 300ms ease;
}

.hero-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    mix-blend-mode: multiply;
    opacity: 0.8;
}

.image-gradient {
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(252, 249, 248, 0.4), transparent);
}

.floating-card {
    position: absolute;
    bottom: -32px;
    left: -32px;
    max-width: 240px;
    padding: 24px;
    border-radius: 16px;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(24px);
    transition: transform 300ms ease, box-shadow 300ms ease, background 300ms ease;
}

.hero-visual:hover .hero-image-card {
    transform: translateY(-2px);
    box-shadow: 0 36px 72px -24px rgba(28, 27, 27, 0.12);
}

.hero-visual:hover .floating-card {
    transform: translateY(-4px);
    box-shadow: 0 28px 56px -24px rgba(28, 27, 27, 0.18);
    background: rgba(255, 255, 255, 0.9);
}

.floating-card-title {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 8px;
    color: var(--primary);
    font-family: var(--font-main);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.floating-card p,
.pain-card p,
.solution-assurances p,
.benefit-card p,
.step p,
.footer-copy p {
    margin: 0;
}

.floating-card p {
    font-size: 14px;
    font-weight: 500;
    line-height: 1.4;
}

.section-muted {
    overflow: hidden;
    padding: 96px 32px;
    background: var(--surface-container-low);
}

.section-heading {
    margin-bottom: 64px;
}

.section-heading h2 {
    margin-bottom: 16px;
    font-size: clamp(30px, 4vw, 48px);
    transition: transform 250ms ease, color 250ms ease;
}

.section-heading:hover h2 {
    transform: translateY(-2px);
    color: #236b53;
}

.heading-rule {
    width: min(160px, 24vw);
    height: 4px;
    border-radius: 9999px;
    background: linear-gradient(90deg, var(--primary) 0%, rgba(0, 107, 44, 0.12) 100%);
    transition: width 300ms ease, background 300ms ease;
}

.section-heading:hover .heading-rule {
    width: min(240px, 36vw);
    background: linear-gradient(90deg, #4caf50 0%, rgba(0, 107, 44, 0.16) 100%);
}

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

.pain-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
    padding: 40px;
    border-radius: 24px;
    background: var(--surface-container-lowest);
    transition: transform 300ms ease;
}

.pain-card:hover {
    transform: translateY(-4px);
}

.pain-card-wide {
    grid-column: span 2;
}

.pain-card .icon {
    font-size: 40px;
    font-weight: 700;
    letter-spacing: -0.08em;
    text-transform: uppercase;
}

.pain-card-icon {
    width: 72px;
    height: 72px;
    align-self: center;
    object-fit: contain;
}

.pain-card p {
    font-size: 18px;
    font-weight: 600;
    line-height: 1.25;
}

.pain-conclusion {
    position: relative;
    max-width: 880px;
    margin: 36px auto 0;
    padding: 34px 42px;
    border-radius: 28px;
    background: linear-gradient(135deg, rgba(0, 107, 44, 0.1) 0%, rgba(255, 255, 255, 0.78) 100%);
    box-shadow: var(--editorial-shadow);
    text-align: center;
    transition: transform 250ms ease, box-shadow 250ms ease, background 250ms ease;
}

.pain-conclusion:hover {
    transform: translateY(-3px);
    background: linear-gradient(135deg, rgba(0, 107, 44, 0.14) 0%, rgba(255, 255, 255, 0.9) 100%);
    box-shadow: 0 28px 56px -28px rgba(28, 27, 27, 0.16);
}

.pain-conclusion::before {
    content: "";
    position: absolute;
    top: -36px;
    left: 50%;
    width: 2px;
    height: 36px;
    background: linear-gradient(180deg, rgba(0, 107, 44, 0), rgba(0, 107, 44, 0.45));
}

.pain-conclusion p {
    margin: 0;
    color: var(--on-surface);
    font-family: var(--font-main);
    font-size: clamp(28px, 3vw, 40px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.18;
    text-align: center;
}

.solution-image-card {
    aspect-ratio: 4 / 5;
    overflow: hidden;
    border-radius: 40px;
    transition: box-shadow 300ms ease, transform 300ms ease;
}

.solution-image-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.stat-card {
    position: absolute;
    right: 28px;
    bottom: 28px;
    max-width: 260px;
    padding: 22px 28px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    border-radius: 9999px;
    background: rgba(0, 107, 44, 0.88);
    backdrop-filter: blur(18px);
    color: #ffffff;
    transition: transform 300ms ease, box-shadow 300ms ease, background 300ms ease;
}

.solution-visual:hover .solution-image-card {
    transform: translateY(-2px);
    box-shadow: 0 36px 72px -24px rgba(28, 27, 27, 0.12);
}

.solution-visual:hover .stat-card {
    transform: translateY(-4px);
    box-shadow: 0 28px 56px -24px rgba(28, 27, 27, 0.18);
    background: rgba(0, 107, 44, 0.94);
}

.stat-card p {
    margin: 0 0 4px;
    font-family: var(--font-main);
    font-size: 40px;
    font-weight: 700;
}

.stat-card span {
    font-family: var(--font-main);
    font-size: 15px;
    font-weight: 800;
    letter-spacing: 0.12em;
    opacity: 1;
    text-transform: uppercase;
}

.solution h2 {
    font-size: clamp(40px, 5vw, 60px);
    transition: transform 250ms ease, color 250ms ease;
}

.solution-copy h2:hover {
    transform: translateY(-2px);
    color: var(--primary);
}

.solution-lead {
    display: flex;
    max-width: 640px;
    flex-direction: column;
    gap: 16px;
}

.solution-lead p {
    max-width: none;
    color: rgba(28, 27, 27, 0.82);
    font-size: clamp(20px, 1.7vw, 23px);
    font-weight: 650;
    line-height: 1.55;
    transition: transform 250ms ease, color 250ms ease;
}

.solution-lead p:hover {
    transform: translateY(-2px);
    color: var(--on-surface);
}

.solution-assurances {
    display: grid;
    max-width: 640px;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.solution-assurances p {
    display: flex;
    min-height: 104px;
    align-items: center;
    justify-content: center;
    padding: 18px 16px;
    border: 1px solid rgba(0, 107, 44, 0.16);
    border-radius: 18px;
    background: rgba(0, 107, 44, 0.06);
    color: var(--on-surface);
    font-size: 15px;
    font-weight: 800;
    line-height: 1.25;
    text-align: center;
    transition: transform 250ms ease, border-color 250ms ease, box-shadow 250ms ease, background 250ms ease;
}

.solution-assurances p:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 107, 44, 0.24);
    background: rgba(0, 107, 44, 0.1);
    box-shadow: 0 18px 40px -30px rgba(28, 27, 27, 0.22);
}

.cta_newsletter {
    display: flex;
    width: 100%;
    max-width: 980px;
    margin: 28px auto 96px;
    padding: 36px 42px;
    align-items: center;
    gap: 24px;
    border: 1px solid rgba(0, 107, 44, 0.14);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 20px 50px -28px rgba(28, 27, 27, 0.22);
    transform-origin: center center;
    transition: padding 300ms ease, gap 300ms ease, transform 300ms ease, box-shadow 300ms ease, background 300ms ease;
}

.cta_newsletter:hover {
    padding: 44px 50px;
    gap: 32px;
    transform: translateY(-3px) scale(1.03);
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 28px 56px -28px rgba(28, 27, 27, 0.24);
}

.cta_newsletter h2 {
    max-width: 340px;
    margin: 0;
    color: var(--on-surface);
    font-size: clamp(24px, 2.4vw, 34px);
    font-weight: 800;
    letter-spacing: -0.04em;
    line-height: 1.12;
    transition: transform 300ms ease, font-size 300ms ease;
}

.cta_newsletter:hover h2 {
    transform: scale(1.04);
}

.cta_newsletter p {
    margin: 0;
    color: rgba(28, 27, 27, 0.68);
    font-size: 16px;
    font-weight: 600;
    line-height: 1.5;
    transition: transform 300ms ease, font-size 300ms ease, color 300ms ease;
}

.cta_newsletter:hover p {
    transform: scale(1.03);
    color: rgba(28, 27, 27, 0.78);
}

.cta_newsletter p:first-of-type {
    flex: 1;
    max-width: 360px;
}

.cta_newsletter p:last-child {
    display: none;
}

.btn_principal {
    flex: 0 0 auto;
    padding: 13px 22px;
    border: 1px solid rgba(0, 107, 44, 0.22);
    border-radius: 9999px;
    background: rgba(0, 107, 44, 0.08);
    color: var(--primary);
    font-size: 15px;
    font-weight: 800;
    transition: background 250ms ease, color 250ms ease, transform 250ms ease, box-shadow 250ms ease;
}

.btn_principal:hover {
    background: var(--primary);
    color: var(--on-primary);
    transform: translateY(-1px);
}

.cta_newsletter:hover .btn_principal {
    transform: scale(1.04);
    box-shadow: 0 18px 40px -28px rgba(28, 27, 27, 0.24);
}

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

.benefit-card {
    display: flex;
    flex-direction: column;
    gap: 24px;
    padding: 28px 24px;
    border: 1px solid rgba(0, 107, 44, 0.1);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.82);
    box-shadow: 0 22px 52px -34px rgba(28, 27, 27, 0.24);
    transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease, background 250ms ease;
}

.benefit-card:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 107, 44, 0.18);
    background: rgba(255, 255, 255, 0.9);
    box-shadow: 0 28px 56px -34px rgba(28, 27, 27, 0.28);
}

.benefit-icon {
    display: flex;
    width: 96px;
    height: 96px;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background: rgba(0, 107, 44, 0.1);
    transition: transform 250ms ease, background 250ms ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.04);
    background: rgba(0, 107, 44, 0.14);
}

.benefit-icon img {
    width: 74px;
    height: 74px;
    object-fit: contain;
}

.benefit-icon .icon {
    font-size: 30px;
    font-weight: 700;
    text-transform: uppercase;
}

.benefit-card h3 {
    margin: 0;
    font-family: var(--font-main);
    font-size: 24px;
    font-weight: 700;
}

.benefit-card p {
    color: var(--secondary);
    line-height: 1.65;
}

.how-it-works {
    padding: 112px 32px;
}

.how-it-works h2 {
    margin-bottom: 64px;
    font-size: clamp(42px, 4.6vw, 64px);
    letter-spacing: -0.04em;
    text-align: center;
}

.steps {
    position: relative;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 28px;
}

.steps::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 0;
    z-index: -1;
    width: 100%;
    height: 2px;
    background: rgba(189, 202, 187, 0.3);
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 22px;
    padding: 38px 30px;
    border: 1px solid rgba(0, 107, 44, 0.12);
    border-radius: 28px;
    background: rgba(255, 255, 255, 0.72);
    box-shadow: 0 24px 56px -34px rgba(28, 27, 27, 0.28);
    text-align: center;
    transition: transform 250ms ease, box-shadow 250ms ease, border-color 250ms ease, background 250ms ease;
}

.step:hover {
    transform: translateY(-3px);
    border-color: rgba(0, 107, 44, 0.18);
    background: rgba(255, 255, 255, 0.86);
    box-shadow: 0 30px 60px -34px rgba(28, 27, 27, 0.3);
}

.step-number {
    display: flex;
    width: 62px;
    height: 62px;
    align-items: center;
    justify-content: center;
    border-radius: 9999px;
    background: var(--primary);
    color: var(--on-primary);
    font-size: 26px;
    font-weight: 800;
    transition: transform 250ms ease, box-shadow 250ms ease, background 250ms ease;
}

.step:hover .step-number {
    transform: scale(1.05);
    background: var(--primary-container);
    box-shadow: 0 18px 36px -24px rgba(28, 27, 27, 0.28);
}

.step h4 {
    margin: 0;
    font-size: clamp(24px, 2vw, 30px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
}

.step p {
    color: var(--secondary);
    font-size: 17px;
    font-weight: 600;
    line-height: 1.55;
}

.final-cta {
    padding: 88px 32px 112px;
}

.cta-card {
    position: relative;
    display: flex;
    max-width: 980px;
    margin: 0 auto;
    align-items: center;
    justify-content: space-between;
    gap: 36px;
    overflow: hidden;
    padding: 42px 48px;
    border: 1px solid rgba(0, 107, 44, 0.16);
    border-radius: 32px;
    background: linear-gradient(135deg, rgba(0, 107, 44, 0.1) 0%, rgba(255, 255, 255, 0.82) 100%);
    color: var(--on-surface);
    text-align: left;
    transform-origin: center center;
    transition: transform 300ms ease, box-shadow 300ms ease, background 300ms ease, border-color 300ms ease;
}

.cta-card:hover {
    transform: translateY(-3px) scale(1.03);
    border-color: rgba(0, 107, 44, 0.22);
    background: linear-gradient(135deg, rgba(0, 107, 44, 0.14) 0%, rgba(255, 255, 255, 0.9) 100%);
    box-shadow: 0 30px 60px -28px rgba(28, 27, 27, 0.22);
}

.cta-decoration {
    position: absolute;
    top: -90px;
    right: -80px;
    width: 220px;
    height: 220px;
    border-radius: 9999px;
    background: rgba(0, 107, 44, 0.12);
    filter: blur(54px);
}

.cta-copy {
    position: relative;
    max-width: 620px;
}

.cta-card h2 {
    position: relative;
    font-size: clamp(30px, 3.5vw, 44px);
    line-height: 1.08;
    transition: transform 300ms ease;
}

.cta-card:hover h2 {
    transform: scale(1.04);
}

.cta-card p {
    position: relative;
    max-width: 520px;
    margin: 14px 0 0;
    color: rgba(28, 27, 27, 0.72);
    font-size: 18px;
    font-weight: 600;
    line-height: 1.5;
    transition: transform 300ms ease, color 300ms ease;
}

.cta-card:hover p {
    transform: scale(1.03);
    color: rgba(28, 27, 27, 0.8);
}

.btn-cta {
    position: relative;
    flex: 0 0 auto;
    margin-top: 0;
    padding: 16px 26px;
    background: var(--primary);
    color: var(--on-primary);
    font-size: 17px;
    font-weight: 800;
    box-shadow: 0 16px 34px -20px rgba(0, 107, 44, 0.7);
    transition: transform 250ms ease, box-shadow 250ms ease, background 250ms ease;
}

.btn-cta:hover {
    transform: translateY(-2px);
}

.cta-card:hover .btn-cta {
    transform: scale(1.05);
    box-shadow: 0 22px 42px -22px rgba(0, 107, 44, 0.55);
}

@media (max-width: 1023px) {
    .hero,
    .solution {
        grid-template-columns: 1fr;
    }

    .solution-visual {
        order: 2;
    }

    .solution-copy {
        order: 1;
    }

    .pain-grid,
    .benefits,
    .solution-assurances,
    .steps {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .cta_newsletter {
        flex-wrap: wrap;
    }

    .cta_newsletter p:first-of-type {
        max-width: none;
    }

    .steps::before {
        display: none;
    }
}

@media (max-width: 767px) {
    .hero {
        padding-top: 80px;
        padding-bottom: 80px;
    }

    .hero,
    .solution,
    .section-muted,
    .how-it-works,
    .final-cta,
    footer {
        padding-left: 24px;
        padding-right: 24px;
    }

    .button-group,
    .cta_newsletter,
    .cta-card {
        flex-direction: column;
    }

    .button-group .btn {
        width: 100%;
    }

    .floating-card {
        left: 16px;
        right: 16px;
        bottom: -24px;
    }

    .stat-card {
        right: 16px;
        bottom: 16px;
        max-width: calc(100% - 32px);
    }

    .pain-grid,
    .benefits,
    .solution-assurances,
    .steps {
        grid-template-columns: 1fr;
    }

    .solution-assurances p {
        min-height: auto;
    }

    .cta_newsletter {
        width: auto;
        margin: 12px 24px 72px;
        padding: 28px 24px;
        align-items: center;
        text-align: center;
    }

    .btn_principal {
        width: 100%;
        text-align: center;
    }

    .pain-card-wide {
        grid-column: auto;
    }

    .cta-card {
        padding: 32px 24px;
        border-radius: 32px;
    }

    .btn-cta {
        width: 100%;
        text-align: center;
    }

}
