:root {
    --paper: #faf8f4;
    --paper-tint: #f1efe7;
    --card: #ffffff;
    --ink: #21252a;
    --muted: #5d646d;
    --dim: #9097a0;
    --green-deep: #0d5c49;
    --green: #12775e;
    --green-tint: #e3f0ea;
    --green-line: #bfd9cf;
    --cta: #d95b35;
    --cta-hover: #c04c29;
    --cta-tint: #fbeae3;
    --line: #e6e2d7;
    --footer-bg: #0b3d32;
    --footer-line: #1c5748;
    --radius: 10px;
    --wrap: 1120px;
    --shadow: 0 1px 2px rgba(33, 37, 42, 0.05), 0 10px 30px rgba(33, 37, 42, 0.07);
    --font-head: 'Fraunces', Georgia, serif;
    --font-body: 'Inter', 'Helvetica Neue', Arial, sans-serif;
}

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

html { scroll-behavior: smooth; }

body {
    margin: 0;
    font-family: var(--font-body);
    font-size: 16px;
    line-height: 1.65;
    color: var(--ink);
    background: var(--paper);
}

h1, h2, h3 { font-family: var(--font-head); font-weight: 650; letter-spacing: -0.01em; line-height: 1.15; color: var(--ink); margin: 0 0 0.6rem; }
h1 { font-size: clamp(2.1rem, 4.6vw, 3.1rem); }
h2 { font-size: clamp(1.5rem, 3vw, 2.05rem); }
h3 { font-size: 1.18rem; }
h1 em { font-style: italic; color: var(--green-deep); }

p { margin: 0 0 1rem; }

a { color: var(--green-deep); text-decoration: none; }
a:hover { color: var(--green); text-decoration: underline; }

.wrap { max-width: var(--wrap); margin: 0 auto; padding: 0 1.5rem; }
.wrap-narrow { max-width: 820px; }

.kicker {
    margin: 0 0 0.6rem;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--cta);
}

.lead { font-size: 1.13rem; color: var(--muted); max-width: 44rem; }

.skip-link {
    position: absolute;
    top: -48px;
    left: 0.75rem;
    z-index: 300;
    background: var(--green-deep);
    color: #fff;
    padding: 0.65rem 1.1rem;
    border-radius: 0 0 8px 8px;
    font-weight: 600;
    font-size: 0.9rem;
    transition: top 0.15s ease;
}
.skip-link:focus { top: 0; color: #fff; text-decoration: none; }

/* ── Header ── */
.topbar {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(250, 248, 244, 0.95);
    backdrop-filter: blur(6px);
    border-bottom: 1px solid var(--line);
}

.topbar-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1.5rem;
    min-height: 76px;
}

.wordmark { display: flex; align-items: center; gap: 0.75rem; flex-shrink: 0; }
.wordmark:hover { text-decoration: none; }

.wordmark-badge {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 10px;
    background: var(--green-deep);
    color: #fff;
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.04em;
    font-family: var(--font-head);
}

.wordmark-copy { display: flex; flex-direction: column; line-height: 1.25; }
.wordmark-name { font-weight: 600; font-size: 0.98rem; letter-spacing: 0.1em; color: var(--ink); }
.wordmark-tag { font-size: 0.74rem; color: var(--muted); }

.nav-toggle {
    display: none;
    background: transparent;
    border: 1px solid var(--line);
    color: var(--ink);
    padding: 0.5rem 0.8rem;
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.88rem;
    font-weight: 600;
    cursor: pointer;
}

.mainnav ul {
    display: flex;
    align-items: center;
    gap: 0.25rem;
    list-style: none;
    margin: 0;
    padding: 0;
}

.mainnav a {
    display: inline-block;
    padding: 0.55rem 0.8rem;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--muted);
    border-radius: 8px;
}

.mainnav a:hover { color: var(--ink); background: var(--paper-tint); text-decoration: none; }
.mainnav a[aria-current="page"] { color: var(--green-deep); background: var(--green-tint); }

