*,
*::before,
*::after {
    box-sizing: border-box;
}

:root {
    --emerald: #0a5c3a;
    --forest: #0d7a4f;
    --mid: #1a9963;
    --leaf: #2ebb7a;
    --mint: #6dd9a8;
    --sage: #a8edca;
    --foam: #e6f9f0;
    --pale: #f3fcf7;
    --gold: #e8a020;
    --amber: #d4880f;
    --cream: #fffbf3;
    --white: #ffffff;
    --ink: #0d1f17;
    --charcoal: #2d3a35;
    --muted: #566b5f;
    --border-clr: #d4ede1;

    --font-display: "Poppins", sans-serif;
    --font-body: "Plus Jakarta Sans", sans-serif;
    --font-mono: "JetBrains Mono", monospace;

    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --ease-spring: cubic-bezier(0.34, 1.56, 0.64, 1);

    --shadow-sm: 0 1px 4px rgba(10, 92, 58, 0.08);
    --shadow-md: 0 4px 20px rgba(10, 92, 58, 0.12);
    --shadow-lg: 0 16px 48px rgba(10, 92, 58, 0.16);
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: var(--font-body);
    background: var(--white);
    color: var(--ink);
    overflow-x: hidden;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}

/* ── REVEAL ANIMATIONS ─────────────── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition:
        opacity 0.7s var(--ease-out),
        transform 0.7s var(--ease-out);
}

.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── NAV ─────────────────────────────── */
.main-nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1.4rem 0;
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(8px);
    transition: all 0.35s var(--ease-out);
}

.main-nav.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(16px);
    box-shadow: 0 2px 32px rgba(10, 92, 58, 0.1);
    padding: 0.9rem 0;
    border-bottom: 1px solid var(--border-clr);
}

.nav-logo img {
    height: 48px;
    width: auto;
    transition: height 0.3s;
}

.main-nav.scrolled .nav-logo img {
    height: 40px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 2.8rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-links a {
    color: var(--charcoal);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    transition: color 0.2s;
}

.nav-links a:hover {
    color: var(--forest);
}

.nav-cta {
    background: var(--gold) !important;
    color: var(--white) !important;
    font-weight: 700 !important;
    padding: 0.6rem 1.6rem !important;
    border-radius: 6px !important;
    transition:
        background 0.2s,
        transform 0.2s,
        box-shadow 0.2s !important;
}

.nav-cta:hover {
    background: #c97b00 !important;
    transform: translateY(-1px) !important;
    box-shadow: 0 4px 16px rgba(232, 160, 32, 0.4) !important;
}

/* ── HERO ─────────────────────────────── */
#hero {
    min-height: 100vh;
    background: linear-gradient(145deg, #f3fcf7 0%, #e6f9f0 40%, #dffae8 100%);
    position: relative;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 6rem 0 5rem;
}

#hero::before {
    content: "";
    position: absolute;
    inset: 0;
    background:
        radial-gradient(
            ellipse 90% 70% at 65% 35%,
            rgba(46, 187, 122, 0.1) 0%,
            transparent 55%
        ),
        radial-gradient(
            ellipse 50% 50% at 15% 70%,
            rgba(0, 102, 180, 0.06) 0%,
            transparent 50%
        );
    pointer-events: none;
}

#hero::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(10, 92, 58, 0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(10, 92, 58, 0.04) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
}

.hero-circle-1,
.hero-circle-2,
.hero-circle-3 {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
}

.hero-circle-1 {
    width: 600px;
    height: 600px;
    top: -150px;
    right: -100px;
    border: 1px solid rgba(46, 187, 122, 0.15);
}

.hero-circle-2 {
    width: 400px;
    height: 400px;
    top: -50px;
    right: 50px;
    border: 1px solid rgba(109, 217, 168, 0.1);
}

.hero-circle-3 {
    width: 200px;
    height: 200px;
    bottom: 80px;
    left: -60px;
    background: radial-gradient(
        circle,
        rgba(46, 187, 122, 0.08) 0%,
        transparent 70%
    );
}

.hero-inner {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 5rem;
    align-items: center;
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 2rem;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: var(--forest);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 1.4rem;
    opacity: 0;
    animation: fadeUp 0.8s 0.1s var(--ease-out) forwards;
}

.hero-eyebrow::before {
    content: "";
    display: block;
    width: 32px;
    height: 1px;
    background: var(--forest);
    opacity: 0.6;
}

