/* =========================================================
   OTHERCLICK v6 — COMPLETE STYLESHEET
   ========================================================= */

/* === RESET & BASE === */
*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }

/* Глобальная защита hidden — фикс из v5 */
[hidden] { display: none !important; }

:root {
    --primary: #2936d5;
    --primary-dark: #2936d5;
    --primary-light: #dfe7ff;
    --primary-50: #f0f4ff;
    --accent: #10b981;
    --accent-light: #d1fae5;
    --warning: #f59e0b;
    --warning-light: #fef3c7;
    --error: #ef4444;
    --dark: #0f172a;
    --gray-900: #1e293b;
    --gray-700: #334155;
    --gray-500: #64748b;
    --gray-400: #94a3b8;
    --gray-300: #cbd5e1;
    --gray-200: #e2e8f0;
    --gray-100: #f1f5f9;
    --gray-50: #f8fafc;
    --white: #ffffff;
    --radius: 12px;
    --radius-sm: 8px;
    --radius-lg: 20px;
    --shadow: 0 1px 3px rgba(15, 23, 42, 0.06);
    --shadow-md: 0 4px 12px rgba(15, 23, 42, 0.08);
    --shadow-lg: 0 10px 30px rgba(15, 23, 42, 0.12);
    --transition: 0.2s ease;
}

html {
    scroll-behavior: smooth;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    color: var(--gray-700);
    line-height: 1.6;
    background: var(--white);
}

.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }
img { max-width: 100%; display: block; }
a { color: var(--primary); text-decoration: none; transition: var(--transition); }
a:hover { color: var(--primary-dark); }

h1, h2, h3, h4 { color: var(--dark); line-height: 1.2; font-weight: 700; }
h1 { font-size: clamp(2rem, 5vw, 3.5rem); letter-spacing: -0.02em; margin-bottom: 20px; }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); letter-spacing: -0.01em; margin-bottom: 16px; text-align: center; }
h3 { font-size: 1.2rem; margin-bottom: 8px; }
p { color: var(--gray-500); line-height: 1.7; }

.highlight {
    position: relative;
    display: inline-block;
    padding-bottom: 0.16em;
    color: #2b5cfd;
    background: linear-gradient(to right, #2b5cfd, #2936d5);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}
.highlight::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: -0.06em;
    height: 0.22em;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 300 24' preserveAspectRatio='none'%3E%3Cdefs%3E%3ClinearGradient id='hlg' x1='0' y1='0' x2='1' y2='0'%3E%3Cstop offset='0' stop-color='%232b5cfd'/%3E%3Cstop offset='1' stop-color='%232936d5'/%3E%3C/linearGradient%3E%3C/defs%3E%3Cpath d='M2,14 C20,4 35,4 52,14 C69,24 84,24 101,14 C118,4 133,4 150,14 C167,24 182,24 199,14 C216,4 231,4 248,14 C265,24 280,24 297,14' fill='none' stroke='url(%23hlg)' stroke-width='5' stroke-linecap='round'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-size: 100% 100%;
    transform-origin: left center;
    animation: highlight-draw 0.9s cubic-bezier(0.65, 0, 0.35, 1) 0.5s both;
}

@keyframes highlight-draw {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}
@media (prefers-reduced-motion: reduce) {
    .highlight::after { animation: none; transform: scaleX(1); }
}
@media (min-width:640px){.honesty-card,.whom-limits{padding:20px}}

.section-subtitle {
    text-align: center;
    font-size: 1.1rem;
    max-width: 700px;
    margin: 0 auto 48px;
}

/* === BUTTONS === */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 14px 32px;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--transition);
    font-family: inherit;
    text-decoration: none;
    white-space: nowrap;
}
.btn-lg { padding: 18px 40px; font-size: 1.05rem; }
.btn-full { width: 100%; }

.btn-primary {
    background: linear-gradient(to right, #2b5cfd, #2936d5) !important;
    color: var(--white);
    box-shadow: 0 4px 14px rgba(43, 92, 253, 0.35);
}
.btn-primary:hover {
    box-shadow: 0 6px 20px rgba(43, 92, 253, 0.4);
    color: var(--white);
}
.btn-outline {
    background: transparent;
    color: var(--primary);
    border: 2px solid var(--primary);
}
.btn-outline:hover { background: var(--primary); color: var(--white); }

.btn-icon { width: 18px; height: 18px; transition: transform 0.2s ease; }
.btn:hover .btn-icon { transform: translateX(4px); }

.btn-loader {
    width: 18px;
    height: 18px;
    border: 2.5px solid rgba(255,255,255,0.3);
    border-top-color: #fff;
    border-radius: 50%;
    animation: spin 0.7s linear infinite;
    vertical-align: middle;
}
.btn-loader:not([hidden]) { display: inline-block; }

.btn.loading .btn-text { opacity: 0.7; }
.btn.loading .btn-icon { display: none; }

@keyframes spin { to { transform: rotate(360deg); } }

.logo {
    display: inline-flex;
    align-items: center;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--dark) !important;
}
.logo span { color: var(--primary); }
.logo-icon { width: 28px; height: 28px; color: var(--primary); }

