:root {
    --bg: #FAFAFA;
    --primary: #111827;
    --accent: #6366F1;
    --accent-light: #EEF2FF;
    --accent-mid: #C7D2FE;
    --muted: #6B7280;
    --border: #E5E7EB;
    --shadow-sm: 0 1px 3px rgba(0, 0, 0, .06), 0 1px 2px rgba(0, 0, 0, .04);
    --shadow-md: 0 4px 24px rgba(0, 0, 0, .07);
    --shadow-lg: 0 12px 48px rgba(0, 0, 0, .10);
    --radius: 16px;
}

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

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'DM Sans', sans-serif;
    background: var(--bg);
    color: var(--primary);
    line-height: 1.65;
    font-size: 16px;
    /* No overflow-x:hidden on body — causes clipping bugs. Instead control per-section. */
    width: 100%;
}

/* ── STICKY BAR ── */
.sticky-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 14px 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transform: translateY(calc(-100% - 4px));
    transition: transform .35s ease;
}

.sticky-bar.visible {
    transform: translateY(0);
}

.sticky-logo {
    font-family: 'DM Serif Display', serif;
    font-size: 18px;
    color: var(--primary);
}

.sticky-logo span {
    color: var(--accent);
}

.btn-sm {
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 8px;
    padding: 9px 20px;
    font-size: 14px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: background .2s, transform .15s;
    white-space: nowrap;
}

.btn-sm:hover {
    background: #4F46E5;
    transform: translateY(-1px);
}

/* ── LAYOUT ── */
.container {
    max-width: 1100px;
    margin: 0 auto;
    padding: 0 24px;
}

section {
    padding: 96px 0;
}

/* ── BUTTONS ── */
.btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: var(--accent);
    color: #fff;
    border: none;
    border-radius: 12px;
    padding: 16px 32px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    transition: all .2s;
    box-shadow: 0 4px 20px rgba(99, 102, 241, .35);
    white-space: nowrap;
}

.btn-primary:hover {
    background: #4F46E5;
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(99, 102, 241, .4);
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: transparent;
    color: var(--primary);
    border: 1.5px solid var(--border);
    border-radius: 12px;
    padding: 15px 28px;
    font-size: 16px;
    font-weight: 500;
    cursor: pointer;
    text-decoration: none;
    transition: all .2s;
    white-space: nowrap;
}

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

/* ── BADGE ── */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: 100px;
    padding: 6px 14px;
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .02em;
}

.badge-dot {
    width: 7px;
    height: 7px;
    background: var(--accent);
    border-radius: 50%;
    flex-shrink: 0;
    animation: pulse 2s infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1)
    }

    50% {
        opacity: .5;
        transform: scale(.8)
    }
}

/* ── ICON HELPER ── */
.icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.icon-box {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-bottom: 18px;
}

.icon-box.indigo {
    background: var(--accent-light);
}

.icon-box.indigo svg {
    color: var(--accent);
}

/* ── HERO ── */
#hero {
    padding: 140px 0 80px;
    text-align: center;
    background: radial-gradient(ellipse 80% 60% at 50% -10%, #E0E7FF 0%, transparent 70%), var(--bg);
    overflow: hidden;
}

.hero-eyebrow {
    margin-bottom: 28px;
}

h1 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(44px, 6vw, 76px);
    line-height: 1.08;
    letter-spacing: -.02em;
    color: var(--primary);
    margin-bottom: 24px;
}

h1 em {
    font-style: italic;
    color: var(--accent);
}

.hero-sub {
    font-size: clamp(17px, 2.2vw, 20px);
    color: var(--muted);
    max-width: 620px;
    margin: 0 auto 40px;
    font-weight: 400;
}

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

.hero-social-proof {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: 13px;
    color: var(--muted);
    flex-wrap: wrap;
    justify-content: center;
}

.avatars {
    display: flex;
}

.avatars span {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    border: 2px solid white;
    background: var(--accent-mid);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
    font-weight: 700;
    color: var(--accent);
    margin-left: -8px;
}

.avatars span:first-child {
    margin-left: 0;
}

.stars {
    color: #F59E0B;
    font-size: 13px;
    letter-spacing: 1px;
}

