/* ========================================
   КЛИЕНТОЛОВ.РУ — Main Stylesheet v2
   AI + Big Data Edition
   ======================================== */

:root {
    --bg-primary: #0a0e1a;
    --bg-secondary: #0f1328;
    --bg-card: #141832;
    --bg-card-hover: #1a1f3a;
    --bg-elevated: #1e2344;

    --text-primary: #e8eaf6;
    --text-secondary: #8b90b0;
    --text-muted: #5a5f7c;

    --accent-cyan: #00f0ff;
    --accent-purple: #7b2fff;
    --accent-blue: #3b82f6;
    --accent-green: #10b981;
    --accent-orange: #f59e0b;
    --accent-red: #ef4444;
    --accent-pink: #ec4899;

    --gradient-main: linear-gradient(135deg, #00f0ff 0%, #7b2fff 100%);
    --gradient-ai: linear-gradient(135deg, #7b2fff 0%, #ec4899 100%);
    --gradient-subtle: linear-gradient(135deg, rgba(0,240,255,0.1) 0%, rgba(123,47,255,0.1) 100%);

    --border-color: rgba(255,255,255,0.06);
    --border-light: rgba(255,255,255,0.1);

    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 28px;

    --shadow-card: 0 4px 24px rgba(0,0,0,0.3), 0 1px 2px rgba(0,0,0,0.2);
    --shadow-glow: 0 0 60px rgba(0,240,255,0.15);
    --shadow-glow-purple: 0 0 60px rgba(123,47,255,0.15);

    --font-main: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
    --font-mono: 'JetBrains Mono', monospace;

    --container-max: 1200px;
    --header-height: 72px;
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

html {
    scroll-behavior: smooth;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: var(--font-main);
    background: var(--bg-primary);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container { max-width: var(--container-max); margin: 0 auto; padding: 0 24px; }
img { max-width: 100%; height: auto; }
a { color: inherit; text-decoration: none; }
button { cursor: pointer; font-family: inherit; border: none; background: none; }

/* ========================================
   TYPOGRAPHY
   ======================================== */
.gradient-text {
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section { padding: 100px 0; position: relative; }
.section__header { text-align: center; margin-bottom: 64px; }

.section__tag {
    display: inline-block;
    font-family: var(--font-mono);
    font-size: 13px;
    font-weight: 500;
    letter-spacing: 2px;
    text-transform: uppercase;
    color: var(--accent-cyan);
    background: rgba(0,240,255,0.08);
    border: 1px solid rgba(0,240,255,0.15);
    padding: 6px 16px;
    border-radius: 100px;
    margin-bottom: 20px;
}

.section__title {
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.section__subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto;
}

/* ========================================
   BUTTONS
   ======================================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    font-weight: 600;
    font-size: 15px;
    border-radius: var(--radius-sm);
    padding: 12px 28px;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn--primary {
    background: var(--gradient-main);
    color: #0a0e1a;
    box-shadow: 0 4px 20px rgba(0,240,255,0.25);
}
.btn--primary:hover {
    box-shadow: 0 6px 30px rgba(0,240,255,0.4);
    transform: translateY(-2px);
}

.btn--glow::after {
    content: '';
    position: absolute;
    inset: -2px;
    background: var(--gradient-main);
    border-radius: inherit;
    z-index: -1;
    filter: blur(12px);
    opacity: 0.4;
    transition: opacity 0.3s;
}
.btn--glow:hover::after { opacity: 0.7; }

.btn--outline {
    border: 1.5px solid var(--border-light);
    color: var(--text-primary);
    background: transparent;
}
.btn--outline:hover {
    border-color: var(--accent-cyan);
    color: var(--accent-cyan);
    background: rgba(0,240,255,0.05);
}

.btn--ghost {
    color: var(--text-secondary);
    background: rgba(255,255,255,0.05);
}
.btn--ghost:hover {
    color: var(--text-primary);
    background: rgba(255,255,255,0.1);
}

.btn--sm { padding: 8px 20px; font-size: 14px; }
.btn--lg { padding: 16px 36px; font-size: 16px; border-radius: var(--radius-md); }
.btn--block { width: 100%; }

/* ========================================
   HEADER
   ======================================== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--header-height);
    z-index: 1000;
    transition: all 0.3s ease;
    background: transparent;
}
.header--scrolled {
    background: rgba(10,14,26,0.92);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border-color);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; height: 100%; }

.logo { display: flex; align-items: center; gap: 10px; z-index: 10; }
.logo__text { font-size: 20px; font-weight: 800; letter-spacing: -0.02em; }
.logo__dot { color: var(--accent-cyan); }

.nav { display: flex; align-items: center; gap: 32px; }
.nav__link {
    font-size: 14px;
    font-weight: 500;
    color: var(--text-secondary);
    transition: color 0.2s;
    position: relative;
}
.nav__link:hover { color: var(--text-primary); }
.nav__link::after {
    content: '';
    position: absolute;
    bottom: -4px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-main);
    transition: width 0.3s;
}
.nav__link:hover::after { width: 100%; }

.header__actions { display: flex; align-items: center; gap: 12px; }

.burger { display: none; flex-direction: column; gap: 5px; width: 28px; z-index: 10; }
.burger span { display: block; width: 100%; height: 2px; background: var(--text-primary); border-radius: 2px; transition: all 0.3s; }
.burger--active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger--active span:nth-child(2) { opacity: 0; }
.burger--active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ========================================
   HERO
   ======================================== */
.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding-top: var(--header-height);
    overflow: hidden;
}
.hero__bg { position: absolute; inset: 0; z-index: 0; }

.hero__grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 70%);
    -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 70%);
}

.hero__particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.hero__glow { position: absolute; border-radius: 50%; filter: blur(120px); }
.hero__glow--1 { width: 600px; height: 600px; background: var(--accent-cyan); top: -200px; right: -100px; opacity: 0.1; }
.hero__glow--2 { width: 500px; height: 500px; background: var(--accent-purple); bottom: -150px; left: -100px; opacity: 0.12; }
.hero__glow--3 { width: 400px; height: 400px; background: var(--accent-pink); top: 50%; left: 30%; opacity: 0.06; }

.hero__inner {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    width: 100%;
    padding: 40px 0;
}

.hero__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-mono);
    font-size: 13px;
    color: var(--accent-cyan);
    background: rgba(0,240,255,0.06);
    border: 1px solid rgba(0,240,255,0.12);
    border-radius: 100px;
    padding: 8px 20px;
    margin-bottom: 24px;
    animation: badgeFadeIn 1s ease 0.2s both;
}

