       *, *::before, *::after {
            margin: 0;
            padding: 0;
            box-sizing: border-box;
        }

        :root {
            --gold: #F5C518;
            --gold-light: #FFD84D;
            --cream: #F2F7F0;
            --dark: #1B3A1F;
            --warm-green: #2D5A32;
            --red: #E0251A;
            --red-dark: #B01D13;
            --white: #FFFFFF;
            --green: #060606;
            --green-light: #5BA065;
        }

        html {
            scroll-behavior: smooth;
        }

        @font-face {
            font-family: HelveticaNeue;
            src: url(../fonts/HelveticaNeueLTPro-LtCn.otf);
        }

        @font-face {
            font-family: AuxNextBlack;
            src: url(../fonts/fonnts.com-AauxNext_Black_Italic.otf);
        }

        body {
            font-family: 'HelveticaNeue', sans-serif;
            background: var(--dark);
            color: var(--cream);
            overflow-x: hidden;
        }

        /* ─── NAV ADMIN ─── */
        .nav-admin {
            background: var(--dark);
            display: flex;
            justify-content: center;
            gap: 4px;
            padding: 6px 16px;
            overflow-x: auto;
            scrollbar-width: none;
        }
        .nav-admin::-webkit-scrollbar { display: none; }
        .nav-admin button {
            background: rgba(255,255,255,0.08);
            border: 1px solid rgba(255,255,255,0.15);
            border-radius: 20px;
            padding: 4px 12px;
            cursor: pointer;
            transition: background 0.2s;
            white-space: nowrap;
        }
        .nav-admin button:hover { background: rgba(245,197,24,0.2); }
        .nav-admin a {
            color: rgba(255,255,255,0.75);
            text-decoration: none;
            font-size: 16px;
            font-family: 'HelveticaNeue', sans-serif;
            font-weight: 700;
            letter-spacing: 0.05em;
            text-transform: uppercase;
        }

        /* ─── HEADER ─── */
        header {
            position: relative;
            z-index: 100;
        }

        .main-nav {
            background: var(--white);
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 14px 32px;
            border-bottom: 3px solid var(--green);
            box-shadow: 0 2px 16px rgba(58,125,68,0.12);
        }

        .main-nav img {
            height: 60px;
            object-fit: contain;
        }

        /* ─── HERO ─── */
        .hero {
            position: relative;
            min-height: 100vh;
            display: grid;
            grid-template-columns: 1fr 1fr;
            align-items: center;
            overflow: hidden;
            background:
                radial-gradient(ellipse at 20% 80%, rgba(91,160,101,0.18) 0%, transparent 55%),
                radial-gradient(ellipse at 80% 10%, rgba(245,197,24,0.12) 0%, transparent 50%),
                var(--cream);
            background-image: url(../assets/img/background.JPEG);
            background-repeat: no-repeat;
            background-size: cover;
            background-position: center;
        }

        .hero::before {
            content: '';
            position: absolute;
            inset: 0;
            background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%233a7d44' fill-opacity='0.04'%3E%3Ccircle cx='30' cy='30' r='3'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
            pointer-events: none;
        }

        .hero::after {
            content: '';
            position: absolute;
            bottom: -100px;
            left: -100px;
            width: 400px;
            height: 400px;
            border-radius: 50%;
            background: radial-gradient(circle, rgba(245,197,24,0.1) 0%, transparent 70%);
            pointer-events: none;
        }

        .hero-visual {
            position: relative;
            display: flex;
            align-items: center;
            justify-content: center;
            padding: 60px 40px 60px 60px;
            animation: fadeSlideLeft 0.9s ease forwards;
        }

        .hero-visual img {
            width: 60%;
            max-width: 480px;
            object-fit: contain;
            filter: drop-shadow(0 20px 60px rgba(0,0,0,0.15));
        }

        .hero-content {
            padding: 60px 60px 60px 20px;
            animation: fadeSlideRight 0.9s ease 0.15s both;
        }

        .badge {
            display: inline-block;
            background: linear-gradient(135deg, var(--red), var(--red-dark));
            color: var(--white);
            font-size: 14px;
            font-weight: 900;
            font-family: 'AuxNextBlack', sans-serif;
            letter-spacing: 0.12em;
            text-transform: uppercase;
            padding: 7px 18px;
            border-radius: 30px;
            margin-bottom: 22px;
            box-shadow: 0 4px 14px rgba(0, 0, 0, 0.3);
        }

        .hero-title {
            font-family: 'AuxNextBlack', sans-serif;
            font-size: clamp(2.4rem, 4vw, 3.8rem);
            font-weight: 900;
            line-height: 1.1;
            color: var(--cream);
            margin-bottom: 8px;
            text-shadow: 2px 2px 5px rgba(0, 0, 0, 0.3);
        }

        .hero-title span {
            color: var(--red);
            display: block;
            font-style: italic;
        }

        .divider {
            width: 60px;
            height: 4px;
            background: linear-gradient(90deg, var(--cream), var(--cream));
            margin: 22px 0;
            border-radius: 4px;
        }

        .hero-text {
            font-size: 1.08rem;
            font-weight: 400;
            line-height: 1.7;
            color: var(--cream);
            margin-bottom: 36px;
            max-width: 380px;
            font-family: 'HelveticaNeue', sans-serif;
        }

        /* ─── HOW TO SECTION ─── */
        .howto-title {
            font-family: 'HelveticaNeue', sans-serif;
            font-size: 1.30rem;
            font-weight: 800;
            color: var(--cream);
            margin-bottom: 18px;
            display: flex;
            align-items: center;
            gap: 12px;
        }

        .howto-title::after {
            content: '';
            flex: 1;
            height: 2px;
            background: linear-gradient(90deg, rgba(255, 255, 255, 0.8), transparent);
            border-radius: 2px;
        }

        .steps {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-bottom: 34px;
        }

        .step {
            display: flex;
            align-items: flex-start;
            gap: 16px;
            padding: 14px 18px;
            background: var(--white);
            border-radius: 16px;
            border-left: 4px solid var(--green);
            box-shadow: 0 2px 12px rgba(58,125,68,0.08);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
        }

        .step:hover {
            transform: translateX(5px);
            box-shadow: 0 4px 20px rgba(58,125,68,0.18);
        }

        .step-num {
            min-width: 36px;
            height: 36px;
            background: linear-gradient(135deg, var(--green), var(--green-light));
            color: var(--white);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-family: 'AuxNextBlack', sans-serif;
            font-weight: 900;
            font-size: 1.05rem;
            flex-shrink: 0;
            box-shadow: 0 3px 10px rgba(58,125,68,0.3);
        }

        .step p {
            font-size: 1rem;
            line-height: 1.5;
            color: var(--warm-green);
            padding-top: 5px;
            font-family: 'HelveticaNeue', sans-serif;
        }

        /* ─── CTA BUTTON ─── */
        .cta-btn {
            display: inline-flex;
            align-items: center;
            gap: 10px;
            background: linear-gradient(135deg, var(--red), var(--red-dark));
            color: var(--white);
            text-decoration: none;
            font-family: 'AuxNextBlack', sans-serif;
            font-weight: 900;
            font-size: 1.05rem;
            letter-spacing: 0.04em;
            text-transform: uppercase;
            padding: 16px 38px;
            border-radius: 50px;
            box-shadow: 0 8px 28px rgba(0, 0, 0, 0.4), 0 2px 8px rgba(224,37,26,0.2);
            transition: transform 0.2s ease, box-shadow 0.2s ease;
            position: relative;
            overflow: hidden;
        }

        .cta-btn::before {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(135deg, rgba(255,255,255,0.15), transparent);
            opacity: 0;
            transition: opacity 0.2s;
        }

        .cta-btn:hover {
            transform: translateY(-3px);
            box-shadow: 0 14px 36px rgba(224,37,26,0.5), 0 4px 12px rgba(224,37,26,0.25);
        }
        .cta-btn:hover::before { opacity: 1; }

        .cta-btn svg {
            width: 18px;
            height: 18px;
            flex-shrink: 0;
        }

        /* ─── DECORATIVE STRIPE ─── */
        .stripe {
            height: 5px;
            background: linear-gradient(90deg, var(--red), var(--gold), var(--green), var(--gold), var(--red));
            background-size: 200% 100%;
            animation: shimmer 5s linear infinite;
        }

        /* ─── FOOTER ─── */
        footer {
            background: var(--dark);
            padding: 28px 40px;
        }

        .footer-inner {
            max-width: 900px;
            margin: 0 auto;
            display: flex;
            align-items: center;
            justify-content: center;
            gap: 40px;
            flex-wrap: wrap;
        }

        footer a {
            color: rgba(255,255,255,0.5);
            text-decoration: none;
            font-size: 0.90rem;
            letter-spacing: 0.05em;
            font-family: 'HelveticaNeue', sans-serif;
            transition: color 0.2s;
        }

        footer a:hover { color: var(--gold-light); }

        .footer-sep {
            width: 1px;
            height: 14px;
            background: rgba(255,255,255,0.2);
        }

        /* ─── ANIMATIONS ─── */
        @keyframes fadeSlideLeft {
            from { opacity: 0; transform: translateX(-30px); }
            to   { opacity: 1; transform: translateX(0); }
        }
        @keyframes fadeSlideRight {
            from { opacity: 0; transform: translateX(30px); }
            to   { opacity: 1; transform: translateX(0); }
        }
        @keyframes float {
            0%, 100% { transform: translateY(0px); }
            50%       { transform: translateY(-20px); }
        }
        @keyframes shimmer {
            0%   { background-position: 200% 0; }
            100% { background-position: -200% 0; }
        }

        /* ─── RESPONSIVE ─── */
        @media (max-width: 768px) {
            .hero {
                grid-template-columns: 1fr;
                min-height: auto;
            }

            .hero-visual {
                padding: 40px 30px 20px;
                animation-name: fadeSlideRight;
            }

            .hero-visual img {
                max-width: 580px;
            }

            .hero-content {
                padding: 20px 30px 50px;
                animation-name: fadeSlideRight;
                animation-delay: 0.25s;
            }

            .hero-title {
                font-size: 2.2rem;
            }

            .cta-btn {
                width: 100%;
                justify-content: center;
            }

            .footer-inner {
                flex-direction: column;
                gap: 16px;
                text-align: center;
            }

            .footer-sep { display: none; }
        }

        @media (max-width: 480px) {
            .main-nav { padding: 12px 20px; }
            .main-nav img { height: 38px; }
            .hero-visual img { max-width: 220px;}
        }