/* === LANGUAGE SWITCH === */
.lang-switch {
    display: flex;
    gap: 4px;
    padding: 4px;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: 50px;
}
.lang-switch a {
    padding: 8px 16px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-500);
}
.lang-switch a:hover { color: var(--primary); }
.lang-switch a.active { background: var(--white); color: var(--primary); box-shadow: var(--shadow); }

/* === HERO === */
.hero {
    padding: 80px 0 100px;
    background: linear-gradient(180deg, var(--gray-50) 0%, var(--white) 100%);
    position: relative;
    overflow: hidden;
}
.hero::before {
    content: '';
    position: absolute;
    top: -50%; left: -20%;
    width: 140%; height: 100%;
    background: radial-gradient(ellipse at center, var(--primary-light) 0%, transparent 60%);
    opacity: 0.3;
    z-index: 0;
}
.hero .container { position: relative; z-index: 1; text-align: center; }
.hero-top { display: flex; justify-content: space-between; align-items: center; margin-bottom: 80px; }
.hero-subtitle { max-width: 700px; margin: 0 auto 36px; font-size: 1.2rem; line-height: 1.7; }
.hero-cta { margin-bottom: 48px; }

.hero-badges {
    list-style: none;
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}
.hero-badges li {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: 50px;
    font-size: 0.88rem;
    font-weight: 500;
    color: var(--gray-700);
    box-shadow: var(--shadow);
}
.badge-check { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }

/* === PROBLEMS === */
.problems { padding: 80px 0; background: var(--white); }
.problems-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(370px, 1fr));
    gap: 24px;
    margin-top: 48px;
}
.problem-card {
    padding: 32px;
    background: var(--gray-50);
    border-radius: var(--radius);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}

.problem-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary-light); }

.problem-icon, .solution-icon, .why-icon {
    width: 180px; height: 180px;
    position: absolute;
    left: -60px;
    bottom: -40px;
}
.problem-icon svg, .solution-icon svg, .why-icon svg { width: 100%; height: 100%; color: var(--primary-light); opacity: .5; }
.problem-card, .problem-card h3, .problem-card p, 
.solution-card, .solution-card h3, .solution-card p,
.why-card, .why-card h3, .why-card p {
    position: relative;
    overflow: hidden;
}

.problem-card h3 { margin-bottom: 12px; font-size: 1.1rem; }
.problem-card p { font-size: 0.92rem; line-height: 1.7; }

.honesty-grid{display:grid;grid-template-columns:repeat(auto-fit,minmax(320px,1fr));gap:24px;margin-top:32px}
.honesty-card{border:1px solid rgba(128,128,128,.28);border-radius:12px;padding:26px 28px;background:rgba(128,128,128,.05)}
.honesty-is{border-left:4px solid #16a34a}
.honesty-isnt{border-left:4px solid #dc2626}
.honesty-label{display:flex;align-items:center;gap:10px;font-weight:700;font-size:.8rem;letter-spacing:.1em;text-transform:uppercase;margin-bottom:16px}
.honesty-is .honesty-label{color:#16a34a}
.honesty-isnt .honesty-label{color:#dc2626}
.honesty-label svg{width:18px;height:18px;flex:0 0 18px}
.honesty-list{list-style:none;padding:0;margin:0;display:flex;flex-direction:column;gap:12px}
.honesty-list li{padding-left:18px;position:relative;line-height:1.55}
.honesty-list li::before{content:"";position:absolute;left:0;top:.62em;width:6px;height:6px;border-radius:50%;background:currentColor;opacity:.4}
.whom-limits{margin-top:36px;border:1px solid rgba(220,38,38,.35);border-radius:12px;padding:26px 28px;background:rgba(220,38,38,.05)}
.whom-limits h3{display:flex;align-items:center;gap:10px;margin:0 0 16px;font-size:1.05rem}
.whom-limits h3 svg{width:20px;height:20px;flex:0 0 20px;color:#dc2626}
.whom-limits ul{margin:0;padding-left:20px;display:flex;flex-direction:column;gap:10px}
.whom-limits li{line-height:1.55}
.whom-limits-note{margin:18px 0 0;font-size:.92rem;opacity:.8}
.pricing-guarantee{margin-top:14px;font-size:.94rem;line-height:1.6;opacity:.9}
.site-footer-legal{margin-top:22px;padding-top:18px;border-top:1px solid rgba(128,128,128,.22);display:flex;flex-direction:column;gap:10px}
.site-footer-legal p{margin:0;font-size:.82rem;line-height:1.55;opacity:.72}
@media (max-width:640px){.honesty-card,.whom-limits{padding:20px}}

/* === BEFORE / AFTER === */
.before-after { padding: 80px 0; background: var(--gray-50); }
.ba-grid {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 32px;
    align-items: center;
    margin-top: 48px;
}
.ba-arrow { display: flex; align-items: center; justify-content: center; }
.ba-arrow svg { width: 48px; height: 48px; color: var(--primary); }

.ba-card {
    background: var(--white);
    border-radius: var(--radius);
    padding: 32px;
    box-shadow: var(--shadow);
    border: 2px solid var(--gray-100);
}
.ba-success { border-color: var(--accent); box-shadow: 0 8px 24px rgba(16, 185, 129, 0.15); }

.ba-label {
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 20px;
}
.ba-mockup { background: var(--gray-50); border-radius: var(--radius-sm); padding: 20px; }
.ba-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px;
    padding-bottom: 16px;
    border-bottom: 1px solid var(--gray-100);
}
.ba-site { font-weight: 700; color: var(--dark); font-size: 1.1rem; }
.ba-rank { font-size: 0.9rem; color: var(--gray-500); }
.ba-rank strong { color: var(--dark); font-size: 1.1rem; }
.ba-rank-up, .ba-up { color: var(--accent) !important; }

.ba-stats { display: flex; flex-direction: column; gap: 12px; }
.ba-stat { display: flex; justify-content: space-between; align-items: center; }
.ba-stat-label { font-size: 0.88rem; color: var(--gray-500); }
.ba-stat-value { font-weight: 600; color: var(--dark); font-size: 1rem; }

/* === SOLUTION === */
.solution { padding: 80px 0; background: var(--white); }
.solution-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px;
}
.solution-card {
    padding: 32px;
    background: var(--gray-50);
    border-radius: var(--radius);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}
.solution-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary-light); }
.solution-card h3 { margin-bottom: 12px; }
.solution-card p { font-size: 0.92rem; line-height: 1.7; }

/* === MOTIVATED USERS (новая секция v6) === */
.motivated-users { padding: 80px 0; background: var(--gray-50); }

.mu-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 64px;
    align-items: center;
}

