/* ══════════════════════════════════════════════
   PLANTAE — site.css
   Brand tokens, resets, layout, components
══════════════════════════════════════════════ */

/* ── Tokens ── */
:root {
    --bg:           #f7f4eb;
    --bg-soft:      #eef3ea;
    --bg-white:     #ffffff;
    --paper:        rgba(255,252,246,0.92);
    --paper-solid:  #fffdf7;
    --ink:          #183128;
    --muted:        #61756b;
    --line:         rgba(83,111,93,0.15);
    --forest-deep:  #0f3429;
    --forest:       #1d5d46;
    --leaf:         #8FCF6A;
    --leaf-light:   #b2e08c;
    --shadow:       0 22px 60px rgba(15,52,41,0.11);
    --shadow-soft:  0 8px 28px rgba(15,52,41,0.07);
    --radius-xl:    28px;
    --radius-lg:    20px;
    --radius-md:    14px;
    --radius-sm:    10px;
    --shell:        min(1160px, calc(100vw - 48px));
}

/* ── Reset ── */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    margin: 0;
    color: var(--ink);
    background: var(--bg);
    font-family: "Manrope", sans-serif;
    font-size: 1rem;
    line-height: 1.65;
    -webkit-font-smoothing: antialiased;
}
body.nav-locked { overflow: hidden; }
a { color: inherit; text-decoration: none; }
a, button { -webkit-tap-highlight-color: transparent; }
img { display: block; max-width: 100%; }
button { font: inherit; cursor: pointer; border: 0; background: 0; padding: 0; }
h1,h2,h3,h4,h5,h6,p,ul,ol { margin: 0; }
ul { padding: 0; list-style: none; }

/* ── Shell ── */
.shell {
    width: var(--shell);
    margin-inline: auto;
}

/* ══════════════════════════════════════════════
   TYPOGRAPHY
══════════════════════════════════════════════ */
h1, h2 {
    font-family: "Fraunces", serif;
    font-weight: 700;
    line-height: 1.05;
    color: var(--forest-deep);
}
h3 {
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-size: 1.2rem;
    color: var(--forest-deep);
    line-height: 1.3;
}
h4 {
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-size: 0.9rem;
    color: var(--forest-deep);
    letter-spacing: 0.04em;
}

h1 { font-size: clamp(2.7rem, 5.5vw, 4.6rem); }
h2 { font-size: clamp(2rem, 3.8vw, 3.2rem); }

.eyebrow {
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    font-size: 0.76rem;
    font-weight: 800;
    color: var(--forest);
}
.eyebrow-light { color: var(--leaf); }