.hero-h1 {
    font-family: var(--font-display);
    font-size: clamp(2.8rem, 4.8vw, 4.4rem);
    font-weight: 900;
    color: var(--ink);
    line-height: 1.06;
    margin-bottom: 1.6rem;
    opacity: 0;
    animation: fadeUp 0.9s 0.25s var(--ease-out) forwards;
}

.hero-h1 em {
    font-style: normal;
    color: var(--forest);
    font-weight: 900;
}

.hero-h1 .gold {
    color: var(--gold);
    font-style: normal;
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.75;
    max-width: 520px;
    margin-bottom: 2.4rem;
    opacity: 0;
    animation: fadeUp 0.9s 0.4s var(--ease-out) forwards;
}

.hero-actions {
    display: flex;
    gap: 1rem;
    align-items: center;
    flex-wrap: wrap;
    opacity: 0;
    animation: fadeUp 0.9s 0.55s var(--ease-out) forwards;
}

.btn-primary-hero {
    background: var(--forest);
    color: var(--white);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 0.95rem;
    padding: 1rem 2.2rem;
    border: none;
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    transition:
        background 0.2s,
        transform 0.2s,
        box-shadow 0.2s;
}

.btn-primary-hero:hover {
    background: var(--emerald);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(10, 92, 58, 0.3);
    text-decoration: none;
}

.btn-ghost-hero {
    background: transparent;
    color: var(--forest);
    font-family: var(--font-body);
    font-weight: 500;
    font-size: 0.9rem;
    padding: 1rem 1.8rem;
    border: 1px solid rgba(13, 122, 79, 0.3);
    border-radius: 8px;
    cursor: pointer;
    text-decoration: none;
    transition:
        border-color 0.2s,
        color 0.2s,
        background 0.2s;
}

.btn-ghost-hero:hover {
    border-color: var(--forest);
    color: var(--forest);
    background: rgba(13, 122, 79, 0.05);
    text-decoration: none;
}

.hero-visual {
    opacity: 0;
    animation: fadeUp 1s 0.45s var(--ease-out) forwards;
}

.hero-card-stack {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.hero-card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(46, 187, 122, 0.2);
    border-radius: 14px;
    padding: 1.4rem 1.6rem;
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow-sm);
    transition:
        transform 0.3s var(--ease-spring),
        background 0.3s;
}

.hero-card:hover {
    transform: translateX(6px);
    background: rgba(255, 255, 255, 0.85);
}

.hero-card-label {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--forest);
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.hero-card-val {
    font-family: var(--font-display);
    font-size: 2rem;
    font-weight: 700;
    color: var(--gold);
    line-height: 1;
    margin-bottom: 0.3rem;
}

.hero-card-desc {
    font-size: 0.82rem;
    color: var(--muted);
}

.hero-card-row {
    display: flex;
    gap: 0.8rem;
}

.hero-card-row .hero-card {
    flex: 1;
}

.hero-trust {
    margin-top: 1rem;
    background: rgba(232, 160, 32, 0.1);
    border: 1px solid rgba(232, 160, 32, 0.25);
    border-radius: 10px;
    padding: 1rem 1.4rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.hero-trust-icon {
    font-size: 1.3rem;
}

.hero-trust-text {
    font-size: 0.82rem;
    color: var(--charcoal);
}

.hero-trust-text strong {
    color: var(--amber);
    display: block;
    margin-bottom: 0.1rem;
}

/* Ticker */
.ticker-wrap {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(243, 252, 247, 0.95);
    border-top: 1px solid rgba(46, 187, 122, 0.15);
    overflow: hidden;
    padding: 0.75rem 0;
    z-index: 3;
}

.ticker-track {
    display: flex;
    gap: 0;
    animation: ticker 32s linear infinite;
    white-space: nowrap;
}

.ticker-item {
    font-family: var(--font-mono);
    font-size: 0.72rem;
    color: rgba(13, 122, 79, 0.6);
    letter-spacing: 0.05em;
    padding: 0 3rem;
}

.ticker-item .dot {
    color: var(--gold);
    margin-right: 0.4rem;
}

@keyframes ticker {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes fadeUp {
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ── SECTION COMMON ──────────────────── */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: var(--forest);
    letter-spacing: 0.16em;
    text-transform: uppercase;
    background: var(--foam);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    border: 1px solid var(--border-clr);
    margin-bottom: 1.2rem;
}

.section-label::before {
    content: "";
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--leaf);
}

.section-h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 3.2vw, 2.9rem);
    font-weight: 900;
    color: var(--ink);
    line-height: 1.15;
    margin-bottom: 1rem;
}

