/* ==========================================================================
   Serve.Love Marketing Site — Main Stylesheet
   Soft dark theme: navy/slate palette with emerald accents
   ========================================================================== */


/* ==========================================================================
   0. CUSTOM PROPERTIES
   ========================================================================== */

:root {
    /* --- Backgrounds --- */
    --bg-primary:       #0f172a;
    --bg-secondary:     #1e293b;
    --bg-card:          #334155;
    --bg-card-hover:    #3b4f6b;

    /* --- Text --- */
    --text-primary:     #f1f5f9;
    --text-secondary:   #94a3b8;
    --text-muted:       #64748b;

    /* --- Accent (emerald) --- */
    --accent:           #34d399;
    --accent-hover:     #10b981;
    --accent-dim:       rgba(52, 211, 153, 0.12);
    --accent-glow:      rgba(52, 211, 153, 0.08);

    /* --- Borders --- */
    --border:           #334155;

    /* --- Semantic --- */
    --danger:           #ef4444;
    --warm:             #f59e0b;

    /* --- Typography stacks --- */
    --font-heading:     'Sora', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-body:        'DM Sans', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono:        'Space Mono', 'SFMono-Regular', Consolas, monospace;

    /* --- Spacing scale --- */
    --space-xs:         8px;
    --space-sm:         16px;
    --space-md:         32px;
    --space-lg:         48px;
    --space-xl:         64px;

    /* --- Radii --- */
    --radius-sm:        8px;
    --radius-md:        12px;
    --radius-lg:        16px;

    /* --- Shadows --- */
    --shadow-card:      0 1px 3px rgba(0, 0, 0, 0.24), 0 1px 2px rgba(0, 0, 0, 0.36);
    --shadow-lift:      0 10px 30px rgba(0, 0, 0, 0.35), 0 4px 12px rgba(0, 0, 0, 0.2);
    --shadow-glow:      0 0 40px var(--accent-glow);

    /* --- Nav --- */
    --nav-height:       64px;

    /* --- Transitions --- */
    --ease-out:         cubic-bezier(0.22, 1, 0.36, 1);
}


/* ==========================================================================
   1. RESET & BASE
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    -webkit-text-size-adjust: 100%;
    text-size-adjust: 100%;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 17px;
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

::selection {
    background: rgba(52, 211, 153, 0.3);
    color: var(--text-primary);
}

::-moz-selection {
    background: rgba(52, 211, 153, 0.3);
    color: var(--text-primary);
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    color: var(--accent);
    text-decoration: none;
    transition: color 0.2s ease;
}

a:hover {
    color: var(--accent-hover);
}

ul, ol {
    list-style: none;
}

button {
    font-family: inherit;
    cursor: pointer;
    border: none;
    background: none;
}

input, textarea, select {
    font-family: inherit;
    font-size: inherit;
}


/* ==========================================================================
   2. LAYOUT
   ========================================================================== */

.container {
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding-left: 24px;
    padding-right: 24px;
}

.container--narrow {
    max-width: 900px;
}

.container--wide {
    max-width: 1400px;
}

.section {
    padding: 80px 0;
    position: relative;
}

.section--alt {
    background-color: var(--bg-secondary);
}

.section--accent {
    background-color: var(--accent-dim);
}

.section--tight {
    padding: 48px 0;
}


/* ==========================================================================
   3. TYPOGRAPHY
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    color: var(--text-primary);
    line-height: 1.2;
}

h1 {
    font-size: 56px;
    font-weight: 700;
    letter-spacing: -1px;
    line-height: 1.1;
}

h2 {
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -0.5px;
}

h3 {
    font-size: 24px;
    font-weight: 600;
}

h4 {
    font-size: 20px;
    font-weight: 600;
}

p {
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 1em;
}

p:last-child {
    margin-bottom: 0;
}

strong {
    color: var(--text-primary);
    font-weight: 600;
}

/* Section header system */
.section-label {
    display: block;
    font-family: var(--font-heading);
    font-size: 12px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 2px;
    color: var(--accent);
    margin-bottom: 12px;
}

.section-title {
    font-family: var(--font-heading);
    font-size: 42px;
    font-weight: 700;
    letter-spacing: -0.5px;
    text-align: center;
    margin-bottom: 16px;
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    text-align: center;
    line-height: 1.7;
}

.section-header {
    text-align: center;
    margin-bottom: var(--space-lg);
}

/* Stat numbers — monospace for that dashboard feel */
.stat-number {
    font-family: var(--font-mono);
    font-size: 36px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.stat-label {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 4px;
}


/* ==========================================================================
   4. BUTTONS
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 12px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--font-body);
    font-size: 15px;
    font-weight: 600;
    line-height: 1;
    text-decoration: none;
    border: 2px solid transparent;
    transition: all 0.25s var(--ease-out);
    white-space: nowrap;
    cursor: pointer;
}

.btn:hover {
    transform: translateY(-1px);
}

.btn:active {
    transform: translateY(0);
}

/* Primary — solid emerald */
.btn--primary {
    background-color: var(--accent);
    color: var(--bg-primary);
    border-color: var(--accent);
}

.btn--primary:hover {
    background-color: var(--accent-hover);
    border-color: var(--accent-hover);
    color: var(--bg-primary);
    box-shadow: 0 4px 20px rgba(52, 211, 153, 0.3);
}

/* Secondary — outlined emerald */
.btn--secondary {
    background-color: transparent;
    color: var(--accent);
    border-color: var(--accent);
}

.btn--secondary:hover {
    background-color: var(--accent-dim);
    color: var(--accent);
    box-shadow: 0 4px 20px rgba(52, 211, 153, 0.12);
}

/* Ghost — no border, text only */
.btn--ghost {
    background-color: transparent;
    color: var(--text-secondary);
    border-color: transparent;
    padding-left: 16px;
    padding-right: 16px;
}

.btn--ghost:hover {
    color: var(--accent);
    background-color: var(--accent-glow);
}

/* White — for use on dark/accent backgrounds */
.btn--white {
    background-color: #ffffff;
    color: var(--bg-primary);
    border-color: #ffffff;
}

.btn--white:hover {
    background-color: #f1f5f9;
    border-color: #f1f5f9;
    box-shadow: 0 4px 20px rgba(255, 255, 255, 0.15);
}

/* Size variants */
.btn--lg {
    padding: 16px 36px;
    font-size: 17px;
    border-radius: 10px;
}

.btn--sm {
    padding: 8px 18px;
    font-size: 13px;
}

/* Button group */
.btn-group {
    display: flex;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
}

.btn-group--center {
    justify-content: center;
}


/* ==========================================================================
   5. NAVIGATION
   ========================================================================== */

.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-height);
    background-color: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid rgba(51, 65, 85, 0.5);
    z-index: 1000;
    transition: background-color 0.3s ease, box-shadow 0.3s ease;
}

