/* ============================================
   LAILEC — One-Page Homepage Styles
   Premium AI/SaaS Aesthetic · Dark Theme
   ============================================ */

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

:root {
    --bg: #06070d;
    --bg-2: #0b0d18;
    --bg-3: #11141f;
    --surface: #141826;
    --surface-2: #1a1f30;
    --border: rgba(255, 255, 255, 0.08);
    --border-strong: rgba(255, 255, 255, 0.14);

    --text: #e7eaf3;
    --text-muted: #9aa3b8;
    --text-dim: #6b7488;

    --accent: #6366f1;          /* indigo */
    --accent-2: #8b5cf6;        /* violet */
    --accent-3: #22d3ee;        /* cyan */
    --accent-glow: rgba(99, 102, 241, 0.45);

    --success: #22c55e;
    --warn: #f59e0b;
    --danger: #ef4444;

    --radius-sm: 8px;
    --radius: 14px;
    --radius-lg: 22px;

    --shadow-sm: 0 4px 16px rgba(0,0,0,0.3);
    --shadow: 0 18px 60px rgba(0,0,0,0.4);
    --shadow-lg: 0 30px 80px rgba(0,0,0,0.55);

    --container: 1200px;
    --header-h: 72px;

    --font-sans: 'Inter', system-ui, -apple-system, sans-serif;
    --font-display: 'Space Grotesk', 'Inter', system-ui, sans-serif;
}

html { scroll-behavior: smooth; scroll-padding-top: var(--header-h); }
body {
    font-family: var(--font-sans);
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; transition: color .2s ease; }
button { font-family: inherit; cursor: pointer; border: none; background: none; color: inherit; }

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

/* ---------- Typography ---------- */
h1, h2, h3, h4 { font-family: var(--font-display); font-weight: 600; line-height: 1.15; letter-spacing: -0.02em; color: var(--text); }
h1 { font-size: clamp(2.2rem, 5vw, 3.6rem); font-weight: 700; }
h2 { font-size: clamp(1.7rem, 3.5vw, 2.6rem); }
h3 { font-size: 1.2rem; }
h4 { font-size: 1rem; }
p { color: var(--text-muted); }

.text-gradient {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 50%, var(--accent-3) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    color: transparent;
}

.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 14px;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: 999px;
    font-size: .82rem;
    font-weight: 500;
    color: var(--text);
    letter-spacing: .01em;
}
.pulse {
    width: 8px; height: 8px;
    background: var(--accent-3);
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(34, 211, 238, 0.7);
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0% { box-shadow: 0 0 0 0 rgba(34,211,238,.7); }
    70% { box-shadow: 0 0 0 10px rgba(34,211,238,0); }
    100% { box-shadow: 0 0 0 0 rgba(34,211,238,0); }
}

.section-tag {
    display: inline-block;
    padding: 6px 12px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.25);
    border-radius: 999px;
    font-size: .75rem;
    font-weight: 600;
    color: #c7c9ff;
    text-transform: uppercase;
    letter-spacing: .12em;
    margin-bottom: 18px;
}
.section-tag.light { background: rgba(255,255,255,0.1); border-color: rgba(255,255,255,0.2); color: #fff; }

.section-head {
    text-align: center;
    max-width: 780px;
    margin: 0 auto 56px;
}
.section-head p { font-size: 1.05rem; margin-top: 14px; }

/* ---------- Buttons ---------- */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 22px;
    border-radius: 12px;
    font-weight: 600;
    font-size: .95rem;
    transition: all .25s ease;
    white-space: nowrap;
    border: 1px solid transparent;
    cursor: pointer;
}
.btn i { font-size: .85em; transition: transform .25s ease; }
.btn:hover i.fa-arrow-right { transform: translateX(4px); }

.btn-primary {
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-2) 100%);
    color: #fff;
    box-shadow: 0 10px 30px var(--accent-glow);
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 16px 40px var(--accent-glow);
}

.btn-ghost {
    background: rgba(255,255,255,0.04);
    color: var(--text);
    border: 1px solid var(--border-strong);
}
.btn-ghost:hover { background: rgba(255,255,255,0.08); border-color: rgba(255,255,255,0.25); }

