/* ===== CSS Variables ===== */
:root {
    --color-bg: #ffffff;
    --color-bg-alt: #fafafa;
    --color-bg-elevated: #f5f5f5;
    --color-surface: #ffffff;
    --color-text: #09090b;
    --color-text-secondary: #52525b;
    --color-text-tertiary: #71717a;
    --color-text-muted: #a1a1aa;
    --color-border: #e4e4e7;
    --color-border-light: #f0f0f0;
    --color-accent: #22c55e;
    --color-accent-teal: #4DAB9A;
    --color-star: #facc15;
    --shadow-xs: 0 1px 2px rgba(0,0,0,0.04);
    --shadow-sm: 0 2px 8px rgba(0,0,0,0.04), 0 1px 2px rgba(0,0,0,0.06);
    --shadow-md: 0 4px 16px rgba(0,0,0,0.06), 0 1px 3px rgba(0,0,0,0.04);
    --shadow-lg: 0 12px 40px rgba(0,0,0,0.08), 0 2px 8px rgba(0,0,0,0.04);
    --shadow-xl: 0 24px 64px rgba(0,0,0,0.1);
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 20px;
    --radius-2xl: 24px;
    --radius-full: 980px;
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
    --duration-fast: 150ms;
    --duration-normal: 250ms;
}

/* ===== Reset & Base ===== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; -moz-osx-font-smoothing: grayscale; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    font-feature-settings: 'cv02', 'cv03', 'cv04', 'cv11';
    background: var(--color-bg);
    color: var(--color-text);
    line-height: 1.6;
    overflow-x: hidden;
}

a { color: inherit; text-decoration: none; }
img { display: block; max-width: 100%; height: auto; -webkit-user-drag: none; user-select: none; }

.container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ===== Scroll Reveal ===== */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
    will-change: opacity, transform;
}

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

/* Stagger children */
.reveal-stagger > * {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}

.reveal-stagger.visible > *:nth-child(1) { transition-delay: 0s; }
.reveal-stagger.visible > *:nth-child(2) { transition-delay: 0.08s; }
.reveal-stagger.visible > *:nth-child(3) { transition-delay: 0.16s; }
.reveal-stagger.visible > *:nth-child(4) { transition-delay: 0.24s; }
.reveal-stagger.visible > *:nth-child(5) { transition-delay: 0.32s; }
.reveal-stagger.visible > *:nth-child(6) { transition-delay: 0.4s; }

.reveal-stagger.visible > * {
    opacity: 1;
    transform: translateY(0);
}

/* ===== Promo Bar ===== */
.promo-bar {
    background: var(--color-bg-alt);
    border-bottom: 1px solid rgba(0,0,0,0.04);
    text-align: center;
    padding: 10px 16px;
    font-size: 13px;
    color: var(--color-text-muted);
    letter-spacing: 0.01em;
}

.promo-bar strong { color: var(--color-text); }
.promo-bar a { color: var(--color-text); text-decoration: underline; text-underline-offset: 2px; }
.promo-bar a:hover { color: var(--color-text-secondary); }

/* ===== Navigation ===== */
.nav {
    position: sticky;
    top: 0;
    z-index: 100;
    background: rgba(255, 255, 255, 0.85);
    backdrop-filter: saturate(180%) blur(20px);
    -webkit-backdrop-filter: saturate(180%) blur(20px);
    border-bottom: 1px solid rgba(0,0,0,0.04);
}

.nav-container {
    max-width: 1220px;
    margin: 0 auto;
    padding: 0 24px;
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    height: 60px;
}

.nav-logo img { border-radius: var(--radius-sm); }

.nav-links {
    display: flex;
    align-items: center;
    gap: 4px;
    background: rgba(0,0,0,0.04);
    border: 1px solid rgba(0,0,0,0.06);
    border-radius: var(--radius-full);
    padding: 4px 6px;
}

.nav-links a {
    padding: 7px 16px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(0,0,0,0.45);
    border-radius: var(--radius-full);
    transition: color var(--duration-normal), background var(--duration-normal);
    letter-spacing: 0.01em;
}

.nav-links a:hover {
    color: var(--color-text);
    background: rgba(0,0,0,0.06);
}

.nav-link-pricing {
    display: flex;
    align-items: center;
    gap: 6px;
}

.nav-sale-badge {
    background: var(--color-surface);
    color: var(--color-text);
    font-size: 9px;
    font-weight: 700;
    padding: 2px 6px;
    border-radius: 4px;
    letter-spacing: 0.5px;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    justify-self: end;
    background: var(--color-text);
    color: var(--color-surface);
    font-size: 13px;
    font-weight: 600;
    padding: 8px 20px;
    border-radius: var(--radius-full);
    transition: background var(--duration-normal), transform 0.2s;
    letter-spacing: 0.01em;
}

.nav-cta:hover { background: #222; transform: scale(0.98); }

.nav-burger {
    display: none;
    background: none;
    border: none;
    color: var(--color-text);
    cursor: pointer;
    padding: 4px;
    justify-self: end;
}

/* ===== Mobile Nav ===== */
.mobile-nav {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 200;
}

.mobile-nav.open { display: block; }

.mobile-nav-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    backdrop-filter: blur(8px);
}

.mobile-nav-panel {
    position: absolute;
    top: 0;
    right: 0;
    width: 300px;
    height: 100%;
    background: var(--color-surface);
    border-left: 1px solid var(--color-border);
    padding: 28px;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mobile-nav-close {
    align-self: flex-end;
    background: none;
    border: none;
    color: var(--color-text-muted);
    font-size: 28px;
    cursor: pointer;
    margin-bottom: 20px;
}

.mobile-nav-panel a {
    padding: 14px 16px;
    font-size: 17px;
    font-weight: 500;
    color: var(--color-text);
    border-radius: var(--radius-md);
    transition: background 0.2s;
}

.mobile-nav-panel a:hover { background: rgba(0,0,0,0.04); }

.mobile-nav-cta {
    margin-top: 12px;
    background: var(--color-text) !important;
    color: var(--color-surface) !important;
    text-align: center;
    font-weight: 600 !important;
    border-radius: var(--radius-full) !important;
}

/* ===== Buttons ===== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: var(--color-text);
    color: var(--color-surface);
    font-size: 17px;
    font-weight: 600;
    padding: 18px 44px;
    border-radius: var(--radius-full);
    border: none;
    cursor: pointer;
    transition: background var(--duration-normal), transform 0.2s, box-shadow var(--duration-normal);
    letter-spacing: -0.01em;
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), var(--shadow-sm);
}

.btn-primary:hover {
    background: #222;
    transform: scale(0.98);
    box-shadow: inset 0 1px 0 rgba(255,255,255,0.1), var(--shadow-md);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    background: var(--color-bg);
    border: 1px solid rgba(0,0,0,0.15);
    color: var(--color-text);
    font-size: 17px;
    font-weight: 500;
    padding: 18px 36px;
    border-radius: var(--radius-full);
    cursor: pointer;
    transition: border-color var(--duration-normal), background var(--duration-normal), transform 0.2s;
    letter-spacing: -0.01em;
}

.btn-secondary:hover {
    border-color: rgba(0,0,0,0.3);
    background: var(--color-bg-alt);
    transform: scale(0.98);
}

.btn-dark {
    background: var(--color-text);
    color: var(--color-surface);
    border: 1px solid var(--color-text);
}

.btn-dark:hover {
    background: #1a1a1a;
    border-color: #1a1a1a;
    opacity: 1;
}

.btn-primary:active, .btn-secondary:active, .btn-dark:active {
    transform: scale(0.96);
}

/* ===== Section Titles (Shared) ===== */
.section-label {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--color-text-secondary);
    margin-bottom: 16px;
}

/* ===== Hero ===== */
.hero {
    padding: 70px 0 0;
    text-align: center;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

/* Hero grid + radial glow */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px);
    background-size: 120px 120px;
    mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse 80% 70% at 50% 40%, black 20%, transparent 75%);
}

.hero::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 50% at 50% 30%, rgba(45, 212, 191, 0.04) 0%, transparent 70%);
    pointer-events: none;
}

.hero > .container { width: 100%; position: relative; z-index: 1; }

.hero-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeUp 0.8s 0.2s var(--ease-out) forwards;
}

.hero-avatars { display: flex; }

.hero-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--color-surface);
    margin-left: -8px;
    overflow: hidden;
    object-fit: cover;
}

.hero-avatar:first-child { margin-left: 0; }

.hero-rating {
    display: flex;
    align-items: center;
    gap: 6px;
}

.hero-stars { display: flex; gap: 1px; }

.star { color: var(--color-star); font-size: 15px; }

.hero-rating-text {
    font-size: 13px;
    color: var(--color-text-tertiary);
}

.hero-title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 700;
    line-height: 1.1;
    letter-spacing: -0.03em;
    color: var(--color-text);
    margin-bottom: 24px;
    text-wrap: balance;
    opacity: 0;
    animation: fadeUp 0.8s 0.35s var(--ease-out) forwards;
}

.hero-title-accent {
    font-style: italic;
    font-family: 'Georgia', 'Times New Roman', serif;
    background: linear-gradient(135deg, #2dd4bf 0%, #14b8a6 50%, #0d9488 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 19px;
    color: var(--color-text-tertiary);
    max-width: 560px;
    margin: 0 auto 44px;
    line-height: 1.65;
    letter-spacing: -0.01em;
    text-wrap: balance;
    opacity: 0;
    animation: fadeUp 0.8s 0.5s var(--ease-out) forwards;
}

.hero-sub strong { color: var(--color-text); font-weight: 500; }

.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
    opacity: 0;
    animation: fadeUp 0.8s 0.65s var(--ease-out) forwards;
}

