    * {
        font-family: 'Plus Jakarta Sans', sans-serif;
    }

    .font-display {
        font-family: 'Playfair Display', serif;
    }

    body {
        background: #020918;
        color: #dce4f0;
        overflow-x: hidden;
    }

    .gradient-text {
        background: linear-gradient(135deg, #f0c040 0%, #faecc2 60%, #f0c040 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
    }

    .gold-line {
        height: 3px;
        width: 56px;
        background: linear-gradient(90deg, #f0c040, #e6a800);
        border-radius: 2px;
        display: block;
    }

    .card-corp {
        background: linear-gradient(160deg, rgba(6, 26, 62, .95), rgba(3, 17, 43, .98));
        border: 1px solid rgba(240, 192, 64, .18);
        border-radius: 12px;
    }

    .btn-gold {
        background: linear-gradient(135deg, #f0c040, #e6a800);
        color: #020918;
        font-weight: 700;
        transition: all .3s ease;
        display: inline-block;
    }

    .btn-gold:hover {
        box-shadow: 0 6px 28px rgba(240, 192, 64, .45);
        transform: translateY(-2px);
    }

    .btn-ghost {
        border: 1.5px solid rgba(240, 192, 64, .55);
        color: #f0c040;
        transition: all .3s ease;
        display: inline-block;
    }

    .btn-ghost:hover {
        background: rgba(240, 192, 64, .08);
    }

    .nav-link {
        position: relative;
        font-weight: 500;
    }

    .nav-link::after {
        content: '';
        position: absolute;
        bottom: -5px;
        left: 0;
        width: 0;
        height: 2px;
        background: #f0c040;
        transition: width .3s ease;
    }

    .nav-link:hover::after,
    .nav-link.active::after {
        width: 100%;
    }

    .icon-box {
        background: linear-gradient(135deg, rgba(240, 192, 64, .14), rgba(240, 192, 64, .06));
        border: 1px solid rgba(240, 192, 64, .22);
        border-radius: 10px;
    }

    .section-divider {
        height: 1px;
        background: linear-gradient(90deg, transparent, rgba(240, 192, 64, .25), transparent);
    }

    .dot-grid {
        background-image: radial-gradient(rgba(240, 192, 64, .07) 1px, transparent 1px);
        background-size: 28px 28px;
    }

    .fade-up {
        opacity: 0;
        transform: translateY(28px);
        transition: opacity .7s ease, transform .7s ease;
    }

    .fade-up.visible {
        opacity: 1;
        transform: translateY(0);
    }

    .menu-open {
        display: flex !important;
    }

    .form-input {
        background: rgba(6, 26, 62, .8);
        border: 1px solid rgba(240, 192, 64, .2);
        color: #dce4f0;
        width: 100%;
        padding: 13px 16px;
        border-radius: 10px;
        font-size: .875rem;
        transition: all .3s ease;
        outline: none;
        font-family: 'Plus Jakarta Sans', sans-serif;
    }

    .form-input:focus {
        border-color: rgba(240, 192, 64, .6);
        box-shadow: 0 0 0 3px rgba(240, 192, 64, .08);
    }

    .form-input::placeholder {
        color: #4b5d6b;
    }

    .form-label {
        display: block;
        color: #9aaabb;
        font-size: .8rem;
        font-weight: 600;
        margin-bottom: 7px;
        text-transform: uppercase;
        letter-spacing: .04em;
    }

    .contact-card {
        background: linear-gradient(135deg, rgba(240, 192, 64, .08), rgba(59, 130, 246, .04));
        border: 1px solid rgba(240, 192, 64, .15);
        border-radius: 12px;
        padding: 18px;
        display: flex;
        align-items: flex-start;
        gap: 14px;
        transition: all .3s ease;
    }

    .contact-card:hover {
        border-color: rgba(240, 192, 64, .38);
        transform: translateX(4px);
    }

    select.form-input option {
        background: #061a3e;
        color: #dce4f0;
    }

    .success-msg {
        display: none;
        background: rgba(5, 150, 105, .15);
        border: 1px solid rgba(5, 150, 105, .4);
        color: #34d399;
        padding: 14px;
        border-radius: 10px;
        text-align: center;
        font-size: .875rem;
    }

    .success-msg.show {
        display: block;
    }

    .faq-item {}

    ::-webkit-scrollbar {
        width: 5px;
    }

    ::-webkit-scrollbar-track {
        background: #020918;
    }

    ::-webkit-scrollbar-thumb {
        background: #f0c040;
        border-radius: 3px;
    }