/* ==================== RESET & TOKENS ==================== */
* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
    --primary: #0F172A;
    --primary-light: #1E293B;
    --accent: #6366F1;
    --accent-light: #818CF8;
    --accent-dark: #4F46E5;
    --accent-glow: rgba(99, 102, 241, 0.12);
    --success: #10B981;
    --danger: #EF4444;
    --warning: #F59E0B;
    --text-dark: #0F172A;
    --text-body: #475569;
    --text-light: #64748B;
    --text-muted: #94A3B8;
    --bg-white: #FFFFFF;
    --bg-light: #F8FAFC;
    --bg-dark: #0F172A;
    --border: #E2E8F0;
    --border-light: #F1F5F9;

    --gradient-primary: linear-gradient(135deg, #6366F1 0%, #8B5CF6 50%, #A855F7 100%);
    --gradient-dark: linear-gradient(135deg, #0F172A 0%, #1E293B 100%);

    --shadow-sm: 0 1px 3px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 4px 6px -1px rgba(15, 23, 42, 0.07), 0 2px 4px -2px rgba(15, 23, 42, 0.05);
    --shadow-lg: 0 10px 15px -3px rgba(15, 23, 42, 0.08), 0 4px 6px -4px rgba(15, 23, 42, 0.04);
    --shadow-xl: 0 20px 25px -5px rgba(15, 23, 42, 0.08), 0 8px 10px -6px rgba(15, 23, 42, 0.04);
    --shadow-2xl: 0 25px 50px -12px rgba(15, 23, 42, 0.15);
    --shadow-accent: 0 4px 14px rgba(99, 102, 241, 0.3);

    --font: 'Inter', -apple-system, sans-serif;
    --text-h1: clamp(2.5rem, 5.5vw, 3.75rem);
    --text-h2: clamp(1.75rem, 3.5vw, 2.5rem);
    --text-h3: clamp(1.0625rem, 2vw, 1.25rem);
    --text-body-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
    --text-sm: 0.875rem;
    --text-xs: 0.75rem;

    --section-y: clamp(4rem, 8vw, 6.5rem);
    --container-max: 1140px;
    --radius-sm: 8px;
    --radius: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-full: 100px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --ease-out: cubic-bezier(0, 0, 0.2, 1);
    --dur: 0.3s;
}

/* scroll-behavior removed — JS handles smooth scroll with header offset */

body {
    font-family: var(--font);
    color: var(--text-body);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--bg-white);
    font-size: var(--text-body-size);
    -webkit-font-smoothing: antialiased;
}

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

img { display: block; max-width: 100%; }

/* ==================== CARD SPOTLIGHT ==================== */
.card-spotlight {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.3s;
    z-index: 1;
    border-radius: inherit;
}

/* ==================== BORDER BEAM ==================== */
.border-beam {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    pointer-events: none;
    overflow: hidden;
    z-index: 0;
}
.border-beam::before {
    content: '';
    position: absolute;
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, #6366F1, #A855F7);
    border-radius: 50%;
    offset-path: rect(0 auto auto 0 round 24px);
    animation: beamTravel 4s linear infinite;
    filter: blur(2px);
}
@keyframes beamTravel {
    0% { offset-distance: 0%; }
    100% { offset-distance: 100%; }
}
/* Mask to only show on border */
.border-beam {
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask-composite: exclude;
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    padding: 2px;
}

/* ==================== SCROLL REVEAL ==================== */
.reveal-item {
    opacity: 0;
    transform: translateY(20px);
    transition: opacity 0.5s var(--ease-out), transform 0.5s var(--ease-out);
}
.reveal-item.visible { opacity: 1; transform: translateY(0); }
.reveal-item:nth-child(2) { transition-delay: 0.07s; }
.reveal-item:nth-child(3) { transition-delay: 0.14s; }
.reveal-item:nth-child(4) { transition-delay: 0.21s; }

/* ==================== HEADER ==================== */
.header {
    position: fixed;
    top: 0; left: 0; right: 0;
    background: rgba(255, 255, 255, 0.92);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    z-index: 50;
    transition: box-shadow var(--dur);
}
.header.scrolled { box-shadow: 0 4px 20px rgba(15, 23, 42, 0.06); }
.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 56px;
}
.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    font-size: 1.125rem;
    color: var(--text-dark);
    text-decoration: none;
}
.logo-tagline {
    font-size: 0.6875rem;
    font-weight: 500;
    color: var(--text-muted);
    letter-spacing: 0.01em;
    border-left: 1.5px solid var(--border);
    padding-left: 0.625rem;
    margin-left: 0.25rem;
    line-height: 1.2;
}
.logo-icon {
    width: 30px; height: 30px;
    display: flex;
    align-items: center;
    justify-content: center;
}
.logo-icon svg { display: block; }
.desktop-nav { display: flex; gap: 1.75rem; }
.desktop-nav a {
    color: var(--text-light);
    text-decoration: none;
    font-weight: 500;
    font-size: var(--text-sm);
    transition: color var(--dur);
}
.desktop-nav a:hover { color: var(--accent); }
.header-cta { display: block; }