.hero-meta {
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: 50px;
    letter-spacing: 0.02em;
    opacity: 0;
    animation: fadeUp 0.8s 0.75s var(--ease-out) forwards;
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(24px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ===== MacBook Frame ===== */
.macbook-frame {
    margin: 0 auto -27px;
    opacity: 0;
    animation: fadeUp 1s 0.9s var(--ease-out) forwards;
    position: relative;
}

.macbook-frame::before {
    content: '';
    position: absolute;
    bottom: -40px;
    left: 50%;
    transform: translateX(-50%);
    width: 70%;
    height: 120px;
    background: radial-gradient(ellipse, rgba(45, 212, 191, 0.15) 0%, rgba(20, 184, 166, 0.05) 50%, transparent 80%);
    filter: blur(40px);
    pointer-events: none;
    z-index: -1;
}

.macbook-screen {
    background: #1a1a1a;
    border-radius: 20px 20px 0 0;
    padding: 12px 12px 0;
    position: relative;
}

/* Floating stat cards */
.floating-stat {
    position: absolute;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 10px 16px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.08), 0 2px 8px rgba(0, 0, 0, 0.04);
    z-index: 10;
    opacity: 0;
    animation: floatIn 0.8s 1.4s var(--ease-out) forwards;
}

.floating-stat-value {
    font-size: 18px;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -0.02em;
}

.floating-stat-label {
    font-size: 11px;
    color: var(--color-text-tertiary);
    font-weight: 500;
    letter-spacing: 0.02em;
}

.floating-stat-1 {
    top: 15%;
    left: -60px;
    animation-delay: 1.4s;
    animation-name: floatIn1;
}

.floating-stat-2 {
    top: 45%;
    right: -60px;
    animation-delay: 1.7s;
    animation-name: floatIn2;
}

.floating-stat-3 {
    bottom: 20%;
    left: -40px;
    animation-delay: 2.0s;
    animation-name: floatIn3;
}

@keyframes floatIn1 {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes floatIn2 {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes floatIn3 {
    from { opacity: 0; transform: translateX(-20px); }
    to { opacity: 1; transform: translateX(0); }
}

.macbook-base {
    background: linear-gradient(180deg, #c0c0c0 0%, #a8a8a8 40%, #b5b5b5 100%);
    height: 18px;
    border-radius: 0 0 8px 8px;
    position: relative;
    display: flex;
    align-items: flex-start;
    justify-content: center;
}

.macbook-base-indent {
    width: 22%;
    max-width: 160px;
    height: 5px;
    background: linear-gradient(180deg, #999 0%, #aaa 100%);
    border-radius: 0 0 5px 5px;
    margin-top: 0;
}

/* ===== Comparison Slider ===== */
.comparison {
    position: relative;
    overflow: hidden;
    cursor: ew-resize;
    user-select: none;
    -webkit-user-select: none;
    border-radius: 0;
}

.comparison-before { position: relative; z-index: 1; width: 100%; }
.comparison-after { position: absolute; inset: 0; z-index: 2; right: -1px; clip-path: inset(0 0 0 50%); overflow: hidden; }

.comparison .screenshot-placeholder {
    width: 100%;
    aspect-ratio: 16 / 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    font-size: 15px;
    font-weight: 500;
    color: #444;
}

.comparison-before .screenshot-placeholder { background: #0d0d0d; }
.comparison-after .screenshot-placeholder { position: absolute; inset: 0; background: #111; aspect-ratio: auto; }
.comparison .screenshot-placeholder small { font-size: 12px; font-weight: 400; color: #333; }

.comparison-image img { width: 100%; height: auto; display: block; border-radius: 10px 10px 0 0; pointer-events: none; }
.comparison-after img { position: absolute; top: 0; left: 0; width: 100%; height: 100%; object-fit: cover; border-radius: 10px 10px 0 0; right: -1px;}


.comparison-handle {
    position: absolute;
    top: 0; bottom: 0;
    left: 50%;
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    width: 2px;
    transform: translateX(-50%);
    pointer-events: none;
}

.comparison-handle-line { flex: 1; width: 2px; background: rgba(255,255,255,0.5); }

.comparison-handle-knob {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, rgba(255,255,255,0.6), rgba(255,255,255,0.2));
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255,255,255,0.3);
    color: var(--color-text);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 24px rgba(0,0,0,0.3), inset 0 1px 0 rgba(255,255,255,0.4);
    flex-shrink: 0;
    pointer-events: auto;
}

/* ===== Social Proof Bar (replaces AI Banner) ===== */
.proof-bar {
    padding: 0;
    background: var(--color-bg-alt);
    border-top: 1px solid var(--color-border-light);
    border-bottom: 1px solid var(--color-border-light);
}

.proof-bar-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
    min-height: 64px;
    padding: 16px 0;
    flex-wrap: wrap;
}

.proof-bar-item {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 0 32px;
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text-secondary);
    letter-spacing: -0.01em;
}

.proof-bar-icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 28px;
    height: 28px;
    background: var(--color-text);
    color: var(--color-surface);
    border-radius: 6px;
    font-size: 16px;
    font-weight: 700;
    flex-shrink: 0;
}

.proof-bar-stars {
    color: var(--color-star);
    font-size: 15px;
    letter-spacing: 1px;
}

.proof-bar-avatars {
    height: 28px;
    width: auto;
    border-radius: var(--radius-full);
}

.proof-bar-divider {
    width: 1px;
    height: 24px;
    background: var(--color-border);
    flex-shrink: 0;
}

/* ===== Metrics Bar ===== */
.metrics-bar {
    padding: 48px 0;
    border-bottom: 1px solid var(--color-border);
}

.metrics-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    text-align: center;
}

.metric {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.metric-value {
    font-size: clamp(36px, 5vw, 52px);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--color-text);
    line-height: 1;
}

.metric-label {
    font-size: 14px;
    color: var(--color-text-tertiary);
    font-weight: 500;
    letter-spacing: 0.02em;
}

/* ===== Why This System Exists ===== */
.why {
    padding: 80px 0;
    background: var(--color-bg-alt);
    color: var(--color-text);
    text-align: center;
}

.why-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--color-text);
    letter-spacing: -0.03em;
    line-height: 1.1;
    text-wrap: balance;
}

.why-sub {
    font-size: 17px;
    color: var(--color-text-tertiary);
    max-width: 560px;
    margin: 0 auto 48px;
    line-height: 1.65;
    text-wrap: balance;
}

.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 0;
}

.why-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    padding: 36px 24px;
    text-align: center;
    box-shadow: var(--shadow-xs);
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.why-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.why-card-icon { color: var(--color-text); margin-bottom: 20px; }
.why-card h4 { font-size: 16px; font-weight: 700; color: var(--color-text); margin-bottom: 8px; letter-spacing: -0.01em; }
.why-card p { font-size: 14px; color: var(--color-text-muted); line-height: 1.6; }

/* AI Banner */
.ai-banner {
    display: grid;
    grid-template-columns: 240px 1fr 1.4fr;
    gap: 40px;
    align-items: center;
    margin-top: 20px;
    padding: 36px 40px;
    background: #0a0a0a;
    border: 1px solid #222;
    border-radius: var(--radius-2xl);
    text-align: left;
}

.ai-banner-left {
    text-align: center;
}

.ai-banner-left img {
    width: 140px;
    margin: 0 auto 16px;
}

.ai-banner-label {
    font-size: 15px;
    font-weight: 700;
    color: #fff;
    margin-bottom: 4px;
}

.ai-banner-link {
    background: none;
    border: none;
    font-size: 14px;
    font-style: italic;
    color: rgba(255,255,255,0.5);
    cursor: pointer;
    padding: 0;
    transition: color 0.2s;
}

.ai-banner-link:hover { color: #fff; }

.ai-banner-video {
    position: relative;
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid rgba(255,255,255,0.1);
}

.ai-banner-thumb {
    width: 100%;
    aspect-ratio: 16 / 10;
    object-fit: cover;
}

.ai-banner-play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: none;
    border: none;
    cursor: pointer;
    transition: transform 0.25s var(--ease-out);
}

.ai-banner-play:hover { transform: translate(-50%, -50%) scale(1.1); }

.ai-banner-right h3 {
    font-size: 20px;
    font-weight: 700;
    color: #fff;
    line-height: 1.3;
    margin-bottom: 12px;
    letter-spacing: -0.02em;
}

.ai-banner-right p {
    font-size: 15px;
    color: rgba(255,255,255,0.55);
    line-height: 1.65;
}

.ai-banner-right p strong {
    color: rgba(255,255,255,0.85);
}

@media (max-width: 768px) {
    .ai-banner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 28px 24px;
        gap: 24px;
    }
    .ai-banner-left img { width: 100px; }
    .ai-banner-right h3 { font-size: 18px; }
}

/* ===== Features ===== */
.features {
    padding: 80px 0;
    background: var(--color-bg);
    color: var(--color-text);
}

.features-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    text-align: center;
    line-height: 1.1;
    margin-bottom: 16px;
    color: var(--color-text);
    letter-spacing: -0.03em;
    text-wrap: balance;
}

.features-sub {
    text-align: center;
    font-size: 17px;
    color: var(--color-text-muted);
    margin-bottom: 48px;
}

.features-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    margin-bottom: 16px;
}

.feature-card {
    display: flex;
    flex-direction: column;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-2xl);
    padding: 40px 32px;
    box-shadow: var(--shadow-xs);
    overflow: hidden;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.feature-card .feature-screenshot {
    margin-top: auto;
}

.feature-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.feature-card h3 { font-size: 20px; font-weight: 700; margin-bottom: 8px; color: var(--color-text); letter-spacing: -0.02em; }
.feature-card > p { font-size: 15px; color: var(--color-text-muted); line-height: 1.65; margin-bottom: 24px; }

.feature-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 28px; }

.feature-tag {
    display: inline-block;
    padding: 7px 16px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-secondary);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    background: var(--color-surface);
    transition: border-color 0.2s;
}

.feature-tag:hover { border-color: var(--color-text-muted); }

.feature-screenshot-placeholder {
    width: 100%;
    aspect-ratio: 16 / 10;
    background: var(--color-border-light);
    border: 1px dashed var(--color-border);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-text-muted);
    font-size: 14px;
    font-weight: 500;
}

/* Real screenshots — edge-to-edge, no borders, no padding */
.feature-screenshot {
    max-width: none;
    width: calc(100% + 64px);
    margin: 0 -32px -40px;
    border-radius: 0 0 var(--radius-2xl) var(--radius-2xl);
}

/* Tall variant for wide-card visuals (right column) */
.feature-screenshot-tall-img {
    width: 100%;
}

.feature-card-wide { margin-bottom: 16px; }

.feature-card-split {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 48px;
    align-items: start;
}

.feature-card-text h3 { font-size: 24px; font-weight: 700; margin-bottom: 16px; letter-spacing: -0.02em; }
.feature-card-text > p { font-size: 16px; color: var(--color-text-muted); line-height: 1.7; margin-bottom: 32px; }