.btn-sm { padding: 9px 16px; font-size: .85rem; }
.btn-lg { padding: 15px 28px; font-size: 1rem; }
.btn-block { width: 100%; justify-content: center; }

/* ---------- Header ---------- */
.site-header {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    background: rgba(6, 7, 13, 0.7);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: 1px solid transparent;
    transition: all .3s ease;
}
.site-header.scrolled {
    background: rgba(6, 7, 13, 0.92);
    border-bottom-color: var(--border);
}

.nav-container {
    height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
}

.brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--text);
}
.brand-mark {
    width: 30px; height: 30px;
    border-radius: 8px;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 6px 20px var(--accent-glow);
}
.brand-dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #fff;
    box-shadow: 0 0 8px #fff;
}
.brand-name { letter-spacing: -0.02em; }

.primary-nav {
    display: flex;
    gap: 28px;
}
.primary-nav a {
    font-size: .92rem;
    font-weight: 500;
    color: var(--text-muted);
    position: relative;
}
.primary-nav a:hover { color: var(--text); }
.primary-nav a::after {
    content: '';
    position: absolute;
    left: 0; bottom: -6px;
    width: 0; height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-2));
    transition: width .25s ease;
}
.primary-nav a:hover::after { width: 100%; }

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

.nav-toggle {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
}
.nav-toggle span {
    display: block;
    width: 22px; height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: all .3s ease;
}
.nav-toggle.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle.open span:nth-child(2) { opacity: 0; }
.nav-toggle.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

.mobile-nav {
    display: none;
    flex-direction: column;
    gap: 8px;
    padding: 18px 24px 24px;
    background: rgba(11, 13, 24, 0.98);
    border-bottom: 1px solid var(--border);
}
.mobile-nav.open { display: flex; }
.mobile-nav a {
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
    color: var(--text);
    font-weight: 500;
}
.mobile-nav a.btn { border-bottom: none; margin-top: 12px; }

/* ---------- Hero ---------- */
.hero {
    position: relative;
    padding: calc(var(--header-h) + 60px) 0 100px;
    overflow: hidden;
}
.hero-bg {
    position: absolute;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}
.grid-overlay {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 80% 60% at 50% 30%, #000 30%, transparent 80%);
}
.glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: .35;
}
.glow-1 {
    width: 500px; height: 500px;
    background: var(--accent);
    top: -100px; left: -150px;
}
.glow-2 {
    width: 600px; height: 600px;
    background: var(--accent-2);
    top: 100px; right: -200px;
    opacity: .25;
}

.hero-inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 60px;
    align-items: center;
}

.hero-content { max-width: 600px; }
.hero-title { margin: 22px 0 20px; }
.hero-sub {
    font-size: 1.1rem;
    line-height: 1.65;
    color: var(--text-muted);
    margin-bottom: 32px;
    max-width: 540px;
}

.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    gap: 14px;
    margin-bottom: 36px;
}

.hero-proof {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 12px 24px;
    list-style: none;
    max-width: 520px;
}
.hero-proof li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: .92rem;
    color: var(--text);
}
.hero-proof i { color: var(--accent-3); font-size: 1rem; }

/* Hero Visual — Dashboard Card */
.hero-visual {
    position: relative;
}

.dashboard-card {
    background: linear-gradient(160deg, rgba(20,24,38,.95), rgba(11,13,24,.95));
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    transform: perspective(1500px) rotateY(-6deg) rotateX(3deg);
    transition: transform .6s ease;
}
.dashboard-card:hover { transform: perspective(1500px) rotateY(-3deg) rotateX(1deg); }

