:root {
    --primary: #6366f1;
    --primary-d: #4f46e5;
    --secondary: #8b5cf6;
    --accent: #06b6d4;
    --success: #22c55e;
    --dark: #0f172a;
    --card-bg: rgba(255, 255, 255, .07);
}

* {
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', sans-serif;
    background: #0f172a;
    color: #e2e8f0;
    overflow-x: hidden;
}

/* ── Scrollbar ─────────────────────────────────────── */
::-webkit-scrollbar {
    width: 5px;
}

::-webkit-scrollbar-track {
    background: #1e293b;
}

::-webkit-scrollbar-thumb {
    background: #334155;
    border-radius: 99px;
}

/* ── Navbar ────────────────────────────────────────── */
.navbar {
    background: rgba(15, 23, 42, .85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, .07);
    padding: 14px 0;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
}

.navbar-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.brand-icon {
    width: 36px;
    height: 36px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #fff;
    font-size: 1rem;
    box-shadow: 0 4px 14px rgba(99, 102, 241, .5);
}

.brand-name {
    color: #fff;
    font-weight: 800;
    font-size: 1.15rem;
    letter-spacing: -.4px;
}

.nav-links {
    display: flex;
    align-items: center;
    gap: 32px;
}

.nav-links a {
    color: #94a3b8;
    font-size: .875rem;
    font-weight: 500;
    text-decoration: none;
    transition: color .15s;
}

.nav-links a:hover {
    color: #fff;
}

.btn-nav-signin {
    background: transparent;
    border: 1px solid rgba(255, 255, 255, .2);
    color: #e2e8f0;
    font-size: .85rem;
    font-weight: 500;
    padding: .45rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    transition: all .2s;
}

.btn-nav-signin:hover {
    border-color: var(--primary);
    color: #fff;
    background: rgba(99, 102, 241, .1);
}

.btn-nav-cta {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    font-size: .85rem;
    font-weight: 600;
    padding: .45rem 1.2rem;
    border-radius: 8px;
    text-decoration: none;
    border: none;
    transition: all .2s;
    box-shadow: 0 4px 14px rgba(99, 102, 241, .4);
}

.btn-nav-cta:hover {
    opacity: .9;
    transform: translateY(-1px);
    box-shadow: 0 6px 20px rgba(99, 102, 241, .55);
    color: #fff;
}

/* ── Hero ──────────────────────────────────────────── */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: .35;
}

.orb-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    left: -200px;
}

.orb-2 {
    width: 500px;
    height: 500px;
    background: var(--secondary);
    bottom: -150px;
    right: -150px;
}

.orb-3 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    top: 40%;
    left: 45%;
}

/* Grid dots background */
.hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background-image: radial-gradient(rgba(255, 255, 255, .06) 1px, transparent 1px);
    background-size: 30px 30px;
    pointer-events: none;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(99, 102, 241, .15);
    border: 1px solid rgba(99, 102, 241, .3);
    color: #a5b4fc;
    font-size: .78rem;
    font-weight: 600;
    padding: .35rem 1rem;
    border-radius: 99px;
    margin-bottom: 24px;
    letter-spacing: .04em;
    text-transform: uppercase;
}

.hero-badge .dot {
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: #6366f1;
    box-shadow: 0 0 8px #6366f1;
    animation: pulse-dot 2s infinite;
}

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

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

.hero-title {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 900;
    line-height: 1.08;
    letter-spacing: -.04em;
    color: #fff;
    margin-bottom: 24px;
}

.hero-title .gradient-text {
    background: linear-gradient(135deg, #a5b4fc 0%, #818cf8 40%, #c084fc 70%, #60a5fa 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: 1.15rem;
    color: #94a3b8;
    line-height: 1.65;
    max-width: 540px;
    margin-bottom: 40px;
}

.hero-actions {
    display: flex;
    gap: 14px;
    flex-wrap: wrap;
    margin-bottom: 56px;
}

.btn-hero-primary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    font-weight: 700;
    font-size: 1rem;
    padding: .85rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    box-shadow: 0 8px 28px rgba(99, 102, 241, .5);
    transition: all .25s;
}

