/* ============================================
   Fanxcel — Clean White + Sky Blue Theme
   Inspired by substy.ai / gojiberry.ai / stripe
   ============================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700;800;900&display=swap');

:root {
    --white: #FFFFFF;
    --bg: #FAFBFF;
    --bg-hero: linear-gradient(180deg, #EEF4FF 0%, #FAFBFF 60%, #FFFFFF 100%);
    --bg-soft-blue: #F0F5FF;
    --bg-section-alt: #F6F9FF;

    --blue-50: #EFF6FF;
    --blue-100: #DBEAFE;
    --blue-200: #BFDBFE;
    --blue-300: #93C5FD;
    --blue-400: #60A5FA;
    --blue-500: #3B82F6;
    --blue-600: #2563EB;
    --blue-700: #1D4ED8;

    --text-dark: #0F172A;
    --text-body: #475569;
    --text-muted: #94A3B8;
    --text-label: #64748B;

    --success: #10B981;
    --danger: #EF4444;
    --orange: #F97316;

    --border: #E2E8F0;
    --border-blue: rgba(59, 130, 246, 0.15);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 9999px;

    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.04);
    --shadow-md: 0 4px 16px rgba(15, 23, 42, 0.06);
    --shadow-lg: 0 8px 32px rgba(15, 23, 42, 0.08);
    --shadow-xl: 0 16px 48px rgba(15, 23, 42, 0.1);
    --shadow-blue: 0 8px 32px rgba(59, 130, 246, 0.15);

    --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --container: 1140px;
    --section-gap: 120px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
    font-family: var(--font);
    background: var(--white);
    color: var(--text-dark);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}
body.nav-open { overflow: hidden; }
img { max-width: 100%; display: block; }
a { text-decoration: none; color: inherit; }
ul { list-style: none; }

/* Container */
.container {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   SECTION LABEL PILLS (substy/gojiberry style)
   ============================================ */
.section-label {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 18px;
    background: var(--blue-50);
    border: 1px solid var(--border-blue);
    border-radius: var(--radius-full);
    font-size: 14px;
    font-weight: 600;
    color: var(--blue-600);
    margin-bottom: 20px;
}

/* ============================================
   SECTION HEADERS
   ============================================ */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-title {
    font-size: 42px;
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--text-dark);
    margin-bottom: 16px;
}

.section-title .highlight {
    color: var(--blue-600);
}

.section-subtitle {
    font-size: 18px;
    color: var(--text-body);
    line-height: 1.7;
}

/* ============================================
   BUTTONS
   ============================================ */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-family: var(--font);
    font-weight: 600;
    border: none;
    cursor: pointer;
    border-radius: var(--radius-full);
    transition: all 0.25s ease;
    white-space: nowrap;
}

.btn-primary {
    background: var(--blue-600);
    color: white;
    box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}
.btn-primary:hover {
    background: var(--blue-700);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 99, 235, 0.35);
}

.btn-outline {
    background: var(--white);
    color: var(--text-dark);
    border: 1.5px solid var(--border);
}
.btn-outline:hover {
    border-color: var(--blue-400);
    color: var(--blue-600);
    background: var(--blue-50);
}

.btn-sm { font-size: 14px; padding: 10px 22px; }
.btn-md { font-size: 15px; padding: 12px 28px; }
.btn-lg { font-size: 16px; padding: 16px 36px; }
.btn-xl { font-size: 17px; padding: 18px 44px; }

/* ============================================
   ANIMATIONS
   ============================================ */