.nav.scrolled {
    background-color: rgba(15, 23, 42, 0.95);
    box-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.nav__inner {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

/* Logo */
.nav__logo {
    display: flex;
    align-items: center;
    text-decoration: none;
    flex-shrink: 0;
}

.nav__logo-img {
    height: 36px;
    width: auto;
    display: block;
}

.nav__logo-text {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    letter-spacing: -0.3px;
}

.nav__logo-text span {
    color: var(--accent);
}

/* Desktop links */
.nav__links {
    display: flex;
    align-items: center;
    gap: 4px;
}

.nav__link {
    font-size: 15px;
    font-weight: 500;
    color: var(--text-secondary);
    padding: 8px 14px;
    border-radius: 6px;
    text-decoration: none;
    transition: color 0.2s ease, background-color 0.2s ease;
    position: relative;
}

.nav__link:hover {
    color: var(--text-primary);
    background-color: rgba(148, 163, 184, 0.08);
}

.nav__link.active {
    color: var(--accent);
}

.nav__link.active::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 14px;
    right: 14px;
    height: 2px;
    background: var(--accent);
    border-radius: 2px;
}

/* Nav CTA */
.nav__cta {
    margin-left: 12px;
}

/* Hamburger */
.nav__hamburger {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 36px;
    height: 36px;
    padding: 6px;
    border-radius: 6px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.nav__hamburger:hover {
    background-color: rgba(148, 163, 184, 0.1);
}

.nav__hamburger span {
    display: block;
    width: 100%;
    height: 2px;
    background-color: var(--text-secondary);
    border-radius: 2px;
    transition: transform 0.3s var(--ease-out), opacity 0.3s ease;
}

.nav__hamburger.open span:nth-child(1) {
    transform: translateY(7px) rotate(45deg);
}

.nav__hamburger.open span:nth-child(2) {
    opacity: 0;
}

.nav__hamburger.open span:nth-child(3) {
    transform: translateY(-7px) rotate(-45deg);
}

/* Mobile menu */
.nav__mobile {
    display: none;
    position: fixed;
    top: var(--nav-height);
    left: 0;
    right: 0;
    background-color: rgba(15, 23, 42, 0.98);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 16px 24px 24px;
    transform: translateY(-10px);
    opacity: 0;
    transition: transform 0.3s var(--ease-out), opacity 0.3s ease;
    pointer-events: none;
    z-index: 999;
}

.nav__mobile.open {
    display: block;
    transform: translateY(0);
    opacity: 1;
    pointer-events: all;
}

.nav__mobile .nav__link {
    display: block;
    padding: 12px 0;
    font-size: 17px;
    border-bottom: 1px solid rgba(51, 65, 85, 0.4);
}

.nav__mobile .nav__link:last-of-type {
    border-bottom: none;
}

.nav__mobile .btn {
    width: 100%;
    margin-top: 16px;
}


/* ==========================================================================
   6. HERO
   ========================================================================== */

.hero {
    position: relative;
    padding: 100px 0 48px;
    overflow: hidden;
    display: flex;
    align-items: center;
}

/* Background image + overlay */
.hero__bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
}

.hero__bg img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.hero__bg::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(
        180deg,
        rgba(15, 23, 42, 0.88) 0%,
        rgba(15, 23, 42, 0.78) 50%,
        rgba(15, 23, 42, 0.95) 100%
    );
}

.hero__content {
    position: relative;
    z-index: 1;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
}

.hero__title {
    font-size: 56px;
    font-weight: 700;
    letter-spacing: -1.5px;
    margin-bottom: 20px;
    line-height: 1.08;
}

.hero__title .highlight {
    color: var(--accent);
}

.hero__subtitle {
    font-size: 20px;
    color: var(--text-secondary);
    line-height: 1.6;
    max-width: 640px;
    margin: 0 auto 32px;
}

.hero__cta {
    display: flex;
    justify-content: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 40px;
}

/* Trust bar — "No credit card" / "Free plan" / etc */
.hero__trust {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
}

.hero__trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: 14px;
    color: var(--text-muted);
}

.hero__trust-item svg {
    width: 16px;
    height: 16px;
    color: var(--accent);
    flex-shrink: 0;
}

/* Stats row below hero */
.hero__stats {
    display: flex;
    justify-content: center;
    gap: 48px;
    padding-top: 40px;
    margin-top: 40px;
    border-top: 1px solid rgba(51, 65, 85, 0.4);
    flex-wrap: wrap;
}

.hero__stat {
    text-align: center;
}

.hero__stat-number {
    font-family: var(--font-mono);
    font-size: 32px;
    font-weight: 700;
    color: var(--accent);
    line-height: 1;
}

.hero__stat-label {
    font-size: 14px;
    color: var(--text-muted);
    margin-top: 4px;
}


/* ==========================================================================
   7. SOCIAL PROOF BAR
   ========================================================================== */

.proof {
    background-color: var(--bg-secondary);
    padding: 48px 0;
    border-top: 1px solid rgba(51, 65, 85, 0.3);
    border-bottom: 1px solid rgba(51, 65, 85, 0.3);
}

.proof-scroll {
    display: flex;
    gap: 24px;
    overflow-x: auto;
    padding-bottom: 4px;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}

.proof-scroll::-webkit-scrollbar {
    display: none;
}

.proof-card {
    flex: 0 0 340px;
    background-color: var(--bg-card);
    padding: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    scroll-snap-align: start;
    transition: border-color 0.25s ease;
}

.proof-card:hover {
    border-color: rgba(52, 211, 153, 0.25);
}

.proof-card__quote {
    font-size: 16px;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 16px;
}

.proof-card__author {
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
}

.proof-card__role {
    font-size: 13px;
    color: var(--text-muted);
}