.section-heading {
    display: grid;
    gap: 16px;
    max-width: 640px;
    margin-bottom: 64px;
}
.section-heading p:not(.eyebrow) { color: var(--muted); font-size: 1.06rem; }
.section-heading-light h2 { color: #f7f4eb; }
.section-heading-light p { color: rgba(247,244,235,0.65); }

/* ══════════════════════════════════════════════
   BUTTONS
══════════════════════════════════════════════ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    min-height: 52px;
    padding: 0 26px;
    border: 1.5px solid transparent;
    border-radius: 999px;
    font-family: "Manrope", sans-serif;
    font-weight: 800;
    font-size: 0.97rem;
    letter-spacing: 0.01em;
    transition: transform 0.18s ease, box-shadow 0.18s ease, background 0.18s ease, border-color 0.18s ease, color 0.18s ease;
    white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn:active { transform: translateY(0); }

/* Primary — leaf gradient on dark backgrounds */
.btn-primary {
    background: linear-gradient(135deg, var(--leaf-light), var(--leaf));
    color: var(--forest-deep);
    border-color: rgba(143,207,106,0.4);
    box-shadow: 0 14px 34px rgba(143,207,106,0.25);
}
.btn-primary:hover { box-shadow: 0 18px 42px rgba(143,207,106,0.32); }

/* Dark — forest gradient on light backgrounds */
.btn-dark {
    background: linear-gradient(135deg, var(--forest), var(--forest-deep));
    color: #fff;
    box-shadow: 0 14px 32px rgba(15,52,41,0.16);
}
.btn-dark:hover { box-shadow: 0 18px 38px rgba(15,52,41,0.22); }

/* Outline — white border on dark backgrounds */
.btn-outline {
    background: rgba(255,255,255,0.08);
    color: #f7f4eb;
    border-color: rgba(255,255,255,0.28);
}
.btn-outline:hover { background: rgba(255,255,255,0.14); }

/* Outline dark — subtle border on light backgrounds */
.btn-outline-dark {
    background: rgba(255,255,255,0.82);
    color: var(--forest-deep);
    border-color: rgba(29,93,70,0.16);
    box-shadow: 0 6px 20px rgba(15,52,41,0.06);
}
.btn-outline-dark:hover {
    background: #fff;
    box-shadow: 0 10px 28px rgba(15,52,41,0.1);
}

.btn-lg { min-height: 60px; padding: 0 34px; font-size: 1.04rem; }
.btn-full { width: 100%; }

.btn-leaf-icon {
    width: 18px;
    height: 18px;
    flex: 0 0 auto;
    filter: brightness(0) saturate(100%);
    opacity: 0.82;
}
.btn-leaf-icon img { width: 100%; height: 100%; object-fit: contain; }

/* Focus */
.btn:focus-visible,
.nav-links > a:focus-visible,
summary:focus-visible {
    outline: 3px solid rgba(143,207,106,0.45);
    outline-offset: 3px;
}

/* ══════════════════════════════════════════════
   STICKY HEADER / NAV
══════════════════════════════════════════════ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 40;
    border-bottom: 1px solid var(--line);
    background: rgba(247,244,235,0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
}
.site-header.is-open {
    position: fixed;
    inset: 0;
    border-bottom: 0;
    background: transparent;
    backdrop-filter: none;
    -webkit-backdrop-filter: none;
}

.nav-shell {
    min-height: 80px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
}
.site-header.is-open .nav-shell {
    position: relative;
    z-index: 41;
    align-items: flex-start;
    padding-top: max(20px, env(safe-area-inset-top));
}

/* Brand */
.brand {
    display: inline-flex;
    align-items: center;
    gap: 11px;
    font-family: "Fraunces", serif;
    font-size: 1.04rem;
    letter-spacing: 0.1em;
    color: var(--forest-deep);
    font-weight: 600;
}
.brand-mark {
    width: 30px;
    height: 30px;
    flex: 0 0 auto;
}
.brand-mark img { width: 100%; height: 100%; object-fit: contain; }

/* Nav panel */
.nav-panel {
    display: flex;
    align-items: center;
    gap: 8px;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 2px;
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-left: 12px;
}
.nav-links > a {
    padding: 9px 15px;
    border-radius: 999px;
    color: var(--muted);
    font-weight: 700;
    font-size: 0.93rem;
    transition: background 0.16s ease, color 0.16s ease;
}
.nav-links > a:hover {
    background: rgba(255,255,255,0.68);
    color: var(--forest-deep);
}

/* Mobile menu head */
.mobile-nav-head { display: none; }
.mobile-nav-label { display: grid; gap: 2px; }
.mobile-nav-label strong {
    font-family: "Fraunces", serif;
    letter-spacing: 0.1em;
    color: var(--forest-deep);
    font-size: 1rem;
}
.mobile-nav-label span { color: var(--muted); font-size: 0.82rem; }

/* Hamburger / close buttons */
.nav-toggle,
.nav-close {
    display: none;
    width: 44px;
    height: 44px;
    align-items: center;
    justify-content: center;
    border: 1.5px solid var(--line);
    border-radius: 14px;
    background: rgba(255,255,255,0.85);
    transition: background 0.16s ease;
}
.nav-toggle:hover, .nav-close:hover { background: #fff; }

.nav-toggle span,
.nav-toggle span::before,
.nav-toggle span::after,
.nav-close span,
.nav-close span::before {
    display: block;
    position: relative;
    width: 18px;
    height: 2px;
    border-radius: 999px;
    background: var(--forest-deep);
    transition: all 0.22s ease;
}
.nav-toggle span::before,
.nav-toggle span::after,
.nav-close span::before {
    content: "";
    position: absolute;
    left: 0;
}
.nav-toggle span::before { top: -6px; }
.nav-toggle span::after  { top: 6px; }

.site-header.is-open .nav-toggle span   { background: transparent; }
.site-header.is-open .nav-toggle span::before { top: 0; transform: rotate(45deg); }
.site-header.is-open .nav-toggle span::after  { top: 0; transform: rotate(-45deg); }

.nav-close span { transform: rotate(45deg); }
.nav-close span::before { inset: 0; transform: rotate(90deg); }

/* ══════════════════════════════════════════════
   SECTIONS — base
══════════════════════════════════════════════ */
.section { padding: 108px 0; }
.section-cream   { background: #f3f0e6; }
.section-soft    { background: var(--bg-soft); }
.section-white   { background: #fff; }
.section-dark    {
    background: var(--forest-deep);
    position: relative;
    overflow: hidden;
}
.section-dark::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse at top right, rgba(143,207,106,0.08), transparent 55%),
        radial-gradient(ellipse at bottom left, rgba(29,93,70,0.5), transparent 55%);
}
.section-dark > * { position: relative; }

/* ══════════════════════════════════════════════
   HERO
══════════════════════════════════════════════ */
.hero {
    background: var(--forest-deep);
    padding: 96px 0 112px;
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 72% -8%,  rgba(143,207,106,0.22), transparent 44%),
        radial-gradient(ellipse at -6% 88%,  rgba(29,93,70,0.80),  transparent 46%),
        radial-gradient(ellipse at 50% 110%, rgba(15,52,41,0.60),  transparent 55%);
}
.hero::after {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image: radial-gradient(rgba(143,207,106,0.07) 1.5px, transparent 1.5px);
    background-size: 36px 36px;
}
.hero > * { position: relative; z-index: 1; }

.hero-layout {
    display: grid;
    grid-template-columns: 54fr 46fr;
    gap: 64px;
    align-items: center;
}

/* Large decorative leaf watermark */
.hero-leaf-bg {
    position: absolute;
    right: -4%;
    top: -16%;
    width: 54%;
    max-width: 640px;
    pointer-events: none;
    opacity: 0.045;
    transform: rotate(12deg);
    z-index: 0;
}
.hero-leaf-bg img { width: 100%; filter: brightness(0) invert(1); }

/* Hero copy */
.hero-copy { display: grid; gap: 26px; }
.hero h1 {
    color: #f7f4eb;
    max-width: 14ch;
    font-size: clamp(2.8rem, 5.8vw, 5.2rem);
    letter-spacing: -0.02em;
    line-height: 1.02;
}
.hero h1 em {
    font-style: normal;
    color: var(--leaf);
}
.hero-lead {
    color: rgba(247,244,235,0.70);
    font-size: 1.12rem;
    max-width: 46ch;
    line-height: 1.7;
}
.hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    align-items: center;
}
.trust-row {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    align-items: center;
}
.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 7px 13px;
    border-radius: 999px;
    background: rgba(255,255,255,0.06);
    border: 1px solid rgba(255,255,255,0.12);
    color: rgba(247,244,235,0.75);
    font-size: 0.82rem;
    font-weight: 600;
}