.section-tag-inline {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 16px;
    background: var(--primary-light);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.82rem;
    font-weight: 600;
    margin-bottom: 20px;
}
.section-tag-inline svg { width: 16px; height: 16px; }

.mu-content h2 { text-align: left; margin-bottom: 16px; }
.mu-content > p { font-size: 1.05rem; line-height: 1.7; margin-bottom: 20px; }

.mu-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 20px;
}
.mu-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: var(--gray-700);
}

.mu-note {
    padding: 16px;
    background: var(--white);
    border-left: 4px solid var(--primary);
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    color: var(--gray-700);
}

.mu-visual { display: flex; flex-direction: column; gap: 16px; }

.mu-stat-card {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    transition: var(--transition);
    align-items: center;
}
.mu-stat-card:hover {
    box-shadow: var(--shadow-md);
    border-color: var(--primary-light);
    transform: translateX(4px);
}
.mu-stat-icon {
    width: 44px; height: 44px;
    padding: 10px;
    background: var(--primary-light);
    border-radius: var(--radius-sm);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}
.mu-stat-icon svg { width: 100%; height: 100%; color: var(--primary); }

.mu-stat-card strong { display: block; font-size: 1.05rem; color: var(--dark); margin-bottom: 2px; }
.mu-stat-card span { font-size: 0.82rem; color: var(--gray-500); line-height: 1.4; }

/* === SOURCES DEEP DIVE === */
.sources-deep { padding: 80px 0; background: var(--white); }
.sources-grid-deep {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(370px, 1fr));
    gap: 24px;
    margin-top: 48px;
}
.source-card-deep {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    padding: 32px;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
}
.source-card-deep:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--primary-light); }

.source-head { display: flex; gap: 16px; align-items: flex-start; margin-bottom: 16px; }
.source-icon-lg {
    width: 56px; height: 56px;
    padding: 12px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary-50));
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.source-icon-lg svg { width: 100%; height: 100%; color: var(--primary); }
.source-head h3 { font-size: 1.15rem; margin-bottom: 4px; }

.source-price-tag {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--primary);
    background: var(--primary-light);
    padding: 3px 10px;
    border-radius: 50px;
}

.source-card-deep > p { font-size: 0.92rem; line-height: 1.7; margin-bottom: 20px; }

.source-subsection {
    padding: 16px 0;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
    margin-bottom: 20px;
}
.source-sub-label {
    font-size: 0.75rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--gray-500);
    margin-bottom: 10px;
}
.source-engines { display: flex; flex-wrap: wrap; gap: 8px; }
.engine-chip {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--gray-700);
}
.engine-chip svg { width: 14px; height: 14px; }

.source-features { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.source-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--gray-700);
}

.feat-check { width: 16px; height: 16px; color: var(--accent); flex-shrink: 0; }

/* === ANALYTICS DISPLAY (новая секция v6) === */
.analytics-display { padding: 80px 0; background: var(--gray-50); }

.ad-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.ad-card {
    background: var(--white);
    border: 2px solid var(--gray-100);
    border-radius: var(--radius);
    padding: 32px;
    transition: var(--transition);
    position: relative;
    display: flex;
    flex-direction: column;
}
.ad-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.ad-default:hover { border-color: var(--gray-300); }
.ad-toggle:hover { border-color: var(--primary-light); }
.ad-similarweb:hover { border-color: var(--accent-light); }