/* Logo strip */
.logo-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 32px;
    flex-wrap: wrap;
    padding-top: 32px;
    margin-top: 32px;
    border-top: 1px solid rgba(51, 65, 85, 0.3);
}

.logo-row img {
    height: 40px;
    width: auto;
    opacity: 0.5;
    filter: grayscale(100%) brightness(1.8);
    transition: opacity 0.3s ease, filter 0.3s ease;
}

.logo-row img:hover {
    opacity: 1;
    filter: grayscale(0%) brightness(1);
}


/* ==========================================================================
   8. DIFFERENTIATOR / COMPARE SECTION
   ========================================================================== */

.diff-compare {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 32px;
    max-width: 960px;
    margin: 0 auto;
}

.diff-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 32px;
    border: 1px solid var(--border);
}

.diff-card__header {
    font-family: var(--font-heading);
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid rgba(51, 65, 85, 0.5);
    display: flex;
    align-items: center;
    gap: 10px;
}

/* Competitor — red tint */
.diff-card--competitor {
    border-color: rgba(239, 68, 68, 0.3);
}

.diff-card--competitor .diff-card__header {
    color: var(--danger);
    border-bottom-color: rgba(239, 68, 68, 0.2);
}

/* Us — green tint */
.diff-card--us {
    border-color: rgba(52, 211, 153, 0.3);
}

.diff-card--us .diff-card__header {
    color: var(--accent);
    border-bottom-color: rgba(52, 211, 153, 0.2);
}

/* URL display */
.diff-url {
    font-family: var(--font-mono);
    font-size: 14px;
    color: var(--text-muted);
    background-color: rgba(15, 23, 42, 0.5);
    padding: 10px 14px;
    border-radius: 6px;
    margin-bottom: 20px;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.diff-url .domain {
    color: var(--accent);
    font-weight: 700;
}

/* Check/X lists */
.diff-list {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.diff-list__item {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.diff-list__icon {
    flex-shrink: 0;
    width: 20px;
    height: 20px;
    margin-top: 2px;
}

.diff-list__icon--check {
    color: var(--accent);
}

.diff-list__icon--x {
    color: var(--danger);
}


/* ==========================================================================
   9. VIDEO SECTION
   ========================================================================== */

.video-section {
    max-width: 900px;
    margin: 0 auto;
}

.video-wrapper {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lift);
    background-color: var(--bg-card);
}

/* 16:9 responsive */
.video-wrapper--16x9 {
    padding-top: 56.25%;
}

.video-wrapper--16x9 iframe,
.video-wrapper--16x9 video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    border: none;
}

/* Video poster/play overlay */
.video-poster {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    background-size: cover;
    background-position: center;
    z-index: 2;
    transition: opacity 0.4s ease;
}

.video-poster::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 42, 0.4);
    transition: background 0.3s ease;
}

.video-poster:hover::after {
    background: rgba(15, 23, 42, 0.25);
}

.video-poster__play {
    position: relative;
    z-index: 3;
    width: 72px;
    height: 72px;
    border-radius: 50%;
    background: rgba(52, 211, 153, 0.9);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s ease;
}

.video-poster:hover .video-poster__play {
    transform: scale(1.08);
    box-shadow: 0 0 0 12px rgba(52, 211, 153, 0.15);
}

.video-poster__play svg {
    width: 28px;
    height: 28px;
    color: var(--bg-primary);
    margin-left: 3px;
}


/* ==========================================================================
   10. VALUE PROP / FEATURE CARDS
   ========================================================================== */

.card-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.card {
    background-color: var(--bg-card);
    padding: 32px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: transform 0.3s var(--ease-out),
                box-shadow 0.3s var(--ease-out),
                border-color 0.3s ease;
}

.card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lift);
    border-color: rgba(52, 211, 153, 0.2);
}

.card__icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: var(--accent-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.card__icon svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.card__title {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.card__body {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.65;
}

/* Two-column card variant for larger features */
.card-grid--2col {
    grid-template-columns: repeat(2, 1fr);
}

/* Single highlight card spanning full width */
.card--wide {
    grid-column: 1 / -1;
    display: flex;
    gap: 32px;
    align-items: center;
}

.card--wide .card__icon {
    width: 64px;
    height: 64px;
    flex-shrink: 0;
}


/* ==========================================================================
   11. TESTIMONIAL SECTION
   ========================================================================== */

/* Featured large testimonial */
.testimonial-featured {
    background-color: var(--accent-dim);
    border-radius: var(--radius-lg);
    padding: 48px;
    position: relative;
    max-width: 900px;
    margin: 0 auto var(--space-lg);
}

.testimonial-featured::before {
    content: '\201C';
    position: absolute;
    top: 24px;
    left: 32px;
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 80px;
    line-height: 1;
    color: var(--accent);
    opacity: 0.3;
}

.testimonial-featured__quote {
    font-size: 22px;
    font-style: italic;
    color: var(--text-primary);
    line-height: 1.6;
    margin-bottom: 24px;
    position: relative;
    z-index: 1;
    padding-left: 8px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 16px;
}

.testimonial-author__photo {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid rgba(52, 211, 153, 0.3);
}

.testimonial-author__name {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
}

.testimonial-author__title {
    font-size: 14px;
    color: var(--text-muted);
}

/* Smaller testimonial grid */
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
}

.testimonial-card {
    background-color: var(--bg-card);
    border-radius: var(--radius-md);
    padding: 28px;
    border: 1px solid var(--border);
    position: relative;
}

.testimonial-card::before {
    content: '\201C';
    font-family: Georgia, 'Times New Roman', serif;
    font-size: 48px;
    line-height: 1;
    color: var(--accent);
    opacity: 0.2;
    position: absolute;
    top: 12px;
    left: 20px;
}

.testimonial-card__quote {
    font-size: 15px;
    font-style: italic;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 16px;
    padding-top: 4px;
}

/* Impact metrics list (used alongside testimonials) */
.impact-list {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 32px;
    margin-top: var(--space-md);
}

.impact-list__item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 16px;
    color: var(--text-secondary);
}

.impact-list__item svg {
    width: 18px;
    height: 18px;
    color: var(--accent);
    flex-shrink: 0;
}


/* ==========================================================================
   12. QUALIFIER / "IS THIS FOR YOU" SECTION
   ========================================================================== */

