/* ========================================
   Digital Oxygen Vibe — Warm Studio Editorial Theme
   Syne + Outfit | Warm parchment + vivid accents
   ======================================== */

:root {
    --bg: #F7F3EE;
    --bg-warm: #EFE9E1;
    --bg-card: #FFFFFF;
    --dark: #0F0F0F;
    --dark-soft: #1A1A1A;
    --text: #1A1A1A;
    --text-mid: #555;
    --text-muted: #999;
    --text-light: #bbb;
    --accent: #FF4D00;
    --accent-rgb: 255, 77, 0;
    --lime: #CDFF00;
    --lime-rgb: 205, 255, 0;
    --stroke: #E0DAD2;
    --stroke-light: #EDE8E1;
    --radius-s: 0.75rem;
    --radius-m: 1.2rem;
    --radius-l: 2rem;
    --radius-xl: 3rem;
    --font-display: 'Syne', sans-serif;
    --font-body: 'Outfit', sans-serif;
    --ease: cubic-bezier(0.23, 0.65, 0.74, 1.09);
    --speed: 0.35s;
}

/* RESET */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body { font-family: var(--font-body); background: var(--bg); color: var(--text); line-height: 1.6; overflow-x: hidden; font-weight: 400; cursor: none; }
a, button, input, .custom-select__trigger, .custom-select__dropdown li { cursor: none; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { max-width: 100%; display: block; }

/* PRELOADER */
.preloader {
    position: fixed; inset: 0; z-index: 99999; background: var(--dark);
    display: flex; align-items: center; justify-content: center;
    transition: opacity 0.6s ease, visibility 0.6s ease;
}
.preloader.is-hidden { opacity: 0; visibility: hidden; pointer-events: none; }
.preloader__inner { display: flex; align-items: center; gap: 16px; }
.preloader__dot { width: 14px; height: 14px; border-radius: 50%; background: var(--accent); animation: preloaderPulse 1s ease-in-out infinite; }
.preloader__text { font-family: var(--font-body); font-size: 1.3rem; font-weight: 700; color: #fff; letter-spacing: 0.01em; line-height: 1.4; opacity: 0; animation: preloaderFade 0.6s 0.3s forwards; }
@keyframes preloaderPulse { 0%,100% { transform: scale(1); } 50% { transform: scale(1.5); opacity: 0.5; } }
@keyframes preloaderFade { to { opacity: 1; } }

/* Loading state — hides content before preloader done */
.is-loading .nav, .is-loading .hero, .is-loading .marquee { opacity: 0; }
body:not(.is-loading) .nav { animation: fadeInUp 0.8s 0.1s both; }
body:not(.is-loading) .hero__left { animation: fadeInUp 0.8s 0.25s both; }
body:not(.is-loading) .hero__right { animation: fadeInUp 0.8s 0.4s both; }
body:not(.is-loading) .marquee { animation: fadeInUp 0.8s 0.55s both; }
@keyframes fadeInUp { from { opacity: 0; transform: translateY(30px); } to { opacity: 1; transform: translateY(0); } }

/* CUSTOM CURSOR */
.cursor {
    width: 10px; height: 10px; background: var(--accent); border-radius: 50%;
    position: fixed; top: 0; left: 0; z-index: 100000; pointer-events: none;
    transform: translate(-50%, -50%); transition: width 0.25s, height 0.25s, background 0.25s;
    mix-blend-mode: difference;
}
.cursor.is-active { width: 50px; height: 50px; background: var(--lime); mix-blend-mode: difference; }
.cursor-follower {
    width: 36px; height: 36px; border: 1.5px solid rgba(var(--accent-rgb), 0.35);
    border-radius: 50%; position: fixed; top: 0; left: 0; z-index: 99999;
    pointer-events: none; transform: translate(-50%, -50%);
    transition: width 0.4s, height 0.4s, border-color 0.4s, opacity 0.4s;
}
.cursor-follower.is-active { width: 60px; height: 60px; border-color: rgba(var(--lime-rgb), 0.25); }

/* SCROLL PROGRESS */
.scroll-progress {
    position: fixed; top: 0; left: 0; height: 3px; z-index: 10001;
    background: linear-gradient(90deg, var(--accent), var(--lime));
    width: 0%; transition: none;
}

/* FLOATING DECORATIONS */
.deco { position: fixed; pointer-events: none; z-index: 0; opacity: 0.06; }
.deco--circle-1 { width: 500px; height: 500px; border-radius: 50%; border: 1.5px solid var(--accent); top: 15%; right: -180px; animation: decoSpin 40s linear infinite; }
.deco--circle-2 { width: 300px; height: 300px; border-radius: 50%; background: radial-gradient(circle, rgba(var(--lime-rgb), 0.15), transparent 70%); bottom: 10%; left: -100px; animation: decoFloat 12s ease-in-out infinite; }
.deco--cross { width: 60px; height: 60px; top: 35%; left: 8%; }
.deco--cross::before, .deco--cross::after { content: ''; position: absolute; background: var(--accent); border-radius: 2px; }
.deco--cross::before { width: 100%; height: 2px; top: 50%; left: 0; transform: translateY(-50%); }
.deco--cross::after { width: 2px; height: 100%; left: 50%; top: 0; transform: translateX(-50%); }
@keyframes decoSpin { to { transform: rotate(360deg); } }
@keyframes decoFloat { 0%,100% { transform: translate(0,0); } 50% { transform: translate(20px, -30px); } }

/* DIAGONAL DIVIDERS */
.divider-angle { height: 60px; position: relative; margin-top: -1px; }
.divider-angle--dark { background: var(--dark); clip-path: polygon(0 0, 100% 0, 100% 0%, 0 100%); }
.divider-angle--warm { background: var(--bg-warm); clip-path: polygon(0 100%, 100% 0, 100% 100%, 0 100%); }

/* GRAIN */
.grain {
    position: fixed; inset: 0; z-index: 9999; pointer-events: none; opacity: 0.03;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    background-repeat: repeat;
}

/* CONTAINER */
.container { max-width: 1200px; margin: 0 auto; padding: 0 28px; }

/* TYPOGRAPHY */
.section-head { display: flex; gap: 24px; align-items: flex-start; margin-bottom: 56px; }
.section-num {
    font-family: var(--font-display); font-size: 0.75rem; font-weight: 800;
    color: var(--accent); letter-spacing: 0.08em;
    padding: 6px 14px; border: 1.5px solid var(--accent); border-radius: 100px;
    white-space: nowrap; flex-shrink: 0; margin-top: 8px;
}
.section-title { font-family: var(--font-display); font-size: clamp(2rem, 4vw, 3.2rem); font-weight: 800; line-height: 1.08; letter-spacing: -0.03em; }
.section-desc { font-size: 1.1rem; color: var(--text-mid); margin-top: 12px; max-width: 480px; }
.text-accent { color: var(--accent); }
.text-lime { color: var(--lime); }

/* BUTTONS */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 10px;
    font-family: var(--font-body); font-weight: 600; font-size: 0.92rem;
    border: none; border-radius: var(--radius-s); cursor: pointer;
    transition: all var(--speed) var(--ease); padding: 13px 28px; white-space: nowrap;
}
.btn--dark { background: var(--dark); color: #fff; }
.btn--dark:hover { background: var(--accent); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(var(--accent-rgb), 0.25); }
.btn--accent { background: var(--accent); color: #fff; }
.btn--accent:hover { background: #e04400; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(var(--accent-rgb), 0.3); }
.btn--lime { background: var(--lime); color: var(--dark); }
.btn--lime:hover { background: #d8ff33; transform: translateY(-2px); box-shadow: 0 8px 30px rgba(var(--lime-rgb), 0.4); }
.btn--outline { background: transparent; color: var(--text); border: 1.5px solid var(--stroke); }
.btn--outline:hover { border-color: var(--accent); color: var(--accent); }
.btn--ghost { background: transparent; color: var(--text); border: 1.5px solid var(--stroke); }
.btn--ghost:hover { border-color: var(--dark); background: var(--dark); color: #fff; }
.btn--lg { padding: 16px 36px; font-size: 1rem; border-radius: var(--radius-m); }
.btn--full { width: 100%; }
.btn svg { transition: transform var(--speed) var(--ease); }
.btn:hover svg { transform: translate(3px, -3px); }

/* NAV */
.nav { position: fixed; top: 0; left: 0; right: 0; z-index: 1000; padding: 18px 0; transition: all var(--speed) var(--ease); }
.nav--scrolled { background: rgba(247, 243, 238, 0.92); backdrop-filter: blur(16px); border-bottom: 1px solid var(--stroke-light); padding: 12px 0; }
.nav__inner { display: flex; align-items: center; justify-content: space-between; gap: 32px; }
.nav__logo { font-family: var(--font-body); font-size: 1.1rem; font-weight: 700; letter-spacing: 0.01em; display: flex; align-items: center; gap: 8px; white-space: nowrap; line-height: 1.4; overflow: visible; }
.nav__logo-dot { width: 10px; height: 10px; border-radius: 50%; background: var(--accent); display: inline-block; }
.nav__links { display: flex; gap: 28px; }
.nav__links a { font-size: 0.88rem; color: var(--text-mid); font-weight: 500; transition: color var(--speed); position: relative; }
.nav__links a:hover { color: var(--text); }
.nav__links a::after { content: ''; position: absolute; bottom: -3px; left: 0; width: 0; height: 1.5px; background: var(--accent); transition: width var(--speed); }
.nav__links a:hover::after { width: 100%; }
.nav__burger { display: none; flex-direction: column; gap: 6px; background: none; border: none; cursor: pointer; padding: 4px; }
.nav__burger span { display: block; width: 24px; height: 2px; background: var(--text); border-radius: 2px; transition: all var(--speed); }
.nav__burger--active span:first-child { transform: rotate(45deg) translate(5.5px, 5.5px); }
.nav__burger--active span:last-child { transform: rotate(-45deg) translate(5.5px, -5.5px); }

/* MOBILE MENU */
.mobile-menu { position: fixed; inset: 0; z-index: 999; background: rgba(247,243,238,0.97); backdrop-filter: blur(20px); display: flex; align-items: center; justify-content: center; opacity: 0; pointer-events: none; transition: opacity var(--speed); }
.mobile-menu--open { opacity: 1; pointer-events: all; }
.mobile-menu__links { text-align: center; display: flex; flex-direction: column; gap: 24px; }
.mobile-menu__links a { font-size: 1.5rem; font-family: var(--font-display); font-weight: 700; }

/* HERO */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; padding: 140px 0 100px; overflow: hidden; }
.hero__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; width: 100%; }
.hero__eyebrow { display: flex; align-items: center; gap: 12px; margin-bottom: 32px; font-size: 0.82rem; font-weight: 600; color: var(--text-mid); text-transform: uppercase; letter-spacing: 0.12em; }
.hero__eyebrow-line { width: 40px; height: 1.5px; background: var(--accent); }
.hero__title { font-family: var(--font-display); font-size: clamp(2.8rem, 6vw, 5rem); font-weight: 800; line-height: 1.0; letter-spacing: -0.04em; margin-bottom: 24px; }
.hero__title-accent { color: var(--accent); display: inline-block; position: relative; }
.hero__title-accent::after { content: ''; position: absolute; bottom: 4px; left: 0; right: 0; height: 8px; background: rgba(var(--accent-rgb), 0.15); border-radius: 4px; z-index: -1; }
.hero__title-thin { font-weight: 400; opacity: 0.6; }
.hero__desc { font-size: 1.1rem; color: var(--text-mid); line-height: 1.7; max-width: 420px; margin-bottom: 36px; }
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }

/* Hero visual */
.hero__visual { position: relative; }
.hero__card { border-radius: var(--radius-l); overflow: hidden; }
.hero__card--main { box-shadow: 0 24px 64px rgba(0,0,0,0.1); border: 1px solid var(--stroke); position: relative; }
.hero__card--main img { width: 100%; aspect-ratio: 4/3; object-fit: cover; }
.hero__card-overlay { position: absolute; bottom: 16px; left: 16px; display: flex; gap: 8px; }
.hero__card-tag { background: rgba(0,0,0,0.65); backdrop-filter: blur(10px); color: #fff; padding: 6px 14px; border-radius: 100px; font-size: 0.75rem; font-weight: 600; }
.hero__card--floating { position: absolute; bottom: -24px; right: -20px; width: 140px; border-radius: var(--radius-m); box-shadow: 0 16px 40px rgba(0,0,0,0.12); border: 2px solid #fff; animation: heroFloat 5s ease-in-out infinite; }
.hero__card--floating img { width: 100%; aspect-ratio: 9/16; object-fit: cover; }
@keyframes heroFloat { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-12px); } }

.hero__badge-float {
    position: absolute; top: 20px; left: -24px;
    background: #fff; border: 1px solid var(--stroke); border-radius: 100px;
    padding: 10px 18px; font-size: 0.78rem; font-weight: 600;
    display: flex; align-items: center; gap: 10px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.06); animation: heroFloat 6s ease-in-out infinite;
}
.hero__badge-pulse { width: 8px; height: 8px; border-radius: 50%; background: #10b981; animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { box-shadow: 0 0 0 0 rgba(16,185,129,0.4); } 50% { box-shadow: 0 0 0 8px rgba(16,185,129,0); } }

.hero__stats-float {
    position: absolute; top: 50%; right: -32px; transform: translateY(-50%);
    background: var(--dark); color: #fff; border-radius: var(--radius-m);
    padding: 18px 20px; box-shadow: 0 12px 30px rgba(0,0,0,0.15);
    animation: heroFloat 7s ease-in-out infinite; animation-delay: -2s;
}
.hero__stat-mini strong { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; display: block; line-height: 1; }
.hero__stat-mini span { font-size: 0.72rem; color: rgba(255,255,255,0.5); }

.hero__scroll { position: absolute; bottom: 36px; left: 50%; transform: translateX(-50%); display: flex; flex-direction: column; align-items: center; gap: 8px; }
.hero__scroll span { font-size: 0.7rem; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.15em; }
.hero__scroll-line { width: 1px; height: 40px; background: linear-gradient(to bottom, var(--accent), transparent); animation: scrollPulse 2s infinite; }
@keyframes scrollPulse { 0%,100% { opacity: 0.3; } 50% { opacity: 1; } }

/* MARQUEE */
.marquee { padding: 28px 0; background: var(--dark); overflow: hidden; }
.marquee__track { display: flex; width: max-content; animation: marqueeScroll 25s linear infinite; }
.marquee__content {
    display: flex; align-items: center; gap: 40px; white-space: nowrap; padding-right: 40px;
    font-family: var(--font-display); font-size: 1.3rem; font-weight: 700;
    color: rgba(255,255,255,0.7); text-transform: uppercase; letter-spacing: 0.1em;
}
.marquee__dot { width: 8px; height: 8px; border-radius: 50%; background: var(--accent); flex-shrink: 0; }
@keyframes marqueeScroll { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* TRUST */
.trust { padding: 80px 0; }
.trust__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.trust__item { display: flex; gap: 16px; align-items: flex-start; padding: 24px; border-radius: var(--radius-m); background: var(--bg-card); border: 1px solid var(--stroke-light); transition: all var(--speed) var(--ease); }
.trust__item:hover { border-color: rgba(var(--accent-rgb), 0.2); transform: translateY(-4px); box-shadow: 0 12px 32px rgba(0,0,0,0.04); }
.trust__icon { flex-shrink: 0; width: 52px; height: 52px; border-radius: var(--radius-s); background: rgba(var(--accent-rgb), 0.06); color: var(--accent); display: flex; align-items: center; justify-content: center; }
.trust__item strong { font-family: var(--font-display); font-size: 0.95rem; font-weight: 700; display: block; margin-bottom: 4px; }
.trust__item p { font-size: 0.85rem; color: var(--text-mid); line-height: 1.5; }

/* PRODUCT */
.product { padding: 120px 0; }

/* Browser mockup */
.product__showcase { margin-bottom: 56px; }
.product__browser { max-width: 820px; margin: 0 auto; border-radius: var(--radius-l); border: 1px solid var(--stroke); background: var(--bg-card); overflow: hidden; box-shadow: 0 24px 64px rgba(0,0,0,0.06); }
.browser-bar { display: flex; align-items: center; gap: 16px; padding: 14px 20px; border-bottom: 1px solid var(--stroke-light); }
.browser-dots { display: flex; gap: 7px; }
.browser-dots span { width: 11px; height: 11px; border-radius: 50%; }
.browser-dots span:nth-child(1) { background: #ff5f57; }
.browser-dots span:nth-child(2) { background: #febc2e; }
.browser-dots span:nth-child(3) { background: #28c840; }
.browser-url { font-size: 0.78rem; color: var(--text-muted); font-family: monospace; }
.product__browser-body { padding: 0; }

.showcase-hero { position: relative; aspect-ratio: 16/9; overflow: hidden; display: flex; align-items: center; padding: 6% 7%; }
.showcase-hero__bg { position: absolute; inset: 0; background: linear-gradient(135deg, #0F0F0F, #1a1a2e, #16213e); }
.showcase-hero__content { position: relative; z-index: 1; width: 100%; }
.showcase-hero__badge { display: inline-block; padding: 3px 12px; border-radius: 16px; background: rgba(var(--accent-rgb), 0.15); border: 1px solid rgba(var(--accent-rgb), 0.3); color: #ff8a65; font-size: clamp(0.4rem, 1vw, 0.7rem); font-weight: 600; margin-bottom: 3%; }
.showcase-hero__title { font-family: var(--font-display); font-size: clamp(0.8rem, 2.5vw, 1.8rem); font-weight: 800; color: #fff; line-height: 1.1; margin-bottom: 2%; }
.showcase-hero__title em { color: var(--lime); font-style: normal; }
.showcase-hero__desc { font-size: clamp(0.4rem, 1vw, 0.8rem); color: rgba(255,255,255,0.45); margin-bottom: 4%; }
.showcase-hero__btns { display: flex; gap: 8px; margin-bottom: 5%; }
.showcase-hero__btn { padding: 5px 16px; border-radius: 6px; font-size: clamp(0.35rem, 0.9vw, 0.7rem); font-weight: 600; }
.showcase-hero__btn--fill { background: var(--accent); color: #fff; }
.showcase-hero__btn--line { border: 1px solid rgba(255,255,255,0.15); color: rgba(255,255,255,0.6); }
.showcase-hero__metrics { display: flex; gap: clamp(12px, 3vw, 32px); }
.showcase-hero__metrics div { display: flex; flex-direction: column; }
.showcase-hero__metrics strong { font-family: var(--font-display); font-size: clamp(0.5rem, 1.4vw, 1.2rem); font-weight: 800; color: #fff; line-height: 1.2; }
.showcase-hero__metrics span { font-size: clamp(0.3rem, 0.7vw, 0.6rem); color: rgba(255,255,255,0.35); }

/* Product cards */
.product__cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 16px; }
.product__card { background: var(--bg-card); border: 1px solid var(--stroke-light); border-radius: var(--radius-l); padding: 32px 28px; transition: all var(--speed) var(--ease); position: relative; overflow: hidden; }
.product__card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: var(--accent); transform: scaleX(0); transform-origin: left; transition: transform var(--speed) var(--ease); }
.product__card:hover { transform: translateY(-6px); box-shadow: 0 16px 40px rgba(0,0,0,0.06); border-color: rgba(var(--accent-rgb), 0.15); }
.product__card:hover::before { transform: scaleX(1); }
.product__card--highlight { background: var(--dark); color: #fff; border-color: var(--dark); }
.product__card--highlight .product__card-num { color: var(--accent); }
.product__card--highlight p { color: rgba(255,255,255,0.6); }
.product__card--highlight::before { background: var(--lime); }
.product__card--wide { grid-column: span 3; }
.product__card-num { font-family: var(--font-display); font-size: 0.7rem; font-weight: 800; color: var(--accent); opacity: 0.5; margin-bottom: 16px; display: block; }
.product__card h3 { font-family: var(--font-display); font-size: 1.15rem; font-weight: 700; margin-bottom: 8px; }
.product__card p { font-size: 0.9rem; color: var(--text-mid); line-height: 1.5; }

/* INCLUDED */
.included { padding: 100px 0; background: var(--bg-warm); }
.included__track { display: grid; grid-template-columns: repeat(6, 1fr); gap: 16px; }
.included__card { text-align: center; padding: 32px 16px; position: relative; }
.included__num { font-family: var(--font-display); font-size: 2.6rem; font-weight: 800; color: rgba(var(--accent-rgb), 0.12); line-height: 1; margin-bottom: 12px; transition: color var(--speed); }
.included__card:hover .included__num { color: var(--accent); }
.included__line { width: 40px; height: 2px; background: var(--stroke); margin: 0 auto 16px; }
.included__card h3 { font-family: var(--font-display); font-size: 1rem; font-weight: 700; margin-bottom: 6px; }
.included__card p { font-size: 0.85rem; color: var(--text-mid); }

/* CTA DEMO */
.cta-demo { padding: 80px 0; }
.cta-demo__inner { display: flex; align-items: center; justify-content: space-between; gap: 40px; background: var(--dark); border-radius: var(--radius-xl); padding: 60px 56px; }
.cta-demo__title { font-family: var(--font-display); font-size: 2rem; font-weight: 700; color: #fff; margin-bottom: 12px; }
.cta-demo__desc { font-size: 1.05rem; color: rgba(255,255,255,0.6); max-width: 480px; line-height: 1.6; }
.cta-demo__inner .btn { position: relative; flex-shrink: 0; }

/* PRICING */
.pricing { padding: 120px 0; }
.pricing__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; align-items: start; }
.pricing__card { background: var(--bg-card); border: 1px solid var(--stroke-light); border-radius: var(--radius-xl); padding: 40px 32px; transition: all var(--speed) var(--ease); position: relative; }
.pricing__card:hover { transform: translateY(-8px); box-shadow: 0 20px 50px rgba(0,0,0,0.06); }
.pricing__card--featured { background: var(--dark); color: #fff; border-color: var(--dark); transform: scale(1.03); }
.pricing__card--featured:hover { transform: scale(1.03) translateY(-8px); box-shadow: 0 24px 60px rgba(0,0,0,0.15); }
.pricing__card--featured .pricing__label { color: var(--lime); }
.pricing__card--featured .pricing__amount, .pricing__card--featured h3 { color: #fff; }
.pricing__card--featured .pricing__rub { color: rgba(255,255,255,0.4); }
.pricing__card--featured .pricing__note { color: rgba(255,255,255,0.35); }
.pricing__card--featured .pricing__list li { color: rgba(255,255,255,0.65); }
.pricing__card--featured .pricing__list li::before { background: var(--lime); }
.pricing__card--featured .pricing__time { color: rgba(255,255,255,0.5); background: rgba(255,255,255,0.05); }
.pricing__card--featured .pricing__time svg { color: var(--lime); }
.pricing__badge { position: absolute; top: -12px; left: 50%; transform: translateX(-50%); background: var(--lime); color: var(--dark); font-size: 0.72rem; font-weight: 700; padding: 5px 18px; border-radius: 100px; text-transform: uppercase; letter-spacing: 0.05em; }
.pricing__card-head { margin-bottom: 20px; }
.pricing__label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; color: var(--accent); }
.pricing__card-head h3 { font-family: var(--font-display); font-size: 1.2rem; font-weight: 700; margin-top: 6px; }
.pricing__price { display: flex; align-items: baseline; gap: 4px; margin-bottom: 4px; }
.pricing__amount { font-family: var(--font-display); font-size: 2.6rem; font-weight: 800; }
.pricing__rub { font-size: 1.1rem; color: var(--text-muted); }
.pricing__note { font-size: 0.82rem; color: var(--text-light); display: block; margin-bottom: 24px; }
.pricing__list { display: flex; flex-direction: column; gap: 10px; margin-bottom: 24px; }
.pricing__list li { font-size: 0.9rem; color: var(--text-mid); padding-left: 20px; position: relative; }
.pricing__list li::before { content: ''; position: absolute; left: 0; top: 8px; width: 7px; height: 7px; border-radius: 50%; background: var(--accent); opacity: 0.4; }
.pricing__time { display: flex; align-items: center; gap: 8px; font-size: 0.88rem; color: var(--text-mid); margin-bottom: 20px; padding: 10px 14px; background: var(--bg); border-radius: var(--radius-s); }
.pricing__time svg { color: var(--accent); flex-shrink: 0; }

/* PROMO */
.promo { padding: 80px 0; }
.promo__inner { background: var(--dark); border-radius: var(--radius-xl); padding: 64px; display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; overflow: hidden; position: relative; }
.promo__inner::before { content: ''; position: absolute; width: 400px; height: 400px; border-radius: 50%; background: radial-gradient(circle, rgba(var(--lime-rgb), 0.1), transparent 70%); top: -150px; right: -100px; pointer-events: none; }
.promo__title { font-family: var(--font-display); font-size: clamp(1.4rem, 3vw, 2.2rem); font-weight: 800; line-height: 1.15; color: #fff; }
.promo__gift { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 24px; }
.promo__gift-icon { font-family: var(--font-display); font-size: 0.75rem; font-weight: 800; color: var(--lime); border: 1.5px solid rgba(var(--lime-rgb), 0.3); border-radius: 100px; padding: 4px 12px; flex-shrink: 0; }
.promo__gift strong { color: #fff; display: block; font-size: 0.95rem; }
.promo__gift p { color: rgba(255,255,255,0.45); font-size: 0.85rem; }

/* PROCESS */
.process { padding: 120px 0; background: var(--bg-warm); }
.process__steps { max-width: 640px; margin: 0 auto 56px; display: flex; flex-direction: column; gap: 0; }
.process__step { display: flex; gap: 24px; align-items: flex-start; padding: 28px 0; border-bottom: 1px solid var(--stroke); }
.process__step:last-child { border-bottom: none; }
.process__step-num { font-family: var(--font-display); font-size: 0.75rem; font-weight: 800; color: var(--accent); border: 1.5px solid rgba(var(--accent-rgb), 0.2); border-radius: 100px; padding: 6px 14px; flex-shrink: 0; transition: all var(--speed); }
.process__step:hover .process__step-num { background: var(--accent); color: #fff; border-color: var(--accent); }
.process__step-body h3 { font-family: var(--font-display); font-size: 1.1rem; font-weight: 700; margin-bottom: 4px; }
.process__step-body p { font-size: 0.92rem; color: var(--text-mid); }
.process__guarantees { display: flex; gap: 32px; justify-content: center; flex-wrap: wrap; }
.process__guarantee { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; font-weight: 600; color: var(--text-mid); }
.process__guarantee svg { color: var(--accent); flex-shrink: 0; }

/* CASES */
.cases { padding: 120px 0; }
.cases__grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; margin-bottom: 56px; }
.cases__card { background: var(--bg-card); border: 1px solid var(--stroke-light); border-radius: var(--radius-l); overflow: hidden; transition: all var(--speed) var(--ease); }
.cases__card:hover { transform: translateY(-6px); box-shadow: 0 20px 50px rgba(0,0,0,0.06); }
.cases__card-img { overflow: hidden; }
.cases__card-img img { width: 100%; height: 200px; object-fit: cover; transition: transform 0.6s var(--ease); }
.cases__card:hover .cases__card-img img { transform: scale(1.06); }
.cases__card-body { padding: 28px; }
.cases__metric { display: flex; align-items: baseline; }
.cases__metric-num { font-family: var(--font-display); font-size: 3rem; font-weight: 800; color: var(--accent); line-height: 1; }
.cases__metric-sign { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: var(--accent); }
.cases__metric-label { font-size: 0.8rem; color: var(--text-light); text-transform: uppercase; letter-spacing: 0.05em; font-weight: 600; display: block; margin-bottom: 12px; }
.cases__card-body > p { font-size: 0.92rem; color: var(--text-mid); line-height: 1.6; font-style: italic; margin-bottom: 20px; }
.cases__author { display: flex; align-items: center; gap: 12px; }
.cases__avatar { width: 36px; height: 36px; border-radius: 50%; background: var(--dark); color: #fff; display: flex; align-items: center; justify-content: center; font-weight: 700; font-size: 0.8rem; flex-shrink: 0; }
.cases__author strong { display: block; font-size: 0.88rem; }
.cases__author span { font-size: 0.78rem; color: var(--text-light); }
.cases__numbers { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.cases__stat { text-align: center; padding: 32px 16px; border-radius: var(--radius-m); background: var(--bg-card); border: 1px solid var(--stroke-light); }
.cases__stat-num { font-family: var(--font-display); font-size: 3rem; font-weight: 800; color: var(--accent); line-height: 1; }
.cases__stat-plus { font-family: var(--font-display); font-size: 1.6rem; font-weight: 800; color: var(--accent); }
.cases__stat-label { display: block; margin-top: 6px; font-size: 0.88rem; color: var(--text-mid); }

/* FAQ */
.faq { padding: 120px 0; background: var(--bg-warm); }
.faq__list { max-width: 760px; margin: 0 auto; }
.faq__item { border-bottom: 1px solid var(--stroke); }
.faq__q { display: flex; align-items: center; justify-content: space-between; width: 100%; background: none; border: none; padding: 22px 0; cursor: pointer; color: var(--text); font-family: var(--font-display); font-size: 1.05rem; font-weight: 600; text-align: left; transition: color var(--speed); gap: 16px; }
.faq__q:hover { color: var(--accent); }
.faq__q svg { flex-shrink: 0; color: var(--text-light); transition: all var(--speed); }
.faq__item--open .faq__q svg { transform: rotate(180deg); color: var(--accent); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq__item--open .faq__a { max-height: 400px; }
.faq__a p { padding: 0 0 22px; font-size: 0.95rem; color: var(--text-mid); line-height: 1.7; }

/* CONTACT */
.contact { padding: 120px 0; }
.contact__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.contact__left .section-title { text-align: left; }
.contact__left p { font-size: 1rem; color: var(--text-mid); line-height: 1.7; margin-top: 16px; margin-bottom: 24px; }
.contact__checks { display: flex; flex-direction: column; gap: 12px; }
.contact__check { display: flex; align-items: center; gap: 10px; font-size: 0.95rem; font-weight: 500; color: var(--text-mid); }
.contact__check svg { color: var(--accent); flex-shrink: 0; }
.contact__form { background: var(--bg-card); border: 1px solid var(--stroke-light); border-radius: var(--radius-xl); padding: 40px 36px; box-shadow: 0 16px 48px rgba(0,0,0,0.04); }
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { margin-bottom: 18px; }
.form-group label { display: block; font-size: 0.82rem; font-weight: 500; color: var(--text); margin-bottom: 8px; letter-spacing: -0.01em; }
.form-group input { width: 100%; height: 44px; padding: 0 14px; background: #fff; border: 1px solid var(--stroke-light); border-radius: 8px; color: var(--text); font-family: var(--font-body); font-size: 0.875rem; transition: border-color 0.15s, box-shadow 0.15s; outline: none; box-sizing: border-box; }
.form-group input:hover { border-color: #ccc; }
.form-group input:focus { border-color: var(--text); box-shadow: 0 0 0 2px rgba(26, 26, 46, 0.08), 0 0 0 1px var(--text); }
.form-group input::placeholder { color: #a1a1aa; }
.form-group textarea { width: 100%; padding: 12px 14px; background: #fff; border: 1px solid var(--stroke-light); border-radius: 8px; color: var(--text); font-family: var(--font-body); font-size: 0.875rem; transition: border-color 0.15s, box-shadow 0.15s; outline: none; box-sizing: border-box; resize: vertical; }
.form-group textarea:hover { border-color: #ccc; }
.form-group textarea:focus { border-color: var(--text); box-shadow: 0 0 0 2px rgba(26, 26, 46, 0.08), 0 0 0 1px var(--text); }
.form-group textarea::placeholder { color: #a1a1aa; }

/* Custom Select — shadcn style */
.custom-select { position: relative; }
.custom-select__trigger { display: flex; align-items: center; justify-content: space-between; width: 100%; height: 44px; padding: 0 14px; background: #fff; border: 1px solid var(--stroke-light); border-radius: 8px; color: var(--text); font-family: var(--font-body); font-size: 0.875rem; cursor: pointer; transition: border-color 0.15s, box-shadow 0.15s; outline: none; box-sizing: border-box; text-align: left; }
.custom-select__trigger:hover { border-color: #ccc; }
.custom-select__trigger:focus { border-color: var(--text); box-shadow: 0 0 0 2px rgba(26, 26, 46, 0.08), 0 0 0 1px var(--text); }
.custom-select.open .custom-select__trigger { border-color: var(--text); box-shadow: 0 0 0 2px rgba(26, 26, 46, 0.08), 0 0 0 1px var(--text); }
.custom-select__value[data-placeholder="true"] { color: #a1a1aa; }
.custom-select__icon { flex-shrink: 0; color: #a1a1aa; transition: transform 0.2s; }
.custom-select.open .custom-select__icon { transform: rotate(180deg); }

.custom-select__dropdown { position: absolute; top: calc(100% + 6px); left: 0; right: 0; background: #fff; border: 1px solid var(--stroke-light); border-radius: 8px; padding: 4px; margin: 0; list-style: none; box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08), 0 1px 3px rgba(0, 0, 0, 0.04); z-index: 50; opacity: 0; transform: scale(0.96) translateY(-4px); transform-origin: top center; pointer-events: none; transition: opacity 0.15s, transform 0.15s; }
.custom-select.open .custom-select__dropdown { opacity: 1; transform: scale(1) translateY(0); pointer-events: auto; }
.custom-select__dropdown li { padding: 8px 12px; border-radius: 6px; font-size: 0.875rem; color: var(--text); cursor: pointer; transition: background 0.1s; position: relative; }
.custom-select__dropdown li:hover { background: #f4f4f5; }
.custom-select__dropdown li[aria-selected="true"] { background: #f4f4f5; font-weight: 500; }
.custom-select__dropdown li[aria-selected="true"]::before { content: ''; position: absolute; left: 4px; top: 50%; transform: translateY(-50%); width: 4px; height: 4px; border-radius: 50%; background: var(--accent); }
.custom-select__dropdown li[aria-selected="true"] { padding-left: 16px; }

.form-note { text-align: center; font-size: 0.75rem; color: var(--text-light); margin-top: 12px; }
.form-consent { display: flex; align-items: flex-start; gap: 10px; margin-bottom: 18px; cursor: pointer; user-select: none; }
.form-consent input[type="checkbox"] { position: absolute; opacity: 0; width: 0; height: 0; }
.form-consent__check { flex-shrink: 0; width: 20px; height: 20px; border: 1.5px solid var(--stroke-light); border-radius: 5px; background: #fff; display: flex; align-items: center; justify-content: center; transition: border-color 0.15s, background 0.15s; margin-top: 1px; }
.form-consent__check::after { content: ''; display: block; width: 10px; height: 6px; border-left: 2px solid #fff; border-bottom: 2px solid #fff; transform: rotate(-45deg) translateY(-1px); opacity: 0; transition: opacity 0.15s; }
.form-consent input[type="checkbox"]:checked ~ .form-consent__check { background: var(--accent); border-color: var(--accent); }
.form-consent input[type="checkbox"]:checked ~ .form-consent__check::after { opacity: 1; }
.form-consent input[type="checkbox"]:focus-visible ~ .form-consent__check { box-shadow: 0 0 0 2px rgba(26, 26, 46, 0.08), 0 0 0 1px var(--text); }
.form-consent__text { font-size: 0.8rem; color: var(--text-light); line-height: 1.4; }
.form-consent__text a { color: var(--text); text-decoration: underline; text-underline-offset: 2px; transition: color 0.15s; }
.form-consent__text a:hover { color: var(--accent); }
.form-consent--error .form-consent__check { border-color: var(--accent); }

/* Policy page */
.policy__content { max-width: 800px; }
.policy__content h2 { font-family: var(--font-heading); font-size: 1.3rem; font-weight: 600; margin: 32px 0 12px; color: var(--text); }
.policy__content p { font-size: 0.95rem; line-height: 1.7; color: var(--text-light); margin-bottom: 12px; }
.policy__content ul { list-style: disc; padding-left: 24px; margin-bottom: 16px; }
.policy__content li { font-size: 0.95rem; line-height: 1.7; color: var(--text-light); margin-bottom: 6px; }
.policy__content a { color: var(--accent); text-decoration: underline; text-underline-offset: 2px; }

/* FOOTER */
.footer { padding: 40px 0; border-top: 1px solid var(--stroke-light); }
.footer__inner { display: flex; align-items: center; justify-content: space-between; gap: 24px; flex-wrap: wrap; }
.footer__mid { display: flex; gap: 24px; }
.footer__mid a { font-size: 0.85rem; color: var(--text-muted); transition: color var(--speed); }
.footer__mid a:hover { color: var(--accent); }
.footer__right { display: flex; align-items: center; gap: 16px; }
.footer__right p { font-size: 0.82rem; color: var(--text-light); }
.deerflow-mark { font-family: var(--font-display); font-size: 0.7rem; font-weight: 800; color: var(--text-light); opacity: 0.4; letter-spacing: 0.05em; transition: all var(--speed); border: 1px solid transparent; border-radius: 4px; padding: 2px 6px; }
.deerflow-mark:hover { opacity: 1; color: var(--accent); border-color: rgba(var(--accent-rgb), 0.2); }

/* REVEAL */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 0.7s var(--ease), transform 0.7s var(--ease); will-change: opacity, transform; }
.reveal--visible { opacity: 1; transform: translateY(0); }

/* TILT CARDS */
.product__card, .pricing__card, .cases__card, .trust__item { transition: all var(--speed) var(--ease), transform 0.3s ease; }

/* MAGNETIC BUTTON */
[data-magnetic] { transition: transform 0.3s var(--ease); }

/* RESPONSIVE */
@media (max-width: 1024px) {
    .hero__inner { grid-template-columns: 1fr; text-align: center; }
    .hero__left { order: 1; }
    .hero__right { order: 0; max-width: 420px; margin: 0 auto; }
    .hero__eyebrow { justify-content: center; }
    .hero__cta { justify-content: center; }
    .hero__desc { margin: 0 auto 36px; }
    .hero__stats-float { right: -16px; }
    .hero__badge-float { left: -8px; }
    .trust__grid { grid-template-columns: repeat(2, 1fr); }
    .product__cards { grid-template-columns: repeat(2, 1fr); }
    .product__card--wide { grid-column: span 2; }
    .included__track { grid-template-columns: repeat(3, 1fr); }
    .pricing__grid { grid-template-columns: 1fr; max-width: 420px; margin: 0 auto; }
    .pricing__card--featured { transform: none; }
    .pricing__card--featured:hover { transform: translateY(-8px); }
    .promo__inner { grid-template-columns: 1fr; padding: 48px 32px; }
    .cases__grid { grid-template-columns: 1fr; max-width: 480px; margin: 0 auto 56px; }
    .cases__numbers { grid-template-columns: repeat(2, 1fr); }
    .contact__inner { grid-template-columns: 1fr; gap: 40px; }
}

@media (max-width: 768px) {
    body, a, button, input, .custom-select__trigger, .custom-select__dropdown li { cursor: auto; }
    .cursor, .cursor-follower { display: none !important; }
    .deco { display: none; }
    .divider-angle { height: 36px; }
    .nav__links, .nav > .container > .btn--dark { display: none; }
    .nav__burger { display: flex; }
    .hero { padding: 110px 0 60px; min-height: auto; }
    .hero__title { font-size: clamp(2rem, 8vw, 3rem); }
    .hero__card--floating { width: 100px; right: -10px; bottom: -16px; }
    .trust__grid { grid-template-columns: 1fr; }
    .product__cards { grid-template-columns: 1fr; }
    .product__card--wide { grid-column: span 1; }
    .included__track { grid-template-columns: repeat(2, 1fr); }
    .section-head { flex-direction: column; gap: 16px; }
    .section-title { font-size: clamp(1.6rem, 5vw, 2.4rem); }
    .product, .pricing, .process, .cases, .faq, .contact, .included, .cta-demo { padding: 80px 0; }
    .cta-demo__inner { flex-direction: column; text-align: center; padding: 40px 28px; }
    .cta-demo__desc { max-width: 100%; }
    .hero__scroll { display: none; }
    .contact__form { padding: 28px 20px; }
    .form-row { grid-template-columns: 1fr; }
    .footer__mid { display: none; }
}

@media (max-width: 480px) {
    .hero__cta { flex-direction: column; align-items: stretch; }
    .included__track { grid-template-columns: 1fr; }
    .cases__numbers { grid-template-columns: 1fr 1fr; }
}