/* ── DASHBOARD MOCKUP ── */
.dashboard-wrap {
    margin-top: 64px;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg), 0 0 0 1px var(--border);
    max-width: 100%;
}

.browser-bar {
    background: #F3F4F6;
    border-bottom: 1px solid var(--border);
    padding: 12px 16px;
    display: flex;
    align-items: center;
    gap: 10px;
}

.dots {
    display: flex;
    gap: 6px;
    flex-shrink: 0;
}

.dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    flex-shrink: 0;
}

.dot.red {
    background: #FF5F57
}

.dot.yellow {
    background: #FEBC2E
}

.dot.green {
    background: #28C840
}

.url-bar {
    flex: 1;
    background: white;
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 12px;
    color: var(--muted);
    border: 1px solid var(--border);
    max-width: 320px;
    margin: 0 auto;
    text-align: center;
    min-width: 0;
}

.dashboard-body {
    display: grid;
    grid-template-columns: 200px 1fr;
    background: #1E1E2E;
    min-height: 440px;
    overflow: hidden;
}

.db-sidebar {
    background: #16162A;
    padding: 24px 16px;
    border-right: 1px solid rgba(255, 255, 255, .06);
    min-width: 0;
}

.sidebar-logo {
    font-family: 'DM Serif Display', serif;
    color: white;
    font-size: 18px;
    margin-bottom: 28px;
}

.sidebar-logo span {
    color: var(--accent);
}

.nav-item {
    display: flex;
    align-items: center;
    gap: 9px;
    padding: 9px 12px;
    border-radius: 8px;
    margin-bottom: 4px;
    font-size: 12px;
    color: rgba(255, 255, 255, .5);
    min-width: 0;
}

.nav-item svg {
    flex-shrink: 0;
    opacity: .65;
}

.nav-item.active {
    background: rgba(99, 102, 241, .15);
    color: #A5B4FC;
}

.nav-item.active svg {
    opacity: 1;
}

.db-main {
    padding: 24px;
    overflow: hidden;
    min-width: 0;
}

.mc-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    flex-wrap: wrap;
    gap: 8px;
}

.mc-title {
    color: white;
    font-size: 18px;
    font-weight: 600;
}

.mc-date {
    color: rgba(255, 255, 255, .35);
    font-size: 12px;
}

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

.stat-card {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 10px;
    padding: 12px;
    min-width: 0;
}

.stat-label {
    font-size: 10px;
    color: rgba(255, 255, 255, .4);
    margin-bottom: 5px;
    letter-spacing: .04em;
}

.stat-value {
    font-size: 20px;
    font-weight: 700;
    color: white;
}

.stat-change {
    font-size: 10px;
    color: #34D399;
    margin-top: 3px;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
}

.content-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 10px;
    padding: 14px;
    min-width: 0;
    overflow: hidden;
}

.card-title {
    color: rgba(255, 255, 255, .5);
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 10px;
}

.task-row {
    display: flex;
    align-items: center;
    gap: 7px;
    margin-bottom: 7px;
    min-width: 0;
}

.task-check {
    width: 13px;
    height: 13px;
    border-radius: 3px;
    border: 1.5px solid rgba(255, 255, 255, .2);
    flex-shrink: 0;
}

.task-check.done {
    background: var(--accent);
    border-color: var(--accent);
}

.task-text {
    font-size: 11px;
    color: rgba(255, 255, 255, .5);
    flex: 1;
    min-width: 0;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.task-text.done {
    text-decoration: line-through;
    opacity: .4;
}

.tag {
    display: inline-block;
    padding: 2px 7px;
    border-radius: 100px;
    font-size: 9px;
    font-weight: 600;
    white-space: nowrap;
    flex-shrink: 0;
}

.tag.pub {
    background: rgba(52, 211, 153, .12);
    color: #34D399;
}

.tag.draft {
    background: rgba(251, 191, 36, .12);
    color: #FBBF24;
}

.tag.idea {
    background: rgba(99, 102, 241, .15);
    color: #A5B4FC;
}

.mini-bar {
    height: 5px;
    background: rgba(255, 255, 255, .07);
    border-radius: 4px;
    margin-bottom: 8px;
    overflow: hidden;
}

.mini-bar-fill {
    height: 100%;
    border-radius: 4px;
    background: var(--accent);
}

.deal-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 5px;
    font-size: 11px;
    gap: 4px;
}

