:root {
    --primary: #2563eb;
    --primary-dark: #1e40af;
    --primary-light: #3b82f6;
    --dark: #0f172a;
    --light: #f8fafc;
    --gradient: linear-gradient(135deg, #2563eb, #3b82f6, #1e40af);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; scroll-padding-top: 80px; }
body { font-family: 'Inter', sans-serif; background: #0a0a0a !important; color: #fff; overflow-x: hidden; line-height: 1.6; }

/* ВАЖНО: курсор только для desktop, НЕ для input */
@media (hover: hover) and (pointer: fine) {
    * { cursor: none !important; }
    input, textarea, select, [contenteditable] { cursor: text !important; }
    a, button { cursor: pointer !important; }
}

.cursor { position: fixed; width: 8px; height: 8px; background: #0a0a0a !important; border-radius: 50%; pointer-events: none; z-index: 10000; transition: transform 0.1s; mix-blend-mode: difference; }
.cursor-follower { position: fixed; width: 40px; height: 40px; border: 2px solid rgba(37,99,235,0.6); border-radius: 50%; pointer-events: none; z-index: 9999; transition: all 0.2s ease-out; }
.cursor-follower.active { width: 60px; height: 60px; background: rgba(37,99,235,0.1); backdrop-filter: blur(4px); }
@media (max-width: 768px) { .cursor, .cursor-follower { display: none !important; } * { cursor: auto !important; } }

.preloader { position: fixed; inset: 0; background: #0a0a0a !important; z-index: 10000; display: flex; flex-direction: column; align-items: center; justify-content: center; gap: 20px; transition: opacity 0.5s, visibility 0.5s; }
.preloader.hide { opacity: 0; visibility: hidden; }
.preloader__spinner { width: 60px; height: 60px; border: 3px solid rgba(37,99,235,0.2); border-top-color: #2563eb; border-radius: 50%; animation: spin 0.8s linear infinite; }
.preloader__text { font-size: 0.9rem; letter-spacing: 2px; text-transform: uppercase; color: #64748b; font-family: 'JetBrains Mono', monospace; }
.preloader__text span { animation: blink 1.4s infinite; }
.preloader__text span:nth-child(2) { animation-delay: 0.2s; }
.preloader__text span:nth-child(3) { animation-delay: 0.4s; }
@keyframes spin { to { transform: rotate(360deg); } }
@keyframes blink { 0%,100%{opacity:1} 50%{opacity:0} }

#canvas { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; pointer-events: none; }

.video-bg { position: fixed; top: 0; left: 0; width: 100%; height: 100%; z-index: 0; overflow: hidden; }
.video-bg__overlay { position: absolute; inset: 0; background: linear-gradient(135deg, rgba(10,10,10,0.85), rgba(10,10,10,0.95)); z-index: 1; }
.video-bg__content { position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; z-index: 2; opacity: 0.05; pointer-events: none; }
.ascii-art { font-family: 'JetBrains Mono', monospace; font-size: 10px; white-space: pre; color: #2563eb; text-align: center; line-height: 1.2; }
@media (max-width: 768px) { .ascii-art { font-size: 5px; } }

.container { max-width: 1280px; margin: 0 auto; padding: 0 24px; position: relative; z-index: 2; }

.header { position: fixed; top: 0; left: 0; width: 100%; z-index: 100; background: rgba(10,10,10,0.8); backdrop-filter: blur(10px); border-bottom: 1px solid rgba(37,99,235,0.2); padding: 16px 0; transition: 0.3s; }
.header.scrolled { padding: 12px 0; background: rgba(10,10,10,0.95); box-shadow: 0 4px 20px rgba(0,0,0,0.3); }
.header__wrapper { display: flex; justify-content: space-between; align-items: center; gap: 24px; flex-wrap: wrap; }
.logo { font-size: 1.8rem; font-weight: 800; text-decoration: none; color: #fff; letter-spacing: -0.02em; }
.logo span { color: #2563eb; text-shadow: 0 0 10px rgba(37,99,235,0.5); }
.menu-btn { display: none; background: none; border: none; cursor: pointer; padding: 8px; z-index: 101; }
.menu-btn span { display: block; width: 24px; height: 2px; background: #0a0a0a !important; margin: 5px 0; transition: 0.3s; }
.menu-btn.active span:nth-child(1) { transform: rotate(45deg) translate(6px, 6px); }
.menu-btn.active span:nth-child(2) { opacity: 0; }
.menu-btn.active span:nth-child(3) { transform: rotate(-45deg) translate(6px, -6px); }
.nav { display: flex; gap: 32px; align-items: center; }
.nav a:not(.btn-primary) { text-decoration: none; color: #fff; font-weight: 500; transition: 0.3s; position: relative; }
.nav a:not(.btn-primary)::after { content: ''; position: absolute; bottom: -4px; left: 0; width: 0; height: 2px; background: #2563eb; transition: 0.3s; }
.nav a:not(.btn-primary):hover::after { width: 100%; }

/* КРИТИЧНО: Кнопки языка — изолированы */
.lang-switcher {
    display: flex;
    gap: 4px;
    background: rgba(255,255,255,0.05);
    padding: 4px;
    border-radius: 10px;
    position: relative;
    z-index: 200;
    isolation: isolate;
}
.lang-btn {
    background: transparent;
    border: none;
    border-radius: 8px;
    padding: 6px 14px;
    font-weight: 600;
    font-size: 0.85rem;
    color: #94a3b8;
    transition: all 0.3s;
    min-width: 48px;
    min-height: 36px;
    position: relative;
    z-index: 201;
    font-family: inherit;
}
.lang-btn.active { background: #2563eb; color: #fff; box-shadow: 0 2px 8px rgba(37,99,235,0.4); }
.lang-btn:hover:not(.active) { color: #fff; background: rgba(255,255,255,0.1); }

.btn { display: inline-flex; align-items: center; justify-content: center; gap: 8px; padding: 14px 32px; border-radius: 40px; font-weight: 600; text-decoration: none; transition: 0.3s; border: none; position: relative; overflow: hidden; font-family: inherit; font-size: 1rem; }
.btn-primary { background: linear-gradient(135deg, #2563eb, #1e40af); color: #fff; box-shadow: 0 0 15px rgba(37,99,235,0.3); }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 0 25px rgba(37,99,235,0.5); }
.btn-secondary { background: transparent; color: #fff; border: 2px solid #2563eb; }
.btn-secondary:hover { background: rgba(37,99,235,0.1); transform: translateY(-2px); }

.hero { min-height: 100vh; display: flex; align-items: center; justify-content: center; text-align: center; padding: 120px 0 80px; position: relative; }
.hero__badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(16,185,129,0.1); color: #10b981; padding: 6px 20px; border-radius: 40px; font-size: 0.85rem; margin-bottom: 24px; border: 1px solid rgba(16,185,129,0.2); }
.badge-dot { width: 8px; height: 8px; background: #10b981; border-radius: 50%; animation: pulse 2s infinite; box-shadow: 0 0 0 0 rgba(16,185,129,0.7); }
@keyframes pulse { 0%{box-shadow:0 0 0 0 rgba(16,185,129,0.7)} 70%{box-shadow:0 0 0 10px rgba(16,185,129,0)} 100%{box-shadow:0 0 0 0 rgba(16,185,129,0)} }
.hero__title { font-size: clamp(2rem, 5vw, 4rem); font-weight: 800; line-height: 1.2; margin-bottom: 24px; letter-spacing: -0.03em; }
.gradient { background: linear-gradient(135deg, #2563eb, #8b5cf6, #ec4899); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; background-size: 200% 200%; animation: gradient 5s ease infinite; }
@keyframes gradient { 0%,100%{background-position:0% 50%} 50%{background-position:100% 50%} }
.hero__subtitle { font-size: clamp(1.1rem, 2vw, 1.4rem); color: #2563eb; font-weight: 600; margin-bottom: 16px; }
.hero__desc { font-size: 1.1rem; color: #94a3b8; max-width: 700px; margin: 0 auto 32px; }
.hero__btns { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; margin-bottom: 48px; }
.hero__trust { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; color: #94a3b8; font-size: 0.9rem; }
.hero__trust i { color: #10b981; margin-right: 8px; }
.hero__scroll { position: absolute; bottom: 30px; left: 50%; transform: translateX(-50%); text-align: center; }
.hero__scroll span { font-size: 0.7rem; letter-spacing: 2px; color: #64748b; }
.scroll-line { width: 1px; height: 50px; background: linear-gradient(180deg, #2563eb, transparent); margin: 8px auto 0; animation: scrollAnim 2s infinite; }
@keyframes scrollAnim { 0% { opacity: 0; transform: translateY(0); } 50% { opacity: 1; transform: translateY(10px); } 100% { opacity: 0; transform: translateY(20px); } }

.stats { background: rgba(15,23,42,0.8); backdrop-filter: blur(10px); padding: 60px 0; border-top: 1px solid rgba(37,99,235,0.2); border-bottom: 1px solid rgba(37,99,235,0.2); }
.stats__grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; text-align: center; }
.stat { position: relative; padding: 20px; border-radius: 20px; transition: 0.3s; }
.stat:hover { background: rgba(37,99,235,0.1); transform: translateY(-5px); }
.stat__num { font-size: clamp(2rem, 4vw, 3rem); font-weight: 800; background: linear-gradient(135deg, #60a5fa, #a78bfa); -webkit-background-clip: text; -webkit-text-fill-color: transparent; background-clip: text; margin-bottom: 8px; font-family: 'JetBrains Mono', monospace; }
.stat__label { font-size: 0.9rem; color: #94a3b8; }

.section__header { text-align: center; margin-bottom: 60px; }
.section__tag { display: inline-block; background: rgba(37,99,235,0.1); color: #2563eb; padding: 4px 16px; border-radius: 40px; font-size: 0.7rem; font-weight: 600; letter-spacing: 2px; margin-bottom: 16px; text-transform: uppercase; }
.section__header h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); font-weight: 800; margin-bottom: 12px; }
.section__subtitle { color: #94a3b8; max-width: 600px; margin: 0 auto; }

.services { padding: 100px 0; background: transparent; }
.services__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 32px; }
.card { background: rgba(15,23,42,0.6); backdrop-filter: blur(10px); padding: 32px; border-radius: 24px; transition: 0.4s; border: 1px solid rgba(37,99,235,0.2); position: relative; overflow: hidden; }
.card::before { content: ''; position: absolute; top: 0; left: 0; right: 0; height: 3px; background: linear-gradient(90deg, #2563eb, #8b5cf6); transform: scaleX(0); transform-origin: left; transition: transform 0.4s; }
.card:hover { transform: translateY(-10px); border-color: #2563eb; box-shadow: 0 25px 50px -12px rgba(37,99,235,0.3); }
.card:hover::before { transform: scaleX(1); }
.card__icon { width: 64px; height: 64px; background: linear-gradient(135deg, #2563eb, #1e40af); border-radius: 20px; display: flex; align-items: center; justify-content: center; font-size: 1.8rem; color: #fff; margin-bottom: 24px; box-shadow: 0 8px 20px rgba(37,99,235,0.3); }
.card h3 { font-size: 1.3rem; margin-bottom: 12px; font-weight: 700; }
.card p { color: #94a3b8; margin-bottom: 20px; line-height: 1.6; }
.card__features { list-style: none; margin-bottom: 20px; }
.card__features li { display: flex; align-items: center; gap: 10px; color: #cbd5e1; font-size: 0.9rem; margin-bottom: 8px; }
.card__features i { color: #10b981; font-size: 0.85rem; }
.card__link { color: #2563eb; font-weight: 600; text-decoration: none; display: inline-flex; align-items: center; gap: 8px; transition: 0.3s; }
.card__link:hover { gap: 12px; }
.card__glow { position: absolute; inset: 0; background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(37,99,235,0.15), transparent 70%); opacity: 0; transition: opacity 0.3s; pointer-events: none; }
.card:hover .card__glow { opacity: 1; }

.tech { padding: 80px 0; background: rgba(15,23,42,0.4); }
.tech__grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(140px, 1fr)); gap: 16px; max-width: 1000px; margin: 0 auto; }
.tech__item { display: flex; flex-direction: column; align-items: center; gap: 8px; padding: 24px 16px; background: rgba(15,23,42,0.6); border-radius: 16px; border: 1px solid rgba(37,99,235,0.2); transition: 0.3s; position: relative; }
.tech__item:hover { transform: translateY(-5px); border-color: #2563eb; box-shadow: 0 12px 24px rgba(37,99,235,0.2); }
.tech__item i { font-size: 2.2rem; color: #2563eb; }
.tech__item span { font-weight: 600; font-size: 0.9rem; }
.tech__tooltip { position: absolute; bottom: 100%; left: 50%; transform: translateX(-50%); background: #2563eb; color: #fff; padding: 4px 12px; border-radius: 8px; font-size: 0.7rem; white-space: nowrap; opacity: 0; visibility: hidden; transition: 0.3s; margin-bottom: 8px; }
.tech__item:hover .tech__tooltip { opacity: 1; visibility: visible; }

.process { padding: 100px 0; background: transparent; }
.process__steps { max-width: 800px; margin: 0 auto; }
.step { display: flex; gap: 24px; margin-bottom: 48px; position: relative; }
.step:last-child { margin-bottom: 0; }
.step__num { width: 60px; height: 60px; background: linear-gradient(135deg, #2563eb, #1e40af); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 1.4rem; flex-shrink: 0; box-shadow: 0 8px 16px rgba(37,99,235,0.3); font-family: 'JetBrains Mono', monospace; }
.step h3 { font-size: 1.3rem; margin-bottom: 8px; }
.step p { color: #94a3b8; }
.step__line { position: absolute; left: 29px; top: 60px; bottom: -48px; width: 2px; background: linear-gradient(180deg, #2563eb, transparent); }
.step:last-child .step__line { display: none; }

.cases { padding: 100px 0; background: rgba(15,23,42,0.4); }
.cases__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 32px; }
.case { background: rgba(15,23,42,0.6); backdrop-filter: blur(10px); padding: 28px; border-radius: 24px; transition: 0.4s; border: 1px solid rgba(37,99,235,0.2); position: relative; overflow: hidden; }
.case::before { content: ''; position: absolute; top: 0; left: 0; width: 100%; height: 4px; background: linear-gradient(90deg, #2563eb, #8b5cf6, #ec4899); }
.case:hover { transform: translateY(-5px); border-color: #2563eb; box-shadow: 0 25px 50px -12px rgba(0,0,0,0.3); }
.case__icon { font-size: 3rem; margin-bottom: 16px; }
.case__tag { display: inline-block; background: rgba(37,99,235,0.1); color: #2563eb; padding: 4px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: 600; margin-bottom: 16px; text-transform: uppercase; letter-spacing: 0.5px; }
.case h3 { font-size: 1.3rem; margin-bottom: 12px; }
.case p { color: #94a3b8; margin-bottom: 20px; }
.case__result { background: rgba(37,99,235,0.1); padding: 12px 16px; border-radius: 40px; display: inline-flex; gap: 8px; font-weight: 600; border: 1px solid rgba(37,99,235,0.3); align-items: baseline; }
.case__result span:first-child { font-size: 1.5rem; color: #2563eb; font-family: 'JetBrains Mono', monospace; font-weight: 800; }
.case__glow { position: absolute; inset: 0; background: radial-gradient(circle at var(--x, 50%) var(--y, 50%), rgba(37,99,235,0.15), transparent 70%); opacity: 0; transition: opacity 0.3s; pointer-events: none; }
.case:hover .case__glow { opacity: 1; }

.testimonials { padding: 100px 0; background: transparent; }
.testimonials__grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); gap: 32px; }
.testimonial { background: rgba(15,23,42,0.6); backdrop-filter: blur(10px); padding: 32px; border-radius: 24px; border: 1px solid rgba(37,99,235,0.2); position: relative; transition: 0.3s; overflow: hidden; }
.testimonial:hover { transform: translateY(-5px); border-color: #2563eb; }
.stars { color: #f59e0b; margin-bottom: 16px; font-size: 1.1rem; }
.testimonial p { font-style: italic; margin-bottom: 24px; line-height: 1.6; position: relative; z-index: 1; }
.author strong { display: block; margin-bottom: 4px; }
.author span { font-size: 0.85rem; color: #94a3b8; }
.testimonial__quote { position: absolute; bottom: 10px; right: 20px; font-size: 6rem; color: rgba(37,99,235,0.1); font-family: Georgia, serif; line-height: 1; }

.legal { padding: 80px 0; background: rgba(15,23,42,0.6); }
.legal__card { text-align: center; padding: 48px; background: rgba(15,23,42,0.8); backdrop-filter: blur(10px); border-radius: 32px; border: 1px solid rgba(37,99,235,0.3); max-width: 900px; margin: 0 auto; }
.legal__card > i { font-size: 3rem; color: #2563eb; margin-bottom: 16px; }
.legal__card h3 { font-size: 1.6rem; margin-bottom: 24px; }
.legal__features { display: flex; justify-content: center; gap: 40px; flex-wrap: wrap; }
.legal__features > div { display: flex; align-items: center; gap: 10px; color: #94a3b8; }
.legal__features i { color: #10b981; }

.faq { padding: 100px 0; background: transparent; }
.faq__list { max-width: 800px; margin: 0 auto; }
.faq__item { background: rgba(15,23,42,0.6); border-radius: 16px; margin-bottom: 14px; border: 1px solid rgba(37,99,235,0.2); transition: 0.3s; overflow: hidden; }
.faq__item:hover { border-color: #2563eb; }
.faq__item.active { border-color: #2563eb; background: rgba(37,99,235,0.05); }
.faq__q { padding: 22px 24px; font-weight: 600; display: flex; justify-content: space-between; align-items: center; width: 100%; background: none; border: none; color: #fff; font-family: inherit; font-size: 1rem; text-align: left; }
.faq__q i { color: #2563eb; transition: 0.3s; flex-shrink: 0; margin-left: 16px; }
.faq__item.active .faq__q i { transform: rotate(45deg); }
.faq__a { max-height: 0; overflow: hidden; transition: max-height 0.4s ease; }
.faq__a p { padding: 0 24px 22px; color: #94a3b8; line-height: 1.7; }
.faq__item.active .faq__a { max-height: 300px; }

.contact { text-align: center; padding: 100px 0; background: linear-gradient(135deg, #0a0a0a, #0f172a); border-top: 1px solid rgba(37,99,235,0.2); border-bottom: 1px solid rgba(37,99,235,0.2); position: relative; overflow: hidden; }
.contact::before { content: ''; position: absolute; inset: 0; background: radial-gradient(circle at 30% 50%, rgba(37,99,235,0.15), transparent 50%); }
.contact__content { position: relative; max-width: 700px; margin: 0 auto; }
.contact h2 { font-size: clamp(1.8rem, 4vw, 2.5rem); margin-bottom: 16px; font-weight: 800; }
.contact p { margin-bottom: 32px; color: #94a3b8; font-size: 1.15rem; }
.contact__note { font-size: 0.9rem; margin-top: 24px; opacity: 0.85; }

.footer { background: #0a0a0a !important; padding: 60px 0 30px; border-top: 1px solid rgba(37,99,235,0.2); }
.footer__grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 40px; margin-bottom: 40px; }
.footer .logo { color: #fff; display: inline-block; margin-bottom: 16px; }
.footer h4 { color: #fff; margin-bottom: 16px; font-size: 1rem; }
.footer a { color: #94a3b8; text-decoration: none; display: block; margin-bottom: 10px; transition: 0.3s; font-size: 0.95rem; }
.footer a:hover { color: #2563eb; }
.footer a i { margin-right: 8px; color: #3b82f6; }
.footer__bottom { padding-top: 30px; border-top: 1px solid rgba(37,99,235,0.2); text-align: center; font-size: 0.85rem; color: #64748b; }

.popup { display: none; position: fixed; inset: 0; background: rgba(0,0,0,0.8); backdrop-filter: blur(10px); z-index: 1000; align-items: center; justify-content: center; padding: 20px; }
.popup.active { display: flex; animation: fadeIn 0.3s; }
@keyframes fadeIn { from { opacity: 0; } to { opacity: 1; } }
.popup__inner { background: linear-gradient(135deg, #0f172a, #1e293b); max-width: 450px; width: 100%; padding: 40px 32px; border-radius: 28px; text-align: center; border: 1px solid rgba(37,99,235,0.3); position: relative; animation: slideUp 0.4s cubic-bezier(0.4,0,0.2,1); }
@keyframes slideUp { from { transform: translateY(30px); opacity: 0; } to { transform: translateY(0); opacity: 1; } }
.popup__close { position: absolute; top: 16px; right: 20px; font-size: 24px; background: none; border: none; color: #64748b; width: 36px; height: 36px; border-radius: 50%; transition: 0.3s; }
.popup__close:hover { background: rgba(255,255,255,0.1); color: #fff; }
.popup__icon { font-size: 3.5rem; margin-bottom: 16px; }
.popup__inner h3 { font-size: 1.5rem; margin-bottom: 8px; }
.popup__inner > p { color: #94a3b8; margin-bottom: 24px; }
.popup__inner input[type=email] { width: 100%; padding: 14px 18px; background: rgba(255,255,255,0.05); border: 2px solid rgba(37,99,235,0.3); border-radius: 14px; margin-bottom: 14px; color: #fff; font-size: 1rem; font-family: inherit; transition: 0.3s; }
.popup__inner input[type=email]:focus { outline: none; border-color: #2563eb; background: rgba(255,255,255,0.08); }
.popup__inner .btn { width: 100%; }
.popup__note { font-size: 0.8rem; color: #64748b; margin-top: 16px; }
#popupMsg { margin-top: 16px; padding: 12px; border-radius: 12px; font-size: 0.9rem; display: none; }
#popupMsg.success { display: block; background: rgba(16,185,129,0.2); color: #10b981; border: 1px solid rgba(16,185,129,0.3); }
#popupMsg.error { display: block; background: rgba(239,68,68,0.2); color: #ef4444; border: 1px solid rgba(239,68,68,0.3); }

.back-top { position: fixed; bottom: 30px; right: 30px; width: 50px; height: 50px; background: linear-gradient(135deg, #2563eb, #1e40af); border: none; border-radius: 50%; color: #fff; opacity: 0; visibility: hidden; transition: 0.3s; z-index: 100; box-shadow: 0 8px 20px rgba(37,99,235,0.4); }
.back-top.visible { opacity: 1; visibility: visible; }
.back-top:hover { transform: translateY(-4px); box-shadow: 0 12px 28px rgba(37,99,235,0.5); }

@media (max-width: 1024px) { .stats__grid { grid-template-columns: repeat(2, 1fr); } .footer__grid { grid-template-columns: 1fr 1fr; } }
@media (max-width: 768px) {
    .menu-btn { display: block; }
    .nav { display: none; position: fixed; top: 0; right: 0; width: 80%; max-width: 320px; height: 100vh; background: #0a0a0a !important; flex-direction: column; padding: 80px 32px 32px; gap: 20px; border-left: 1px solid rgba(37,99,235,0.2); transform: translateX(100%); transition: transform 0.3s; }
    .nav.active { display: flex; transform: translateX(0); }
    .nav a { width: 100%; padding: 8px 0; font-size: 1.1rem; }
    .hero { padding: 80px 0 60px; min-height: auto; }
    .hero__btns { flex-direction: column; align-items: stretch; }
    .hero__btns .btn { width: 100%; }
    .hero__trust { gap: 20px; font-size: 0.85rem; }
    .hero__scroll { display: none; }
    .stats__grid { grid-template-columns: 1fr 1fr; gap: 16px; }
    .step { flex-direction: column; text-align: center; gap: 16px; }
    .step__line { display: none; }
    .legal__features { flex-direction: column; align-items: center; gap: 16px; }
    .testimonials__grid, .cases__grid { grid-template-columns: 1fr; }
    .footer__grid { grid-template-columns: 1fr; text-align: center; }
    .footer__grid .logo { margin: 0 auto 16px; }
    .case__result { flex-direction: column; align-items: flex-start; gap: 4px; }
}
@media (max-width: 480px) {
    .container { padding: 0 16px; }
    .card, .case, .testimonial { padding: 24px; }
}
