/* ════════════════════════════════════════
   CSS VARIABLES — BRAND COLORS
════════════════════════════════════════ */
:root {
    --blue-dark: #0B3D91;
    --blue-mid: #1565C0;
    --blue-light: #1E88E5;
    --hero-gradient: linear-gradient(160deg, var(--blue-dark) 0%, var(--blue-light) 100%);
    --navbar-height: 120px;
    --hero-gradient-span: 960px;
    --blue-pale: #E3F2FD;
    --blue-dim: rgba(21,101,192,0.08);
    --blue-border: rgba(21,101,192,0.2);

    --cta: #FFC107;
    --cta-hover: #FFB300;
    --cta-text: #1A2B4A;

    --navy: #1A2B4A;
    --navy-light: #2C3E66;

    --green: #00897B;
    --green-bg: #E8F5E9;
    --green-border: rgba(0,137,123,0.2);
    --green-dim: rgba(0,137,123,0.06);

    --red: #E53935;
    --red-bg: #FFEBEE;
    --red-border: rgba(229,57,53,0.2);

    --orange: #FF6B35;
    --purple: #5E35B1;
    --amber: #F59E0B;

    --white: #FFFFFF;
    --bg: #F8FAFE;
    --bg-alt: #F0F4FA;
    --border: rgba(26,43,74,0.08);
    --border-h: rgba(26,43,74,0.15);

    --t1: #1A2B4A;
    --t2: #4A5568;
    --t3: #718096;
    --t4: #A0AEC0;
    --t5: #CBD5E0;

    --font: 'Inter', system-ui, -apple-system, sans-serif;
    --mono: 'JetBrains Mono', monospace;

    --container-content: 72rem;
    --container-wide: 84rem;
    --section-pad-x: clamp(1rem, 2.5vw, 3rem);
    --section-pad-y: clamp(3rem, 6vw, 5.25rem);

    --fs-body: clamp(1rem, 0.22vw + 0.95rem, 1.125rem);
    --fs-h1: clamp(2.1rem, 4.4vw, 4.25rem);
    --fs-h2: clamp(1.75rem, 2.4vw + 1.2rem, 3rem);
    --fs-h3: clamp(1.2rem, 0.7vw + 1.05rem, 1.55rem);
    --fs-lead: clamp(1.06rem, 0.55vw + 0.95rem, 1.34rem);
    --fs-content: clamp(1rem, 0.25vw + 0.95rem, 1.12rem);
    --fs-meta: clamp(0.9rem, 0.16vw + 0.86rem, 1rem);
    --fs-small: clamp(0.87rem, 0.2vw + 0.82rem, 0.98rem);
}

/* ════════════════════════════════════════
   RESET & BASE
════════════════════════════════════════ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
    font-family: var(--font);
    font-size: var(--fs-body);
    color: var(--t1);
    background: var(--white);
    line-height: 1.65;
    overflow-x: hidden;
}
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
button { border: none; cursor: pointer; font-family: inherit; }

/* ════════════════════════════════════════
   UTILITIES
════════════════════════════════════════ */
.container { max-width: var(--container-content); margin: 0 auto; padding: 0 var(--section-pad-x); }
.section-tag {
    font-size: var(--fs-meta); font-weight: 700; text-transform: uppercase;
    letter-spacing: 1.2px; margin-bottom: 8px;
}
.section-title {
    font-size: var(--fs-h2); font-weight: 800; color: var(--navy);
    line-height: 1.2; letter-spacing: -0.5px; margin-bottom: 8px;
}
.section-sub {
    font-size: var(--fs-lead);
    color: var(--t3);
    line-height: 1.7;
    max-inline-size: 66ch;
    margin: 0 auto 24px;
}

.btn-cta {
    display: inline-block; padding: 14px 28px; border-radius: 8px;
    font-size: clamp(0.95rem, 0.3vw + 0.88rem, 1.05rem); font-weight: 700; text-align: center;
    background: var(--cta); color: var(--cta-text);
    box-shadow: 0 2px 12px rgba(255,193,7,0.3);
    transition: background 0.2s, transform 0.2s;
}
.btn-cta:hover { background: var(--cta-hover); transform: translateY(-1px); }
.btn-secondary {
    display: inline-block; padding: 13px 24px; border-radius: 8px;
    font-size: clamp(0.88rem, 0.2vw + 0.84rem, 0.98rem); font-weight: 600; text-align: center;
    border: 1.5px solid var(--border-h); color: var(--t2);
    background: var(--white); transition: border-color 0.2s;
}
.btn-secondary:hover { border-color: var(--blue-mid); color: var(--blue-mid); }
.btn-ghost {
    display: inline-block; padding: 13px 24px; border-radius: 8px;
    font-size: clamp(0.88rem, 0.2vw + 0.84rem, 0.98rem); font-weight: 600; text-align: center;
    border: 1.5px solid rgba(255,255,255,0.3); color: var(--white);
    transition: border-color 0.2s, background 0.2s;
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.5); }

