:root {
    --bg: #f8f7f4;
    --bg-white: #ffffff;
    --bg-section: #f2f1ee;
    --accent: #1a6b42;
    --accent-lt: #e8f4ee;
    --accent-mid: #2d9460;
    --text: #1a1a1a;
    --text-2: #3d3d3d;
    --text-3: #6b6b6b;
    --text-4: #9a9a9a;
    --border: #e4e2de;
    --border-dk: #d0cdc8;
    --red: #c0392b;
    --red-lt: #fdf0ef;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, 0.06), 0 1px 2px rgba(0, 0, 0, 0.04);
    --shadow-md: 0 4px 16px rgba(0, 0, 0, 0.08), 0 1px 4px rgba(0, 0, 0, 0.04);
    --shadow-lg: 0 12px 40px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(0, 0, 0, 0.05);
    --radius: 14px;
    --radius-sm: 9px;
}

*,
*::before,
*::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--bg);
    color: var(--text);
    font-family: 'Geist', sans-serif;
    font-size: 16px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

h1,
h2,
h3 {
    line-height: 1.2;
    letter-spacing: -0.025em;
}

/* NAV */
nav {
    position: sticky;
    top: 0;
    z-index: 200;
    background: rgba(248, 247, 244, 0.92);
    backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    height: 64px;
    display: flex;
    align-items: center;
}

.nav-inner {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 5%;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.logo {
    display: flex;
    align-items: center;
    gap: 9px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.05rem;
    color: var(--text);
    letter-spacing: -0.03em;
    flex-shrink: 0;
}

.logo-mark {
    width: 32px;
    height: 32px;
    background: var(--accent);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.logo-mark svg {
    width: 16px;
    height: 16px;
}

.nav-links {
    display: flex;
    gap: 4px;
    list-style: none;
}

.nav-links a {
    color: var(--text-3);
    text-decoration: none;
    font-size: 0.875rem;
    font-weight: 500;
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    transition: all 0.15s;
}

.nav-links a:hover {
    color: var(--text);
    background: var(--bg-section);
}

.nav-actions {
    display: flex;
    gap: 10px;
}

.btn-nav-ghost {
    font-family: 'Geist', sans-serif;
    font-size: 0.875rem;
    font-weight: 500;
    color: var(--text-2);
    background: transparent;
    border: 1px solid var(--border-dk);
    padding: 7px 16px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.15s;
}

.btn-nav-ghost:hover {
    background: var(--bg-white);
}

.btn-nav-primary {
    font-family: 'Geist', sans-serif;
    font-size: 0.875rem;
    font-weight: 600;
    color: #fff;
    background: var(--accent);
    border: none;
    padding: 7px 18px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    cursor: pointer;
    transition: all 0.15s;
}

.btn-nav-primary:hover {
    background: #155535;
}

/* LAYOUT */
.wrap {
    max-width: 1160px;
    margin: 0 auto;
    padding: 0 5%;
}

section {
    position: relative;
}

/* HERO */
#hero {
    padding: 90px 0 80px;
    background: var(--bg);
    overflow: hidden;
}

.hero-grid {
    display: grid;
    grid-template-columns: 1fr 420px;
    gap: 64px;
    align-items: center;
}

.hero-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    background: var(--accent-lt);
    border: 1px solid rgba(26, 107, 66, 0.15);
    border-radius: 100px;
    padding: 5px 12px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--accent);
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.eyebrow-dot {
    width: 6px;
    height: 6px;
    background: var(--accent);
    border-radius: 50%;
    animation: blink 2.4s ease-in-out infinite;
}

@keyframes blink {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.3;
    }
}

h1.hero-h1 {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(2.6rem, 4.5vw, 3.8rem);
    font-weight: 400;
    color: var(--text);
    margin-bottom: 22px;
    max-width: 640px;
    line-height: 1.15;
    letter-spacing: -0.02em;
}

h1.hero-h1 em {
    font-style: italic;
    color: var(--accent);
}

.hero-sub {
    font-size: 1.05rem;
    color: var(--text-3);
    max-width: 500px;
    margin-bottom: 36px;
    line-height: 1.72;
}

.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    align-items: center;
    margin-bottom: 40px;
}

.btn-primary {
    font-family: 'Geist', sans-serif;
    font-size: 0.95rem;
    font-weight: 600;
    color: #fff;
    background: var(--accent);
    border: none;
    padding: 13px 24px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.15s;
    box-shadow: 0 2px 8px rgba(26, 107, 66, 0.25);
}