/* Burger */
.burger {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 8px;
    background: none;
    border: none;
    cursor: pointer;
    z-index: 51;
}
.burger-line {
    width: 22px; height: 2px;
    background: var(--text-dark);
    border-radius: 2px;
    transition: transform var(--dur), opacity var(--dur);
}
.burger.active .burger-line:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.burger.active .burger-line:nth-child(2) { opacity: 0; }
.burger.active .burger-line:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ==================== MOBILE MENU ==================== */
.mobile-overlay {
    position: fixed; inset: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 44;
    opacity: 0;
    pointer-events: none;
    transition: opacity var(--dur);
}
.mobile-overlay.active { opacity: 1; pointer-events: auto; }
.mobile-menu {
    position: fixed; top: 0; right: 0; bottom: 0;
    width: 300px; max-width: 85vw;
    background: white;
    z-index: 45;
    transform: translateX(100%);
    transition: transform var(--dur);
    display: flex;
    flex-direction: column;
}
.mobile-menu.active { transform: translateX(0); }
.mobile-menu-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1rem 1.5rem;
    border-bottom: 1px solid var(--border);
}
.mobile-menu-logo { font-weight: 800; font-size: 1.125rem; }
.mobile-menu-close {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.5rem;
    color: var(--text-light);
    background: none; border: none; cursor: pointer;
}
.mobile-menu-links { list-style: none; padding: 0.5rem 0; flex: 1; }
.mobile-menu-links li { border-bottom: 1px solid var(--border-light); }
.mobile-menu-links a {
    display: block;
    padding: 0.875rem 1.5rem;
    color: var(--text-dark);
    font-weight: 500;
    text-decoration: none;
}
.mobile-menu-footer {
    padding: 1.5rem;
    border-top: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.mobile-menu-phone {
    text-align: center;
    color: var(--text-dark);
    font-weight: 600;
    text-decoration: none;
}
.mobile-menu-cta {
    display: block;
    text-align: center;
    padding: 0.875rem;
    background: var(--gradient-primary);
    color: white;
    font-weight: 600;
    border-radius: var(--radius-sm);
    text-decoration: none;
}

/* ==================== BUTTONS ==================== */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.625rem 1.25rem;
    border-radius: var(--radius);
    font-weight: 600;
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all var(--dur) var(--ease);
    font-size: var(--text-sm);
    font-family: inherit;
    line-height: 1.4;
}
.btn-lg { padding: 0.8rem 1.75rem; font-size: 0.9375rem; }
.btn-sm { padding: 0.4rem 0.875rem; font-size: var(--text-xs); }
.btn-block { width: 100%; }
.btn-primary {
    background: var(--gradient-primary);
    color: white;
    box-shadow: var(--shadow-accent);
    position: relative;
    overflow: hidden;
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transition: none;
    animation: btnShine 3s ease-in-out infinite;
}
@keyframes btnShine {
    0%, 70%, 100% { left: -100%; }
    85% { left: 100%; }
}
.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(99, 102, 241, 0.4);
}
.btn-outline {
    background: transparent;
    color: var(--text-dark);
    border: 1.5px solid var(--border);
}
.btn-outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-glow);
}
.btn-ghost {
    background: transparent;
    color: var(--text-dark);
    border: none;
    text-decoration: underline;
    text-underline-offset: 3px;
}
.btn-ghost:hover { color: var(--accent); }
/* Ghost button on dark hero */
.hero .btn-ghost {
    color: rgba(255, 255, 255, 0.7);
    text-decoration-color: rgba(255, 255, 255, 0.3);
}
.hero .btn-ghost:hover { color: #FFFFFF; }

/* ==================== SECTIONS BASE ==================== */
section { padding: var(--section-y) 0; }
.section-title {
    font-size: var(--text-h2);
    font-weight: 800;
    text-align: center;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    position: relative;
}
/* Accent underline — only on key sections */
.section-title::after {
    content: none;
}
.section-title-left { text-align: left; }
.section-subtitle {
    text-align: center;
    color: var(--text-light);
    font-size: var(--text-body-size);
    margin-bottom: 3rem;
    max-width: 520px;
    margin-left: auto;
    margin-right: auto;
}
.section-sub-left {
    color: var(--text-light);
    font-size: var(--text-body-size);
}

/* ==================== HERO ==================== */
.hero {
    position: relative;
    padding: 7rem 0 4.5rem;
    overflow: hidden;
    background: linear-gradient(180deg, #0B0F1A 0%, #151030 60%, #1a1045 100%);
}
/* Retro-grid — 3D perspective grid rushing toward viewer */
.hero-bg-retrogrid {
    position: absolute;
    bottom: -10%;
    left: 0;
    right: 0;
    height: 65%;
    overflow: hidden;
    perspective: 200px;
}
.hero-bg-retrogrid::before {
    content: '';
    position: absolute;
    inset: 0;
    transform: rotateX(65deg);
    transform-origin: 100% 0 0;
    margin-left: -200%;
    width: 600vw;
    height: 300vh;
    background-image:
        linear-gradient(to right, rgba(99, 102, 241, 0.2) 1px, transparent 0),
        linear-gradient(to bottom, rgba(99, 102, 241, 0.2) 1px, transparent 0);
    background-size: 60px 60px;
    animation: retrogridScroll 20s linear infinite;
}
@keyframes retrogridScroll {
    from { transform: rotateX(65deg) translateY(0); }
    to { transform: rotateX(65deg) translateY(60px); }
}
/* Fade grid into background at top */
.hero-bg-retrogrid::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to bottom, #151030 5%, transparent 40%);
    pointer-events: none;
}
/* Main accent orb — top right, vivid */
.hero::before {
    content: '';
    position: absolute;
    top: -15%;
    right: -5%;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, rgba(99, 102, 241, 0.1) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: orbFloat 8s ease-in-out infinite;
    filter: blur(40px);
}
/* Secondary orb — bottom left, purple */
.hero::after {
    content: '';
    position: absolute;
    bottom: -20%;
    left: -8%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.25) 0%, rgba(139, 92, 246, 0.06) 40%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    animation: orbFloat 8s ease-in-out infinite reverse;
    filter: blur(40px);
}
@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(20px, -15px) scale(1.05); }
    66% { transform: translate(-15px, 10px) scale(0.96); }
}
/* Bottom glow line */
.hero .container::after {
    content: '';
    position: absolute;
    bottom: -4.5rem;
    left: 50%;
    transform: translateX(-50%);
    width: 60%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(99, 102, 241, 0.5), transparent);
}
.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
    position: relative;
}
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.25);
    color: #F87171;
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    margin-bottom: 1.25rem;
}
.hero-badge-dot {
    width: 6px; height: 6px;
    border-radius: 50%;
    background: var(--danger);
    animation: blink 1.5s ease infinite;
}
@keyframes blink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.3; }
}
.hero-title {
    font-size: var(--text-h1);
    font-weight: 800;
    line-height: 1.08;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    color: #F1F5F9;
    text-shadow: 0 0 80px rgba(99, 102, 241, 0.15);
}
.hero-subtitle {
    font-size: clamp(0.9375rem, 1.5vw, 1.0625rem);
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.75rem;
    line-height: 1.7;
    max-width: 440px;
}
.hero-subtitle strong { color: #FFFFFF; }
.hero-cta {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2rem;
}
.hero-stats {
    display: flex;
    gap: 2rem;
}
.hero-stat { text-align: left; }
.hero-stat-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--accent-light);
    line-height: 1;
    margin-bottom: 0.125rem;
}
.hero-stat-label {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.35);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Hero Visual */
.hero-visual { position: relative; }
.hero .browser-mockup {
    border-color: rgba(255, 255, 255, 0.1);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.4), 0 0 40px rgba(99, 102, 241, 0.15);
}
.browser-mockup {
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-2xl);
    overflow: hidden;
    border: 1px solid var(--border);
}
.browser-bar {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.625rem 0.875rem;
    background: var(--bg-light);
    border-bottom: 1px solid var(--border);
}
.browser-dots { display: flex; gap: 5px; }
.browser-dots span {
    width: 9px; height: 9px;
    border-radius: 50%;
    background: var(--border);
}
.browser-dots span:first-child { background: #EF4444; }
.browser-dots span:nth-child(2) { background: #F59E0B; }
.browser-dots span:nth-child(3) { background: #10B981; }
.browser-url {
    flex: 1;
    background: white;
    border-radius: 5px;
    padding: 0.2rem 0.625rem;
    font-size: var(--text-xs);
    color: var(--text-muted);
    border: 1px solid var(--border);
}
.browser-screen img {
    width: 100%;
    height: 280px;
    object-fit: cover;
    object-position: top;
}

/* Floating Cards */
.floating-card {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.625rem;
    background: white;
    padding: 0.625rem 0.875rem;
    border-radius: var(--radius);
    box-shadow: var(--shadow-xl);
    border: 1px solid var(--border);
    animation: float 3s ease-in-out infinite;
}
.floating-card i { font-size: 1.25rem; }
.floating-card strong {
    display: block;
    font-size: var(--text-xs);
    color: var(--text-dark);
}
.floating-card span {
    font-size: 0.6875rem;
    color: var(--text-muted);
}
.card-telegram { bottom: 50px; left: -20px; }
.card-telegram i { color: #0088cc; }
.card-speed { top: 30px; right: -15px; animation-delay: 1.5s; }
.card-speed i { color: var(--success); }

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

/* ==================== LAW SECTION ==================== */
.law-section {
    padding: var(--section-y) 0;
    background: white;
}
.law-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3.5rem;
    align-items: start;
}
.law-overline {
    font-size: var(--text-xs);
    font-weight: 700;
    color: var(--danger);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
}
.law-main h2 {
    font-size: var(--text-h2);
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}
.law-quote {
    border-left: 3px solid var(--accent);
    padding: 1rem 0 1rem 1.25rem;
    margin: 0;
    font-style: italic;
    color: var(--text-body);
    font-size: var(--text-body-size);
    line-height: 1.7;
}
.law-detail {
    font-size: var(--text-sm);
    color: var(--text-body);
    line-height: 1.7;
    margin-top: 1rem;
}
.law-source {
    margin-top: 1rem;
    font-size: var(--text-xs);
    color: var(--text-muted);
}
.law-source a {
    color: var(--accent);
    text-decoration: underline;
    text-underline-offset: 2px;
}
.law-source a:hover { color: var(--accent-dark); }

/* Law facts */
.law-facts {
    display: flex;
    flex-direction: column;
    gap: 0.875rem;
}
.law-fact {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
    padding: 1rem 1.25rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    background: var(--bg-light);
    transition: box-shadow var(--dur);
}
.law-fact:hover { box-shadow: var(--shadow-md); }
.law-fact-num {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--danger);
    line-height: 1;
    white-space: nowrap;
    min-width: 44px;
    text-shadow: 0 0 20px rgba(239, 68, 68, 0.3);
    animation: pulseNum 2s ease-in-out infinite;
}
@keyframes pulseNum {
    0%, 100% { text-shadow: 0 0 20px rgba(239, 68, 68, 0.3); }
    50% { text-shadow: 0 0 30px rgba(239, 68, 68, 0.5); }
}
.law-fact-icon {
    width: 40px; height: 40px;
    min-width: 40px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
.law-fact-danger .law-fact-icon {
    background: rgba(239, 68, 68, 0.08);
    color: var(--danger);
}
.law-fact-warn .law-fact-icon {
    background: rgba(245, 158, 11, 0.08);
    color: var(--warning);
}
.law-fact-ok .law-fact-icon {
    background: rgba(16, 185, 129, 0.08);
    color: var(--success);
}
.law-fact-text strong {
    display: block;
    font-size: var(--text-sm);
    color: var(--text-dark);
    margin-bottom: 0.125rem;
}
.law-fact-text span {
    font-size: var(--text-xs);
    color: var(--text-light);
    line-height: 1.5;
}

/* ==================== WHY LANDING ==================== */
.why-landing {
    padding: var(--section-y) 0;
    background: var(--bg-white);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
}
.why-card {
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: white;
    transition: box-shadow var(--dur), transform var(--dur);
}
.why-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
}
.why-icon {
    width: 44px; height: 44px;
    border-radius: var(--radius);
    background: var(--accent-glow);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}
.why-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}
.why-card p {
    font-size: var(--text-sm);
    color: var(--text-light);
    line-height: 1.6;
}
@media (max-width: 900px) {
    .why-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .why-grid { grid-template-columns: 1fr; }
}

/* ==================== NICHES ==================== */
.niches {
    padding: var(--section-y) 0;
    background: var(--bg-light);
}
.niches-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
}
.niche-card {
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: white;
    transition: all var(--dur);
    display: flex;
    flex-direction: column;
}
.niche-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
    border-color: var(--accent-light);
}
.niche-icon {
    width: 44px; height: 44px;
    border-radius: var(--radius);
    background: var(--accent-glow);
    color: var(--accent);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.125rem;
    margin-bottom: 1rem;
}
.niche-card h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}
.niche-card p {
    font-size: var(--text-sm);
    color: var(--text-light);
    line-height: 1.65;
    flex: 1;
}
.niche-result {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--border-light);
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--success);
}
.niche-result i { font-size: 0.75rem; }
@media (max-width: 900px) {
    .niches-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 480px) {
    .niches-grid { grid-template-columns: 1fr; }
}