.feature-list {
    list-style: none;
    counter-reset: feature-counter;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.feature-list li {
    counter-increment: feature-counter;
    display: flex;
    flex-direction: column;
    gap: 2px;
    padding-left: 48px;
    position: relative;
    font-size: 15px;
    line-height: 1.55;
}

.feature-list li::before {
    content: counter(feature-counter);
    position: absolute;
    left: 0;
    top: 0;
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background: var(--color-bg-elevated);
    border: 1px solid var(--color-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-text);
}

.feature-list li strong { color: var(--color-text); }
.feature-list li span { color: var(--color-text-muted); font-size: 14px; }

.feature-card-visual {
    position: relative;
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.7s var(--ease-out), transform 0.7s var(--ease-out);
}

.visible .feature-card-visual,
.visible.feature-card .feature-card-visual {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

/* Feature list items stagger in */
.feature-list li {
    opacity: 0;
    transform: translateX(-12px);
    transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}

.visible .feature-list li { opacity: 1; transform: translateX(0); }
.visible .feature-list li:nth-child(1) { transition-delay: 0.15s; }
.visible .feature-list li:nth-child(2) { transition-delay: 0.25s; }
.visible .feature-list li:nth-child(3) { transition-delay: 0.35s; }
.visible .feature-list li:nth-child(4) { transition-delay: 0.45s; }
.visible .feature-list li:nth-child(5) { transition-delay: 0.55s; }
.visible .feature-list li:nth-child(6) { transition-delay: 0.65s; }

.feature-screenshot-tall { aspect-ratio: 10 / 13; }

.features-row-3 { grid-template-columns: repeat(3, 1fr); }

/* Dark card */
.feature-card-dark { background: #0a0a0a; border-color: #1a1a1a; color: #e5e5e5; }
.feature-card-dark:hover { box-shadow: 0 8px 32px rgba(0,0,0,0.3); }
.feature-card-dark h3 { color: #fff; }
.feature-card-dark > p, .feature-card-dark .feature-card-text > p { color: var(--color-text-muted); }
.feature-card-dark .feature-list li strong { color: #ddd; }
.feature-card-dark .feature-list li span { color: var(--color-text-muted); }
.feature-card-dark .feature-list li::before { background: #1a1a1a; border-color: #333; color: #ddd; }
.feature-card-dark .feature-screenshot-placeholder { background: #111; border-color: #222; color: #444; }

/* ===== Per-feature custom styles (add your overrides here) ===== */
/* #f-analytics .feature-screenshot {} */
/* #f-markets .feature-screenshot {} */
#f-journal .feature-card-visual,
#f-knowledge-base .feature-card-visual,
#f-tools .feature-card-visual {
    display: flex;
    align-items: flex-end;
    align-self: stretch;
}

#f-journal .feature-screenshot-tall-img,
#f-knowledge-base .feature-screenshot-tall-img,
#f-tools .feature-screenshot-tall-img {
    max-width: none;
    width: calc(100% + 32px);
    margin-bottom: -40px;
    margin-right: -32px;
}
/* #f-backtests .feature-screenshot {} */
/* #f-news .feature-screenshot {} */
/* #f-resources .feature-screenshot {} */
/* #f-book-tracker .feature-screenshot {} */
/* #f-tools .feature-screenshot-tall-img {} */
#f-goals .feature-screenshot,
#f-tasks .feature-screenshot,
#f-habits .feature-screenshot,
#f-markets .feature-screenshot,
#f-resources .feature-screenshot,
#f-accounts .feature-screenshot,
#f-analytics .feature-screenshot,
#f-notebook .feature-screenshot,
#f-book-tracker .feature-screenshot,
#f-backtests .feature-screenshot,
#f-news .feature-screenshot{
    margin-left: 0;
    border-radius: 14px 0 0 0;
    border-top: 1px solid var(--color-border);
    border-left: 1px solid var(--color-border);
}
/* #f-notebook .feature-screenshot {} */
/* #f-accounts .feature-screenshot {} */
#f-ai .feature-card-visual {
    display: flex;
    align-items: stretch;
    align-self: stretch;
}

#f-ai .feature-screenshot-tall-img {
    max-width: none;
    width: calc(100% + 32px);
    margin: 0 -32px -40px 0;
    object-fit: cover;
    object-position: left top;
    border-radius: 12px 0 0 0;
}

.feature-note { margin-top: 28px; margin-bottom: 0; font-size: 13px; font-style: italic; color: var(--color-text-tertiary); }

.feature-ai-icons {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 28px;
}

.feature-ai-icons img { flex-shrink: 0; }

.feature-ai-icons span {
    font-size: 13px;
    color: var(--color-text-muted);
}

.features-section-heading {
    font-size: 20px;
    font-weight: 700;
    text-align: center;
    color: var(--color-text);
    margin-top: 64px;
    margin-bottom: 0;
    letter-spacing: -0.02em;
}

/* ===== Compact Feature Mini Grid (Block D "Stay Organized") ===== */
.feature-mini-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    margin-top: 28px;
}

.feature-mini {
    padding: 24px 20px;
    text-align: center;
    position: relative;
}

.feature-mini:not(:last-child)::after {
    content: '';
    position: absolute;
    top: 16px;
    bottom: 16px;
    right: 0;
    width: 1px;
    background: var(--color-border-light);
}

.feature-mini svg {
    display: block;
    margin: 0 auto 12px;
    color: var(--color-text-secondary);
}

.feature-mini h4 {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-text);
    margin-bottom: 4px;
    letter-spacing: -0.01em;
}

.feature-mini p {
    font-size: 13px;
    color: var(--color-text-tertiary);
    line-height: 1.5;
}

/* ===== How It Works ===== */
.how-it-works {
    padding: 60px 0 40px;
    background: var(--color-bg-alt);
    color: var(--color-text);
    text-align: center;
}

.how-it-works-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 48px;
    color: var(--color-text);
    letter-spacing: -0.03em;
    text-wrap: balance;
}

.how-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 48px;
}

.how-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-2xl);
    padding: 36px 24px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-xs);
    overflow: hidden;
    transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}

.how-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-md);
}

.how-card-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-full);
    background: var(--color-bg-alt);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 24px;
    letter-spacing: -0.01em;
}

.how-card-badge svg {
    flex-shrink: 0;
    opacity: 0.7;
}

.how-card-img {
    max-width: none;
    width: calc(80%);
    margin: 20px -14px -36px;
    border-radius: 14px 14px 0 0;
    border-top: 1px solid var(--color-border);
    border-left: 1px solid var(--color-border);
    border-right: 1px solid var(--color-border);
}

.how-card p { font-size: 15px; color: var(--color-text-tertiary); line-height: 1.6; margin-bottom: 0; }

.how-cta { text-align: center; }
.how-cta-text { font-size: 17px; color: var(--color-text-tertiary); margin-bottom: 28px; line-height: 1.6; text-wrap: balance; }

/* ===== Testimonials ===== */
.testimonials {
    padding: 40px 0 80px;
    background: var(--color-bg-alt);
    color: var(--color-text);
    text-align: center;
}

.testimonials-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    text-wrap: balance;
}

.testimonials-sub { font-size: 17px; color: var(--color-text-muted); margin-bottom: 48px; }

/* Featured testimonials (top row with stats) */
.testimonial-featured {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 16px;
    margin-bottom: 16px;
    text-align: left;
}

.testimonial-featured .testimonial-card {
    position: relative;
    overflow: hidden;
}

.testimonial-featured .testimonial-stat {
    display: flex;
    flex-direction: column;
    margin-bottom: 16px;
}

.testimonial-featured .testimonial-stat-number {
    font-size: 48px;
    font-weight: 700;
    line-height: 1;
    color: var(--color-text);
    letter-spacing: -0.04em;
}

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

/* Standard testimonials grid */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 16px;
    margin-bottom: 48px;
    text-align: left;
}

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

.testimonial-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.testimonial-header { display: flex; align-items: center; gap: 12px; margin-bottom: 20px; }
.testimonial-header strong { display: block; font-size: 14px; color: var(--color-text); }
.testimonial-stars { color: var(--color-accent); font-size: 14px; letter-spacing: 2px; }
.testimonial-card h4 { font-size: 17px; font-weight: 700; color: var(--color-text); margin-bottom: 8px; letter-spacing: -0.01em; }
.testimonial-card > p { font-size: 14px; font-style: italic; color: var(--color-text-muted); line-height: 1.65; }

.avatar-placeholder {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: var(--color-border-light);
    flex-shrink: 0;
}

.avatar-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
    flex-shrink: 0;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-top: 20px;
}

.testimonial-author strong {
    display: block;
    font-size: 14px;
    color: var(--color-text);
}

.testimonial-author span {
    font-size: 13px;
    color: var(--color-text-muted);
}

.testimonials-cta { text-align: center; }
.testimonials-cta-text { font-size: 16px; font-weight: 600; color: var(--color-text); margin-bottom: 24px; }

/* ===== Pricing ===== */
.pricing {
    padding: 80px 0;
    background: var(--color-bg);
    color: var(--color-text);
    text-align: center;
}

.pricing-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.03em;
    text-wrap: balance;
}

.pricing-sub { font-size: 17px; color: var(--color-text-muted); margin-bottom: 48px; }

.pricing-card {
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: 28px;
    padding: 48px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 48px;
    text-align: left;
    box-shadow: 0 0 0 1px var(--color-border), var(--shadow-lg);
    overflow: hidden;
}

.pricing-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    background: rgba(16, 185, 129, 0.06);
    border: 1px solid rgba(16, 185, 129, 0.15);
    border-radius: var(--radius-full);
    font-size: 13px;
    color: var(--color-text-secondary);
    margin-bottom: 24px;
    width: fit-content;
}

.pricing-badge strong {
    color: #0d9488;
    font-weight: 700;
}

.pricing-card-left h3 { font-size: 26px; font-weight: 700; margin-bottom: 12px; color: var(--color-text); line-height: 1.15; letter-spacing: -0.02em; }

.notion-badge {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 26px;
    height: 26px;
    background: var(--color-text);
    color: var(--color-surface);
    border-radius: 6px;
    font-size: 15px;
    font-weight: 700;
    vertical-align: middle;
}

.pricing-desc { font-size: 15px; color: var(--color-text-muted); line-height: 1.6; margin-bottom: 28px; }

