/* --- style.css --- */

/* ВАЖНО: Глобальный сброс для ровной геометрии */
*, *::before, *::after {
    box-sizing: border-box;
}

:root {
    --bg-deep: #050507;
    --bg-panel: #0f0f13;
    --primary: #00f0ff; /* Циан */
    --secondary: #7000ff; /* Фиолетовый */
    --accent: #ff0055; /* Розовый */
    --text-main: #ffffff;
    --text-muted: #9494a0;
    --border: rgba(255, 255, 255, 0.08);
}

body {
    background-color: var(--bg-deep);
    color: var(--text-main);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    margin: 0;
    line-height: 1.6;
    overflow-x: hidden;
}

/* --- ФОН --- */
.bg-grid {
    position: fixed; top: 0; left: 0; width: 100%; height: 100%;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px; z-index: -2; pointer-events: none;
}
.orb { position: fixed; border-radius: 50%; filter: blur(100px); z-index: -1; opacity: 0.25; }
.orb-1 { top: -10%; left: -10%; width: 50vw; height: 50vw; background: var(--secondary); animation: float 15s infinite alternate; }
.orb-2 { bottom: -10%; right: -10%; width: 40vw; height: 40vw; background: var(--primary); animation: float 18s infinite alternate-reverse; }
@keyframes float { 0% { transform: translate(0, 0); } 100% { transform: translate(40px, 60px); } }

/* --- ОБЩИЕ --- */
.container { max-width: 1240px; margin: 0 auto; padding: 0 20px; }
.fade-up { opacity: 0; transform: translateY(30px); transition: 0.8s ease; }
.fade-up.visible { opacity: 1; transform: translateY(0); }
.section-title { font-size: 2.5rem; margin-bottom: 40px; text-align: center; line-height: 1.2; font-weight: 700; }