.deal-name {
    color: rgba(255, 255, 255, .65);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.deal-val {
    color: #34D399;
    font-weight: 600;
    flex-shrink: 0;
}

/* ── TYPOGRAPHY ── */
.section-label {
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

h2 {
    font-family: 'DM Serif Display', serif;
    font-size: clamp(32px, 4vw, 52px);
    line-height: 1.12;
    letter-spacing: -.02em;
    margin-bottom: 20px;
}

h2 em {
    font-style: italic;
    color: var(--accent);
}

.subtitle {
    font-size: 18px;
    color: var(--muted);
    max-width: 560px;
    line-height: 1.6;
}

/* ── PROBLEM ── */
#problem {
    background: var(--primary);
    overflow: hidden;
}

#problem h2 {
    color: white;
}

#problem .section-label {
    color: #818CF8;
}

#problem .subtitle {
    color: rgba(255, 255, 255, .5);
}

.pain-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin-top: 56px;
}

.pain-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: var(--radius);
    padding: 28px;
    transition: border-color .2s;
}

.pain-card:hover {
    border-color: rgba(99, 102, 241, .4);
}

.pain-icon {
    width: 44px;
    height: 44px;
    background: rgba(99, 102, 241, .12);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}

.pain-icon svg {
    color: #818CF8;
}

.pain-title {
    color: white;
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 8px;
}

.pain-desc {
    color: rgba(255, 255, 255, .45);
    font-size: 14px;
    line-height: 1.65;
}

/* ── SOLUTION ── */
#solution {
    background: var(--bg);
}

.solution-inner {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 72px;
    align-items: center;
}

.transform-list {
    list-style: none;
    margin-top: 32px;
}

.transform-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
    color: var(--muted);
}

.transform-list li:last-child {
    border-bottom: none;
}

.t-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    margin-top: 1px;
}

.arrow-graphic {
    background: var(--accent-light);
    border-radius: var(--radius);
    padding: 28px;
}

.before-after {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 12px;
    align-items: center;
}

.ba-box {
    background: white;
    border-radius: 12px;
    padding: 18px;
    box-shadow: var(--shadow-sm);
    min-width: 0;
}

.ba-label {
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    margin-bottom: 10px;
}

.ba-label.before {
    color: #EF4444;
}

.ba-label.after {
    color: #10B981;
}

.ba-item {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 7px;
    display: flex;
    align-items: center;
    gap: 7px;
}

.ba-item svg {
    flex-shrink: 0;
}

.ba-arrow {
    color: var(--accent);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* ── FEATURES ── */
#features {
    padding-top: 0;
}

.features-header {
    text-align: center;
    margin-bottom: 64px;
}

.features-header .subtitle {
    margin: 0 auto;
}

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

.feature-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow-sm);
    transition: box-shadow .2s, transform .2s, border-color .2s;
}

.feature-card:hover {
    box-shadow: var(--shadow-md);
    transform: translateY(-3px);
    border-color: var(--accent-mid);
}

.feature-icon-wrap {
    width: 48px;
    height: 48px;
    background: var(--accent-light);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
}

.feature-icon-wrap svg {
    color: var(--accent);
}

.feature-title {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 12px;
}

.feature-bullets {
    list-style: none;
}

.feature-bullets li {
    font-size: 14px;
    color: var(--muted);
    padding: 5px 0;
    display: flex;
    align-items: flex-start;
    gap: 8px;
}

.feature-bullets li::before {
    content: '→';
    color: var(--accent);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 1px;
}

.feature-mini-preview {
    margin-top: 20px;
    background: var(--accent-light);
    border-radius: 10px;
    padding: 14px;
    font-size: 12px;
    color: var(--accent);
    font-weight: 500;
    border: 1px solid var(--accent-mid);
}

/* ── DEMO ── */
#demo {
    background: var(--primary);
    overflow: hidden;
}

#demo h2 {
    color: white;
}

#demo .section-label {
    color: #818CF8;
}

#demo .subtitle {
    color: rgba(255, 255, 255, .5);
}