.ad-icon {
    width: 56px; height: 56px;
    padding: 13px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.ad-default .ad-icon { background: var(--gray-100); }
.ad-default .ad-icon svg { color: var(--gray-500); }
.ad-toggle .ad-icon { background: var(--primary-light); }
.ad-toggle .ad-icon svg { color: var(--primary); }
.ad-similarweb .ad-icon { background: var(--accent-light); }
.ad-similarweb .ad-icon svg { color: var(--accent); }
.ad-icon svg { width: 100%; height: 100%; }

.ad-badge {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 auto 14px;
    background: var(--gray-100);
    color: var(--gray-500);
    align-self: flex-start;
}
.ad-badge-alt { background: var(--primary-light); color: var(--primary); }
.ad-badge-success { background: var(--accent-light); color: var(--accent); }

.ad-card h3 { font-size: 1.15rem; margin-bottom: 12px; }
.ad-card > p { font-size: 0.92rem; line-height: 1.7; margin-bottom: 20px; flex-grow: 1; }

.ad-list { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.ad-list li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.88rem;
    color: var(--gray-700);
}

/* === HOW IT WORKS === */
.how-it-works { padding: 80px 0; background: var(--white); }
.steps { margin-top: 48px; display: flex; flex-direction: column; gap: 24px; }
.step {
    display: grid;
    grid-template-columns: 80px 1fr;
    gap: 24px;
    align-items: start;
    padding: 32px;
    background: var(--gray-50);
    border-radius: var(--radius);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}
.step:hover { box-shadow: var(--shadow-md); transform: translateX(4px); }
.step-number { font-size: 3rem; font-weight: 800; color: var(--primary-light); line-height: 1; }
.step h3 { margin-bottom: 8px; font-size: 1.15rem; }
.step p { font-size: 0.92rem; line-height: 1.7; }

/* === WHY IT WORKS === */
.why-works { padding: 80px 0; background: var(--gray-50); }
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(370px, 1fr));
    gap: 24px;
    margin-top: 48px;
}
.why-card {
    padding: 32px;
    background: var(--white);
    border-radius: var(--radius);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
}
.why-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary-light); }
.why-card h3 { margin-bottom: 12px; font-size: 1.1rem; }
.why-card p { font-size: 0.92rem; line-height: 1.7; }

/* === TIMELINE === */
.timeline-section { padding: 80px 0; background: var(--white); }

.timeline-note {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    max-width: 800px;
    margin: 0 auto 32px;
    padding: 16px 20px;
    background: var(--primary-50);
    border: 1px dashed var(--primary-light);
    border-radius: var(--radius-sm);
    font-size: 0.92rem;
    color: var(--gray-700);
    text-align: center;
    justify-content: center;
}
.timeline-note svg { width: 20px; height: 20px; color: var(--primary); flex-shrink: 0; }
.timeline-note strong { color: var(--primary); font-weight: 600; }

.timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 40px;
}
.timeline::before {
    content: '';
    position: absolute;
    left: 23px;
    top: 20px;
    bottom: 20px;
    width: 2px;
    background: linear-gradient(180deg, var(--primary-light) 0%, var(--primary) 100%);
}
.timeline-item { position: relative; padding-bottom: 32px; }
.timeline-item:last-child { padding-bottom: 0; }

.timeline-dot {
    position: absolute;
    left: -40px;
    top: 0;
    width: 48px; height: 48px;
    background: var(--white);
    border: 3px solid var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 0 6px var(--primary-50);
}
.timeline-dot svg { width: 22px; height: 22px; color: var(--primary); }

.timeline-content {
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    padding: 24px;
    transition: var(--transition);
}
.timeline-content:hover { box-shadow: var(--shadow-md); border-color: var(--primary-light); }

.timeline-time {
    display: inline-block;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--primary);
    background: var(--primary-light);
    padding: 4px 12px;
    border-radius: 50px;
    margin-bottom: 12px;
}
.timeline-content h3 { font-size: 1.1rem; margin-bottom: 8px; }
.timeline-content > p { font-size: 0.92rem; line-height: 1.7; margin-bottom: 14px; }

.timeline-tools { display: flex; flex-wrap: wrap; gap: 8px; }
.tool-chip {
    padding: 4px 10px;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}
.tool-chip.ga4 { background: #fff7ed; color: #ea580c; border: 1px solid #fed7aa; }
.tool-chip.sw { background: #f0fdf4; color: #16a34a; border: 1px solid #bbf7d0; }

/* === TROUBLESHOOTING === */
.troubleshooting { padding: 80px 0; background: var(--gray-50); }
.trouble-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(370px, 1fr));
    gap: 24px;
    margin-top: 48px;
}
.trouble-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    padding: 28px;
    transition: var(--transition);
}
.trouble-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); border-color: var(--warning-light); }