.btn-primary:hover {
    background: #155535;
    transform: translateY(-1px);
    box-shadow: 0 4px 16px rgba(26, 107, 66, 0.3);
}

.btn-ghost {
    font-family: 'Geist', sans-serif;
    font-size: 0.95rem;
    font-weight: 500;
    color: var(--text-2);
    background: var(--bg-white);
    border: 1px solid var(--border-dk);
    padding: 13px 22px;
    border-radius: var(--radius-sm);
    text-decoration: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.15s;
}

.btn-ghost:hover {
    background: var(--bg-section);
}

.hero-proof {
    display: flex;
    gap: 24px;
    flex-wrap: wrap;
}

.proof-item {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.82rem;
    color: var(--text-4);
}

.proof-item svg {
    color: var(--accent);
}

/* Hero card */
.hero-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 28px;
    box-shadow: var(--shadow-lg);
}

.hc-header {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--border);
}

.hc-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.hc-map-area {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 10px;
    height: 160px;
    margin-bottom: 16px;
    position: relative;
    overflow: hidden;
}

.map-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

.map-dot.lg {
    width: 14px;
    height: 14px;
    opacity: 0.8;
}

.map-dot.sm {
    width: 6px;
    height: 6px;
    background: var(--accent-mid);
    opacity: 0.5;
}

.map-circle {
    position: absolute;
    border-radius: 50%;
    border: 1.5px dashed rgba(26, 107, 66, 0.25);
}

.map-grid-lines {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(rgba(26, 107, 66, 0.06) 1px, transparent 1px), linear-gradient(90deg, rgba(26, 107, 66, 0.06) 1px, transparent 1px);
    background-size: 28px 28px;
}

.hc-stats {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 10px;
}

.hc-stat {
    background: var(--bg);
    border-radius: 8px;
    padding: 12px;
    text-align: center;
}

.hc-stat-num {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: -0.03em;
}

.hc-stat-label {
    font-size: 0.72rem;
    color: var(--text-4);
    margin-top: 2px;
}

/* SECTION LABELS */
.s-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 0.75rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 14px;
}

.s-label::before {
    content: '';
    width: 18px;
    height: 1.5px;
    background: var(--accent);
}

/* BAND */
#band {
    background: var(--accent);
    padding: 52px 0;
}

.band-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 64px;
    align-items: center;
}

.band-title {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(1.5rem, 2.5vw, 2.1rem);
    font-weight: 400;
    color: #fff;
    line-height: 1.3;
}

.band-text {
    font-size: 0.95rem;
    color: rgba(255, 255, 255, 0.72);
    line-height: 1.72;
}

.band-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-top: 20px;
}

.band-tag {
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.18);
    color: rgba(255, 255, 255, 0.85);
    font-size: 0.8rem;
    font-weight: 500;
    padding: 6px 14px;
    border-radius: 100px;
}

/* PAIN */
#pain {
    padding: 100px 0;
    background: var(--bg-white);
}

.pain-intro {
    max-width: 580px;
    margin-bottom: 56px;
}

.pain-intro h2 {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 400;
    color: var(--text);
    margin-bottom: 16px;
    line-height: 1.2;
}

.pain-intro p {
    color: var(--text-3);
    font-size: 1rem;
    line-height: 1.72;
}

.pain-intro .pain-cta-text {
    display: inline-block;
    margin-top: 14px;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--accent);
    font-style: italic;
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.pain-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px 24px;
    transition: all 0.2s;
    position: relative;
    overflow: hidden;
}

.pain-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: var(--red);
    opacity: 0.35;
}

.pain-card:hover {
    border-color: var(--border-dk);
    box-shadow: var(--shadow-sm);
    transform: translateY(-2px);
}

.pain-icon-wrap {
    width: 38px;
    height: 38px;
    background: var(--red-lt);
    border-radius: 9px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    margin-bottom: 16px;
}

.pain-card h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
}

.pain-card p {
    font-size: 0.86rem;
    color: var(--text-3);
    line-height: 1.62;
}

/* FOR WHO */
#forwho {
    padding: 100px 0;
    background: var(--bg);
}

.forwho-head {
    text-align: center;
    max-width: 540px;
    margin: 0 auto 56px;
}

.forwho-head h2 {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 400;
    color: var(--text);
    margin-bottom: 14px;
}

.forwho-head p {
    color: var(--text-3);
    font-size: 0.97rem;
}

.forwho-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
}

.forwho-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 30px 24px;
    transition: all 0.2s;
}

