        *,
        *::before,
        *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        html {
            scroll-behavior: smooth;
        }

        body {
            font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
            background: #121212;
            color: #f0f0f0;
            line-height: 1.6;
            padding-top: 80px;
        }

        a {
            color: #38dcc8;
            text-decoration: none;
        }

        a:hover {
            color: #5ff0dd;
        }

        img {
            max-width: 100%;
            height: 20px;
            display: block;
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 16px;
        }

        /* ============================================
           HEADER
           ============================================ */
        .header {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 9999;
            background: #282828;
            padding: 12px 16px;
            box-shadow: 0 2px 8px rgba(0, 0, 0, 0.6);
        }

        .header-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            max-width: 1200px;
            margin: 0 auto;
            flex-wrap: wrap;
        }

        .logo-block {
            display: flex;
            align-items: center;
            gap: 8px;
        }

        .logo-icon {
            width: 23px;
            height: 20px;
        }

        .logo-text {
            font-size: 22px;
            font-weight: 700;
            letter-spacing: 0.05em;
            color: #fff;
            line-height: 1;
        }

        .logo-text small {
            display: block;
            font-size: 11px;
            font-weight: 400;
            letter-spacing: 0.02em;
            color: #ccc;
            margin-top: 2px;
        }


        .burger {
            display: flex;
            flex-direction: column;
            gap: 5px;
            cursor: pointer;
            background: none;
            border: none;
            padding: 6px 4px;
        }

        .burger span {
            display: block;
            width: 28px;
            height: 3px;
            background: #fff;
            border-radius: 2px;
            transition: 0.3s;
        }

        .burger.active span:nth-child(1) {
            transform: rotate(45deg) translate(5px, 6px);
        }
        .burger.active span:nth-child(2) {
            opacity: 0;
        }
        .burger.active span:nth-child(3) {
            transform: rotate(-45deg) translate(5px, -6px);
        }


        .nav {
            display: none;
            width: 100%;
            flex-direction: column;
            background: #282828;
            padding: 12px 0 6px;
            margin-top: 10px;
            border-top: 1px solid #444;
        }

        .nav.open {
            display: flex;
        }

        .nav-list {
            list-style: none;
            display: flex;
            flex-direction: column;
            gap: 4px;
        }

        .nav-list li a {
            display: block;
            padding: 10px 12px;
            color: #fff;
            font-size: 15px;
            font-weight: 500;
            border-radius: 6px;
            transition: 0.2s;
        }

        .nav-list li a:hover,
        .nav-list li a.active {
            background: #38dcc8;
            color: #121212;
        }


        .cards-grid {
            display: grid;
            grid-template-columns: 1fr;
            gap: 24px;
            margin: 30px 0 40px;
        }

        .card {
            background: #1e1e1e;
            border-radius: 12px;
            overflow: hidden;
            border: 1px solid #2a2a2a;
            transition: 0.25s;
        }

        .card:hover {
            border-color: #38dcc8;
            transform: translateY(-3px);
            box-shadow: 0 6px 20px rgba(56, 220, 200, 0.08);
        }

        .card-img {
            width: 100%;
            height: 200px;
            object-fit: cover;
            background: #222;
        }

        .card-body {
            padding: 18px 20px 22px;
        }

        .card-title {
            font-size: 20px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 6px;
        }

        .card-divider {
            height: 2px;
            background: #333;
            margin: 8px 0 12px;
        }

        .card-desc {
            font-size: 15px;
            color: #ccc;
            margin-bottom: 16px;
            line-height: 1.5;
        }

        .card-actions {
            display: flex;
            flex-wrap: wrap;
            align-items: center;
            gap: 10px 12px;
        }

        .btn {
            display: inline-block;
            padding: 8px 18px;
            border-radius: 8px;
            font-size: 14px;
            font-weight: 600;
            border: none;
            cursor: pointer;
            transition: 0.2s;
            background: #38dcc8;
            color: #121212;
            text-align: center;
        }

        .btn-dark {
            background: #2a2a2a;
            color: #fff;
        }

        .btn-dark:hover {
            background: #3d3d3d;
        }

        .btn-outline {
            background: transparent;
            border: 1px solid #38dcc8;
            color: #38dcc8;
        }

        .btn-outline:hover {
            background: #38dcc8;
            color: #121212;
        }

        .score-badge {
            font-size: 18px;
            font-weight: 700;
            color: #38dcc8;
            margin-left: auto;
        }

        .score-label {
            font-size: 12px;
            font-weight: 400;
            color: #888;
            display: block;
            text-align: center;
        }


        .section-dark {
            background: #1a1a1a;
            padding: 30px 0;
            border-top: 1px solid #2a2a2a;
            border-bottom: 1px solid #2a2a2a;
        }

        .section-title {
            font-size: 26px;
            font-weight: 700;
            color: #fff;
            margin-bottom: 6px;
        }

        .section-sub {
            font-size: 16px;
            color: #aaa;
            margin-bottom: 20px;
        }

        .hero {
            background: #1a1a1a;
            padding: 30px 0 10px;
        }

        .hero-icon {
            width: 23px;
            height: 20px;
            margin-right: 10px;
            vertical-align: middle;
        }

        .hero h1 {
            font-size: 28px;
            color: #fff;
        }

        .hero p {
            font-size: 16px;
            color: #ccc;
            max-width: 700px;
            margin-top: 8px;
        }

        .footer {
            background: #282828;
            padding: 30px 0 20px;
            border-top: 2px solid #38dcc8;
            margin-top: 30px;
        }

        .footer a {
            color: #38dcc8;
        }

        .footer a:hover {
            color: #fff;
        }

        .footer-links {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 16px 30px;
            margin: 12px 0 16px;
            font-size: 14px;
        }

        .footer-social {
            display: flex;
            justify-content: center;
            gap: 18px;
            margin: 10px 0 14px;
        }

        .footer-social img {
            width: 28px;
            height: 28px;
            filter: brightness(0.8);
            transition: 0.2s;
        }

        .footer-social img:hover {
            filter: brightness(1);
        }

        .footer-copy {
            text-align: center;
            font-size: 13px;
            color: #888;
            margin-top: 10px;
        }

        @media (min-width: 640px) {
            .cards-grid {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (min-width: 900px) {
            .cards-grid {
                grid-template-columns: repeat(3, 1fr);
            }

            .burger {
                display: none;
            }

            .nav {
                display: flex !important;
                width: auto;
                flex-direction: row;
                background: transparent;
                padding: 0;
                margin: 0;
                border: none;
            }

            .nav-list {
                flex-direction: row;
                gap: 6px;
            }

            .nav-list li a {
                padding: 8px 14px;
                font-size: 14px;
                border-radius: 6px;
            }

            .header-inner {
                flex-wrap: nowrap;
            }

            .logo-text {
                font-size: 26px;
            }

            .hero h1 {
                font-size: 36px;
            }
        }

        @media (min-width: 1100px) {
            .cards-grid {
                grid-template-columns: repeat(3, 1fr);
                gap: 28px;
            }
        }

        .text-center {
            text-align: center;
        }
        .mt-10 {
            margin-top: 10px;
        }
        .mb-10 {
            margin-bottom: 10px;
        }
        .w-full {
            width: 100%;
        }
        .flex-center {
            display: flex;
            align-items: center;
            justify-content: center;
        }
        .gap-8 {
            gap: 8px;
        }
        .gap-12 {
            gap: 12px;
        }

        /* кнопка "читать все отзывы" */
        .btn-center {
            display: flex;
            justify-content: center;
            margin: 20px 0 10px;
        }
        .btn-center .btn {
            font-size: 18px;
            padding: 14px 40px;
        }


        .info-cols {
            display: grid;
            grid-template-columns: 1fr;
            gap: 20px;
            margin: 30px 0 10px;
        }

        .info-col {
            background: #1e1e1e;
            padding: 24px 20px;
            border-radius: 12px;
            text-align: center;
            border: 1px solid #2a2a2a;
        }

        .info-col h3 {
            font-size: 22px;
            color: #fff;
            margin-bottom: 4px;
        }

        .info-col p {
            font-size: 15px;
            color: #aaa;
            margin-bottom: 14px;
        }

        @media (min-width: 700px) {
            .info-cols {
                grid-template-columns: repeat(3, 1fr);
            }
        }


        .category-grid {
            display: flex;
            flex-wrap: wrap;
            justify-content: center;
            gap: 8px 14px;
            padding: 16px 0 8px;
        }

        .category-grid a {
            font-size: 14px;
            color: #ccc;
            background: #1e1e1e;
            padding: 4px 14px;
            border-radius: 20px;
            border: 1px solid #2a2a2a;
            transition: 0.2s;
        }

        .category-grid a:hover {
            background: #38dcc8;
            color: #121212;
            border-color: #38dcc8;
        }