.section-h2 em {
    font-style: normal;
    color: var(--forest);
    font-weight: 900;
}

.section-sub {
    font-size: 1rem;
    color: var(--muted);
    line-height: 1.72;
    max-width: 600px;
}

.section-header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 4rem;
}

.section-header .section-label {
    margin: 0 auto 1.2rem;
}

.section-header .section-sub {
    margin: 0 auto;
}

/* ── CONCEPT VISUAL SVG ───────────────── */
.concept-visual {
    width: 100%;
    max-width: 1000px;
    margin: 4rem auto 0;
    display: block;
}

/* ── PROBLEM SECTION ─────────────────── */
#problem {
    padding: 5rem 0;
    background: var(--pale);
}

.stat-block {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem 1.8rem;
    border: 1px solid var(--border-clr);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition:
        transform 0.3s var(--ease-spring),
        box-shadow 0.3s;
}

.stat-block:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.stat-block::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--leaf), var(--mint));
}

.stat-block.gold-bar::before {
    background: linear-gradient(90deg, var(--gold), var(--amber));
}

.stat-block.forest-bar::before {
    background: linear-gradient(90deg, var(--forest), var(--leaf));
}

.stat-num {
    font-family: var(--font-display);
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--emerald);
    line-height: 1;
    margin-bottom: 0.4rem;
}

.stat-block.gold-bar .stat-num {
    color: var(--amber);
}

.stat-label {
    font-weight: 600;
    font-size: 0.92rem;
    color: var(--ink);
    margin-bottom: 0.3rem;
}

.stat-note {
    font-size: 0.78rem;
    color: var(--muted);
    font-style: italic;
}

.pain-card {
    background: var(--white);
    border-radius: 12px;
    padding: 1.4rem;
    border: 1px solid var(--border-clr);
    border-left: 3px solid #e85050;
    box-shadow: var(--shadow-sm);
    transition:
        box-shadow 0.25s,
        transform 0.25s;
    margin-bottom: 1rem;
    height: 210px;
}

.pain-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
}

.pain-icon {
    font-size: 1.4rem;
    margin-bottom: 0.6rem;
}

.pain-title {
    font-weight: 700;
    font-size: 0.88rem;
    color: var(--ink);
    margin-bottom: 0.35rem;
}

.pain-body {
    font-size: 0.8rem;
    color: var(--muted);
    line-height: 1.55;
}

.insight-bar {
    margin-top: 2rem;
    background: var(--foam);
    border-left: 3px solid var(--leaf);
    border-radius: 0 10px 10px 0;
    padding: 1.1rem 1.8rem;
    font-size: 0.95rem;
    color: var(--emerald);
    font-weight: 500;
    font-style: italic;
}

/* ── SOLUTION SECTION ─────────────────── */
#solution {
    padding: 5rem 0;
    background: linear-gradient(160deg, #f3fcf7 0%, #e6f9f0 60%, #dffae8 100%);
    position: relative;
    overflow: hidden;
}

#solution::before {
    content: "";
    position: absolute;
    top: -200px;
    right: -200px;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(46, 187, 122, 0.08) 0%,
        transparent 65%
    );
    pointer-events: none;
}

.vs-table {
    border-radius: 14px;
    overflow: hidden;
    border: 1px solid var(--border-clr);
    background: rgba(255, 255, 255, 0.6);
}

.vs-header-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.vs-col-header {
    padding: 1rem 1.4rem;
    font-family: var(--font-mono);
    font-size: 0.7rem;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    font-weight: 500;
}

.vs-not-header {
    background: rgba(0, 0, 0, 0.03);
    color: var(--muted);
}

.vs-do-header {
    background: var(--gold);
    color: var(--white);
    font-weight: 700;
}

.vs-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border-top: 1px solid var(--border-clr);
}

.vs-item {
    padding: 0.85rem 1.4rem;
    font-size: 0.86rem;
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
}

.vs-not {
    background: rgba(0, 0, 0, 0.02);
    color: var(--muted);
}

