        :root {
            --accent: #4361ee;
            --accent-hover: #3651d4;
            --accent-soft: rgba(67,97,238,0.08);
            --dark: #0f172a;
            --dark-card: #1e293b;
            --text-primary: #0f172a;
            --text-secondary: #64748b;
            --text-muted: #94a3b8;
            --border: #e2e8f0;
            --bg-page: #f8fafc;
            --radius: 16px;
            --radius-sm: 10px;
        }

        * { margin: 0; padding: 0; box-sizing: border-box; }

        body {
            font-family: 'Manrope', sans-serif;
            color: var(--text-primary);
            background: #fff;
            overflow-x: hidden;
        }

        /* ═══ NAVBAR ═══ */
        .navbar-ss {
            position: fixed;
            top: 0; left: 0; right: 0;
            z-index: 1000;
            padding: 16px 0;
            transition: all 0.35s ease;
        }
        .navbar-ss.scrolled {
            background: rgba(255,255,255,0.92);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
            padding: 10px 0;
        }
        .navbar-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
        }
        .nav-logo {
            display: flex;
            align-items: center;
            gap: 10px;
            font-size: 22px;
            font-weight: 800;
            color: #fff;
            text-decoration: none;
            letter-spacing: -0.5px;
        }
        .navbar-ss.scrolled .nav-logo { color: var(--dark); }
        .nav-logo i { color: var(--accent); font-size: 24px; }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 32px;
        }
        .nav-links a {
            color: rgba(255,255,255,0.7);
            text-decoration: none;
            font-size: 14px;
            font-weight: 600;
            transition: color 0.2s;
        }
        .nav-links a:hover { color: #fff; }
        .navbar-ss.scrolled .nav-links a { color: var(--text-secondary); }
        .navbar-ss.scrolled .nav-links a:hover { color: var(--dark); }

        .nav-cta {
            background: var(--accent) !important;
            color: #fff !important;
            padding: 10px 24px;
            border-radius: var(--radius-sm);
            font-weight: 700 !important;
            transition: all 0.2s !important;
        }
        .nav-cta:hover {
            background: var(--accent-hover) !important;
            transform: translateY(-1px);
            box-shadow: 0 4px 16px rgba(67,97,238,0.35);
        }
        .nav-toggle {
            display: none;
            background: none;
            border: none;
            color: #fff;
            font-size: 24px;
            cursor: pointer;
        }
        .navbar-ss.scrolled .nav-toggle { color: var(--dark); }

        /* ═══ HERO ═══ */
        .hero {
            position: relative;
            min-height: 100vh;
            background: var(--dark);
            display: flex;
            align-items: center;
            overflow: hidden;
        }
        .hero::before {
            content: '';
            position: absolute;
            top: -40%; right: -20%;
            width: 800px; height: 800px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(67,97,238,0.15) 0%, transparent 70%);
            pointer-events: none;
        }
        .hero::after {
            content: '';
            position: absolute;
            bottom: -30%; left: -10%;
            width: 600px; height: 600px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(124,58,237,0.1) 0%, transparent 70%);
            pointer-events: none;
        }
        .hero-grid {
            position: absolute;
            inset: 0;
            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: 60px 60px;
            pointer-events: none;
        }
        .hero-inner {
            position: relative;
            max-width: 1200px;
            margin: 0 auto;
            padding: 140px 24px 80px;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }
        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(67,97,238,0.12);
            border: 1px solid rgba(67,97,238,0.25);
            padding: 6px 16px;
            border-radius: 100px;
            font-size: 13px;
            font-weight: 600;
            color: #7c9aff;
            margin-bottom: 24px;
        }
        .hero-badge .dot {
            width: 6px; height: 6px;
            border-radius: 50%;
            background: #4ade80;
            animation: pulse-dot 2s infinite;
        }
        @keyframes pulse-dot {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }
        .hero h1 {
            font-size: clamp(36px, 5vw, 56px);
            font-weight: 800;
            color: #fff;
            line-height: 1.1;
            letter-spacing: -1.5px;
            margin-bottom: 20px;
        }
        .hero h1 .gradient-text {
            background: linear-gradient(135deg, #4361ee 0%, #7c3aed 50%, #a855f7 100%);
            -webkit-background-clip: text;
            -webkit-text-fill-color: transparent;
            background-clip: text;
        }
.hero-desc {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

        .hero-actions {
            display: flex;
            gap: 14px;
            flex-wrap: wrap;
        }
        .btn-hero {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            padding: 16px 32px;
            border-radius: var(--radius-sm);
            font-size: 15px;
            font-weight: 700;
            text-decoration: none;
            transition: all 0.25s ease;
            border: none;
            cursor: pointer;
        }
        .btn-hero-primary {
            background: var(--accent);
            color: #fff;
        }
        .btn-hero-primary:hover {
            background: var(--accent-hover);
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(67,97,238,0.35);
            color: #fff;
        }
.btn-hero-outline {
    background: rgba(255,255,255,0.08);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.18);
    border-radius: 100px;
}
.btn-hero-outline:hover {
    background: rgba(255,255,255,0.14);
    color: #fff;
    transform: translateY(-2px);
}
.btn-hero-primary {
    background: var(--accent);
    color: #fff;
    border-radius: 100px;
}

        /* Визуал — билборд */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}