.pulse-dot {
    width: 8px;
    height: 8px;
    background: var(--accent-cyan);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(0,240,255,0.6); }
    50% { box-shadow: 0 0 0 8px rgba(0,240,255,0); }
}

@keyframes badgeFadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero__title {
    font-size: clamp(36px, 5vw, 60px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -0.03em;
    margin-bottom: 24px;
}
.hero__title-line {
    display: block;
    animation: titleSlideIn 0.8s ease both;
}
.hero__title-line:nth-child(2) { animation-delay: 0.15s; }

@keyframes titleSlideIn {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero__subtitle {
    font-size: 18px;
    color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
    animation: fadeInUp 0.8s ease 0.4s both;
}
.hero__subtitle strong { color: var(--accent-cyan); font-weight: 600; }

@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(20px); }
    to { opacity: 1; transform: translateY(0); }
}

.hero__cta {
    display: flex;
    gap: 16px;
    margin-bottom: 48px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease 0.6s both;
}

.hero__stats {
    display: flex;
    gap: 40px;
    animation: fadeInUp 0.8s ease 0.8s both;
}
.hero__stat { display: flex; flex-direction: column; gap: 4px; }
.hero__stat-value {
    font-size: 28px;
    font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.hero__stat-label { font-size: 13px; color: var(--text-muted); }

/* Radar */
.hero__visual { display: flex; align-items: center; justify-content: center; }

.radar { position: relative; width: 420px; height: 420px; }
.radar__ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(0,240,255,0.1);
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
}
.radar__ring--1 { width: 140px; height: 140px; border-color: rgba(0,240,255,0.2); }
.radar__ring--2 { width: 280px; height: 280px; }
.radar__ring--3 { width: 400px; height: 400px; border-color: rgba(0,240,255,0.06); }

.radar__sweep {
    position: absolute;
    top: 50%; left: 50%;
    width: 400px; height: 400px;
    margin-top: -200px; margin-left: -200px;
    background: conic-gradient(from 0deg, transparent 0deg, rgba(0,240,255,0.12) 30deg, transparent 30deg);
    border-radius: 50%;
    animation: radarSweep 3s linear infinite;
}
@keyframes radarSweep { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }

.radar__center {
    position: absolute;
    top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 56px; height: 56px;
    background: rgba(123,47,255,0.15);
    border: 2px solid rgba(123,47,255,0.4);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 2;
}

.radar__ai-badge {
    font-family: var(--font-mono);
    font-size: 16px;
    font-weight: 700;
    color: var(--accent-purple);
    text-shadow: 0 0 20px rgba(123,47,255,0.5);
}

.radar__target { position: absolute; animation: targetPulse 3s ease-in-out infinite; }
.radar__target--1 { top: 12%; left: 62%; animation-delay: 0s; }
.radar__target--2 { top: 55%; left: 88%; animation-delay: 0.6s; }
.radar__target--3 { top: 80%; left: 55%; animation-delay: 1.2s; }
.radar__target--4 { top: 72%; left: 18%; animation-delay: 1.8s; }
.radar__target--5 { top: 25%; left: 12%; animation-delay: 2.4s; }

.radar__dot {
    display: block;
    width: 12px; height: 12px;
    background: var(--accent-cyan);
    border-radius: 50%;
    box-shadow: 0 0 20px rgba(0,240,255,0.5);
}

.radar__target::before {
    content: attr(data-label);
    position: absolute;
    top: -28px; left: 50%;
    transform: translateX(-50%);
    font-size: 11px;
    font-family: var(--font-mono);
    color: var(--accent-cyan);
    white-space: nowrap;
    background: rgba(0,240,255,0.08);
    padding: 2px 10px;
    border-radius: 4px;
    border: 1px solid rgba(0,240,255,0.15);
}

@keyframes targetPulse {
    0%, 100% { opacity: 0.4; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.1); }
}

.hero__scroll {
    position: absolute;
    bottom: 32px; left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 1;
}
.hero__scroll span { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 2px; }

.scroll-indicator {
    width: 24px; height: 40px;
    border: 2px solid var(--border-light);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 8px;
}
.scroll-indicator__dot {
    width: 4px; height: 8px;
    background: var(--accent-cyan);
    border-radius: 2px;
    animation: scrollDot 2s ease-in-out infinite;
}
@keyframes scrollDot {
    0%, 100% { transform: translateY(0); opacity: 1; }
    50% { transform: translateY(12px); opacity: 0.3; }
}

/* ========================================
   PROOF BAR
   ======================================== */
.proof-bar {
    padding: 32px 0;
    background: var(--bg-secondary);
    border-top: 1px solid var(--border-color);
    border-bottom: 1px solid var(--border-color);
}
.proof-bar__inner { display: flex; align-items: center; justify-content: center; gap: 48px; flex-wrap: wrap; }
.proof-bar__item { display: flex; flex-direction: column; align-items: center; gap: 4px; text-align: center; }
.proof-bar__number {
    font-size: 32px; font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    font-family: var(--font-mono);
}
.proof-bar__label { font-size: 13px; color: var(--text-muted); }
.proof-bar__divider { width: 1px; height: 40px; background: var(--border-color); }

/* ========================================
   LIVE FEED
   ======================================== */
.live-feed {
    padding: 20px 0;
    background: var(--bg-primary);
    border-bottom: 1px solid var(--border-color);
    overflow: hidden;
}

.live-feed__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 16px;
}

.live-feed__indicator {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-mono);
    font-size: 11px;
    font-weight: 700;
    color: #10b981;
    background: rgba(16,185,129,0.1);
    border: 1px solid rgba(16,185,129,0.25);
    padding: 4px 12px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 1px;
}
.live-feed__dot {
    width: 6px; height: 6px;
    background: #10b981;
    border-radius: 50%;
    animation: livePulse 1.5s infinite;
}
@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}

.live-feed__title {
    font-size: 13px;
    color: var(--text-muted);
    font-family: var(--font-mono);
}

.live-feed__stream {
    display: flex;
    gap: 16px;
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 5%, black 95%, transparent 100%);
}