.demo-window {
    margin-top: 56px;
    background: #16162A;
    border-radius: 20px;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, .1);
    box-shadow: 0 32px 80px rgba(0, 0, 0, .5);
}

.demo-tabs {
    display: flex;
    padding: 0 24px;
    background: #111120;
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    overflow-x: auto;
}

.demo-tab {
    padding: 14px 20px;
    font-size: 13px;
    font-weight: 500;
    color: rgba(255, 255, 255, .35);
    cursor: pointer;
    border-bottom: 2px solid transparent;
    margin-bottom: -1px;
    transition: all .2s;
    white-space: nowrap;
}

.demo-tab.active {
    color: #A5B4FC;
    border-bottom-color: var(--accent);
}

.demo-content {
    padding: 28px;
}

.demo-panel {
    display: none;
}

.demo-panel.active {
    display: block;
}

.callout-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(190px, 1fr));
    gap: 14px;
}

.callout {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    padding: 18px;
}

.callout-num {
    font-size: 28px;
    font-weight: 800;
    color: var(--accent);
    margin-bottom: 4px;
}

.callout-label {
    font-size: 12px;
    color: rgba(255, 255, 255, .45);
}

.callout-desc {
    font-size: 13px;
    color: rgba(255, 255, 255, .6);
    margin-top: 8px;
}

.progress-section {
    margin-top: 24px;
}

.progress-item {
    margin-bottom: 14px;
}

.progress-header {
    display: flex;
    justify-content: space-between;
    font-size: 12px;
    color: rgba(255, 255, 255, .5);
    margin-bottom: 6px;
    gap: 8px;
}

.progress-bar {
    height: 8px;
    background: rgba(255, 255, 255, .07);
    border-radius: 4px;
    overflow: hidden;
}

.progress-fill {
    height: 100%;
    background: linear-gradient(90deg, var(--accent), #818CF8);
    border-radius: 4px;
}

.pipeline-row {
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 10px;
}

.pl-info .pl-name {
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.pl-info .pl-sub {
    color: rgba(255, 255, 255, .4);
    font-size: 12px;
    margin-top: 3px;
}

.pl-meta {
    display: flex;
    gap: 10px;
    align-items: center;
    flex-shrink: 0;
}

.pl-badge {
    padding: 3px 10px;
    border-radius: 7px;
    font-size: 11px;
    font-weight: 600;
}

.pl-badge.neg {
    background: rgba(251, 191, 36, .12);
    color: #FBBF24;
}

.pl-badge.mid {
    background: rgba(99, 102, 241, .15);
    color: #A5B4FC;
}

.pl-badge.pos {
    background: rgba(52, 211, 153, .12);
    color: #34D399;
}

.pl-val {
    color: #34D399;
    font-weight: 700;
    font-size: 14px;
}

.week-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(120px, 1fr));
    gap: 10px;
}

.week-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 10px;
    padding: 14px;
}

.week-day {
    font-size: 10px;
    color: rgba(255, 255, 255, .3);
    margin-bottom: 8px;
    text-transform: uppercase;
    letter-spacing: .08em;
}

.week-task {
    font-size: 12px;
    color: white;
    font-weight: 500;
    margin-bottom: 8px;
}

.week-badge {
    display: inline-block;
    padding: 2px 8px;
    border-radius: 6px;
    font-size: 10px;
    font-weight: 600;
}

.wb-done {
    background: rgba(52, 211, 153, .12);
    color: #34D399;
}

.wb-prog {
    background: rgba(99, 102, 241, .15);
    color: #A5B4FC;
}

.wb-pend {
    background: rgba(251, 191, 36, .12);
    color: #FBBF24;
}

/* ── TESTIMONIALS ── */
#testimonials {
    background: var(--bg);
}

.testimonials-header {
    text-align: center;
    margin-bottom: 56px;
}

.testimonials-header .subtitle {
    margin: 0 auto;
}

.testi-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}