/* ── Hero Visual Mosaic ── */
.hero-visual {
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-left: auto;
    max-width: 420px;
}
.hv-mosaic {
    display: grid;
    grid-template-columns: 58fr 42fr;
    grid-template-rows: auto auto;
    gap: 14px;
}
/* Base card */
.hv-card {
    background: rgba(255,255,255,0.07);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 20px;
    padding: 20px;
    backdrop-filter: blur(8px);
    color: #f7f4eb;
}
/* Card grid positions */
.hv-card-tax     { grid-column: 1; grid-row: 1; }
.hv-card-offline { grid-column: 2; grid-row: 1; display: flex; flex-direction: column; align-items: flex-start; gap: 8px; }
.hv-card-care    { grid-column: 1; grid-row: 2; }
.hv-card-loc     { grid-column: 2; grid-row: 2; }

.hv-card-icon { width: 36px; height: 36px; margin-bottom: 10px; }
.hv-card-icon img { width: 100%; filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(65deg); }
.hv-label { font-size: 0.68rem; font-weight: 800; letter-spacing: 0.12em; text-transform: uppercase; color: var(--leaf); margin: 0 0 4px; }
.hv-name  { font-family: "Fraunces", serif; font-style: italic; font-size: 1rem; color: #f7f4eb; margin: 0 0 4px; line-height: 1.3; }
.hv-sub   { font-size: 0.72rem; color: rgba(247,244,235,0.55); margin: 0; font-weight: 600; line-height: 1.5; }

/* Offline card */
.hv-offline-ring {
    width: 42px; height: 42px; border-radius: 50%;
    background: rgba(143,207,106,0.15);
    border: 1.5px solid rgba(143,207,106,0.3);
    display: flex; align-items: center; justify-content: center;
}
.hv-offline-label { font-size: 1rem; font-weight: 800; color: #f7f4eb; margin: 0; }
.hv-offline-sub   { font-size: 0.78rem; color: rgba(247,244,235,0.6); margin: 0; line-height: 1.5; font-weight: 600; }

/* Agenda card */
.hv-care-title { display: flex; align-items: center; gap: 6px; font-size: 0.72rem; font-weight: 800; letter-spacing: 0.08em; text-transform: uppercase; color: rgba(247,244,235,0.55); margin: 0 0 12px; }
.hv-care-rows  { display: grid; gap: 8px; }
.hv-care-row   { display: flex; align-items: center; gap: 9px; font-size: 0.8rem; color: rgba(247,244,235,0.8); font-weight: 600; }
.hv-dot        { width: 7px; height: 7px; border-radius: 50%; flex: 0 0 auto; }

/* Location card */
.hv-loc-label  { display: flex; align-items: center; gap: 6px; font-size: 0.72rem; font-weight: 800; text-transform: uppercase; letter-spacing: 0.08em; color: rgba(247,244,235,0.55); margin: 0 0 8px; }
.hv-breadcrumb { font-family: "Fraunces", serif; font-size: 0.88rem; color: #f7f4eb; margin: 0 0 10px; line-height: 1.4; }
.hv-loc-chip   { display: inline-block; padding: 3px 9px; border-radius: 999px; background: rgba(143,207,106,0.15); border: 1px solid rgba(143,207,106,0.28); color: var(--leaf); font-size: 0.65rem; font-weight: 800; letter-spacing: 0.06em; }

/* Platform badges */
.hv-platform       { display: flex; align-items: center; gap: 14px; flex-wrap: wrap; }
.hv-platform-label { font-size: 0.78rem; color: rgba(247,244,235,0.45); font-weight: 700; }
.hv-platform-row   { display: flex; gap: 8px; }
.hv-badge          { display: inline-flex; align-items: center; gap: 6px; padding: 7px 14px; border-radius: 999px; background: rgba(255,255,255,0.08); border: 1px solid rgba(255,255,255,0.16); color: rgba(247,244,235,0.75); font-size: 0.78rem; font-weight: 700; }

/* Float animations */
@keyframes hv-float-a {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-8px); }
}
@keyframes hv-float-b {
    0%, 100% { transform: translateY(0); }
    50%       { transform: translateY(-6px); }
}
.hv-float-a { animation: hv-float-a 5s ease-in-out infinite; }
.hv-float-b { animation: hv-float-b 6.5s ease-in-out infinite 0.8s; }

/* ── Scroll Reveal ── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}
.reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* ══════════════════════════════════════════════
   STATS STRIP
══════════════════════════════════════════════ */
.stats-strip {
    background: #fff;
    border-bottom: 1px solid var(--line);
}
.stats-grid {
    display: grid;
    grid-template-columns: repeat(4,1fr);
    gap: 0;
    border-left: 1px solid var(--line);
}
.stat-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    padding: 34px 24px;
    text-align: center;
    border-right: 1px solid var(--line);
}
.stat-item strong {
    font-family: "Fraunces", serif;
    font-size: 2.4rem;
    font-weight: 700;
    color: var(--forest-deep);
    line-height: 1;
}
.stat-item span {
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--muted);
    text-transform: uppercase;
    letter-spacing: 0.07em;
}