/* ==================== SERVICES — BENTO ==================== */
.services {
    padding: var(--section-y) 0;
    background: white;
}
.services .section-title { margin-bottom: 2.5rem; }
.services-bento {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: auto auto;
    gap: 1rem;
}
.bento-card {
    padding: 1.75rem;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    background: white;
    transition: all var(--dur);
}
.bento-card:hover {
    box-shadow: var(--shadow-lg);
    transform: translateY(-3px);
    border-color: var(--accent-light);
}
.bento-main {
    grid-column: 1 / 3;
    grid-row: 1;
}
.bento-sm { }
.bento-accent {
    background: var(--bg-dark);
    border-color: var(--bg-dark);
    color: rgba(255, 255, 255, 0.7);
}
.bento-accent h3 { color: white; }
.bento-accent:hover {
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.3);
}
.bento-icon {
    width: 40px; height: 40px;
    border-radius: var(--radius-sm);
    background: var(--accent-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 1rem;
    margin-bottom: 0.875rem;
}
.bento-accent .bento-icon {
    background: rgba(99, 102, 241, 0.2);
    color: var(--accent-light);
}
.bento-card h3 {
    font-size: var(--text-h3);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.5rem;
}
.bento-card p {
    font-size: var(--text-sm);
    line-height: 1.65;
    color: var(--text-light);
}
.bento-accent p { color: rgba(255, 255, 255, 0.6); }
.bento-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.375rem;
    margin-top: 1rem;
}
.bento-tags span {
    background: var(--bg-light);
    border: 1px solid var(--border);
    color: var(--text-light);
    font-size: var(--text-xs);
    font-weight: 500;
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-sm);
}
.bento-time {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--accent-light);
    line-height: 1;
    margin-bottom: 0.5rem;
}