.trouble-icon {
    width: 44px; height: 44px;
    padding: 10px;
    border-radius: var(--radius-sm);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.trouble-icon.warning { background: var(--warning-light); }
.trouble-icon.warning svg { width: 100%; height: 100%; color: var(--warning); }

.trouble-card h3 { font-size: 1.05rem; margin-bottom: 14px; }
.trouble-card p { font-size: 0.9rem; line-height: 1.7; margin-bottom: 10px; }
.trouble-card p strong { color: var(--dark); font-weight: 600; }
.trouble-card code {
    background: var(--gray-100);
    padding: 2px 6px;
    border-radius: 4px;
    font-size: 0.85em;
    color: var(--dark);
}

.trouble-cta {
    margin-top: 48px;
    text-align: center;
    padding: 32px;
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
}
.trouble-cta p { font-size: 1.05rem; color: var(--gray-700); margin-bottom: 20px; }

/* === STATS === */
.stats { padding: 80px 0; background: var(--dark); color: var(--white); }
.stats h2 { color: var(--white); }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 32px;
    margin-top: 48px;
    text-align: center;
}
.stat-item { padding: 24px; }
.stat-number {
    font-size: 3rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: 8px;
    letter-spacing: -0.02em;
}
.stat-label { font-size: 0.95rem; color: var(--gray-300); line-height: 1.5; }

/* === FOR WHOM === */
.for-whom { padding: 80px 0; background: var(--white); }
.whom-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 24px;
    margin-top: 48px;
}
.whom-card {
    padding: 32px;
    background: var(--gray-50);
    border-radius: var(--radius);
    border: 1px solid var(--gray-100);
    transition: var(--transition);
    text-align: center;
}
.whom-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--primary-light); }
.whom-icon {
    width: 64px; height: 64px;
    padding: 14px;
    background: var(--primary-light);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
}
.whom-icon svg { width: 100%; height: 100%; color: var(--primary); }
.whom-card h3 { margin-bottom: 12px; font-size: 1.1rem; }
.whom-card p { font-size: 0.92rem; line-height: 1.7; }

/* === CASES === */
.cases { padding: 80px 0; background: var(--gray-50); }
.cases-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(370px, 1fr));
    gap: 24px;
    margin-top: 48px;
}
.case-card {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    padding: 28px;
    transition: var(--transition);
}
.case-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); border-color: var(--primary-light); }