/* ── Buttons ── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.78rem 1.35rem;
    border-radius: 999px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 0.95rem;
    cursor: pointer;
    border: 1.5px solid transparent;
    transition: background 0.15s ease, border-color 0.15s ease, color 0.15s ease, transform 0.1s ease;
}
.btn:hover { text-decoration: none; transform: translateY(-1px); }

.btn-cta { background: var(--cta); color: #fff !important; border-color: var(--cta); }
.btn-cta:hover { background: var(--cta-hover); border-color: var(--cta-hover); }

.btn-outline { background: transparent; color: var(--green-deep) !important; border-color: var(--green-line); }
.btn-outline:hover { border-color: var(--green-deep); background: var(--green-tint); }

.btn-ghost-light { background: transparent; color: #fff !important; border-color: rgba(255, 255, 255, 0.45); }
.btn-ghost-light:hover { background: rgba(255, 255, 255, 0.1); border-color: #fff; }

.btn-wa { background: #25d366; color: #fff !important; border-color: #25d366; }
.btn-wa:hover { background: #1ebe57; border-color: #1ebe57; }
.btn-wa svg { width: 1.1rem; height: 1.1rem; fill: currentColor; }

.btn-sm { padding: 0.5rem 1rem; font-size: 0.86rem; }
.btn-block { width: 100%; }

.cta-row { display: flex; flex-wrap: wrap; gap: 0.75rem; align-items: center; }
.cta-row-center { justify-content: center; margin-top: 2rem; }

/* ── Sections ── */
.section { padding: 3.5rem 0; }
.section-flush { padding-top: 0; }
.section-tint { background: var(--paper-tint); }

.section-band { background: var(--green-deep); color: #fff; }
.section-band h2 { color: #fff; }
.section-band p { color: rgba(255, 255, 255, 0.85); max-width: 34rem; margin-bottom: 0; }
.band-inner { display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 1.5rem; }

/* ── Hero ── */
.hero { padding: 4rem 0 3.5rem; }
.hero-grid {
    display: grid;
    grid-template-columns: minmax(0, 1.35fr) minmax(0, 1fr);
    gap: 3rem;
    align-items: center;
}
.hero-copy h1 { margin-bottom: 1.1rem; max-width: 17ch; }
.hero-copy .lead { margin-bottom: 1.6rem; }

.trust-chips {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    list-style: none;
    margin: 1.6rem 0 0;
    padding: 0;
}
.trust-chips li {
    font-size: 0.8rem;
    font-weight: 500;
    color: var(--green-deep);
    background: var(--green-tint);
    border: 1px solid var(--green-line);
    border-radius: 999px;
    padding: 0.3rem 0.75rem;
}

.hero-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.6rem;
}
.hero-card h2 {
    font-family: var(--font-body);
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 1.1rem;
}
.proof-list { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; }
.proof-list li { display: grid; gap: 0.1rem; padding-top: 1rem; border-top: 1px solid var(--line); }
.proof-list li:first-child { padding-top: 0; border-top: 0; }
.proof-list strong { font-family: var(--font-head); font-size: 1.35rem; font-weight: 650; color: var(--green-deep); }
.proof-list span { font-size: 0.88rem; color: var(--muted); }
.hero-card-note { margin: 1.2rem 0 0; font-size: 0.84rem; color: var(--dim); }

/* ── Grids & cards ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 1.25rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; }

.pain-card, .value-card, .fix-card, .result-card, .rate-note {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.5rem 1.4rem;
}

.pain-quote {
    font-family: var(--font-head);
    font-style: italic;
    font-size: 1.08rem;
    color: var(--green-deep);
    margin-bottom: 0.9rem;
    line-height: 1.4;
}

.pain-card h3, .fix-card h3 { margin-bottom: 0.4rem; }
.pain-card p:last-child, .value-card p:last-child { margin-bottom: 0; color: var(--muted); font-size: 0.95rem; }

.value-num {
    display: inline-block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--cta);
    margin-bottom: 0.5rem;
}
.value-card p { color: var(--muted); font-size: 0.95rem; margin-bottom: 0; }

.fix-card p { color: var(--muted); font-size: 0.95rem; }
.fix-outcome {
    margin-bottom: 0 !important;
    padding: 0.6rem 0.9rem;
    background: var(--green-tint);
    border-radius: 8px;
    color: var(--green-deep) !important;
    font-weight: 500;
    font-size: 0.9rem !important;
}

/* ── Results ── */
.result-headline { display: flex; align-items: baseline; gap: 0.6rem; flex-wrap: wrap; margin-bottom: 0.75rem; }
.result-stat { font-family: var(--font-head); font-size: 1.7rem; font-weight: 650; color: var(--cta); }
.result-label { font-size: 0.88rem; color: var(--muted); }
.result-meta { font-size: 0.82rem; font-weight: 600; letter-spacing: 0.06em; text-transform: uppercase; color: var(--dim); margin-bottom: 0.75rem; }
.result-card p { color: var(--muted); font-size: 0.95rem; }

/* ── Steps ── */
.steps { list-style: none; margin: 0; padding: 0; display: grid; gap: 1rem; counter-reset: step; }
.steps li {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 1.25rem;
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.5rem 1.5rem;
    align-items: start;
}
.step-num {
    display: grid;
    place-items: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: var(--green-deep);
    color: #fff;
    font-family: var(--font-head);
    font-size: 1.2rem;
    font-weight: 650;
}
.steps h3 { grid-column: 2; margin: 0 0 0.35rem; }
.steps p { grid-column: 2; color: var(--muted); font-size: 0.96rem; margin-bottom: 0.4rem; }
.steps .step-note { font-size: 0.84rem; color: var(--green-deep); font-weight: 500; margin-bottom: 0; }

.aside-note { margin: 1.75rem 0 0; text-align: center; font-size: 0.92rem; color: var(--muted); }

/* ── Pricing ── */
.price-grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 1.25rem; align-items: stretch; }
.price-card {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
}
.price-featured { border-color: var(--green-deep); border-width: 2px; position: relative; }
.price-flag {
    position: absolute;
    top: -0.8rem;
    left: 50%;
    transform: translateX(-50%);
    white-space: nowrap;
    background: var(--green-deep);
    color: #fff;
    font-size: 0.74rem;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    padding: 0.3rem 0.9rem;
    border-radius: 999px;
    margin: 0;
}
.price-amount { font-family: var(--font-head); font-size: 2.1rem; font-weight: 650; color: var(--ink); margin: 0.3rem 0 0.2rem; }
.price-amount span { font-size: 1rem; font-family: var(--font-body); font-weight: 500; color: var(--muted); }
.price-for { font-size: 0.88rem; color: var(--cta); font-weight: 500; margin-bottom: 1rem; }
.price-card ul { list-style: none; margin: 0 0 1.5rem; padding: 0; flex: 1; display: grid; gap: 0.55rem; }
.price-card li { position: relative; padding-left: 1.4rem; font-size: 0.93rem; color: var(--muted); }
.price-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--green);
    font-weight: 600;
}