/* ════════════════════════════════════════
   00. NAVBAR
════════════════════════════════════════ */
.navbar {
    position: relative;
    z-index: 10;
    background: transparent;
    padding: 0;
    border-bottom: none;
}
.navbar-inner {
    max-width: var(--container-wide); margin: 0 auto;
    display: flex; justify-content: space-between; align-items: center;
    min-height: 118px;
}
.navbar-logo {
    display: flex; align-items: center; gap: 8px;
}
.navbar-logo img {
    height: 160px;
    width: auto;
    margin: -18px 0 -14px;
    transform: translateY(-4px);
}
.navbar-logo span { font-size: 15px; font-weight: 800; color: var(--white); }

.navbar-links { display: none; align-items: center; gap: 28px; }
.navbar-links a { font-size: 15px; color: rgba(255,255,255,0.92); font-weight: 600; transition: color 0.2s; }
.navbar-links a:hover { color: var(--white); }

.navbar-actions { display: flex; align-items: center; gap: 14px; }
.navbar-login { display: none; font-size: 15px; color: rgba(255,255,255,0.92); font-weight: 600; }
.navbar-cta { padding: 14px 30px; font-size: 15px; border-radius: 999px; }

.hamburger {
    display: flex; flex-direction: column; gap: 5px;
    background: none; padding: 8px;
}
.hamburger span {
    display: block; width: 22px; height: 2px;
    background: var(--white); border-radius: 2px;
    transition: transform 0.3s, opacity 0.3s;
}
.hamburger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

.mobile-menu {
    display: none; position: absolute; top: 100%; left: 0; right: 0;
    background: rgba(11,61,145,0.98);
    backdrop-filter: blur(8px);
    padding: 8px 0;
    border-bottom: 1px solid rgba(255,255,255,0.08);
}
.mobile-menu.active { display: block; }
.mobile-menu a {
    display: block; padding: 14px 24px; font-size: 14px;
    color: rgba(255,255,255,0.8); font-weight: 500;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}
.mobile-menu a:last-child { border-bottom: none; color: var(--cta); font-weight: 600; }

/* ════════════════════════════════════════
   01. HERO
════════════════════════════════════════ */
.hero {
    background-image: var(--hero-gradient);
    background-size: 100% var(--hero-gradient-span);
    background-position: 0 0;
    background-repeat: no-repeat;
    padding: 0 var(--section-pad-x) 0;
    text-align: center;
    position: relative;
}
.hero-badge {
    display: inline-block; background: rgba(255,255,255,0.12);
    border: 1px solid rgba(255,255,255,0.2); border-radius: 20px;
    padding: 5px 14px; font-size: var(--fs-meta); font-weight: 600;
    color: var(--white); margin-bottom: 20px;
}
.hero h1 {
    font-size: var(--fs-h1); font-weight: 900; color: var(--white);
    line-height: 1.12; letter-spacing: -0.8px; margin-bottom: 16px;
}
.hero-sub {
    font-size: var(--fs-lead); color: rgba(255,255,255,0.8);
    line-height: 1.7; max-width: 66ch; margin: 0 0 24px;
}
.hero-buttons {
    display: flex;
    flex-direction: column;
    gap: 10px;
    align-items: flex-start;
    margin-bottom: 20px;
}
.hero-trust {
    display: flex; justify-content: flex-start; gap: 16px;
    flex-wrap: wrap;
    width: 100%;
    text-align: left;
    font-size: var(--fs-small); color: rgba(255,255,255,0.55); padding-bottom: 20px;
}
.hero-grid {
    display: block;
    max-width: var(--container-content);
    margin: 0 auto;
    padding: clamp(2.25rem, 4vw, 4.2rem) 0 0;
}
.hero-copy {
    text-align: left;
}
.hero-dashboard {
    background: var(--white); border-radius: 14px; padding: 16px;
    box-shadow: 0 20px 60px rgba(0,0,0,0.2); text-align: left;
}
.hero-dashboard-header {
    display: flex; align-items: center; gap: 8px; margin-bottom: 14px;
}
.hero-dashboard-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--green); }
.hero-dashboard-label { font-size: var(--fs-meta); font-weight: 700; color: var(--navy); }
.hero-dashboard-kicker { font-size: clamp(0.68rem, 0.2vw + 0.64rem, 0.8rem); color: var(--t4); margin-left: auto; }
.hero-stats-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 8px; margin-bottom: 10px; }
.hero-stat-card {
    background: var(--bg); border-radius: 8px; padding: 10px 12px;
}
.hero-stat-card small { font-size: var(--fs-meta); color: var(--t4); }
.hero-stat-card .val { font-size: 22px; font-weight: 800; line-height: 1.2; }
.hero-stat-card .sub { font-size: 9px; color: var(--green); }
.hero-rating-label { font-size: clamp(0.68rem, 0.2vw + 0.64rem, 0.8rem); color: var(--t4); }
.hero-rating-value { font-size: clamp(0.78rem, 0.25vw + 0.72rem, 0.95rem); font-weight: 700; color: var(--navy); }