.forwho-card:hover {
    border-color: rgba(26, 107, 66, 0.3);
    box-shadow: 0 4px 20px rgba(26, 107, 66, 0.07);
}

.forwho-icon {
    width: 40px;
    height: 40px;
    background: var(--accent-lt);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 14px;
}

.forwho-card h3 {
    font-size: 0.97rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.forwho-card p {
    font-size: 0.855rem;
    color: var(--text-3);
    line-height: 1.62;
}

/* VALUE */
#value {
    padding: 100px 0;
    background: var(--bg-white);
}

.value-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
}

.value-left h2 {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 400;
    color: var(--text);
    margin-bottom: 16px;
}

.value-left p {
    color: var(--text-3);
    line-height: 1.72;
    margin-bottom: 16px;
}

.value-pillars {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
}

.pillar {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 20px;
    transition: all 0.2s;
}

.pillar:hover {
    border-color: rgba(26, 107, 66, 0.25);
}

.pillar-icon {
    width: 36px;
    height: 36px;
    background: var(--accent-lt);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 12px;
}

.pillar h3 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.pillar p {
    font-size: 0.83rem;
    color: var(--text-3);
    line-height: 1.58;
}

/* HOW */
#how {
    padding: 100px 0;
    background: var(--bg);
}

.how-head {
    text-align: center;
    max-width: 480px;
    margin: 0 auto 64px;
}

.how-head h2 {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 400;
    color: var(--text);
    margin-bottom: 12px;
}

.how-head p {
    color: var(--text-3);
    font-size: 0.97rem;
}

.how-steps {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 40px;
    position: relative;
}

.how-steps::before {
    content: '';
    position: absolute;
    top: 26px;
    left: calc(33.33% - 20px);
    width: calc(33.33% + 40px);
    height: 1px;
    background: repeating-linear-gradient(90deg, var(--accent) 0, var(--accent) 5px, transparent 5px, transparent 12px);
    opacity: 0.35;
}

.how-step {
    position: relative;
}

.step-circle {
    width: 52px;
    height: 52px;
    background: var(--bg-white);
    border: 2px solid var(--accent);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--accent);
    margin-bottom: 20px;
    position: relative;
    z-index: 1;
}

.how-step h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.how-step p {
    font-size: 0.88rem;
    color: var(--text-3);
    line-height: 1.65;
}

/* FEATURES */
#features {
    padding: 100px 0;
    background: var(--bg-white);
}

.features-head {
    max-width: 560px;
    margin-bottom: 52px;
}

.features-head h2 {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 400;
    color: var(--text);
    margin-bottom: 12px;
}

.features-head p {
    color: var(--text-3);
    font-size: 0.97rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 14px;
}

.feat {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px;
    transition: all 0.2s;
}

.feat:hover {
    border-color: rgba(26, 107, 66, 0.25);
    background: var(--bg-white);
    box-shadow: var(--shadow-sm);
}

.feat-icon {
    width: 36px;
    height: 36px;
    background: var(--accent-lt);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    margin-bottom: 14px;
}

.feat h3 {
    font-size: 0.92rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 6px;
}

.feat p {
    font-size: 0.83rem;
    color: var(--text-3);
    line-height: 1.6;
}

/* USE CASES */
#usecases {
    padding: 100px 0;
    background: var(--bg);
}

.uc-head {
    text-align: center;
    max-width: 480px;
    margin: 0 auto 56px;
}

.uc-head h2 {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 400;
    color: var(--text);
    margin-bottom: 12px;
}

.uc-head p {
    color: var(--text-3);
    font-size: 0.97rem;
}

.uc-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}

.uc-card {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 32px;
    transition: all 0.2s;
    display: flex;
    gap: 20px;
}

.uc-card:hover {
    border-color: rgba(26, 107, 66, 0.3);
    box-shadow: var(--shadow-md);
}

.uc-num {
    font-family: 'Instrument Serif', serif;
    font-size: 2.5rem;
    color: var(--accent);
    opacity: 0.18;
    line-height: 1;
    flex-shrink: 0;
    margin-top: -4px;
}

.uc-card h3 {
    font-size: 1.02rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 10px;
}

.uc-card p {
    font-size: 0.875rem;
    color: var(--text-3);
    line-height: 1.65;
}

/* COMPARISON */
#comparison {
    padding: 100px 0;
    background: var(--bg-white);
}

.comp-head {
    max-width: 600px;
    margin-bottom: 48px;
}

.comp-head h2 {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 400;
    color: var(--text);
    margin-bottom: 14px;
}