.vs-not .x {
    color: #e85050;
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.vs-do {
    background: rgba(46, 187, 122, 0.05);
    color: var(--ink);
}

.vs-do .check {
    color: var(--leaf);
    font-weight: 700;
    font-size: 1rem;
    flex-shrink: 0;
}

.solution-right h3 {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: var(--forest);
    letter-spacing: 0.18em;
    text-transform: uppercase;
    margin-bottom: 1.2rem;
}

.solution-right h2 {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 900;
    color: var(--ink);
    line-height: 1.15;
    margin-bottom: 1.3rem;
}

.solution-right h2 em {
    color: var(--gold);
    font-style: normal;
    font-weight: 900;
}

.solution-right p {
    color: var(--muted);
    line-height: 1.72;
    margin-bottom: 2rem;
    font-size: 0.96rem;
}

.pillar {
    display: flex;
    align-items: center;
    gap: 1.1rem;
    padding: 0.9rem 1.2rem;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--border-clr);
    border-radius: 10px;
    transition:
        background 0.2s,
        border-color 0.2s;
    margin-bottom: 0.8rem;
}

.pillar:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--leaf);
}

.pillar-icon {
    font-size: 1.2rem;
    flex-shrink: 0;
}

.pillar-text {
    font-size: 0.88rem;
    color: var(--ink);
    font-weight: 500;
}

/* ── HOW IT WORKS ─────────────────────── */
#how {
    padding: 5rem 0;
    background: var(--white);
}

.step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 0 1.2rem;
    position: relative;
    margin-bottom: 2rem;
}

.step-circle {
    width: 5.5rem;
    height: 5.5rem;
    border-radius: 50%;
    background: var(--white);
    border: 2px solid var(--border-clr);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--emerald);
    margin-bottom: 1.6rem;
    position: relative;
    z-index: 1;
    transition:
        transform 0.3s var(--ease-spring),
        box-shadow 0.3s,
        border-color 0.3s;
    box-shadow: var(--shadow-sm);
}

.step:hover .step-circle {
    transform: scale(1.1);
    box-shadow: var(--shadow-lg);
    border-color: var(--leaf);
}

.step.gold .step-circle {
    border-color: var(--gold);
    color: var(--gold);
}

.step.leaf .step-circle {
    border-color: var(--leaf);
    color: var(--leaf);
}

.step.mint .step-circle {
    border-color: var(--mint);
    color: var(--forest);
}

.step.amber .step-circle {
    border-color: var(--amber);
    color: var(--amber);
}

.step-tag {
    font-family: var(--font-mono);
    font-size: 0.65rem;
    color: var(--muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.4rem;
}

.step-title {
    font-weight: 700;
    font-size: 0.95rem;
    color: var(--ink);
    margin-bottom: 0.5rem;
}

.step-body {
    font-size: 0.82rem;
    color: var(--muted);
    line-height: 1.55;
}

.wa-banner {
    margin-top: 2rem;
    background: linear-gradient(135deg, var(--emerald), var(--forest));
    border-radius: 16px;
    padding: 1.8rem 2.2rem;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    box-shadow: var(--shadow-md);
}

.wa-icon {
    font-size: 2.4rem;
    flex-shrink: 0;
}

.wa-text strong {
    color: var(--gold);
    font-size: 1rem;
    display: block;
    margin-bottom: 0.2rem;
}

.wa-text span {
    font-size: 0.88rem;
    color: var(--sage);
}

.wa-cta {
    margin-left: auto;
    background: #25d366;
    color: white;
    font-weight: 700;
    font-size: 0.88rem;
    padding: 0.7rem 1.6rem;
    border-radius: 8px;
    border: none;
    text-decoration: none;
    white-space: nowrap;
    transition:
        background 0.2s,
        transform 0.2s;
}

.wa-cta:hover {
    background: #1da851;
    transform: translateY(-1px);
    color: white;
    text-decoration: none;
}

/* ── CATEGORIES ────────────────────────── */
#categories {
    padding: 5rem 0;
    background: var(--pale);
}

.cat-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2.2rem;
    border: 1px solid var(--border-clr);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition:
        transform 0.3s var(--ease-spring),
        box-shadow 0.3s;
    margin-bottom: 1.5rem;
}

.cat-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.cat-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--leaf), var(--mint));
}

.cat-card.gold-bar::before {
    background: linear-gradient(90deg, var(--gold), var(--amber));
}

.cat-card.forest-bar::before {
    background: linear-gradient(90deg, var(--forest), var(--leaf));
}