/* Wave */
.wave-divider { width: 100%; overflow: hidden; line-height: 0; }
.wave-divider svg { display: block; width: 100%; height: 40px; }

.section-wave { width: 100%; overflow: hidden; line-height: 0; }
.section-wave svg { display: block; width: 100%; height: 40px; }
.section-wave path { fill: var(--wave-color, var(--white)); }
.section-wave.wave-bg { --wave-color: var(--bg); }
.section-wave.wave-white { --wave-color: var(--white); }
.section-wave.wave-blue { --wave-color: var(--blue-dark); }
.section-wave.wave-navy { --wave-color: var(--navy); }
.section-wave.wave-cta { --wave-color: var(--blue-dark); }

/* ════════════════════════════════════════
   02. SOCIAL PROOF BAR
════════════════════════════════════════ */
.social-bar {
    background: var(--bg); padding: 16px var(--section-pad-x);
    border-bottom: 1px solid var(--border);
}
.social-bar-inner {
    display: flex; justify-content: space-around; max-width: 700px; margin: 0 auto;
}
.social-bar-item { text-align: center; }
.social-bar-item .num { font-size: clamp(1.2rem, 1.2vw + 0.9rem, 1.8rem); font-weight: 800; color: var(--blue-mid); }
.social-bar-item .label { font-size: var(--fs-small); color: var(--t4); margin-top: 2px; }

/* ════════════════════════════════════════
   03. PAIN vs SOLUTION
════════════════════════════════════════ */
.pain-solution { padding: var(--section-pad-y) var(--section-pad-x); }
.pain-solution .section-title,
.pain-solution .section-sub { text-align: center; }
.ps-grid { display: flex; flex-direction: column; gap: 16px; }
.ps-card {
    border-radius: 12px; padding: 20px 18px;
}
.ps-card--pain { background: var(--red-bg); border-left: 4px solid var(--red); }
.ps-card--solution { background: var(--green-bg); border-left: 4px solid var(--green); }
.ps-card-header { display: flex; align-items: center; gap: 10px; margin-bottom: 14px; }
.ps-card-icon {
    width: 32px; height: 32px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center; font-size: 14px;
}
.ps-card--pain .ps-card-icon { background: rgba(229,57,53,0.12); }
.ps-card--solution .ps-card-icon { background: rgba(0,137,123,0.12); }
.ps-card-label { font-size: var(--fs-content); font-weight: 700; }
.ps-card--pain .ps-card-label { color: var(--red); }
.ps-card--solution .ps-card-label { color: var(--green); }
.ps-card-sublabel { font-size: var(--fs-meta); color: var(--t3); }
.ps-item {
    display: flex; gap: 8px; align-items: flex-start;
    padding: 8px 10px; border-radius: 8px; margin-bottom: 6px;
    font-size: var(--fs-content); color: var(--t2);
}
.ps-card--pain .ps-item { background: rgba(229,57,53,0.05); }
.ps-card--solution .ps-item { background: rgba(0,137,123,0.05); }
.ps-item-icon { flex-shrink: 0; margin-top: 2px; font-weight: 700; }
.ps-card--pain .ps-item-icon { color: var(--red); }
.ps-card--solution .ps-item-icon { color: var(--green); }
.ps-item-title { font-size: var(--fs-content); font-weight: 600; color: var(--navy); }
.ps-item-desc { font-size: clamp(0.92rem, 0.18vw + 0.88rem, 1rem); color: var(--t3); margin-top: 1px; }