.btn-hero-primary:hover {
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 14px 36px rgba(99, 102, 241, .6);
}

.btn-hero-secondary {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .14);
    color: #e2e8f0;
    font-weight: 600;
    font-size: 1rem;
    padding: .85rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    backdrop-filter: blur(10px);
    transition: all .25s;
}

.btn-hero-secondary:hover {
    color: #fff;
    background: rgba(255, 255, 255, .1);
    border-color: rgba(255, 255, 255, .25);
}

.hero-trust {
    display: flex;
    align-items: center;
    gap: 20px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 6px;
    font-size: .82rem;
    color: #64748b;
}

.trust-item i {
    color: var(--success);
    font-size: .85rem;
}

/* ── Dashboard Mockup ──────────────────────────────── */
.hero-mockup {
    position: relative;
    animation: float 5s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-16px);
    }
}

.mockup-shell {
    background: #1e293b;
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, .6), 0 0 0 1px rgba(255, 255, 255, .06);
}

.mockup-titlebar {
    background: #0f172a;
    padding: 10px 16px;
    display: flex;
    align-items: center;
    gap: 8px;
    border-bottom: 1px solid rgba(255, 255, 255, .06);
}

.tb-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.tb-dot.red {
    background: #ef4444;
}

.tb-dot.yellow {
    background: #eab308;
}

.tb-dot.green {
    background: #22c55e;
}

.tb-url {
    flex: 1;
    background: rgba(255, 255, 255, .06);
    border-radius: 5px;
    padding: 4px 10px;
    font-size: .68rem;
    color: #475569;
    text-align: center;
    margin: 0 10px;
}

.mockup-body {
    display: flex;
    height: 360px;
}

.mock-sidebar {
    width: 56px;
    background: #0f172a;
    border-right: 1px solid rgba(255, 255, 255, .06);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    padding: 12px 8px;
}

.mock-sidebar-icon {
    width: 32px;
    height: 32px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .85rem;
    color: #475569;
}

.mock-sidebar-icon.active {
    background: rgba(99, 102, 241, .2);
    color: #a5b4fc;
}

.mock-main {
    flex: 1;
    padding: 14px;
    overflow: hidden;
}

.mock-topbar {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 12px;
}

.mock-topbar-title {
    font-size: .7rem;
    color: #f1f5f9;
    font-weight: 700;
    flex: 1;
}

.mock-badge-btn {
    background: linear-gradient(135deg, #6366f1, #8b5cf6);
    color: #fff;
    font-size: .58rem;
    padding: 3px 8px;
    border-radius: 5px;
    font-weight: 600;
}

.mock-kpi-row {
    display: flex;
    gap: 8px;
    margin-bottom: 12px;
}

.mock-kpi {
    flex: 1;
    background: rgba(255, 255, 255, .05);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 8px;
    padding: 8px 10px;
}

.mock-kpi-val {
    font-size: .85rem;
    font-weight: 800;
    color: #f1f5f9;
}

.mock-kpi-lbl {
    font-size: .58rem;
    color: #64748b;
}

.mock-kpi-badge {
    font-size: .5rem;
    padding: 1px 5px;
    border-radius: 99px;
    background: rgba(34, 197, 94, .15);
    color: #4ade80;
    display: inline-block;
    margin-top: 2px;
}

.mock-chart {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .07);
    border-radius: 8px;
    padding: 10px;
    height: 130px;
    overflow: hidden;
}

.mock-chart-title {
    font-size: .6rem;
    color: #94a3b8;
    margin-bottom: 8px;
    font-weight: 600;
}

.mock-bars {
    display: flex;
    align-items: flex-end;
    gap: 4px;
    height: 80px;
}

.mock-bar {
    flex: 1;
    border-radius: 3px 3px 0 0;
    opacity: .8;
    transition: opacity .2s;
}

/* pipeline mini */
.mock-pipeline {
    display: flex;
    gap: 6px;
    margin-top: 8px;
}

.mock-col {
    flex: 1;
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 6px;
    padding: 5px;
}