.testi-card {
    background: white;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.testi-card::before {
    content: '\201C';
    font-family: 'DM Serif Display', serif;
    font-size: 80px;
    color: var(--accent-mid);
    position: absolute;
    top: 4px;
    right: 18px;
    line-height: 1;
    pointer-events: none;
}

.testi-stars {
    color: #F59E0B;
    font-size: 14px;
    margin-bottom: 14px;
}

.testi-quote {
    font-size: 15px;
    line-height: 1.7;
    color: var(--primary);
    margin-bottom: 20px;
    font-style: italic;
}

.testi-author {
    display: flex;
    align-items: center;
    gap: 12px;
}

.testi-avatar {
    width: 42px;
    height: 42px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 14px;
    flex-shrink: 0;
}

.testi-name {
    font-weight: 700;
    font-size: 14px;
}

.testi-handle {
    font-size: 12px;
    color: var(--muted);
}

/* ── BONUSES ── */
#bonuses {
    background: linear-gradient(135deg, #EEF2FF 0%, #F5F3FF 100%);
}

.bonuses-header {
    text-align: center;
    margin-bottom: 56px;
}

.bonus-list {
    max-width: 680px;
    margin: 0 auto 56px;
}

.bonus-item {
    display: flex;
    align-items: center;
    gap: 16px;
    background: white;
    border-radius: 12px;
    padding: 20px 24px;
    margin-bottom: 12px;
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--accent-mid);
}

.bonus-icon {
    width: 44px;
    height: 44px;
    background: var(--accent-light);
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.bonus-icon svg {
    color: var(--accent);
}

.bonus-text {
    flex: 1;
    min-width: 0;
}

.bonus-name {
    font-weight: 700;
    font-size: 15px;
    margin-bottom: 3px;
}

.bonus-desc {
    font-size: 13px;
    color: var(--muted);
}

.bonus-val {
    font-weight: 700;
    color: var(--accent);
    font-size: 15px;
    flex-shrink: 0;
}

.value-stack {
    background: white;
    border-radius: var(--radius);
    padding: 36px;
    box-shadow: var(--shadow-md);
    max-width: 500px;
    margin: 0 auto;
    text-align: center;
    border: 2px solid var(--accent-mid);
}

.vs-title {
    font-size: 13px;
    color: var(--muted);
    margin-bottom: 20px;
    text-transform: uppercase;
    letter-spacing: .08em;
    font-weight: 700;
}

.vs-item {
    display: flex;
    justify-content: space-between;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
    gap: 16px;
}

.vs-item:last-child {
    border-bottom: none;
}

.vs-total {
    display: flex;
    justify-content: space-between;
    padding: 16px 0;
    border-top: 2px solid var(--border);
    margin-top: 8px;
}

.vs-label {
    font-weight: 700;
    font-size: 18px;
}

.vs-val-old {
    text-decoration: line-through;
    color: var(--muted);
    font-size: 18px;
}

.vs-val-new {
    font-family: 'DM Serif Display', serif;
    font-size: 36px;
    color: var(--accent);
}

.vs-save {
    background: #ECFDF5;
    color: #10B981;
    padding: 10px 20px;
    border-radius: 8px;
    font-weight: 700;
    font-size: 14px;
    display: inline-block;
    margin-top: 12px;
}

/* ── PRICING ── */
#pricing {
    background: var(--bg);
}

.pricing-center {
    text-align: center;
}

.pricing-card {
    max-width: 480px;
    margin: 56px auto 0;
    background: white;
    border-radius: 24px;
    border: 2px solid var(--accent);
    box-shadow: 0 20px 80px rgba(99, 102, 241, .15);
    overflow: hidden;
}

.pricing-badge {
    background: var(--accent);
    color: white;
    text-align: center;
    padding: 10px;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
}

.pricing-body {
    padding: 40px;
}

.pricing-name {
    font-size: 14px;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: var(--muted);
    margin-bottom: 16px;
    font-weight: 700;
}

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

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

.pricing-new {
    font-family: 'DM Serif Display', serif;
    font-size: 64px;
    color: var(--primary);
    line-height: 1;
}

.pricing-currency {
    font-size: 24px;
    color: var(--primary);
    font-weight: 500;
}

.pricing-note {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 32px;
}

.pricing-features {
    list-style: none;
    margin-bottom: 32px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 10px 0;
    border-bottom: 1px solid var(--border);
    font-size: 15px;
}

.pricing-features li:last-child {
    border-bottom: none;
}

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

.pricing-cta {
    width: 100%;
    padding: 18px;
    font-size: 17px;
    border-radius: 14px;
    justify-content: center;
}