/* ════════════════════════════════════════
   04. FEATURES
════════════════════════════════════════ */
.features { padding: var(--section-pad-y) var(--section-pad-x); background: var(--bg); }
.features-tabs-wrapper {
    position: relative;
    margin-bottom: 16px;
}
/* Right fade — disappears when fully scrolled */
.features-tabs-wrapper::after {
    content: '';
    position: absolute;
    right: 0; top: 0;
    height: calc(100% - 18px); /* above dot row */
    width: 56px;
    background: linear-gradient(to right, transparent, var(--bg));
    pointer-events: none;
    z-index: 2;
    transition: opacity 0.25s;
}
.features-tabs-wrapper.ftw-at-end::after { opacity: 0; }
.features-tabs {
    display: flex; gap: 6px; overflow-x: auto;
    padding-bottom: 8px;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.features-tabs::-webkit-scrollbar { display: none; }
/* Dot progress indicators — mobile only */
.features-tabs-dots {
    display: flex;
    justify-content: center;
    gap: 5px;
    padding-top: 4px;
}
.ftd {
    height: 5px; width: 5px;
    border-radius: 999px;
    background: var(--border);
    transition: width 0.25s, background 0.25s;
    flex-shrink: 0;
}
.ftd.active {
    width: 18px;
    background: var(--blue-mid);
}
.feature-tab {
    flex-shrink: 0; padding: 9px 16px; border-radius: 8px;
    background: var(--white); border: 1px solid var(--border);
    font-size: var(--fs-meta); font-weight: 600; color: var(--t3);
    cursor: pointer; transition: all 0.2s; white-space: nowrap;
}
.feature-tab.active {
    background: var(--blue-dim); border-color: var(--blue-border);
    color: var(--blue-mid);
}
.feature-panel { display: none; }
.feature-panel.active { display: block; }
.feature-card {
    background: var(--white); border-radius: 14px;
    border: 1px solid var(--border); overflow: hidden;
}
.feature-card-preview {
    position: relative;
    height: 160px;
    overflow: hidden;
    background: var(--bg-alt);
}
.feature-card-preview::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: var(--preview-bg);
    background-size: cover;
    background-position: center;
    filter: blur(10px);
    opacity: 0.35;
    transform: scale(1.12);
    z-index: 0;
}
.feature-card-preview img {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
}
.feature-card-body { padding: 18px 20px; }
.feature-card-title { font-size: var(--fs-h3); font-weight: 700; color: var(--navy); margin-bottom: 6px; }
.feature-card-desc { font-size: var(--fs-content); color: var(--t3); line-height: 1.7; }

/* ════════════════════════════════════════
   05. TIMELINE
════════════════════════════════════════ */
.timeline { padding: var(--section-pad-y) var(--section-pad-x); }
.timeline-items { display: flex; flex-direction: column; gap: 0; }
.timeline-item { position: relative; padding-left: 32px; padding-bottom: 24px; }
.timeline-item:last-child { padding-bottom: 0; }
.timeline-line {
    position: absolute; left: 9px; top: 22px; bottom: 0; width: 2px;
    background: var(--border);
}
.timeline-item:last-child .timeline-line { display: none; }
.timeline-dot {
    position: absolute; left: 2px; top: 4px; width: 16px; height: 16px;
    border-radius: 50%; display: flex; align-items: center; justify-content: center;
}
.timeline-dot::after {
    content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--white);
}
.timeline-phase { font-size: var(--fs-meta); font-weight: 700; margin-bottom: 4px; }
.timeline-title { font-size: var(--fs-h3); font-weight: 700; color: var(--navy); margin-bottom: 8px; }
.timeline-list { font-size: var(--fs-content); color: var(--t3); line-height: 1.7; }
.timeline-list li { margin-bottom: 4px; list-style: none; }
.timeline-list li::before { content: '✓ '; color: inherit; }

/* ════════════════════════════════════════
   06. TESTIMONIALS
════════════════════════════════════════ */
.testimonials { padding: var(--section-pad-y) var(--section-pad-x); background: var(--bg); }
.testimonials-main { max-width: 52rem; margin: 0 auto; }
.testimonial-card {
    background: var(--white); border-radius: 16px;
    border: 1px solid var(--border); padding: 22px 20px;
}
.testimonial-header { display: flex; gap: 18px; align-items: center; margin-bottom: 20px; }
.testimonial-avatar {
    width: 144px; height: 144px; border-radius: 18px;
    overflow: hidden; background: var(--blue-pale);
    display: flex; align-items: center; justify-content: center;
}
.testimonial-avatar img { width: 100%; height: 100%; object-fit: cover; }