.qualifier-box {
    background-color: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 48px;
    max-width: 800px;
    margin: 0 auto;
    border: 1px solid var(--border);
}

.qualifier-box__title {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 32px;
}

.qualifier-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 36px;
}

.qualifier-list__item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.5;
}

.qualifier-list__item::before {
    content: '\2192';
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.qualifier-box__cta {
    text-align: center;
}


/* ==========================================================================
   13. FOOTER
   ========================================================================== */

/* Footer base */
.site-footer {
    background-color: var(--bg-primary);
    border-top: 1px solid var(--border);
    padding: 80px 0 0;
    font-family: var(--font-heading);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr 1fr;
    gap: 60px;
    padding-bottom: 60px;
}

/* Brand column */
.footer__brand-col {
    max-width: 320px;
}

.footer__brand-name {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.footer__description {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
    font-family: var(--font-body);
}

/* Award badges */
.footer__awards {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 20px;
}

.footer__award-badge {
    display: inline-block;
    background: rgba(52, 211, 153, 0.1);
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 12px;
    font-weight: 600;
}

/* Contact info */
.footer__contact {
    margin-top: 20px;
}

.footer__contact-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    margin-bottom: 16px;
    font-size: 15px;
    color: var(--text-secondary);
    font-family: var(--font-body);
}

.footer__contact-icon {
    color: var(--accent);
    font-size: 18px;
    margin-top: 2px;
}

.footer__contact-item a {
    color: var(--text-secondary);
    text-decoration: none;
    transition: color 0.2s;
}

.footer__contact-item a:hover {
    color: var(--accent);
}

/* App store badges */
.footer__app-badges {
    margin-top: 30px;
}

.footer__app-badges-label {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent);
    display: block;
    margin-bottom: 16px;
}

.footer__badge-row {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.footer__badge-row a {
    display: inline-block;
    transition: opacity 0.2s;
}

.footer__badge-row a:hover {
    opacity: 0.8;
}

.footer__badge {
    height: 50px;
    width: auto;
    border-radius: 6px;
}

.footer__badge--google {
    height: 60px;
    margin-top: -5px;
}

/* Nav columns */
.footer__nav-col,
.footer__cta-col {
    font-family: var(--font-body);
}

.footer__heading {
    font-family: var(--font-heading);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 20px;
}

.footer__heading--spaced {
    margin-top: 28px;
}

.footer__links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__links a {
    color: var(--text-secondary);
    text-decoration: none;
    font-size: 15px;
    transition: color 0.2s;
}

.footer__links a:hover {
    color: var(--accent);
}

.footer__links--spaced {
    margin-top: 24px;
}

.footer__view-all {
    font-weight: 600;
    color: var(--accent) !important;
}

/* CTA column */
.footer__cta-text {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 20px;
}

.footer__cta-button {
    display: inline-block;
    background: var(--accent);
    color: var(--bg-primary);
    padding: 14px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    text-decoration: none;
    font-size: 15px;
    transition: all 0.2s;
}

.footer__cta-button:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    color: var(--bg-primary);
}

/* Bottom bar */
.footer__bottom {
    border-top: 1px solid rgba(51, 65, 85, 0.4);
    padding: 20px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer__copyright {
    font-size: 14px;
    color: var(--text-muted);
}

.footer__legal {
    display: flex;
    gap: 20px;
}

.footer__legal a {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
}

.footer__legal a:hover {
    color: var(--text-primary);
}

.footer__legal-sep {
    color: var(--text-muted);
}


/* ==========================================================================
   14. RESPONSIVE BREAKPOINTS
   ========================================================================== */

/* --- Tablets and smaller desktops (1024px) --- */
@media (max-width: 1024px) {
    h1,
    .hero__title {
        font-size: 44px;
    }

    h2,
    .section-title {
        font-size: 34px;
    }

    .card-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .footer__grid {
        grid-template-columns: 1.5fr 1fr 1fr;
        gap: 32px;
    }

    .footer__grid > :last-child {
        grid-column: 1 / -1;
    }

    .hero__stats {
        gap: 32px;
    }

    .diff-compare {
        gap: 24px;
    }

    .testimonial-featured {
        padding: 36px;
    }

    .qualifier-box {
        padding: 36px;
    }
}

/* --- Tablets (768px) --- */
@media (max-width: 768px) {
    .section {
        padding: 56px 0;
    }

    h1,
    .hero__title {
        font-size: 38px;
        letter-spacing: -0.5px;
    }

    h2,
    .section-title {
        font-size: 30px;
    }

    h3 {
        font-size: 20px;
    }

    body {
        font-size: 16px;
    }

    .hero {
        padding: 120px 0 60px;
        min-height: auto;
    }

    .hero__subtitle {
        font-size: 18px;
    }

    /* Nav: mobile mode */
    .nav__links {
        display: none;
    }

    .nav__cta {
        display: none;
    }

    .nav__hamburger {
        display: flex;
    }

    /* Grids collapse */
    .card-grid,
    .card-grid--2col {
        grid-template-columns: 1fr;
    }

    .card--wide {
        flex-direction: column;
    }

    .diff-compare {
        grid-template-columns: 1fr;
    }

    .testimonial-grid {
        grid-template-columns: 1fr;
    }

    .testimonial-featured__quote {
        font-size: 19px;
    }

    /* Footer */
    .footer__grid {
        grid-template-columns: 1fr 1fr;
        gap: 32px;
    }

    .footer__brand-col {
        max-width: 100%;
        grid-column: 1 / -1;
    }

    .footer__bottom {
        flex-direction: column;
        align-items: flex-start;
        gap: 8px;
    }

    /* Proof cards scroll */
    .proof-card {
        flex: 0 0 280px;
    }

    .hero__stats {
        gap: 24px;
    }

    .hero__stat-number {
        font-size: 26px;
    }

    .stat-number {
        font-size: 28px;
    }
}

/* --- Small phones (480px) --- */
@media (max-width: 480px) {
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }

    .section {
        padding: 40px 0;
    }

    h1,
    .hero__title {
        font-size: 34px;
    }

    h2,
    .section-title {
        font-size: 26px;
    }

    .section-subtitle {
        font-size: 16px;
    }

    .hero {
        padding: 110px 0 48px;
    }

    .hero__subtitle {
        font-size: 16px;
    }

    .hero__cta {
        flex-direction: column;
        align-items: stretch;
    }

    .hero__cta .btn {
        text-align: center;
    }

    .hero__trust {
        flex-direction: column;
        gap: 10px;
    }

    .hero__stats {
        flex-direction: column;
        gap: 20px;
        align-items: center;
    }

    .btn--lg {
        padding: 14px 28px;
        font-size: 16px;
    }

    .card {
        padding: 24px;
    }

    .testimonial-featured {
        padding: 28px;
    }

    .testimonial-featured__quote {
        font-size: 17px;
    }

    .qualifier-box {
        padding: 28px;
    }

    .qualifier-list__item {
        font-size: 16px;
    }

    .diff-card {
        padding: 24px;
    }

    .footer__grid {
        grid-template-columns: 1fr;
        gap: 28px;
    }

    .footer__grid > :last-child {
        grid-column: auto;
    }

    .logo-row {
        gap: 20px;
    }

    .logo-row img {
        height: 30px;
    }

    .proof-card {
        flex: 0 0 260px;
        padding: 20px;
    }

    .impact-list {
        flex-direction: column;
        gap: 12px;
    }
}