.hero-billboard {
    position: relative;
    width: 100%;
    max-width: 560px;
}
.hero-billboard img {
    width: 100%;
    height: auto;
    border-radius: 20px;
    display: block;
}
.hero-rating {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(30,41,59,0.85);
    backdrop-filter: blur(12px);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 14px;
    padding: 12px 18px;
    margin-top: 28px;
}
.hero-rating-value {
    font-size: 28px;
    font-weight: 800;
    color: #fff;
    line-height: 1;
}
.hero-rating-label {
    font-size: 12px;
    color: var(--text-muted);
    line-height: 1.3;
}
.hero-rating-stars {
    color: #facc15;
    font-size: 13px;
    letter-spacing: 1px;
}

        /* Плавающие метрики вокруг телефона */
        .float-stat {
            position: absolute;
            background: rgba(30,41,59,0.9);
            backdrop-filter: blur(12px);
            border: 1px solid rgba(255,255,255,0.08);
            border-radius: 14px;
            padding: 14px 18px;
            color: #fff;
            z-index: 5;
            animation: float 6s ease-in-out infinite;
        }
       .float-stat-1 { top: 8%; right: 0; left: auto; animation-delay: 0s; }
        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }
        .float-stat-value {
            font-size: 22px;
            font-weight: 800;
            line-height: 1;
        }
        .float-stat-label {
            font-size: 11px;
            color: var(--text-muted);
            margin-top: 3px;
        }
        .float-stat-icon { font-size: 14px; margin-bottom: 6px; }
        .float-stat-icon.green { color: #4ade80; }
        .float-stat-icon.blue { color: #60a5fa; }
        .float-stat-icon.orange { color: #fb923c; }

        /* ═══ ПОЛОСА ДОВЕРИЯ ═══ */
        .proof-bar {
            background: var(--bg-page);
            border-top: 1px solid var(--border);
            border-bottom: 1px solid var(--border);
            padding: 32px 0;
        }
        .proof-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 48px;
            flex-wrap: wrap;
        }
        .proof-item {
            display: flex;
            align-items: center;
            gap: 10px;
            color: var(--text-muted);
            font-size: 14px;
            font-weight: 600;
        }
        .proof-item i { font-size: 18px; color: var(--accent); }

        /* ═══ СЕКЦИИ — ОБЩИЕ ═══ */
        .section {
            max-width: 1200px;
            margin: 0 auto;
            padding: 100px 24px;
        }
        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: var(--accent-soft);
            color: var(--accent);
            padding: 6px 16px;
            border-radius: 100px;
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 16px;
        }
        .section-title {
            font-size: clamp(28px, 4vw, 42px);
            font-weight: 800;
            letter-spacing: -1px;
            line-height: 1.15;
            margin-bottom: 16px;
        }
        .section-subtitle {
            font-size: 17px;
            color: var(--text-secondary);
            line-height: 1.7;
            max-width: 560px;
        }

        /* ═══ КАК ЭТО РАБОТАЕТ ═══ */
        .how-bg { background: #fff; }
        .steps-grid {
            display: grid;
            grid-template-columns: repeat(5, 1fr);
            gap: 12px;
            margin-top: 60px;
            position: relative;
        }
        .steps-grid::before {
            content: '';
            position: absolute;
            top: 40px;
            left: 10%; right: 10%;
            height: 2px;
            background: linear-gradient(90deg, var(--accent), #7c3aed, #a855f7, #10b981, #f59e0b);
            border-radius: 2px;
            z-index: 0;
        }
        .step-card {
            position: relative;
            z-index: 1;
            text-align: center;
        }
        .step-num {
            width: 80px; height: 80px;
            border-radius: 50%;
            background: #fff;
            border: 3px solid var(--border);
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 28px;
            margin: 0 auto 16px;
            transition: all 0.3s ease;
        }
        .step-card:hover .step-num {
            border-color: var(--accent);
            transform: scale(1.1);
            box-shadow: 0 8px 30px rgba(67,97,238,0.15);
        }
        .step-label {
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 6px;
        }
        .step-desc {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.5;
        }

        /* ═══ ВОЗМОЖНОСТИ ═══ */
        .features-bg { background: var(--bg-page); }
        .features-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 20px;
            margin-top: 60px;
        }
        .feat-card {
            background: #fff;
            border-radius: var(--radius);
            padding: 32px 28px;
            border: 1px solid var(--border);
            transition: all 0.3s ease;
            position: relative;
            overflow: hidden;
        }
        .feat-card::before {
            content: '';
            position: absolute;
            top: 0; left: 0; right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent), #7c3aed);
            opacity: 0;
            transition: opacity 0.3s;
        }
        .feat-card:hover {
            transform: translateY(-4px);
            box-shadow: 0 12px 40px rgba(0,0,0,0.06);
            border-color: transparent;
        }
        .feat-card:hover::before { opacity: 1; }
        .feat-icon {
            width: 52px; height: 52px;
            border-radius: 14px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 22px;
            margin-bottom: 20px;
        }
        .feat-icon-blue { background: rgba(67,97,238,0.1); color: #4361ee; }
        .feat-icon-green { background: rgba(16,185,129,0.1); color: #10b981; }
        .feat-icon-purple { background: rgba(139,92,246,0.1); color: #8b5cf6; }
        .feat-icon-orange { background: rgba(245,158,11,0.1); color: #f59e0b; }
        .feat-icon-pink { background: rgba(236,72,153,0.1); color: #ec4899; }
        .feat-icon-teal { background: rgba(20,184,166,0.1); color: #14b8a6; }
        .feat-card h3 {
            font-size: 17px;
            font-weight: 700;
            margin-bottom: 8px;
        }
        .feat-card p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.6;
            margin: 0;
        }

        /* ═══ СРАВНЕНИЕ ═══ */
        .compare-bg { background: var(--dark); color: #fff; }
        .compare-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 24px;
            margin-top: 60px;
        }
        .compare-card {
            border-radius: var(--radius);
            padding: 36px 32px;
        }
        .compare-old {
            background: rgba(239,68,68,0.08);
            border: 1px solid rgba(239,68,68,0.15);
        }
        .compare-new {
            background: rgba(67,97,238,0.08);
            border: 1px solid rgba(67,97,238,0.2);
        }
        .compare-label {
            font-size: 12px;
            font-weight: 700;
            text-transform: uppercase;
            letter-spacing: 1.5px;
            margin-bottom: 20px;
        }
        .compare-old .compare-label { color: #f87171; }
        .compare-new .compare-label { color: #60a5fa; }
        .compare-list {
            list-style: none;
            padding: 0;
        }
        .compare-list li {
            padding: 10px 0;
            font-size: 15px;
            display: flex;
            align-items: flex-start;
            gap: 10px;
            border-bottom: 1px solid rgba(255,255,255,0.05);
            color: rgba(255,255,255,0.8);
        }
        .compare-list li:last-child { border: none; }
        .compare-list li i { margin-top: 3px; flex-shrink: 0; }
        .compare-old .compare-list li i { color: #f87171; }
        .compare-new .compare-list li i { color: #4ade80; }

        /* ═══ ЦЕНООБРАЗОВАНИЕ ═══ */
.pricing-bg { background: #fff; }

.pricing-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 40px;
    margin-top: 60px;
    align-items: start;
}

/* Левая часть — преимущества */
.pricing-benefits {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.benefit-card {
    display: flex;
    gap: 16px;
    padding: 20px 24px;
    border-radius: var(--radius);
    background: var(--bg-page);
    border: 1px solid var(--border);
    transition: all 0.25s ease;
}

.benefit-card:hover {
    border-color: var(--accent);
    box-shadow: 0 4px 16px rgba(67,97,238,0.08);
    transform: translateX(4px);
}

.benefit-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    flex-shrink: 0;
}

.benefit-icon.bi-green  { background: rgba(16,185,129,0.1);  color: #10b981; }
.benefit-icon.bi-blue   { background: rgba(67,97,238,0.1);   color: #4361ee; }
.benefit-icon.bi-orange { background: rgba(245,158,11,0.1);  color: #f59e0b; }
.benefit-icon.bi-purple { background: rgba(139,92,246,0.1);  color: #8b5cf6; }

.benefit-card h4 {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 4px;
    color: var(--text-primary);
}

.benefit-card p {
    font-size: 13px;
    color: var(--text-secondary);
    line-height: 1.5;
    margin: 0;
}

        /* Правая часть — калькулятор */
        .calc-card {
            border-radius: var(--radius);
            border: 2px solid var(--accent);
            overflow: hidden;
            box-shadow: 0 8px 40px rgba(67,97,238,0.10);
            position: sticky;
            top: 100px;
        }

        .calc-header {
            background: var(--accent);
            color: #fff;
            padding: 24px 28px;
            text-align: center;
        }

        .calc-header h3 {
            font-size: 18px;
            font-weight: 800;
            margin-bottom: 4px;
        }

        .calc-header p {
            font-size: 13px;
            opacity: 0.8;
            margin: 0;
        }

        .calc-body {
            padding: 28px;
            background: #fff;
        }

        .calc-slider-group {
            margin-bottom: 28px;
        }

        .calc-slider-label {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 10px;
        }

        .calc-slider-label span:first-child {
            font-size: 14px;
            font-weight: 600;
            color: var(--text-primary);
        }

        .calc-slider-value {
            font-size: 18px;
            font-weight: 800;
            color: var(--accent);
            min-width: 50px;
            text-align: right;
        }

        .calc-range {
            -webkit-appearance: none;
            appearance: none;
            width: 100%;
            height: 6px;
            border-radius: 3px;
            background: var(--border);
            outline: none;
            cursor: pointer;
        }

        .calc-range::-webkit-slider-thumb {
            -webkit-appearance: none;
            appearance: none;
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: var(--accent);
            border: 3px solid #fff;
            box-shadow: 0 2px 8px rgba(67,97,238,0.35);
            cursor: pointer;
            transition: transform 0.15s;
        }

        .calc-range::-webkit-slider-thumb:hover {
            transform: scale(1.15);
        }

        .calc-range::-moz-range-thumb {
            width: 22px;
            height: 22px;
        }


        .calc-range::-moz-range-thumb {
            width: 22px;
            height: 22px;
            border-radius: 50%;
            background: var(--accent);
            border: 3px solid #fff;
            box-shadow: 0 2px 8px rgba(67,97,238,0.35);
            cursor: pointer;
        }

        .calc-slider-hints {
            display: flex;
            justify-content: space-between;
            font-size: 11px;
            color: var(--text-muted);
            margin-top: 6px;
        }

        .calc-divider {
            height: 1px;
            background: var(--border);
            margin: 24px 0;
        }

        .calc-row {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding: 8px 0;
            font-size: 14px;
            color: var(--text-secondary);
        }

        .calc-row span:last-child {
            font-weight: 600;
            color: var(--text-primary);
        }

        .calc-trial {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            background: rgba(16,185,129,0.08);
            color: #10b981;
            font-size: 13px;
            font-weight: 700;
            padding: 6px 14px;
            border-radius: 20px;
        }

        .calc-total-block {
            background: var(--bg-page);
            border-radius: var(--radius-sm);
            padding: 20px;
            margin-top: 20px;
            text-align: center;
        }

        .calc-total-label {
            font-size: 13px;
            color: var(--text-secondary);
            margin-bottom: 6px;
        }

        .calc-total-amount {
            font-size: 40px;
            font-weight: 800;
            color: var(--text-primary);
            letter-spacing: -2px;
            line-height: 1.1;
        }

        .calc-total-amount .calc-cur {
            font-size: 18px;
            font-weight: 600;
            color: var(--text-secondary);
            letter-spacing: 0;
        }

        .calc-total-sub {
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 6px;
        }

        .calc-total-free {
            color: #10b981 !important;
        }

        .calc-footer {
            padding: 0 28px 28px;
        }

        .calc-cta {
            display: block;
            width: 100%;
            padding: 14px;
            border-radius: var(--radius-sm);
            background: var(--accent);
            color: #fff;
            font-weight: 700;
            font-size: 15px;
            text-align: center;
            text-decoration: none;
            transition: all 0.2s;
            border: none;
            cursor: pointer;
        }

        .calc-cta:hover {
            background: var(--accent-hover);
            color: #fff;
            transform: translateY(-1px);
            box-shadow: 0 4px 16px rgba(67,97,238,0.35);
        }

        .calc-note {
            font-size: 12px;
            color: var(--text-muted);
            text-align: center;
            margin-top: 12px;
        }



        /* ═══ CTA ═══ */
        .cta-section {
            background: var(--dark);
            position: relative;
            overflow: hidden;
        }
        .cta-section::before {
            content: '';
            position: absolute;
            top: -50%; left: 50%;
            transform: translateX(-50%);
            width: 900px; height: 900px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(67,97,238,0.12) 0%, transparent 70%);
        }
        .cta-inner {
            position: relative;
            max-width: 700px;
            margin: 0 auto;
            padding: 100px 24px;
            text-align: center;
        }
        .cta-inner h2 {
            font-size: clamp(28px, 4vw, 40px);
            font-weight: 800;
            color: #fff;
            letter-spacing: -1px;
            margin-bottom: 16px;
        }
        .cta-inner p {
            font-size: 17px;
            color: var(--text-muted);
            margin-bottom: 36px;
            line-height: 1.7;
        }

        /* ═══ FOOTER ═══ */
        .footer {
            background: var(--dark);
            border-top: 1px solid rgba(255,255,255,0.06);
            padding: 40px 0;
        }
        .footer-inner {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            flex-wrap: wrap;
            gap: 16px;
        }
        .footer-copy {
            font-size: 13px;
            color: #475569;
        }
        .footer-links { display: flex; gap: 24px; }
        .footer-links a {
            font-size: 13px;
            color: #64748b;
            text-decoration: none;
            transition: color 0.2s;
        }
        .footer-links a:hover { color: #94a3b8; }

        /* ═══ АНИМАЦИИ ═══ */
        .fade-up {
            opacity: 0;
            transform: translateY(30px);
            transition: all 0.7s cubic-bezier(0.16, 1, 0.3, 1);
        }
        .fade-up.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ═══ АДАПТИВ ═══ */
        @media (max-width: 991px) {
            .hero-inner {
                grid-template-columns: 1fr;
                text-align: center;
                padding-top: 120px;
            }
            .hero-desc { margin: 0 auto 36px; }
            .hero-actions { justify-content: center; }
            .hero-visual { margin-top: 40px; }
            .steps-grid { grid-template-columns: repeat(3, 1fr); }
            .steps-grid::before { display: none; }
            .features-grid { grid-template-columns: repeat(2, 1fr); }
            .compare-grid { grid-template-columns: 1fr; }
             .nav-links { display: none !important; }
            .nav-toggle { display: block !important; }
            .pricing-layout {
                grid-template-columns: 1fr;
                max-width: 520px;
                margin-left: auto;
                margin-right: auto;
            }
            .calc-card { position: static; }
        }
        @media (max-width: 767px) {
            .steps-grid { grid-template-columns: repeat(2, 1fr); }
            .features-grid { grid-template-columns: 1fr; }
            .float-stat { display: none; }
            .section { padding: 60px 16px; }
        }
         @media (max-width: 575px) {
            .steps-grid { grid-template-columns: 1fr; }
            .proof-inner { gap: 24px; }
            .navbar-inner { padding: 0 12px; }
            .nav-logo { font-size: 18px; gap: 6px; }
            .nav-logo img { width: 32px !important; }
            .hero-inner { padding: 110px 16px 60px; }
        }

        /* ═══ Мобильное меню ═══ */
        .mobile-menu {
            display: none;
            position: fixed;
            inset: 0;
            background: var(--dark);
            z-index: 2000;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 24px;
        }
        .mobile-menu.open { display: flex; }
        .mobile-menu a {
            color: #fff;
            font-size: 20px;
            font-weight: 700;
            text-decoration: none;
        }
        .mobile-menu-close {
            position: absolute;
            top: 20px; right: 24px;
            background: none; border: none;
            color: #fff; font-size: 28px;
            cursor: pointer;
        }


/* ═══ ПРОБЛЕМА + РЕШЕНИЕ ═══ */
.problem-bg {
    background: #fff;
}
.problem-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 100px 24px;
}
.problem-headline {
    font-size: clamp(28px, 4vw, 40px);
    font-weight: 800;
    letter-spacing: -1px;
    line-height: 1.15;
    color: var(--text-primary);
    margin-bottom: 8px;
    max-width: 720px;
}
.problem-headline .accent {
    color: #ef4444;
}
.problem-sub {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 700px;
    margin-bottom: 40px;
}
.problem-questions {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 48px;
}
.problem-q {
    background: #fef2f2;
    border: 1px solid #fecaca;
    border-radius: var(--radius);
    padding: 28px 24px;
    position: relative;
    transition: all 0.25s ease;
}
.problem-q:hover {
    transform: translateY(-3px);
    box-shadow: 0 8px 30px rgba(239,68,68,0.08);
}
.problem-q-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(239,68,68,0.1);
    color: #ef4444;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    margin-bottom: 16px;
}
.problem-q p {
    font-size: 15px;
    color: var(--text-primary);
    line-height: 1.6;
    margin: 0;
    font-weight: 500;
}
.problem-verdict {
    background: var(--dark);
    border-radius: var(--radius);
    padding: 32px 36px;
    display: flex;
    align-items: center;
    gap: 20px;
    margin-bottom: 80px;
}
.problem-verdict-icon {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: rgba(239,68,68,0.15);
    color: #f87171;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 22px;
    flex-shrink: 0;
}
.problem-verdict p {
    font-size: 16px;
    color: rgba(255,255,255,0.85);
    margin: 0;
    line-height: 1.6;
}
.problem-verdict strong {
    color: #fff;
}

/* Решение */
.solution-header {
    text-align: center;
    margin-bottom: 20px;
}
.solution-desc {
    font-size: 17px;
    color: var(--text-secondary);
    line-height: 1.7;
    max-width: 680px;
    margin: 0 auto 56px;
    text-align: center;
}
.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-bottom: 48px;
}
.solution-card {
    background: var(--bg-page);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 36px 28px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.solution-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), #7c3aed);
    opacity: 0;
    transition: opacity 0.3s;
}
.solution-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0,0,0,0.06);
    border-color: transparent;
}
.solution-card:hover::before {
    opacity: 1;
}
.solution-card-icon {
    font-size: 40px;
    margin-bottom: 20px;
    display: block;
}
.solution-card h3 {
    font-size: 18px;
    font-weight: 700;
    margin-bottom: 10px;
    color: var(--text-primary);
}
.solution-card p {
    font-size: 14px;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}
.solution-cta {
    text-align: center;
}
.solution-cta p {
    font-size: 17px;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

@media (max-width: 991px) {
    .problem-questions { grid-template-columns: 1fr; }
    .solution-grid { grid-template-columns: 1fr; max-width: 440px; margin-left: auto; margin-right: auto; }
    .problem-verdict { flex-direction: column; text-align: center; }
}

.hero-brand-name {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 800;
    color: #fff;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin-bottom: 12px;
}
.hero-h1 {
    font-size: 18px !important;
    color: var(--text-muted);
    line-height: 1.7;
    margin-bottom: 36px;
    max-width: 520px;
    font-weight: 500;
}

.gradient-text{
    color: #4361ee !important;
}