/* ══════════════════════════════════════════════
   PAIN SECTION
══════════════════════════════════════════════ */
.pain-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
    margin-bottom: 56px;
}
.pain-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    display: grid;
    gap: 12px;
    align-content: start;
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.pain-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}
.pain-icon {
    width: 52px;
    height: 52px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: rgba(143,207,106,0.1);
    border: 1px solid rgba(143,207,106,0.2);
}
.pain-card h3 { font-size: 1.08rem; }
.pain-card p  { color: var(--muted); font-size: 0.97rem; }

.pain-resolution {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    text-align: center;
}
.pain-resolution-text {
    font-family: "Fraunces", serif;
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 700;
    color: var(--forest-deep);
}
.pain-arrow { animation: bounce-arrow 1.8s ease infinite; }
@keyframes bounce-arrow {
    0%,100% { transform: translateY(0); }
    50%      { transform: translateY(6px); }
}

/* ══════════════════════════════════════════════
   FEATURES — ALTERNATING BLOCKS
══════════════════════════════════════════════ */
.feature-block {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
    padding: 64px 0;
    border-bottom: 1px solid var(--line);
}
.feature-block:last-child { border-bottom: 0; }
.feature-block-reverse .feature-copy { order: 2; }
.feature-block-reverse .feature-visual { order: 1; }

.feature-copy { display: grid; gap: 20px; }
.feature-copy h3 { font-size: 1.7rem; font-family: "Fraunces", serif; font-weight: 700; color: var(--forest-deep); }
.feature-copy > p { color: var(--muted); font-size: 1.04rem; line-height: 1.7; }
.feature-list {
    display: grid;
    gap: 10px;
}
.feature-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--forest-deep);
}
.feature-list li::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--leaf);
    flex: 0 0 auto;
}

/* ── Feature visuals ── */
.feature-visual {
    display: flex;
    justify-content: center;
}