.rates-row { margin-top: 1.5rem; }
.rate-note h3 { font-size: 1rem; margin-bottom: 0.3rem; }
.rate-note p { margin: 0; font-size: 0.9rem; color: var(--muted); }

/* ── FAQ ── */
.faq-list { display: grid; gap: 0.75rem; max-width: 820px; }
.faq-item { background: var(--card); border: 1px solid var(--line); border-radius: var(--radius); box-shadow: var(--shadow); }
.faq-item summary {
    list-style: none;
    cursor: pointer;
    padding: 1.05rem 1.3rem;
    font-weight: 600;
    font-size: 0.98rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after { content: '+'; font-size: 1.3rem; font-weight: 400; color: var(--cta); flex-shrink: 0; }
.faq-item[open] summary::after { content: '−'; }
.faq-item p { margin: 0; padding: 0 1.3rem 1.15rem; color: var(--muted); font-size: 0.93rem; max-width: 44rem; }

/* ── About ── */
.prose p { color: var(--muted); font-size: 1.02rem; }
.prose strong { color: var(--ink); }
.about-points { margin-top: 2rem; }
.legal-note { margin: 2rem 0 1.5rem; font-size: 0.85rem; color: var(--dim); }

/* ── Contact ── */
.contact-grid { display: grid; grid-template-columns: minmax(0, 1.5fr) minmax(0, 1fr); gap: 1.25rem; align-items: start; }
.contact-main { display: grid; gap: 1.25rem; }
.contact-side { display: grid; gap: 1.25rem; }

.panel {
    background: var(--card);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    padding: 1.5rem;
}
.panel h2 { font-size: 1.3rem; margin-bottom: 0.3rem; }
.panel h3 { font-size: 1.05rem; margin-bottom: 0.4rem; }
.panel-note { font-size: 0.92rem; color: var(--muted); margin-bottom: 1.1rem; }
.panel p { font-size: 0.95rem; color: var(--muted); }
.side-meta { font-size: 0.84rem; color: var(--dim); margin: 0.6rem 0 0; }

.calendly-inline-widget { min-width: 280px; height: 640px; }
.calendly-fallback { display: none; font-size: 0.92rem; color: var(--muted); }
.calendly-fallback.is-visible { display: block; }

.contact-grid label { display: block; font-weight: 600; font-size: 0.84rem; margin-bottom: 0.35rem; color: var(--ink); }
.contact-grid .optional { font-weight: 400; color: var(--dim); }
.contact-grid input, .contact-grid textarea {
    width: 100%;
    margin-bottom: 1rem;
    padding: 0.72rem 0.85rem;
    border: 1.5px solid var(--line);
    border-radius: 8px;
    font-family: inherit;
    font-size: 0.95rem;
    background: var(--paper);
    color: var(--ink);
}
.contact-grid input:focus, .contact-grid textarea:focus {
    outline: none;
    border-color: var(--green-deep);
    background: #fff;
}
.contact-grid textarea { min-height: 120px; resize: vertical; }
.form-sent { margin-top: 0.9rem; padding: 0.7rem 0.9rem; background: var(--green-tint); border-radius: 8px; color: var(--green-deep); font-size: 0.9rem; }

/* ── Sticky CTA & WhatsApp float ── */
.sticky-cta {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 110;
    display: none;
    align-items: center;
    justify-content: center;
    gap: 0.9rem;
    padding: 0.7rem 1rem;
    background: var(--card);
    border-top: 1px solid var(--line);
    box-shadow: 0 -6px 20px rgba(33, 37, 42, 0.08);
}
.sticky-cta.is-visible { display: flex; }
.sticky-cta-text { font-size: 0.9rem; font-weight: 500; color: var(--ink); }

.wa-float {
    position: fixed;
    right: 1.15rem;
    bottom: 1.15rem;
    z-index: 120;
    display: grid;
    place-items: center;
    width: 3.3rem;
    height: 3.3rem;
    border-radius: 50%;
    background: #25d366;
    color: #fff;
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}
.wa-float:hover { background: #1ebe57; color: #fff; }
.wa-float svg { width: 1.6rem; height: 1.6rem; fill: currentColor; }

/* ── Footer ── */
.footer { background: var(--footer-bg); color: #b8cfc5; font-size: 0.9rem; margin-top: 3rem; }
.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 1.5rem;
    padding-top: 2.5rem;
    padding-bottom: 1.5rem;
}
.footer-brand { font-family: var(--font-head); font-weight: 650; letter-spacing: 0.1em; color: #fff; font-size: 1rem; margin-bottom: 0.5rem; }
.footer a { color: #8fd8bc; }
.footer a:hover { color: #b9ecd7; }
.footer h3 { font-family: var(--font-body); font-size: 0.74rem; font-weight: 600; letter-spacing: 0.1em; text-transform: uppercase; color: #7ba394; margin-bottom: 0.7rem; }
.footer ul { list-style: none; margin: 0; padding: 0; display: grid; gap: 0.4rem; }
.footer p { margin: 0 0 0.45rem; }
.footer-bottom {
    border-top: 1px solid var(--footer-line);
    padding-top: 1.1rem;
    padding-bottom: 1.6rem;
    display: flex;
    flex-wrap: wrap;
    justify-content: space-between;
    gap: 0.5rem;
    font-size: 0.82rem;
    color: #6f9587;
}

/* ── Responsive ── */
@media (max-width: 940px) {
    .hero-grid, .grid-3, .price-grid, .contact-grid, .footer-grid { grid-template-columns: 1fr; }
    .grid-2 { grid-template-columns: 1fr; }
    .hero { padding-top: 2.5rem; }
    .band-inner { flex-direction: column; align-items: flex-start; }
}

@media (max-width: 760px) {
    .nav-toggle { display: inline-flex; }
    .topbar-inner { flex-wrap: wrap; padding-top: 0.6rem; padding-bottom: 0.6rem; min-height: 0; }
    .mainnav { display: none; width: 100%; }
    .mainnav.is-open { display: block; }
    .mainnav ul { flex-direction: column; align-items: stretch; gap: 0; padding-bottom: 0.75rem; }
    .mainnav a { display: block; padding: 0.8rem 0.5rem; border-bottom: 1px solid var(--line); border-radius: 0; }
    .mainnav .btn { margin-top: 0.6rem; }
    .section { padding: 2.5rem 0; }
}