.fade-up {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================
   NAVIGATION
   ============================================ */
.nav {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    padding: 16px 0;
    transition: all 0.3s ease;
}

.nav.scrolled {
    background: rgba(255,255,255, 0.92);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
    box-shadow: var(--shadow-sm);
}

.nav-inner {
    max-width: var(--container);
    margin: 0 auto;
    padding: 0 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo {
    display: flex; align-items: center; gap: 10px;
    font-size: 20px; font-weight: 800;
    color: var(--text-dark);
}

.nav-logo-icon {
    width: 34px; height: 34px;
    background: var(--blue-600);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: white;
}

.nav-logo-icon svg { width: 18px; height: 18px; }

.nav-links {
    display: flex; gap: 36px;
}

.nav-link {
    font-size: 15px; font-weight: 500;
    color: var(--text-body);
    transition: color 0.2s;
}
.nav-link:hover { color: var(--blue-600); }

.nav-actions { display: flex; gap: 12px; align-items: center; }

.mobile-toggle {
    display: none;
    flex-direction: column; gap: 5px;
    background: none; border: none; cursor: pointer; padding: 4px;
}
.mobile-toggle span {
    width: 22px; height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: all 0.3s;
}
.mobile-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.mobile-toggle.active span:nth-child(2) { opacity: 0; }
.mobile-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

/* ============================================
   HERO
   ============================================ */
.hero {
    background: var(--bg-hero);
    padding: 160px 0 100px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.hero-badge {
    display: inline-flex; align-items: center; gap: 8px;
    padding: 8px 20px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-full);
    font-size: 14px; font-weight: 600;
    color: var(--text-body);
    margin-bottom: 28px;
    box-shadow: var(--shadow-sm);
}

.hero-badge .badge-dot {
    width: 8px; height: 8px;
    background: var(--blue-500);
    border-radius: 50%;
    animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(0.8); }
}

.hero-title {
    font-size: 56px;
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: var(--text-dark);
    margin-bottom: 24px;
    max-width: 740px;
    margin-left: auto;
    margin-right: auto;
}

.hero-title .highlight {
    color: var(--blue-600);
}

.hero-sub {
    font-size: 19px;
    color: var(--text-body);
    line-height: 1.7;
    max-width: 560px;
    margin: 0 auto 40px;
}

.hero-ctas {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 48px;
}

.hero-trust {
    display: flex;
    gap: 28px;
    justify-content: center;
    flex-wrap: wrap;
}

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

.hero-trust-item svg {
    width: 16px; height: 16px; color: var(--blue-500);
}

/* Hero Dashboard */
.hero-visual {
    max-width: 900px;
    margin: 64px auto 0;
    position: relative;
}

.hero-dash {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    overflow: hidden;
}

.hero-dash-bar {
    display: flex; align-items: center; gap: 8px;
    padding: 14px 20px;
    border-bottom: 1px solid var(--border);
    background: var(--bg);
}
.hero-dash-bar .dot { width: 10px; height: 10px; border-radius: 50%; }
.hero-dash-bar .dot-r { background: #FCA5A5; }
.hero-dash-bar .dot-y { background: #FDE68A; }
.hero-dash-bar .dot-g { background: #86EFAC; }
.hero-dash-bar .bar-title {
    font-size: 13px; color: var(--text-muted); font-weight: 500; margin-left: 8px;
}

.hero-dash-body {
    padding: 28px;
}

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

.dash-stat {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 18px 16px;
    text-align: center;
}

.dash-stat-val {
    font-size: 28px; font-weight: 800; color: var(--text-dark);
    margin-bottom: 2px;
}

.dash-stat.featured .dash-stat-val { color: var(--blue-600); }

.dash-stat-label {
    font-size: 12px; color: var(--text-muted); font-weight: 500;
    text-transform: uppercase; letter-spacing: 0.04em;
}

.dash-chart {
    display: flex;
    align-items: flex-end;
    gap: 10px;
    height: 100px;
    padding: 20px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
}

.dash-chart-bar {
    flex: 1;
    border-radius: 6px 6px 0 0;
    background: var(--blue-500);
    opacity: 0.7;
    transition: opacity 0.2s, height 1s ease;
    height: 0;
}

.dash-chart-bar:hover { opacity: 1; }
.dash-chart-bar.animated { height: var(--h); }

/* Floating notification */
.hero-float-notif {
    position: absolute;
    bottom: 40px;
    left: -40px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 14px 20px;
    box-shadow: var(--shadow-lg);
    display: flex; align-items: center; gap: 12px;
    animation: float-notif 4s ease-in-out infinite;
    z-index: 2;
}

@keyframes float-notif {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.notif-icon {
    width: 36px; height: 36px;
    background: var(--blue-50);
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
    color: var(--blue-600);
}

.notif-text { font-size: 13px; font-weight: 600; color: var(--text-dark); }
.notif-sub { font-size: 11px; color: var(--text-muted); font-weight: 400; }

/* ============================================
   PROOF STRIP
   ============================================ */
.proof-strip {
    padding: 48px 0;
    background: var(--white);
    border-bottom: 1px solid var(--border);
}

.proof-inner {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    flex-wrap: wrap;
}

.proof-stat {
    text-align: center;
}

.proof-stat-val {
    font-size: 32px; font-weight: 800; color: var(--blue-600);
}

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

.proof-divider {
    width: 1px; height: 40px; background: var(--border);
}

.proof-note {
    text-align: center;
    font-size: 12px; color: var(--text-muted);
    margin-top: 20px; opacity: 0.7;
}

/* ============================================
   PROBLEM SECTION
   ============================================ */
.problem-section {
    padding: var(--section-gap) 0;
    background: var(--white);
}

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

.problem-card {
    display: flex; align-items: flex-start; gap: 16px;
    padding: 28px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.problem-card:hover {
    border-color: var(--blue-200);
    box-shadow: var(--shadow-md);
    transform: translateY(-2px);
}

.problem-icon {
    width: 44px; height: 44px; min-width: 44px;
    background: #FEF2F2;
    border: 1px solid #FECACA;
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    color: var(--danger);
}
.problem-icon svg { width: 20px; height: 20px; }

.problem-card h3 {
    font-size: 16px; font-weight: 700;
    margin-bottom: 6px; line-height: 1.3;
}

.problem-card p {
    font-size: 14px; color: var(--text-body); line-height: 1.6;
}

.problem-cta-card {
    grid-column: span 2;
    background: var(--blue-50);
    border: 1px solid var(--border-blue);
    text-align: center;
    padding: 40px;
    display: flex; flex-direction: column;
    align-items: center; justify-content: center;
}

.problem-cta-card h3 {
    font-size: 24px; margin-bottom: 8px;
}

.problem-cta-card p {
    font-size: 16px; color: var(--text-body);
    margin-bottom: 20px;
}

/* ============================================
   HOW IT WORKS
   ============================================ */
.hiw-section {
    padding: var(--section-gap) 0;
    background: var(--bg-section-alt);
}

.hiw-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 28px;
}

.hiw-step {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s;
    position: relative;
}

.hiw-step:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.hiw-step-num {
    display: inline-flex;
    width: 44px; height: 44px;
    align-items: center; justify-content: center;
    background: var(--blue-600);
    color: white;
    border-radius: 50%;
    font-size: 18px; font-weight: 800;
    margin-bottom: 24px;
}

.hiw-step-visual {
    margin: 0 -8px 28px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    overflow: hidden;
}

.hiw-step-visual-bar {
    display: flex; gap: 4px; padding: 8px 12px;
    border-bottom: 1px solid var(--border);
}

.hiw-step-visual-bar span {
    width: 7px; height: 7px; border-radius: 50%; background: var(--border);
}

.hiw-step-visual-body { padding: 16px; }

/* Step 1 visual */
.mock-connect-flow {
    display: flex; flex-direction: column;
    align-items: center; gap: 12px; padding: 8px 0;
}
.mock-connect-flow svg { width: 32px; height: 32px; color: var(--text-dark); }
.mock-connect-btn {
    padding: 8px 24px;
    background: var(--blue-600);
    color: white; border-radius: var(--radius-full);
    font-size: 12px; font-weight: 600;
}

/* Step 2 visual */
.mock-target-list { display: flex; flex-direction: column; gap: 6px; }
.mock-target-row {
    display: flex; align-items: center; gap: 8px;
    padding: 8px 10px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--border);
    font-size: 12px; color: var(--text-body);
}
.mock-target-row.selected {
    border-color: var(--blue-400);
    background: var(--blue-50);
}
.mock-target-row.selected::before {
    content: '✓'; color: var(--blue-600); font-weight: 700; font-size: 11px;
}
.mock-target-avatar {
    width: 22px; height: 22px; border-radius: 50%;
    background: var(--blue-100);
}
.mock-target-count {
    margin-left: auto; font-size: 11px; color: var(--text-muted);
}

/* Step 3 visual */
.mock-chat { display: flex; flex-direction: column; gap: 6px; }
.mock-bubble {
    max-width: 80%; padding: 8px 12px;
    border-radius: 10px; font-size: 11px; line-height: 1.4;
}
.mock-bubble-out {
    align-self: flex-end;
    background: var(--blue-600); color: white;
    border-bottom-right-radius: 3px;
}
.mock-bubble-in {
    align-self: flex-start;
    background: var(--bg); color: var(--text-body);
    border: 1px solid var(--border);
    border-bottom-left-radius: 3px;
}
.mock-chat-success {
    text-align: center; font-size: 11px;
    color: var(--success); font-weight: 600;
    padding: 4px 12px;
    background: #ECFDF5;
    border-radius: var(--radius-sm);
    margin-top: 4px;
}

.hiw-step h3 {
    font-size: 20px; font-weight: 700; margin-bottom: 10px;
}

.hiw-step p {
    font-size: 15px; color: var(--text-body); line-height: 1.6;
}

.hiw-cta {
    text-align: center; margin-top: 48px;
}

/* ============================================
   FEATURES
   ============================================ */
.features-section {
    padding: var(--section-gap) 0;
    background: var(--white);
}

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

.feature-card {
    padding: 32px 28px;
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    transition: all 0.3s;
}

.feature-card:hover {
    background: var(--white);
    border-color: var(--blue-200);
    box-shadow: var(--shadow-blue);
    transform: translateY(-4px);
}

.feature-icon {
    width: 48px; height: 48px;
    background: var(--blue-50);
    border: 1px solid var(--border-blue);
    border-radius: var(--radius-md);
    display: flex; align-items: center; justify-content: center;
    color: var(--blue-600);
    margin-bottom: 20px;
}
.feature-icon svg { width: 22px; height: 22px; }

.feature-card h3 {
    font-size: 17px; font-weight: 700; margin-bottom: 8px;
}

.feature-card p {
    font-size: 14px; color: var(--text-body); line-height: 1.7;
}

.feature-tag {
    display: inline-block; margin-top: 14px;
    padding: 4px 12px;
    background: var(--blue-50);
    border: 1px solid var(--border-blue);
    border-radius: var(--radius-full);
    font-size: 12px; color: var(--blue-600); font-weight: 600;
}

/* ============================================
   COMPARISON — Card-based, not a table
   ============================================ */
.comparison-section {
    padding: var(--section-gap) 0;
    background: var(--bg-section-alt);
}

.comparison-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    align-items: stretch;
}

.comp-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    display: flex; flex-direction: column;
    transition: all 0.3s;
}

.comp-card.comp-featured {
    border-color: var(--blue-500);
    box-shadow: var(--shadow-blue);
    position: relative;
    background: linear-gradient(180deg, #F0F5FF 0%, #FFFFFF 40%);
}

.comp-card-badge {
    position: absolute;
    top: -12px; left: 50%; transform: translateX(-50%);
    padding: 4px 16px;
    background: var(--blue-600);
    color: white; border-radius: var(--radius-full);
    font-size: 12px; font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.comp-card-header {
    text-align: center;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--border);
    margin-bottom: 24px;
}

.comp-card-name {
    font-size: 20px; font-weight: 800; margin-bottom: 6px;
}

.comp-card-price {
    font-size: 14px; color: var(--text-body);
}

.comp-card-price strong {
    color: var(--danger);
}

.comp-featured .comp-card-price strong {
    color: var(--blue-600);
}

.comp-rows {
    flex: 1;
    display: flex; flex-direction: column; gap: 14px;
}

.comp-row {
    display: flex; align-items: flex-start; gap: 10px;
    font-size: 14px; color: var(--text-body);
    line-height: 1.5;
}

.comp-check, .comp-x, .comp-meh {
    width: 20px; height: 20px; min-width: 20px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 50%; font-size: 11px; font-weight: 700;
    margin-top: 1px;
}

.comp-check { background: #ECFDF5; color: var(--success); }
.comp-x { background: #FEF2F2; color: var(--danger); }
.comp-meh { background: #FEF9C3; color: var(--orange); }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials-section {
    padding: var(--section-gap) 0;
    background: var(--white);
}

.testimonials-note {
    font-style: italic; opacity: 0.7;
}

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

.testimonial-card {
    background: var(--bg);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 32px 28px;
    display: flex; flex-direction: column;
    transition: all 0.3s;
}

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

.testimonial-card.t-featured {
    border-color: var(--blue-300);
    background: var(--blue-50);
}

.t-stars {
    color: #F59E0B; font-size: 14px;
    margin-bottom: 16px; letter-spacing: 3px;
}

.t-quote {
    font-size: 15px; color: var(--text-dark);
    line-height: 1.7; flex: 1;
    margin-bottom: 24px;
}

.t-author {
    display: flex; align-items: center; gap: 12px;
    padding-top: 16px;
    border-top: 1px solid var(--border);
}

.t-avatar {
    width: 40px; height: 40px;
    border-radius: 50%;
    background: var(--blue-100);
}

/* OnlyFans-style profile avatar */
.t-avatar-wrap {
    position: relative;
    width: 48px; height: 48px;
    flex-shrink: 0;
}

.t-avatar-img {
    width: 48px; height: 48px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #00AFF0;
    box-shadow: 0 0 0 2px rgba(0, 175, 240, 0.15);
}

.t-of-badge {
    position: absolute;
    bottom: -2px;
    right: -2px;
    width: 18px; height: 18px;
    background: #00AFF0;
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    color: white;
    border: 2px solid var(--white);
    box-shadow: 0 1px 3px rgba(0,0,0,0.15);
}

.t-of-badge svg {
    width: 10px; height: 10px;
}

.t-name { font-size: 14px; font-weight: 600; color: #00AFF0; }
.t-role { font-size: 12px; color: var(--text-muted); }

/* ============================================
   PRICING
   ============================================ */
.pricing-section {
    padding: var(--section-gap) 0;
    background: var(--bg-section-alt);
}

.pricing-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    max-width: 780px;
    margin: 0 auto;
}

.price-card {
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    text-align: center;
    position: relative;
    transition: all 0.3s;
}

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

.price-card.price-featured {
    border-color: var(--blue-500);
    box-shadow: var(--shadow-blue);
}

.price-badge {
    position: absolute;
    top: -12px; left: 50%; transform: translateX(-50%);
    padding: 4px 18px;
    background: var(--blue-600); color: white;
    border-radius: var(--radius-full);
    font-size: 12px; font-weight: 700;
    text-transform: uppercase;
}

.price-name {
    font-size: 20px; font-weight: 700; margin-bottom: 16px;
}

.price-amount-wrap {
    display: flex; align-items: baseline;
    justify-content: center; gap: 2px;
    margin-bottom: 8px;
}

.price-dollar { font-size: 24px; font-weight: 700; color: var(--text-body); }
.price-amount {
    font-size: 52px; font-weight: 900; color: var(--blue-600);
    line-height: 1;
}
.price-period { font-size: 16px; color: var(--text-muted); }
.price-custom-txt { font-size: 32px; font-weight: 900; color: var(--blue-600); }

.price-trial {
    font-size: 14px; color: var(--blue-600); font-weight: 500;
    margin-bottom: 28px;
}

.price-features {
    text-align: left; margin-bottom: 32px;
}

.price-features li {
    display: flex; align-items: center; gap: 10px;
    padding: 10px 0;
    font-size: 14px; color: var(--text-body);
    border-bottom: 1px solid var(--border);
}
.price-features li:last-child { border-bottom: none; }
.price-features li svg { width: 16px; height: 16px; flex-shrink: 0; color: var(--blue-500); }

.price-cta { width: 100%; }

.price-note {
    font-size: 12px; color: var(--text-muted); margin-top: 12px;
}

/* Pricing math */
.pricing-math {
    max-width: 560px; margin: 40px auto 0;
    display: flex; align-items: center; gap: 20px;
    padding: 24px 28px;
    background: var(--white);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    justify-content: center;
    flex-wrap: wrap;
}

.price-math-item {
    text-align: center;
}

.price-math-label {
    font-size: 12px; color: var(--text-muted);
}

.price-math-val {
    font-size: 20px; font-weight: 800;
}

.price-math-val.bad { color: var(--danger); }
.price-math-val.good { color: var(--blue-600); }

.price-math-vs {
    font-size: 14px; color: var(--text-muted); font-weight: 600;
}

/* ============================================
   FAQ
   ============================================ */
.faq-section {
    padding: var(--section-gap) 0;
    background: var(--white);
}

.faq-list {
    max-width: 700px;
    margin: 0 auto;
}

.faq-item {
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    margin-bottom: 10px;
    background: var(--white);
    transition: all 0.3s;
    overflow: hidden;
}

.faq-item:hover { border-color: var(--blue-200); }

.faq-item.open {
    border-color: var(--blue-400);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.08);
}

.faq-q {
    display: flex; align-items: center;
    justify-content: space-between;
    width: 100%; padding: 18px 24px;
    background: none; border: none; cursor: pointer;
    font-family: var(--font);
    font-size: 16px; font-weight: 600;
    color: var(--text-dark); text-align: left; gap: 16px;
}

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

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

.faq-a {
    max-height: 0; overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-a p {
    padding: 0 24px 20px;
    font-size: 15px; color: var(--text-body); line-height: 1.7;
}

/* ============================================
   FINAL CTA
   ============================================ */
.final-cta-section {
    padding: var(--section-gap) 0;
    background: linear-gradient(180deg, var(--bg-section-alt) 0%, var(--blue-50) 100%);
    text-align: center;
}

.final-cta-content {
    max-width: 620px;
    margin: 0 auto;
}

.final-cta-title {
    font-size: 40px; font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.03em;
    margin-bottom: 16px;
}

.final-cta-title .highlight { color: var(--blue-600); }

.final-cta-sub {
    font-size: 18px; color: var(--text-body);
    margin-bottom: 36px;
}

.final-cta-micro {
    font-size: 13px; color: var(--text-muted);
    margin-top: 16px;
}

/* ============================================
   FOOTER
   ============================================ */
.footer {
    padding: 56px 0 36px;
    border-top: 1px solid var(--border);
    background: var(--white);
}

.footer-top {
    display: grid;
    grid-template-columns: 1.2fr 2fr;
    gap: 60px;
    margin-bottom: 40px;
}

.footer-tagline {
    font-size: 14px; color: var(--text-muted);
    margin-top: 14px; line-height: 1.6;
}

.footer-links-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.footer-col h4 {
    font-size: 13px; font-weight: 700;
    color: var(--text-dark);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 14px;
}

.footer-col a {
    display: block;
    font-size: 14px; color: var(--text-muted);
    padding: 4px 0;
    transition: color 0.2s;
}
.footer-col a:hover { color: var(--blue-600); }

.footer-bottom {
    display: flex; justify-content: space-between;
    align-items: center; flex-wrap: wrap; gap: 12px;
    padding-top: 28px;
    border-top: 1px solid var(--border);
}

.footer-bottom p {
    font-size: 13px; color: var(--text-muted);
}

/* ============================================
   RESPONSIVE — TABLET
   ============================================ */
@media (max-width: 1024px) {
    :root { --section-gap: 80px; }

    .hero-title { font-size: 44px; }
    .section-title { font-size: 34px; }

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

    .hiw-steps { grid-template-columns: 1fr; max-width: 440px; margin: 0 auto; }

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

    .comparison-cards { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }

    .testimonials-grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }

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

/* ============================================
   RESPONSIVE — MOBILE
   ============================================ */
@media (max-width: 768px) {
    :root { --section-gap: 64px; }

    .hero { padding: 120px 0 60px; }
    .hero-title { font-size: 34px; }
    .hero-sub { font-size: 16px; }
    .section-title { font-size: 28px; }
    .section-subtitle { font-size: 16px; }
    .final-cta-title { font-size: 28px; }

    .nav-links {
        display: none;
        position: fixed; inset: 0;
        background: rgba(255,255,255, 0.98);
        backdrop-filter: blur(12px);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 28px;
        z-index: 999;
    }
    .nav-links.active { display: flex; }
    .nav-link { font-size: 20px; }
    .mobile-toggle { display: flex; z-index: 1000; }
    .nav-actions .btn { display: none; }

    .hero-ctas { flex-direction: column; align-items: center; }
    .hero-ctas .btn { width: 100%; max-width: 320px; }

    .hero-trust { 
        flex-direction: row; 
        flex-wrap: wrap; 
        justify-content: center; 
        gap: 12px 18px; 
    }
    .hero-trust-item { font-size: 13px; }

    .hero-visual { display: none; }
    
    .proof-strip { display: none; }

    .problem-grid { grid-template-columns: 1fr; }
    .problem-cta-card { grid-column: auto; }

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

    .pricing-cards { grid-template-columns: 1fr; }
    .price-card { padding: 32px 24px; }

    .pricing-math { display: none; }

    .footer-links-grid { grid-template-columns: 1fr; gap: 20px; }
    .footer-bottom { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 28px; }
    .section-title { font-size: 24px; }
    .final-cta-title { font-size: 24px; }
}

::selection { background: rgba(59, 130, 246, 0.2); }