.comp-head p {
    color: var(--text-3);
    line-height: 1.72;
}

.comp-wrap {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

.comp-thead {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr;
    background: var(--bg);
    border-bottom: 1px solid var(--border);
    padding: 14px 28px;
}

.comp-th {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.comp-th:first-child {
    color: var(--text-4);
}

.comp-th.bad {
    color: var(--red);
}

.comp-th.good {
    color: var(--accent);
    text-align: center;
}

.comp-row {
    display: grid;
    grid-template-columns: 2fr 1.2fr 1.2fr;
    padding: 14px 28px;
    border-bottom: 1px solid var(--border);
    align-items: center;
    transition: background 0.15s;
}

.comp-row:last-child {
    border-bottom: none;
}

.comp-row:hover {
    background: var(--bg);
}

.comp-label {
    font-size: 0.9rem;
    color: var(--text-2);
    font-weight: 500;
}

.comp-bad {
    display: flex;
    align-items: center;
    gap: 7px;
    font-size: 0.86rem;
    color: var(--text-4);
}

.comp-bad svg {
    color: var(--red);
    opacity: 0.6;
    flex-shrink: 0;
}

.comp-good {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 7px;
    font-size: 0.86rem;
    color: var(--accent);
    font-weight: 500;
}

.comp-good svg {
    flex-shrink: 0;
}

/* GAINS */
#gains {
    padding: 100px 0;
    background: var(--bg);
}

.gains-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.gains-left h2 {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 400;
    color: var(--text);
    margin-bottom: 16px;
}

.gains-left p {
    color: var(--text-3);
    line-height: 1.72;
    margin-bottom: 32px;
}

.gains-list {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.gain-row {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 18px;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 10px;
    transition: all 0.15s;
}

.gain-row:hover {
    border-color: rgba(26, 107, 66, 0.25);
    box-shadow: var(--shadow-sm);
}

.gain-check {
    width: 20px;
    height: 20px;
    background: var(--accent-lt);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 1px;
}

.gain-row span {
    font-size: 0.9rem;
    color: var(--text-2);
    line-height: 1.5;
}

/* PLANS */
#plans {
    padding: 100px 0;
    background: var(--bg-white);
}

.plans-head {
    text-align: center;
    max-width: 520px;
    margin: 0 auto 56px;
}

.plans-head h2 {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 400;
    color: var(--text);
    margin-bottom: 12px;
}

.plans-head p {
    color: var(--text-3);
    font-size: 0.97rem;
}

.plans-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 16px;
    align-items: start;
}

.plan {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 18px;
    padding: 36px 30px;
    transition: all 0.2s;
}

.plan:hover {
    box-shadow: var(--shadow-md);
}

.plan.featured {
    background: var(--accent);
    border-color: var(--accent);
}

.plan-badge {
    display: inline-block;
    background: rgba(255, 255, 255, 0.2);
    color: #fff;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 100px;
    margin-bottom: 18px;
}

.plan-name {
    font-size: 1.35rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 8px;
    letter-spacing: -0.025em;
}

.plan.featured .plan-name {
    color: #fff;
}

.plan-desc {
    font-size: 0.875rem;
    color: var(--text-3);
    line-height: 1.65;
    margin-bottom: 24px;
}

.plan.featured .plan-desc {
    color: rgba(255, 255, 255, 0.72);
}

.plan hr {
    border: none;
    border-top: 1px solid var(--border);
    margin: 20px 0;
}

.plan.featured hr {
    border-color: rgba(255, 255, 255, 0.2);
}

.plan-feats {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 9px;
    margin-bottom: 28px;
}

.plan-feats li {
    display: flex;
    align-items: flex-start;
    gap: 9px;
    font-size: 0.86rem;
    color: var(--text-3);
}

.plan.featured .plan-feats li {
    color: rgba(255, 255, 255, 0.8);
}

.plan-feats li svg {
    color: var(--accent);
    flex-shrink: 0;
    margin-top: 2px;
}

.plan.featured .plan-feats li svg {
    color: rgba(255, 255, 255, 0.8);
}

.btn-plan {
    width: 100%;
    padding: 12px;
    border-radius: 10px;
    font-family: 'Geist', sans-serif;
    font-weight: 600;
    font-size: 0.9rem;
    cursor: pointer;
    text-decoration: none;
    display: block;
    text-align: center;
    transition: all 0.15s;
    border: none;
}

.btn-plan-outline {
    background: transparent;
    color: var(--text-2);
    border: 1.5px solid var(--border-dk);
}

