        /* ---------- Hero section ---------- */
        .hero {
            flex: 1;
            display: flex;
            flex-direction: column;
            justify-content: center;
        }
        .hero-inner {
            padding: 70px 0 130px;
        }
        .hero-subtitle {
            font-size: 16px;
            letter-spacing: 2px;
        }
        .hero-title {
            font-size: 64px;
            line-height: 1.1;
            font-weight: 800;
            margin: 10px 0 24px;
        }
        .hero-btn {
            background: #ffc000;
            color: #000;
            text-transform: uppercase;
            font-size: 14px;
            font-weight: 700;
            padding: 14px 32px;
            border: none;
            display: inline-block;
        }

        /* ---------- Features strip ---------- */
        .features-strip {
            width: 100%;
            position: relative;
            bottom: 0;
        }
        .features-row {
            background: rgba(0,0,0,0.7);
            display: flex;
            flex-wrap: wrap;
        }
        .feature-item {
            flex: 1 1 33.3333%;
            min-width: 260px;
            padding: 22px 32px 26px;
            display: flex;
            align-items: center;
            border-right: 1px solid rgba(255,255,255,0.05);
        }
        .feature-item:last-child {
            border-right: none;
        }
        .feature-icon-wrap {
            width: 60px;
            height: 60px;
            border: 2px solid #ffc000;
            display: flex;
            align-items: center;
            justify-content: center;
            margin-right: 18px;
        }
        .feature-icon {
            width: 30px;
            height: 30px;
            border: 2px solid #ffc000;
        }
        .feature-content {
            flex: 1;
        }
        .feature-title {
            font-weight: 700;
            font-size: 14px;
            letter-spacing: 0.5px;
            margin-bottom: 6px;
        }
        .feature-link {
            font-size: 12px;
            color: #ffc000;
        }

        .scroll-down {
            text-align: center;
            padding: 14px 0 20px;
            font-size: 18px;
        }

        /* ---------- Responsive ---------- */

        /* Desktop ≥1200px already covered by base styles */

        /* Tablet 768–1199px */
        @media (min-width: 768px) and (max-width: 1199px) {
            .main-header .container {
                height: 70px;
            }
            .hero-inner {
                padding-top: 80px;
                padding-bottom: 120px;
            }
            .hero-title {
                font-size: 52px;
            }
            .feature-item {
                padding: 20px 24px 22px;
            }
        }

        /* Mobile ≤767px */
        @media (max-width: 767px) {
            .top-bar .container {
                justify-content: flex-end;
                gap: 16px;
            }
            .top-left {
                display: none;
            }
            .top-right {
                gap: 14px;
                font-size: 12px;
            }

            .main-header .container {
                height: 64px;
            }
            .main-nav,
            .nav-right {
                display: none;
            }
            .header-icons-mobile {
                display: flex;
                align-items: center;
                gap: 16px;
            }
            .header-icons-mobile .icon-btn {
                width: 18px;
                height: 18px;
            }

            .hero-inner {
                padding-top: 70px;
                padding-bottom: 110px;
            }
            .hero-subtitle {
                font-size: 14px;
            }
            .hero-title {
                font-size: 32px;
            }
            .hero-btn {
                padding: 12px 26px;
                font-size: 13px;
            }

            .features-row {
                flex-direction: column;
            }
            .feature-item {
                border-right: none;
                border-bottom: 1px solid rgba(255,255,255,0.08);
                padding: 18px 20px 20px;
            }
            .feature-item:last-child {
                border-bottom: none;
            }
            .scroll-down {
                padding-bottom: 16px;
            }
        }