.mock-col-hdr {
    font-size: .5rem;
    color: #94a3b8;
    font-weight: 700;
    margin-bottom: 4px;
    text-transform: uppercase;
}

.mock-card {
    background: rgba(255, 255, 255, .07);
    border-radius: 4px;
    padding: 4px 5px;
    margin-bottom: 3px;
    font-size: .52rem;
    color: #cbd5e1;
}

/* ── Section commons ───────────────────────────────── */
section {
    padding: 100px 0;
}

.section-badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    background: rgba(99, 102, 241, .12);
    border: 1px solid rgba(99, 102, 241, .25);
    color: #a5b4fc;
    font-size: .72rem;
    font-weight: 700;
    padding: .3rem .85rem;
    border-radius: 99px;
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: .06em;
}

.section-title {
    font-size: clamp(1.9rem, 3.5vw, 2.8rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -.03em;
    color: #fff;
    margin-bottom: 16px;
}

.section-sub {
    font-size: 1.05rem;
    color: #64748b;
    line-height: 1.7;
    max-width: 540px;
}

.section-sub.center {
    margin: 0 auto;
}

/* ── Stats ──────────────────────────────────────────── */
.stats-bar {
    background: rgba(255, 255, 255, .03);
    border-top: 1px solid rgba(255, 255, 255, .06);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    padding: 48px 0;
}

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

.stat-num {
    font-size: 2.5rem;
    font-weight: 900;
    letter-spacing: -.04em;
    background: linear-gradient(135deg, #a5b4fc, #c084fc);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    display: block;
}

.stat-lbl {
    font-size: .85rem;
    color: #64748b;
    font-weight: 500;
    margin-top: 4px;
}

/* ── Feature Cards ─────────────────────────────────── */
.feature-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    padding: 28px;
    transition: all .3s;
    height: 100%;
}

.feature-card:hover {
    background: rgba(255, 255, 255, .07);
    border-color: rgba(99, 102, 241, .4);
    transform: translateY(-4px);
    box-shadow: 0 20px 48px rgba(0, 0, 0, .3), 0 0 0 1px rgba(99, 102, 241, .15);
}

.feature-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 18px;
    flex-shrink: 0;
}

.feature-title {
    font-size: 1.05rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 10px;
}

.feature-desc {
    font-size: .875rem;
    color: #64748b;
    line-height: 1.65;
}

.feature-list {
    list-style: none;
    padding: 0;
    margin: 14px 0 0;
}

.feature-list li {
    font-size: .8rem;
    color: #94a3b8;
    padding: 4px 0;
    display: flex;
    align-items: center;
    gap: 7px;
}

.feature-list li::before {
    content: '';
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--primary);
    flex-shrink: 0;
}

/* ── Showcase sections ─────────────────────────────── */
.showcase {
    background: rgba(255, 255, 255, .025);
    border: 1px solid rgba(255, 255, 255, .06);
    border-radius: 20px;
    overflow: hidden;
    position: relative;
}

.showcase::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

/* Pipeline visual */
.pipeline-visual {
    padding: 24px;
}

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

.pipeline-header-title {
    font-size: .8rem;
    font-weight: 700;
    color: #f1f5f9;
}

.pipeline-stages {
    display: flex;
    gap: 12px;
    overflow-x: auto;
    padding-bottom: 4px;
}

.pipeline-stage {
    min-width: 160px;
}

.stage-header {
    display: flex;
    align-items: center;
    gap: 6px;
    padding: 8px 10px;
    border-radius: 8px;
    margin-bottom: 8px;
}

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

.stage-name {
    font-size: .7rem;
    font-weight: 700;
    color: #f1f5f9;
    flex: 1;
}

.stage-count {
    font-size: .62rem;
    background: rgba(255, 255, 255, .1);
    padding: 2px 6px;
    border-radius: 99px;
    color: #94a3b8;
}

.deal-card {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 8px;
    padding: 10px 12px;
    margin-bottom: 8px;
}

.deal-name {
    font-size: .72rem;
    font-weight: 600;
    color: #f1f5f9;
    margin-bottom: 4px;
}