@media (max-width: 640px) {
    .testimonial-header {
        flex-direction: column;
        text-align: center;
        align-items: center;
    }
}
.testimonial-name { font-size: 14px; font-weight: 700; color: var(--navy); }
.testimonial-role { font-size: var(--fs-meta); color: var(--t3); }
.testimonial-quote {
    font-size: var(--fs-content); color: var(--t2); line-height: 1.8;
    font-style: italic; margin-bottom: 16px;
}
.testimonial-metrics { display: flex; gap: 8px; flex-wrap: wrap; }
.testimonial-metric {
    padding: 5px 12px; border-radius: 6px;
    font-size: var(--fs-meta); font-weight: 600;
}
.testimonial-dots { display: flex; justify-content: center; gap: 6px; margin-top: 14px; }
.testimonial-dot { width: 8px; height: 4px; border-radius: 2px; background: var(--t5); }
.testimonial-dot.active { width: 20px; background: var(--blue-mid); }

.testimonials-side { display: none; }

/* ════════════════════════════════════════
   07. STEPS
════════════════════════════════════════ */
.steps { padding: var(--section-pad-y) var(--section-pad-x); }
.steps-list { display: flex; flex-direction: column; gap: 0; }
.step-item {
    display: flex; gap: 16px; padding: 16px 0;
    border-bottom: 1px solid var(--border);
}
.step-item:last-child { border-bottom: none; }
.step-icon {
    width: 44px; height: 44px; border-radius: 12px; flex-shrink: 0;
    background: var(--blue-pale); border: 1px solid var(--blue-border);
    display: flex; align-items: center; justify-content: center; font-size: 20px;
}
.step-num { font-size: var(--fs-meta); font-weight: 800; color: var(--blue-mid); margin-bottom: 4px; }
.step-title { font-size: var(--fs-h3); font-weight: 700; color: var(--navy); margin-bottom: 2px; }
.step-desc { font-size: var(--fs-content); color: var(--t3); line-height: 1.7; }