/* ==========================================================================
   15. SCROLL-REVEAL ANIMATIONS
   ========================================================================== */

.reveal {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

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

.reveal-delay-1 {
    transition-delay: 0.1s;
}

.reveal-delay-2 {
    transition-delay: 0.2s;
}

.reveal-delay-3 {
    transition-delay: 0.3s;
}

/* Fade variants */
.reveal--fade-up {
    transform: translateY(30px);
}

.reveal--fade-in {
    transform: none;
}

/* Stagger children (used by JS to auto-stagger grid items) */
.reveal-stagger > .reveal:nth-child(1) { transition-delay: 0.05s; }
.reveal-stagger > .reveal:nth-child(2) { transition-delay: 0.1s; }
.reveal-stagger > .reveal:nth-child(3) { transition-delay: 0.15s; }
.reveal-stagger > .reveal:nth-child(4) { transition-delay: 0.2s; }
.reveal-stagger > .reveal:nth-child(5) { transition-delay: 0.25s; }
.reveal-stagger > .reveal:nth-child(6) { transition-delay: 0.3s; }

/* Respect reduced motion */
@media (prefers-reduced-motion: reduce) {
    .reveal {
        opacity: 1;
        transform: none;
        transition: none;
    }
}


/* ==========================================================================
   16. UTILITY CLASSES
   ========================================================================== */

/* Text color */
.text-accent  { color: var(--accent); }
.text-muted   { color: var(--text-muted); }
.text-primary { color: var(--text-primary); }
.text-danger  { color: var(--danger); }
.text-warm    { color: var(--warm); }

/* Text alignment */
.text-center { text-align: center; }
.text-left   { text-align: left; }
.text-right  { text-align: right; }

/* Margin bottom scale */
.mb-0  { margin-bottom: 0; }
.mb-xs { margin-bottom: var(--space-xs); }
.mb-sm { margin-bottom: var(--space-sm); }
.mb-md { margin-bottom: var(--space-md); }
.mb-lg { margin-bottom: var(--space-lg); }
.mb-xl { margin-bottom: var(--space-xl); }

/* Margin top scale */
.mt-0  { margin-top: 0; }
.mt-xs { margin-top: var(--space-xs); }
.mt-sm { margin-top: var(--space-sm); }
.mt-md { margin-top: var(--space-md); }
.mt-lg { margin-top: var(--space-lg); }
.mt-xl { margin-top: var(--space-xl); }

/* Screen reader only */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Flex utilities */
.flex          { display: flex; }
.flex-center   { display: flex; align-items: center; justify-content: center; }
.flex-between  { display: flex; align-items: center; justify-content: space-between; }
.flex-col      { display: flex; flex-direction: column; }
.flex-wrap     { flex-wrap: wrap; }
.gap-sm        { gap: var(--space-sm); }
.gap-md        { gap: var(--space-md); }

/* Display */
.hidden { display: none; }

/* Width constraints */
.max-w-narrow { max-width: 640px; }
.max-w-prose  { max-width: 700px; }
.mx-auto      { margin-left: auto; margin-right: auto; }


/* ==========================================================================
   17. MISC COMPONENTS
   ========================================================================== */

/* Divider with centered label */
.divider-label {
    display: flex;
    align-items: center;
    gap: 16px;
    margin: var(--space-lg) 0;
}

.divider-label::before,
.divider-label::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.divider-label span {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    white-space: nowrap;
}

/* Pill / badge */
.pill {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 600;
    background-color: var(--accent-dim);
    color: var(--accent);
    white-space: nowrap;
}

.pill--warm {
    background-color: rgba(245, 158, 11, 0.12);
    color: var(--warm);
}

/* Simple horizontal rule */
hr {
    border: none;
    height: 1px;
    background: var(--border);
    margin: var(--space-md) 0;
}

/* Blockquote */
blockquote {
    border-left: 3px solid var(--accent);
    padding-left: 20px;
    margin: var(--space-md) 0;
    font-style: italic;
    color: var(--text-secondary);
}

/* Icon circle — generic wrapper */
.icon-circle {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    background-color: var(--accent-dim);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-circle svg {
    width: 24px;
    height: 24px;
    color: var(--accent);
}

.icon-circle--lg {
    width: 64px;
    height: 64px;
    border-radius: 16px;
}

.icon-circle--lg svg {
    width: 32px;
    height: 32px;
}

/* Subtle accent glow behind key sections */
.glow-accent {
    position: relative;
}

.glow-accent::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 400px;
    border-radius: 50%;
    background: radial-gradient(
        ellipse at center,
        rgba(52, 211, 153, 0.06) 0%,
        transparent 70%
    );
    pointer-events: none;
    z-index: 0;
}

/* Pricing card highlight (if needed on a pricing page) */
.card--highlighted {
    border-color: var(--accent);
    position: relative;
}

.card--highlighted::before {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: var(--radius-md);
    background: linear-gradient(135deg, var(--accent), transparent 60%);
    opacity: 0.08;
    pointer-events: none;
    z-index: 0;
}

/* Monospace inline code */
code {
    font-family: var(--font-mono);
    font-size: 0.9em;
    background: rgba(51, 65, 85, 0.5);
    padding: 2px 6px;
    border-radius: 4px;
    color: var(--accent);
}

/* Skip link for a11y */
.skip-link {
    position: absolute;
    top: -100%;
    left: 16px;
    background: var(--accent);
    color: var(--bg-primary);
    padding: 8px 16px;
    border-radius: 0 0 8px 8px;
    font-weight: 600;
    z-index: 9999;
    transition: top 0.2s ease;
}

.skip-link:focus {
    top: 0;
}


/* ==========================================================================
   18. FEATURES PAGE
   ========================================================================== */

.features-layout {
    padding: var(--space-lg) 0 var(--space-xl);
}

.features-grid {
    display: grid;
    grid-template-columns: 220px 1fr;
    gap: 48px;
    align-items: start;
}

/* Sidebar */
.features-sidebar {
    position: sticky;
    top: calc(var(--nav-height) + 24px);
}

.features-nav {
    background-color: var(--bg-secondary);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    padding: 24px;
}

.features-nav__title {
    font-family: var(--font-heading);
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    color: var(--text-muted);
    margin-bottom: 16px;
}

.features-nav__link {
    display: block;
    padding: 8px 12px;
    font-size: 15px;
    color: var(--text-secondary);
    text-decoration: none;
    border-radius: var(--radius-sm);
    transition: color 0.2s ease, background-color 0.2s ease;
    margin-bottom: 2px;
}

.features-nav__link:hover {
    color: var(--text-primary);
    background-color: rgba(148, 163, 184, 0.08);
}

.features-nav__link.active {
    color: var(--accent);
    background-color: var(--accent-dim);
    font-weight: 600;
}

/* Content area */
.features-content {
    min-width: 0;
}

/* Feature sections */
.feat-section {
    margin-bottom: var(--space-xl);
    scroll-margin-top: calc(var(--nav-height) + 24px);
}

.feat-section__header {
    margin-bottom: var(--space-lg);
    border-bottom: 1px solid var(--border);
    padding-bottom: var(--space-md);
}

.feat-section__header h2 {
    font-family: var(--font-heading);
    font-size: 32px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.feat-section__header p {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 640px;
}

/* Individual feature blocks */
.feat-block {
    background-color: var(--bg-secondary);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    padding: 32px;
    margin-bottom: 24px;
    transition: border-color 0.3s ease;
}

.feat-block:hover {
    border-color: rgba(52, 211, 153, 0.2);
}

.feat-block__header {
    display: flex;
    gap: 16px;
    margin-bottom: 20px;
}

.feat-block__icon {
    font-size: 28px;
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    background-color: var(--accent-dim);
    border-radius: 12px;
}

.feat-block__header h3 {
    font-family: var(--font-heading);
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.feat-block__header p {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.65;
}

.feat-block__header a {
    color: var(--accent);
    text-decoration: none;
}

.feat-block__header a:hover {
    text-decoration: underline;
}

/* Detail grid (feature bullet points) */
.feat-detail-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px;
    margin-bottom: 20px;
}

.feat-detail {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.5;
    padding: 12px;
    background-color: rgba(15, 23, 42, 0.4);
    border-radius: var(--radius-sm);
    border: 1px solid rgba(51, 65, 85, 0.4);
}

.feat-detail strong {
    display: block;
    color: var(--text-primary);
    font-size: 14px;
    margin-bottom: 2px;
}

/* Callout / highlight */
.feat-callout {
    background-color: var(--accent-dim);
    border-left: 3px solid var(--accent);
    padding: 16px 20px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    margin-bottom: 20px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.feat-callout strong {
    color: var(--text-primary);
}

.feat-callout a {
    color: var(--accent);
    text-decoration: none;
}

.feat-callout a:hover {
    text-decoration: underline;
}

/* Media (screenshots / videos) */
.feat-media {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
    background-color: var(--bg-card);
}

.feat-media img,
.feat-media video {
    width: 100%;
    display: block;
    border-radius: var(--radius-md);
}

.feat-media--mobile {
    max-width: 400px;
    margin: 0 auto;
}

/* CTA at bottom of features */
.feat-cta {
    text-align: center;
    background-color: var(--bg-secondary);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    padding: 48px 32px;
}

.feat-cta h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.feat-cta p {
    font-size: 17px;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto 24px;
    line-height: 1.6;
}

/* Features page responsive */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: 200px 1fr;
        gap: 32px;
    }

    .feat-section__header h2 {
        font-size: 28px;
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr;
    }

    .features-sidebar {
        position: static;
    }

    .features-nav {
        display: flex;
        flex-wrap: wrap;
        gap: 4px;
        padding: 16px;
    }

    .features-nav__title {
        width: 100%;
        margin-bottom: 8px;
    }

    .features-nav__link {
        padding: 6px 12px;
        font-size: 14px;
    }

    .feat-detail-grid {
        grid-template-columns: 1fr;
    }

    .feat-block {
        padding: 24px;
    }

    .feat-section__header h2 {
        font-size: 26px;
    }
}

@media (max-width: 480px) {
    .features-layout {
        padding: var(--space-md) 0 var(--space-lg);
    }

    .feat-block {
        padding: 20px;
    }

    .feat-block__header {
        flex-direction: column;
        gap: 12px;
    }

    .feat-cta {
        padding: 32px 20px;
    }

    .feat-cta h2 {
        font-size: 24px;
    }
}


/* ==========================================================================
   19. PRICING PAGE
   ========================================================================== */

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: var(--space-lg);
}