/* ==================== PRICING ==================== */
.pricing {
    padding: var(--section-y) 0;
    background: white;
}
.pricing-header-row {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    margin-bottom: 2.5rem;
    gap: 1rem;
}
.pricing-promo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.06), rgba(249, 115, 22, 0.06));
    border: 1px solid rgba(239, 68, 68, 0.15);
    color: var(--danger);
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    white-space: nowrap;
    animation: pulse-promo 2s ease infinite;
}
@keyframes pulse-promo {
    0%, 100% { box-shadow: 0 0 0 0 rgba(239, 68, 68, 0.12); }
    50% { box-shadow: 0 0 0 6px rgba(239, 68, 68, 0); }
}
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.25rem;
    align-items: start;
}
.pricing-card {
    background: var(--bg-light);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border);
    padding: 1.75rem;
    transition: all var(--dur);
    position: relative;
}
.pricing-card:hover {
    box-shadow: var(--shadow-xl);
    transform: translateY(-4px);
}
.pricing-card-pop {
    border-color: transparent;
    background: white;
    transform: scale(1.02);
    z-index: 2;
    box-shadow: var(--shadow-lg);
    background-image: linear-gradient(white, white), var(--gradient-primary);
    background-origin: border-box;
    background-clip: padding-box, border-box;
    border: 2px solid transparent;
}
.pricing-card-pop:hover { transform: scale(1.02) translateY(-4px); }
.pricing-pop-label {
    position: absolute;
    top: -11px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: white;
    font-size: var(--text-xs);
    font-weight: 700;
    padding: 0.2rem 1rem;
    border-radius: var(--radius-full);
    white-space: nowrap;
}
.pricing-card-head { margin-bottom: 1.25rem; }
.pricing-card-head h3 {
    font-size: 1.125rem;
    font-weight: 800;
    color: var(--text-dark);
    margin-bottom: 0.125rem;
}
.pricing-card-head p {
    font-size: var(--text-xs);
    color: var(--text-muted);
}
.pricing-price {
    display: flex;
    align-items: baseline;
    gap: 0.375rem;
    margin-bottom: 1.25rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--border);
}
.price-old {
    font-size: 0.875rem;
    color: var(--text-muted);
    text-decoration: line-through;
}
.price-current {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    line-height: 1;
}
.price-currency {
    font-size: var(--text-xs);
    color: var(--text-muted);
    font-weight: 500;
}
.pricing-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}
.pricing-features li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: var(--text-sm);
}
.pricing-features li.yes { color: var(--text-body); }
.pricing-features li.yes i { color: var(--success); font-size: 0.6875rem; }
.pricing-features li.no { color: var(--text-muted); }
.pricing-features li.no i { color: var(--border); font-size: 0.6875rem; }
.pricing-guarantee {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-top: 2rem;
    padding: 1rem 1.25rem;
    background: var(--bg-light);
    border-radius: var(--radius);
    border: 1px solid var(--border);
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}
.pricing-guarantee i {
    font-size: 1.25rem;
    color: var(--success);
    flex-shrink: 0;
}
.pricing-guarantee strong {
    display: block;
    font-size: var(--text-sm);
    color: var(--text-dark);
    margin-bottom: 0.0625rem;
}
.pricing-guarantee span {
    font-size: var(--text-xs);
    color: var(--text-light);
}