.pricing-price { display: flex; align-items: baseline; gap: 12px; margin-bottom: 24px; }
.pricing-old { font-size: 28px; font-weight: 600; color: var(--color-text-muted); text-decoration: line-through; }
.pricing-was { font-size: 28px; font-weight: 600; color: var(--color-text-muted); text-decoration: line-through; opacity: 0.5; align-self: center; }
.pricing-current { font-size: 52px; font-weight: 800; color: var(--color-text); letter-spacing: -0.04em; }
.pricing-limited { font-size: 14px; color: var(--color-text-muted); }

.pricing-discount { font-size: 14px; color: var(--color-text-tertiary); margin-bottom: 4px; }

.pricing-code {
    display: inline-block;
    padding: 2px 10px;
    border: 1.5px dashed var(--color-border);
    border-radius: 6px;
    font-family: 'SF Mono', 'Menlo', monospace;
    font-size: 13px;
    font-weight: 700;
    color: var(--color-text);
    background: var(--color-surface);
}

.pricing-btn { padding: 18px 40px; font-size: 17px; margin-bottom: 28px; width: 100%; text-align: center; }

.pricing-features { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 28px; }
.pricing-feature { font-size: 14px; color: var(--color-text-secondary); display: flex; align-items: center; gap: 8px; }
.check { color: var(--color-accent); font-weight: 700; font-size: 16px; }
.check-teal { color: var(--color-accent-teal); }

.pricing-footer {
    padding-top: 20px;
    border-top: 1px solid var(--color-border);
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.pricing-crypto { font-size: 13px; color: var(--color-text-tertiary); display: flex; align-items: center; gap: 6px; }
.pricing-crypto a { text-decoration: underline; text-underline-offset: 3px; }

.pricing-urgency-dot {
    width: 8px;
    height: 8px;
    background: #10b981;
    border-radius: 50%;
    flex-shrink: 0;
    animation: urgencyPulse 2s ease-in-out infinite;
}

@keyframes urgencyPulse {
    0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(16, 185, 129, 0.4); }
    50% { opacity: 0.7; box-shadow: 0 0 0 6px rgba(16, 185, 129, 0); }
}

.pricing-card-right {
    position: relative;
    align-self: stretch;
    overflow: hidden;
    margin: -48px -48px -48px 0;
    border-radius: 0 28px 28px 0;
}

.pricing-bg-img {
    max-width: none;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: left top;
}

.pricing-donut-float {
    position: absolute;
    width: 28%;
    right: 20%;
    top: 22%;
    border-radius: 16px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    animation: donutFloat 4s ease-in-out infinite;
}

@keyframes donutFloat {
    0%, 100% { transform: translateY(0) rotate(-5deg); }
    50% { transform: translateY(-14px) rotate(-5deg); }
}

/* ===== Pricing Guarantee ===== */
.pricing-guarantee {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--color-text-muted);
    margin-bottom: 16px;
}

.pricing-guarantee svg { color: var(--color-accent); flex-shrink: 0; }

/* ===== Upsell Section ===== */
/* ===== Upsell ===== */
.upsell {
    padding: 20px 0 80px;
    background: linear-gradient(180deg, var(--color-bg) 0%, #f5faf9 50%, var(--color-bg) 100%);
    color: var(--color-text);
}

.upsell-header {
    text-align: center;
    margin-bottom: 40px;
}

.upsell-eyebrow {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--color-accent-teal);
    margin-bottom: 12px;
}

.upsell-header h2 {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
    text-wrap: balance;
}

.upsell-header p {
    font-size: 17px;
    color: var(--color-text-tertiary);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.65;
}

/* Unified card wrapping table + plans */
.upsell-card {
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-2xl);
    overflow: hidden;
    box-shadow: var(--shadow-sm);
}

/* Comparison table */
.upsell-table {
    width: 100%;
}

.upsell-table-header {
    display: grid;
    grid-template-columns: 1fr 140px 140px 140px;
    gap: 0;
    padding: 24px 32px 16px;
    border-bottom: 1px solid var(--color-border);
    background: var(--color-bg-alt);
}

.upsell-table-header .upsell-table-feature {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.upsell-table-col {
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text-secondary);
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.upsell-table-col span {
    font-size: 12px;
    font-weight: 500;
    color: var(--color-text-muted);
}

.upsell-table-col-expert {
    color: var(--color-accent-teal);
}

.upsell-table-body {
    padding: 0 32px;
}

.upsell-table-row {
    display: grid;
    grid-template-columns: 1fr 140px 140px 140px;
    gap: 0;
    padding: 14px 0;
    border-bottom: 1px solid var(--color-border-light);
    transition: background var(--duration-fast) ease;
}

.upsell-table-row:last-child {
    border-bottom: none;
}

.upsell-table-row:hover {
    background: rgba(0,0,0,0.01);
}

.upsell-table-row .upsell-table-feature {
    font-size: 14px;
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
}

.upsell-table-cell {
    display: flex;
    align-items: center;
    justify-content: center;
}

.upsell-check {
    font-size: 15px;
    font-weight: 700;
    color: var(--color-accent);
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(34, 197, 94, 0.08);
}

.upsell-check-teal {
    color: var(--color-accent-teal);
    background: rgba(77, 171, 154, 0.08);
}

.upsell-dash {
    font-size: 14px;
    color: var(--color-text-muted);
    opacity: 0.5;
}

/* Plan CTA strip at bottom of card */
.upsell-plans {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0;
    border-top: 1px solid var(--color-border);
}

.upsell-plan {
    padding: 40px 32px;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
}

.upsell-plan-pro {
    border-right: 1px solid var(--color-border);
}

.upsell-plan-expert {
    background: #0a0a0a;
}

.upsell-plan-badge {
    position: absolute;
    top: 0px;
    left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    padding: 4px 16px;
    border-radius: 0 0 var(--radius-sm) var(--radius-sm);
    background: var(--color-accent-teal);
    color: #fff;
}

.upsell-plan-top {
    margin-bottom: 8px;
}

.upsell-plan h4 {
    font-size: 18px;
    font-weight: 700;
    letter-spacing: -0.01em;
    margin-bottom: 4px;
}

.upsell-plan-price {
    font-size: 32px;
    font-weight: 800;
    letter-spacing: -0.03em;
}

.upsell-plan-price span {
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text-muted);
    letter-spacing: 0;
}

.upsell-plan-desc {
    font-size: 14px;
    color: var(--color-text-tertiary);
    line-height: 1.55;
    margin-bottom: 24px;
    max-width: 280px;
}

.upsell-btn {
    width: 100%;
    max-width: 240px;
    padding: 14px 24px;
    font-size: 14px;
    font-weight: 600;
}