.dash-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 14px 18px;
    border-bottom: 1px solid var(--border);
    background: rgba(255,255,255,0.02);
}
.dash-dot { width: 11px; height: 11px; border-radius: 50%; }
.dash-dot.red { background: #ff5f57; }
.dash-dot.yellow { background: #febc2e; }
.dash-dot.green { background: #28c840; }
.dash-title {
    margin-left: 12px;
    font-size: .82rem;
    color: var(--text-muted);
    font-weight: 500;
}

.dash-body { padding: 22px; }

.dash-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 14px;
    margin-bottom: 20px;
}
.dash-stat {
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 14px 16px;
}
.stat-label {
    display: block;
    font-size: .75rem;
    color: var(--text-muted);
    margin-bottom: 6px;
    text-transform: uppercase;
    letter-spacing: .08em;
}
.stat-value {
    font-family: var(--font-display);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text);
}
.stat-up {
    font-size: .72rem;
    color: var(--success);
    margin-left: 6px;
    font-weight: 500;
}

.dash-flow {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px 8px;
    background: rgba(99, 102, 241, 0.05);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: var(--radius);
    margin-bottom: 20px;
}
.flow-node {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 6px;
    flex-shrink: 0;
}
.flow-node i {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: var(--surface-2);
    border: 1px solid var(--border-strong);
    display: flex; align-items: center; justify-content: center;
    font-size: .85rem;
    color: var(--text-muted);
}
.flow-node span {
    font-size: .7rem;
    color: var(--text-muted);
    font-weight: 500;
}
.flow-node.active i {
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fff;
    border-color: transparent;
    box-shadow: 0 0 16px var(--accent-glow);
}
.flow-node.active span { color: var(--text); }
.flow-line {
    flex: 1;
    height: 2px;
    background: linear-gradient(90deg, var(--border-strong), rgba(99,102,241,.3));
    margin: 0 4px;
    margin-bottom: 18px;
}

.dash-list { display: flex; flex-direction: column; gap: 10px; }
.dash-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 12px;
}
.avatar {
    width: 36px; height: 36px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    display: flex; align-items: center; justify-content: center;
    font-size: .78rem;
    font-weight: 600;
    color: #fff;
}
.item-info { flex: 1; display: flex; flex-direction: column; }
.item-info strong { font-size: .88rem; color: var(--text); }
.item-info span { font-size: .76rem; color: var(--text-muted); }
.badge {
    font-size: .7rem;
    padding: 4px 10px;
    border-radius: 999px;
    font-weight: 600;
}
.badge-success { background: rgba(34,197,94,.12); color: var(--success); border: 1px solid rgba(34,197,94,.25); }
.badge-pending { background: rgba(245,158,11,.12); color: var(--warn); border: 1px solid rgba(245,158,11,.25); }

.floating-badge {
    position: absolute;
    bottom: -28px;
    left: -20px;
    display: flex;
    align-items: center;
    gap: 12px;
    background: linear-gradient(135deg, rgba(20,24,38,0.98), rgba(26,31,48,0.98));
    border: 1px solid var(--border-strong);
    padding: 14px 18px;
    border-radius: 14px;
    box-shadow: var(--shadow);
    backdrop-filter: blur(10px);
    max-width: 280px;
}
.floating-badge i {
    width: 38px; height: 38px;
    border-radius: 10px;
    background: rgba(34,211,238,0.12);
    color: var(--accent-3);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.05rem;
    flex-shrink: 0;
}
.floating-badge strong { display: block; font-size: .82rem; color: var(--text); }
.floating-badge span { font-size: .72rem; color: var(--text-muted); }

/* ---------- Proof / Logos ---------- */
.proof-section {
    padding: 60px 0;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    background: rgba(11,13,24,0.5);
}
.proof-title {
    text-align: center;
    font-size: .85rem;
    text-transform: uppercase;
    letter-spacing: .15em;
    color: var(--text-muted);
    margin-bottom: 28px;
    font-weight: 500;
}
.logo-row {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin-bottom: 22px;
}
.logo-pill {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 18px;
    background: rgba(255,255,255,0.03);
    border: 1px solid var(--border);
    border-radius: 999px;
    font-size: .9rem;
    color: var(--text);
    font-weight: 500;
    transition: all .25s ease;
}
.logo-pill i { color: var(--text-muted); }
.logo-pill:hover {
    border-color: rgba(99,102,241,.4);
    background: rgba(99,102,241,.06);
}
.logo-pill:hover i { color: var(--accent); }
.proof-note {
    text-align: center;
    font-size: .92rem;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

/* ---------- Sections Common ---------- */
section { padding: 100px 0; position: relative; }

/* ---------- Problem ---------- */
.problem-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}
.problem-card {
    background: linear-gradient(160deg, rgba(20,24,38,.7), rgba(11,13,24,.7));
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 28px;
    transition: all .3s ease;
}
.problem-card:hover {
    transform: translateY(-4px);
    border-color: rgba(239,68,68,.3);
    box-shadow: 0 18px 40px rgba(0,0,0,.4);
}
.problem-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    background: rgba(239,68,68,.08);
    border: 1px solid rgba(239,68,68,.2);
    color: var(--danger);
    display: flex; align-items: center; justify-content: center;
    font-size: 1.15rem;
    margin-bottom: 18px;
}
.problem-card h3 { margin-bottom: 8px; font-size: 1.1rem; }
.problem-card p { font-size: .92rem; }