.btn-plan-outline:hover {
    background: var(--bg-white);
}

.btn-plan-white {
    background: #fff;
    color: var(--accent);
    font-weight: 700;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

.btn-plan-white:hover {
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
}

/* FAQ */
#faq {
    padding: 100px 0;
    background: var(--bg);
}

.faq-head {
    max-width: 480px;
    margin-bottom: 48px;
}

.faq-head h2 {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(1.8rem, 3vw, 2.4rem);
    font-weight: 400;
    color: var(--text);
    margin-bottom: 10px;
}

.faq-head p {
    color: var(--text-3);
}

.faq-list {
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.faq-item {
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s;
}

.faq-item.open {
    border-color: rgba(26, 107, 66, 0.3);
}

.faq-q {
    width: 100%;
    background: none;
    border: none;
    padding: 18px 22px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    cursor: pointer;
    font-family: 'Geist', sans-serif;
    font-size: 0.92rem;
    font-weight: 500;
    color: var(--text);
    text-align: left;
}

.faq-chevron {
    flex-shrink: 0;
    color: var(--text-4);
    transition: transform 0.3s;
    width: 18px;
    height: 18px;
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
    color: var(--accent);
}

.faq-a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease;
}

.faq-a-inner {
    padding: 0 22px 18px;
    font-size: 0.875rem;
    color: var(--text-3);
    line-height: 1.7;
}

/* CTA FINAL */
#ctafinal {
    padding: 100px 0;
    background: var(--bg-white);
}

.cta-wrap {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: 24px;
    padding: 80px 60px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.cta-wrap::before {
    content: '';
    position: absolute;
    top: -60px;
    left: 50%;
    transform: translateX(-50%);
    width: 500px;
    height: 300px;
    background: radial-gradient(ellipse, rgba(26, 107, 66, 0.06), transparent 70%);
    pointer-events: none;
}

.cta-wrap h2 {
    font-family: 'Instrument Serif', serif;
    font-size: clamp(2rem, 3.5vw, 3rem);
    font-weight: 400;
    color: var(--text);
    max-width: 580px;
    margin: 0 auto 18px;
    line-height: 1.2;
}

.cta-wrap p {
    color: var(--text-3);
    max-width: 480px;
    margin: 0 auto 36px;
    font-size: 1rem;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 12px;
    justify-content: center;
    flex-wrap: wrap;
}

/* FOOTER */
footer {
    padding: 36px 0;
    border-top: 1px solid var(--border);
    background: var(--bg);
}

.footer-inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
}

.footer-copy {
    font-size: 0.82rem;
    color: var(--text-4);
}

.footer-links {
    display: flex;
    gap: 20px;
}

.footer-links a {
    font-size: 0.82rem;
    color: var(--text-4);
    text-decoration: none;
    transition: color 0.15s;
}

.footer-links a:hover {
    color: var(--text-3);
}

/* SCROLL REVEAL */
.reveal {
    opacity: 0;
    transform: translateY(22px);
    transition: opacity 0.55s ease, transform 0.55s ease;
}

.reveal.in {
    opacity: 1;
    transform: none;
}

.reveal:nth-child(2) {
    transition-delay: 0.08s;
}

.reveal:nth-child(3) {
    transition-delay: 0.16s;
}

.reveal:nth-child(4) {
    transition-delay: 0.24s;
}

/* RESPONSIVE */
@media (max-width: 1000px) {
    .hero-grid {
        grid-template-columns: 1fr;
    }

    .hero-card {
        display: none;
    }

    .band-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }

    .pain-grid {
        grid-template-columns: 1fr 1fr;
    }

    .forwho-grid {
        grid-template-columns: 1fr 1fr;
    }

    .value-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .gains-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .plans-grid {
        grid-template-columns: 1fr;
    }

    .uc-grid {
        grid-template-columns: 1fr;
    }

    .features-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width: 720px) {
    .nav-links {
        display: none;
    }

    .btn-nav-ghost {
        display: none;
    }

    .pain-grid {
        grid-template-columns: 1fr;
    }

    .forwho-grid {
        grid-template-columns: 1fr;
    }

    .how-steps {
        grid-template-columns: 1fr;
    }

    .how-steps::before {
        display: none;
    }

    .features-grid {
        grid-template-columns: 1fr;
    }

    .comp-thead,
    .comp-row {
        grid-template-columns: 1fr 1fr;
    }

    .comp-th:first-child,
    .comp-label {
        display: none;
    }

    .cta-wrap {
        padding: 52px 28px;
    }
}