.cat-card.mint-bar::before {
    background: linear-gradient(90deg, var(--mint), var(--sage));
}

.cat-icon {
    font-size: 2.2rem;
    margin-bottom: 1rem;
}

.cat-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 0.8rem;
}

.cat-items {
    font-size: 0.87rem;
    color: var(--muted);
    line-height: 1.65;
}

.cat-badge {
    display: inline-block;
    margin-top: 1rem;
    font-family: var(--font-mono);
    font-size: 0.68rem;
    color: var(--forest);
    background: var(--foam);
    border: 1px solid var(--border-clr);
    padding: 0.25rem 0.7rem;
    border-radius: 4px;
    letter-spacing: 0.06em;
}

.cat-feature-row {
    margin-top: 2rem;
    background: var(--white);
    border-radius: 12px;
    padding: 1.4rem 2rem;
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    text-align: center;
    flex-wrap: wrap;
    border: 1px solid var(--border-clr);
    box-shadow: var(--shadow-sm);
}

.feat-item strong {
    display: block;
    font-family: var(--font-display);
    font-size: 1.1rem;
    color: var(--emerald);
    font-weight: 700;
}

.feat-item span {
    font-size: 0.8rem;
    color: var(--muted);
}

/* ── WHY MAGAAO ────────────────────────── */
#why {
    padding: 5rem 0;
    background: linear-gradient(160deg, #f3fcf7, #e6f9f0 70%, #dffae8);
    position: relative;
    overflow: hidden;
}

.why-card {
    background: rgba(255, 255, 255, 0.7);
    border: 1px solid var(--border-clr);
    border-radius: 14px;
    padding: 1.8rem;
    position: relative;
    transition:
        background 0.25s,
        border-color 0.25s,
        transform 0.25s;
    margin-bottom: 1.2rem;
}

.why-card:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--leaf);
    transform: translateY(-3px);
}

.why-num {
    font-family: var(--font-display);
    font-size: 3.5rem;
    font-weight: 900;
    color: rgba(46, 187, 122, 0.1);
    position: absolute;
    top: 0.6rem;
    right: 1rem;
    line-height: 1;
    pointer-events: none;
}

.why-title {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--gold);
    margin-bottom: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.why-body {
    font-size: 0.86rem;
    color: var(--muted);
    line-height: 1.65;
}

/* ── STRENGTHS ─────────────────────────── */
#strengths {
    padding: 5rem 0;
    background: var(--white);
}

.strength-card {
    background: var(--white);
    border-radius: 16px;
    padding: 2rem;
    border: 1px solid var(--border-clr);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
    transition:
        transform 0.3s var(--ease-spring),
        box-shadow 0.3s;
    margin-bottom: 1.5rem;
    height: 290px;
}

.strength-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
}

.strength-card::after {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, var(--leaf), var(--mint));
}

.strength-card.gold-bar::after {
    background: linear-gradient(180deg, var(--gold), var(--amber));
}

.strength-card.forest-bar::after {
    background: linear-gradient(180deg, var(--forest), var(--leaf));
}

.strength-card.mint-bar::after {
    background: linear-gradient(180deg, var(--mint), var(--sage));
}

.strength-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    display: block;
}

.strength-title {
    font-weight: 700;
    font-size: 1rem;
    color: var(--ink);
    margin-bottom: 0.5rem;
}

.strength-body {
    font-size: 0.84rem;
    color: var(--muted);
    line-height: 1.6;
}

.strength-tag {
    display: inline-block;
    margin-top: 0.8rem;
    font-family: var(--font-mono);
    font-size: 0.66rem;
    color: var(--forest);
    letter-spacing: 0.08em;
    background: var(--foam);
    border: 1px solid var(--border-clr);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
}

/* ── PROMISE ─────────────────────────────── */
#promise {
    padding: 5rem 0;
    background: var(--pale);
}

.promise-row {
    background: var(--white);
    border-radius: 14px;
    padding: 1.6rem;
    border: 1px solid var(--border-clr);
    box-shadow: var(--shadow-sm);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 1rem;
    align-items: center;
    transition:
        box-shadow 0.25s,
        transform 0.25s;
    margin-bottom: 1rem;
    height: 130px;
}
@media (max-width: 500px) {
    .promise-row {
        grid-template-columns: 1fr;
        text-align: center;
        height: auto;
        padding: 1.4rem;
    }
}