/* ---------- Solution ---------- */
.solution-section { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }
.solution-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.solution-copy h2 { margin: 18px 0 18px; }
.solution-copy .lead { font-size: 1.08rem; color: var(--text-muted); margin-bottom: 24px; }
.check-list { list-style: none; margin-bottom: 32px; }
.check-list li {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 10px 0;
    font-size: .98rem;
    color: var(--text);
    border-bottom: 1px dashed var(--border);
}
.check-list li:last-child { border-bottom: none; }
.check-list i {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: rgba(34,211,238,.12);
    color: var(--accent-3);
    display: flex; align-items: center; justify-content: center;
    font-size: .7rem;
    flex-shrink: 0;
    margin-top: 2px;
}

.workflow-card {
    background: linear-gradient(160deg, rgba(20,24,38,.95), rgba(11,13,24,.95));
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    padding: 28px;
    box-shadow: var(--shadow);
}
.wf-step {
    display: grid;
    grid-template-columns: auto 1fr auto;
    align-items: center;
    gap: 16px;
    padding: 18px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: 14px;
    transition: all .3s ease;
}
.wf-step:hover { border-color: rgba(99,102,241,.3); background: rgba(99,102,241,.04); }
.wf-step.highlight {
    background: linear-gradient(135deg, rgba(99,102,241,.12), rgba(139,92,246,.08));
    border-color: rgba(99,102,241,.4);
    box-shadow: 0 0 30px var(--accent-glow);
}
.wf-num {
    font-family: var(--font-display);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--accent);
    background: rgba(99,102,241,.1);
    width: 38px; height: 38px;
    border-radius: 10px;
    display: flex; align-items: center; justify-content: center;
}
.wf-step strong { display: block; font-size: 1rem; color: var(--text); margin-bottom: 2px; }
.wf-step span { font-size: .82rem; color: var(--text-muted); }
.wf-icon { font-size: 1.15rem; color: var(--text-muted); }
.wf-step.highlight .wf-icon { color: var(--accent-3); }

.wf-connector {
    width: 2px;
    height: 18px;
    margin: 0 auto;
    background: linear-gradient(180deg, var(--border-strong), transparent);
}

/* ---------- Method ---------- */
.method-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 22px;
}
.method-card {
    position: relative;
    background: linear-gradient(160deg, rgba(20,24,38,.85), rgba(11,13,24,.85));
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 32px 26px;
    transition: all .35s ease;
    overflow: hidden;
}
.method-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--accent), var(--accent-2), transparent);
    opacity: 0;
    transition: opacity .3s ease;
}
.method-card:hover {
    transform: translateY(-6px);
    border-color: rgba(99,102,241,.3);
    box-shadow: 0 24px 50px rgba(0,0,0,.45);
}
.method-card:hover::before { opacity: 1; }