.feed-card {
    flex-shrink: 0;
    display: flex;
    align-items: center;
    gap: 12px;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-sm);
    padding: 10px 16px;
    font-size: 13px;
    animation: feedSlideIn 0.5s ease both;
    min-width: 280px;
}
.feed-card__icon {
    width: 32px; height: 32px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 14px;
}
.feed-card__icon--site { background: rgba(59,130,246,0.15); color: var(--accent-blue); }
.feed-card__icon--call { background: rgba(16,185,129,0.15); color: var(--accent-green); }
.feed-card__icon--geo { background: rgba(245,158,11,0.15); color: var(--accent-orange); }
.feed-card__icon--sms { background: rgba(0,240,255,0.15); color: var(--accent-cyan); }

.feed-card__text { color: var(--text-secondary); line-height: 1.4; }
.feed-card__text strong { color: var(--text-primary); font-weight: 600; }

.feed-card__time {
    font-family: var(--font-mono);
    font-size: 11px;
    color: var(--text-muted);
    margin-left: auto;
    flex-shrink: 0;
}

@keyframes feedSlideIn {
    from { opacity: 0; transform: translateX(40px); }
    to { opacity: 1; transform: translateX(0); }
}

/* ========================================
   HOW IT WORKS — Timeline Layout
   ======================================== */
.how__timeline {
    display: flex;
    flex-direction: column;
    gap: 0;
    max-width: 700px;
    margin: 0 auto;
    position: relative;
}

.how__step {
    display: flex;
    align-items: flex-start;
    gap: 24px;
    position: relative;
}

.how__step-number {
    font-family: var(--font-mono);
    font-size: 14px;
    font-weight: 700;
    color: var(--accent-cyan);
    background: rgba(0,240,255,0.08);
    border: 1px solid rgba(0,240,255,0.15);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    position: relative;
    z-index: 2;
}

.how__step-connector {
    position: absolute;
    left: 21px;
    top: 44px;
    width: 2px;
    height: calc(100% - 10px);
    background: linear-gradient(180deg, rgba(0,240,255,0.2) 0%, rgba(123,47,255,0.2) 100%);
}
.how__step-connector--last { display: none; }

.how__step-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 28px;
    flex: 1;
    margin-bottom: 20px;
    transition: all 0.3s;
}
.how__step-card:hover {
    border-color: rgba(0,240,255,0.15);
    transform: translateX(4px);
    box-shadow: var(--shadow-glow);
}

.how__icon {
    width: 48px; height: 48px;
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.how__icon--blue { background: rgba(59,130,246,0.1); color: var(--accent-blue); }
.how__icon--purple { background: rgba(123,47,255,0.1); color: var(--accent-purple); }
.how__icon--cyan { background: rgba(0,240,255,0.1); color: var(--accent-cyan); }
.how__icon--green { background: rgba(16,185,129,0.1); color: var(--accent-green); }
.how__icon--orange { background: rgba(245,158,11,0.1); color: var(--accent-orange); }

.how__step-title { font-size: 18px; font-weight: 700; margin-bottom: 8px; }
.how__step-text { font-size: 14px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 12px; }

.how__step-tag {
    font-family: var(--font-mono);
    font-size: 11px;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--accent-cyan);
    background: rgba(0,240,255,0.06);
    border: 1px solid rgba(0,240,255,0.1);
    padding: 3px 10px;
    border-radius: 4px;
    display: inline-block;
}
.how__step-tag--ai {
    color: var(--accent-purple);
    background: rgba(123,47,255,0.08);
    border-color: rgba(123,47,255,0.15);
}
.how__step-tag--result {
    color: var(--accent-orange);
    background: rgba(245,158,11,0.08);
    border-color: rgba(245,158,11,0.15);
}

/* ========================================
   AI ENGINE
   ======================================== */
.engine { background: var(--bg-secondary); }

.engine__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}

.engine__visual {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 32px;
    overflow: hidden;
}
.engine__visual::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(123,47,255,0.04) 0%, rgba(0,240,255,0.04) 100%);
    pointer-events: none;
}

.neural-net { position: relative; width: 100%; aspect-ratio: 5/4; }
.neural-net canvas { width: 100%; height: 100%; display: block; }

.neural-net__labels { position: absolute; inset: 0; pointer-events: none; }
.neural-net__label {
    position: absolute;
    font-family: var(--font-mono);
    font-size: 9px;
    padding: 3px 6px;
    border-radius: 4px;
    white-space: nowrap;
    max-width: 170px;
    overflow: hidden;
    text-overflow: ellipsis;
}
.neural-net__label--input {
    left: -4px;
    color: var(--accent-cyan);
    background: rgba(0,240,255,0.08);
    border: 1px solid rgba(0,240,255,0.12);
}
.neural-net__label--output {
    right: -4px;
    color: var(--accent-purple);
    background: rgba(123,47,255,0.08);
    border: 1px solid rgba(123,47,255,0.12);
}
.neural-net__label--result {
    position: absolute;
    right: 0;
    font-family: var(--font-mono);
    border-radius: 4px;
    color: #10b981;
    background: rgba(16,185,129,0.1);
    border: 1px solid rgba(16,185,129,0.35);
    font-size: 9px;
    font-weight: 700;
    letter-spacing: 0.3px;
    padding: 5px 8px;
    white-space: normal;
    overflow: visible;
    text-overflow: clip;
    width: 60px;
    text-align: center;
    line-height: 1.6;
    box-shadow: 0 0 12px rgba(16,185,129,0.2);
    animation: resultPulse 2.5s ease-in-out infinite;
}
@keyframes resultPulse {
    0%, 100% { box-shadow: 0 0 12px rgba(16,185,129,0.2); }
    50%       { box-shadow: 0 0 22px rgba(16,185,129,0.45); border-color: rgba(16,185,129,0.6); }
}

.engine__features {
    display: flex;
    flex-direction: column;
    gap: 28px;
}

.engine__feature {
    display: flex;
    gap: 16px;
    align-items: flex-start;
}

