        :root {
            --bg-primary: #0a0e17;
            --bg-secondary: #111827;
            --bg-card: #1a2235;
            --accent: #00d4ff;
            --accent-glow: rgba(0, 212, 255, 0.15);
            --accent-dark: #0099bb;
            --red: #ff3b5c;
            --text-primary: #f0f4ff;
            --text-secondary: #8b99b5;
            --text-muted: #5a6a8a;
            --border: rgba(255,255,255,0.06);
            --radius: 16px;
        }

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

        html { scroll-behavior: smooth; }

        body {
            font-family: 'Manrope', sans-serif;
            background: var(--bg-primary);
            color: var(--text-primary);
            overflow-x: hidden;
            line-height: 1.6;
        }

        /* ====== NOISE OVERLAY ====== */
        body::before {
            content: '';
            position: fixed;
            inset: 0;
            background: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.03'/%3E%3C/svg%3E");
            pointer-events: none;
            z-index: 9999;
        }

        /* ====== HEADER ====== */
        header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 0 40px;
            height: 72px;
            display: flex;
            align-items: center;
            justify-content: space-between;
            background: rgba(10, 14, 23, 0.85);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid var(--border);
            transition: all 0.3s;
        }

        .logo-icon {
            width: 32px;
            height: 32px;
        }

        .logo {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 28px;
            letter-spacing: 4px;
            color: var(--accent);
            text-decoration: none;
            display: flex;
            align-items: center;
            gap: 10px;
        }

        .logo-dot {
            width: 8px;
            height: 8px;
            background: var(--red);
            border-radius: 50%;
            animation: blink 2s infinite;
        }

        @keyframes blink {
            0%, 100% { opacity: 1; }
            50% { opacity: 0.3; }
        }

        nav { display: flex; gap: 32px; align-items: center; }

        nav a {
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 14px;
            font-weight: 500;
            transition: color 0.3s;
            letter-spacing: 0.5px;
        }

        nav a:hover { color: var(--accent); }

        .header-phone {
            color: var(--text-primary);
            text-decoration: none;
            font-weight: 700;
            font-size: 15px;
            letter-spacing: 0.5px;
        }

        .header-phone:hover { color: var(--accent); }

        .burger {
            display: none;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 8px;
        }

        .burger span {
            width: 24px;
            height: 2px;
            background: var(--text-primary);
            transition: 0.3s;
        }

        /* ====== HERO ====== */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            position: relative;
            padding: 120px 40px 80px;
            overflow: hidden;
        }

        .hero-bg {
            position: absolute;
            inset: 0;
            background:
                radial-gradient(ellipse 80% 60% at 70% 40%, rgba(0, 212, 255, 0.08) 0%, transparent 60%),
                radial-gradient(ellipse 50% 50% at 20% 80%, rgba(255, 59, 92, 0.05) 0%, transparent 50%);
        }

        .hero-grid {
            position: absolute;
            inset: 0;
            background-image:
                linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
                linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
            background-size: 60px 60px;
            mask-image: radial-gradient(ellipse at center, black 30%, transparent 70%);
        }

        .hero-content {
            max-width: 1280px;
            margin: 0 auto;
            width: 100%;
            position: relative;
            z-index: 2;
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 60px;
            align-items: center;
        }

        .hero-left h1 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(48px, 6vw, 80px);
            line-height: 0.95;
            letter-spacing: 2px;
            margin-bottom: 24px;
        }

        .hero-left h1 span { color: var(--accent); }

        .hero-left p {
            font-size: 18px;
            color: var(--text-secondary);
            max-width: 480px;
            margin-bottom: 40px;
            line-height: 1.7;
        }

        .hero-buttons { display: flex; gap: 16px; flex-wrap: wrap; }

        .btn-primary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 16px 32px;
            background: var(--accent);
            color: var(--bg-primary);
            border: none;
            border-radius: 60px;
            font-family: 'Manrope', sans-serif;
            font-size: 15px;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
            letter-spacing: 0.5px;
        }

        .btn-primary:hover {
            background: #33dfff;
            transform: translateY(-2px);
            box-shadow: 0 8px 30px rgba(0, 212, 255, 0.3);
        }

        .btn-secondary {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 16px 32px;
            background: transparent;
            color: var(--text-primary);
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 60px;
            font-family: 'Manrope', sans-serif;
            font-size: 15px;
            font-weight: 600;
            cursor: pointer;
            transition: all 0.3s;
            text-decoration: none;
        }

        .btn-secondary:hover {
            border-color: var(--accent);
            color: var(--accent);
        }

        /* Hero Right — Camera Illustration */
        .hero-visual {
            display: flex;
            justify-content: center;
            align-items: center;
            position: relative;
        }

        .camera-card {
            width: 100%;
            max-width: 460px;
            aspect-ratio: 4/3;
            background: var(--bg-card);
            border-radius: var(--radius);
            border: 1px solid var(--border);
            position: relative;
            overflow: hidden;
            display: flex;
            align-items: center;
            justify-content: center;
        }

        .camera-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent), var(--red));
        }

        .camera-card .rec {
            position: absolute;
            top: 16px;
            left: 16px;
            display: flex;
            align-items: center;
            gap: 8px;
            font-size: 12px;
            font-weight: 700;
            color: var(--red);
            letter-spacing: 2px;
        }

        .camera-card .rec::before {
            content: '';
            width: 8px;
            height: 8px;
            border-radius: 50%;
            background: var(--red);
            animation: blink 1.5s infinite;
        }

        .camera-card .timestamp {
            position: absolute;
            bottom: 16px;
            right: 16px;
            font-size: 12px;
            color: var(--text-muted);
            font-variant-numeric: tabular-nums;
            font-family: monospace;
        }

        .camera-svg {
            width: 160px;
            height: 160px;
            opacity: 0.15;
        }

        .cam-grid {
            position: absolute;
            inset: 0;
            display: grid;
            grid-template-columns: 1fr 1fr;
            grid-template-rows: 1fr 1fr;
            gap: 2px;
            padding: 2px;
        }

        .cam-cell {
            background: rgba(0,212,255,0.03);
            border: 1px solid rgba(0,212,255,0.06);
            border-radius: 4px;
            position: relative;
        }

        .cam-cell::after {
            content: 'CAM 0' attr(data-n);
            position: absolute;
            bottom: 6px;
            left: 8px;
            font-size: 9px;
            color: var(--text-muted);
            letter-spacing: 1px;
            font-family: monospace;
        }

        .stats-row {
            position: absolute;
            bottom: -60px;
            left: 0;
            right: 0;
            display: flex;
            justify-content: center;
            gap: 40px;
        }

        .stat { text-align: center; }
        .stat-num {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 36px;
            color: var(--accent);
            line-height: 1;
        }
        .stat-label {
            font-size: 12px;
            color: var(--text-muted);
            margin-top: 4px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        /* ====== SECTION BASE ====== */
        section {
            padding: 100px 40px;
            max-width: 1280px;
            margin: 0 auto;
        }

        .section-label {
            font-size: 12px;
            font-weight: 700;
            color: var(--accent);
            letter-spacing: 3px;
            text-transform: uppercase;
            margin-bottom: 12px;
        }

        .section-title {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(36px, 4vw, 56px);
            letter-spacing: 2px;
            line-height: 1;
            margin-bottom: 20px;
        }

        .section-desc {
            color: var(--text-secondary);
            font-size: 16px;
            max-width: 560px;
            line-height: 1.7;
            margin-bottom: 60px;
        }

        /* ====== SERVICES ====== */
        .services-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
            gap: 20px;
        }

        .service-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 36px 28px;
            transition: all 0.4s;
            position: relative;
            overflow: hidden;
        }

        .service-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 4px;
            height: 0;
            background: var(--accent);
            transition: height 0.4s;
        }

        .service-card:hover::before { height: 100%; }
        .service-card:hover {
            border-color: rgba(0, 212, 255, 0.15);
            transform: translateY(-4px);
        }

        .service-icon {
            width: 48px;
            height: 48px;
            background: var(--accent-glow);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-bottom: 20px;
            font-size: 22px;
        }

        .service-card h3 {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 10px;
        }

        .service-card p {
            color: var(--text-secondary);
            font-size: 14px;
            line-height: 1.7;
        }

        /* ====== WHY US ====== */
        .why-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
            gap: 20px;
        }

        .why-item {
            padding: 32px 24px;
            background: var(--bg-secondary);
            border-radius: var(--radius);
            border: 1px solid var(--border);
            text-align: center;
            transition: all 0.3s;
        }

        .why-item:hover {
            border-color: rgba(0,212,255,0.1);
        }

        .why-number {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 48px;
            color: var(--accent);
            line-height: 1;
            margin-bottom: 8px;
        }

        .why-item h4 {
            font-size: 15px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .why-item p {
            font-size: 13px;
            color: var(--text-secondary);
            line-height: 1.6;
        }

        /* ====== PRICING ====== */
        .pricing-grid {
            display: grid;
            grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
            gap: 24px;
        }

        .price-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 40px 32px;
            position: relative;
            transition: all 0.4s;
        }

        .price-card.featured {
            border-color: var(--accent);
            box-shadow: 0 0 40px rgba(0,212,255,0.1);
        }

        .price-card.featured::before {
            content: 'Популярный';
            position: absolute;
            top: -12px;
            left: 32px;
            background: var(--accent);
            color: var(--bg-primary);
            font-size: 11px;
            font-weight: 700;
            padding: 4px 14px;
            border-radius: 20px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .price-card:hover { transform: translateY(-4px); }

        .price-card h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 8px;
        }

        .price-card .price {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 42px;
            color: var(--accent);
            line-height: 1;
            margin-bottom: 4px;
        }

        .price-card .price-note {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 24px;
        }

        .price-card ul {
            list-style: none;
            margin-bottom: 32px;
        }

        .price-card ul li {
            padding: 8px 0;
            font-size: 14px;
            color: var(--text-secondary);
            display: flex;
            align-items: center;
            gap: 10px;
            border-bottom: 1px solid var(--border);
        }

        .price-card ul li::before {
            content: '✓';
            color: var(--accent);
            font-weight: 700;
            font-size: 14px;
        }

        .product-img {
            width: 100%;
            height: 200px;
            display: flex;
            align-items: center;
            justify-content: center;
            background: rgba(0,212,255,0.03);
            border-radius: 12px;
            margin-bottom: 20px;
            overflow: hidden;
        }

        .product-img img {
            max-width: 180px;
            max-height: 180px;
            object-fit: contain;
            transition: transform 0.4s;
        }

        .price-card:hover .product-img img {
            transform: scale(1.08);
        }

        .category-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 36px 28px;
            text-decoration: none;
            color: var(--text-primary);
            transition: all 0.4s;
            display: flex;
            flex-direction: column;
            position: relative;
            overflow: hidden;
        }

        .category-card::before {
            content: '';
            position: absolute;
            bottom: 0;
            left: 0;
            right: 0;
            height: 3px;
            background: linear-gradient(90deg, var(--accent), var(--accent-dark));
            transform: scaleX(0);
            transition: transform 0.4s;
        }

        .category-card:hover::before { transform: scaleX(1); }

        .category-card:hover {
            border-color: rgba(0, 212, 255, 0.2);
            transform: translateY(-6px);
            box-shadow: 0 12px 40px rgba(0, 212, 255, 0.08);
        }

        .category-card h3 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 6px;
        }

        .category-price {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 32px;
            color: var(--accent);
            line-height: 1;
            margin-bottom: 12px;
            letter-spacing: 1px;
        }

        .category-card p {
            color: var(--text-secondary);
            font-size: 14px;
            line-height: 1.7;
            flex-grow: 1;
        }

        .card-link {
            display: inline-block;
            margin-top: 20px;
            color: var(--accent);
            font-size: 14px;
            font-weight: 600;
            letter-spacing: 0.5px;
            transition: gap 0.3s;
        }

        .category-card:hover .card-link {
            letter-spacing: 1px;
        }

        /* ====== CTA / FORM ====== */
        .cta-section {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 24px;
            padding: 80px 60px;
            max-width: 800px;
            margin: 0 auto;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-section::before {
            content: '';
            position: absolute;
            inset: -2px;
            border-radius: 26px;
            background: linear-gradient(135deg, var(--accent), transparent 40%, transparent 60%, var(--red));
            z-index: -1;
            opacity: 0.3;
        }

        .cta-section h2 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(32px, 4vw, 48px);
            letter-spacing: 2px;
            margin-bottom: 12px;
        }

        .cta-section > p {
            color: var(--text-secondary);
            margin-bottom: 40px;
            font-size: 16px;
        }

        .form-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-bottom: 16px;
            text-align: left;
        }

        .form-grid .full { grid-column: 1 / -1; }

        .form-field label {
            display: block;
            font-size: 12px;
            font-weight: 600;
            color: var(--text-muted);
            margin-bottom: 6px;
            letter-spacing: 1px;
            text-transform: uppercase;
        }

        .form-field input,
        .form-field textarea,
        .form-field select {
            width: 100%;
            padding: 14px 18px;
            background: var(--bg-primary);
            border: 1px solid var(--border);
            border-radius: 12px;
            color: var(--text-primary);
            font-family: 'Manrope', sans-serif;
            font-size: 15px;
            transition: border-color 0.3s;
            outline: none;
        }

        .form-field input:focus,
        .form-field textarea:focus,
        .form-field select:focus {
            border-color: var(--accent);
        }

        .form-field textarea { resize: vertical; min-height: 80px; }

        .form-field select option {
            background: var(--bg-primary);
            color: var(--text-primary);
        }

        .form-submit {
            margin-top: 8px;
        }

        .form-submit .btn-primary { width: 100%; justify-content: center; font-size: 16px; padding: 18px; }

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

        .form-success {
            display: none;
            text-align: center;
            padding: 40px 20px;
        }

        .form-success .check-icon {
            width: 64px;
            height: 64px;
            background: var(--accent-glow);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 20px;
            font-size: 28px;
            color: var(--accent);
        }

        .form-success h3 {
            font-size: 22px;
            margin-bottom: 8px;
        }

        .form-success p {
            color: var(--text-secondary);
            font-size: 14px;
        }

        /* ====== FOOTER ====== */
        footer {
            border-top: 1px solid var(--border);
            padding: 60px 40px 40px;
            margin-top: 60px;
        }

        .footer-inner {
            max-width: 1280px;
            margin: 0 auto;
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 40px;
        }

        .footer-brand .logo { margin-bottom: 16px; }

        .footer-brand p {
            font-size: 14px;
            color: var(--text-secondary);
            line-height: 1.7;
            max-width: 300px;
        }

        .footer-col h4 {
            font-size: 13px;
            font-weight: 700;
            color: var(--text-muted);
            letter-spacing: 2px;
            text-transform: uppercase;
            margin-bottom: 16px;
        }

        .footer-col a {
            display: block;
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 14px;
            padding: 4px 0;
            transition: color 0.3s;
        }

        .footer-col a:hover { color: var(--accent); }

        .footer-bottom {
            max-width: 1280px;
            margin: 40px auto 0;
            padding-top: 24px;
            border-top: 1px solid var(--border);
            display: flex;
            justify-content: space-between;
            align-items: center;
            font-size: 13px;
            color: var(--text-muted);
        }

        /* ====== SEO TEXT ====== */
        .seo-section {
            max-width: 1280px;
            margin: 0 auto;
            padding: 60px 40px 20px;
        }

        .seo-text {
            border-top: 1px solid var(--border);
            padding-top: 40px;
        }

        .seo-title {
            font-size: 18px;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--text-secondary);
        }

        .seo-text p {
            font-size: 14px;
            color: var(--text-muted);
            line-height: 1.8;
            margin-bottom: 12px;
        }

        .seo-text a {
            color: var(--accent);
            text-decoration: none;
        }

        .seo-text a:hover {
            text-decoration: underline;
        }

        /* ====== SCROLL ANIMATIONS ====== */
        .reveal {
            opacity: 0;
            transform: translateY(30px);
            transition: opacity 0.7s, transform 0.7s;
        }

        .reveal.visible {
            opacity: 1;
            transform: translateY(0);
        }

        /* ====== FLOATING CTA ====== */
        .floating-cta {
            position: fixed;
            bottom: 24px;
            right: 24px;
            z-index: 999;
            display: flex;
            flex-direction: column;
            gap: 12px;
        }

        .fab {
            width: 56px;
            height: 56px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            text-decoration: none;
            font-size: 24px;
            box-shadow: 0 4px 20px rgba(0,0,0,0.3);
            transition: transform 0.3s, box-shadow 0.3s;
        }

        .fab:hover {
            transform: scale(1.1);
            box-shadow: 0 6px 30px rgba(0,0,0,0.4);
        }

        .fab-tg {
            background: #2AABEE;
            color: #fff;
        }

        .fab-phone {
            background: var(--accent);
            color: var(--bg-primary);
        }

        /* ====== MOBILE ====== */
        @media (max-width: 900px) {
            header { padding: 0 20px; }
            nav { display: none; }
            .burger { display: flex; }

            .mobile-nav {
                display: none;
                position: fixed;
                inset: 0;
                background: rgba(10,14,23,0.97);
                backdrop-filter: blur(20px);
                z-index: 999;
                flex-direction: column;
                align-items: center;
                justify-content: center;
                gap: 24px;
            }

            .mobile-nav.open { display: flex; }

            .mobile-nav a {
                color: var(--text-primary);
                text-decoration: none;
                font-size: 24px;
                font-family: 'Bebas Neue', sans-serif;
                letter-spacing: 3px;
            }

            .mobile-nav .close-btn {
                position: absolute;
                top: 20px;
                right: 20px;
                background: none;
                border: none;
                color: var(--text-primary);
                font-size: 32px;
                cursor: pointer;
            }

            .hero { padding: 100px 20px 60px; }
            .hero-content { grid-template-columns: 1fr; gap: 40px; }
            .hero-visual { order: -1; }
            .camera-card { max-width: 360px; }
            .stats-row { position: relative; bottom: auto; margin-top: 20px; gap: 24px; }

            section { padding: 60px 20px; }

            .footer-inner { grid-template-columns: 1fr 1fr; }
            .footer-bottom { flex-direction: column; gap: 8px; text-align: center; }

            .cta-section { padding: 48px 24px; }
            .form-grid { grid-template-columns: 1fr; }
        }

        @media (max-width: 480px) {
            .footer-inner { grid-template-columns: 1fr; }
            .pricing-grid { grid-template-columns: 1fr; }
        }

        /* Schema.org hidden data */
        .sr-only {
            position: absolute;
            width: 1px;
            height: 1px;
            overflow: hidden;
            clip: rect(0,0,0,0);
        }

        /* ====== PAGE HERO (subpages) ====== */
        .page-hero {
            min-height: 60vh;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
            padding: 120px 40px 60px;
            text-align: center;
            overflow: hidden;
        }

        .page-hero-content {
            position: relative;
            z-index: 2;
            max-width: 720px;
        }

        .breadcrumbs {
            font-size: 13px;
            color: var(--text-muted);
            margin-bottom: 24px;
        }

        .breadcrumbs a {
            color: var(--text-secondary);
            text-decoration: none;
        }

        .breadcrumbs a:hover { color: var(--accent); }
        .breadcrumbs span { color: var(--accent); }

        .page-icon {
            font-size: 56px;
            margin-bottom: 16px;
        }

        .page-hero h1 {
            font-family: 'Bebas Neue', sans-serif;
            font-size: clamp(36px, 5vw, 64px);
            letter-spacing: 2px;
            line-height: 1;
            margin-bottom: 20px;
            color: var(--accent);
        }

        .page-hero p {
            font-size: 17px;
            color: var(--text-secondary);
            line-height: 1.7;
            margin-bottom: 32px;
        }

        .page-hero .hero-buttons {
            justify-content: center;
        }

        /* ====== OBJECT NAVIGATION ====== */
        .obj-nav-section {
            padding: 0 40px;
            max-width: 1280px;
            margin: -20px auto 0;
        }

        .obj-nav-wrapper {
            overflow-x: auto;
            -webkit-overflow-scrolling: touch;
            scrollbar-width: none;
        }

        .obj-nav-wrapper::-webkit-scrollbar { display: none; }

        .obj-nav {
            display: flex;
            gap: 8px;
            padding: 16px 0;
            min-width: max-content;
        }

        .obj-link {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 10px 18px;
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: 40px;
            color: var(--text-secondary);
            text-decoration: none;
            font-size: 13px;
            font-weight: 600;
            white-space: nowrap;
            transition: all 0.3s;
        }

        .obj-link:hover {
            border-color: var(--accent);
            color: var(--accent);
        }

        .obj-link.active {
            background: var(--accent);
            color: var(--bg-primary);
            border-color: var(--accent);
        }

        /* ====== PAGE SECTIONS ====== */
        .page-section {
            padding: 60px 40px;
            max-width: 1280px;
            margin: 0 auto;
        }

        /* ====== BENEFITS GRID ====== */
        .benefits-grid {
            display: grid;
            grid-template-columns: 1.5fr 1fr;
            gap: 40px;
            align-items: start;
        }

        .benefits-list ul {
            list-style: none;
        }

        .benefits-list ul li {
            padding: 14px 0;
            font-size: 15px;
            color: var(--text-secondary);
            border-bottom: 1px solid var(--border);
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .benefits-list ul li::before {
            content: '✓';
            color: var(--accent);
            font-weight: 700;
            font-size: 16px;
            flex-shrink: 0;
        }

        .mini-card {
            background: var(--bg-card);
            border: 1px solid var(--border);
            border-radius: var(--radius);
            padding: 32px 24px;
            text-align: center;
        }

        .mini-card-label {
            font-size: 13px;
            color: var(--text-muted);
            text-transform: uppercase;
            letter-spacing: 1px;
            margin-bottom: 8px;
        }

        .mini-card-price {
            font-family: 'Bebas Neue', sans-serif;
            font-size: 42px;
            color: var(--accent);
            line-height: 1;
            margin-bottom: 4px;
        }

        .mini-card-note {
            font-size: 13px;
            color: var(--text-secondary);
        }

        /* ====== SEO BLOCK ====== */
        .seo-block {
            border-top: 1px solid var(--border);
            padding-top: 40px;
        }

        .seo-block h2 {
            font-size: 20px;
            font-weight: 700;
            margin-bottom: 16px;
            color: var(--text-secondary);
        }

        .seo-block p {
            font-size: 15px;
            color: var(--text-muted);
            line-height: 1.8;
            margin-bottom: 14px;
        }

        .seo-block a {
            color: var(--accent);
            text-decoration: none;
        }

        .seo-block a:hover { text-decoration: underline; }

        /* ====== MOBILE SUBPAGES ====== */
        @media (max-width: 900px) {
            .page-hero { padding: 100px 20px 40px; }
            .page-section { padding: 40px 20px; }
            .obj-nav-section { padding: 0 20px; }
            .benefits-grid { grid-template-columns: 1fr; }
        }