/* Expert plan dark styles */
.upsell-plan-expert h4 { color: #fff; }
.upsell-plan-expert .upsell-plan-price { color: #fff; }
.upsell-plan-expert .upsell-plan-price span { color: #666; }
.upsell-plan-expert .upsell-plan-desc { color: #888; }

.upsell-plan-expert .btn-primary {
    background: #fff;
    color: #0a0a0a;
    border-color: #fff;
}

.upsell-plan-expert .btn-primary:hover {
    background: #f0f0f0;
    border-color: #f0f0f0;
}

.upsell-note {
    text-align: center;
    font-size: 14px;
    color: var(--color-text-muted);
    margin-top: 24px;
}

/* ===== FAQ ===== */
.faq {
    padding: 80px 0;
    background: var(--color-bg-alt);
    color: var(--color-text);
    text-align: center;
}

.faq-title {
    font-size: clamp(26px, 3.5vw, 36px);
    font-weight: 700;
    margin-bottom: 16px;
    line-height: 1.2;
    letter-spacing: -0.03em;
    text-wrap: balance;
}

.faq-sub { font-size: 17px; color: var(--color-text-muted); margin-bottom: 48px; }

.faq-list {
    max-width: 720px;
    margin: 0 auto 48px;
    text-align: left;
}

.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0 40px;
    margin: 0 auto 48px;
    text-align: left;
}

.faq-col { display: flex; flex-direction: column; }

.faq-item { border-bottom: 1px solid var(--color-border); }

.faq-item summary {
    padding: 24px 0;
    font-size: 17px;
    font-weight: 600;
    color: var(--color-text);
    cursor: pointer;
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    letter-spacing: -0.01em;
    transition: color 0.2s;
}

.faq-item summary:hover { color: var(--color-text-tertiary); }

.faq-item summary::after {
    content: '+';
    font-size: 24px;
    font-weight: 300;
    color: var(--color-border);
    flex-shrink: 0;
    margin-left: 16px;
    transition: transform 0.3s;
}

.faq-item[open] summary::after { content: '\00d7'; transform: rotate(0deg); }
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item p { padding: 0 0 24px; font-size: 16px; color: var(--color-text-tertiary); line-height: 1.7; }

.faq-disclaimer { font-size: 13px; color: var(--color-text-muted); text-align: center; line-height: 1.6; }

/* ===== Legal Pages ===== */
.legal {
    padding: 80px 0 80px;
    background: var(--color-bg);
    color: var(--color-text);
}

.legal-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    letter-spacing: -0.03em;
    margin-bottom: 8px;
    color: var(--color-text);
}

.legal-updated {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 36px;
}

.legal-body {
    max-width: 720px;
}

.legal-body h2 {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -0.02em;
    margin: 48px 0 16px;
}

.legal-body h2:first-child { margin-top: 0; }

.legal-body p {
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 1.75;
    margin-bottom: 16px;
}

.legal-body ul {
    margin: 0 0 20px 24px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.legal-body li {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.7;
}

.legal-body li strong { color: var(--color-text); }

.legal-body a {
    color: var(--color-text);
    text-decoration: underline;
    text-underline-offset: 3px;
    transition: color 0.2s;
}

.legal-body a:hover { color: var(--color-text-tertiary); }

/* ===== Thank You Page ===== */
.thankyou-hero {
    padding: 100px 0 60px;
    background: var(--color-bg-alt);
    text-align: center;
}

.thankyou-icon {
    margin-bottom: 24px;
}

.thankyou-icon svg {
    width: 72px;
    height: 72px;
}

.thankyou-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 800;
    letter-spacing: -0.04em;
    color: var(--color-text);
    margin-bottom: 16px;
    line-height: 1.1;
}

.thankyou-sub {
    font-size: 18px;
    color: var(--color-text-secondary);
    max-width: 520px;
    margin: 0 auto;
    line-height: 1.6;
}

.thankyou-steps {
    padding: 64px 0;
    background: var(--color-bg);
}

.thankyou-steps-title {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--color-text);
    text-align: center;
    margin-bottom: 48px;
}

.thankyou-steps-list {
    max-width: 640px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.thankyou-step {
    display: flex;
    gap: 20px;
    align-items: flex-start;
}

.thankyou-step-number {
    flex-shrink: 0;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-text);
    color: var(--color-bg);
    font-weight: 700;
    font-size: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-top: 2px;
}

.thankyou-step-content strong {
    display: block;
    font-size: 17px;
    font-weight: 600;
    color: var(--color-text);
    margin-bottom: 4px;
}

.thankyou-step-content p {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin: 0;
}

.thankyou-step-content a {
    color: var(--color-text);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.thankyou-help {
    padding: 64px 0 80px;
    background: var(--color-bg);
    text-align: center;
    border-top: 1px solid var(--color-border-light);
}

.thankyou-help-title {
    font-size: clamp(24px, 3vw, 32px);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--color-text);
    margin-bottom: 12px;
}

.thankyou-help-sub {
    font-size: 16px;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.thankyou-help-sub a {
    color: var(--color-text);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ===== Free Journal Landing ===== */
.free-hero {
    padding: 80px 0 0;
    background: var(--color-bg);
    text-align: center;
    border-bottom: 1px solid #DDDDDD;
}

.free-hero .section-label { margin-bottom: 20px; }

.free-hero-title {
    font-size: clamp(32px, 5vw, 48px);
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -0.03em;
    line-height: 1.1;
    margin-bottom: 20px;
    text-wrap: balance;
}

.free-hero-title em {
    font-style: italic;
    font-family: 'Georgia', 'Times New Roman', serif;
}

.free-hero-sub {
    font-size: 17px;
    color: var(--color-text-tertiary);
    line-height: 1.6;
    max-width: 520px;
    margin: 0 auto 28px;
}

/* Wealth Tracker CTA */
.wt-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 12px;
}

.wt-buy-btn {
    padding: 16px 40px;
    font-size: 16px;
}

.wt-hero {
    background: #f1f1ef;
}

.wt-meta {
    font-size: 14px;
    color: var(--color-text-muted);
    text-align: center;
    margin-bottom: 32px;
}

/* Wealth Tracker Mockup */
.wt-mockup {
    position: relative;
    max-width: 860px;
    margin: 0 auto;
    padding-bottom: 20px; /* space for mobile overflow */
}

.wt-mockup-desktop {
    position: relative;
    width: 82%;
    background: #fff;
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    overflow: hidden;
    box-shadow:
        0 1px 3px rgba(0, 0, 0, 0.04),
        0 8px 32px rgba(0, 0, 0, 0.08),
        0 24px 64px rgba(0, 0, 0, 0.06);
    opacity: 0;
    transform: translateY(30px);
    animation: wtDesktopIn 0.9s 0.3s var(--ease-out) forwards;
}

.wt-mockup-desktop img {
    display: block;
    width: 100%;
    height: auto;
}

.wt-mockup-mobile {
    position: absolute;
    right: 2%;
    bottom: 0;
    width: 22%;
    background: #1a1a1a;
    border-radius: 24px;
    padding: 8px;
    box-shadow:
        0 4px 16px rgba(0, 0, 0, 0.1),
        0 16px 48px rgba(0, 0, 0, 0.15),
        0 32px 80px rgba(0, 0, 0, 0.1);
    opacity: 0;
    transform: translateY(40px) translateX(10px);
    animation: wtMobileIn 0.8s 0.7s var(--ease-out) forwards;
}

.wt-mockup-mobile img {
    display: block;
    width: 100%;
    height: auto;
    border-radius: 16px;
}

@keyframes wtDesktopIn {
    from { opacity: 0; transform: translateY(30px); }
    to   { opacity: 1; transform: translateY(0); }
}

@keyframes wtMobileIn {
    from { opacity: 0; transform: translateY(40px) translateX(10px); }
    to   { opacity: 1; transform: translateY(0) translateX(0); }
}

/* Hero Image */
.wt-hero-img {
    position: relative;
    max-width: 100%;
    margin: 0 auto;
}

.wt-hero-img img {
    display: block;
    width: 100%;
    height: auto;
}

/* Video Button */
.wt-video-btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0;
    padding: 16px 32px 16px 24px;
    background: none;
    border: none;
    border-radius: 0;
    color: var(--color-text-secondary);
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    transition: color 0.25s ease;
}

.wt-video-btn:hover {
    color: var(--color-text);
}

.wt-video-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 30px;
    height: 30px;
    background: var(--color-text);
    border-radius: 50%;
    flex-shrink: 0;
}

.wt-video-icon svg {
    margin-left: 2px;
}

/* Wealth Tracker Features */
.wt-features {
    padding: 64px 0 80px;
    background: var(--color-bg);
}

.wt-features-heading {
    font-size: clamp(26px, 4vw, 40px);
    font-weight: 700;
    color: var(--color-text);
    text-align: center;
    letter-spacing: -0.03em;
    line-height: 1.2;
    margin-bottom: 14px;
    text-wrap: balance;
}

.wt-features-sub {
    font-size: 16px;
    color: var(--color-text-tertiary);
    text-align: center;
    margin-bottom: 48px;
}

.wt-features-heading--spaced {
    margin-top: 64px;
    margin-bottom: 40px;
}

/* Cards */
.wt-card {
    background: #f1f1ef;
    border: 1px solid #DDDDDD;
    border-radius: var(--radius-lg);
    overflow: hidden;
    transition: box-shadow 0.3s ease, border-color 0.3s ease;
}

.wt-card:hover {
    box-shadow: var(--shadow-md);
    border-color: rgba(0, 0, 0, 0.08);
}

.wt-card h3 {
    font-size: 22px;
    font-weight: 700;
    color: var(--color-text);
    letter-spacing: -0.02em;
    margin-bottom: 8px;
}

.wt-card p {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

.wt-card-img {
    overflow: hidden;
}

.wt-card-img img {
    display: block;
    width: 100%;
    height: auto;
}

/* Wide card (feature 1) */
.wt-card--wide {
    margin-bottom: 24px;
    background: #f1f1ef;
    border: 1px solid #DDDDDD;
    overflow: hidden;
}

.wt-card--wide .wt-card-text {
    padding: 40px 40px 0;
    background: transparent;
    position: relative;
    z-index: 2;
}

.wt-card--wide .wt-card-img {
    padding: 0;
    margin-top: -70px;
}

.wt-card--wide .wt-card-img img {
    border-radius: 0;
}

#wt-card-2 .wt-card-img img,
#wt-card-3 .wt-card-img img,
#wt-card-4 .wt-card-img img,
#wt-card-5 .wt-card-img img,
#wt-card-7 .wt-card-img img,
#wt-card-8 .wt-card-img img,
#wt-card-9 .wt-card-img img,
#wt-card-10 .wt-card-img img,
#wt-card-12 .wt-card-img img,
#wt-card-11 .wt-card-img img,
#wt-card-14 .wt-card-img img,
#wt-card-15 .wt-card-img img,
#wt-card-16 .wt-card-img img {
    border-top: 1px solid #DDDDDD;
    border-left: 1px solid #DDDDDD;
    border-right: 1px solid #DDDDDD;
    border-radius: 14px 14px 0 0;
}

#wt-card-3 .wt-card-img{
    margin-bottom: -80px;
}

/* Two-col row */
.wt-card-row {
    display: grid;
    grid-template-columns: 1.62fr 1fr;
    gap: 24px;
    margin-bottom: 24px;
}

.wt-card-row:last-child {
    margin-bottom: 0;
}

.wt-card-row .wt-card {
    display: flex;
    flex-direction: column;
}

.wt-card-row .wt-card h3 {
    padding: 20px 32px 0;
}

.wt-card-row .wt-card p {
    padding: 8px 32px 24px;
}

.wt-card-row .wt-card-img {
    margin-top: auto;
    padding: 0 30px;
}

.wt-card-row .wt-card-img img {
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

/* Triple column variant */
.wt-card-row--triple {
    grid-template-columns: 1fr 1fr 1fr;
}
#wt-card-4 .wt-card-img{
    margin-bottom: -15px;
}

/* Card badges */
.wt-card-badge {
    display: inline-block;
    align-self: flex-start;
    padding: 4px 12px;
    border-radius: var(--radius-full);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.02em;
    margin: 28px 28px 0;
}

.wt-card-badge--green {
    background: #dcfce7;
    color: #15803d;
}

.wt-card-badge--purple {
    background: #ede9fe;
    color: #6d28d9;
}

.wt-card-badge--amber {
    background: #fef3c7;
    color: #b45309;
}

/* Comparison slider inside card */
.wt-card .comparison {
    border-radius: var(--radius-md) var(--radius-md) 0 0;
}

.wt-card .comparison-image img {
    border-radius: 0;
}

.wt-card .comparison-after img {
    border-radius: 0;
}

.wt-card .comparison-handle-knob {
    width: 40px;
    height: 40px;
}

.wt-card .comparison-handle-knob svg {
    width: 14px;
    height: 14px;
}

/* WT Testimonials */
.wt-testimonials {
    padding: 64px 0 80px;
    background: var(--color-bg-alt);
}

.wt-reviews-grid {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 20px;
    margin-top: 40px;
}

.wt-reviews-grid .testimonial-card {
    padding: 28px 24px;
}

.wt-reviews-grid .testimonial-card > p {
    font-size: 15px;
    font-style: italic;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin: 0;
}

.wt-reviews-grid .testimonial-header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.wt-reviews-grid .testimonial-header strong {
    display: block;
    font-size: 15px;
    color: var(--color-text);
}

.wt-stars {
    color: #00b67a;
    font-size: 14px;
    letter-spacing: 1px;
    line-height: 1;
}

/* WT Scrolling Ticker */
.wt-ticker {
    background: #0a0a0a;
    overflow: hidden;
    white-space: nowrap;
    padding: 12px 0;
}

.wt-ticker-track {
    display: inline-flex;
    animation: wtTicker 30s linear infinite;
}

.wt-ticker-track span {
    display: inline-block;
    padding: 0 40px;
    font-size: 15px;
    color: #fff;
    letter-spacing: 0.01em;
}

.wt-ticker-track strong {
    color: #fff;
    font-weight: 700;
}