.method-num {
    font-family: var(--font-display);
    font-size: .8rem;
    font-weight: 600;
    color: var(--text-muted);
    letter-spacing: .15em;
    margin-bottom: 18px;
}
.method-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.4rem;
    margin-bottom: 20px;
    background: rgba(99,102,241,.1);
    color: var(--accent);
    border: 1px solid rgba(99,102,241,.2);
}
.icon-bullseye { background: rgba(99,102,241,.1); color: var(--accent); border-color: rgba(99,102,241,.2); }
.icon-email { background: rgba(34,211,238,.1); color: var(--accent-3); border-color: rgba(34,211,238,.2); }
.icon-linkedin { background: rgba(0,119,181,.15); color: #38bdf8; border-color: rgba(0,119,181,.3); }
.icon-call { background: rgba(139,92,246,.1); color: var(--accent-2); border-color: rgba(139,92,246,.2); }

.method-card h3 { font-size: 1.25rem; margin-bottom: 10px; }
.method-card > p { font-size: .94rem; margin-bottom: 18px; }

.mini-list { list-style: none; }
.mini-list li {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: .85rem;
    color: var(--text-muted);
    padding: 6px 0;
}
.mini-list i { color: var(--success); font-size: .8rem; }

/* ---------- Differentiators ---------- */
.diff-section { background: var(--bg-2); }
.diff-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 20px;
}
.diff-card {
    padding: 28px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all .3s ease;
}
.diff-card:hover {
    background: rgba(99,102,241,.04);
    border-color: rgba(99,102,241,.3);
    transform: translateY(-3px);
}
.diff-card > i {
    font-size: 1.5rem;
    color: var(--accent);
    margin-bottom: 16px;
    display: block;
}
.diff-card h3 { font-size: 1.1rem; margin-bottom: 8px; }
.diff-card p { font-size: .92rem; }

/* ---------- Pricing ---------- */
.pricing-card {
    max-width: 1000px;
    margin: 0 auto;
    background: linear-gradient(160deg, rgba(20,24,38,.95), rgba(11,13,24,.95));
    border: 1px solid var(--border-strong);
    border-radius: var(--radius-lg);
    overflow: hidden;
    display: grid;
    grid-template-columns: 1fr 1fr;
    box-shadow: var(--shadow-lg);
    position: relative;
}
.pricing-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: var(--radius-lg);
    padding: 1px;
    background: linear-gradient(135deg, rgba(99,102,241,.4), transparent 40%, transparent 60%, rgba(34,211,238,.3));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
}

.pricing-left {
    padding: 48px 40px;
    border-right: 1px solid var(--border);
    background:
        radial-gradient(circle at 10% 0%, rgba(99,102,241,.12), transparent 50%),
        radial-gradient(circle at 100% 100%, rgba(139,92,246,.08), transparent 50%);
}
.pricing-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 12px;
    background: rgba(34,211,238,.1);
    color: var(--accent-3);
    border: 1px solid rgba(34,211,238,.25);
    border-radius: 999px;
    font-size: .78rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.price-display {
    display: flex;
    align-items: baseline;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 22px;
}
.price-from {
    font-size: .9rem;
    color: var(--text-muted);
    width: 100%;
    margin-bottom: -4px;
}
.price-amount {
    font-family: var(--font-display);
    font-size: 4rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--accent), var(--accent-2), var(--accent-3));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}
.price-unit {
    font-size: .98rem;
    color: var(--text-muted);
    font-weight: 500;
}
.pricing-desc {
    font-size: .96rem;
    margin-bottom: 28px;
    color: var(--text-muted);
}

.pricing-right { padding: 48px 40px; }
.pricing-right h4 {
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--text-muted);
    margin-bottom: 20px;
    font-weight: 600;
}
.pricing-list { list-style: none; margin-bottom: 28px; }
.pricing-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 0;
    font-size: .94rem;
    color: var(--text);
    border-bottom: 1px dashed var(--border);
}
.pricing-list li:last-child { border-bottom: none; }
.pricing-list i {
    width: 20px; height: 20px;
    background: rgba(34,197,94,.12);
    color: var(--success);
    border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: .7rem;
    flex-shrink: 0;
}

.risk-badge {
    display: flex;
    align-items: flex-start;
    gap: 12px;
    padding: 16px;
    background: rgba(34,211,238,.06);
    border: 1px solid rgba(34,211,238,.2);
    border-radius: 12px;
}
.risk-badge i {
    color: var(--accent-3);
    font-size: 1.05rem;
    margin-top: 2px;
    flex-shrink: 0;
}
.risk-badge span { font-size: .88rem; color: var(--text); line-height: 1.5; }
.risk-badge strong { color: var(--text); }