/* ==================== AUTOPILOT ==================== */
.autopilot {
    padding: var(--section-y) 0;
    background: white;
}
.autopilot-banner {
    background: var(--bg-dark);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: center;
    position: relative;
    overflow: hidden;
}
.autopilot-banner::before {
    content: '';
    position: absolute;
    top: -40%;
    right: -10%;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.15) 0%, transparent 70%);
    pointer-events: none;
}
.autopilot-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(99, 102, 241, 0.15);
    border: 1px solid rgba(99, 102, 241, 0.25);
    color: var(--accent-light);
    padding: 0.3rem 0.75rem;
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    margin-bottom: 1rem;
}
.autopilot-left h2 {
    font-size: var(--text-h2);
    font-weight: 800;
    color: white;
    letter-spacing: -0.02em;
    line-height: 1.15;
    margin-bottom: 0.75rem;
}
.autopilot-left p {
    color: rgba(255, 255, 255, 0.5);
    font-size: var(--text-sm);
    line-height: 1.7;
    max-width: 380px;
}
.autopilot-right {
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.autopilot-tier {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: var(--radius);
    padding: 1rem 1.25rem;
    transition: all var(--dur);
}
.autopilot-tier:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.15);
}
.autopilot-tier-accent {
    background: rgba(99, 102, 241, 0.12);
    border-color: rgba(99, 102, 241, 0.25);
}
.autopilot-tier-accent:hover {
    background: rgba(99, 102, 241, 0.18);
}
.autopilot-tier-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 0.375rem;
}
.autopilot-tier-name {
    font-size: var(--text-sm);
    font-weight: 700;
    color: white;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.autopilot-tier-tag {
    font-size: 0.625rem;
    font-weight: 600;
    color: var(--accent-light);
    background: rgba(99, 102, 241, 0.2);
    padding: 0.125rem 0.5rem;
    border-radius: var(--radius-full);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}
.autopilot-tier-price {
    font-size: 1.25rem;
    font-weight: 800;
    color: white;
}
.autopilot-tier-price small {
    font-size: var(--text-xs);
    font-weight: 500;
    color: rgba(255, 255, 255, 0.4);
}
.autopilot-tier-desc {
    font-size: var(--text-xs);
    color: rgba(255, 255, 255, 0.4);
    line-height: 1.5;
}
@media (max-width: 768px) {
    .autopilot-banner { grid-template-columns: 1fr; gap: 1.5rem; padding: 1.75rem; }
}

/* ==================== PORTFOLIO / WORK ==================== */
.work {
    padding: var(--section-y) 0;
    background: var(--bg-light);
}
.work .section-title { margin-bottom: 0.5rem; }
.work .section-subtitle { margin-bottom: 2.5rem; }
.work-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}
.work-item-wide {
    grid-column: 1 / -1;
}
.work-item .browser-mockup { margin-bottom: 0.875rem; }
/* Portfolio — auto-scrolling full page screenshots */
.work .browser-mockup {
    position: relative;
    transition: box-shadow 0.4s var(--ease), transform 0.4s var(--ease);
}
.work .work-item:hover .browser-mockup {
    box-shadow: 0 20px 60px rgba(99, 102, 241, 0.15), 0 8px 20px rgba(15, 23, 42, 0.08);
    transform: translateY(-4px);
}
.work .browser-screen {
    overflow: hidden;
    --screen-h: 400px;
    height: var(--screen-h);
    position: relative;
}
.work .browser-mockup-sm .browser-screen {
    --screen-h: 320px;
}
.work .browser-screen img {
    width: 100%;
    height: auto;
    object-fit: initial;
    object-position: initial;
    animation: scrollPage 12s ease-in-out infinite;
}
/* Stagger animations */
.work .work-item:nth-child(2) .browser-screen img { animation-delay: -4s; }
.work .work-item:nth-child(3) .browser-screen img { animation-delay: -8s; }
@keyframes scrollPage {
    0%, 10%   { transform: translateY(0); }
    40%, 60%  { transform: translateY(calc(-100% + var(--screen-h))); }
    90%, 100% { transform: translateY(0); }
}
/* Pause on hover for manual inspection */
.work .work-item:hover .browser-screen img {
    animation-play-state: paused;
}
/* Gradient fade at bottom — hints there's more content */
.work .browser-screen::after {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 80px;
    background: linear-gradient(transparent, rgba(255, 255, 255, 0.85));
    pointer-events: none;
    opacity: 1;
    transition: opacity 0.3s;
}
.work .work-item:hover .browser-screen::after {
    opacity: 0;
}
/* Live preview badge — inline dot */
.work .browser-url::after {
    content: '● live';
    margin-left: 0.5rem;
    color: var(--success);
    font-size: 0.625rem;
    font-weight: 600;
    letter-spacing: 0.04em;
}
/* Live badge — explicit */
.live-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    margin-left: auto;
    padding: 0.125rem 0.625rem;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--success);
    background: rgba(16, 185, 129, 0.08);
    border-radius: var(--radius-full);
    letter-spacing: 0.02em;
}
.live-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--success);
    animation: livePulse 1.5s ease-in-out infinite;
}
@keyframes livePulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}
/* Iframe in browser screen */
.browser-screen-iframe {
    height: 480px !important;
    overflow: auto;
}
.browser-screen-iframe iframe {
    width: 100%;
    height: 100%;
    border: none;
    display: block;
}
/* Hide auto-scroll fade on iframe items */
.work-item-live .browser-screen::after {
    display: none;
}
/* Hide duplicate live dot on iframe items */
.work-item-live .browser-url::after {
    display: none;
}
.work-meta {
    display: flex;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem;
}
.work-meta-left h4 {
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.125rem;
}
.work-meta-left p {
    font-size: var(--text-xs);
    color: var(--text-light);
}
.work-meta-right {
    display: flex;
    flex-direction: column;
    align-items: flex-end;
    gap: 0.5rem;
    flex-shrink: 0;
}
.work-meta-tags {
    display: flex;
    gap: 0.375rem;
    flex-shrink: 0;
}
.work-meta-tags span {
    font-size: 0.6875rem;
    font-weight: 500;
    padding: 0.2rem 0.5rem;
    border-radius: var(--radius-sm);
    background: white;
    border: 1px solid var(--border);
    color: var(--text-light);
}
.work-link {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: var(--text-xs);
    font-weight: 600;
    color: var(--accent);
    text-decoration: none;
    transition: gap 0.2s var(--ease);
}
.work-link:hover {
    gap: 0.5rem;
    color: var(--accent-dark);
}
.work-link i { font-size: 0.625rem; }