/* Plant profile card (feature 1) */
.fv-plant-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px;
    width: 100%;
    max-width: 380px;
    display: grid;
    gap: 16px;
    box-shadow: var(--shadow);
}
.fv-plant-header {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}
.fv-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    flex: 0 0 auto;
    margin-top: 6px;
}
.fv-eyebrow-label {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.12em;
    color: var(--muted);
    margin-bottom: 4px;
}
.fv-plant-name {
    font-family: "Fraunces", serif;
    font-style: italic;
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--forest-deep);
    line-height: 1.2;
}
.fv-breadcrumb {
    display: flex;
    align-items: center;
    gap: 5px;
    font-size: 0.74rem;
    font-weight: 600;
    color: var(--muted);
}
.fv-photos {
    display: flex;
    gap: 8px;
}
.fv-photo {
    flex: 1;
    aspect-ratio: 4/3;
    border-radius: var(--radius-sm);
}
.fv-chips { display: flex; flex-wrap: wrap; gap: 7px; }
.fv-chip {
    padding: 5px 12px;
    border-radius: 999px;
    background: rgba(29,93,70,0.07);
    border: 1px solid rgba(29,93,70,0.12);
    font-size: 0.74rem;
    font-weight: 700;
    color: var(--forest-deep);
}
.fv-chip-green {
    background: rgba(143,207,106,0.14);
    border-color: rgba(143,207,106,0.3);
    color: var(--forest);
}
.fv-chip-award {
    background: rgba(232,168,77,0.12);
    border-color: rgba(232,168,77,0.3);
    color: #9a6010;
}

/* Week calendar card (feature 2) */
.fv-calendar-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px;
    width: 100%;
    max-width: 380px;
    display: grid;
    gap: 20px;
    box-shadow: var(--shadow);
}
.fv-card-title {
    font-weight: 800;
    font-size: 0.88rem;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--forest-deep);
}
.fv-week {
    display: grid;
    grid-template-columns: repeat(7,1fr);
    gap: 4px;
}
.fv-day {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 7px;
    padding: 8px 4px;
    border-radius: var(--radius-sm);
}
.fv-day-today {
    background: rgba(143,207,106,0.1);
    border: 1px solid rgba(143,207,106,0.25);
}
.fv-day-done { opacity: 0.7; }
.fv-day-name { font-size: 0.67rem; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: 0.05em; }
.fv-day-dot { width: 8px; height: 8px; border-radius: 50%; }
.fv-day-dot-empty { background: rgba(83,111,93,0.15); }

.fv-events { display: grid; gap: 10px; }
.fv-event {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.84rem;
    font-weight: 600;
    color: var(--ink);
}
.fv-event-dot { width: 8px; height: 8px; border-radius: 50%; flex: 0 0 auto; }
.fv-event > span:nth-child(2) { flex: 1; }
.fv-event-done {
    font-size: 0.7rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--leaf);
}
.fv-event-badge {
    padding: 3px 9px;
    border-radius: 999px;
    background: rgba(232,125,155,0.14);
    border: 1px solid rgba(232,125,155,0.3);
    color: #c0345a;
    font-size: 0.7rem;
    font-weight: 800;
}
.fv-event-date {
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--muted);
}

/* Sync card (feature 3) */
.fv-sync-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    width: 100%;
    max-width: 380px;
    display: grid;
    gap: 18px;
    align-items: center;
    box-shadow: var(--shadow);
    text-align: center;
}
.fv-sync-icon {
    display: flex;
    justify-content: center;
}
.fv-sync-title {
    font-family: "Fraunces", serif;
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--forest-deep);
}
.fv-sync-bar-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
}
.fv-sync-bar {
    flex: 1;
    height: 8px;
    background: rgba(143,207,106,0.15);
    border-radius: 999px;
    overflow: hidden;
}
.fv-sync-fill {
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, var(--leaf-light), var(--leaf));
    border-radius: 999px;
}
.fv-sync-pct {
    font-weight: 800;
    font-size: 0.88rem;
    color: var(--forest);
}
.fv-sync-items {
    display: grid;
    gap: 10px;
    text-align: left;
}
.fv-sync-item {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 0.87rem;
    font-weight: 600;
    color: var(--ink);
}
.fv-sync-ok { color: var(--forest-deep); }
.fv-sync-note {
    font-size: 0.78rem;
    color: var(--muted);
    text-align: center;
}

/* ══════════════════════════════════════════════
   AUDIENCE
══════════════════════════════════════════════ */
.audience-layout {
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    gap: 64px;
    align-items: center;
}
.audience-header { display: grid; gap: 18px; }
.audience-header h2 { max-width: 12ch; }
.audience-header p { color: var(--muted); font-size: 1.04rem; }
.audience-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
}
.audience-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 28px 24px;
    display: grid;
    gap: 12px;
    align-content: start;
    box-shadow: var(--shadow-soft);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.audience-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow);
}
.audience-card-icon {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-md);
    background: rgba(143,207,106,0.1);
    border: 1px solid rgba(143,207,106,0.2);
}
.audience-card h3 { font-size: 1.1rem; }
.audience-card p  { color: var(--muted); font-size: 0.95rem; line-height: 1.6; }