@keyframes wtTicker {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* WT Pricing */
.wt-pricing {
    padding: 64px 0 80px;
    background: var(--color-bg);
}

.wt-pricing-card {
    display: grid;
    grid-template-columns: 1fr 1.1fr;
    background: #f7f7f5;
    border: 1px solid var(--color-border);
    border-radius: var(--radius-xl);
    overflow: hidden;
    margin-top: 40px;
    box-shadow: var(--shadow-md);
}

.wt-pricing-left {
    padding: 48px 40px;
}

.wt-pricing-product {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 12px;
}

.wt-pricing-icon {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    object-fit: cover;
}

.wt-pricing-product h3 {
    font-size: 28px;
    font-weight: 800;
    color: var(--color-text);
    letter-spacing: -0.02em;
}

.wt-pricing-desc {
    font-size: 15px;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 28px;
}

.wt-pricing-price {
    display: flex;
    align-items: baseline;
    gap: 12px;
    margin-bottom: 8px;
}

.wt-pricing-old {
    font-size: 32px;
    font-weight: 700;
    color: var(--color-text-muted);
    text-decoration: line-through;
}

.wt-pricing-current {
    font-size: 42px;
    font-weight: 800;
    color: #dc2626;
    letter-spacing: -0.02em;
}

.wt-pricing-coupon {
    font-size: 15px;
    color: var(--color-text-secondary);
    margin-bottom: 4px;
}

.wt-coupon-code {
    display: inline-block;
    padding: 2px 10px;
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: 6px;
    font-family: monospace;
    font-size: 14px;
    font-weight: 700;
    color: #dc2626;
}

.wt-pricing-limited {
    font-size: 14px;
    color: var(--color-text-muted);
    margin-bottom: 24px;
}

.wt-pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.wt-pricing-features li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 15px;
    color: var(--color-text);
    font-weight: 500;
}

.wt-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 12px;
}

.wt-guarantee span {
    font-size: 14px;
    color: var(--color-text-muted);
    font-weight: 500;
}

.wt-pricing-crypto {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 14px;
    text-decoration: none;
}

.wt-pricing-crypto img {
    width: 32px;
    height: auto;
}

.wt-pricing-crypto span {
    font-size: 14px;
    color: var(--color-text-muted);
    cursor: pointer;
    transition: color 0.2s;
}

.wt-pricing-crypto span:hover {
    color: var(--color-text);
}

.wt-pricing-right {
    display: flex;
    align-items: flex-end;
    justify-content: flex-end;
    overflow: hidden;
    padding: 0;
}

.wt-pricing-right img {
    width: 100%;
    height: auto;
    object-fit: cover;
    border-radius: 0;
}

/* WT FAQ */
.wt-faq {
    padding: 32px 0 80px;
}

.wt-faq-list {
    max-width: 760px;
    margin: 40px auto 0;
    text-align: left;
}

/* Bottom CTA */
.wt-bottom-cta {
    text-align: center;
    margin-top: 48px;
}

/* Email Form */
.free-form {
    display: flex;
    align-items: center;
    max-width: 520px;
    margin: 0 auto 16px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 6px;
    transition: border-color 0.2s, box-shadow 0.2s;
}

.free-form:focus-within {
    border-color: var(--color-text);
    box-shadow: 0 0 0 3px rgba(0,0,0,0.06);
}

.free-form input {
    flex: 1;
    border: none;
    outline: none;
    padding: 14px 16px;
    font-size: 15px;
    color: var(--color-text);
    background: transparent;
    font-family: inherit;
}

.free-form input::placeholder { color: var(--color-text-muted); }

.free-form .btn-dark {
    padding: 14px 28px;
    font-size: 14px;
    border-radius: var(--radius-sm);
    white-space: nowrap;
    flex-shrink: 0;
}

/* Trust Signals */
.free-trust {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-bottom: 32px;
}

.free-trust span {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 13px;
    color: var(--color-text-muted);
}

/* Social Proof */
.free-proof {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 36px;
}

.free-avatars {
    display: flex;
}

.free-avatar {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: 2px solid var(--color-surface);
    margin-left: -8px;
    object-fit: cover;
}

.free-avatar:first-child { margin-left: 0; }

.free-rating {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 2px;
}

.free-stars {
    display: flex;
    gap: 2px;
}

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

/* MailerLite embed reset */
.ml-form-embedContainer { width: 100%; max-width: 520px; margin: 0 auto 20px; }
.ml-form-embedBody { padding: 0 !important; background: none !important; }
.ml-form-embedContainer .ml-form-embedWrapper { background: none !important; border: none !important; padding: 0 !important; margin: 0 !important; display: block !important; }
.ml-form-embedContainer .ml-form-formContent { margin: 0 !important; padding: 0 !important; }

/* Loading spinner */
.ml-form-embedSubmitLoad {
    display: inline-block;
    width: 18px;
    height: 18px;
}
.ml-form-embedSubmitLoad:after {
    content: "";
    display: block;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2.5px solid #fff;
    border-color: #fff #fff #fff transparent;
    animation: mlSpinner 0.8s linear infinite;
}
@keyframes mlSpinner {
    to { transform: rotate(360deg); }
}
.free-form .loading { pointer-events: none; }

/* Success state */
.free-form-success {
    text-align: center;
    padding: 20px 24px;
    margin-bottom: 16px;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    max-width: 520px;
    margin: 0 auto;
}
.free-form-success .success-icon {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22c55e 0%, #16a34a 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 16px;
    box-shadow: 0 4px 16px rgba(34,197,94,0.25);
    animation: successPop 0.4s var(--ease-out) both;
}
@keyframes successPop {
    0% { transform: scale(0); opacity: 0; }
    60% { transform: scale(1.15); }
    100% { transform: scale(1); opacity: 1; }
}
.free-form-success .success-icon svg {
    animation: successCheck 0.3s ease 0.3s both;
}
@keyframes successCheck {
    0% { stroke-dashoffset: 20; opacity: 0; }
    100% { stroke-dashoffset: 0; opacity: 1; }
}
.free-form-success h4 {
    font-size: 20px;
    font-weight: 700;
    margin-bottom: 6px;
    color: var(--color-text);
    letter-spacing: -0.01em;
}
.free-form-success p {
    font-size: 14px;
    color: var(--color-text-tertiary);
    line-height: 1.6;
}
.free-form-success .success-hint {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    margin-top: 16px;
    padding: 6px 14px;
    background: rgba(34,197,94,0.06);
    border: 1px solid rgba(34,197,94,0.15);
    border-radius: var(--radius-full);
    font-size: 12px;
    color: var(--color-text-secondary);
}

/* Screenshot */
.free-screenshot {
    max-width: 900px;
    margin: 0 auto 60px;
}

.free-screenshot img {
    width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
}

/* Light nav for free page */
.free-hero ~ .footer { background: var(--color-bg); border-top-color: var(--color-border); }

/* ===== Video Modal ===== */
.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    z-index: 300;
    align-items: center;
    justify-content: center;
}

.video-modal.open {
    display: flex;
}

.video-modal-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    animation: modalFadeIn 0.3s ease;
}

.video-modal-content {
    position: relative;
    width: 90%;
    max-width: 960px;
    z-index: 1;
    animation: modalSlideUp 0.4s var(--ease-out);
}

.video-modal-close {
    position: absolute;
    top: -48px;
    right: 0;
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.6);
    font-size: 32px;
    cursor: pointer;
    padding: 4px 8px;
    line-height: 1;
    transition: color 0.2s;
}

.video-modal-close:hover { color: #fff; }

.video-modal-wrapper {
    position: relative;
    padding-bottom: 56.25%; /* 16:9 */
    border-radius: var(--radius-xl);
    overflow: hidden;
    background: #000;
    border: 3px solid rgba(255, 255, 255, 0.15);
    box-shadow: 0 40px 120px -20px rgba(0, 0, 0, 0.8);
}

.video-modal-wrapper iframe {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

@keyframes modalFadeIn {
    from { opacity: 0; }
    to { opacity: 1; }
}

@keyframes modalSlideUp {
    from { opacity: 0; transform: translateY(24px) scale(0.96); }
    to { opacity: 1; transform: translateY(0) scale(1); }
}

/* ===== Footer ===== */
.footer {
    padding: 64px 0;
    background: var(--color-bg-alt);
    border-top: 1px solid var(--color-border);
    color: var(--color-text);
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 56px;
}

.footer-logo { border-radius: var(--radius-sm); margin-bottom: 12px; width: 36px; height: 36px; }
.footer-tagline { font-size: 14px; color: var(--color-text-secondary); margin-bottom: 8px; line-height: 1.5; }
.footer-copy { font-size: 13px; color: var(--color-text-muted); line-height: 1.5; margin-bottom: 20px; }

.footer-socials { display: flex; gap: 10px; }

.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--color-text);
    color: var(--color-surface);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: opacity 0.2s;
}

.footer-socials a:hover { opacity: 0.6; }

.footer-col h4 { font-size: 13px; font-weight: 700; color: var(--color-text); margin-bottom: 20px; text-transform: uppercase; letter-spacing: 0.06em; }
.footer-col a { display: block; font-size: 14px; color: var(--color-text-muted); margin-bottom: 12px; transition: color 0.2s; }
.footer-col a:hover { color: var(--color-text); }

/* ===== Final CTA ===== */
.final-cta {
    padding: 80px 0;
    text-align: center;
    background: var(--color-surface-alt, #fafafa);
    border-top: 1px solid var(--color-border);
}

.final-cta-badge {
    display: inline-block;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #0d9488;
    background: rgba(45, 212, 191, 0.08);
    border: 1px solid rgba(45, 212, 191, 0.2);
    padding: 6px 16px;
    border-radius: 20px;
    margin-bottom: 24px;
}

.final-cta-title {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 700;
    letter-spacing: -0.03em;
    color: var(--color-text);
    margin-bottom: 16px;
    line-height: 1.1;
}

.final-cta-sub {
    font-size: 18px;
    color: var(--color-text-tertiary);
    margin-bottom: 32px;
    max-width: 480px;
    margin-left: auto;
    margin-right: auto;
}

/* ===== Sticky Mobile CTA ===== */
.sticky-cta {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 90;
    padding: 12px 16px;
    padding-bottom: calc(12px + env(safe-area-inset-bottom));
    background: rgba(255, 255, 255, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-top: 1px solid rgba(0,0,0,0.08);
}

.sticky-cta-btn {
    width: 100%;
    font-size: 16px;
    padding: 16px 24px;
    box-shadow: 0 -4px 24px rgba(0,0,0,0.3);
}

/* ===== Chat Widget ===== */
.chat-widget {
    position: fixed;
    bottom: 24px;
    right: 24px;
    z-index: 200;
}

.chat-widget-btn {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--color-text);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-surface);
    box-shadow: var(--shadow-lg);
    transition: all 0.25s var(--ease-out);
    position: relative;
}