/* ==================== PROCESS — HORIZONTAL ==================== */
.process {
    padding: var(--section-y) 0;
    background: white;
}
.process .section-title { margin-bottom: 2.5rem; }
.process-row {
    display: flex;
    align-items: stretch;
    gap: 0;
}
.process-card {
    flex: 1;
    padding: 1.5rem;
    text-align: center;
}
.process-card-done {
    background: var(--accent-glow);
    border-radius: var(--radius);
}
.process-num {
    font-size: 2rem;
    font-weight: 800;
    color: var(--border);
    line-height: 1;
    margin-bottom: 0.5rem;
}
.process-card-done .process-num { color: var(--accent); }
.process-card h3 {
    font-size: var(--text-h3);
    font-weight: 700;
    color: var(--text-dark);
    margin-bottom: 0.375rem;
}
.process-card p {
    font-size: var(--text-xs);
    color: var(--text-light);
    line-height: 1.5;
}
.process-arrow {
    display: flex;
    align-items: center;
    padding: 0 0.25rem;
    color: var(--border);
    font-size: 0.875rem;
}

/* ==================== FAQ — TWO COLUMN ==================== */
.faq {
    padding: var(--section-y) 0;
    background: var(--bg-light);
}
.faq-layout {
    display: grid;
    grid-template-columns: 280px 1fr;
    gap: 3rem;
    align-items: start;
}
.faq-left h2 {
    font-size: var(--text-h2);
    font-weight: 800;
    color: var(--text-dark);
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
}
.faq-left p {
    color: var(--text-light);
    font-size: var(--text-sm);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}