/* --- TOP BAR --- */
.top-bar {
    background: #020203; border-bottom: 1px solid rgba(255,255,255,0.05);
    padding: 8px 0; font-size: 0.85rem; color: #888; position: relative; z-index: 1001;
}
.top-bar .container { display: flex; justify-content: space-between; align-items: center; }
.top-bar-info { display: flex; gap: 20px; align-items: center; }
.top-bar-info div { display: flex; align-items: center; gap: 8px; }
.top-bar-info i { color: var(--primary); }
.top-bar a { color: #aaa; text-decoration: none; transition: 0.3s; }
.top-bar a:hover { color: #fff; }
.social-icons-top { display: flex; gap: 15px; }
.dzen-link i { color: #fff; }

/* --- HEADER --- */
header {
    position: sticky; top: 0; width: 100%; z-index: 1000;
    background: rgba(5, 5, 7, 0.95); backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
}
.main-nav { display: flex; justify-content: space-between; align-items: center; height: 70px; }
.logo-img { height: 40px; width: auto; }

.nav-list { display: flex; gap: 30px; list-style: none; margin: 0; padding: 0; height: 100%; align-items: center; }
.nav-item { position: relative; height: 100%; display: flex; align-items: center; }
.nav-link { color: #fff; text-decoration: none; font-size: 0.95rem; font-weight: 500; transition: 0.3s; padding: 10px 0; }
.nav-link:hover, .nav-item:hover .nav-link { color: var(--primary); text-shadow: 0 0 10px rgba(0, 240, 255, 0.4); }
.fa-chevron-down { font-size: 0.7rem; margin-left: 5px; opacity: 0.5; transition: 0.3s; }
.nav-item:hover .fa-chevron-down { transform: rotate(180deg); opacity: 1; color: var(--primary); }

/* --- MEGA MENU --- */
.mega-menu {
    position: absolute; top: 100%; left: 50%; transform: translateX(-50%) translateY(20px);
    width: 1000px; background: #0f0f13;
    border: 1px solid var(--border); border-top: 2px solid var(--primary);
    padding: 30px; display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px;
    opacity: 0; visibility: hidden; transition: all 0.3s ease;
    box-shadow: 0 20px 50px rgba(0,0,0,0.5); border-radius: 0 0 8px 8px; z-index: 1002;
}
.nav-item:hover .mega-menu { opacity: 1; visibility: visible; transform: translateX(-50%) translateY(0); }
.mega-column h6 { color: var(--primary); font-size: 0.9rem; text-transform: uppercase; letter-spacing: 1px; margin-bottom: 15px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 10px; }
.mega-column ul { list-style: none; padding: 0; margin: 0; }
.mega-column li { margin-bottom: 10px; }
.mega-column a { color: #aaa; text-decoration: none; font-size: 0.9rem; transition: 0.2s; display: block; }
.mega-column a:hover { color: #fff; transform: translateX(5px); }

/* --- КНОПКИ --- */
.btn {
    padding: 14px 28px; background: rgba(255,255,255,0.05); color: #fff;
    border: 1px solid var(--border); border-radius: 6px; cursor: pointer;
    font-weight: 600; transition: 0.3s; text-decoration: none; display: inline-block;
    backdrop-filter: blur(5px); position: relative; overflow: hidden; z-index: 1; text-align: center;
}
.btn-primary { background: var(--primary); color: #000; border: none; box-shadow: 0 0 20px rgba(0, 240, 255, 0.2); }
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 0 40px rgba(0, 240, 255, 0.5); }
.btn::after {
    content: ''; position: absolute; top: 0; left: -150%; width: 100%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.6), transparent);
    transform: skewX(-25deg); pointer-events: none; animation: shimmer-effect 3.5s infinite ease-in-out; z-index: -1;
}
@keyframes shimmer-effect { 0% { left: -150%; } 40%, 100% { left: 150%; } }

/* --- HERO СЛАЙДЕР --- */
.hero { padding: 100px 0 80px; position: relative; }
.hero h1 { font-size: 3.8rem; line-height: 1.1; margin-bottom: 25px; font-weight: 800; }
.hero span { background: linear-gradient(90deg, #fff, var(--primary)); -webkit-background-clip: text; -webkit-text-fill-color: transparent; }
.hero-slide { display: none; animation: slideFadeIn 1s ease; }
.hero-slide.active { display: block; }
.slide-subtitle { color:var(--primary); font-weight:bold; letter-spacing:2px; margin-bottom:15px; text-transform:uppercase; }
.slide-desc { max-width:650px; color:var(--text-muted); font-size:1.25rem; margin-bottom:40px; }
.slide-btns { display:flex; gap:20px; flex-wrap:wrap; }
.hero-stats { margin-top:40px; display:flex; gap:60px; border-top:1px solid var(--border); padding-top:30px; }
.stat-item .stat-num { font-size:2.5rem; font-weight:800; color:#fff; }
.stat-item .stat-num span { color:var(--primary); }
.stat-item .stat-lbl { color:var(--text-muted); font-size:0.9rem; }
@keyframes slideFadeIn { from { opacity: 0; transform: translateY(20px); } to { opacity: 1; transform: translateY(0); } }

/* --- PAGE HERO (Для внутренних) --- */
.page-hero { padding: 160px 0 80px; text-align: center; background: radial-gradient(circle at center, rgba(0, 240, 255, 0.15) 0%, transparent 60%); }
.seo-header-bg { background: radial-gradient(circle at 50% 50%, rgba(0, 240, 255, 0.1) 0%, transparent 60%); }

/* --- TICKER --- */
.ticker-angled-wrapper { overflow: hidden; padding: 60px 0; position: relative; width: 100%; margin-top: -20px; }
.ticker-angled { background: var(--primary); transform: rotate(-2deg) scale(1.1); padding: 15px 0; box-shadow: 0 0 30px rgba(0, 240, 255, 0.3); width: 110%; margin-left: -5%; display: flex; }
.ticker-track { display: flex; animation: ticker 20s linear infinite; width: max-content; }
.ticker-item { padding: 0 40px; font-size: 1.5rem; font-weight: 900; color: #000; text-transform: uppercase; letter-spacing: 1px; white-space: nowrap; }
@keyframes ticker { 0% { transform: translateX(0); } 100% { transform: translateX(-50%); } }

/* --- УСЛУГИ (СЕТКА) --- */
.tabs-header { display: flex; gap: 10px; margin-bottom: 40px; border-bottom: 1px solid var(--border); overflow-x: auto; padding-bottom: 5px; justify-content: flex-start; }
.tab-btn { padding: 15px 30px; background: transparent; border: none; color: #777; cursor: pointer; font-size: 1.1rem; border-bottom: 2px solid transparent; transition: 0.3s; white-space: nowrap; }
.tab-btn.active { color: var(--primary); border-bottom-color: var(--primary); }
.tab-content { display: none; animation: fadeIn 0.5s; }

/* ИСПРАВЛЕННАЯ СЕТКА */
.tab-content.active { 
    display: grid; 
    grid-template-columns: repeat(auto-fill, minmax(320px, 1fr)); 
    gap: 30px; 
    align-items: stretch;
    width: 100%;
}

/* КАРТОЧКА УСЛУГИ (КВАДРАТ) */
.price-card { 
    background: rgba(15, 15, 19, 0.6); 
    border: 1px solid var(--border); 
    padding: 40px 30px;
    backdrop-filter: blur(10px); 
    border-radius: 16px; 
    transition: 0.3s; 
    display: flex; 
    flex-direction: column; 
    justify-content: space-between;
    height: 100%;
    min-height: 380px; /* Фиксирует высоту */
}
.price-card:hover { border-color: var(--primary); transform: translateY(-5px); box-shadow: 0 10px 40px rgba(0,0,0,0.5); }
.card-icon { font-size:2rem; color:var(--primary); margin-bottom:15px; }
.price-card h3 { margin: 0 0 10px 0; font-size: 1.4rem; color:#fff; }
.price-tag { font-size: 1.6rem; font-weight: bold; color: #fff; margin: 10px 0; }
.price-card p { color:#9494a0; margin-bottom: 20px; font-size: 0.95rem; line-height: 1.5; }
.price-card .btn { margin-top: auto; width: 100%; }

/* --- ДЕТАЛЬНАЯ КАРТОЧКА (ДЛЯ ВНУТРЕННИХ СТРАНИЦ) --- */
.price-detailed-card {
    background: rgba(20, 20, 25, 0.6); border: 1px solid var(--border); border-radius: 16px;
    padding: 40px; margin-bottom: 30px; transition: 0.3s; display: flex; flex-direction: column;
    position: relative; overflow: hidden;
}
.price-detailed-card:hover { border-color: var(--primary); background: rgba(25, 25, 32, 0.8); transform: translateY(-5px); box-shadow: 0 10px 40px rgba(0,0,0,0.3); }
.price-header { display: flex; justify-content: space-between; align-items: flex-start; margin-bottom: 20px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 20px; flex-wrap: wrap; gap: 20px; }
.price-title h3 { font-size: 1.8rem; margin: 0 0 10px 0; color: #fff; }
.price-cost { text-align: right; }
.main-price { font-size: 2rem; font-weight: 900; color: var(--primary); line-height: 1; }
.price-period { font-size: 0.9rem; color: #888; margin-top: 5px; }
.price-body { color: #ccc; font-size: 1rem; line-height: 1.7; }
.price-body h4 { color: #fff; margin-top: 20px; margin-bottom: 10px; font-size: 1.1rem; }
.price-body ul { list-style: none; padding: 0; }
.price-body li { position: relative; padding-left: 20px; margin-bottom: 8px; }
.price-body li::before { content: '✓'; color: var(--accent); position: absolute; left: 0; font-weight: bold; }
.price-footer { margin-top: 30px; padding-top: 20px; border-top: 1px dashed rgba(255,255,255,0.1); display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 20px; }
.time-badge { display: inline-flex; align-items: center; gap: 8px; background: rgba(255,255,255,0.05); padding: 8px 15px; border-radius: 50px; font-size: 0.9rem; color: var(--secondary); font-weight: bold; }

/* СПИСОК РАЗОВЫХ УСЛУГ */
.services-split { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; margin-bottom: 60px; }
.service-list-item { background: rgba(255,255,255,0.03); border: 1px solid var(--border); padding: 20px; border-radius: 10px; margin-bottom: 15px; display: flex; align-items: center; justify-content: space-between; transition: 0.3s; }
.service-list-item:hover { border-color: var(--primary); background: rgba(255,255,255,0.05); }
.service-list-info h4 { margin: 0; color: #fff; font-size: 1.1rem; }
.service-list-info p { margin: 5px 0 0; color: #888; font-size: 0.9rem; }
.service-list-price { font-weight: bold; color: var(--primary); white-space: nowrap; margin-left: 20px; }

/* --- КЕЙСЫ --- */
.cases-scroll-wrapper { display: flex; overflow-x: auto; gap: 30px; padding-bottom: 40px; padding-top: 10px; scroll-snap-type: x mandatory; }
.cases-scroll-wrapper::-webkit-scrollbar { height: 8px; background: rgba(255,255,255,0.05); border-radius: 4px; }
.cases-scroll-wrapper::-webkit-scrollbar-thumb { background: var(--primary); border-radius: 4px; }
.case-card-pro { 
    min-width: 380px; max-width: 380px; background: rgba(20, 20, 25, 0.6); 
    border: 1px solid var(--border); backdrop-filter: blur(15px); 
    padding: 30px; border-radius: 16px; scroll-snap-align: start; 
    transition: 0.4s ease; display: flex; flex-direction: column; position: relative; overflow: hidden;
}
.case-card-pro:hover { transform: translateY(-10px); border-color: var(--primary); box-shadow: 0 15px 40px rgba(0,0,0,0.4); background: rgba(25, 25, 32, 0.8); }
.case-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 20px; }
.case-badge { padding: 5px 12px; border-radius: 20px; font-size: 0.75rem; font-weight: bold; text-transform: uppercase; }
.case-desc { font-size: 0.95rem; color: #aaa; line-height: 1.6; margin-bottom: 25px; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 20px; flex-grow: 1; }
.mini-chart { height: 80px; display: flex; align-items: flex-end; gap: 10px; margin-bottom: 25px; opacity: 0.8; }
.mini-chart .bar { flex: 1; background: var(--primary); border-radius: 4px 4px 0 0; opacity: 0.3; transition: 0.3s; }
.case-card-pro:hover .mini-chart .bar.active { opacity: 1; box-shadow: 0 0 15px currentColor; }
.case-metrics { display: flex; justify-content: space-between; }
.metric-val { font-size: 1.5rem; font-weight: 800; color: #fff; }
.metric-lbl { font-size: 0.8rem; color: #777; text-transform: uppercase; }

/* --- ПРОЦЕСС РАБОТЫ (TIMELINE) --- */
.process-timeline { position: relative; max-width: 900px; margin: 0 auto; }
.process-timeline::before { content: ''; position: absolute; left: 20px; top: 0; bottom: 0; width: 2px; background: linear-gradient(to bottom, var(--primary), var(--secondary)); z-index: 0; }
.process-step { position: relative; padding-left: 60px; margin-bottom: 40px; z-index: 1; }
.p-num { position: absolute; left: 0; top: 0; width: 40px; height: 40px; background: #111; border: 2px solid var(--primary); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: bold; color: #fff; }
.p-content { background: rgba(255,255,255,0.03); border: 1px solid var(--border); padding: 25px; border-radius: 12px; transition: 0.3s; }
.p-content:hover { border-color: var(--primary); transform: translateX(5px); background: rgba(255,255,255,0.05); }
.p-content h3 { margin: 0 0 10px 0; color: var(--primary); font-size: 1.3rem; }
.p-content p { margin: 0; color: #aaa; line-height: 1.6; }

/* ПЛИТКА ЭТАПОВ (Для посадочных) */
.process-steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(220px, 1fr)); gap: 30px; }
.step-item { background: rgba(255,255,255,0.02); border: 1px solid var(--border); padding: 30px; border-radius: 15px; position: relative; }
.step-num { font-size: 3rem; font-weight: 900; color: rgba(255,255,255,0.05); position: absolute; top: 10px; right: 20px; }
.step-item h4 { color: var(--primary); margin-top: 10px; font-size: 1.2rem; }
.step-item p { font-size: 0.9rem; color: #aaa; margin-bottom: 0; }

/* --- SEO ТЕКСТ И СТАТЬИ --- */
.seo-text-wrapper { background: rgba(0,0,0,0.4); padding: 80px 0; border-top: 1px solid var(--border); }
.seo-columns { display: grid; grid-template-columns: 1fr 1fr; gap: 60px; }
.seo-article { max-width: 900px; margin: 0 auto; color: #ccc; font-size: 1.1rem; line-height: 1.8; }
.seo-article h2 { color: #fff; font-size: 2.2rem; margin-top: 60px; margin-bottom: 25px; border-left: 4px solid var(--primary); padding-left: 20px; }
.seo-article h3 { color: var(--primary); font-size: 1.5rem; margin-top: 40px; margin-bottom: 15px; }
.seo-article p { margin-bottom: 20px; text-align: justify; }
.seo-article ul { margin-bottom: 30px; list-style: none; padding-left: 0; }
.seo-article li { position: relative; padding-left: 25px; margin-bottom: 10px; }
.seo-article li::before { content: '•'; color: var(--accent); font-size: 1.5rem; position: absolute; left: 0; top: -5px; }
.seo-table { width: 100%; border-collapse: collapse; margin: 40px 0; background: rgba(255,255,255,0.02); border-radius: 10px; overflow: hidden; }
.seo-table th, .seo-table td { padding: 20px; border-bottom: 1px solid rgba(255,255,255,0.1); text-align: left; }
.seo-table th { background: rgba(0, 240, 255, 0.1); color: var(--primary); font-weight: bold; }

/* --- ПАРТНЕРСКАЯ ПРОГРАММА (SOLID) --- */
.partnership-solid { background: #111; border: 1px solid var(--border); border-radius: 12px; padding: 60px; position: relative; overflow: hidden; box-shadow: 0 10px 40px rgba(0,0,0,0.3); }
.partnership-solid::before { content: ''; position: absolute; top: 0; left: 0; width: 5px; height: 100%; background: linear-gradient(to bottom, var(--primary), var(--accent)); }
.partner-row { display: flex; align-items: center; justify-content: space-between; gap: 50px; }
.partner-info { flex: 1; }
.partner-cta { text-align: center; min-width: 300px; background: rgba(255,255,255,0.03); padding: 30px; border-radius: 10px; border: 1px solid var(--border); }
.percent-box { font-size: 4rem; font-weight: 900; color: var(--accent); line-height: 1; margin-bottom: 5px; }

/* --- FAQ (АККОРДЕОН) --- */
.faq-section { max-width: 900px; margin: 0 auto; }
.faq-item { background: rgba(255,255,255,0.03); border: 1px solid var(--border); border-radius: 10px; margin-bottom: 15px; overflow: hidden; }
.faq-question { padding: 20px; cursor: pointer; display: flex; justify-content: space-between; align-items: center; font-weight: bold; color: #fff; }
.faq-answer { padding: 0 20px; max-height: 0; overflow: hidden; transition: 0.3s ease; color: #aaa; border-top: 1px solid transparent; }
.faq-item.active .faq-answer { padding: 20px; max-height: 500px; border-top-color: rgba(255,255,255,0.1); }
.faq-item.active .faq-question { color: var(--primary); }

/* --- КАРТА (ТЕМНАЯ) --- */
.map-frame { height: 100%; width: 100%; filter: invert(100%) hue-rotate(180deg) brightness(95%) contrast(90%); }
.map-overlay-card { position: absolute; top: 50%; right: 10%; transform: translateY(-50%); background: rgba(10, 10, 14, 0.85); backdrop-filter: blur(20px); border: 1px solid rgba(255,255,255,0.1); border-left: 3px solid var(--primary); padding: 40px; border-radius: 4px; width: 350px; box-shadow: 0 30px 80px rgba(0,0,0,0.8); z-index: 5; }
.map-row { display: flex; gap: 15px; margin-bottom: 20px; align-items: center; }
.icon-box { width: 40px; height: 40px; background: rgba(0,240,255,0.1); color: var(--primary); display: flex; align-items: center; justify-content: center; border-radius: 50%; flex-shrink: 0; }

/* --- ПРЕИМУЩЕСТВА (GRID) --- */
.feature-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 30px; margin-bottom: 60px; }
.feature-card { background: rgba(255,255,255,0.03); border: 1px solid var(--border); padding: 30px; border-radius: 16px; transition: 0.3s; }
.feature-card:hover { border-color: var(--primary); transform: translateY(-5px); background: rgba(255,255,255,0.05); }
.feature-icon { font-size: 2.5rem; color: var(--primary); margin-bottom: 20px; }

/* ДЛЯ КОГО (TARGET) */
.target-section { background: linear-gradient(135deg, #111, #1a1a1a); border-radius: 20px; padding: 50px; border: 1px solid var(--border); margin-bottom: 80px; }
.check-list { list-style: none; padding: 0; display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 20px; }
.check-list li { position: relative; padding-left: 30px; color: #ccc; font-size: 1.1rem; }
.check-list li::before { content: '\f00c'; font-family: 'Font Awesome 6 Free'; font-weight: 900; color: var(--accent); position: absolute; left: 0; top: 3px; }

/* НИЖНИЙ ЦЕНОВОЙ БЛОК */
.price-block { text-align: center; background: rgba(0, 240, 255, 0.05); border: 1px solid var(--primary); padding: 40px; border-radius: 20px; margin-top: 40px; }

/* КЛИЕНТЫ */
.clients-marquee { overflow: hidden; background: rgba(255,255,255,0.02); padding: 40px 0; border-top: 1px solid var(--border); border-bottom: 1px solid var(--border); }
.marquee-track { display: flex; animation: ticker 30s linear infinite; width: max-content; align-items: center; }
.client-logo { height: 50px; margin: 0 40px; opacity: 0.5; filter: grayscale(100%); transition: 0.3s; cursor: pointer; }
.client-logo:hover { opacity: 1; filter: grayscale(0); transform: scale(1.1); }
.scroll-section { overflow-x: auto; white-space: nowrap; padding-bottom: 20px; scroll-snap-type: x mandatory; }
.scroll-card { display: inline-block; width: 350px; white-space: normal; vertical-align: top; background: rgba(15, 15, 19, 0.6); backdrop-filter: blur(10px); border: 1px solid var(--border); padding: 30px; border-radius: 12px; margin-right: 20px; scroll-snap-align: start; min-height: 280px; transition: 0.3s; }

/* --- MODAL (POPUP) --- */
.modal-overlay { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: rgba(0,0,0,0.8); backdrop-filter: blur(5px); z-index: 2000; display: none; align-items: center; justify-content: center; }
.modal-overlay.active { display: flex; animation: fadeIn 0.3s; }
.modal-window { background: #111; border: 1px solid var(--border); padding: 40px; border-radius: 10px; width: 90%; max-width: 400px; position: relative; box-shadow: 0 0 50px rgba(0,240,255,0.2); }
.close-modal { position: absolute; top: 15px; right: 20px; color: #fff; font-size: 1.5rem; cursor: pointer; }
.modal-window input { width: 100%; padding: 15px; margin-bottom: 15px; background: rgba(255,255,255,0.05); border: 1px solid #333; color: #fff; border-radius: 5px; box-sizing: border-box; }

/* --- FOOTER --- */
footer { padding: 60px 0; border-top: 1px solid var(--border); font-size: 0.9rem; color: #666; background: #020203; }

/* --- ADAPTIVE (MOBILE) --- */
@media (max-width: 1100px) {
    .top-bar { display: none; }
    .mega-menu { display: none; }
    .nav-list { display: none; }
    .case-card-pro { min-width: 300px; }
    .partner-row { flex-direction: column; text-align: center; }
    .map-overlay-card { position: relative; top: auto; right: auto; transform: none; width: 100%; margin-top: -20px; z-index: 5; }
    
    /* Сетки */
    .tab-content.active { grid-template-columns: 1fr; }
    .seo-columns { grid-template-columns: 1fr; }
    .price-header { flex-direction: column; text-align: left; }
    .price-cost { text-align: left; }
    .services-split { grid-template-columns: 1fr; }
    .feature-grid { grid-template-columns: 1fr; }
    .process-steps { grid-template-columns: 1fr; }
    .target-section > div { grid-template-columns: 1fr; }
    
    /* Шрифты */
    .hero h1 { font-size: 2.5rem; }
    .section-title { font-size: 2rem; }
}

@media (max-width: 768px) {
    .hero h1 { font-size: 2.2rem; }
    .scroll-card { width: 280px; }
    .process-timeline::before { left: 15px; }
    .process-step { padding-left: 50px; }
    .p-num { width: 30px; height: 30px; font-size: 0.8rem; }
}