/* ════════════════════════════════════════
   08. PRICING
════════════════════════════════════════ */
.pricing { padding: var(--section-pad-y) var(--section-pad-x); background: var(--bg); }
.pricing .section-title,
.pricing .section-sub { text-align: center; }
.founder-availability {
    max-width: 680px;
    margin: -6px auto 22px;
    background: var(--white);
    border: 1px solid var(--blue-border);
    border-radius: 14px;
    padding: 10px 14px;
    box-shadow: 0 8px 22px rgba(30,64,175,0.06);
}
.founder-availability-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    margin-bottom: 8px;
}
.founder-availability-label {
    font-size: var(--fs-meta);
    font-weight: 600;
    color: var(--t3);
}
.founder-availability-count {
    font-size: var(--fs-content);
    font-weight: 800;
    color: var(--blue-dark);
}
.founder-availability-bar {
    width: 100%;
    height: 8px;
    border-radius: 999px;
    background: #E7EDF9;
    overflow: hidden;
}
.founder-availability-bar span {
    display: block;
    height: 100%;
    background: linear-gradient(90deg, #1E3A8A 0%, #3B82F6 100%);
    border-radius: 999px;
}
.pricing-grid { display: flex; flex-direction: column; gap: 20px; }
.pricing-card {
    background: var(--white); border-radius: 18px;
    border: 2px solid var(--cta); overflow: hidden;
    box-shadow: 0 8px 30px rgba(255,193,7,0.1);
}
.pricing-badge {
    background: var(--cta); padding: 10px 0; text-align: center;
    font-size: var(--fs-meta); font-weight: 800; color: var(--cta-text);
}
.pricing-body { padding: 24px 20px; }
.pricing-price { text-align: center; margin-bottom: 20px; }
.pricing-amount { font-size: clamp(2rem, 2vw + 1.5rem, 2.8rem); font-weight: 900; color: var(--navy); }
.pricing-period { font-size: var(--fs-content); color: var(--t3); font-weight: 400; }
.pricing-old { font-size: var(--fs-meta); color: var(--t4); text-decoration: line-through; margin-top: 4px; }
.pricing-features { display: flex; flex-direction: column; gap: 8px; margin-bottom: 24px; }
.pricing-feature {
    display: flex; gap: 8px; align-items: center; font-size: var(--fs-content); color: var(--t2);
}
.pricing-check {
    width: 20px; height: 20px; border-radius: 50%;
    background: var(--green-bg); display: flex;
    align-items: center; justify-content: center;
    font-size: var(--fs-meta); color: var(--green); flex-shrink: 0;
}
.pricing-cta { display: block; width: 100%; padding: 14px; }
.pricing-more-hook {
    font-size: var(--fs-meta);
    font-weight: 700;
    color: var(--blue-dark);
    text-align: center;
    margin: -4px 0 14px;
}
.pricing-note { text-align: center; font-size: var(--fs-meta); color: var(--t4); margin-top: 10px; }

.guarantees { display: flex; flex-direction: column; gap: 8px; }
.guarantee {
    display: flex; gap: 12px; align-items: center;
    padding: 12px 16px; background: var(--white);
    border-radius: 12px; border: 1px solid var(--border);
}
.guarantee-icon { font-size: 20px; flex-shrink: 0; }
.guarantee-title { font-size: var(--fs-content); font-weight: 600; color: var(--navy); }
.guarantee-desc { font-size: clamp(0.9rem, 0.16vw + 0.87rem, 0.98rem); color: var(--t4); margin-top: 2px; }

/* ════════════════════════════════════════
   09. FAQ
════════════════════════════════════════ */
.faq { padding: var(--section-pad-y) var(--section-pad-x); }
.faq .section-title { text-align: center; }
.faq-list { max-width: 720px; margin: 0 auto; display: flex; flex-direction: column; gap: 6px; }
.faq-item {
    background: var(--bg); border-radius: 12px;
    border: 1px solid var(--border); overflow: hidden;
    transition: border-color 0.2s;
}
.faq-item.active { border-color: var(--blue-border); }
.faq-question {
    display: flex; justify-content: space-between; align-items: center;
    padding: 16px 20px; cursor: pointer; width: 100%;
    background: none; font-size: var(--fs-content); font-weight: 600;
    color: var(--navy); text-align: left;
}
.faq-item.active .faq-question { color: var(--blue-mid); }
.faq-icon {
    font-size: 20px; color: var(--t4); transition: transform 0.3s;
    flex-shrink: 0; margin-left: 12px;
}
.faq-item.active .faq-icon { transform: rotate(45deg); }
.faq-answer {
    display: none; padding: 0 20px 16px;
    font-size: var(--fs-content); color: var(--t3); line-height: 1.75;
}
.faq-item.active .faq-answer { display: block; }

/* ════════════════════════════════════════
   10. BLOG
════════════════════════════════════════ */
.blog { padding: var(--section-pad-y) var(--section-pad-x); background: var(--bg); }
.blog-header { display: flex; justify-content: space-between; align-items: flex-end; margin-bottom: 20px; }
.blog-link { font-size: var(--fs-content); color: var(--blue-mid); font-weight: 600; }
.blog-grid {
    display: flex; gap: 12px; overflow-x: auto;
    padding-bottom: 8px; -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
}
.blog-grid::-webkit-scrollbar { display: none; }
.blog-card {
    flex-shrink: 0; width: 260px; background: var(--white);
    border-radius: 14px; border: 1px solid var(--border);
    overflow: hidden; transition: transform 0.2s, box-shadow 0.2s;
}
.blog-card:hover { transform: translateY(-2px); box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.blog-card-img { height: 110px; background-size: cover; background-position: center; background-repeat: no-repeat; }
.blog-card-body { padding: 16px 18px; }
.blog-tag {
    display: inline-block; padding: 3px 8px; border-radius: 4px;
    font-size: var(--fs-meta); font-weight: 600; margin-bottom: 8px;
}
.blog-card-title { font-size: var(--fs-content); font-weight: 600; color: var(--navy); line-height: 1.5; }
.blog-card-meta { font-size: var(--fs-meta); color: var(--t4); margin-top: 8px; }

/* ════════════════════════════════════════
   11. CTA FINAL
════════════════════════════════════════ */
.cta-final {
    padding: var(--section-pad-y) var(--section-pad-x);
    background: linear-gradient(160deg, var(--blue-dark), var(--blue-light));
    text-align: center;
}
.cta-final h2 { font-size: var(--fs-h2); font-weight: 800; color: var(--white); margin-bottom: 8px; }
.cta-final p { font-size: var(--fs-content); color: rgba(255,255,255,0.75); margin-bottom: 24px; line-height: 1.7; }
.cta-final-buttons { display: flex; flex-direction: column; gap: 10px; align-items: center; }
.cta-final .btn-cta { width: 100%; max-width: 320px; }

/* ════════════════════════════════════════
   12. FOOTER
════════════════════════════════════════ */
.site-footer { background: var(--navy); padding: 40px var(--section-pad-x) 28px; }
.footer-logo {
    display: inline-flex;
    align-items: center;
    margin-bottom: 22px;
}
.footer-logo img {
    height: 222px;
    width: auto;
}
.footer-logo-desktop { display: none; }
.footer-accordion { border-bottom: 1px solid rgba(255,255,255,0.08); }
.footer-accordion-btn {
    display: flex; justify-content: space-between; align-items: center;
    padding: 14px 0; width: 100%; background: none;
    font-size: var(--fs-content); font-weight: 600; color: rgba(255,255,255,0.78);
    text-align: left;
}
.footer-accordion-icon {
    font-size: var(--fs-content); color: rgba(255,255,255,0.3);
    transition: transform 0.3s;
}
.footer-accordion.active .footer-accordion-icon { transform: rotate(45deg); }
.footer-links { display: none; padding-bottom: 12px; }
.footer-accordion.active .footer-links { display: block; }
.footer-links a {
    display: block; padding: 6px 0 6px 12px;
    font-size: var(--fs-meta); color: rgba(255,255,255,0.58);
    line-height: 1.7;
}
.footer-links a:hover { color: rgba(255,255,255,0.7); }
.footer-social {
    display: flex;
    justify-content: center;
    margin-top: 22px;
}
.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(255,255,255,0.12);
    color: var(--white);
    transition: transform 0.2s, background 0.2s;
}
.footer-social-link:hover {
    background: rgba(255,255,255,0.2);
    transform: translateY(-2px);
}
.footer-social-link svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}
.footer-bottom {
    text-align: center; padding-top: 20px; margin-top: 20px;
    border-top: 1px solid rgba(255,255,255,0.06);
    font-size: var(--fs-meta); color: rgba(255,255,255,0.42);
    line-height: 1.7;
}
.footer-grid { display: none; }