.faq-right {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.faq-item {
    background: white;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    overflow: hidden;
    transition: all var(--dur);
}
.faq-item[open] {
    border-color: var(--accent);
    box-shadow: 0 0 0 1px var(--accent);
}
.faq-question {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.875rem 1.125rem;
    font-weight: 600;
    font-size: var(--text-sm);
    color: var(--text-dark);
    cursor: pointer;
    list-style: none;
    user-select: none;
}
.faq-question::-webkit-details-marker { display: none; }
.faq-icon {
    width: 18px; height: 18px;
    flex-shrink: 0;
    position: relative;
    margin-left: 1rem;
}
.faq-icon::before, .faq-icon::after {
    content: '';
    position: absolute;
    top: 50%; left: 50%;
    width: 10px; height: 2px;
    background: var(--text-light);
    transform: translate(-50%, -50%);
    transition: transform var(--dur);
    border-radius: 1px;
}
.faq-icon::after { transform: translate(-50%, -50%) rotate(90deg); }
.faq-item[open] .faq-icon::after { transform: translate(-50%, -50%) rotate(0deg); }
.faq-answer { padding: 0 1.125rem 1rem; }
.faq-answer p {
    color: var(--text-light);
    font-size: var(--text-sm);
    line-height: 1.7;
}

/* ==================== CTA ==================== */
.cta-section {
    padding: var(--section-y) 0;
    background: var(--bg-dark);
}
.cta-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: center;
}
.cta-promo {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.2);
    color: var(--accent-light);
    padding: 0.375rem 0.875rem;
    border-radius: var(--radius-full);
    font-size: var(--text-xs);
    font-weight: 600;
    margin-bottom: 1rem;
}
.cta-content h2 {
    font-size: var(--text-h2);
    font-weight: 800;
    color: white;
    margin-bottom: 0.75rem;
    letter-spacing: -0.02em;
    line-height: 1.15;
}
.cta-content p {
    color: rgba(255, 255, 255, 0.55);
    margin-bottom: 1.5rem;
    font-size: var(--text-body-size);
    line-height: 1.6;
}
.cta-checks {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}
.cta-checks li {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.75);
    font-size: var(--text-sm);
}
.cta-checks li i { color: var(--success); font-size: 0.8125rem; }
.cta-cards {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.cta-card {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    background: white;
    border-radius: var(--radius-xl);
    padding: 1.75rem;
    box-shadow: var(--shadow-lg);
    text-decoration: none;
    color: var(--text-dark);
    transition: all var(--dur);
    border: 1.5px solid transparent;
}
.cta-card:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-2xl);
    border-color: var(--accent-light);
}
.cta-card-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--radius-md);
    background: var(--accent-glow);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--accent);
}
.cta-card-tg .cta-card-icon {
    background: rgba(0, 136, 204, 0.1);
    color: #0088cc;
}
.cta-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    margin: 0;
}
.cta-card p {
    font-size: var(--text-sm);
    color: var(--text-light);
    line-height: 1.5;
    margin: 0;
}
.cta-card-action {
    display: inline-flex;
    align-items: center;
    gap: 0.375rem;
    font-size: var(--text-sm);
    font-weight: 600;
    color: var(--accent);
    margin-top: 0.25rem;
}
.cta-card-tg .cta-card-action {
    color: #0088cc;
}
.cta-card-action i {
    font-size: 0.75rem;
    transition: transform var(--dur);
}
.cta-card:hover .cta-card-action i {
    transform: translateX(4px);
}