.chat-widget-btn:hover {
    transform: scale(1.08);
    box-shadow: var(--shadow-xl);
}

.chat-widget-btn svg { width: 24px; height: 24px; }

.chat-widget-label {
    position: absolute;
    right: 66px;
    top: 50%;
    transform: translateY(-50%) translateX(8px);
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    padding: 8px 14px;
    font-size: 13px;
    font-weight: 500;
    color: var(--color-text);
    white-space: nowrap;
    box-shadow: var(--shadow-md);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.2s, transform 0.2s;
}

.chat-widget-btn:hover .chat-widget-label {
    opacity: 1;
    transform: translateY(-50%) translateX(0);
}

.chat-widget-popup {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 340px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-xl);
    opacity: 0;
    pointer-events: none;
    transform: translateY(10px) scale(0.95);
    transition: all 0.3s var(--ease-out);
}

.chat-widget-popup.open {
    opacity: 1;
    pointer-events: auto;
    transform: translateY(0) scale(1);
}

.chat-popup-header {
    padding: 16px 20px;
    background: var(--color-text);
    color: var(--color-surface);
}

.chat-popup-header h4 { font-size: 15px; font-weight: 600; }
.chat-popup-header p { font-size: 12px; opacity: 0.7; margin-top: 2px; }

.chat-popup-body { padding: 20px; }

.chat-popup-body p {
    font-size: 14px;
    color: var(--color-text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.chat-popup-body a {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 20px;
    background: var(--color-bg-alt);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-sm);
    font-size: 14px;
    font-weight: 600;
    color: var(--color-text);
    transition: background 0.2s, border-color 0.2s;
}

.chat-popup-body a:hover {
    background: var(--color-bg-elevated);
    border-color: var(--color-text-muted);
}

/* ===== Social Proof Toast ===== */
.social-toast {
    position: fixed;
    bottom: 24px;
    left: 24px;
    z-index: 200;
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 20px 14px 16px;
    background: var(--color-surface);
    border: 1px solid var(--color-border);
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
    transform: translateY(120%) scale(0.95);
    opacity: 0;
    transition: all 0.45s var(--ease-out);
    pointer-events: none;
    max-width: 380px;
}

.social-toast.show {
    transform: translateY(0) scale(1);
    opacity: 1;
    pointer-events: auto;
}

.social-toast-icon {
    width: 40px;
    height: 40px;
    min-width: 40px;
    background: #f0fdf4;
    border: 1px solid rgba(34, 197, 94, 0.15);
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--color-accent);
}

.social-toast-icon svg { width: 18px; height: 18px; }

.social-toast-body {
    display: flex;
    flex-direction: column;
    gap: 2px;
    min-width: 0;
}

.social-toast-text {
    font-size: 14px;
    font-weight: 500;
    color: var(--color-text);
    line-height: 1.4;
}

.social-toast-text strong { font-weight: 600; }

.social-toast-meta {
    font-size: 12px;
    color: var(--color-text-muted);
    display: flex;
    align-items: center;
    gap: 6px;
}

.social-toast-meta .verified {
    color: var(--color-accent);
    display: inline-flex;
    align-items: center;
    gap: 3px;
    font-weight: 500;
}

.social-toast-meta .verified svg { width: 12px; height: 12px; }

.social-toast-close {
    position: absolute;
    top: 8px;
    right: 10px;
    background: none;
    border: none;
    color: var(--color-text-muted);
    cursor: pointer;
    padding: 2px;
    line-height: 1;
    font-size: 16px;
    opacity: 0;
    transition: opacity 0.15s;
}

.social-toast:hover .social-toast-close { opacity: 1; }
.social-toast-close:hover { color: var(--color-text-secondary); }

/* ===== Responsive ===== */

/* Tablet */
@media (max-width: 1024px) {
    .container { padding: 0 20px; }

    /* Hero */
    .hero-title { font-size: 36px; }
    .floating-stat { display: none; }

    /* Why: 4 cols → 2 cols */
    .why-grid { grid-template-columns: 1fr 1fr; }

    /* AI Banner: 3 cols → stack */
    .ai-banner {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
        padding: 28px 32px;
    }
    .ai-banner-left { grid-column: 1 / -1; display: flex; align-items: center; gap: 16px; text-align: left; }
    .ai-banner-left img { width: 80px; margin: 0; }
    .ai-banner-right h3 { font-size: 18px; }

    /* Feature wide cards: less gap */
    .feature-card-split { gap: 32px; }
    .feature-card { padding: 32px 24px; }

    /* Feature 3-col → 2-col */
    .features-row-3 { grid-template-columns: 1fr 1fr; }

    /* Feature mini grid: 4 → 2 */
    .feature-mini-grid { grid-template-columns: 1fr 1fr; }
    .feature-mini:not(:last-child)::after { display: none; }

    /* How it works: keep 3 but tighter */
    .how-card { padding: 28px 20px; }
    .how-grid { margin-bottom: 36px; }

    /* Testimonials featured: 3 → 2+1 */
    .testimonial-featured { grid-template-columns: 1fr 1fr; }
    .testimonial-featured .testimonial-card:last-child { grid-column: 1 / -1; }

    /* Pricing card: smaller padding */
    .pricing-card { padding: 36px 32px; gap: 32px; }
    .pricing-current { font-size: 44px; }

    /* Upsell table: slightly smaller cols */
    .upsell-table-header,
    .upsell-table-row {
        grid-template-columns: 1fr 110px 110px 110px;
    }

    /* Footer: 4 cols → 2+2 */
    .footer-grid { grid-template-columns: 1.2fr 1fr 1fr; gap: 40px; }

    /* Wealth Tracker triple → 2-col on tablet */
    .wt-card-row--triple { grid-template-columns: 1fr 1fr; }
    .wt-reviews-grid { grid-template-columns: 1fr 1fr; }
    .wt-testimonials { padding: 48px 0 56px; }
    .wt-pricing-card { grid-template-columns: 1fr; }
    .wt-pricing-right { max-height: none; }
    .wt-pricing { padding: 48px 0 56px; }

    /* Free Journal */
    .free-hero { padding: 80px 0 0; }
    .free-hero-sub { margin-bottom: 0; }
    .free-trust { margin-bottom: 28px; }
    .free-proof { margin-bottom: 28px; }
}