.deal-val {
    font-size: .7rem;
    color: #22c55e;
    font-weight: 700;
}

.deal-company {
    font-size: .65rem;
    color: #64748b;
}

.deal-prob {
    margin-top: 6px;
    height: 3px;
    border-radius: 99px;
    background: rgba(255, 255, 255, .08);
    overflow: hidden;
}

.deal-prob-bar {
    height: 100%;
    border-radius: 99px;
}

/* Email compose visual */
.email-visual {
    padding: 24px;
}

.email-header {
    font-size: .8rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 16px;
}

.email-field {
    margin-bottom: 10px;
}

.email-label {
    font-size: .65rem;
    color: #64748b;
    font-weight: 600;
    text-transform: uppercase;
    margin-bottom: 4px;
}

.email-input {
    background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 8px;
    padding: 8px 12px;
    font-size: .75rem;
    color: #e2e8f0;
}

.email-body-area {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 8px;
    min-height: 100px;
    padding: 12px;
    font-size: .75rem;
    color: #94a3b8;
}

.email-toolbar {
    display: flex;
    gap: 6px;
    background: rgba(255, 255, 255, .06);
    border-bottom: 1px solid rgba(255, 255, 255, .06);
    padding: 6px 10px;
    border-radius: 8px 8px 0 0;
}

.toolbar-btn {
    width: 22px;
    height: 22px;
    border-radius: 4px;
    background: rgba(255, 255, 255, .08);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .6rem;
    color: #94a3b8;
}

/* Permissions visual */
.perms-visual {
    padding: 24px;
}

.perms-header {
    font-size: .8rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 16px;
}

.perms-role-pills {
    display: flex;
    gap: 8px;
    margin-bottom: 16px;
    flex-wrap: wrap;
}

.perms-pill {
    font-size: .68rem;
    padding: 4px 12px;
    border-radius: 99px;
    font-weight: 600;
}

.perms-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
    font-size: .72rem;
}

.perms-module {
    flex: 1;
    color: #94a3b8;
}

.perms-check {
    width: 18px;
    height: 18px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .6rem;
}

.check-on {
    background: rgba(34, 197, 94, .15);
    color: #22c55e;
}

.check-off {
    background: rgba(255, 255, 255, .05);
    color: #334155;
}

/* ── How it works ──────────────────────────────────── */
.step-number {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    box-shadow: 0 8px 20px rgba(99, 102, 241, .4);
    margin-bottom: 16px;
}

.step-title {
    font-size: 1.1rem;
    font-weight: 700;
    color: #f1f5f9;
    margin-bottom: 10px;
}

.step-desc {
    font-size: .9rem;
    color: #64748b;
    line-height: 1.65;
}

.step-connector {
    position: absolute;
    top: 22px;
    left: calc(50% + 30px);
    width: calc(100% - 60px);
    height: 1px;
    background: linear-gradient(90deg, rgba(99, 102, 241, .5), rgba(139, 92, 246, .2));
}

/* ── Testimonials ──────────────────────────────────── */
.testimonial-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 16px;
    padding: 28px;
    height: 100%;
}

.stars {
    color: #fbbf24;
    font-size: .85rem;
    margin-bottom: 14px;
}

.testimonial-text {
    font-size: .9rem;
    color: #cbd5e1;
    line-height: 1.7;
    margin-bottom: 20px;
    font-style: italic;
}

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

.author-avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: .8rem;
    font-weight: 700;
    color: #fff;
    flex-shrink: 0;
}

.author-name {
    font-size: .85rem;
    font-weight: 600;
    color: #f1f5f9;
}

.author-title {
    font-size: .75rem;
    color: #64748b;
}

/* ── Pricing ───────────────────────────────────────── */
.pricing-card {
    background: rgba(255, 255, 255, .04);
    border: 1px solid rgba(255, 255, 255, .08);
    border-radius: 20px;
    padding: 36px 28px;
    height: 100%;
    transition: all .3s;
    position: relative;
}

.pricing-card.popular {
    background: rgba(99, 102, 241, .1);
    border-color: rgba(99, 102, 241, .5);
    box-shadow: 0 0 48px rgba(99, 102, 241, .2);
}

