/* ===================================================================
   Postual — shared stylesheet (homepage + /stands)
   Visual identity: sage #6B7F5E / #8FA580, charcoal #1A1D1E, Inter
   =================================================================== */
:root {
    --bg: #F5F7FA;
    --bg-dark: #1A1D1E;
    --sage: #6B7F5E;
    --sage-light: #8FA580;
    --charcoal: #1A1D1E;
    --white: #FFFFFF;
    --text: #1A1D1E;
    --text-light: rgba(26,29,30,0.6);
    --text-secondary: #4A4F51;
    --text-on-dark: rgba(255,255,255,0.9);
    --text-on-dark-muted: rgba(255,255,255,0.5);
    --cream: #F5F7FA;
    --radius: 12px;
    --radius-lg: 20px;
    --border: #E6E4DF;
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.05);
    --shadow-lg: 0 10px 32px rgba(0,0,0,0.08);
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

body {
    font-family: 'Inter', -apple-system, sans-serif;
    background: var(--bg);
    color: var(--text);
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

::-webkit-scrollbar { width: 6px; }
::-webkit-scrollbar-track { background: #ddd; }
::-webkit-scrollbar-thumb { background: #999; border-radius: 3px; }
::-webkit-scrollbar-thumb:hover { background: var(--sage); }

/* ===== NAV ===== */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 20px 32px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: all 0.4s ease;
}
.nav.scrolled {
    background: rgba(245,245,245,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 14px 32px;
}
.nav-logo { font-size: 1.2rem; font-weight: 800; color: var(--charcoal); text-decoration: none; letter-spacing: -0.03em; }
.nav-logo span { color: var(--sage); }
.nav-links { display: flex; gap: 32px; list-style: none; align-items: center; }
.nav-links a { font-size: 0.82rem; font-weight: 500; color: var(--text-light); text-decoration: none; transition: color 0.3s; }
.nav-links a:hover { color: var(--charcoal); }
.nav-cta { padding: 10px 24px; background: var(--charcoal); color: var(--white) !important; border-radius: 50px; font-size: 0.8rem !important; font-weight: 600 !important; }
.nav-cta:hover { background: #2D3436 !important; }
/* Mobile hamburger (hidden on desktop) */
.nav-toggle { display: none; background: none; border: 0; cursor: pointer; padding: 8px; margin: -8px; color: var(--charcoal); }
.nav-toggle svg { width: 26px; height: 26px; stroke: currentColor; fill: none; stroke-width: 2; stroke-linecap: round; display: block; }

/* ===== HERO TEXT ===== */
.hero-section {
    height: 100vh;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 0 32px;
    position: relative;
}
.hero-section h1 {
    font-size: clamp(2.6rem, 7.4vw, 5rem);
    font-weight: 900;
    letter-spacing: -0.035em;
    line-height: 1.0;
    color: var(--charcoal);
    margin-bottom: 20px;
    text-wrap: balance;
}
.hero-section h1 em { font-style: normal; color: var(--sage); }
/* Prevent shrink-wrapped flex children from forcing horizontal overflow on narrow screens */
.hero-section h1, .hero-section p, .hero-trust, .hero-cta { max-width: 100%; }
.hero-section p {
    font-size: clamp(0.95rem, 1.5vw, 1.15rem);
    color: var(--text-light);
    max-width: min(520px, 100%);
    line-height: 1.65;
}
.scroll-hint {
    position: absolute;
    bottom: 36px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    opacity: 0.45;
}
.scroll-hint span { font-size: 0.65rem; font-weight: 600; letter-spacing: 0.15em; text-transform: uppercase; color: var(--text-light); }
.scroll-mouse { width: 24px; height: 38px; border: 2px solid var(--text-light); border-radius: 12px; position: relative; }
.scroll-mouse::after {
    content: '';
    position: absolute;
    top: 6px; left: 50%;
    transform: translateX(-50%);
    width: 3px; height: 8px;
    background: var(--sage);
    border-radius: 2px;
    animation: scrollPulse 1.5s ease-in-out infinite;
}
@keyframes scrollPulse {
    0%, 100% { transform: translateX(-50%) translateY(0); opacity: 1; }
    50% { transform: translateX(-50%) translateY(8px); opacity: 0.3; }
}

/* ===== HERO CTA + TRUST (new) ===== */
.hero-cta { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; margin-top: 30px; }
.hero-trust { margin-top: 20px; font-size: 0.78rem; font-weight: 600; color: var(--text-light); letter-spacing: 0.01em; }
.hero-trust span { color: var(--sage); }

/* ===== SCROLL SEQUENCE (skill pattern: tall wrapper + sticky canvas) ===== */
.scroll-wrapper { height: 250vh; position: relative; }
.scroll-sticky {
    position: sticky;
    top: 0;
    height: 100vh;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    background: var(--bg);
}
#seqCanvas { display: block; }

/* ===== CONTENT SECTIONS ===== */
.section { padding: 120px 32px; }
.container { max-width: 1100px; margin: 0 auto; }
.section-dark { background: var(--bg-dark); color: var(--text-on-dark); }
.section-dark .section-label { color: var(--sage-light); }
.section-dark .section-title { color: var(--text-on-dark); }
.section-dark .section-subtitle { color: var(--text-on-dark-muted); }
.section-label { font-size: 0.68rem; font-weight: 700; letter-spacing: 0.14em; text-transform: uppercase; color: var(--sage); margin-bottom: 14px; }
.section-title { font-size: clamp(1.8rem, 4vw, 2.6rem); font-weight: 800; line-height: 1.12; letter-spacing: -0.03em; margin-bottom: 16px; }
.section-subtitle { font-size: 1rem; color: var(--text-light); max-width: 560px; line-height: 1.7; }
.section-header-center { text-align: center; margin-bottom: 64px; }
.section-header-center .section-subtitle { margin: 0 auto; }

/* ===== SERVICES ===== */
.services-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 24px; }
.service-card {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.06);
    border-radius: 20px;
    padding: 36px 28px;
    transition: all 0.4s ease;
    opacity: 0; transform: translateY(24px);
}
.service-card.visible { opacity: 1; transform: translateY(0); }
.service-card.fade-in { opacity: 0; transform: translateY(24px); }
.service-card.fade-in.visible { opacity: 1; transform: translateY(0); }
.service-card:hover { background: rgba(255,255,255,0.07); border-color: rgba(107,127,94,0.2); transform: translateY(-4px); }
.service-icon { width: 44px; height: 44px; background: rgba(107,127,94,0.15); border-radius: 12px; display: flex; align-items: center; justify-content: center; margin-bottom: 20px; }
.service-icon svg { width: 22px; height: 22px; stroke: var(--sage-light); fill: none; stroke-width: 2; }
.service-card h3 { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; color: var(--text-on-dark); }
.service-card p { font-size: 0.85rem; color: var(--text-on-dark-muted); line-height: 1.65; }

/* ===== RESULTS ===== */
.results-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.results-visual { position: relative; }
.results-img-main { width: 100%; border-radius: 16px; }
.results-img-float { position: absolute; width: 280px; bottom: -40px; right: -40px; border-radius: 12px; box-shadow: 0 20px 60px rgba(0,0,0,0.15); }
.results-content h2 { font-size: clamp(1.9rem, 4vw, 2.6rem); font-weight: 800; line-height: 1.15; letter-spacing: -0.03em; margin-bottom: 20px; }
.results-content h2 em { font-style: normal; color: var(--sage); }
.results-content p { font-size: 1rem; color: var(--text-light); line-height: 1.7; margin-bottom: 40px; }
.results-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.result-stat h4 { font-size: 1.5rem; font-weight: 800; color: var(--sage); margin-bottom: 6px; line-height: 1.1; }
.result-stat p { font-size: 0.9rem; color: var(--text-light); }

/* ===== PROCESS ===== */
.process-steps { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; }
.process-step { opacity: 0; transform: translateY(24px); transition: all 0.5s ease; }
.process-step.visible { opacity: 1; transform: translateY(0); }
.process-step.fade-in { opacity: 0; transform: translateY(24px); }
.process-step.fade-in.visible { opacity: 1; transform: translateY(0); }
.step-number { font-size: 2.4rem; font-weight: 800; color: var(--sage); margin-bottom: 16px; }
.process-step h3 { font-size: 1.2rem; font-weight: 700; margin-bottom: 12px; color: var(--charcoal); }
.process-step p { font-size: 0.95rem; color: var(--text-light); line-height: 1.7; }

/* ===== TRUST CARDS ===== */
.testimonials-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.testimonial-card { background: var(--white); border-radius: 16px; padding: 32px 28px; border: 1px solid var(--border); opacity: 0; transform: translateY(24px); transition: all 0.5s ease; }
.testimonial-card.visible { opacity: 1; transform: translateY(0); }
.testimonial-card.fade-in { opacity: 0; transform: translateY(24px); }
.testimonial-card.fade-in.visible { opacity: 1; transform: translateY(0); }

/* ===== SECTOR / DEALERSHIP CALLOUT (new) ===== */
.sector-strip { text-align: center; font-size: 0.9rem; color: var(--text-on-dark-muted); margin-bottom: 40px; }
.sector-strip strong { color: var(--text-on-dark); font-weight: 600; }
.dealer-callout {
    display: grid; grid-template-columns: 1.4fr 1fr; gap: 40px; align-items: center;
    background: linear-gradient(135deg, rgba(107,127,94,0.16), rgba(143,165,128,0.06));
    border: 1px solid rgba(143,165,128,0.25);
    border-radius: 24px; padding: 48px 44px;
}
.dealer-callout .tag { display:inline-block; font-size:0.66rem; font-weight:700; letter-spacing:0.12em; text-transform:uppercase; color:var(--sage-light); background:rgba(143,165,128,0.14); padding:5px 12px; border-radius:50px; margin-bottom:16px; }
.dealer-callout h3 { font-size: clamp(1.4rem,2.4vw,1.9rem); font-weight: 800; color: var(--text-on-dark); line-height: 1.15; letter-spacing:-0.02em; margin-bottom: 12px; }
.dealer-callout p { font-size: 0.95rem; color: var(--text-on-dark-muted); line-height: 1.65; margin-bottom: 8px; }
.dealer-callout .cta-wrap { text-align: right; }
@media (max-width: 768px){ .dealer-callout { grid-template-columns: 1fr; padding: 36px 26px; } .dealer-callout .cta-wrap { text-align: left; } }

/* ===== PRICING ===== */
.pricing-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-top: 48px; }
.pricing-grid.cols-4 { grid-template-columns: repeat(4, 1fr); }
.pricing-card {
    background: var(--white); border-radius: 20px; padding: 36px 28px;
    border: 1px solid rgba(0,0,0,0.06); position: relative;
    opacity: 0; transform: translateY(24px); transition: all 0.5s ease;
}
.pricing-card.visible { opacity: 1; transform: translateY(0); }
.pricing-card.fade-in { opacity: 0; transform: translateY(24px); }
.pricing-card.fade-in.visible { opacity: 1; transform: translateY(0); }
.pricing-card.featured { border: 2px solid var(--sage); box-shadow: 0 16px 48px rgba(107,127,94,0.12); }
.pricing-badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--sage); color: var(--white); padding: 4px 16px; border-radius: 50px; font-size: 0.68rem; font-weight: 700; white-space: nowrap; }
.pricing-tier { font-size: 0.72rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--sage); margin-bottom: 8px; }
.pricing-card h3 { font-size: 2.4rem; font-weight: 900; letter-spacing: -0.04em; color: var(--charcoal); }
.pricing-card h3 span { font-size: 0.9rem; font-weight: 500; color: var(--text-light); }
.pricing-desc { font-size: 0.82rem; color: var(--text-light); margin-bottom: 20px; }
.pricing-features { list-style: none; margin-bottom: 24px; }
.pricing-features li { font-size: 0.82rem; color: var(--text-light); padding: 8px 0; display: flex; align-items: flex-start; gap: 8px; line-height: 1.5; }
.pricing-features li svg { width: 16px; height: 16px; stroke: var(--sage); flex-shrink: 0; margin-top: 3px; }
.pricing-note { font-size: 0.72rem; color: var(--text-light); font-style: italic; margin-bottom: 18px; }
.pricing-btn { display: block; width: 100%; padding: 14px; text-align: center; border-radius: 50px; font-size: 0.88rem; font-weight: 600; text-decoration: none; transition: all 0.3s ease; cursor: pointer; }
.pricing-btn-outline { border: 2px solid var(--charcoal); color: var(--charcoal); background: transparent; }
.pricing-btn-outline:hover { background: var(--charcoal); color: var(--white); }
.pricing-btn-sage { background: var(--sage); color: var(--white); }
.pricing-btn-sage:hover { background: var(--sage-light); }
.btn { display: inline-block; padding: 14px 32px; border-radius: 50px; font-size: 0.9rem; font-weight: 600; text-decoration: none; transition: all 0.3s; cursor: pointer; }
.btn-outline { border: 2px solid var(--charcoal); color: var(--charcoal); }
.btn-outline:hover { background: var(--charcoal); color: var(--white); }
.website-callout { background: rgba(107,127,94,0.08); border-radius: 16px; padding: 48px 36px; display: flex; align-items: center; justify-content: space-between; gap: 24px; margin-top: 48px; }
.website-callout-content h3 { font-size: 1.25rem; font-weight: 700; color: var(--charcoal); margin-bottom: 8px; }
.website-callout-content p { font-size: 0.95rem; color: var(--text-light); }