.pricing-card {
    background-color: var(--bg-secondary);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    padding: 32px;
    display: flex;
    flex-direction: column;
}

.pricing-card--featured {
    border-color: var(--accent);
    position: relative;
    box-shadow: 0 0 0 1px var(--accent), var(--shadow-lift);
}

.pricing-card__badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent);
    color: var(--bg-primary);
    padding: 4px 16px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 700;
    font-family: var(--font-heading);
    white-space: nowrap;
}

.pricing-card__name {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.pricing-card__desc {
    font-size: 15px;
    color: var(--text-secondary);
    margin-bottom: 16px;
    line-height: 1.5;
}

.pricing-card__target {
    font-size: 14px;
    color: var(--text-muted);
    background-color: rgba(15, 23, 42, 0.4);
    padding: 12px;
    border-radius: var(--radius-sm);
    margin-bottom: 20px;
    line-height: 1.5;
}

.pricing-card__price {
    margin-bottom: 4px;
}

.pricing-card__amount {
    font-family: var(--font-mono);
    font-size: 48px;
    font-weight: 700;
    color: var(--text-primary);
}

.pricing-card__period {
    font-size: 18px;
    color: var(--text-muted);
    margin-left: 4px;
}

.pricing-card__billing {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 2px;
}

.pricing-card__note {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 20px;
    line-height: 1.5;
}

.pricing-card__cta {
    width: 100%;
    text-align: center;
    margin-bottom: 8px;
}

.pricing-card__cta-secondary {
    display: block;
    text-align: center;
    font-size: 14px;
    margin-bottom: 20px;
}

.pricing-card__features {
    list-style: none;
    padding: 0;
    margin: 0;
    border-top: 1px solid var(--border);
    padding-top: 20px;
    flex: 1;
}

.pricing-card__feature {
    font-size: 14px;
    color: var(--text-secondary);
    padding: 6px 0;
    line-height: 1.5;
}

.pricing-card__feature--highlight {
    color: var(--accent);
    font-weight: 600;
    margin-bottom: 4px;
}

.pricing-check {
    color: var(--accent);
    font-weight: 700;
    margin-right: 6px;
}

.pricing-limit {
    color: var(--text-muted);
    margin-right: 6px;
}

.pricing-card__footnote {
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
    margin-top: 16px;
}

.pricing-value-msg {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .pricing-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin-left: auto;
        margin-right: auto;
    }
}