.promise-row:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.promise-side {
    font-size: 0.84rem;
    line-height: 1.5;
}

.promise-before {
    color: var(--muted);
}

.promise-after {
    color: var(--emerald);
    font-weight: 600;
}

.p-label {
    font-family: var(--font-mono);
    font-size: 0.62rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    display: block;
    margin-bottom: 0.3rem;
}

.p-label.before {
    color: #e85050;
}

.p-label.after {
    color: var(--leaf);
}

.p-arrow {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--foam);
    border: 1px solid var(--border-clr);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--leaf);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.promise-callout {
    margin-top: 2rem;
    background: linear-gradient(135deg, var(--emerald), var(--forest));
    border-radius: 16px;
    padding: 2.2rem;
    text-align: center;
    box-shadow: var(--shadow-lg);
}

.promise-callout p {
    font-family: var(--font-display);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--white);
    font-style: normal;
    margin: 0;
}

.promise-callout p span {
    color: var(--gold);
}

/* ── CTA ─────────────────────────────────── */
#cta {
    padding: 6rem 0;
    background: linear-gradient(145deg, #f3fcf7, #e6f9f0, #dffae8);
    text-align: center;
    position: relative;
    overflow: hidden;
}

#cta::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(
        ellipse 70% 60% at 50% 50%,
        rgba(46, 187, 122, 0.08) 0%,
        transparent 60%
    );
    pointer-events: none;
}

.cta-inner {
    position: relative;
    z-index: 1;
}

.cta-h2 {
    font-family: var(--font-display);
    font-size: clamp(2.4rem, 4.5vw, 3.8rem);
    font-weight: 900;
    color: var(--ink);
    line-height: 1.1;
    margin-bottom: 1.2rem;
}

.cta-h2 em {
    color: var(--gold);
    font-style: normal;
    font-weight: 700;
}

.cta-sub {
    font-size: 1rem;
    color: var(--muted);
    margin-bottom: 3rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

.cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1rem;
}

.btn-whatsapp {
    background: #25d366;
    color: white;
    font-weight: 700;
    padding: 1rem 2.2rem;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition:
        background 0.2s,
        transform 0.2s,
        box-shadow 0.2s;
}

.btn-whatsapp:hover {
    background: #1da851;
    transform: translateY(-2px);
    color: white;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.4);
    text-decoration: none;
}

.btn-primary-cta {
    background: var(--forest);
    color: white;
    font-weight: 700;
    padding: 1rem 2.2rem;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    transition:
        background 0.2s,
        transform 0.2s;
}

.btn-primary-cta:hover {
    background: var(--emerald);
    color: white;
    transform: translateY(-2px);
    text-decoration: none;
}

.contact-card {
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid var(--border-clr);
    border-radius: 12px;
    padding: 1.5rem;
    transition:
        background 0.2s,
        border-color 0.2s;
    margin-bottom: 1rem;
}

.contact-card:hover {
    background: rgba(255, 255, 255, 0.9);
    border-color: var(--leaf);
}

.contact-type {
    font-family: var(--font-mono);
    font-size: 0.68rem;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--forest);
    margin-bottom: 0.5rem;
}

.contact-val {
    font-size: 0.95rem;
    color: var(--ink);
    font-weight: 600;
}

.contact-val a {
    color: var(--forest);
    text-decoration: none;
}

.contact-val a:hover {
    color: var(--emerald);
}

/* ── FOOTER ──────────────────────────────── */
footer {
    background: var(--foam);
    border-top: 1px solid var(--border-clr);
    padding: 2.5rem 0;
}

.footer-logo img {
    height: 40px;
    width: auto;
    opacity: 0.9;
}

.footer-copy {
    font-size: 0.8rem;
    color: var(--muted);
    text-align: right;
    line-height: 1.6;
}

/* ── RESPONSIVE ──────────────────────────── */
@media (max-width: 960px) {
    .hero-inner {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-visual {
        order: -1;
    }

    .hero-card-stack {
        max-width: 500px;
        margin: 0 auto;
    }

    .nav-links {
        display: none !important;
    }

    .wa-cta {
        display: none;
    }

    .promise-row {
        grid-template-columns: 1fr;
    }

    .p-arrow {
        display: none;
    }
}

@media (max-width: 600px) {
    .hero-card-row {
        flex-direction: column;
    }
}