.case-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 8px;
    margin-bottom: 16px;
}
.case-tag {
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.case-tag.ecommerce { background: #dbeafe; color: #1e40af; }
.case-tag.blog { background: #fce7f3; color: #be185d; }
.case-tag.saas { background: #ddd6fe; color: #6d28d9; }
.case-tag.affiliate { background: #fed7aa; color: #c2410c; }

.case-geo { font-size: 0.82rem; color: var(--gray-500); font-weight: 500; }
.case-card > h3 { font-size: 1.15rem; margin-bottom: 8px; }
.case-goal {
    font-size: 0.88rem;
    color: var(--gray-500);
    margin-bottom: 20px;
    padding-bottom: 20px;
    border-bottom: 1px solid var(--gray-100);
}

.case-metrics {
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    gap: 16px;
    align-items: center;
    margin-bottom: 20px;
}
.case-before, .case-after {
    background: var(--gray-50);
    border-radius: var(--radius-sm);
    padding: 16px;
}
.case-after { background: var(--accent-light); }
.case-metric-label {
    font-size: 0.75rem;
    font-weight: 600;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin-bottom: 10px;
}
.case-metric-grid { display: flex; flex-direction: column; gap: 8px; }
.case-metric-grid > div {
    display: flex;
    justify-content: space-between;
    gap: 12px;
    font-size: 0.85rem;
}
.case-k { color: var(--gray-500); font-weight: 500; }
.case-v { font-weight: 700; color: var(--dark); }
.case-v.up { color: var(--accent); }
.case-arrow { font-size: 1.5rem; font-weight: 700; color: var(--primary); }

.case-result {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 14px;
    background: var(--primary-50);
    border-radius: var(--radius-sm);
    font-size: 0.88rem;
    color: var(--gray-700);
    line-height: 1.5;
}
.result-icon { width: 20px; height: 20px; color: var(--accent); flex-shrink: 0; margin-top: 2px; }
.case-result strong { color: var(--dark); font-weight: 700; }

/* === PRICING === */
.pricing { padding: 80px 0; background: var(--white); }
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px;
    align-items: start;
}
.pricing-card {
    background: var(--white);
    border: 2px solid var(--gray-100);
    border-radius: var(--radius);
    padding: 36px;
    transition: var(--transition);
    position: relative;
}
.pricing-card.featured { border-color: var(--primary); box-shadow: var(--shadow-lg); transform: scale(1.02); }
.pricing-card:hover { box-shadow: var(--shadow-lg); transform: translateY(-4px); }
.pricing-card.featured:hover { transform: scale(1.02) translateY(-4px); }

.pricing-badge {
    position: absolute;
    top: -12px; left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(to right, #2b5cfd, #2936d5) !important;
    color: white;
    padding: 6px 20px;
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    white-space: nowrap;
}

.pricing-name { font-size: 1.25rem; font-weight: 700; color: var(--dark); margin-bottom: 16px; }
.pricing-price { display: flex; align-items: baseline; gap: 8px; margin-bottom: 12px; }
.pricing-price .price { font-size: 3rem; font-weight: 800; color: var(--dark); letter-spacing: -0.02em; }
.pricing-price .per { font-size: 0.9rem; color: var(--gray-500); }
.pricing-desc {
    font-size: 0.9rem;
    color: var(--gray-500);
    margin-bottom: 24px;
    padding-bottom: 24px;
    border-bottom: 1px solid var(--gray-100);
}
.pricing-features { list-style: none; margin-bottom: 28px; }
.pricing-features li {
    padding: 8px 0;
    font-size: 0.92rem;
    color: var(--gray-700);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}
.pricing-card .btn { width: 100%; }

.pricing-note {
    text-align: center;
    margin-top: 40px;
    padding: 24px;
    background: var(--gray-50);
    border-radius: var(--radius);
    border: 1px solid var(--gray-100);
}
.pricing-note p { font-size: 0.95rem; color: var(--gray-700); }

/* === TESTIMONIALS === */
.testimonials { padding: 80px 0; background: var(--white); }
.reviews-summary {
    display: flex;
    justify-content: center;
    align-items: baseline;
    gap: 10px;
    margin-bottom: 24px;
    font-size: 0.95rem;
    color: var(--gray-700);
}
.reviews-summary-score { font-weight: 700; color: var(--dark); }
.reviews-summary-score strong { color: #f59e0b; }
.reviews-summary-count { color: var(--gray-500); }
.reviews-filter {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin-bottom: 36px;
}
.filter-btn {
    padding: 8px 20px;
    border: 1.5px solid var(--gray-200);
    background: var(--white);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    cursor: pointer;
    transition: var(--transition);
    font-family: inherit;
}
.filter-btn:hover { border-color: var(--primary-light); color: var(--primary); }
.filter-btn.active { background: var(--primary); color: white; border-color: var(--primary); }

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
}
.review-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    padding: 28px;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.review-card:hover { box-shadow: var(--shadow-md); transform: translateY(-2px); background: var(--white); }
.review-card.hidden { display: none; }

.quote-icon {
    position: absolute;
    top: 16px; right: 16px;
    width: 32px; height: 32px;
    color: var(--primary-light);
    opacity: 0.5;
}
.review-stars { display: flex; gap: 2px; margin-bottom: 14px; }
.review-stars svg { width: 16px; height: 16px; color: #fbbf24; }
.review-text {
    font-size: 0.92rem;
    line-height: 1.7;
    color: var(--gray-700);
    margin-bottom: 20px;
    flex-grow: 1;
}
.review-author { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.review-avatar {
    width: 44px; height: 44px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--white);
    font-size: 0.9rem;
    flex-shrink: 0;
}
.review-name { font-weight: 600; color: var(--dark); font-size: 0.9rem; }
.review-role { font-size: 0.78rem; color: var(--gray-500); }

.review-tag {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 50px;
    font-size: 0.72rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}
.review-tag.blog { background: #fce7f3; color: #be185d; }
.review-tag.ecommerce { background: #dbeafe; color: #1e40af; }
.review-tag.marketing { background: #ddd6fe; color: #6d28d9; }
.review-tag.affiliate { background: #fed7aa; color: #c2410c; }

/* === FAQ === */
.faq { padding: 80px 0; background: var(--gray-50); }
.faq-wrapper {
    max-width: 860px;
    margin: 48px auto 0;
    display: flex;
    flex-direction: column;
    gap: 40px;
}
.faq-category-title {
    font-size: 1.3rem;
    margin-bottom: 20px;
    padding-bottom: 12px;
    border-bottom: 2px solid var(--primary-light);
    color: var(--primary);
}
.faq-list { display: flex; flex-direction: column; gap: 10px; }
.faq-item {
    background: var(--white);
    border: 1px solid var(--gray-100);
    border-radius: var(--radius);
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover { border-color: var(--primary-light); }
.faq-item[open] { background: var(--white); border-color: var(--primary-light); box-shadow: var(--shadow); }
.faq-item summary {
    padding: 18px 24px;
    cursor: pointer;
    font-size: 0.98rem;
    font-weight: 600;
    color: var(--dark);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--primary);
    font-weight: 400;
    transition: transform 0.2s ease;
    flex-shrink: 0;
}
.faq-item[open] summary::after { content: '−'; transform: rotate(180deg); }
.faq-answer { padding: 0 24px 20px; }
.faq-answer p { font-size: 0.92rem; line-height: 1.7; color: var(--gray-700); }

/* === FINAL CTA === */
.final-cta {
    padding: 100px 0;
    background: linear-gradient(to right, #2b5cfd, #2936d5) !important;
    color: var(--white);
}
.cta-content { max-width: 800px; margin: 0 auto; text-align: center; }
.final-cta h2 { color: var(--white); margin-bottom: 16px; }
.cta-big {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--white);
    margin-bottom: 16px;
    line-height: 1.4;
}
.cta-big strong { color: #fbbf24; }
.cta-content > p { color: rgba(255,255,255,0.9); font-size: 1.1rem; margin-bottom: 40px; }
.cta-fine-print { color: rgba(255,255,255,0.65) !important; font-size: 0.85rem !important; margin-top: 0 !important; margin-bottom: 40px !important; line-height: 1.5; }

.cta-form {
    background: var(--white);
    padding: 40px;
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    text-align: left;
}

.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 16px; }
.form-group { margin-bottom: 16px; position: relative; }
.form-group label {
    display: block;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--gray-700);
    margin-bottom: 6px;
}
.form-group input, .form-group textarea {
    width: 100%;
    padding: 14px 18px;
    border: 2px solid var(--gray-100);
    border-radius: var(--radius-sm);
    font-size: 0.95rem;
    transition: var(--transition);
    font-family: inherit;
    background: var(--gray-50);
}
.form-group input:focus, .form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    background: var(--white);
    box-shadow: 0 0 0 3px rgba(43, 92, 253, 0.1);
}
.form-group textarea { resize: vertical; min-height: 100px; }
.form-group input.invalid, .form-group textarea.invalid { border-color: var(--error); }
.form-group.has-error input { border-color: var(--error); background: #fef2f2; }

.form-error {
    display: none;
    font-size: 0.8rem;
    color: var(--error);
    margin-top: 6px;
}
.form-group.has-error .form-error { display: block; }

/* Form Hint (Email OR Telegram) */
.form-hint {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 14px;
    background: var(--primary-50);
    border: 1px dashed var(--primary-light);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--gray-700);
    margin-bottom: 16px;
}
.form-hint strong { color: var(--primary); }
.hint-icon { width: 16px; height: 16px; color: var(--primary); flex-shrink: 0; }
.form-hint.hidden-hint { display: none; }

/* Form Success */
.form-success {
    margin-top: 20px;
    padding: 16px;
    background: var(--accent-light);
    color: var(--accent);
    border-radius: var(--radius-sm);
    text-align: center;
    font-weight: 600;
    font-size: 0.95rem;
    align-items: center;
    justify-content: center;
    gap: 8px;
}
.form-success:not([hidden]) { display: flex; }
.form-success svg { width: 20px; height: 20px; }

/* Form Error Box */
.form-error-box {
    margin-top: 16px;
    padding: 16px;
    background: #fee2e2;
    color: var(--error);
    border-radius: var(--radius-sm);
    font-size: 0.9rem;
    font-weight: 500;
    text-align: center;
}
.form-error-box:not([hidden]) { display: block; }

/* Ошибка пары Email/Telegram */
.form-error-pair {
    margin-top: -8px;
    margin-bottom: 16px;
    padding: 12px 14px;
    font-size: 0.85rem;
    text-align: left;
}

.honeypot {
    position: absolute !important;
    left: -9999px !important;
    height: 1px; width: 1px;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
}

.cta-contacts {
    margin-top: 40px;
    padding-top: 32px;
    border-top: 1px solid rgba(255,255,255,0.2);
}
.cta-contacts > p { color: rgba(255,255,255,0.8); margin-bottom: 20px; }
.contact-links { display: flex; justify-content: center; gap: 16px; flex-wrap: wrap; }
.contact-link {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(255,255,255,0.1);
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 50px;
    color: var(--white);
    font-weight: 500;
    transition: var(--transition);
}
.contact-link:hover {
    background: rgba(255,255,255,0.2);
    color: var(--white);
    transform: translateY(-2px);
}
.contact-link svg { width: 20px; height: 20px; }

/* === FOOTER (unified — base style from Terms of Service page) === */
.site-footer {
    padding: 40px 0 24px;
    background: var(--gray-50);
    border-top: 1px solid var(--gray-100);
}
.site-footer-brand { text-align: center; margin-bottom: 24px; }
.site-footer-brand .logo {
    display: inline-flex;
    align-items: center;
    font-weight: 700;
    font-size: 1.05rem;
}
.site-footer-brand p { font-size: 0.88rem; color: var(--gray-500); margin-top: 8px; }
.site-footer-links {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px 24px;
    margin-bottom: 24px;
}
.site-footer-links a { font-size: 0.88rem; color: var(--gray-500); }
.site-footer-links a:hover { color: var(--primary); }
.site-footer-copy {
    text-align: center;
    font-size: 0.82rem;
    color: var(--gray-500);
    padding-top: 20px;
    border-top: 1px solid var(--gray-100);
}

.cookie-banner {
    position: fixed;
    left: 50%;
    bottom: 16px;
    transform: translateX(-50%);
    z-index: 1000;
    width: min(940px, calc(100% - 32px));
    background: var(--white, #ffffff);
    border: 1px solid var(--gray-200, rgba(19, 27, 33, .12));
    border-radius: 10px;
    box-shadow: 0 6px 28px rgba(19, 27, 33, .16);
}
 
.cookie-banner[hidden] {
    display: none !important;
}
 
.cookie-banner-content {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 12px 16px;
}
 
.cookie-text {
    flex: 1 1 auto;
    min-width: 0;
    margin: 0;
    font-size: 13px;
    line-height: 1.5;
    color: var(--gray-600, #4a5560);
}
 
/* ссылка на политику и кнопки-ссылки «Настроить» / «Только необходимые»
   выглядят одинаково — требование о равнодоступности отказа */
.cookie-text a,
.cookie-link {
    color: var(--gray-800, #202a33);
    text-decoration: underline;
    text-underline-offset: 2px;
    text-decoration-thickness: 1px;
}
 
.cookie-link {
    display: inline;
    padding: 0;
    margin: 0;
    border: 0;
    background: none;
    font: inherit;
    cursor: pointer;
}
 
.cookie-text a:hover,
.cookie-link:hover {
    color: var(--primary, #0d6a81);
}
 
.cookie-text a:focus-visible,
.cookie-link:focus-visible {
    outline: 2px solid var(--primary, #0d6a81);
    outline-offset: 2px;
    border-radius: 2px;
}
 
.cookie-banner .btn {
    flex: 0 0 auto;
    white-space: nowrap;
}
 
@media (max-width: 720px) {
    .cookie-banner {
        bottom: 8px;
        width: calc(100% - 16px);
    }
 
    .cookie-banner-content {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
        padding: 12px 14px;
    }
 
    .cookie-banner .btn {
        width: 100%;
    }
}
 
@media (prefers-reduced-motion: reduce) {
    .cookie-banner {
        transition: none;
    }
}

.btn-sm { padding: 10px 20px; font-size: 0.88rem; }
.btn-ghost {
    background: transparent;
    color: var(--gray-700);
    border: none;
}
.btn-ghost:hover { color: var(--primary); }

/* === COOKIE MODAL === */
.cookie-modal {
    position: fixed;
    inset: 0;
    background: rgba(15, 23, 42, 0.5);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
}
.cookie-modal:not([hidden]) { display: flex; }

.cookie-modal-content {
    background: var(--white);
    border-radius: var(--radius);
    max-width: 600px;
    width: 100%;
    max-height: 85vh;
    overflow-y: auto;
    box-shadow: var(--shadow-lg);
}
.cookie-modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 24px;
    border-bottom: 1px solid var(--gray-100);
}
.cookie-modal-close {
    background: none;
    border: none;
    font-size: 1.3rem;
    cursor: pointer;
    color: var(--gray-500);
}
.cookie-modal-body { padding: 24px; }

.cookie-option {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    padding: 16px 0;
    border-bottom: 1px solid var(--gray-100);
}
.cookie-option:last-child { border-bottom: none; }
.cookie-option-info h4 { font-size: 1rem; margin-bottom: 4px; }
.cookie-option-info p { font-size: 0.85rem; margin: 0; }

/* Toggle switch */
.cookie-switch {
    position: relative;
    display: inline-block;
    width: 48px;
    height: 26px;
    flex-shrink: 0;
}
.cookie-switch input {
    opacity: 0;
    width: 0;
    height: 0;
}
.cookie-slider {
    position: absolute;
    cursor: pointer;
    inset: 0;
    background: var(--gray-300);
    border-radius: 26px;
    transition: 0.3s;
}
.cookie-slider::before {
    content: '';
    position: absolute;
    width: 20px; height: 20px;
    left: 3px; top: 3px;
    background: white;
    border-radius: 50%;
    transition: 0.3s;
}
.cookie-switch input:checked + .cookie-slider {
    background: var(--primary);
}
.cookie-switch input:checked + .cookie-slider::before {
    transform: translateX(22px);
}
.cookie-switch input:disabled + .cookie-slider {
    opacity: 0.6;
    cursor: not-allowed;
}

.cookie-modal-footer {
    padding: 16px 24px;
    border-top: 1px solid var(--gray-100);
    text-align: right;
}

/* === RESPONSIVE === */
@media (max-width: 968px) {
    .ba-grid { grid-template-columns: 1fr; gap: 24px; }
    .ba-arrow { transform: rotate(90deg); }
    .case-metrics { grid-template-columns: 1fr; gap: 12px; }
    .case-arrow { transform: rotate(90deg); justify-self: center; }
    .step { grid-template-columns: 60px 1fr; gap: 16px; }
    .step-number { font-size: 2.5rem; }
    .timeline { padding-left: 32px; }
    .timeline::before { left: 15px; }
    .timeline-dot { left: -32px; width: 40px; height: 40px; }
    .timeline-dot svg { width: 18px; height: 18px; }
    .mu-grid { grid-template-columns: 1fr; gap: 40px; }
    .ad-grid { grid-template-columns: 1fr; }
}

@media (max-width: 768px) {
    .hub { display: none; }
    .hero-top { flex-direction: column; gap: 16px; margin-bottom: 60px; }
    .form-row { grid-template-columns: 1fr; }
    .pricing-card.featured { transform: scale(1); }
    .pricing-card.featured:hover { transform: translateY(-4px); }
    .lang-switch { display: none; }
    section { padding: 60px 0 !important; }
    .mu-content h2 { text-align: center; }
    .timeline-note { flex-direction: column; text-align: center; }
}

@media (max-width: 480px) {
    .hero { padding: 60px 0 80px; }
    .hero-badges li { flex-direction: column; align-items: center; padding: 12px; }
    .cta-big { font-size: 1.4rem; }
    .cta-form { padding: 24px; }
    .contact-links { flex-direction: column; }
    .ba-arrow svg { width: 32px; height: 32px; }
    .source-head { flex-direction: column; gap: 12px; }
    .faq-item summary { padding: 16px; font-size: 0.9rem; }
    .faq-answer { padding: 0 16px 16px; }
    .form-hint { flex-direction: row; align-items: flex-start; }
}