/* ---------- How It Works / Timeline ---------- */
.how-section { background: var(--bg); }
.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 28px;
    top: 28px;
    bottom: 28px;
    width: 2px;
    background: linear-gradient(180deg, var(--accent), var(--accent-2), var(--accent-3));
    opacity: .35;
}
.timeline-step {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 24px;
    padding-bottom: 28px;
    position: relative;
}
.timeline-step:last-child { padding-bottom: 0; }
.step-num {
    width: 56px; height: 56px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--accent), var(--accent-2));
    color: #fff;
    font-family: var(--font-display);
    font-size: 1.3rem;
    font-weight: 700;
    display: flex; align-items: center; justify-content: center;
    box-shadow: 0 8px 24px var(--accent-glow);
    position: relative;
    z-index: 1;
    flex-shrink: 0;
}
.step-body {
    padding: 14px 28px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    transition: all .3s ease;
}
.step-body:hover { border-color: rgba(99,102,241,.3); background: rgba(99,102,241,.04); }
.step-body h3 { font-size: 1.15rem; margin-bottom: 6px; }
.step-body p { font-size: .94rem; }
.timeline-step.highlight .step-body {
    background: linear-gradient(135deg, rgba(99,102,241,.1), rgba(139,92,246,.05));
    border-color: rgba(99,102,241,.4);
}

.how-cta { text-align: center; margin-top: 50px; }

/* ---------- FAQ ---------- */
.faq-section { background: var(--bg-2); }
.faq-grid {
    display: grid;
    grid-template-columns: 1fr 1.4fr;
    gap: 60px;
    align-items: start;
}
.faq-intro { position: sticky; top: 100px; }
.faq-intro h2 { margin: 18px 0 14px; }
.faq-intro p { margin-bottom: 24px; }

.faq-list { display: flex; flex-direction: column; gap: 12px; }
.faq-item {
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: all .3s ease;
}
.faq-item[open] {
    background: rgba(99,102,241,.04);
    border-color: rgba(99,102,241,.3);
}
.faq-item summary {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 22px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text);
    list-style: none;
    user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary i {
    color: var(--accent);
    font-size: .9rem;
    transition: transform .3s ease;
    flex-shrink: 0;
    margin-left: 16px;
}
.faq-item[open] summary i { transform: rotate(45deg); }
.faq-item p {
    padding: 0 22px 22px;
    font-size: .95rem;
    color: var(--text-muted);
    line-height: 1.65;
}