/* Floating WhatsApp */
.whatsapp-float {
    position: fixed; bottom: 20px; right: 20px; z-index: 99;
    width: 56px; height: 56px; border-radius: 50%;
    background: #25D366; display: flex; align-items: center;
    justify-content: center; box-shadow: 0 4px 16px rgba(0,0,0,0.2);
    transition: transform 0.2s;
}
.whatsapp-float:hover { transform: scale(1.08); }
.whatsapp-float svg { width: 28px; height: 28px; fill: white; }

/* ════════════════════════════════════════
   DESKTOP BREAKPOINTS (1025px+)
════════════════════════════════════════ */
@media (min-width: 480px) {
    .hero-buttons {
        flex-direction: row;
        justify-content: flex-start;
        flex-wrap: wrap;
    }
    .social-bar-inner {
        max-width: 52rem;
        gap: clamp(1rem, 3vw, 2.2rem);
    }
}

@media (min-width: 768px) {
    .ps-grid { flex-direction: row; gap: 20px; }
    .ps-card { flex: 1; }
    .timeline-items { flex-direction: row; gap: 20px; position: relative; }
    .timeline-item { padding-left: 0; padding-bottom: 0; flex: 1; }
    .timeline-line { display: none !important; }
    .timeline-dot {
        position: relative; left: auto; top: auto;
        margin-bottom: 12px;
    }
    .timeline-item {
        background: var(--white); border-radius: 14px;
        border: 1px solid var(--border); padding: 22px 20px;
    }
    .steps-list { flex-direction: row; gap: 20px; }
    .step-item {
        flex: 1; flex-direction: column; text-align: center;
        padding: 24px 20px; border-bottom: none;
        background: var(--white); border-radius: 14px;
        border: 1px solid var(--border);
    }
    .step-icon { margin: 0 auto 12px; width: 56px; height: 56px; font-size: 24px; }
    .blog-grid { display: grid; grid-template-columns: 1fr 1fr 1fr; overflow: visible; }
    .blog-card { width: auto; }
    .cta-final-buttons { flex-direction: row; justify-content: center; }
    .cta-final .btn-cta { width: auto; }
}