/* ===== PRICING SIMPLE (homepage lightweight) ===== */
.pricing-simple { text-align: center; background: rgba(107,127,94,0.07); border: 1px solid rgba(107,127,94,0.15); border-radius: 24px; padding: 56px 36px; margin-top: 16px; }
.pricing-simple .from { font-size: clamp(2.4rem,5vw,3.4rem); font-weight: 900; letter-spacing: -0.04em; color: var(--charcoal); }
.pricing-simple .from small { font-size: 0.95rem; font-weight: 600; color: var(--text-light); display:block; margin-bottom:6px; letter-spacing: 0.02em; }
.pricing-simple p { font-size: 0.95rem; color: var(--text-light); max-width: 520px; margin: 14px auto 28px; line-height: 1.7; }
.pricing-simple .cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }

/* ===== LIMITS / RULES (/stands) ===== */
.rules-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.rule-card { background: var(--white); border: 1px solid var(--border); border-radius: 16px; padding: 28px 24px; }
.rule-card .rule-ico { width: 40px; height: 40px; border-radius: 10px; background: rgba(107,127,94,0.12); display:flex; align-items:center; justify-content:center; margin-bottom:14px; }
.rule-card .rule-ico svg { width: 20px; height: 20px; stroke: var(--sage); fill:none; stroke-width:2; }
.rule-card h4 { font-size: 0.98rem; font-weight: 700; color: var(--charcoal); margin-bottom: 8px; }
.rule-card p { font-size: 0.85rem; color: var(--text-light); line-height: 1.6; }

