        :root {
            --gold: #d4af37;
            --gold-light: #e8c547;
            --gold-dark: #b8942e;
            --emerald: #10b981;
            --navy: #0a1628;
            --navy-light: #132337;
            --navy-lighter: #1c3148;
            --slate: #334155;
            --slate-light: #475569;
            --gray: #94a3b8;
            --gray-light: #cbd5e1;
            --white: #f8fafc;
            --cream: #fef9e7;
        }

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

        body {
            font-family: 'Inter', sans-serif;
            background: var(--navy);
            color: var(--white);
            overflow-x: hidden;
        }

        /* Elegant Background Pattern */
        .bg-pattern {
            position: fixed;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            z-index: -1;
            opacity: 0.03;
            background-image: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M50 0L100 50L50 100L0 50L50 0z' fill='%23d4af37' fill-opacity='1'/%3E%3C/svg%3E");
            background-size: 80px 80px;
        }

        /* Header */
        header {
            position: fixed;
            top: 0;
            width: 100%;
            padding: 1.25rem 3rem;
            background: rgba(10, 22, 40, 0.95);
            backdrop-filter: blur(20px);
            border-bottom: 1px solid rgba(212, 175, 55, 0.1);
            z-index: 1000;
        }

        nav {
            max-width: 1400px;
            margin: 0 auto;
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .logo-emblem {
            width: 45px;
            height: 45px;
            border: 2px solid var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            position: relative;
        }

        .logo-emblem::before {
            content: '★';
            color: var(--gold);
            font-size: 1.2rem;
        }

        .logo-text {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            font-weight: 700;
            color: var(--white);
            letter-spacing: 1px;
        }

        .logo-text span {
            color: var(--gold);
        }

        .nav-links {
            display: flex;
            gap: 3rem;
            list-style: none;
        }

        .nav-links a {
            color: var(--gray);
            text-decoration: none;
            font-weight: 500;
            font-size: 0.9rem;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            transition: all 0.3s ease;
            position: relative;
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -8px;
            left: 50%;
            transform: translateX(-50%);
            width: 4px;
            height: 4px;
            background: var(--gold);
            border-radius: 50%;
            opacity: 0;
            transition: opacity 0.3s ease;
        }

        .nav-links a:hover {
            color: var(--gold);
        }

        .nav-links a:hover::after {
            opacity: 1;
        }

        .header-actions {
            display: flex;
            gap: 1rem;
            align-items: center;
        }

        .btn {
            padding: 0.9rem 1.75rem;
            font-weight: 600;
            font-size: 0.85rem;
            letter-spacing: 0.5px;
            text-transform: uppercase;
            cursor: pointer;
            transition: all 0.3s ease;
            text-decoration: none;
        }

        .btn-ghost {
            background: transparent;
            border: none;
            color: var(--gray-light);
        }

        .btn-ghost:hover {
            color: var(--gold);
        }

        .btn-gold {
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
            border: none;
            color: var(--navy);
            border-radius: 4px;
        }

        .btn-gold:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 25px rgba(212, 175, 55, 0.35);
        }

        /* Hero */
        .hero {
            min-height: 100vh;
            display: flex;
            align-items: center;
            padding: 10rem 3rem 5rem;
            max-width: 1400px;
            margin: 0 auto;
            position: relative;
        }

        .hero-content {
            flex: 1;
            max-width: 650px;
        }

        .hero-tag {
            display: inline-flex;
            align-items: center;
            gap: 0.75rem;
            margin-bottom: 2rem;
        }

        .tag-line {
            width: 50px;
            height: 1px;
            background: var(--gold);
        }

        .tag-text {
            color: var(--gold);
            font-size: 0.85rem;
            font-weight: 600;
            letter-spacing: 2px;
            text-transform: uppercase;
        }

        .hero h1 {
            font-family: 'Playfair Display', serif;
            font-size: 4.2rem;
            font-weight: 700;
            line-height: 1.15;
            margin-bottom: 1.75rem;
            color: var(--white);
        }

        .hero h1 em {
            font-style: italic;
            color: var(--gold);
        }

        .hero-description {
            font-size: 1.15rem;
            color: var(--gray);
            line-height: 1.8;
            margin-bottom: 3rem;
            max-width: 520px;
        }

        .hero-cta {
            display: flex;
            gap: 1.5rem;
            align-items: center;
            margin-bottom: 4rem;
        }

        .btn-large {
            padding: 1.1rem 2.5rem;
            font-size: 0.9rem;
        }

        .btn-outline {
            background: transparent;
            border: 1px solid var(--slate-light);
            color: var(--white);
            border-radius: 4px;
        }

        .btn-outline:hover {
            border-color: var(--gold);
            color: var(--gold);
        }

        .hero-stats {
            display: flex;
            gap: 4rem;
        }

        .stat {
            position: relative;
        }

        .stat::after {
            content: '';
            position: absolute;
            right: -2rem;
            top: 50%;
            transform: translateY(-50%);
            width: 1px;
            height: 40px;
            background: var(--slate);
        }

        .stat:last-child::after {
            display: none;
        }

        .stat-value {
            font-family: 'Playfair Display', serif;
            font-size: 2.5rem;
            font-weight: 700;
            color: var(--gold);
            margin-bottom: 0.25rem;
        }

        .stat-label {
            color: var(--gray);
            font-size: 0.85rem;
            text-transform: uppercase;
            letter-spacing: 1px;
        }

        .hero-visual {
            flex: 1;
            display: flex;
            justify-content: flex-end;
        }

        .visual-container {
            position: relative;
            width: 500px;
        }

        .main-card {
            background: linear-gradient(145deg, var(--navy-light) 0%, var(--navy-lighter) 100%);
            border: 1px solid rgba(212, 175, 55, 0.15);
            border-radius: 16px;
            padding: 2.5rem;
            position: relative;
            z-index: 2;
        }

        .card-badge {
            position: absolute;
            top: -12px;
            right: 30px;
            background: linear-gradient(135deg, var(--gold) 0%, var(--gold-dark) 100%);
            color: var(--navy);
            padding: 0.5rem 1.25rem;
            font-size: 0.75rem;
            font-weight: 700;
            letter-spacing: 1px;
            text-transform: uppercase;
            border-radius: 4px;
        }

        .card-header {
            display: flex;
            justify-content: space-between;
            align-items: center;
            margin-bottom: 2rem;
            padding-bottom: 1.5rem;
            border-bottom: 1px solid rgba(212, 175, 55, 0.1);
        }

        .card-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            font-weight: 600;
        }

        .card-icon {
            width: 50px;
            height: 50px;
            background: rgba(212, 175, 55, 0.1);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 12px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.5rem;
        }

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

        .benefit-item {
            display: flex;
            align-items: center;
            gap: 1rem;
            padding: 1rem 0;
            border-bottom: 1px solid rgba(255, 255, 255, 0.05);
        }

        .benefit-item:last-child {
            border-bottom: none;
        }

        .benefit-check {
            width: 24px;
            height: 24px;
            background: rgba(16, 185, 129, 0.15);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--emerald);
            font-size: 0.9rem;
        }

        .benefit-text {
            flex: 1;
            color: var(--gray-light);
            font-size: 0.95rem;
        }

        .benefit-value {
            color: var(--gold);
            font-weight: 600;
            font-size: 0.9rem;
        }

        .floating-card {
            position: absolute;
            background: var(--navy-light);
            border: 1px solid rgba(212, 175, 55, 0.15);
            border-radius: 12px;
            padding: 1.25rem;
            z-index: 3;
            animation: float 4s ease-in-out infinite;
        }

        .float-card-1 {
            top: -30px;
            left: -60px;
            display: flex;
            align-items: center;
            gap: 0.75rem;
        }

        .float-card-2 {
            bottom: 40px;
            right: -40px;
            animation-delay: 2s;
        }

        @keyframes float {
            0%, 100% { transform: translateY(0); }
            50% { transform: translateY(-10px); }
        }

        .float-icon {
            width: 40px;
            height: 40px;
            background: rgba(212, 175, 55, 0.1);
            border-radius: 10px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 1.2rem;
        }

        .float-text {
            font-size: 0.85rem;
        }

        .float-text strong {
            display: block;
            color: var(--white);
        }

        .float-text span {
            color: var(--gray);
            font-size: 0.8rem;
        }

        /* Partners Section */
        .partners {
            padding: 8rem 3rem;
            background: linear-gradient(180deg, var(--navy) 0%, var(--navy-light) 100%);
        }

        .container {
            max-width: 1400px;
            margin: 0 auto;
        }

        .section-header {
            text-align: center;
            margin-bottom: 4rem;
        }

        .section-tag {
            display: inline-flex;
            align-items: center;
            gap: 1rem;
            margin-bottom: 1.5rem;
        }

        .section-title {
            font-family: 'Playfair Display', serif;
            font-size: 3rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .section-title em {
            font-style: italic;
            color: var(--gold);
        }

        .section-desc {
            color: var(--gray);
            font-size: 1.1rem;
            max-width: 550px;
            margin: 0 auto;
        }

        .partners-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 1.5rem;
        }

        .partner-card {
            background: var(--navy-lighter);
            border: 1px solid rgba(255, 255, 255, 0.05);
            border-radius: 12px;
            padding: 2rem;
            text-align: center;
            transition: all 0.4s ease;
            position: relative;
            overflow: hidden;
        }

        .partner-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 3px;
            background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
            transform: scaleX(0);
            transition: transform 0.4s ease;
        }

        .partner-card:hover {
            border-color: rgba(212, 175, 55, 0.3);
            transform: translateY(-8px);
        }

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

        .partner-icon {
            width: 70px;
            height: 70px;
            background: linear-gradient(145deg, var(--navy) 0%, var(--navy-light) 100%);
            border: 1px solid rgba(212, 175, 55, 0.15);
            border-radius: 16px;
            display: flex;
            align-items: center;
            justify-content: center;
            font-size: 2rem;
            margin: 0 auto 1.25rem;
        }

        .partner-name {
            font-family: 'Playfair Display', serif;
            font-size: 1.2rem;
            font-weight: 600;
            margin-bottom: 0.3rem;
        }

        .partner-category {
            color: var(--gray);
            font-size: 0.85rem;
            margin-bottom: 1.25rem;
        }

        .partner-offer {
            display: inline-block;
            padding: 0.5rem 1rem;
            background: rgba(212, 175, 55, 0.1);
            border: 1px solid rgba(212, 175, 55, 0.2);
            color: var(--gold);
            border-radius: 50px;
            font-size: 0.85rem;
            font-weight: 600;
        }

        /* How it Works */
        .how-it-works {
            padding: 8rem 3rem;
            background: var(--navy-light);
        }

        .steps-container {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 3rem;
            margin-top: 4rem;
        }

        .step {
            text-align: center;
            position: relative;
        }

        }

        .step-number {
            width: 80px;
            height: 80px;
            background: linear-gradient(135deg, rgba(212, 175, 55, 0.15) 0%, rgba(212, 175, 55, 0.05) 100%);
            border: 2px solid var(--gold);
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 1.5rem;
            font-family: 'Playfair Display', serif;
            font-size: 2rem;
            font-weight: 700;
            color: var(--gold);
        }

        .step-title {
            font-family: 'Playfair Display', serif;
            font-size: 1.4rem;
            font-weight: 600;
            margin-bottom: 0.75rem;
        }

        .step-desc {
            color: var(--gray);
            font-size: 0.95rem;
            line-height: 1.7;
            max-width: 280px;
            margin: 0 auto;
        }

        /* CTA */
        .cta {
            padding: 8rem 3rem;
            background: var(--navy);
            position: relative;
        }

        .cta-container {
            max-width: 1000px;
            margin: 0 auto;
            background: linear-gradient(135deg, var(--navy-lighter) 0%, var(--navy-light) 100%);
            border: 1px solid rgba(212, 175, 55, 0.2);
            border-radius: 20px;
            padding: 5rem;
            text-align: center;
            position: relative;
            overflow: hidden;
        }

        .cta-container::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            width: 100%;
            height: 100%;
            background: radial-gradient(circle at top right, rgba(212, 175, 55, 0.08) 0%, transparent 50%);
        }

        .cta-content {
            position: relative;
            z-index: 1;
        }

        .cta h2 {
            font-family: 'Playfair Display', serif;
            font-size: 2.8rem;
            font-weight: 700;
            margin-bottom: 1rem;
        }

        .cta h2 em {
            font-style: italic;
            color: var(--gold);
        }

        .cta p {
            color: var(--gray);
            font-size: 1.1rem;
            margin-bottom: 2.5rem;
            max-width: 500px;
            margin-left: auto;
            margin-right: auto;
        }

        /* Footer */
        footer {
            background: var(--navy-light);
            padding: 5rem 3rem 2rem;
            border-top: 1px solid rgba(212, 175, 55, 0.1);
        }

        .footer-content {
            max-width: 1400px;
            margin: 0 auto;
        }

        .footer-top {
            display: grid;
            grid-template-columns: 2fr 1fr 1fr 1fr;
            gap: 4rem;
            margin-bottom: 4rem;
        }

        .footer-brand {
            max-width: 350px;
        }

        .footer-brand .logo {
            margin-bottom: 1.5rem;
        }

        .footer-brand p {
            color: var(--gray);
            font-size: 0.95rem;
            line-height: 1.7;
        }

        .footer-col h4 {
            font-family: 'Playfair Display', serif;
            font-size: 1.1rem;
            font-weight: 600;
            color: var(--white);
            margin-bottom: 1.5rem;
        }

        .footer-col ul {
            list-style: none;
        }

        .footer-col li {
            margin-bottom: 0.75rem;
        }

        .footer-col a {
            color: var(--gray);
            text-decoration: none;
            font-size: 0.9rem;
            transition: all 0.3s ease;
        }

        .footer-col a:hover {
            color: var(--gold);
            padding-left: 5px;
        }

        .footer-bottom {
            padding-top: 2rem;
            border-top: 1px solid rgba(255, 255, 255, 0.05);
            display: flex;
            justify-content: space-between;
            align-items: center;
        }

        .footer-copy {
            color: var(--gray);
            font-size: 0.85rem;
        }

        .footer-legal {
            display: flex;
            gap: 2rem;
        }

        .footer-legal a {
            color: var(--gray);
            text-decoration: none;
            font-size: 0.85rem;
            transition: color 0.3s ease;
        }

        .footer-legal a:hover {
            color: var(--gold);
        }

        /* Responsive */
        @media (max-width: 1200px) {
            .hero {
                flex-direction: column;
                text-align: center;
                padding: 10rem 2rem 5rem;
            }

            .hero-content {
                max-width: 100%;
            }

            .hero-description {
                margin-left: auto;
                margin-right: auto;
            }

            .hero-cta {
                justify-content: center;
            }

            .hero-stats {
                justify-content: center;
            }

            .hero-visual {
                margin-top: 4rem;
                justify-content: center;
            }

            .partners-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .footer-top {
                grid-template-columns: repeat(2, 1fr);
            }
        }

        @media (max-width: 768px) {
            header {
                padding: 1rem 1.5rem;
            }

            .nav-links {
                display: none;
            }

            .hero h1 {
                font-size: 2.8rem;
            }

            .hero-stats {
                flex-direction: column;
                gap: 2rem;
            }

            .stat::after {
                display: none;
            }

            .visual-container {
                width: 100%;
                max-width: 400px;
            }

            .floating-card {
                display: none;
            }

            .section-title {
                font-size: 2.2rem;
            }

            .partners-grid,
            .steps-container {
                grid-template-columns: 1fr;
            }

            }

            .cta-container {
                padding: 3rem 1.5rem;
            }

            .cta h2 {
                font-size: 2rem;
            }

            .footer-top {
                grid-template-columns: 1fr;
                gap: 2rem;
            }

            .footer-bottom {
                flex-direction: column;
                gap: 1rem;
                text-align: center;
            }

            .footer-legal {
                flex-wrap: wrap;
                justify-content: center;
            }
        }