@media (min-width: 1025px) {
    .section-wave.wave-cta { --wave-color: var(--white); }

    .hamburger { display: none; }
    .navbar-links { display: flex; gap: clamp(1.5rem, 2vw, 2.75rem); }
    .navbar-login { display: block; }
    .navbar-inner { min-height: 124px; }
    .navbar-logo img {
        height: 220px;
        margin: -42px 0 -34px;
        transform: translateY(-10px);
    }
    .navbar-links a,
    .navbar-login { font-size: 16px; }
    .navbar-actions { gap: 18px; }
    .navbar-cta { padding: 16px 36px; font-size: 16px; }

    .hero {
        text-align: left;
    }
    .hero-grid {
        display: grid; grid-template-columns: 1.1fr 0.9fr;
        gap: clamp(2rem, 4vw, 4.5rem); align-items: center;
        max-width: var(--container-wide); margin: 0 auto;
    }
    .hero-buttons { flex-direction: row; }
    .hero-trust { justify-content: flex-start; }
    .hero-dashboard { margin-bottom: -20px; position: relative; z-index: 2; }

    .social-bar-inner { gap: 56px; }
    .social-bar-item .num { font-size: clamp(1.35rem, 1.3vw + 0.95rem, 2rem); }

    .pain-solution, .features, .timeline, .testimonials,
    .steps, .pricing, .faq, .blog, .cta-final { padding: var(--section-pad-y) var(--section-pad-x); }

    .features-tabs { justify-content: center; overflow: visible; flex-wrap: wrap; padding-bottom: 12px; }
    .features-tabs-dots { display: none; }
    .features-tabs-wrapper::after { display: none; }
    .feature-card { display: grid; grid-template-columns: 1fr 1.4fr; }
    .feature-card-preview { height: 100%; min-height: 240px; }

    .testimonials-main { display: block; max-width: 56rem; margin: 0 auto; }
    .testimonials-side { display: flex; flex-direction: column; gap: 12px; }
    .testimonial-dots { display: none; }

    .pricing-grid {
        flex-direction: row; gap: 24px;
        max-width: 68rem; margin: 0 auto;
    }
    .founder-availability {
        padding: 12px 16px;
        margin-bottom: 24px;
    }
    .founder-availability-label { font-size: var(--fs-meta); }
    .founder-availability-count { font-size: var(--fs-content); }
    .pricing-card { flex: 1.3; }
    .guarantees-col { flex: 1; }
    .pricing-features { display: grid; grid-template-columns: 1fr 1fr; }

    .cta-final {
        padding: var(--section-pad-y) var(--section-pad-x);
    }
    .cta-final-inner {
        background: linear-gradient(160deg, var(--blue-dark), var(--blue-light));
        border-radius: 20px; padding: 56px 40px;
    }
    .cta-final { background: var(--white); }

    /* Footer desktop */
    .footer-accordion { display: none; }
    .footer-logo-mobile { display: none; }
    .footer-logo-desktop { display: inline-flex; margin-bottom: 14px; }
    .footer-grid {
        display: grid; grid-template-columns: 1.5fr 1fr 1fr 1fr 1fr;
        gap: 32px; margin-bottom: 24px;
    }
    .footer-grid-title { font-size: var(--fs-content); font-weight: 700; color: rgba(255,255,255,0.72); margin-bottom: 14px; }
    .footer-grid a {
        display: block; font-size: var(--fs-meta); color: rgba(255,255,255,0.58);
        margin-bottom: 8px;
    }
    .footer-grid a:hover { color: rgba(255,255,255,0.7); }
    .footer-desc { font-size: var(--fs-content); color: rgba(255,255,255,0.48); line-height: 1.8; max-width: 34ch; margin-top: 10px; }
    .footer-social { justify-content: flex-start; }
    .footer-bottom { display: flex; justify-content: space-between; text-align: left; }
}

@media (min-width: 1280px) {
    :root {
        --container-content: 78rem;
        --container-wide: 92rem;
        --section-pad-x: clamp(2rem, 3vw, 4rem);
    }

    .navbar-inner { min-height: 132px; }
    .navbar-logo img {
        height: 250px;
        margin: 0px 0 -40px;
        transform: translateY(-12px);
    }
    .hero-dashboard { padding: 20px; border-radius: 16px; }
    .hero-stat-card .val { font-size: clamp(1.6rem, 1.1vw + 1.1rem, 2.1rem); }
    .feature-card-preview { min-height: 280px; }
}

@media (min-width: 1536px) {
    :root {
        --container-content: 84rem;
        --container-wide: 102rem;
        --section-pad-x: clamp(2.25rem, 3.3vw, 5rem);
        --section-pad-y: clamp(3.5rem, 5vw, 6rem);
        --fs-h1: clamp(2.8rem, 3.4vw, 4.6rem);
        --fs-h2: clamp(2.1rem, 2vw, 3.2rem);
    }

    .social-bar-inner { max-width: 72rem; }
    .pricing-grid { max-width: 74rem; }
}
