        * {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        body {
            font-family: Arial, Helvetica, sans-serif;
            background: #0b1320;
            color: #ffffff;
            line-height: 1.5;
        }

        /* ======================
TOP BAR
====================== */

        .topbar {
            background: linear-gradient(90deg, #f5c400, #ffd84d);
            color: #09111c;
            padding: 18px 100px;
            text-align: center;
            font-size: 18px;
            font-weight: 700;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .top-logo {
            font-size: 28px;
            font-weight: 900;
            letter-spacing: 1px;
            color: #ffffff;
        }

        /* ======================
NAVBAR
====================== */

        .navbar {
            background: #07101b;
            padding: 22px 42px;
            display: flex;
            justify-content: space-between;
            align-items: center;
            border-bottom: 1px solid rgba(255, 255, 255, 0.08);
        }

        .logo {
            font-size: 28px;
            font-weight: 900;
            letter-spacing: 1px;
            color: #ffffff;
        }

        .menu a {
            margin-left: 26px;
            color: #d7e2f0;
            font-size: 15px;
            font-weight: 600;
            transition: 0.3s;
        }

        .menu a:hover {
            color: #ffd84d;
        }

        /* ======================
HERO
====================== */

        .hero {
            min-height: 88vh;
            display: grid;
            grid-template-columns: 1fr 560px;
            gap: 60px;
            align-items: start;
            padding: 70px 110px;
            background:
                radial-gradient(circle at top right, rgba(34, 86, 160, 0.25), transparent 35%),
                radial-gradient(circle at bottom left, rgba(255, 212, 77, 0.12), transparent 30%),
                linear-gradient(180deg, #08111d, #0c1626);
        }

        .hero-left {
            margin-top: 120px;
        }

        .hero-left h1 {
            font-size: 58px;
            line-height: 1.05;
            font-weight: 900;
            max-width: 760px;
            margin-bottom: 22px;
        }

        .highlight {
            color: #ffd84d;
        }

        .hero-left p {
            font-size: 21px;
            color: #c7d2df;
            max-width: 720px;
            margin-bottom: 34px;
        }

        .btn-wrap {
            display: flex;
            gap: 16px;
            flex-wrap: wrap;
        }

        .btn-main {
            padding: 18px 30px;
            background: linear-gradient(90deg, #f5c400, #ffd84d);
            color: #07101b;
            font-weight: 900;
            border-radius: 10px;
            font-size: 15px;
            transition: 0.3s;
            box-shadow: 0 10px 25px rgba(245, 196, 0, 0.25);
            text-decoration: none;
        }

        .btn-main:hover {
            transform: translateY(-2px);
        }

        .btn-secondary {
            padding: 16px 20px;
            color: #fff;
            border-radius: 10px;
            font-weight: 700;
            background: linear-gradient(180deg, #08111d, #0c1626);
            text-decoration: none;
        }

        /* ======================
PROMO BOX
====================== */

        .promo-box {
            background: linear-gradient(180deg, #10233f, #0a1524);
            border: 1px solid rgba(255, 255, 255, 0.08);
            border-radius: 22px;
            padding: 30px;
            box-shadow:
                0 20px 50px rgba(0, 0, 0, 0.45),
                0 0 0 1px rgba(255, 212, 77, 0.08);
        }

        .badge {
            display: inline-block;
            padding: 8px 14px;
            background: #ffd84d;
            color: #08111d;
            font-size: 12px;
            font-weight: 900;
            border-radius: 30px;
            margin-bottom: 16px;
        }

        .promo-box h3 {
            font-size: 28px;
            font-weight: 900;
            margin-bottom: 0;
            text-align: center;
        }

        .promo-image {
            width: 100%;
            border-radius: 16px;
            margin-bottom: 18px;
            display: block;
            border: 1px solid rgba(255, 255, 255, 0.08);
        }

        .promo-box ul {
            list-style: none;
            margin-bottom: 22px;
        }

        .promo-box li {
            font-size: 17px;
            color: #d8e1ec;
            margin-bottom: 12px;
        }

        .price {
            font-size: 28px;
            font-weight: 900;
            margin-bottom: 20px;
        }

        .old {
            text-decoration: line-through;
            opacity: 0.5;
            margin-right: 12px;
            font-size: 20px;
        }

        .free {
            color: #ffd84d;
        }

        .promo-btn {
            display: block;
            text-align: center;
            padding: 17px;
            border-radius: 12px;
            background: linear-gradient(90deg, #f5c400, #ffd84d);
            color: #08111d;
            font-weight: 900;
            font-size: 18px;
            text-decoration: none;
        }

        .site-footer {
            background: #08111d;
            border-top: 1px solid rgba(255, 255, 255, 0.08);
            padding: 40px 110px;
            color: #ffffff;
        }

        .footer-inner {
            display: grid;
            grid-template-columns: 1fr 1.5fr 1fr;
            gap: 32px;
            align-items: anchor-center;
        }

        .footer-col h2 {
            font-size: 32px;
            font-weight: 700;
            margin: 0;
            color: #ffffff;
        }

        .footer-contact p,
        .footer-links p {
            margin-bottom: 10px;
            color: #c7d2df;
            font-size: 18px;
        }

        .footer-contact a,
        .footer-links a {
            color: #5d9cff;
            text-decoration: underline;
        }

        .footer-contact a:hover,
        .footer-links a:hover {
            color: #ffd84d;
        }

        .footer-links {
            display: flex;
            flex-direction: column;
            justify-content: center;
        }

        .footer-links p {
            margin-bottom: 6px;
        }

        @media(max-width:980px) {

            .topbar {
                background: linear-gradient(90deg, #f5c400, #ffd84d);
                color: #09111c;
                padding: 18px 50px;
                text-align: center;
                font-size: 18px;
                font-weight: 700;
                display: inline-block;
            }

            .right {
                margin-top: 16px;
            }

            .promo-box h3 {
                font-size: 28px;
            }

            .hero {
                grid-template-columns: 1fr;
                padding: 50px 24px;
                gap: 35px;
            }

            .hero-left {
                margin-top: 0;
            }

            .hero-left h1 {
                font-size: 42px;
            }

            .hero-left p {
                font-size: 18px;
            }

            .navbar {
                padding: 18px 24px;
            }

            .menu {
                display: none;
            }

            .btn-main {
                width: 100%;
                text-align: center;
            }

            .site-footer {
                padding: 32px 24px;
            }

            .footer-inner {
                grid-template-columns: 1fr;
                gap: 24px;
            }

            .footer-contact p,
            .footer-links p {
                font-size: 16px;
            }
        }

        .top-logo {
            font-size: 24px;
            display: inline-block;
            text-align: left;
        }

        @media(max-width:980px) {

            .topbar {
                background: linear-gradient(90deg, #f5c400, #ffd84d);
                color: #09111c;
                padding: 18px 50px;
                text-align: center;
                font-size: 18px;
                font-weight: 700;
                display: inline-block;
            }

            .right {
                margin-top: 16px;
            }

            .promo-box h3 {
                font-size: 28px;
            }

            .hero {
                grid-template-columns: 1fr;
                padding: 50px 24px;
                gap: 35px;
            }

            .hero-left {
                margin-top: 0;
            }

            .hero-left h1 {
                font-size: 42px;
            }

            .hero-left p {
                font-size: 18px;
            }

            .navbar {
                padding: 18px 24px;
            }

            .menu {
                display: none;
            }

            .btn-main {
                width: 100%;
                text-align: center;
            }


        }

        .top-logo {
            font-size: 24px;
            display: inline-block;
            text-align: left;
        }

        .mid {
            font-size: 18px;
            display: inline-block;
            text-align: center;
        }

        .right {

            display: inline-block;
            text-align: right;
        }