/* ==================== FOOTER ==================== */
.footer {
    background: var(--bg-dark);
    color: white;
    padding: 3rem 0 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
}
.footer-row {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 2rem;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 800;
    font-size: 1.125rem;
    margin-bottom: 0.625rem;
}
.footer-brand p {
    color: rgba(255, 255, 255, 0.45);
    font-size: var(--text-sm);
    line-height: 1.6;
    margin-bottom: 0.875rem;
}
.footer-socials { display: flex; gap: 0.5rem; }
.footer-socials a {
    width: 34px; height: 34px;
    border-radius: var(--radius-sm);
    background: rgba(255, 255, 255, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.45);
    font-size: 0.9375rem;
    text-decoration: none;
    transition: all var(--dur);
}
.footer-socials a:hover {
    background: rgba(255, 255, 255, 0.1);
    color: white;
}
.footer-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 0.25rem;
}
.footer-links a {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    font-size: var(--text-sm);
    transition: color var(--dur);
}
.footer-links a:hover { color: white; }
.footer-contacts {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    padding-top: 0.25rem;
}
.footer-contacts a,
.footer-contacts span {
    color: rgba(255, 255, 255, 0.45);
    text-decoration: none;
    font-size: var(--text-sm);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: color var(--dur);
}
.footer-contacts a:hover { color: white; }
.footer-contacts i { color: var(--accent-light); font-size: var(--text-xs); width: 14px; text-align: center; }
.footer-bottom {
    text-align: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    color: rgba(255, 255, 255, 0.25);
    font-size: var(--text-xs);
}

/* ==================== FLOATING BUTTONS ==================== */
.social-float {
    position: fixed;
    bottom: 24px; right: 24px;
    z-index: 39;
}
.social-btn {
    width: 48px; height: 48px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 20px;
    text-decoration: none;
    box-shadow: var(--shadow-lg);
    transition: all var(--dur);
}
.social-btn:hover { transform: translateY(-3px) scale(1.05); }
.social-btn.telegram { background: #0088cc; }

/* ==================== RESPONSIVE ==================== */
@media (max-width: 1024px) {
    .hero .container { grid-template-columns: 1fr; }
    .hero-visual { display: none; }
    .law-layout { grid-template-columns: 1fr; gap: 2.5rem; }
    .services-bento { grid-template-columns: 1fr 1fr; }
    .bento-main { grid-column: 1 / -1; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 380px; margin: 0 auto; }
    .pricing-card-pop { transform: none; }
    .pricing-card-pop:hover { transform: translateY(-4px); }
    .work-grid { grid-template-columns: 1fr; }
    .work-item-wide { grid-column: 1; }
    .faq-layout { grid-template-columns: 1fr; gap: 1.5rem; }
}
@media (max-width: 768px) {
    .desktop-nav, .header-cta, .logo-tagline { display: none; }
    .burger { display: flex; }
    .hero { padding: 5.5rem 0 3rem; }
    .hero-stats { gap: 1.5rem; }
    .hero-cta { flex-direction: column; align-items: flex-start; }
    .services-bento { grid-template-columns: 1fr; }
    .pricing-header-row { flex-direction: column; align-items: flex-start; }
    .process-row { flex-direction: column; gap: 0; }
    .process-arrow { transform: rotate(90deg); justify-content: center; padding: 0.25rem 0; }
    .cta-layout { grid-template-columns: 1fr; }
    .footer-row { grid-template-columns: 1fr; gap: 1.5rem; }
    .work .browser-screen { --screen-h: 280px; }
    .work .browser-mockup-sm .browser-screen { --screen-h: 260px; }
}
@media (max-width: 480px) {
    .hero-stats { flex-direction: column; gap: 0.75rem; align-items: flex-start; }
    .work-meta { flex-direction: column; align-items: flex-start; gap: 0.5rem; }
}