/* ==========================================================================
   20. FAQ COMPONENTS (shared by pricing & faq pages)
   ========================================================================== */

.faq-category {
    margin-bottom: var(--space-xl);
}

.faq-category__title {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-category__desc {
    font-size: 15px;
    color: var(--text-muted);
    margin-bottom: 20px;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    margin-bottom: 8px;
    background-color: var(--bg-secondary);
    overflow: hidden;
}

.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 20px;
    background: none;
    border: none;
    color: var(--text-primary);
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 600;
    text-align: left;
    cursor: pointer;
    gap: 12px;
    transition: color 0.2s ease;
}

.faq-question:hover {
    color: var(--accent);
}

.faq-chevron {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
    color: var(--text-muted);
    transition: transform 0.3s var(--ease-out);
}

.faq-item.open .faq-chevron {
    transform: rotate(180deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease-out), padding 0.3s ease;
    padding: 0 20px;
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.65;
}

.faq-item.open .faq-answer {
    max-height: 600px;
    padding: 0 20px 20px;
}

.faq-answer ul {
    padding-left: 20px;
    margin: 8px 0;
}

.faq-answer li {
    margin-bottom: 4px;
}

.faq-answer a {
    color: var(--accent);
    text-decoration: none;
}

.faq-answer a:hover {
    text-decoration: underline;
}

.faq-answer p {
    margin-bottom: 8px;
}

.faq-answer p:last-child {
    margin-bottom: 0;
}


/* ==========================================================================
   21. OUR STORY PAGE
   ========================================================================== */

.story-prose {
    max-width: 700px;
    margin: 0 auto;
}

.story-prose h2 {
    font-family: var(--font-heading);
    font-size: 28px;
    font-weight: 700;
    color: var(--text-primary);
    margin-top: var(--space-lg);
    margin-bottom: 16px;
}

.story-prose h2:first-child {
    margin-top: 0;
}

.story-prose p {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 16px;
}

.story-prose blockquote {
    margin: var(--space-md) 0;
    padding: 24px 24px 24px 28px;
    background-color: var(--accent-dim);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}