/* ===== FAQ ===== */
.faq-list { max-width: 780px; margin: 0 auto; }
.faq-item { border-bottom: 1px solid var(--border); padding: 22px 0; }
.faq-item h4 { font-size: 1rem; font-weight: 700; color: var(--charcoal); margin-bottom: 8px; display:flex; gap:10px; align-items:baseline; }
.faq-item h4::before { content: '·'; color: var(--sage); font-weight: 900; }
.faq-item p { font-size: 0.9rem; color: var(--text-light); line-height: 1.7; }

/* ===== SOCIAL GALLERY (/stands) ===== */
.social-gallery { display: grid; grid-template-columns: repeat(auto-fit, minmax(200px,1fr)); gap: 18px; }
.social-thumb { position: relative; aspect-ratio: 1/1; border-radius: 16px; overflow: hidden; border: 1px solid var(--border); text-decoration: none; display:block; background:#0F1114; cursor:default; }
.social-thumb iframe { width: 100%; height: 100%; border: 0; pointer-events: none; transform: scale(1.001); }
.social-thumb:hover { border-color: var(--border); }

/* ===== DEMO SHOWCASE (/stands) ===== */
.demo-showcase { display:grid; grid-template-columns: 1.1fr 1fr; gap:48px; align-items:center; }
.demo-frame { border-radius:18px; overflow:hidden; border:1px solid var(--border); box-shadow: var(--shadow-lg); background:#fff; }
.demo-frame .bar { display:flex; gap:6px; padding:12px 14px; background:#f0f1f3; border-bottom:1px solid var(--border); }
.demo-frame .bar i { width:10px; height:10px; border-radius:50%; background:#cfd2d6; display:block; }
.demo-frame iframe { width:100%; height:420px; border:0; display:block; }
@media (max-width:768px){ .demo-showcase{ grid-template-columns:1fr; } .demo-frame iframe{ height:560px; } .rules-grid{ grid-template-columns:1fr; } }

/* ===== CTA ===== */
.cta-section { background: var(--bg-dark); padding: 100px 32px; text-align: center; }
.cta-section .section-label { color: var(--sage-light); }
.cta-section .section-title { color: var(--text-on-dark); max-width: 600px; margin: 0 auto 16px; }
.cta-section p { color: var(--text-on-dark-muted); font-size: 1rem; margin-bottom: 32px; }
.cta-buttons { display: flex; gap: 14px; justify-content: center; flex-wrap: wrap; }
.btn-sage { display:inline-block; padding: 16px 36px; background: var(--sage); color: var(--white); border-radius: 50px; font-size: 0.9rem; font-weight: 600; text-decoration: none; transition: all 0.3s; border:none; cursor:pointer; }
.btn-sage:hover { background: var(--sage-light); transform: translateY(-2px); }
.btn-ghost { padding: 16px 36px; background: rgba(255,255,255,0.06); color: var(--text-on-dark); border: 1px solid rgba(255,255,255,0.12); border-radius: 50px; font-size: 0.9rem; font-weight: 600; text-decoration: none; transition: all 0.3s; }
.btn-ghost:hover { background: rgba(255,255,255,0.1); }

/* ===== CONTACT ===== */
.contact-wrapper { display: grid; grid-template-columns: 1fr 1.2fr; gap: 60px; align-items: flex-start; }
.contact-info h3 { font-size: 1.3rem; font-weight: 700; color: var(--charcoal); margin-bottom: 12px; }
.contact-info p { font-size: 1rem; color: var(--text-light); margin-bottom: 32px; }
.contact-detail { display: flex; gap: 16px; margin-bottom: 24px; }
.contact-detail-icon { width: 48px; height: 48px; background: var(--bg); border-radius: 12px; display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.contact-detail-icon svg { width: 24px; height: 24px; stroke: var(--sage); stroke-width: 1.5; fill: none; }
.contact-detail-text .label { font-size: 0.75rem; font-weight: 600; text-transform: uppercase; letter-spacing: 0.05em; color: var(--text-light); margin-bottom: 4px; }
.contact-detail-text span { font-size: 1rem; font-weight: 600; color: var(--charcoal); }
.contact-form { display: flex; flex-direction: column; gap: 16px; }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; }
.form-group label { font-size: 0.85rem; font-weight: 600; color: var(--charcoal); margin-bottom: 8px; }
.contact-form input, .contact-form select, .contact-form textarea { padding: 14px 18px; border: 1px solid rgba(0,0,0,0.08); border-radius: 12px; font-family: inherit; font-size: 0.88rem; background: var(--white); transition: border-color 0.3s; }
.contact-form input:focus, .contact-form select:focus, .contact-form textarea:focus { outline: none; border-color: var(--sage); }
.contact-form textarea { min-height: 120px; resize: vertical; }
.btn-primary { display: block; width: 100%; padding: 16px; background: var(--charcoal); color: var(--white); border: none; border-radius: 50px; font-family: inherit; font-size: 0.9rem; font-weight: 600; cursor: pointer; transition: all 0.3s; }
.btn-primary:hover { background: #2D3436; }

/* ===== CONSENT CHECKBOX (new) ===== */
.consent { display: flex; gap: 10px; align-items: flex-start; font-size: 0.78rem; color: var(--text-light); line-height: 1.5; }
.consent input { width: 16px; height: 16px; margin-top: 2px; flex-shrink: 0; accent-color: var(--sage); }
.consent a { color: var(--sage); }

/* ===== FOOTER ===== */
.footer { background: var(--bg-dark); padding: 64px 32px 32px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer .container { max-width: 1100px; margin: 0 auto; }
.footer-inner { display: grid; grid-template-columns: 2fr 1fr; gap: 48px; margin-bottom: 48px; }
.footer-brand { flex: 1; }
.footer-logo { font-size: 1.1rem; font-weight: 800; color: var(--text-on-dark); text-decoration: none; }
.footer-logo span { color: var(--sage); }
.footer-brand p { font-size: 0.85rem; color: var(--text-on-dark-muted); margin-top: 12px; line-height: 1.6; max-width: 360px; }
.footer-links-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 36px; }
.footer-col h4 { font-size: 0.85rem; font-weight: 700; text-transform: uppercase; color: var(--text-on-dark); margin-bottom: 16px; letter-spacing: 0.05em; }
.footer-col ul { list-style: none; }
.footer-col ul li { margin-bottom: 12px; }
.footer-col a { font-size: 0.82rem; color: var(--text-on-dark-muted); text-decoration: none; transition: color 0.3s; }
.footer-col a:hover { color: var(--sage-light); }
.footer-bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 32px; border-top: 1px solid rgba(255,255,255,0.06); }
.footer-bottom span { font-size: 0.75rem; color: var(--text-on-dark-muted); }
.footer-social { display: flex; gap: 16px; }
.footer-social a { font-size: 0.82rem; color: var(--text-on-dark-muted); text-decoration: none; transition: color 0.3s; }
.footer-social a:hover { color: var(--sage-light); }

/* ===== WHATSAPP FLOAT ===== */
.whatsapp-float { position: fixed; bottom: 28px; right: 28px; width: 56px; height: 56px; background: #25D366; border-radius: 50%; display: flex; align-items: center; justify-content: center; box-shadow: 0 4px 20px rgba(37,211,102,0.3); z-index: 100; transition: transform 0.3s; }
.whatsapp-float:hover { transform: scale(1.1); }
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }

/* ===== PLAIN PAGE HERO (for /stands, no full-screen) ===== */
.page-hero { padding: 160px 32px 90px; text-align: center; background: var(--bg-dark); }
.page-hero .section-label { color: var(--sage-light); }
.page-hero h1 { font-size: clamp(2.1rem, 5vw, 3.4rem); font-weight: 900; letter-spacing: -0.04em; line-height: 1.05; color: var(--text-on-dark); max-width: 860px; margin: 0 auto 20px; }
.page-hero h1 em { font-style: normal; color: var(--sage-light); }
.page-hero p { font-size: 1.05rem; color: var(--text-on-dark-muted); max-width: 620px; margin: 0 auto 28px; line-height: 1.7; }

@media (max-width: 768px) {
    .nav-toggle { display: block; }
    .nav-links {
        display: none; position: absolute; top: calc(100% + 6px); right: 16px; left: 16px;
        flex-direction: column; gap: 2px; background: rgba(255,255,255,0.98);
        backdrop-filter: blur(20px); border: 1px solid var(--border); border-radius: 16px;
        padding: 10px; box-shadow: var(--shadow-lg);
    }
    .nav-links.open { display: flex; }
    .nav-links li { width: 100%; list-style: none; }
    .nav-links a { display: block; padding: 13px 16px; font-size: 0.95rem; border-radius: 10px; }
    .nav-links a:hover { background: rgba(0,0,0,0.04); }
    .nav-links .nav-cta { text-align: center; margin-top: 4px; }
    .hero-section { height: 82vh; padding: 0 22px; }
    .hero-section h1 { font-size: clamp(1.9rem, 8.2vw, 2.6rem); letter-spacing: -0.02em; line-height: 1.08; }
    .hero-section p { font-size: 0.95rem; }
    .hero-cta { width: 100%; }
    .hero-cta .btn-sage, .hero-cta .btn { flex: 1 1 auto; text-align: center; }
    .scroll-wrapper { height: 180vh; }
    .scroll-hint { bottom: 20px; }
    .section { padding: 80px 20px; }
    .services-grid { grid-template-columns: 1fr; }
    .pricing-grid, .pricing-grid.cols-4 { grid-template-columns: 1fr; }
    .form-row { grid-template-columns: 1fr; }
    .results-grid { grid-template-columns: 1fr; }
    .results-img-float { position: static; margin-top: 20px; }
    .process-steps { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .contact-wrapper { grid-template-columns: 1fr; }
    .footer-inner { grid-template-columns: 1fr; }
    .footer-links-grid { grid-template-columns: 1fr; }
    .footer-bottom { flex-direction: column; gap: 16px; text-align: center; }
    .website-callout { flex-direction: column; text-align: center; }
    .page-hero { padding: 130px 20px 70px; }
}