@media (max-width: 768px) { 
    .nav-links, .nav-cta { display: none; }
    .nav-burger { display: block; }
    .nav-container { grid-template-columns: 1fr auto; }

    #wt-card-3 .wt-card-img{
        margin-bottom: -30px;
    }

    /* AI Banner: reset tablet overrides, stack fully */
    .ai-banner {
        grid-template-columns: 1fr;
        text-align: center;
        padding: 28px 24px;
        gap: 20px;
    }
    .ai-banner-left {
        grid-column: auto;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 8px;
        text-align: center;
    }
    .ai-banner-left img { width: 80px; margin: 0 auto; }
    .ai-banner-right { text-align: center; }
    .ai-banner-right h3 { font-size: 17px; margin-bottom: 8px; }
    .ai-banner-right p { font-size: 14px; }

    .hero { padding: 56px 0 20px; min-height: auto; }
    .hero-title { font-size: 32px; }
    .hero-sub { font-size: 16px; margin-bottom: 32px; }

    .hero-actions { flex-direction: column; gap: 12px; }
    .hero-actions .btn-primary, .hero-actions .btn-secondary { width: 100%; }

    .btn-primary { font-size: 16px; padding: 16px 32px; }
    .btn-secondary { font-size: 16px; padding: 16px 28px; }

    /* MacBook frame on mobile */
    .macbook-screen { border-radius: 10px 10px 0 0; padding: 6px 6px 0; }
    .floating-stat { display: none; }

    /* Social Proof Bar */
    .proof-bar-inner {
        flex-direction: column;
        gap: 12px;
        padding: 16px 0;
    }

    .proof-bar-divider {
        width: 40px;
        height: 1px;
    }

    .proof-bar-item {
        padding: 0;
        font-size: 13px;
    }

    .why, .features, .how-it-works, .testimonials, .pricing, .faq { padding: 36px 0; }

    .upsell { padding: 20px 0 36px; }

    .why-title, .features-title, .how-it-works-title,
    .testimonials-title, .pricing-title { font-size: 26px; margin-bottom: 12px; }

    /* Reduce subtitle → content gaps on mobile */
    .why-sub { margin-bottom: 24px; }
    .features-sub { margin-bottom: 24px; }
    .how-it-works-title { margin-bottom: 24px; }
    .testimonials-sub { margin-bottom: 24px; }
    .pricing-sub { margin-bottom: 24px; }
    .faq-sub { margin-bottom: 24px; }
    .upsell-header { margin-bottom: 20px; }

    .why-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
    .why-card { padding: 24px 20px; }

    .features-row { grid-template-columns: 1fr; gap: 12px; margin-bottom: 12px; }
    .features-row-3 { grid-template-columns: 1fr; }
    .feature-card { padding: 24px 20px; }
    .feature-screenshot { max-width: none; width: calc(100% + 40px); margin: 0 -20px -24px; }
    .feature-card h3 { font-size: 18px; }
    .feature-card-split { grid-template-columns: 1fr; gap: 16px; }
    .feature-card-text h3 { font-size: 22px; }
    .feature-screenshot-tall { aspect-ratio: 16 / 10; }

    /* Wide card images: reset right-align to full-width bottom on mobile */
    #f-journal .feature-screenshot-tall-img,
    #f-knowledge-base .feature-screenshot-tall-img,
    #f-tools .feature-screenshot-tall-img {
        width: calc(100% + 40px);
        margin: 0 -20px -24px;
        margin-right: auto;
    }

    /* AI card: pull up + left indent */
    #f-ai .feature-card-visual {
        margin-top: -16px;
        padding-left: 20px;
    }
    #f-ai .feature-screenshot-tall-img {
        width: calc(100% + 20px);
        margin: 0 -20px -24px 0;
        object-fit: cover;
        object-position: left top;
    }

    /* Compact Feature Mini Grid */
    .feature-mini-grid { grid-template-columns: 1fr 1fr; }

    .feature-mini:not(:last-child)::after { display: none; }

    /* Testimonials */
    .testimonial-featured { grid-template-columns: 1fr; }
    .testimonial-featured .testimonial-card:last-child { grid-column: auto; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .testimonial-card { padding: 20px 16px; }

    .how-grid { grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 20px; }
    .testimonials-grid { margin-bottom: 24px; }

    .pricing-card { grid-template-columns: 1fr; padding: 28px 20px; gap: 0; }
    .pricing-card-left h3 { font-size: 22px; }
    .pricing-features { grid-template-columns: 1fr; margin-bottom: 20px; }
    .pricing-current { font-size: 36px; }
    .pricing-btn { margin-bottom: 20px; }
    .pricing-footer { padding-top: 16px; margin-bottom: 16px; }
    .pricing-card-right { margin: -16px -20px -28px; overflow: hidden; border-radius: 14px 14px 0 0; }
    .pricing-card-right img { border-radius: 0; height: auto; }
    .pricing-donut-float { width: 35%; right: 10%; }

    /* Upsell */
    .upsell-header h2 { font-size: 26px; }

    .upsell-table-header {
        grid-template-columns: 1fr 64px 64px 64px;
        padding: 16px 20px 12px;
    }

    .upsell-table-col {
        font-size: 12px;
    }

    .upsell-table-col span {
        font-size: 10px;
    }

    .upsell-table-body {
        padding: 0 20px;
    }

    .upsell-table-row {
        grid-template-columns: 1fr 64px 64px 64px;
        padding: 11px 0;
    }

    .upsell-table-row .upsell-table-feature {
        font-size: 12px;
    }

    .upsell-check {
        width: 20px;
        height: 20px;
        font-size: 12px;
    }

    .upsell-plans {
        grid-template-columns: 1fr;
    }

    .upsell-plan-pro {
        border-right: none;
        border-bottom: 1px solid var(--color-border);
    }

    .upsell-plan {
        padding: 24px 20px;
    }

    .upsell-plan-price {
        font-size: 26px;
    }

    .metrics-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }

    .faq-title { font-size: 22px; }
    .faq-title br { display: none; }
    .faq-grid { grid-template-columns: 1fr; gap: 0; }
    .faq-item summary { font-size: 15px; padding: 16px 0; }
    .faq-item p { font-size: 14px; }

    .final-cta { padding: 48px 0; }

    .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px 24px; }

    .legal { padding: 60px 0 48px; }
    .legal-title { font-size: 28px; }
    .legal-updated { margin-bottom: 32px; }
    .legal-body h2 { font-size: 19px; margin-top: 36px; }
    .legal-body p { font-size: 15px; }
    .legal-body li { font-size: 14px; }

    .thankyou-hero { padding: 80px 0 48px; }
    .thankyou-steps { padding: 48px 0; }
    .thankyou-steps-title { margin-bottom: 36px; }
    .thankyou-help { padding: 48px 0 64px; }

    /* Video Modal */
    .video-modal-content { width: 95%; }
    .video-modal-close { top: -40px; font-size: 28px; }
    .video-modal-wrapper { border-radius: var(--radius-md); }

    /* Free Journal */
    .free-hero { padding: 64px 0 0; }
    .free-hero-sub { margin-bottom: 28px; }
    .free-form { flex-direction: column; gap: 8px; padding: 8px; }
    .free-form input { text-align: center; }
    .free-form .btn-dark { width: 100%; padding: 16px; }
    .ml-form-embedContainer { margin-bottom: 16px; }
    .free-trust { flex-direction: column; gap: 10px; margin-bottom: 28px; }
    .free-proof { margin-bottom: 28px; }
    .free-screenshot { max-width: 100%; }
    .wt-mockup { max-width: 100%; }
    .wt-mockup-desktop { width: 80%; }
    .wt-mockup-mobile { width: 25%; border-radius: 18px; padding: 6px; }
    .wt-mockup-mobile img { border-radius: 12px; }
    .free-hero-title br,
    .wt-features-heading br,
    .wt-card-text br,
    .wt-card br { display: none; }
    .wt-video-btn { font-size: 13px; }
    .wt-card--wide .wt-card-text { padding: 28px 28px 20px; }
    .wt-card--wide .wt-card-img { padding: 0; margin-top: 0; }
    .wt-card-row .wt-card h3 { padding: 24px 24px 0; font-size: 18px; }
    .wt-card-row .wt-card p { padding: 8px 24px 20px; font-size: 14px; }
    .wt-card-row .wt-card-img { padding: 0 12px; }
    .wt-card-row--triple { grid-template-columns: 1fr; }
    .wt-card-badge { margin: 20px 24px 0; }
    .free-form-success { padding: 20px 16px; }
    .free-form-success h4 { font-size: 18px; }
    .free-form-success p { font-size: 13px; }

    /* Sticky CTA on mobile */
    .sticky-cta { display: block; }
    .footer { padding-bottom: 100px; }

    /* Chat widget & toast on mobile */
    .chat-widget { display: none !important; }
    .social-toast { display: none !important; }

    /* Reduce reveal distance on mobile */
    .reveal { transform: translateY(20px); }
    .reveal-stagger > * { transform: translateY(16px); }
}

@media (max-width: 480px) {
    .why, .features, .how-it-works, .testimonials, .pricing, .faq { padding: 28px 0; }
    .upsell { padding: 12px 0 28px; }

    .why-grid { grid-template-columns: 1fr; }
    .how-grid { grid-template-columns: 1fr; }
    .hero-title { font-size: 28px; }
    .hero-proof { flex-direction: column; gap: 8px; }

    /* Compact Feature Mini Grid */
    .feature-mini-grid { grid-template-columns: 1fr; }

    /* Upsell table — tighter columns */
    .upsell-table-header,
    .upsell-table-row {
        grid-template-columns: 1fr 48px 48px 48px;
    }

    .upsell-table-header { padding: 14px 16px 10px; }
    .upsell-table-body { padding: 0 16px; }

    .upsell-table-col { font-size: 11px; }
    .upsell-table-col span { display: none; }

    .upsell-table-row .upsell-table-feature { font-size: 11px; }

    .upsell-check { width: 18px; height: 18px; font-size: 11px; }

    .upsell-plan-price { font-size: 24px; }

    /* Pricing */
    .pricing-donut-float { display: none; }

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

    /* Legal */
    .legal { padding: 48px 0 36px; }
    .legal-title { font-size: 24px; margin-bottom: 6px; }
    .legal-updated { margin-bottom: 24px; font-size: 13px; }
    .legal-body h2 { font-size: 18px; margin-top: 28px; }
    .legal-body p { font-size: 14px; }
    .legal-body li { font-size: 13px; }
    .legal-body ul { margin-left: 16px; }

    .thankyou-hero { padding: 64px 0 36px; }
    .thankyou-icon svg { width: 56px; height: 56px; }
    .thankyou-sub { font-size: 16px; }
    .thankyou-steps { padding: 36px 0; }
    .thankyou-steps-title { margin-bottom: 28px; }
    .thankyou-steps-list { gap: 24px; }
    .thankyou-step { gap: 16px; }
    .thankyou-step-number { width: 32px; height: 32px; font-size: 14px; }
    .thankyou-step-content strong { font-size: 15px; }
    .thankyou-step-content p { font-size: 14px; }
    .thankyou-help { padding: 36px 0 48px; }
    .thankyou-help-sub { font-size: 15px; }

    /* Free Journal */
    .free-hero { padding: 52px 0 0; }
    .free-hero-title { font-size: 26px; }
    .free-hero-sub { font-size: 14px; margin-bottom: 24px; }
    .free-trust span { font-size: 12px; }
    .free-proof { flex-direction: column; gap: 8px; margin-bottom: 24px; }
    .free-avatar { width: 32px; height: 32px; font-size: 10px; }
    .wt-mockup-desktop { width: 100%; }
    .wt-mockup-mobile { width: 28%; right: -4px; bottom: -8px; border-radius: 14px; padding: 4px; }
    .wt-mockup-mobile img { border-radius: 10px; }
    .wt-actions { flex-direction: column; }
    .wt-actions .btn-primary { width: 100%; }
    .wt-video-btn { font-size: 14px; }
    .wt-video-icon { width: 26px; height: 26px; }
    .wt-video-icon svg { width: 14px; height: 14px; }
    .wt-features { padding: 36px 0 48px; }
    .wt-features-heading { font-size: 22px; }
    .wt-features-heading--spaced { margin-top: 40px; margin-bottom: 28px; }
    .wt-features-sub { font-size: 14px; margin-bottom: 32px; }
    .wt-card-row { grid-template-columns: 1fr; gap: 16px; }
    .wt-card--wide { margin-bottom: 16px; }
    .wt-card--wide .wt-card-text { padding: 24px 20px 16px; }
    .wt-card--wide .wt-card-img { padding: 0; margin-top: 0; }
    .wt-card h3 { font-size: 18px; }
    .wt-card p { font-size: 14px; }
    .wt-card-row .wt-card h3 { padding: 20px 20px 0; }
    .wt-card-row .wt-card p { padding: 6px 20px 16px; }
    .wt-card-row .wt-card-img { padding: 0 10px; }
    .wt-card-badge { margin: 16px 20px 0; font-size: 11px; }
    .wt-bottom-cta { margin-top: 32px; }
    .wt-reviews-grid { grid-template-columns: 1fr; gap: 16px; }
    .wt-testimonials { padding: 36px 0 48px; }
    .wt-pricing { padding: 36px 0 48px; }
    .wt-pricing-left { padding: 28px 20px; }
    .wt-pricing-product h3 { font-size: 22px; }
    .wt-pricing-old { font-size: 24px; }
    .wt-pricing-current { font-size: 32px; }
    .wt-pricing-features { grid-template-columns: 1fr; gap: 8px; }
    .wt-guarantee span { font-size: 12px; }
    .wt-pricing-right { max-height: none; padding: 0; }
    .wt-pricing-right img { border-radius: 0; }
    .wt-ticker-track span { font-size: 13px; padding: 0 24px; }
    .wt-faq { padding: 36px 0 48px; }
    .wt-faq-list { margin-top: 28px; }
    .wt-card-row { margin-bottom: 16px; }
}