.popular-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    font-size: .72rem;
    font-weight: 700;
    padding: 4px 16px;
    border-radius: 99px;
    white-space: nowrap;
}

.pricing-name {
    font-size: .8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #64748b;
    margin-bottom: 12px;
}

.pricing-price {
    font-size: 2.8rem;
    font-weight: 900;
    color: #fff;
    letter-spacing: -.04em;
    line-height: 1;
}

.pricing-price span {
    font-size: 1rem;
    font-weight: 500;
    color: #64748b;
}

.pricing-desc {
    font-size: .82rem;
    color: #64748b;
    margin: 8px 0 24px;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}

.pricing-features li {
    font-size: .85rem;
    color: #94a3b8;
    padding: 7px 0;
    display: flex;
    align-items: center;
    gap: 10px;
    border-bottom: 1px solid rgba(255, 255, 255, .05);
}

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

.pricing-features li i {
    color: #22c55e;
    font-size: .8rem;
    flex-shrink: 0;
}

.pricing-features li.off {
    color: #475569;
}

.pricing-features li.off i {
    color: #475569;
}

.btn-pricing {
    display: block;
    text-align: center;
    padding: .7rem 1rem;
    border-radius: 10px;
    font-weight: 700;
    font-size: .9rem;
    text-decoration: none;
    transition: all .2s;
}

.btn-pricing-outline {
    border: 1px solid rgba(255, 255, 255, .15);
    color: #e2e8f0;
    background: transparent;
}

.btn-pricing-outline:hover {
    border-color: var(--primary);
    color: var(--primary);
}

.btn-pricing-filled {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: #fff;
    border: none;
    box-shadow: 0 6px 20px rgba(99, 102, 241, .4);
}

.btn-pricing-filled:hover {
    color: #fff;
    transform: translateY(-1px);
    box-shadow: 0 10px 28px rgba(99, 102, 241, .55);
}

/* ── CTA Section ───────────────────────────────────── */
.cta-section {
    background: linear-gradient(135deg, rgba(99, 102, 241, .2), rgba(139, 92, 246, .15));
    border: 1px solid rgba(99, 102, 241, .3);
    border-radius: 24px;
    padding: 80px 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

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

.cta-title {
    font-size: clamp(1.8rem, 4vw, 3rem);
    font-weight: 900;
    color: #fff;
    letter-spacing: -.03em;
    line-height: 1.15;
    margin-bottom: 16px;
    position: relative;
}

.cta-sub {
    font-size: 1.05rem;
    color: #94a3b8;
    margin-bottom: 40px;
    position: relative;
}

.cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
    position: relative;
}

/* ── Footer ────────────────────────────────────────── */
footer {
    border-top: 1px solid rgba(255, 255, 255, .07);
    padding: 48px 0 32px;
}

.footer-brand {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 12px;
}

.footer-tagline {
    font-size: .85rem;
    color: #475569;
    line-height: 1.6;
    max-width: 260px;
}

.footer-heading {
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .08em;
    color: #475569;
    margin-bottom: 16px;
}

.footer-links {
    list-style: none;
    padding: 0;
    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #64748b;
    font-size: .85rem;
    text-decoration: none;
    transition: color .15s;
}

.footer-links a:hover {
    color: #a5b4fc;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, .06);
    margin-top: 40px;
    padding-top: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
}

.footer-bottom p {
    font-size: .8rem;
    color: #475569;
    margin: 0;
}

/* ── Scroll animations ─────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity .6s ease, transform .6s ease;
}

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

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

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

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

.reveal-delay-4 {
    transition-delay: .4s;
}

.reveal-delay-5 {
    transition-delay: .5s;
}

/* ── Responsive ────────────────────────────────────── */
@media (max-width: 767.98px) {
    .nav-links {
        display: none;
    }

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

    .hero-mockup {
        margin-top: 40px;
    }

    .step-connector {
        display: none;
    }

    section {
        padding: 70px 0;
    }

    .cta-section {
        padding: 56px 24px;
    }
}