.engine__feature-icon {
    width: 44px; height: 44px;
    border-radius: var(--radius-sm);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.engine__feature-title {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 4px;
}
.engine__feature-text {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ========================================
   CUSTOMER JOURNEY
   ======================================== */
.journey__map {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 48px;
    position: relative;
    overflow: hidden;
}
.journey__map::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 200px;
    background: linear-gradient(180deg, rgba(0,240,255,0.03) 0%, transparent 100%);
    pointer-events: none;
}

.journey__timeline {
    display: flex;
    justify-content: space-between;
    position: relative;
    margin-bottom: 48px;
    padding: 0 20px;
}
.journey__timeline::before {
    content: '';
    position: absolute;
    top: 24px; left: 40px; right: 40px;
    height: 2px;
    background: linear-gradient(90deg, var(--accent-blue) 0%, var(--accent-purple) 33%, var(--accent-orange) 66%, var(--accent-red) 100%);
    opacity: 0.3;
}

.journey__stage { display: flex; flex-direction: column; align-items: center; gap: 12px; position: relative; z-index: 1; }
.journey__stage-icon {
    width: 48px; height: 48px;
    border-radius: 50%;
    background: var(--bg-secondary);
    border: 2px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s;
}
.journey__stage-icon--hot {
    border-color: var(--accent-orange);
    color: var(--accent-orange);
    box-shadow: 0 0 20px rgba(245,158,11,0.2);
}
.journey__stage-label { font-size: 12px; color: var(--text-muted); text-align: center; line-height: 1.4; }

.journey__channels { display: flex; flex-direction: column; gap: 20px; margin-bottom: 32px; }
.journey__channel { position: relative; }
.journey__channel-header { display: flex; align-items: center; gap: 10px; margin-bottom: 8px; font-size: 14px; font-weight: 600; }

.journey__channel-dot { width: 10px; height: 10px; border-radius: 50%; }
.journey__channel-dot--gray { background: #6b7280; }
.journey__channel-dot--yellow { background: #f59e0b; }
.journey__channel-dot--blue { background: #3b82f6; }
.journey__channel-dot--cyan { background: #00f0ff; }

.journey__channel-name--accent { color: var(--accent-cyan); font-weight: 700; }

.journey__channel-bar {
    position: relative;
    height: 44px;
    background: rgba(255,255,255,0.03);
    border-radius: var(--radius-sm);
    overflow: visible;
    margin-bottom: 6px;
}

.journey__channel-fill {
    position: absolute;
    top: 0; height: 100%;
    border-radius: var(--radius-sm);
    transition: width 1.5s cubic-bezier(0.4, 0, 0.2, 1);
}
.journey__channel-fill--gray { left: 0; width: 20%; background: linear-gradient(90deg, rgba(107,114,128,0.3), rgba(107,114,128,0.15)); border: 1px solid rgba(107,114,128,0.2); }
.journey__channel-fill--yellow { left: 0; width: 35%; background: linear-gradient(90deg, rgba(245,158,11,0.3), rgba(245,158,11,0.15)); border: 1px solid rgba(245,158,11,0.2); }
.journey__channel-fill--blue { left: 0; width: 55%; background: linear-gradient(90deg, rgba(59,130,246,0.3), rgba(59,130,246,0.15)); border: 1px solid rgba(59,130,246,0.2); }
.journey__channel-fill--cyan { left: 0; width: 85%; background: linear-gradient(90deg, rgba(0,240,255,0.3), rgba(0,240,255,0.5)); border: 1px solid rgba(0,240,255,0.4); box-shadow: 0 0 30px rgba(0,240,255,0.15); }

.journey__channel-arrow { position: absolute; right: 10px; top: 50%; transform: translateY(-50%); z-index: 2; max-width: 60%; }
.journey__miss { font-size: 11px; font-family: var(--font-mono); color: var(--text-muted); background: rgba(0,0,0,0.5); padding: 3px 10px; border-radius: 4px; line-height: 1.4; }
.journey__hit {
    display: flex; align-items: center; gap: 6px;
    font-size: 13px; font-family: var(--font-mono); font-weight: 700;
    color: var(--accent-cyan);
    background: rgba(0,240,255,0.12);
    padding: 4px 14px; border-radius: 6px;
    border: 1px solid rgba(0,240,255,0.3);
    animation: hitGlow 2s ease-in-out infinite;
}
@keyframes hitGlow {
    0%, 100% { box-shadow: 0 0 10px rgba(0,240,255,0.2); }
    50% { box-shadow: 0 0 25px rgba(0,240,255,0.4); }
}

.journey__channel-meta { display: flex; gap: 20px; padding-left: 20px; }
.journey__channel-meta--accent { color: var(--accent-cyan); }
.journey__cpl, .journey__conv { font-size: 12px; font-family: var(--font-mono); color: var(--text-muted); }
.journey__channel-meta--accent .journey__cpl,
.journey__channel-meta--accent .journey__conv { color: var(--accent-cyan); font-weight: 600; }

.journey__legend { display: flex; justify-content: center; gap: 32px; padding-top: 24px; border-top: 1px solid var(--border-color); }
.journey__legend-item { display: flex; align-items: center; gap: 8px; font-size: 12px; color: var(--text-muted); }
.journey__legend-bar { width: 32px; height: 6px; border-radius: 3px; }
.journey__legend-bar--cold { background: linear-gradient(90deg, #3b82f6, #6366f1); }
.journey__legend-bar--warm { background: linear-gradient(90deg, #f59e0b, #ef4444); }
.journey__legend-bar--hot { background: linear-gradient(90deg, #00f0ff, #7b2fff); }

.journey__bottom-cta { text-align: center; margin-top: 48px; }
.journey__bottom-cta p { font-size: 20px; color: var(--text-secondary); margin-bottom: 24px; }
.journey__bottom-cta strong { color: var(--accent-cyan); }

/* ========================================
   BENEFITS
   ======================================== */
.benefits__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.benefit-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px 28px;
    transition: all 0.3s;
}
.benefit-card:hover {
    border-color: rgba(0,240,255,0.12);
    transform: translateY(-4px);
    box-shadow: var(--shadow-card);
}

.benefit-card--featured {
    background: linear-gradient(135deg, rgba(0,240,255,0.06) 0%, rgba(123,47,255,0.06) 100%);
    border-color: rgba(0,240,255,0.15);
}
.benefit-card--featured:hover { border-color: rgba(0,240,255,0.3); box-shadow: var(--shadow-glow); }

.benefit-card__icon { margin-bottom: 20px; }
.benefit-card__title { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.benefit-card__text { font-size: 15px; color: var(--text-secondary); line-height: 1.7; }

/* ========================================
   COMPARISON TABLE
   ======================================== */
.compare { background: var(--bg-secondary); }
.compare__table-wrap { overflow-x: auto; border-radius: var(--radius-lg); border: 1px solid var(--border-color); }
.compare__table { width: 100%; border-collapse: collapse; font-size: 15px; }
.compare__table thead { background: var(--bg-card); }
.compare__table th { padding: 20px 24px; text-align: left; font-weight: 600; font-size: 14px; color: var(--text-secondary); border-bottom: 1px solid var(--border-color); white-space: nowrap; }
.compare__table td { padding: 18px 24px; border-bottom: 1px solid var(--border-color); color: var(--text-secondary); }
.compare__table tbody tr:last-child td { border-bottom: none; }
.compare__table tbody tr:hover { background: rgba(255,255,255,0.02); }
.compare__highlight { background: rgba(0,240,255,0.04) !important; color: var(--accent-cyan) !important; border-left: 2px solid rgba(0,240,255,0.2); }
.compare__table th.compare__highlight { color: var(--accent-cyan) !important; font-weight: 700; font-size: 15px; }

/* ========================================
   SCENARIOS
   ======================================== */
.scenarios__grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }

.scenario-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 36px;
    transition: all 0.3s;
    position: relative;
}
.scenario-card:hover { border-color: rgba(0,240,255,0.12); transform: translateY(-2px); }

.scenario-card__number {
    font-family: var(--font-mono);
    font-size: 48px; font-weight: 800;
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.15;
    position: absolute;
    top: 20px; right: 28px;
}
.scenario-card__title { font-size: 20px; font-weight: 700; margin-bottom: 12px; }
.scenario-card__text { font-size: 15px; color: var(--text-secondary); line-height: 1.7; margin-bottom: 20px; }
.scenario-card__example {
    font-size: 13px; color: var(--text-muted);
    background: rgba(0,240,255,0.04);
    border-left: 3px solid rgba(0,240,255,0.2);
    padding: 12px 16px;
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
}
.scenario-card__example-label { font-weight: 600; color: var(--accent-cyan); }

/* ========================================
   TESTIMONIALS
   ======================================== */
.testimonials { background: var(--bg-secondary); }
.testimonials__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }

.testimonial-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-lg);
    padding: 32px;
    display: flex;
    flex-direction: column;
    transition: all 0.3s;
}
.testimonial-card:hover { border-color: rgba(0,240,255,0.12); transform: translateY(-2px); }

.testimonial-card__stars { color: var(--accent-orange); font-size: 16px; margin-bottom: 16px; letter-spacing: 2px; }
.testimonial-card__text {
    font-size: 15px; color: var(--text-secondary);
    line-height: 1.7;
    margin-bottom: 24px;
    flex: 1;
    font-style: italic;
}

.testimonial-card__author { display: flex; align-items: center; gap: 12px; margin-bottom: 16px; }
.testimonial-card__avatar {
    width: 44px; height: 44px;
    border-radius: 50%;
    background: var(--gradient-main);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
    font-weight: 700;
    color: #0a0e1a;
    flex-shrink: 0;
}
.testimonial-card__name { font-size: 14px; font-weight: 700; }
.testimonial-card__role { font-size: 12px; color: var(--text-muted); }

.testimonial-card__metric {
    display: flex;
    align-items: baseline;
    gap: 8px;
    padding-top: 16px;
    border-top: 1px solid var(--border-color);
}
.testimonial-card__metric-value {
    font-size: 28px; font-weight: 800;
    font-family: var(--font-mono);
    background: var(--gradient-main);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.testimonial-card__metric-label { font-size: 12px; color: var(--text-muted); }

/* ========================================
   PRICING
   ======================================== */
.pricing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; align-items: start; }

.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-xl);
    padding: 40px 32px;
    transition: all 0.3s;
    position: relative;
}
.pricing-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-card); }

.pricing-card--featured {
    background: linear-gradient(180deg, rgba(0,240,255,0.08) 0%, var(--bg-card) 40%);
    border-color: rgba(0,240,255,0.25);
    transform: scale(1.04);
    z-index: 2;
}
.pricing-card--featured:hover { transform: scale(1.04) translateY(-4px); box-shadow: var(--shadow-glow); }

.pricing-card__badge {
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-main);
    color: #0a0e1a;
    font-size: 12px; font-weight: 700;
    padding: 4px 20px;
    border-radius: 100px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-card__header { margin-bottom: 24px; }
.pricing-card__name { display: block; font-size: 24px; font-weight: 800; margin-bottom: 4px; }
.pricing-card__desc { font-size: 14px; color: var(--text-muted); }

.pricing-card__price {
    display: flex; align-items: baseline; gap: 4px;
    margin-bottom: 32px; padding-bottom: 32px;
    border-bottom: 1px solid var(--border-color);
}
.pricing-card__amount { font-size: 44px; font-weight: 900; line-height: 1; letter-spacing: -0.02em; }
.pricing-card__currency { font-size: 16px; color: var(--text-muted); font-weight: 500; }

.pricing-card__features { list-style: none; display: flex; flex-direction: column; gap: 14px; margin-bottom: 32px; }
.pricing-card__feature {
    display: flex; align-items: center; gap: 12px;
    font-size: 14px; color: var(--text-secondary);
    padding-left: 32px;
    position: relative;
}
.pricing-card__feature::before {
    content: '';
    position: absolute;
    left: 0;
    width: 20px; height: 20px;
}
.pricing-card__feature--check::before {
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M5 10l3 3 7-7' stroke='%2300f0ff' stroke-width='2' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
}
.pricing-card__feature--cross {
    color: var(--text-muted);
    opacity: 0.5;
}
.pricing-card__feature--cross::before {
    background-image: url("data:image/svg+xml,%3Csvg width='20' height='20' viewBox='0 0 20 20' fill='none' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M6 6l8 8M14 6l-8 8' stroke='%233a3f5c' stroke-width='2' stroke-linecap='round'/%3E%3C/svg%3E");
}

.pricing__note { text-align: center; font-size: 13px; color: var(--text-muted); margin-top: 32px; }

/* ========================================
   INTEGRATIONS MARQUEE
   ======================================== */
.integrations { padding: 48px 0; border-top: 1px solid var(--border-color); border-bottom: 1px solid var(--border-color); }
.integrations__label {
    text-align: center; font-size: 13px; color: var(--text-muted);
    text-transform: uppercase; letter-spacing: 2px;
    font-family: var(--font-mono);
    margin-bottom: 24px;
}

.marquee { overflow: hidden; position: relative; }
.marquee::before,
.marquee::after {
    content: '';
    position: absolute;
    top: 0; bottom: 0;
    width: 100px;
    z-index: 2;
}
.marquee::before { left: 0; background: linear-gradient(90deg, var(--bg-primary), transparent); }
.marquee::after { right: 0; background: linear-gradient(90deg, transparent, var(--bg-primary)); }

.marquee__track {
    display: flex;
    gap: 32px;
    animation: marqueeScroll 30s linear infinite;
    width: max-content;
}
.marquee__item {
    font-size: 14px; font-weight: 600;
    color: var(--text-muted);
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    padding: 10px 24px;
    border-radius: 100px;
    white-space: nowrap;
    flex-shrink: 0;
}

@keyframes marqueeScroll {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

/* ========================================
   FAQ
   ======================================== */
.faq { background: var(--bg-secondary); }
.faq__list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 12px; }

.faq__item {
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.3s;
}
.faq__item--open { border-color: rgba(0,240,255,0.15); }

.faq__question {
    width: 100%;
    display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px;
    font-size: 16px; font-weight: 600;
    color: var(--text-primary);
    text-align: left;
    transition: color 0.2s;
}
.faq__question:hover { color: var(--accent-cyan); }

.faq__chevron { color: var(--text-muted); transition: transform 0.3s; flex-shrink: 0; }
.faq__item--open .faq__chevron { transform: rotate(180deg); color: var(--accent-cyan); }

.faq__answer { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq__item--open .faq__answer { max-height: 400px; }
.faq__answer p { padding: 0 24px 20px; font-size: 15px; color: var(--text-secondary); line-height: 1.7; }
.faq__answer strong { color: var(--text-primary); }

/* ========================================
   CTA FINAL
   ======================================== */
.cta-final__inner {
    position: relative;
    border-radius: var(--radius-xl);
    overflow: hidden;
    padding: 80px 48px;
    text-align: center;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
}
.cta-final__bg { position: absolute; inset: 0; z-index: 0; }
.cta-final__glow {
    position: absolute;
    top: -100px; left: 50%;
    transform: translateX(-50%);
    width: 600px; height: 400px;
    background: radial-gradient(ellipse, rgba(0,240,255,0.12) 0%, rgba(123,47,255,0.08) 40%, transparent 70%);
    filter: blur(60px);
}
.cta-final__content { position: relative; z-index: 1; }
.cta-final__title { font-size: clamp(32px, 4vw, 48px); font-weight: 900; line-height: 1.2; margin-bottom: 20px; letter-spacing: -0.02em; }
.cta-final__text { font-size: 18px; color: var(--text-secondary); max-width: 560px; margin: 0 auto 36px; line-height: 1.7; }
.cta-final__actions { display: flex; align-items: center; justify-content: center; gap: 16px; flex-wrap: wrap; margin-bottom: 20px; }
.cta-final__guarantee {
    font-size: 13px;
    color: var(--accent-green);
    font-family: var(--font-mono);
}

/* ========================================
   EASY START SECTION
   ======================================== */
.start-easy { background: var(--bg-primary); }

.easy-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 0;
    align-items: stretch;
    margin-top: 56px;
}

.easy-step {
    display: flex;
    align-items: stretch;
    gap: 0;
    position: relative;
}
.easy-step__arrow {
    font-size: 24px;
    color: var(--accent-cyan);
    opacity: 0.4;
    padding-top: 48px;
    flex-shrink: 0;
    margin: 0 -4px;
}
.easy-step--launch .easy-step__arrow { display: none; }

.easy-step__num {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    min-width: 32px;
    height: 32px;
    padding: 0 10px;
    border-radius: 999px;
    background: linear-gradient(135deg, #00f0ff, #7b2fff);
    color: #0a0e1a;
    font-weight: 800;
    font-size: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-mono);
    box-shadow: 0 0 16px rgba(0,240,255,0.3);
    z-index: 1;
}
.easy-step__num--green {
    background: linear-gradient(135deg, #10b981, #059669);
    box-shadow: 0 0 16px rgba(16,185,129,0.4);
}

.easy-step__card {
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    padding: 32px 16px 20px;
    flex: 1;
    display: flex;
    flex-direction: column;
    transition: border-color 0.3s, box-shadow 0.3s;
}
.easy-step__mock {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}
.easy-step__card:hover {
    border-color: rgba(0,240,255,0.2);
    box-shadow: 0 8px 32px rgba(0,240,255,0.06);
}
.easy-step__card--launch {
    border-color: rgba(16,185,129,0.25);
    background: rgba(16,185,129,0.04);
    text-align: center;
}
.easy-step__card--launch:hover {
    border-color: rgba(16,185,129,0.4);
    box-shadow: 0 8px 32px rgba(16,185,129,0.1);
}

.easy-step__launch-icon { font-size: 36px; margin-bottom: 8px; }
.easy-step__title { font-size: 15px; font-weight: 700; margin-bottom: 6px; color: var(--text-primary); }
.easy-step__desc { font-size: 12px; color: var(--text-muted); line-height: 1.6; margin-bottom: 16px; }

/* Mock UI elements */
.mock-tabs { display: flex; gap: 4px; margin-bottom: 10px; }
.mock-tab {
    font-size: 11px; padding: 5px 10px; border-radius: 6px;
    border: 1px solid var(--border-color); background: transparent;
    color: var(--text-muted); cursor: default; font-family: var(--font-mono);
}
.mock-tab--active {
    background: rgba(0,240,255,0.08);
    border-color: rgba(0,240,255,0.25);
    color: var(--accent-cyan);
}

.mock-input-group { display: flex; flex-direction: column; gap: 6px; }
.mock-input {
    display: flex; align-items: center; gap: 6px;
    background: var(--bg-primary); border: 1px solid var(--border-color);
    border-radius: 7px; padding: 7px 10px; font-size: 11px;
    font-family: var(--font-mono); color: var(--text-muted);
}
.mock-input--filled { border-color: rgba(0,240,255,0.2); color: var(--text-secondary); }
.mock-input--typing { border-color: rgba(0,240,255,0.35); color: var(--text-primary); }
.mock-input__text { flex: 1; overflow: hidden; text-overflow: ellipsis; white-space: nowrap; }
.mock-input__check { color: var(--accent-green); font-weight: 700; flex-shrink: 0; }
.mock-input__icon { font-size: 13px; flex-shrink: 0; }
.mock-cursor {
    display: inline-block; width: 1px; height: 11px;
    background: var(--accent-cyan); margin-left: 1px; vertical-align: middle;
    animation: blink 1s step-end infinite;
}
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }
.mock-add-btn {
    font-size: 11px; color: var(--accent-cyan); font-family: var(--font-mono);
    text-align: left; padding: 4px 10px; cursor: default;
    border: 1px dashed rgba(0,240,255,0.2); border-radius: 7px;
    background: rgba(0,240,255,0.03);
}

.mock-source-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 6px; }
.mock-source {
    display: flex; flex-direction: column; align-items: center; gap: 4px;
    position: relative;
    background: var(--bg-primary); border: 1px solid var(--border-color);
    border-radius: 8px; padding: 10px 6px; text-align: center; cursor: default;
    transition: all 0.2s;
}
.mock-source--selected {
    border-color: rgba(0,240,255,0.3);
    background: rgba(0,240,255,0.05);
}
.mock-source__icon { font-size: 18px; }
.mock-source__label { font-size: 10px; color: var(--text-muted); font-family: var(--font-mono); line-height: 1.3; }
.mock-source--selected .mock-source__label { color: var(--accent-cyan); }
.mock-source__check {
    position: absolute; top: 4px; right: 6px;
    color: var(--accent-green); font-size: 11px; font-weight: 700;
}

.mock-params { display: flex; flex-direction: column; gap: 12px; }
.mock-param__label { font-size: 11px; color: var(--text-muted); font-family: var(--font-mono); margin-bottom: 6px; }
.mock-param__row { display: flex; align-items: center; gap: 8px; }
.mock-date {
    padding: 6px 10px; border-radius: 7px; font-size: 11px;
    font-family: var(--font-mono); border: 1px solid var(--border-color);
    background: var(--bg-primary); color: var(--text-muted);
}
.mock-date--filled { border-color: rgba(0,240,255,0.2); color: var(--text-secondary); }

.mock-slider-wrap { width: 100%; }
.mock-slider__track {
    position: relative; height: 4px; background: var(--border-color);
    border-radius: 2px; margin-bottom: 6px;
}
.mock-slider__fill { position: absolute; left: 0; top: 0; height: 100%; border-radius: 2px; background: linear-gradient(90deg,#00f0ff,#7b2fff); }
.mock-slider__thumb {
    position: absolute; top: 50%; transform: translate(-50%,-50%);
    width: 14px; height: 14px; border-radius: 50%;
    background: #fff; border: 2px solid var(--accent-cyan);
    box-shadow: 0 0 8px rgba(0,240,255,0.4);
}
.mock-slider__vals { display: flex; justify-content: space-between; font-size: 10px; color: var(--text-muted); font-family: var(--font-mono); margin-top: 4px; }
.mock-slider__current { color: var(--accent-cyan); font-weight: 700; }
.mock-range {
    width: 100%; height: 4px; border-radius: 2px; outline: none; border: none;
    background: linear-gradient(90deg, var(--accent-cyan) 30%, var(--border-color) 30%);
    cursor: pointer; accent-color: var(--accent-cyan);
}
.mock-range::-webkit-slider-thumb {
    width: 16px; height: 16px; background: #fff;
    border: 2px solid var(--accent-cyan); border-radius: 50%;
    box-shadow: 0 0 8px rgba(0,240,255,0.4);
}
.mock-range::-moz-range-thumb {
    width: 16px; height: 16px; background: #fff;
    border: 2px solid var(--accent-cyan); border-radius: 50%;
    box-shadow: 0 0 8px rgba(0,240,255,0.4);
}

/* SMS phone mock */
.mock-sms-phone { display: flex; justify-content: center; }
.mock-phone-frame {
    width: 160px;
    background: #1a1f3a;
    border-radius: 20px;
    border: 2px solid rgba(255,255,255,0.1);
    padding: 16px 10px 14px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.4);
}
.mock-phone-notch {
    width: 40px; height: 5px; background: rgba(255,255,255,0.1);
    border-radius: 3px; margin: 0 auto 12px;
}
.mock-phone-screen { background: #0a0e1a; border-radius: 10px; padding: 10px 8px; }
.mock-sms-bubble {
    background: #1e2344;
    border-radius: 10px 10px 10px 2px;
    padding: 10px;
    border-left: 2px solid var(--accent-cyan);
}
.mock-sms-from { font-size: 9px; color: var(--accent-cyan); font-family: var(--font-mono); margin-bottom: 5px; font-weight: 700; }
.mock-sms-text { font-size: 10px; color: var(--text-secondary); line-height: 1.5; }
.mock-sms-time { font-size: 9px; color: var(--text-muted); margin-top: 6px; text-align: right; font-family: var(--font-mono); }

/* Launch button mock */
.mock-launch-btn {
    position: relative; overflow: hidden;
    display: inline-flex; align-items: center; gap: 8px;
    padding: 14px 24px; border-radius: 50px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: #fff; font-size: 14px; font-weight: 700;
    cursor: pointer; margin-bottom: 16px; width: 100%;
    justify-content: center; text-decoration: none;
    box-shadow: 0 4px 24px rgba(16,185,129,0.35);
    animation: launchPulse 2.5s ease-in-out infinite;
}
.mock-launch-btn:hover { background: linear-gradient(135deg, #059669, #047857); }
.mock-launch-btn__glow {
    position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.15) 50%, transparent 100%);
    animation: shimmer 2.5s infinite;
}
@keyframes launchPulse {
    0%,100% { box-shadow: 0 4px 24px rgba(16,185,129,0.35); }
    50%      { box-shadow: 0 4px 40px rgba(16,185,129,0.6); }
}
@keyframes shimmer {
    0%   { transform: translateX(-100%); }
    100% { transform: translateX(100%); }
}

.mock-launch-stats { display: flex; justify-content: center; gap: 20px; }
.mock-launch-stat { display: flex; flex-direction: column; align-items: center; gap: 2px; }
.mock-launch-stat__num { font-size: 18px; font-weight: 800; font-family: var(--font-mono); color: var(--accent-green); }
.mock-launch-stat span:last-child { font-size: 10px; color: var(--text-muted); }

@media (max-width: 1100px) {
    .easy-steps { grid-template-columns: repeat(3, 1fr); gap: 24px; }
    .easy-step { flex-direction: column; }
    .easy-step__arrow { display: none; }
}
@media (max-width: 700px) {
    .easy-steps { grid-template-columns: 1fr; gap: 20px; }
}

/* ========================================
   FOOTER
   ======================================== */
.footer { padding: 60px 0 32px; border-top: 1px solid var(--border-color); }
.footer__inner { display: grid; grid-template-columns: 280px 1fr; gap: 60px; margin-bottom: 40px; }
.footer__tagline { font-size: 14px; color: var(--text-muted); margin-top: 12px; }
.footer__links { display: grid; grid-template-columns: repeat(3, 1fr); gap: 32px; }
.footer__col { display: flex; flex-direction: column; gap: 10px; }
.footer__col-title { font-size: 14px; font-weight: 700; margin-bottom: 8px; color: var(--text-primary); }
.footer__col a { font-size: 14px; color: var(--text-muted); transition: color 0.2s; }
.footer__col a:hover { color: var(--accent-cyan); }
.footer__requisites {
    margin: 24px 0 0;
    padding: 20px 24px;
    background: rgba(255,255,255,0.02);
    border: 1px solid var(--border-color);
    border-radius: 10px;
}
.footer__requisites-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 16px 32px;
}
.footer__requisites-grid > div {
    display: flex;
    flex-direction: column;
    gap: 2px;
}
.footer__req-label {
    font-size: 10px;
    text-transform: uppercase;
    letter-spacing: 1px;
    color: var(--text-muted);
    font-family: var(--font-mono);
}
.footer__req-value {
    font-size: 12px;
    font-family: var(--font-mono);
    color: var(--text-secondary);
}
.footer__bottom { display: flex; justify-content: space-between; align-items: center; padding-top: 24px; margin-top: 20px; border-top: 1px solid var(--border-color); font-size: 13px; color: var(--text-muted); }

/* ========================================
   MODAL
   ======================================== */
.modal { position: fixed; inset: 0; z-index: 9999; display: flex; align-items: center; justify-content: center; opacity: 0; visibility: hidden; transition: all 0.3s; }
.modal--open { opacity: 1; visibility: visible; }
.modal__overlay { position: absolute; inset: 0; background: rgba(0,0,0,0.7); backdrop-filter: blur(8px); }
.modal__content { position: relative; background: var(--bg-secondary); border: 1px solid var(--border-color); border-radius: var(--radius-xl); padding: 48px 40px; width: 100%; max-width: 440px; transform: translateY(20px); transition: transform 0.3s; }
.modal--open .modal__content { transform: translateY(0); }
.modal__close { position: absolute; top: 16px; right: 16px; color: var(--text-muted); width: 36px; height: 36px; display: flex; align-items: center; justify-content: center; border-radius: 50%; transition: all 0.2s; }
.modal__close:hover { background: rgba(255,255,255,0.05); color: var(--text-primary); }
.modal__title { font-size: 24px; font-weight: 800; margin-bottom: 28px; text-align: center; }
.form-group { margin-bottom: 20px; }
.form-group label { display: block; font-size: 13px; font-weight: 600; color: var(--text-secondary); margin-bottom: 8px; }
.form-group input { width: 100%; padding: 14px 18px; background: var(--bg-card); border: 1px solid var(--border-color); border-radius: var(--radius-sm); color: var(--text-primary); font-size: 15px; font-family: inherit; transition: border-color 0.2s; outline: none; }
.form-group input:focus { border-color: var(--accent-cyan); box-shadow: 0 0 0 3px rgba(0,240,255,0.1); }
.form-group input::placeholder { color: var(--text-muted); }
.modal__form .btn { margin-top: 8px; }
.modal__link { display: block; text-align: center; margin-top: 16px; font-size: 13px; color: var(--accent-cyan); transition: opacity 0.2s; }
.modal__link:hover { opacity: 0.8; }

/* ========================================
   RESPONSIVE
   ======================================== */
@media (max-width: 1024px) {
    .hero__inner { grid-template-columns: 1fr; text-align: center; }
    .hero__subtitle { margin: 0 auto 36px; }
    .hero__cta { justify-content: center; }
    .hero__stats { justify-content: center; }
    .hero__visual { display: none; }

    .engine__grid { grid-template-columns: 1fr; }
    .engine__visual { order: 2; }

    .benefits__grid { grid-template-columns: repeat(2, 1fr); }
    .testimonials__grid { grid-template-columns: 1fr; max-width: 500px; margin: 0 auto; }

    .pricing__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto; }
    .pricing-card--featured { transform: none; }
    .pricing-card--featured:hover { transform: translateY(-4px); }

    .footer__inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    .nav { display: none; }
    .header__actions .btn--ghost { display: none; }
    .burger { display: flex; }

    .nav--open {
        display: flex; flex-direction: column;
        position: fixed; inset: 0;
        background: var(--bg-primary);
        z-index: 5;
        align-items: center; justify-content: center;
        gap: 24px;
    }
    .nav--open .nav__link { font-size: 20px; }

    .hero__title { font-size: 32px; }
    .hero__stats { flex-direction: column; gap: 16px; align-items: center; }

    .how__step { flex-direction: column; }
    .how__step-connector { display: none; }
    .how__step-number { margin-bottom: 8px; }

    .benefits__grid { grid-template-columns: 1fr; }
    .scenarios__grid { grid-template-columns: 1fr; }

    .journey__map { padding: 24px 16px; }
    .journey__timeline { flex-wrap: wrap; gap: 16px; justify-content: center; }
    .journey__timeline::before { display: none; }
    .journey__legend { flex-wrap: wrap; gap: 16px; }

    .compare__table { font-size: 13px; }
    .compare__table th, .compare__table td { padding: 12px 14px; }

    .footer__links { grid-template-columns: 1fr; gap: 24px; }
    .footer__bottom { flex-direction: column; gap: 8px; text-align: center; }

    .cta-final__inner { padding: 48px 24px; }
    .proof-bar__inner { gap: 24px; }
    .proof-bar__divider { display: none; }
    .proof-bar__number { font-size: 24px; }
}

@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .section { padding: 64px 0; }
    .section__title { font-size: 28px; }
    .hero { min-height: auto; padding: 120px 0 60px; }
    .hero__badge { font-size: 11px; padding: 6px 14px; }
}

/* ========================================
   ANIMATIONS
   ======================================== */
.fade-up {
    opacity: 0;
    transform: translateY(30px);
    transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: 0.01ms !important;
        transition-duration: 0.01ms !important;
    }
}