/* ══════════════════════════════════════════════
   TESTIMONIALS
══════════════════════════════════════════════ */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 24px;
}
.testimonial-card {
    background: rgba(255,252,246,0.06);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: var(--radius-lg);
    padding: 32px 28px;
    display: grid;
    gap: 20px;
    align-content: start;
    transition: background 0.2s ease;
}
.testimonial-card:hover { background: rgba(255,252,246,0.09); }
.testimonial-stars { display: flex; }
.testimonial-card blockquote {
    margin: 0;
    font-size: 1.0rem;
    line-height: 1.7;
    color: rgba(247,244,235,0.82);
    font-style: italic;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 14px;
}
.testimonial-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.78rem;
    font-weight: 800;
    flex: 0 0 auto;
    color: var(--forest-deep);
}
.testimonial-avatar-1 { background: linear-gradient(135deg,#f7b5c5,#e87d9b); }
.testimonial-avatar-2 { background: linear-gradient(135deg,#b2e08c,var(--leaf)); }
.testimonial-avatar-3 { background: linear-gradient(135deg,#f5d49a,#e8a84d); }
.testimonial-author div { display: grid; gap: 2px; }
.testimonial-author strong { font-size: 0.92rem; color: #f7f4eb; font-weight: 800; }
.testimonial-author span { font-size: 0.78rem; color: rgba(247,244,235,0.5); font-weight: 600; }

/* ══════════════════════════════════════════════
   PRICING
══════════════════════════════════════════════ */
/* ── Pricing wrapper ── */
.pricing-wrapper {
    display: flex;
    flex-direction: column;
    gap: 28px;
}
.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--muted);
    font-weight: 600;
}
.pricing-guarantee svg { flex: 0 0 auto; }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3,1fr);
    gap: 0;
    align-items: stretch;
    border: 1px solid var(--line);
    border-radius: var(--radius-xl);
    overflow: hidden;
    box-shadow: 0 24px 60px rgba(15,52,41,0.10);
}
.price-card {
    background: var(--paper-solid);
    padding: 36px 32px 32px;
    display: flex;
    flex-direction: column;
    gap: 0;
    position: relative;
    overflow: hidden;
    border-right: 1px solid var(--line);
    transition: background 0.18s ease;
}
.price-card:last-child { border-right: 0; }
.price-card:hover { background: #fff; }
.price-card.is-highlight {
    background: linear-gradient(165deg, #1a5c44 0%, var(--forest-deep) 100%);
    border-color: transparent;
}
.price-card.is-highlight:hover { background: linear-gradient(165deg, #1e6a4e 0%, #112e21 100%); }

/* Plan header row */
.plan-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 20px;
}
.plan-name {
    font-size: 0.72rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    color: var(--forest);
}
.is-highlight .plan-name { color: rgba(143,207,106,0.75); }

/* Inline badge (replaces absolute corner) */
.price-badge {
    display: inline-flex;
    align-items: center;
    gap: 4px;
    padding: 4px 10px;
    border-radius: 999px;
    background: rgba(143,207,106,0.18);
    border: 1px solid rgba(143,207,106,0.36);
    color: var(--leaf);
    font-size: 0.62rem;
    font-weight: 800;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}
.price-badge::before {
    content: "";
    width: 5px; height: 5px;
    border-radius: 50%;
    background: var(--leaf);
}

/* Price */
.plan-price-row {
    display: flex;
    align-items: baseline;
    gap: 6px;
    margin-bottom: 6px;
}
.plan-price {
    font-family: "Fraunces", serif;
    font-size: 3.4rem;
    font-weight: 700;
    color: var(--forest-deep);
    line-height: 1;
    letter-spacing: -0.02em;
}
.is-highlight .plan-price { font-size: 3.8rem; color: #f7f4eb; }
.plan-cycle {
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--muted);
    padding-bottom: 2px;
}
.is-highlight .plan-cycle { color: rgba(247,244,235,0.50); }

/* Description */
.plan-description {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--line);
}
.is-highlight .plan-description { color: rgba(247,244,235,0.55); border-color: rgba(255,255,255,0.1); }

/* Features list */
.plan-features {
    display: grid;
    gap: 12px;
    flex: 1;
    margin-bottom: 24px;
}
.plan-features li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 0.89rem;
    font-weight: 600;
    color: var(--ink);
    line-height: 1.45;
}
.is-highlight .plan-features li { color: rgba(247,244,235,0.85); }
.feature-check { flex: 0 0 auto; margin-top: 2px; }

/* Footer note */
.plan-footer {
    margin-top: auto;
    display: flex;
    flex-direction: column;
    gap: 12px;
}
.plan-footer-note {
    font-size: 0.76rem;
    font-weight: 600;
    color: var(--muted);
    text-align: center;
}
.is-highlight .plan-footer-note { color: rgba(247,244,235,0.38); }

/* ══════════════════════════════════════════════
   FAQ
══════════════════════════════════════════════ */
.faq-list {
    display: grid;
    gap: 12px;
    max-width: 760px;
    margin: 0 auto;
}
.faq-list details {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    padding: 24px 28px;
    box-shadow: var(--shadow-soft);
    transition: box-shadow 0.18s ease;
}
.faq-list details[open] {
    box-shadow: var(--shadow);
    border-color: rgba(29,93,70,0.18);
}
.faq-list summary {
    cursor: pointer;
    list-style: none;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    font-weight: 800;
    font-size: 1.02rem;
    color: var(--forest-deep);
    user-select: none;
}
.faq-list summary::-webkit-details-marker { display: none; }
.faq-chevron {
    flex: 0 0 auto;
    transition: transform 0.22s ease;
}
details[open] .faq-chevron { transform: rotate(180deg); }
.faq-list details p {
    margin-top: 16px;
    padding-top: 16px;
    border-top: 1px solid var(--line);
    color: var(--muted);
    font-size: 0.97rem;
    line-height: 1.7;
}

/* ══════════════════════════════════════════════
   FINAL CTA
══════════════════════════════════════════════ */
.final-cta {
    background: var(--forest-deep);
    position: relative;
    overflow: hidden;
    text-align: center;
    padding: 120px 0;
}
.final-cta::before {
    content: "";
    position: absolute;
    inset: 0;
    pointer-events: none;
    background:
        radial-gradient(ellipse at 30% 0%, rgba(143,207,106,0.1), transparent 55%),
        radial-gradient(ellipse at 70% 100%, rgba(29,93,70,0.7), transparent 55%);
}
.final-cta-inner {
    position: relative;
    display: grid;
    gap: 24px;
    justify-items: center;
    max-width: 640px;
    margin: 0 auto;
}
.final-cta-leaf {
    width: 64px;
    height: 64px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(143,207,106,0.1);
    border: 1.5px solid rgba(143,207,106,0.22);
}
.final-cta-leaf img { filter: brightness(0) invert(1) sepia(1) saturate(3) hue-rotate(65deg); }
.final-cta h2 { color: #f7f4eb; }
.final-cta > .final-cta-inner > p { color: rgba(247,244,235,0.6); font-size: 1.06rem; }
.final-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    justify-content: center;
    margin-top: 8px;
}

/* ══════════════════════════════════════════════
   FOOTER
══════════════════════════════════════════════ */
.site-footer {
    padding: 72px 0 36px;
    background: #f0ede3;
    border-top: 1px solid var(--line);
}
.footer-layout {
    display: grid;
    grid-template-columns: 1.4fr 0.8fr 0.8fr 0.9fr;
    gap: 40px 32px;
    align-items: start;
    padding-bottom: 48px;
    border-bottom: 1px solid var(--line);
}
.footer-brand { display: grid; gap: 14px; align-content: start; }
.footer-brand p { color: var(--muted); font-size: 0.9rem; }
.footer-brand a[href^="mailto"] {
    color: var(--forest);
    font-weight: 600;
    font-size: 0.9rem;
    transition: color 0.15s ease;
}
.footer-brand a[href^="mailto"]:hover { color: var(--forest-deep); }
.brand-footer .brand-mark img { filter: none; }

.footer-column { display: grid; gap: 10px; align-content: start; }
.footer-column h4 {
    font-size: 0.72rem;
    text-transform: uppercase;
    letter-spacing: 0.14em;
    color: var(--forest-deep);
    margin-bottom: 4px;
}
.footer-column a {
    color: var(--muted);
    font-size: 0.9rem;
    font-weight: 600;
    transition: color 0.15s ease, transform 0.15s ease;
    display: block;
}
.footer-column a:hover {
    color: var(--forest-deep);
    transform: translateX(2px);
}

.footer-bottom {
    margin-top: 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
}
.footer-bottom p,
.footer-top-link {
    font-size: 0.84rem;
    color: var(--muted);
    font-weight: 600;
}
.footer-top-link { transition: color 0.15s ease; }
.footer-top-link:hover { color: var(--forest-deep); }

/* ══════════════════════════════════════════════
   RESPONSIVE — 980px
══════════════════════════════════════════════ */
@media (max-width: 980px) {
    .section { padding: 80px 0; }
    .hero { padding: 72px 0 80px; }
    .final-cta { padding: 88px 0; }

    /* Nav: show hamburger, hide desktop nav */
    .nav-toggle,
    .nav-close { display: inline-flex; }

    .nav-panel {
        position: fixed;
        inset: 0;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        gap: 14px;
        padding: 20px;
        background:
            radial-gradient(ellipse at top right, rgba(149,185,109,0.2), transparent 30%),
            linear-gradient(180deg, rgba(255,253,247,0.98) 0%, rgba(238,243,234,0.98) 100%);
        backdrop-filter: blur(20px);
        -webkit-backdrop-filter: blur(20px);
        opacity: 0;
        pointer-events: none;
        transform: scale(0.98) translateY(-16px);
        transform-origin: top center;
        transition: opacity 240ms ease, transform 280ms ease;
        overflow-y: auto;
        z-index: 50;
    }
    .site-header.is-open .nav-panel {
        opacity: 1;
        pointer-events: auto;
        transform: scale(1) translateY(0);
    }
    .mobile-nav-head {
        display: flex;
        align-items: center;
        justify-content: space-between;
        gap: 14px;
        padding-bottom: 16px;
        border-bottom: 1px solid var(--line);
    }
    .nav-links {
        width: 100%;
        display: grid;
        gap: 8px;
        padding-top: min(7vh, 56px);
    }
    .nav-actions {
        width: 100%;
        display: grid;
        gap: 10px;
        margin-left: 0;
        padding-top: 16px;
        border-top: 1px solid var(--line);
    }
    .nav-links > a {
        width: 100%;
        min-height: 58px;
        display: flex;
        align-items: center;
        border-radius: 18px;
        background: rgba(255,255,255,0.8);
        border: 1px solid var(--line);
        padding-left: 22px;
        box-shadow: var(--shadow-soft);
    }
    .nav-actions .btn { width: 100%; min-height: 58px; border-radius: 18px; }

    /* Layouts */
    .hero-layout         { grid-template-columns: 1fr; }
    .hero-visual         { display: none; }
    .feature-block       { grid-template-columns: 1fr; gap: 40px; padding: 48px 0; }
    .feature-block-reverse .feature-copy  { order: 1; }
    .feature-block-reverse .feature-visual { order: 2; }
    .audience-layout     { grid-template-columns: 1fr; gap: 40px; }
    .audience-cards      { grid-template-columns: 1fr 1fr; }
    .testimonials-grid   { grid-template-columns: 1fr; }
    .pricing-grid        { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; border-radius: var(--radius-lg); }
    .price-card          { border-right: 0; border-bottom: 1px solid var(--line); }
    .price-card:last-child { border-bottom: 0; }
    .pain-grid           { grid-template-columns: 1fr; }
    .stats-grid          { grid-template-columns: repeat(2,1fr); }
    .footer-layout       { grid-template-columns: 1fr 1fr; }
    .footer-bottom       { flex-direction: column; text-align: center; }

    .section-heading { margin-bottom: 48px; }
    .hero-actions, .final-cta-actions { flex-direction: column; }
    .hero-actions .btn, .final-cta-actions .btn { width: 100%; justify-content: center; }
}

/* ── 640px ── */
@media (max-width: 640px) {
    :root { --shell: min(calc(100vw - 28px), 100%); }

    .section { padding: 64px 0; }
    .hero { padding: 56px 0 64px; }
    .final-cta { padding: 72px 0; }

    h1 { font-size: clamp(2.2rem, 10vw, 3.2rem); }
    h2 { font-size: clamp(1.8rem, 7.5vw, 2.6rem); }

    .brand-mark { width: 26px; height: 26px; }
    .nav-shell { min-height: 68px; }

    .audience-cards  { grid-template-columns: 1fr; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .stats-grid      { grid-template-columns: repeat(2,1fr); }
    .fv-plant-card,
    .fv-calendar-card,
    .fv-sync-card    { max-width: 100%; }

    .section-heading { margin-bottom: 36px; }
    .pain-grid { gap: 16px; }
    .feature-block { padding: 36px 0; gap: 32px; }
    .price-card { padding: 24px 22px; }
    .faq-list details { padding: 20px 22px; }
    .footer-layout { grid-template-columns: 1fr; gap: 32px; }
}

/* ── 400px ── */
@media (max-width: 400px) {
    .stats-grid { grid-template-columns: 1fr; }
    .fv-week { gap: 2px; }
    .fv-day-name { font-size: 0.6rem; }
}