.guarantee {
    display: flex;
    align-items: center;
    gap: 12px;
    background: #F0FDF4;
    border-radius: 12px;
    padding: 16px 20px;
    margin-top: 20px;
    border: 1px solid #D1FAE5;
}

.guarantee-icon {
    flex-shrink: 0;
    color: #10B981;
}

.guarantee-text {
    font-size: 13px;
    color: #065F46;
    line-height: 1.5;
}

.guarantee-text strong {
    display: block;
    font-size: 15px;
    margin-bottom: 2px;
}

/* ── FAQ ── */
#faq {
    background: var(--bg);
}

.faq-header {
    text-align: center;
    margin-bottom: 56px;
}

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

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

.faq-q {
    padding: 22px 0;
    font-size: 17px;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    user-select: none;
}

.faq-icon {
    width: 24px;
    height: 24px;
    background: var(--accent-light);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: transform .2s;
    color: var(--accent);
}

.faq-item.open .faq-icon {
    transform: rotate(45deg);
}

.faq-a {
    font-size: 15px;
    color: var(--muted);
    line-height: 1.75;
    padding-bottom: 20px;
    display: none;
}

.faq-item.open .faq-a {
    display: block;
}

/* ── FINAL CTA ── */
#final-cta {
    background: var(--primary);
    text-align: center;
    padding: 120px 0;
    position: relative;
    overflow: hidden;
}

#final-cta::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 80% 50% at 50% 50%, rgba(99, 102, 241, .15) 0%, transparent 70%);
}

#final-cta .container {
    position: relative;
    z-index: 1;
}

#final-cta h2 {
    color: white;
}

#final-cta .section-label {
    color: #818CF8;
}

#final-cta .subtitle {
    color: rgba(255, 255, 255, .5);
    margin: 0 auto 40px;
}

.urgency-line {
    margin-top: 20px;
    font-size: 14px;
    color: rgba(255, 255, 255, .4);
}

.urgency-line strong {
    color: #FBBF24;
}

.countdown {
    display: inline-flex;
    gap: 16px;
    margin-bottom: 32px;
    justify-content: center;
}

.cd-unit {
    text-align: center;
}

.cd-num {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 62px;
    height: 62px;
    background: rgba(255, 255, 255, .07);
    border-radius: 12px;
    font-size: 26px;
    font-weight: 800;
    color: white;
    border: 1px solid rgba(255, 255, 255, .1);
    font-variant-numeric: tabular-nums;
}

.cd-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: rgba(255, 255, 255, .3);
    margin-top: 6px;
}

.trust-row {
    margin-top: 32px;
    display: flex;
    gap: 28px;
    justify-content: center;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    color: rgba(255, 255, 255, .4);
}

.trust-item svg {
    color: rgba(255, 255, 255, .35);
    flex-shrink: 0;
}

/* ── FOOTER ── */
footer {
    background: #0D0D1A;
    padding: 32px 0;
    text-align: center;
    font-size: 13px;
    color: rgba(255, 255, 255, .25);
}

/* ── ANIMATIONS ── */
.fade-up {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .6s ease, transform .6s ease;
}

.fade-up.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ── RESPONSIVE ── */
@media (max-width: 900px) {
    .solution-inner {
        grid-template-columns: 1fr;
        gap: 40px;
    }

    .before-after {
        grid-template-columns: 1fr auto 1fr;
    }
}

@media (max-width: 700px) {
    .stats-row {
        grid-template-columns: 1fr 1fr;
    }

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

    .before-after {
        grid-template-columns: 1fr;
    }

    .ba-arrow {
        display: none;
    }

    .dashboard-body {
        grid-template-columns: 1fr;
    }

    .db-sidebar {
        display: none;
    }

    .hero-ctas {
        gap: 10px;
    }

    .btn-ghost,
    .btn-primary {
        padding: 13px 22px;
        font-size: 15px;
    }

    .demo-content {
        padding: 18px;
    }
}

@media (max-width: 480px) {
    section {
        padding: 64px 0;
    }

    #hero {
        padding: 100px 0 60px;
    }

    .bonus-item {
        flex-wrap: wrap;
    }

    .bonus-val {
        flex-basis: 100%;
        text-align: right;
    }
}