.hp-field { position: absolute; left: -9999px; opacity: 0; height: 0; width: 0; overflow: hidden; }

/* ========== RESET & BASE ========== */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; -webkit-user-select: none; -moz-user-select: none; -ms-user-select: none; user-select: none; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: #050816;
    color: #cdd5e0;
    line-height: 1.65;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    cursor: none;
}

a { color: inherit; text-decoration: none; cursor: none; }
ul, ol { list-style: none; }
img { max-width: 100%; display: block; }
button, input { cursor: none; }
input, textarea { -webkit-user-select: text; -moz-user-select: text; -ms-user-select: text; user-select: text; }

::selection { background: rgba(99, 102, 241, 0.4); color: #fff; }

/* ========== CUSTOM CURSOR ========== */
.cursor {
    width: 20px; height: 20px;
    border: 2px solid rgba(99, 102, 241, 0.8);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none;
    z-index: 99999;
    transition: width 0.3s, height 0.3s, border-color 0.3s, transform 0.15s;
    transform: translate(-50%, -50%);
    mix-blend-mode: difference;
}
.cursor.hover {
    width: 50px; height: 50px;
    border-color: rgba(168, 85, 247, 0.8);
    background: rgba(99, 102, 241, 0.1);
}
.cursor-trail {
    width: 8px; height: 8px;
    background: rgba(99, 102, 241, 0.6);
    border-radius: 50%;
    position: fixed; top: 0; left: 0;
    pointer-events: none;
    z-index: 99998;
    transform: translate(-50%, -50%);
    transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ========== SCROLL PROGRESS ========== */
.scroll-progress {
    position: fixed; top: 0; left: 0;
    height: 3px; width: 0%;
    background: linear-gradient(90deg, #6366f1, #a855f7, #ec4899, #6366f1);
    background-size: 300% 100%;
    animation: gradient-shift 3s ease infinite;
    z-index: 10000;
    transition: width 0.1s linear;
}

/* ========== PARTICLES ========== */
.particles-canvas {
    position: fixed; inset: 0;
    z-index: 0;
    pointer-events: none;
    opacity: 0.5;
}

/* ========== CONTAINER ========== */
.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 24px;
    position: relative;
    z-index: 1;
}
.text-center { text-align: center; }

/* ========== KEYFRAMES ========== */
@keyframes float {
    0%, 100% { transform: translate(var(--x), var(--y)) translateY(0) rotate(0deg); }
    33% { transform: translate(var(--x), var(--y)) translateY(-20px) rotate(5deg); }
    66% { transform: translate(var(--x), var(--y)) translateY(10px) rotate(-3deg); }
}
@keyframes float-simple {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-15px); }
}
@keyframes rotate { from { transform: rotate(0deg); } to { transform: rotate(360deg); } }
@keyframes rotate-reverse { from { transform: rotate(360deg); } to { transform: rotate(0deg); } }
@keyframes morph {
    0%, 100% { border-radius: 60% 40% 30% 70% / 60% 30% 70% 40%; }
    25% { border-radius: 30% 60% 70% 40% / 50% 60% 30% 60%; }
    50% { border-radius: 50% 50% 40% 60% / 40% 50% 60% 50%; }
    75% { border-radius: 40% 60% 50% 50% / 60% 40% 50% 60%; }
}
@keyframes gradient-shift {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}
@keyframes shimmer {
    0% { transform: translateX(-100%) skewX(-15deg); }
    100% { transform: translateX(200%) skewX(-15deg); }
}
@keyframes pulse-ring {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}
@keyframes marquee {
    from { transform: translateX(0); }
    to { transform: translateX(-100%); }
}
@keyframes marquee-reverse {
    from { transform: translateX(-100%); }
    to { transform: translateX(0); }
}
@keyframes slide-up {
    from { transform: translateY(50px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}
@keyframes glow-pulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}
@keyframes border-dance {
    0% { background-position: 0% 0%; }
    100% { background-position: 300% 0%; }
}
@keyframes scroll-wheel {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(8px); opacity: 0; }
}
@keyframes badge-pulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(99,102,241,0.4); }
    50% { box-shadow: 0 0 0 8px rgba(99,102,241,0); }
}
@keyframes dot-ping {
    0% { transform: scale(1); opacity: 0.7; }
    100% { transform: scale(3); opacity: 0; }
}

/* ========== HEADER ========== */
.header {
    position: fixed; top: 0; left: 0; right: 0;
    z-index: 1000;
    padding: 16px 0;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.header.scrolled {
    background: rgba(5, 8, 22, 0.85);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border-bottom: 1px solid rgba(99, 102, 241, 0.1);
    padding: 10px 0;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.3);
}
.header__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; }