/* ---------- Final CTA ---------- */
.final-cta { padding: 100px 0; }
.cta-card {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    background:
        radial-gradient(circle at 20% 30%, rgba(99,102,241,.4), transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139,92,246,.35), transparent 50%),
        linear-gradient(135deg, #0f1226, #1a1530);
    border: 1px solid rgba(99,102,241,.3);
    padding: 80px 60px;
    text-align: center;
    box-shadow: 0 30px 80px rgba(99,102,241,.15);
}
.cta-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
    background-size: 40px 40px;
    mask-image: radial-gradient(circle at 50% 50%, #000 30%, transparent 75%);
    -webkit-mask-image: radial-gradient(circle at 50% 50%, #000 30%, transparent 75%);
}
.cta-content { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.cta-content h2 { margin: 16px 0 18px; font-size: clamp(2rem, 4vw, 3rem); }
.cta-content > p { font-size: 1.08rem; margin-bottom: 36px; color: rgba(231,234,243,.85); }
.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
}
.cta-meta {
    font-size: .85rem;
    color: var(--text-muted);
    display: inline-flex;
    align-items: center;
    gap: 8px;
}

/* ---------- Footer ---------- */
.site-footer {
    background: var(--bg);
    border-top: 1px solid var(--border);
    padding-top: 60px;
}
.footer-inner {
    display: grid;
    grid-template-columns: 1.2fr 1.5fr;
    gap: 60px;
    padding-bottom: 50px;
}
.footer-brand p {
    margin-top: 14px;
    font-size: .92rem;
    max-width: 320px;
}
.footer-links {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
}
.footer-col h4 {
    font-size: .82rem;
    text-transform: uppercase;
    letter-spacing: .12em;
    color: var(--text-muted);
    margin-bottom: 16px;
    font-weight: 600;
}
.footer-col a {
    display: block;
    padding: 6px 0;
    font-size: .92rem;
    color: var(--text-muted);
    transition: color .2s ease;
}
.footer-col a:hover { color: var(--text); }

/* LinkedIn button in footer col */
.footer-linkedin-btn {
    display: inline-flex !important;
    align-items: center;
    gap: 8px;
    margin-top: 4px;
    padding: 9px 18px !important;
    background: #0077b5;
    color: #fff !important;
    border-radius: var(--radius-sm);
    font-size: .88rem !important;
    font-weight: 600;
    transition: background .2s ease, transform .2s ease, box-shadow .2s ease !important;
}
.footer-linkedin-btn:hover {
    background: #005f94 !important;
    color: #fff !important;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 119, 181, 0.35);
}
.footer-linkedin-btn i { font-size: .92rem; }

/* Social icon in footer bottom bar */
.footer-bottom-right {
    display: flex;
    align-items: center;
    gap: 16px;
}
.footer-social-link {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(0, 119, 181, 0.18);
    border: 1px solid rgba(0, 119, 181, 0.35);
    color: #0a9bd4;
    border-radius: 50%;
    font-size: .82rem;
    transition: background .2s ease, color .2s ease, transform .2s ease;
    text-decoration: none;
}
.footer-social-link:hover {
    background: #0077b5;
    color: #fff;
    transform: translateY(-2px);
}

.footer-bottom {
    border-top: 1px solid var(--border);
    padding: 22px 0;
}
.footer-bottom .container {
    display: flex;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 12px;
    font-size: .82rem;
    color: var(--text-dim);
}

/* ---------- Reveal Animations ---------- */
.reveal {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity .7s ease, transform .7s ease;
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ---------- Responsive ---------- */
@media (max-width: 992px) {
    .hero-inner { grid-template-columns: 1fr; gap: 80px; }
    .hero-content { max-width: 100%; }
    .hero-visual { max-width: 540px; margin: 0 auto; }
    .solution-grid { grid-template-columns: 1fr; gap: 40px; }
    .pricing-card { grid-template-columns: 1fr; }
    .pricing-left { border-right: none; border-bottom: 1px solid var(--border); }
    .faq-grid { grid-template-columns: 1fr; gap: 40px; }
    .faq-intro { position: static; }
    .footer-inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .primary-nav { display: none; }
    .nav-toggle { display: flex; }
    .nav-actions .btn-primary { display: none; }

    section { padding: 70px 0; }
    .hero { padding: calc(var(--header-h) + 40px) 0 80px; }
    .d-mobile-none { display: none; }

    .hero-proof { grid-template-columns: 1fr; }
    .hero-ctas { flex-direction: column; align-items: stretch; }
    .hero-ctas .btn { justify-content: center; }

    .pricing-left, .pricing-right { padding: 32px 24px; }
    .price-amount { font-size: 3rem; }

    .timeline::before { left: 22px; }
    .step-num { width: 44px; height: 44px; font-size: 1.05rem; }
    .timeline-step { gap: 16px; }
    .step-body { padding: 14px 18px; }

    .cta-card { padding: 50px 28px; }

    .floating-badge {
        position: static;
        margin: 18px auto 0;
        max-width: 100%;
    }
    .dashboard-card { transform: none; }

    .footer-bottom .container { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .dash-flow { padding: 12px 4px; }
    .flow-node i { width: 30px; height: 30px; font-size: .75rem; }
    .flow-node span { font-size: .65rem; }
    .dash-row { grid-template-columns: 1fr; }
    .footer-links { grid-template-columns: 1fr; gap: 24px; }
    .logo-row { gap: 8px; }
    .logo-pill { padding: 8px 14px; font-size: .82rem; }
}