.story-prose blockquote p {
    font-size: 18px;
    font-style: italic;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.story-prose blockquote cite {
    font-size: 14px;
    color: var(--text-muted);
    font-style: normal;
}

/* Founder section */
.story-founder {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 40px;
    align-items: start;
    max-width: 800px;
    margin: 0 auto;
}

.story-founder__image {
    border-radius: var(--radius-md);
    overflow: hidden;
    border: 1px solid var(--border);
}

.story-founder__image img {
    width: 100%;
    display: block;
}

.story-founder__content h3 {
    font-family: var(--font-heading);
    font-size: 24px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.story-founder__content p {
    font-size: 16px;
    color: var(--text-secondary);
    line-height: 1.65;
    margin-bottom: 12px;
}

@media (max-width: 768px) {
    .story-founder {
        grid-template-columns: 1fr;
        max-width: 400px;
    }

    .story-prose h2 {
        font-size: 24px;
    }
}


/* ==========================================================================
   22. COMPARE PAGES
   ========================================================================== */

/* Breadcrumb */
.breadcrumb {
    font-size: 14px;
    color: var(--text-muted);
    padding: calc(var(--nav-height) + 16px) 24px 16px;
    max-width: 1200px;
    margin: 0 auto;
}

.breadcrumb a {
    color: var(--text-secondary);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--accent);
}

/* Compare Hero */
.compare-hero {
    text-align: center;
    padding: 64px 24px 48px;
    max-width: 900px;
    margin: 0 auto;
}

.compare-badge {
    display: inline-block;
    background: var(--accent-dim);
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.compare-hero h1 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 20px;
    color: var(--text-primary);
}

.compare-hero p {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 720px;
    margin: 0 auto;
}

/* Compare Sections */
.compare-section {
    padding: 64px 24px;
    max-width: 1200px;
    margin: 0 auto;
}

.compare-section-title {
    font-size: 36px;
    font-weight: 700;
    text-align: center;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.compare-section-subtitle {
    font-size: 17px;
    color: var(--text-secondary);
    text-align: center;
    margin-bottom: 40px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* Compare Table */
.compare-table-wrapper {
    overflow-x: auto;
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 15px;
}

.compare-table thead tr {
    background: var(--bg-secondary);
}

.compare-table th {
    padding: 16px 20px;
    text-align: left;
    font-weight: 600;
    color: var(--text-primary);
    border-bottom: 2px solid var(--border);
}

.compare-table th.highlight {
    color: var(--accent);
}

.compare-table tbody tr:nth-child(even) {
    background: rgba(30, 41, 59, 0.4);
}

.compare-table tbody tr:hover {
    background: var(--bg-secondary);
}

.compare-table td {
    padding: 14px 20px;
    color: var(--text-secondary);
    border-bottom: 1px solid rgba(51, 65, 85, 0.3);
}

.compare-table td.highlight {
    color: var(--text-primary);
    font-weight: 500;
}

.compare-table .check {
    color: var(--accent);
    font-weight: 700;
}

.compare-table .cross {
    color: var(--danger);
}

.compare-table .partial {
    color: var(--warm);
}

/* Compare Grid */
.compare-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 32px;
}

/* Compare Cards */
.compare-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px;
}

.compare-card.accent {
    border-color: rgba(52, 211, 153, 0.3);
    background: rgba(52, 211, 153, 0.04);
}

.compare-card h3 {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.compare-card p {
    color: var(--text-secondary);
    font-size: 15px;
    line-height: 1.65;
    margin-bottom: 12px;
}

.compare-card ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.compare-card li {
    font-size: 15px;
    color: var(--text-secondary);
    padding-left: 20px;
    position: relative;
}

.compare-card li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

.compare-card.accent li::before {
    color: var(--accent);
}

/* Verdict Box */
.verdict-box {
    background: var(--bg-secondary);
    border: 1px solid rgba(52, 211, 153, 0.2);
    border-left: 4px solid var(--accent);
    border-radius: var(--radius-md);
    padding: 28px 32px;
    margin-top: 32px;
}

.verdict-box h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.verdict-box p {
    color: var(--text-secondary);
    font-size: 16px;
    line-height: 1.7;
    margin: 0;
}

/* Pricing Comparison */
.pricing-comparison {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-top: 32px;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.pricing-box {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 32px;
}

.pricing-box.featured {
    border-color: var(--accent);
    background: rgba(52, 211, 153, 0.04);
}

.pricing-box h3 {
    font-size: 20px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.pricing-box .price {
    font-family: var(--font-mono);
    font-size: 36px;
    font-weight: 700;
    color: var(--accent);
    margin-bottom: 4px;
}

.pricing-box .price span {
    font-size: 18px;
    font-weight: 400;
    color: var(--text-muted);
}

.pricing-box .price-note {
    font-size: 13px;
    color: var(--text-muted);
    margin-bottom: 24px;
}

.pricing-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pricing-box li {
    font-size: 15px;
    color: var(--text-secondary);
    padding-left: 20px;
    position: relative;
}

.pricing-box li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--accent);
    font-weight: 700;
}

/* Compare FAQ */
.compare-section .faq-list {
    max-width: 800px;
    margin: 0 auto;
}

.compare-section .faq-item {
    border-bottom: 1px solid var(--border);
    padding: 20px 0;
}

.compare-section .faq-item:last-child {
    border-bottom: none;
}

.compare-section .faq-question {
    font-size: 16px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
    cursor: default;
}

.compare-section .faq-answer {
    font-size: 15px;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Compare CTA */
.compare-cta {
    text-align: center;
    padding: 16px 0;
    max-width: 700px;
    margin: 0 auto;
}

.compare-cta h2 {
    font-size: 36px;
    font-weight: 700;
    margin-bottom: 16px;
    color: var(--text-primary);
}

.compare-cta p {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
    line-height: 1.65;
}

.cta-button {
    display: inline-block;
    background: var(--accent);
    color: var(--bg-primary);
    padding: 16px 40px;
    border-radius: var(--radius-sm);
    font-weight: 700;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.2s;
    margin-right: 16px;
}

.cta-button:hover {
    background: var(--accent-hover);
    transform: translateY(-2px);
    color: var(--bg-primary);
}

.cta-secondary {
    display: inline-block;
    color: var(--accent);
    border: 1px solid var(--accent);
    padding: 16px 32px;
    border-radius: var(--radius-sm);
    font-weight: 600;
    font-size: 16px;
    text-decoration: none;
    transition: all 0.2s;
}

.cta-secondary:hover {
    background: var(--accent-dim);
    color: var(--accent);
}

/* Compare Hub (index) */
.hub-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
}

.hub-hero {
    text-align: center;
    padding: 64px 0 48px;
}

.hub-badge {
    display: inline-block;
    background: var(--accent-dim);
    border: 1px solid var(--accent);
    color: var(--accent);
    padding: 6px 16px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    margin-bottom: 20px;
}

.hub-hero h1 {
    font-size: 48px;
    font-weight: 700;
    letter-spacing: -1px;
    margin-bottom: 20px;
}

.hub-hero p {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 720px;
    margin: 0 auto;
    line-height: 1.7;
}

.hub-section {
    padding-bottom: 80px;
}

.comparison-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 32px;
}

.comparison-card {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 28px;
    transition: border-color 0.2s, transform 0.2s;
}

.comparison-card:hover {
    border-color: var(--accent);
    transform: translateY(-2px);
}

.comparison-card h3 {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.comparison-card .summary {
    font-size: 14px;
    color: var(--text-muted);
    margin-bottom: 12px;
}

.comparison-card .differentiator {
    font-size: 14px;
    color: var(--text-secondary);
    background: var(--accent-dim);
    border-radius: 6px;
    padding: 8px 12px;
    margin-bottom: 16px;
}

.compare-link {
    display: inline-block;
    color: var(--accent);
    font-weight: 600;
    font-size: 14px;
    text-decoration: none;
}

.compare-link:hover {
    text-decoration: underline;
}

.hub-cta {
    text-align: center;
    padding: 48px 32px;
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    margin-top: 48px;
}

.hub-cta h2 {
    font-size: 32px;
    font-weight: 700;
    margin-bottom: 12px;
}

.hub-cta p {
    font-size: 17px;
    color: var(--text-secondary);
    margin-bottom: 28px;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive: compare pages */
@media (max-width: 768px) {
    .compare-hero h1 { font-size: 34px; }
    .compare-section-title { font-size: 28px; }
    .compare-grid { grid-template-columns: 1fr; }
    .pricing-comparison { grid-template-columns: 1fr; }
    .comparison-grid { grid-template-columns: 1fr 1fr; }
}

@media (max-width: 480px) {
    .compare-hero h1 { font-size: 28px; }
    .comparison-grid { grid-template-columns: 1fr; }
    .cta-button, .cta-secondary { display: block; margin: 0 0 12px 0; text-align: center; }
}