.logo { display: flex; align-items: center; gap: 10px; }
.logo__icon { display: flex; align-items: center; }
.logo__icon--sm svg { width: 32px; height: 32px; }
.logo__text { font-family: 'Space Grotesk', 'Inter', sans-serif; font-size: 1.25rem; font-weight: 700; color: #fff; letter-spacing: 0.5px; }
.logo__accent { color: #a855f7; }

.nav { display: flex; gap: 32px; }
.nav__link {
    color: rgba(255,255,255,0.7); font-size: 0.9rem; font-weight: 500;
    transition: color 0.3s; position: relative;
}
.nav__link::after {
    content: ''; position: absolute; bottom: -4px; left: 0;
    width: 0; height: 2px;
    background: linear-gradient(90deg, #6366f1, #a855f7);
    transition: width 0.3s;
}
.nav__link:hover { color: #fff; }
.nav__link:hover::after { width: 100%; }
/* Dropdown menu */.nav__dropdown { position: relative; }.nav__link--has-dropdown { display: inline-flex; align-items: center; gap: 4px; }.nav__link--has-dropdown svg { transition: transform 0.3s; }.nav__dropdown:hover .nav__link--has-dropdown svg { transform: rotate(180deg); }.nav__dropdown-menu::before { content: ""; position: absolute; top: -16px; left: 0; right: 0; height: 16px; }.nav__dropdown-menu {    position: absolute; top: calc(100% + 12px); left: 50%; transform: translateX(-50%) translateY(8px);    min-width: 220px; padding: 8px 0;    background: rgba(15, 18, 35, 0.97); backdrop-filter: blur(20px);    border: 1px solid rgba(99,102,241,0.15); border-radius: 12px;    box-shadow: 0 12px 40px rgba(0,0,0,0.5);    opacity: 0; visibility: hidden; pointer-events: none;    transition: opacity 0.25s, transform 0.25s, visibility 0.25s;    z-index: 1000;}.nav__dropdown:hover .nav__dropdown-menu {    opacity: 1; visibility: visible; pointer-events: auto; transform: translateX(-50%) translateY(0);}.nav__dropdown-item {    display: block; padding: 10px 20px;    font-size: 0.85rem; font-weight: 500;    color: rgba(255,255,255,0.7);    transition: background 0.2s, color 0.2s;    white-space: nowrap;}.nav__dropdown-item:hover {    background: rgba(99,102,241,0.1); color: #fff;}

.header__tg {
    display: flex; align-items: center; justify-content: center;
    color: rgba(255,255,255,.6); transition: color .3s, transform .3s;
}
.header__tg:hover { color: #a855f7; transform: scale(1.15); }

.header__cta { display: none; }
@media (min-width: 900px) { .header__cta { display: inline-flex; } }
@media (max-width: 600px) {
    .header__inner { gap: 12px; }
    .logo__text { font-size: 1rem; }
}

.burger {
    display: none; flex-direction: column; gap: 5px;
    background: none; border: none; padding: 4px;
}
.burger span {
    display: block; width: 24px; height: 2px;
    background: #fff; border-radius: 2px;
    transition: all 0.3s;
}
.burger.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
.burger.active span:nth-child(2) { opacity: 0; }
.burger.active span:nth-child(3) { transform: rotate(-45deg) translate(5px, -5px); }

@media (max-width: 899px) {
    .burger { display: flex; }
    .nav {
        position: fixed; inset: 0; top: 70px;
        background: rgba(5, 8, 22, 0.97);
        backdrop-filter: blur(30px);
        flex-direction: column; align-items: center; justify-content: center;
        gap: 40px; transform: translateX(100%);
        transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    }
    .nav.active { transform: translateX(0); }
    .nav__link { font-size: 1.3rem; }
.nav__dropdown { width: 100%; text-align: center; }    .nav__dropdown-menu::before { content: ""; position: absolute; top: -16px; left: 0; right: 0; height: 16px; }.nav__dropdown-menu {        position: static; transform: none; opacity: 1; visibility: visible; pointer-events: auto;        min-width: unset; background: rgba(99,102,241,0.06); border: none; box-shadow: none;        margin-top: 12px; padding: 4px 0; border-radius: 8px;        max-height: 0; overflow: hidden; transition: max-height 0.4s ease;    }    .nav__dropdown.active .nav__dropdown-menu { max-height: 400px; }    .nav__dropdown-item { padding: 10px 16px; font-size: 1rem; }
}

/* ========== SECTION COMMON ========== */
.section { padding: 100px 0; position: relative; overflow: hidden; }
.section:nth-child(odd) { background: rgba(10, 14, 30, 0.5); }

.section-header { text-align: center; margin-bottom: 56px; }
.section-tag {
    display: inline-flex; align-items: center;
    background: linear-gradient(135deg, rgba(99,102,241,0.15), rgba(168,85,247,0.15));
    border: 1px solid rgba(99,102,241,0.25);
    padding: 6px 18px; border-radius: 100px;
    font-size: 0.8rem; font-weight: 600; color: #a78bfa;
    text-transform: uppercase; letter-spacing: 1.5px;
    margin-bottom: 16px;
}
.section__title {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: clamp(1.8rem, 4vw, 2.6rem);
    font-weight: 800; color: #fff;
    line-height: 1.2; margin-bottom: 16px;
}
.section__subtitle { color: #8892a8; font-size: 1.05rem; max-width: 640px; margin: 0 auto; }

/* Section blobs */
.section__blob {
    position: absolute; width: 500px; height: 500px;
    border-radius: 50%; filter: blur(120px);
    pointer-events: none; z-index: 0;
    animation: glow-pulse 6s ease-in-out infinite;
}
.section__blob--1 { background: rgba(99, 102, 241, 0.08); top: -200px; right: -200px; }
.section__blob--2 { background: rgba(168, 85, 247, 0.06); bottom: -200px; left: -200px; }
.section__blob--3 { background: rgba(236, 72, 153, 0.05); top: 50%; right: -250px; }
.section__blob--4 { background: rgba(99, 102, 241, 0.07); top: -150px; left: -200px; }
.section__blob--5 { background: rgba(168, 85, 247, 0.06); bottom: -200px; right: -200px; }
.section__blob--6 { background: rgba(99, 102, 241, 0.05); top: 0; left: 50%; transform: translateX(-50%); }

/* ========== GLASS CARD ========== */
.glass-card {
    background: rgba(15, 20, 40, 0.8);
    border: 1px solid rgba(99, 102, 241, 0.12);
    border-radius: 20px;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
    overflow: hidden;
}
.glass-card::before {
    content: '';
    position: absolute; top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), transparent);
    animation: shimmer 6s ease-in-out infinite;
    pointer-events: none;
}
.glass-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 8px 40px rgba(99, 102, 241, 0.1), inset 0 1px 0 rgba(255,255,255,0.05);
}

/* ========== REVEAL ANIMATIONS ========== */
.reveal {
    opacity: 0;
    transform: translateY(40px);
    transition: opacity 0.8s cubic-bezier(0.16, 1, 0.3, 1), transform 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}

/* ========== BUTTONS ========== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 8px;
    font-family: 'Inter', sans-serif; font-weight: 600; font-size: 0.95rem;
    border: none; border-radius: 14px; padding: 14px 28px;
    transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative; overflow: hidden;
    text-decoration: none; white-space: nowrap;
}
.btn--primary {
    background: linear-gradient(135deg, #6366f1, #8b5cf6, #a855f7);
    background-size: 200% 200%;
    animation: gradient-shift 4s ease infinite;
    color: #fff;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
}
.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 40px rgba(99, 102, 241, 0.5);
}
.btn--primary::after {
    content: '';
    position: absolute; inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transform: translateX(-100%) skewX(-15deg);
    transition: transform 0.6s;
}
.btn--primary:hover::after { transform: translateX(100%) skewX(-15deg); }

.btn--outline {
    background: transparent;
    border: 1px solid rgba(99, 102, 241, 0.4);
    color: #a78bfa;
}
.btn--outline:hover {
    background: rgba(99, 102, 241, 0.1);
    border-color: rgba(99, 102, 241, 0.6);
    transform: translateY(-2px);
}
.btn--glow { box-shadow: 0 0 30px rgba(99, 102, 241, 0.3); }
.btn--glow-outline { box-shadow: 0 0 20px rgba(99, 102, 241, 0.1); }
.btn--sm { padding: 10px 20px; font-size: 0.85rem; border-radius: 12px; }
.btn--lg { padding: 18px 36px; font-size: 1.05rem; }
.btn--full { width: 100%; }

/* ========== HERO ========== */
.hero {
    min-height: 100vh;
    display: flex; align-items: center;
    position: relative;
    padding: 120px 0 80px;
    overflow: hidden;
}
.hero__mesh {
    position: absolute; inset: 0;
    background:
        radial-gradient(ellipse at 20% 50%, rgba(99, 102, 241, 0.12) 0%, transparent 50%),
        radial-gradient(ellipse at 80% 20%, rgba(168, 85, 247, 0.1) 0%, transparent 50%),
        radial-gradient(ellipse at 50% 80%, rgba(236, 72, 153, 0.06) 0%, transparent 50%);
    animation: gradient-shift 10s ease-in-out infinite;
    background-size: 200% 200%;
}
.hero__glow {
    position: absolute; border-radius: 50%;
    filter: blur(100px); pointer-events: none;
    will-change: transform;
}
.hero__glow--1 { width: 600px; height: 600px; background: rgba(99, 102, 241, 0.15); top: -200px; left: -100px; }
.hero__glow--2 { width: 400px; height: 400px; background: rgba(168, 85, 247, 0.1); bottom: -100px; right: -100px; }
.hero__glow--3 { width: 300px; height: 300px; background: rgba(236, 72, 153, 0.08); top: 50%; left: 60%; }

/* Floating shapes */
.hero__shapes { position: absolute; inset: 0; pointer-events: none; z-index: 0; }
.shape {
    position: absolute;
    left: var(--x); top: var(--y);
    animation: float 8s ease-in-out infinite;
    animation-delay: var(--delay);
    opacity: 0.3;
    will-change: transform;
}
.shape--triangle {
    width: 0; height: 0;
    border-left: 12px solid transparent;
    border-right: 12px solid transparent;
    border-bottom: 20px solid rgba(99, 102, 241, 0.5);
}
.shape--circle {
    width: 16px; height: 16px;
    border-radius: 50%;
    background: rgba(168, 85, 247, 0.4);
}
.shape--square {
    width: 14px; height: 14px;
    background: rgba(236, 72, 153, 0.4);
    transform: rotate(45deg);
}
.shape--dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.6);
    box-shadow: 0 0 10px rgba(99, 102, 241, 0.4);
}
.shape--ring {
    width: 20px; height: 20px;
    border-radius: 50%;
    border: 2px solid rgba(168, 85, 247, 0.3);
}
.shape--cross {
    width: 16px; height: 16px;
    position: relative;
}
.shape--cross::before, .shape--cross::after {
    content: ''; position: absolute;
    background: rgba(99, 102, 241, 0.4);
}
.shape--cross::before { width: 2px; height: 100%; left: 50%; transform: translateX(-50%); }
.shape--cross::after { width: 100%; height: 2px; top: 50%; transform: translateY(-50%); }

.hero__inner { position: relative; z-index: 2; }

.hero__badge {
    display: inline-flex; align-items: center; gap: 10px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 100px; padding: 8px 20px;
    font-size: 0.85rem; font-weight: 500; color: #a78bfa;
    margin-bottom: 28px;
    animation: badge-pulse 3s ease infinite;
}
.hero__badge-pulse {
    width: 8px; height: 8px;
    background: #6366f1; border-radius: 50%;
    position: relative;
}
.hero__badge-pulse::after {
    content: ''; position: absolute; inset: -4px;
    border-radius: 50%;
    border: 2px solid rgba(99, 102, 241, 0.5);
    animation: pulse-ring 2s ease-out infinite;
}

.hero__title {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: clamp(2.2rem, 5.5vw, 3.8rem);
    font-weight: 900; color: #fff;
    line-height: 1.15; margin-bottom: 20px;
}
.hero__title-line { display: block; }
.hero__title-gradient {
    background: linear-gradient(135deg, #6366f1, #a855f7, #ec4899);
    background-size: 200% 200%;
    animation: gradient-shift 4s ease infinite;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero__subtitle {
    font-size: clamp(1.1rem, 2vw, 1.35rem);
    color: #8892a8; margin-bottom: 40px;
    max-width: 600px;
}
.typewriter {
    display: inline;
    border-right: 2px solid #6366f1;
    animation: blink-caret 0.8s step-end infinite;
}
@keyframes blink-caret { 50% { border-color: transparent; } }

.hero__steps {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 16px; margin-bottom: 40px;
}
.hero__step {
    padding: 16px 14px;
    background: rgba(15, 20, 40, 0.6);
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: 16px;
    transition: all 0.3s;
}
.hero__step:hover {
    border-color: rgba(99, 102, 241, 0.3);
    background: rgba(15, 20, 40, 0.8);
    transform: translateY(-4px);
}
.hero__step-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.75rem; font-weight: 700; color: #6366f1;
    margin-bottom: 6px;
    display: flex; align-items: center; gap: 8px;
}
.hero__step-num::after {
    content: ''; flex: 1; height: 1px;
    background: linear-gradient(90deg, rgba(99,102,241,0.3), transparent);
}
.hero__step p { font-size: 0.82rem; color: #94a3b8; line-height: 1.5; }

.hero__cta { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }
.hero__cta-note { font-size: 0.82rem; color: #64748b; max-width: 400px; }

.hero__scroll {
    position: absolute; bottom: 30px; left: 50%;
    transform: translateX(-50%);
    display: flex; flex-direction: column; align-items: center; gap: 8px;
    z-index: 2;
    animation: float-simple 3s ease-in-out infinite;
}
.hero__scroll-mouse {
    width: 24px; height: 38px;
    border: 2px solid rgba(255,255,255,0.2);
    border-radius: 12px;
    display: flex; justify-content: center;
    padding-top: 8px;
}
.hero__scroll-wheel {
    width: 3px; height: 8px;
    background: rgba(99,102,241,0.8);
    border-radius: 3px;
    animation: scroll-wheel 1.5s ease-in-out infinite;
}
.hero__scroll span {
    font-size: 0.7rem; color: rgba(255,255,255,0.3);
    text-transform: uppercase; letter-spacing: 2px;
}

/* ========== MARQUEE ========== */
.marquee {
    padding: 20px 0;
    background: linear-gradient(90deg, rgba(99,102,241,0.05), rgba(168,85,247,0.05), rgba(99,102,241,0.05));
    border-top: 1px solid rgba(99, 102, 241, 0.08);
    border-bottom: 1px solid rgba(99, 102, 241, 0.08);
    overflow: hidden;
    position: relative;
}
.marquee::before, .marquee::after {
    content: ''; position: absolute; top: 0; bottom: 0; width: 100px;
    z-index: 2; pointer-events: none;
}
.marquee::before { left: 0; background: linear-gradient(90deg, #050816, transparent); }
.marquee::after { right: 0; background: linear-gradient(270deg, #050816, transparent); }

.marquee__track { display: flex; width: max-content; }
.marquee__content {
    display: flex; align-items: center; gap: 40px;
    padding: 0 20px;
    animation: marquee 25s linear infinite;
    will-change: transform;
}
.marquee--reverse .marquee__content { animation-name: marquee-reverse; }

.marquee__content span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.85rem; font-weight: 700;
    color: rgba(255,255,255,0.3);
    letter-spacing: 3px;
    white-space: nowrap;
}
.marquee__dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: rgba(99, 102, 241, 0.4);
    flex-shrink: 0;
}
.marquee__dot--accent { background: rgba(168, 85, 247, 0.5); }

/* ========== WORKFLOW ========== */
.workflow__row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0;
}
.workflow__item {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 20px 16px;
    border-radius: 16px;
    transition: all 0.3s;
    flex: 1;
    max-width: 160px;
}
.workflow__item:hover {
    background: rgba(99, 102, 241, 0.06);
}
.workflow__icon {
    width: 48px; height: 48px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 14px;
    color: #6366f1;
    transition: all 0.3s;
}
.workflow__item:hover .workflow__icon {
    background: rgba(99, 102, 241, 0.18);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.15);
    transform: translateY(-2px);
}
.workflow__step-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.7rem; font-weight: 700;
    color: #6366f1;
    letter-spacing: 1px;
}
.workflow__label {
    font-size: 0.85rem; font-weight: 600;
    color: #cbd5e1;
    line-height: 1.3;
}
.workflow__arrow {
    color: rgba(99, 102, 241, 0.3);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    padding-bottom: 20px;
}
@media (max-width: 768px) {
    .workflow__row {
        flex-wrap: wrap;
        gap: 8px;
        justify-content: center;
    }
    .workflow__item {
        flex: 0 0 calc(33.333% - 8px);
        max-width: none;
        padding: 14px 8px;
    }
    .workflow__arrow { display: none; }
}

/* ========== ADVANTAGES ========== */
.advantages__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 20px;
}
.advantage-card {
    padding: 28px;
    display: flex; align-items: flex-start; gap: 16px;
}
.advantage-card__icon-wrap {
    position: relative;
    width: 48px; height: 48px; min-width: 48px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 14px;
}
.advantage-card__icon-ring {
    position: absolute; inset: -3px;
    border-radius: 16px;
    border: 1px solid rgba(99, 102, 241, 0.2);
    animation: pulse-ring 3s ease-out infinite;
    opacity: 0;
}
.advantage-card:hover .advantage-card__icon-ring { opacity: 1; }
.advantage-card__icon-wrap svg { color: #6366f1; }
.advantage-card__title {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 0.95rem; font-weight: 700; color: #fff;
    margin-bottom: 4px;
}
.advantage-card p { color: #b0b8c9; font-size: 0.88rem; }

/* ========== PRESENTATION ========== */
.presentation__block {
    position: relative;
    padding: 56px 48px;
    background: rgba(15, 20, 40, 0.7);
    border: 1px solid rgba(99, 102, 241, 0.12);
    border-radius: 28px;
    overflow: hidden;
}
.presentation__glow {
    position: absolute; top: -150px; right: -150px;
    width: 400px; height: 400px;
    background: radial-gradient(circle, rgba(99,102,241,0.1) 0%, transparent 70%);
    animation: glow-pulse 4s ease-in-out infinite;
    pointer-events: none;
}
.presentation__morph {
    position: absolute; bottom: -100px; left: -100px;
    width: 300px; height: 300px;
    background: rgba(168, 85, 247, 0.06);
    animation: morph 12s ease-in-out infinite;
    pointer-events: none;
}
.presentation__features { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin: 32px 0; }
@media (max-width: 600px) { .presentation__features { grid-template-columns: 1fr; } }
.presentation__feature {
    display: flex; align-items: flex-start; gap: 12px;
    padding: 12px 0;
}
.presentation__feature-icon {
    width: 28px; height: 28px; min-width: 28px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 8px;
}
.presentation__feature-icon svg { color: #10b981; }
.presentation__feature span { color: #cbd5e1; font-size: 1.02rem; line-height: 1.5; }
@media (max-width: 768px) { .presentation__block { padding: 32px 24px; } }

/* ========== SOCIAL PROOF ========== */
.social-proof__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-bottom: 32px;
}
.social-proof__stat {
    padding: 24px 16px;
    text-align: center;
    transition: all 0.3s;
}
.social-proof__stat:hover {
    border-color: rgba(99, 102, 241, 0.3);
    transform: translateY(-2px);
}
.social-proof__stat-num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2rem; font-weight: 800;
    color: #fff;
    display: block;
    line-height: 1.2;
}
.social-proof__stat-plus {
    font-size: 1.1rem; font-weight: 700;
    color: #a78bfa;
}
.social-proof__stat-label {
    display: block;
    font-size: 0.82rem; color: #8892a8;
    margin-top: 4px;
}
@media (max-width: 600px) {
    .social-proof__stats { grid-template-columns: repeat(2, 1fr); }
}

.social-proof__badges {
    display: flex; flex-wrap: wrap; justify-content: center;
    align-items: center; gap: 8px;
    margin-bottom: 32px;
}
.social-proof__badges-label {
    font-size: 0.82rem; color: #64748b; font-weight: 500;
    margin-right: 4px;
}
.badge-pill {
    padding: 6px 16px;
    background: rgba(15, 20, 40, 0.6);
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: 100px;
    font-size: 0.8rem; color: #64748b;
}

.social-proof__cards {
    display: grid; grid-template-columns: repeat(3, 1fr);
    gap: 16px; margin-bottom: 40px;
}
@media (max-width: 900px) { .social-proof__cards { grid-template-columns: 1fr; } }
.social-proof__card { padding: 24px; display: flex; align-items: flex-start; gap: 16px; }
.social-proof__card-icon {
    width: 44px; height: 44px; min-width: 44px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    border-radius: 12px;
}
.social-proof__card-icon svg { color: #6366f1; }
.social-proof__card-title {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 0.92rem; font-weight: 700; color: #fff;
    margin-bottom: 6px;
}
.social-proof__card p { color: #94a3b8; font-size: 0.88rem; }

/* ========== LEAD FORM ========== */
.lead-form { position: relative; }
.lead-form__glow {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 400px;
    background: radial-gradient(circle, rgba(99,102,241,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.lead-form__card {
    position: relative; overflow: hidden;
    max-width: 560px; margin: 0 auto;
    padding: 48px 40px;
    background: rgba(15, 20, 40, 0.85);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 28px;
    text-align: center;
}
.lead-form__decoration { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.lead-form__ring {
    position: absolute; border-radius: 50%;
    border: 1px solid rgba(99, 102, 241, 0.08);
}
.lead-form__ring--1 {
    width: 300px; height: 300px; top: -150px; right: -100px;
    animation: rotate 20s linear infinite;
}
.lead-form__ring--2 {
    width: 200px; height: 200px; bottom: -80px; left: -60px;
    animation: rotate-reverse 15s linear infinite;
}
.lead-form__morph {
    position: absolute; top: -80px; right: -80px;
    width: 200px; height: 200px;
    background: rgba(168,85,247,0.05);
    animation: morph 10s ease-in-out infinite;
}
.lead-form__title {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 1.5rem; font-weight: 700; color: #fff;
    line-height: 1.3; margin: 16px 0;
}
.lead-form__desc { color: #8892a8; font-size: 0.92rem; margin-bottom: 20px; }

.lead-form__checklist {
    display: flex; flex-direction: column; gap: 10px;
    margin-bottom: 24px;
    text-align: left;
    max-width: 340px;
    margin-left: auto; margin-right: auto;
}
.lead-form__check {
    display: flex; align-items: center; gap: 10px;
}
.lead-form__check svg { min-width: 16px; }
.lead-form__check span { color: #cbd5e1; font-size: 0.9rem; }

.lead-form__form { display: flex; flex-direction: column; gap: 14px; text-align: left; }
.form-group { position: relative; }
.form-input-wrap { position: relative; }
.form-icon {
    position: absolute; left: 16px; top: 50%; transform: translateY(-50%);
    color: #475569; pointer-events: none;
    transition: color 0.3s;
}
.form-input {
    width: 100%; padding: 16px 16px 16px 48px;
    background: rgba(15, 20, 40, 0.8);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 14px;
    color: #fff; font-size: 1rem;
    font-family: 'Inter', sans-serif;
    transition: all 0.3s;
    outline: none;
}
.form-input:focus {
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.1);
}
.form-input:focus ~ .form-icon,
.form-input-wrap:focus-within .form-icon { color: #6366f1; }
.form-input.error {
    border-color: rgba(239, 68, 68, 0.5);
    box-shadow: 0 0 20px rgba(239, 68, 68, 0.1);
}
.form-input::placeholder { color: #475569; }
.form-note { font-size: 0.78rem; color: #475569; text-align: center; margin-top: 4px; }
@media (max-width: 600px) { .lead-form__card { padding: 32px 20px; } }

/* ========== INCLUDES ========== */
.includes__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
}
.includes__item { padding: 24px; display: flex; align-items: flex-start; gap: 16px; }
.includes__icon-wrap {
    width: 44px; height: 44px; min-width: 44px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 12px;
    color: #6366f1;
    transition: all 0.3s;
}
.includes__item:hover .includes__icon-wrap {
    background: rgba(99, 102, 241, 0.18);
    border-color: rgba(99, 102, 241, 0.35);
    box-shadow: 0 0 16px rgba(99, 102, 241, 0.12);
}
.includes__title {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 0.95rem; font-weight: 700; color: #fff;
    margin-bottom: 4px;
}
.includes__item p { color: #94a3b8; font-size: 0.88rem; }
.includes__bonus {
    margin-top: 40px; padding: 24px 32px;
    background: linear-gradient(135deg, rgba(99,102,241,0.08), rgba(168,85,247,0.08));
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 20px;
    display: flex; align-items: center; gap: 16px;
    position: relative; overflow: hidden;
}
.includes__bonus-glow {
    position: absolute; right: -50px; top: -50px;
    width: 200px; height: 200px;
    background: radial-gradient(circle, rgba(99,102,241,0.1) 0%, transparent 70%);
    pointer-events: none;
}
.includes__bonus svg { color: #10b981; min-width: 24px; }
.includes__bonus p { color: #94a3b8; font-size: 0.92rem; }

/* ========== CASES ========== */
.cases__grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(340px, 1fr));
    gap: 24px;
}
.case-card {
    padding: 32px 28px;
    background: rgba(15, 20, 40, 0.8);
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: 24px;
    position: relative; overflow: hidden;
    transition: all 0.4s;
}
.case-card__shimmer {
    position: absolute; top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.02), transparent);
    pointer-events: none;
    transition: transform 0.8s;
}
.case-card:hover .case-card__shimmer { left: 200%; transition: left 0.8s; }
.case-card:hover {
    border-color: rgba(99, 102, 241, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(99, 102, 241, 0.08);
}
.case-card__top { margin-bottom: 16px; }
.case-card__tag {
    display: inline-flex; padding: 4px 14px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 100px;
    font-size: 0.78rem; font-weight: 600; color: #a78bfa;
    letter-spacing: 0.5px;
}
.case-card__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem; font-weight: 700; color: #fff;
    margin-bottom: 20px; line-height: 1.3;
}
.case-card__block { margin-bottom: 16px; }
.case-card__label {
    display: flex; align-items: center; gap: 8px;
    font-size: 0.8rem; font-weight: 600; color: #94a3b8;
    margin-bottom: 6px; text-transform: uppercase; letter-spacing: 0.5px;
}
.case-card__label-dot { width: 8px; height: 8px; border-radius: 50%; }
.case-card__label-dot--red { background: #ef4444; box-shadow: 0 0 8px rgba(239,68,68,0.4); }
.case-card__label-dot--blue { background: #3b82f6; box-shadow: 0 0 8px rgba(59,130,246,0.4); }
.case-card__label-dot--green { background: #10b981; box-shadow: 0 0 8px rgba(16,185,129,0.4); }
.case-card__block p { color: #8892a8; font-size: 0.88rem; }
.case-card__quote {
    margin-top: 20px; padding-top: 16px;
    border-top: 1px solid rgba(99, 102, 241, 0.1);
    color: #64748b; font-size: 0.85rem;
    font-style: italic; line-height: 1.5;
    display: flex; gap: 10px; align-items: flex-start;
}
.case-card__quote svg { min-width: 20px; color: #6366f1; flex-shrink: 0; }
.case-card__author {
    display: block;
    margin-top: 8px;
    font-size: 0.78rem;
    font-style: normal;
    font-weight: 600;
    color: #6366f1;
    letter-spacing: 0.3px;
}

/* ========== QUIZ ========== */
.quiz__card {
    position: relative; overflow: hidden;
    max-width: 640px; margin: 0 auto;
    padding: 48px 40px;
    background: rgba(15, 20, 40, 0.85);
    border: 1px solid rgba(99, 102, 241, 0.12);
    border-radius: 28px;
    text-align: center;
}
.quiz__glow {
    position: absolute; top: -100px; left: 50%; transform: translateX(-50%);
    width: 400px; height: 300px;
    background: radial-gradient(circle, rgba(99,102,241,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.quiz__morph {
    position: absolute; bottom: -80px; right: -80px;
    width: 200px; height: 200px;
    background: rgba(168,85,247,0.04);
    animation: morph 15s ease-in-out infinite;
    pointer-events: none;
}
.quiz__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.5rem; font-weight: 700; color: #fff;
    margin-bottom: 8px;
}
.quiz__subtitle { color: #8892a8; font-size: 0.92rem; margin-bottom: 32px; }
.quiz__progress {
    height: 4px; background: rgba(99, 102, 241, 0.1);
    border-radius: 4px; margin-bottom: 12px;
    position: relative; overflow: hidden;
}
.quiz__progress-bar {
    height: 100%; width: 20%;
    background: linear-gradient(90deg, #6366f1, #a855f7);
    border-radius: 4px;
    transition: width 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    position: relative;
}
.quiz__progress-glow {
    position: absolute; top: -2px; height: 8px; width: 40px;
    background: rgba(99, 102, 241, 0.6);
    border-radius: 4px; filter: blur(4px);
    transition: left 0.5s;
}
.quiz__step-indicator { font-size: 0.8rem; color: #64748b; margin-bottom: 28px; }
.quiz__step {
    display: none; text-align: left;
    animation: slide-up 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.quiz__step.active { display: block; }
.quiz__question {
    font-size: 1.1rem; font-weight: 600; color: #e2e8f0;
    margin-bottom: 20px; line-height: 1.4;
}
.quiz__options { display: flex; flex-direction: column; gap: 10px; }
.quiz__option {
    display: flex; align-items: center; gap: 14px;
    padding: 16px 20px;
    background: rgba(15, 20, 40, 0.6);
    border: 1px solid rgba(99, 102, 241, 0.1);
    border-radius: 14px;
    transition: all 0.3s;
    position: relative; overflow: hidden;
}
.quiz__option::before {
    content: ''; position: absolute; inset: 0;
    background: linear-gradient(135deg, rgba(99,102,241,0.05), transparent);
    opacity: 0; transition: opacity 0.3s;
}
.quiz__option:hover { border-color: rgba(99, 102, 241, 0.3); }
.quiz__option:hover::before { opacity: 1; }
.quiz__option input { display: none; }
.quiz__option-box {
    width: 22px; height: 22px; min-width: 22px;
    border-radius: 50%;
    border: 2px solid rgba(99, 102, 241, 0.3);
    display: flex; align-items: center; justify-content: center;
    transition: all 0.3s;
    position: relative;
}
.quiz__option input:checked ~ .quiz__option-box {
    border-color: #6366f1;
    background: #6366f1;
    box-shadow: 0 0 15px rgba(99, 102, 241, 0.4);
}
.quiz__option input:checked ~ .quiz__option-box::after {
    content: '';
    width: 8px; height: 8px;
    border-radius: 50%;
    background: #fff;
}
.quiz__option input:checked ~ .quiz__option-text { color: #e2e8f0; }
.quiz__option-text { font-size: 0.92rem; color: #94a3b8; transition: color 0.3s; }
.quiz__hint { color: #64748b; font-size: 0.85rem; margin-bottom: 16px; }
.quiz__consent {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.85rem; color: #8892a8;
    margin: 16px 0 8px;
}
.quiz__consent input { display: none; }
.quiz__checkbox {
    width: 20px; height: 20px; min-width: 20px;
    border: 2px solid rgba(99, 102, 241, 0.3);
    border-radius: 6px; transition: all 0.3s;
    display: flex; align-items: center; justify-content: center;
}
.quiz__consent input:checked ~ .quiz__checkbox {
    background: #6366f1; border-color: #6366f1;
}
.quiz__consent input:checked ~ .quiz__checkbox::after {
    content: ''; width: 6px; height: 10px;
    border: 2px solid #fff; border-top: none; border-left: none;
    transform: rotate(45deg) translateY(-1px);
}
.quiz__consent a { color: #6366f1; text-decoration: underline; }
.quiz__note { color: #475569; font-size: 0.82rem; margin-bottom: 16px; }
.quiz__nav { display: flex; justify-content: space-between; margin-top: 24px; gap: 12px; }
.quiz__success { text-align: center; padding: 40px 0; }
.quiz__success-icon {
    position: relative; display: inline-flex;
    width: 72px; height: 72px;
    align-items: center; justify-content: center;
    background: rgba(16, 185, 129, 0.15);
    border-radius: 50%; margin-bottom: 24px;
}
.quiz__success-ring {
    position: absolute; inset: -6px;
    border: 2px solid rgba(16, 185, 129, 0.3);
    border-radius: 50%;
    animation: pulse-ring 2s ease-out infinite;
}
.quiz__success-icon svg { color: #10b981; }
@media (max-width: 600px) { .quiz__card { padding: 32px 20px; } }

/* ========== CATALOG ========== */
.catalog__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}
.catalog-card {
    padding: 32px 28px;
    display: flex; flex-direction: column;
    position: relative;
}
.catalog-card__badge {
    position: absolute; top: 16px; right: 16px;
    padding: 4px 14px; border-radius: 100px;
    font-size: 0.75rem; font-weight: 700;
    background: linear-gradient(135deg, #6366f1, #a855f7);
    color: #fff; letter-spacing: 0.3px;
}
.catalog-card__badge--free { background: linear-gradient(135deg, #10b981, #059669); }
.catalog-card__badge--premium { background: linear-gradient(135deg, #f59e0b, #d97706); }
.catalog-card--accent { border-color: rgba(99, 102, 241, 0.25); }
.catalog-card--accent::after {
    content: ''; position: absolute; inset: -1px;
    border-radius: 20px; z-index: -1;
    background: linear-gradient(135deg, rgba(99,102,241,0.2), rgba(168,85,247,0.2), rgba(99,102,241,0.2));
    background-size: 300% 300%;
    animation: border-dance 4s linear infinite;
}
.catalog-card--premium { border-color: rgba(245, 158, 11, 0.2); }
.catalog-card__title {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem; font-weight: 700; color: #fff;
    margin-bottom: 8px; padding-right: 80px;
}
.catalog-card__desc { color: #8892a8; font-size: 0.85rem; margin-bottom: 16px; }
.catalog-card__features { margin-bottom: 20px; flex: 1; }
.catalog-card__features li {
    padding: 6px 0 6px 24px;
    font-size: 0.85rem; color: #94a3b8;
    position: relative;
}
.catalog-card__features li::before {
    content: '';
    position: absolute; left: 0; top: 12px;
    width: 8px; height: 8px; border-radius: 2px;
    background: rgba(99, 102, 241, 0.4);
    transform: rotate(45deg);
}
.catalog-card__footer { margin-top: auto; }
.catalog-card__price {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.4rem; font-weight: 700; color: #fff;
    margin-bottom: 14px;
}
.catalog-card__price span { font-size: 0.85rem; color: #64748b; font-weight: 400; }

/* Кнопка "Ещё услуги" */
.catalog__toggle-wrap {
    text-align: center;
    margin: 8px 0 32px;
}
.catalog__toggle-btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 12px 32px;
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: 100px;
    background: rgba(99, 102, 241, 0.08);
    color: #a5b4fc;
    font-family: 'Inter', sans-serif;
    font-size: 0.9rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    transition: all 0.3s ease;
}
.catalog__toggle-btn:hover {
    background: rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.5);
    color: #c7d2fe;
}
.catalog__toggle-icon {
    transition: transform 0.3s ease;
}
.catalog__toggle-btn.active .catalog__toggle-icon {
    transform: rotate(180deg);
}

/* Скрытые карточки */
.catalog__extra {
    display: grid;
    grid-template-rows: 0fr;
    opacity: 0;
    transition: grid-template-rows 0.5s ease, opacity 0.4s ease, margin 0.4s ease;
    margin-bottom: 0;
}
.catalog__extra > .catalog__grid {
    overflow: hidden;
}
.catalog__extra.visible {
    grid-template-rows: 1fr;
    opacity: 1;
    margin-bottom: 32px;
}
.catalog__extra.visible > .catalog__grid {
    overflow: visible;
}

.catalog__reviews {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 16px;
}
.review-card { padding: 24px; }
.review-card__stars { color: #f59e0b; font-size: 1.1rem; margin-bottom: 10px; letter-spacing: 2px; }
.review-card p { color: #8892a8; font-size: 0.88rem; font-style: italic; }
.review-card__author {
    display: block;
    margin-top: 10px;
    font-size: 0.78rem;
    font-weight: 600;
    color: #a78bfa;
    font-style: normal;
}

/* ========== PRICING ========== */
.pricing__grid {
    display: grid; grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: 24px; align-items: start;
}
.pricing-card { position: relative; }
.pricing-card--popular { z-index: 2; }
.pricing-card--popular .pricing-card__inner {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 0 60px rgba(99, 102, 241, 0.1);
}
.pricing-card__badge {
    position: absolute; top: -14px; left: 50%; transform: translateX(-50%);
    padding: 6px 24px; border-radius: 100px;
    background: linear-gradient(135deg, #6366f1, #a855f7);
    color: #fff; font-size: 0.8rem; font-weight: 700;
    letter-spacing: 0.5px; white-space: nowrap;
    box-shadow: 0 4px 20px rgba(99, 102, 241, 0.3);
    animation: badge-pulse 3s ease infinite;
    z-index: 3;
}
.pricing-card__inner { padding: 40px 32px; text-align: center; }
.pricing-card__name {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.3rem; font-weight: 700; color: #fff; margin-bottom: 8px;
}
.pricing-card__desc { color: #8892a8; font-size: 0.85rem; margin-bottom: 24px; }
.pricing-card__price { margin-bottom: 28px; }
.pricing-card__amount {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem; font-weight: 800; color: #fff;
}
.pricing-card__period { font-size: 0.9rem; color: #64748b; }
.pricing-card__features { text-align: left; margin-bottom: 28px; }
.pricing-card__features li {
    display: flex; align-items: center; gap: 10px;
    padding: 8px 0; font-size: 0.9rem;
}
.pricing-card__feature--yes { color: #cbd5e1; }
.pricing-card__feature--no { color: #475569; }

.pricing__guarantee {
    margin-top: 40px; padding: 20px 28px;
    background: rgba(99, 102, 241, 0.06);
    border: 1px solid rgba(99, 102, 241, 0.12);
    border-radius: 16px;
    display: flex; align-items: center; gap: 14px;
    justify-content: center; text-align: center;
}
.pricing__guarantee svg { color: #10b981; min-width: 20px; }
.pricing__guarantee p { color: #8892a8; font-size: 0.88rem; }

/* ========== STEPS ========== */
.steps__timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}
.steps__line {
    position: absolute; left: 28px; top: 0; bottom: 0;
    width: 2px; background: rgba(99, 102, 241, 0.08);
}
.steps__line-fill {
    width: 100%; height: 0%;
    background: linear-gradient(180deg, #6366f1, #a855f7, #ec4899);
    transition: height 0.3s;
    border-radius: 2px;
    box-shadow: 0 0 10px rgba(99,102,241,0.3);
}
.step-card {
    display: flex; gap: 24px;
    padding: 16px 0;
    position: relative;
}
.step-card__marker {
    min-width: 56px; display: flex; justify-content: center;
    padding-top: 24px; position: relative; z-index: 2;
}
.step-card__num {
    width: 56px; height: 56px;
    display: flex; align-items: center; justify-content: center;
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem; font-weight: 700; color: #6366f1;
    background: rgba(99, 102, 241, 0.08);
    border: 1px solid rgba(99, 102, 241, 0.2);
    border-radius: 16px;
    transition: all 0.3s;
}
.step-card.active .step-card__num {
    color: #fff;
    background: linear-gradient(135deg, #6366f1, #a855f7);
    border-color: #a855f7;
    box-shadow: 0 0 24px rgba(99,102,241,0.45), 0 0 8px rgba(168,85,247,0.3);
    transform: scale(1.1);
}
.step-card:hover .step-card__num {
    background: rgba(99, 102, 241, 0.15);
    border-color: rgba(99, 102, 241, 0.4);
    box-shadow: 0 0 20px rgba(99,102,241,0.2);
    transform: scale(1.05);
}
.step-card.active:hover .step-card__num {
    background: linear-gradient(135deg, #6366f1, #a855f7);
    border-color: #a855f7;
    box-shadow: 0 0 28px rgba(99,102,241,0.55), 0 0 10px rgba(168,85,247,0.4);
    transform: scale(1.12);
}
.step-card__content { padding: 24px 28px; flex: 1; }
.step-card__content h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.15rem; font-weight: 700; color: #fff; margin-bottom: 6px;
}
.step-card__lead {
    color: #a78bfa; font-size: 0.88rem; font-weight: 500; margin-bottom: 8px;
}
.step-card__content p:last-child { color: #8892a8; font-size: 0.88rem; }

@media (max-width: 600px) {
    .steps__line { left: 20px; }
    .step-card { gap: 14px; padding: 10px 0; }
    .step-card__marker { min-width: 40px; padding-top: 18px; }
    .step-card__num { width: 40px; height: 40px; font-size: 0.8rem; border-radius: 12px; }
    .step-card__content { padding: 16px 16px; }
    .step-card__content h3 { font-size: 1rem; }
}

/* ========== GUARANTEES ========== */
.guarantees__grid {
    display: flex;
    flex-wrap: wrap;
    gap: 20px;
    justify-content: center;
}
.guarantee-card {
    width: calc(33.333% - 14px);
}
.guarantee-card { padding: 32px; text-align: center; }
.guarantee-card__icon {
    width: 64px; height: 64px;
    display: flex; align-items: center; justify-content: center;
    background: rgba(99, 102, 241, 0.08);
    border-radius: 20px; margin: 0 auto 16px;
    transition: all 0.3s;
}
.guarantee-card:hover .guarantee-card__icon {
    background: rgba(99, 102, 241, 0.15);
    transform: translateY(-4px);
    box-shadow: 0 8px 25px rgba(99,102,241,0.15);
}
.guarantee-card__icon svg { color: #6366f1; }
.guarantee-card h3 {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.05rem; font-weight: 700; color: #fff; margin-bottom: 8px;
}
.guarantee-card p { color: #8892a8; font-size: 0.88rem; }

/* ========== TEAM ========== */
.team__founders {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 24px;
    margin-bottom: 24px;
}
.team__grid--rest {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px; margin-bottom: 48px;
}
.team-card { padding: 32px 24px; text-align: center; }
.team-card__avatar {
    position: relative;
    width: 72px; height: 72px;
    display: flex; align-items: center; justify-content: center;
    background: linear-gradient(135deg, rgba(99,102,241,0.2), rgba(168,85,247,0.2));
    border-radius: 50%; margin: 0 auto 16px;
}
.team-card__avatar--large {
    width: 110px; height: 110px;
}
.team-card__avatar--large span {
    font-size: 1.8rem;
}
.team-card__avatar-ring {
    position: absolute; inset: -4px;
    border-radius: 50%;
    border: 2px solid transparent;
    background: linear-gradient(135deg, #6366f1, #a855f7, #ec4899, #6366f1) border-box;
    -webkit-mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) padding-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    animation: rotate 6s linear infinite;
}
.team-card__avatar span {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 1.2rem; font-weight: 700;
    background: linear-gradient(135deg, #6366f1, #a855f7);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.team-card__avatar--photo img {
    width: 100%; height: 100%;
    object-fit: cover;
    border-radius: 50%;
}
.team-card__name {
    font-size: 1rem; font-weight: 700; color: #fff; margin-bottom: 4px;
}
.team-card__role {
    font-size: 0.82rem; color: #a78bfa; font-weight: 500; margin-bottom: 14px;
}
.team-card__list li {
    font-size: 0.82rem; color: #8892a8;
    padding: 3px 0 3px 16px; text-align: left;
    position: relative;
}
.team-card__list li::before {
    content: ''; position: absolute; left: 0; top: 10px;
    width: 6px; height: 6px; border-radius: 50%;
    background: rgba(99, 102, 241, 0.5);
}

.team__stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(140px, 1fr));
    gap: 16px; margin-bottom: 32px;
}
.stat-card {
    padding: 24px 16px;
    text-align: center;
}
.stat-card__num {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 2.2rem; font-weight: 800;
    background: linear-gradient(135deg, #6366f1, #a855f7);
    -webkit-background-clip: text; -webkit-text-fill-color: transparent;
    background-clip: text;
}
.stat-card__plus { font-size: 1.2rem; color: #a78bfa; font-weight: 700; }
.stat-card__label {
    display: block; font-size: 0.82rem; color: #8892a8; margin-top: 4px;
}

.team__tagline {
    text-align: center; color: #64748b; font-size: 0.95rem;
    max-width: 600px; margin: 0 auto;
    font-style: italic;
}

/* ========== FINAL FORM ========== */
.final-form { position: relative; }
.final-form__glow {
    position: absolute; top: 50%; left: 50%;
    transform: translate(-50%, -50%);
    width: 600px; height: 400px;
    background: radial-gradient(circle, rgba(99,102,241,0.08) 0%, transparent 70%);
    pointer-events: none;
}
.final-form__card {
    position: relative; overflow: hidden;
    max-width: 560px; margin: 0 auto;
    padding: 48px 40px;
    background: rgba(15, 20, 40, 0.85);
    border: 1px solid rgba(99, 102, 241, 0.15);
    border-radius: 28px;
    text-align: center;
}
.final-form__decoration { position: absolute; inset: 0; pointer-events: none; overflow: hidden; }
.final-form__ring {
    position: absolute; border-radius: 50%;
    border: 1px solid rgba(99, 102, 241, 0.06);
}
.final-form__ring--1 { width: 300px; height: 300px; top: -150px; left: -100px; animation: rotate 25s linear infinite; }
.final-form__ring--2 { width: 200px; height: 200px; bottom: -80px; right: -60px; animation: rotate-reverse 18s linear infinite; }
.final-form__morph {
    position: absolute; bottom: -60px; left: -60px;
    width: 180px; height: 180px;
    background: rgba(236,72,153,0.04);
    animation: morph 12s ease-in-out infinite;
}
.final-form__title {
    font-family: 'Space Grotesk', 'Inter', sans-serif;
    font-size: 1.5rem; font-weight: 700; color: #fff;
    line-height: 1.3; margin: 16px 0;
}
.final-form__desc { color: #8892a8; font-size: 0.92rem; margin-bottom: 28px; }
@media (max-width: 600px) { .final-form__card { padding: 32px 20px; } }

/* ========== FOOTER ========== */
.footer {
    padding: 60px 0 32px;
    border-top: 1px solid rgba(99, 102, 241, 0.08);
    background: rgba(5, 8, 22, 0.95);
}
.footer__grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr 1fr;
    gap: 48px;
    margin-bottom: 40px;
}
.footer__col { display: flex; flex-direction: column; gap: 12px; }
.footer__desc { font-size: 0.85rem; color: #64748b; line-height: 1.6; max-width: 280px; }
.footer__heading {
    font-family: 'Space Grotesk', sans-serif;
    font-size: 0.9rem; font-weight: 700; color: #fff;
    margin-bottom: 4px;
}
.footer__links { display: flex; flex-direction: column; gap: 10px; }
.footer__links a {
    font-size: 0.85rem; color: #64748b;
    transition: color 0.3s;
}
.footer__links a:hover { color: #a78bfa; }
.footer__contacts { display: flex; flex-direction: column; gap: 10px; }
.footer__contact-item {
    display: flex; align-items: center; gap: 10px;
    font-size: 0.85rem; color: #94a3b8;
    transition: color 0.3s;
}
.footer__contact-item:hover { color: #a78bfa; }
.footer__contact-item svg { color: #6366f1; min-width: 18px; }
.footer__bottom {
    display: flex; align-items: center; justify-content: space-between;
    padding-top: 24px;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}
.footer__copy { font-size: 0.8rem; color: #475569; }
.footer__policy {
    font-size: 0.8rem; color: #475569;
    transition: color 0.3s;
}
.footer__policy:hover { color: #8892a8; }
@media (max-width: 768px) {
    .footer__grid { grid-template-columns: 1fr; gap: 32px; text-align: center; }
    .footer__desc { max-width: 100%; }
    .footer__links { align-items: center; }
    .footer__contacts { align-items: center; }
    .footer__bottom { flex-direction: column; gap: 12px; text-align: center; }
}

/* ========== TELEGRAM CTA ========== */
.tg-cta { padding: 0 0 40px; }
.tg-cta__inner {
    display: flex; align-items: center; gap: 24px;
    padding: 32px 40px; border-radius: 20px;
    border: 1px solid rgba(168, 85, 247, .25);
    background: linear-gradient(135deg, rgba(99,102,241,.08), rgba(168,85,247,.08));
}
.tg-cta__icon {
    flex-shrink: 0; width: 64px; height: 64px;
    display: flex; align-items: center; justify-content: center;
    border-radius: 16px; color: #a855f7;
    background: rgba(168, 85, 247, .12);
}
.tg-cta__text { flex: 1; }
.tg-cta__title { font-size: 1.2rem; font-weight: 700; color: #fff; margin-bottom: 4px; }
.tg-cta__desc { font-size: 0.95rem; color: rgba(255,255,255,.6); }
.tg-cta__btn { flex-shrink: 0; white-space: nowrap; }

@media (max-width: 700px) {
    .tg-cta__inner { flex-direction: column; text-align: center; padding: 28px 24px; gap: 16px; }
}

/* ========== FAQ ========== */
.faq__list {
    display: flex; flex-direction: column; gap: 12px;
    max-width: 800px; margin: 0 auto;
}
.faq__item {
    border-radius: 16px; overflow: hidden;
    transition: border-color 0.3s;
}
.faq__item:hover { border-color: rgba(99, 102, 241, 0.3); }
.faq__question {
    width: 100%; display: flex; align-items: center; justify-content: space-between;
    padding: 20px 24px; gap: 16px;
    background: none; border: none; cursor: pointer;
    font-family: inherit; font-size: 1rem; font-weight: 600;
    color: #fff; text-align: left;
    transition: color 0.3s;
}
.faq__question:hover { color: #a78bfa; }
.faq__icon {
    flex-shrink: 0;
    transition: transform 0.3s;
    color: #6366f1;
}
.faq__item.active .faq__icon {
    transform: rotate(45deg);
}
.faq__answer {
    max-height: 0; overflow: hidden;
    transition: max-height 0.4s ease, padding 0.3s ease;
    padding: 0 24px;
}
.faq__item.active .faq__answer {
    max-height: 200px;
    padding: 0 24px 20px;
}
.faq__answer p {
    font-size: 0.92rem; color: #94a3b8; line-height: 1.7;
}

/* ========== MOBILE ========== */
@media (max-width: 768px) {
    .cursor, .cursor-trail { display: none; }
    body { cursor: auto; overflow-x: hidden; }
    a, button, input { cursor: auto; }
    .hero__steps { grid-template-columns: 1fr; }
    .cases__grid { grid-template-columns: 1fr; }
    .catalog__grid { grid-template-columns: 1fr; }
    .pricing__grid { grid-template-columns: 1fr; }
    .hero { padding: 100px 0 60px; }
    .guarantee-card { width: 100%; }
    .team__founders { grid-template-columns: 1fr; }
    .team__grid--rest { grid-template-columns: 1fr; }
    .catalog-card { padding: 24px 18px; }
    .pricing-card__inner { padding: 28px 18px; }
    .glass-card { max-width: 100%; box-sizing: border-box; }
    .container { padding: 0 16px; }
}
