/* ---------------------------------------------------------
   GLOBAL
--------------------------------------------------------- */
body.vs-body {
    margin: 0;
    padding: 0;
    font-family: 'Inter', sans-serif;
    background: #0a0f1c;
    color: #f9fafb;
}

/* Utility */
.vs-main {
    min-height: 60vh;
}

img {
    max-width: 100%;
    display: block;
}

/* ---------------------------------------------------------
   NAVIGATION
--------------------------------------------------------- */
.vs-nav {
    background: #0d1324;
    border-bottom: 2px solid #f5d87a;
    padding: 12px 0;
    position: sticky;
    top: 0;
    z-index: 999;
}

.vs-nav-inner {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 30px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.vs-nav-logo img {
    height: 55px;
}

.vs-nav-right {
    display: flex;
    gap: 25px;
    align-items: center;
}

.vs-nav-link {
    color: #e5e7eb;
    text-decoration: none;
    font-weight: 600;
    transition: 0.2s;
}

.vs-nav-link:hover {
    color: #f5d87a;
}

.vs-nav-cta {
    background: #f5d87a;
    color: #111827 !important;
    padding: 8px 18px;
    border-radius: 999px;
    font-weight: 700;
}

/* ---------------------------------------------------------
   HERO HEADER
--------------------------------------------------------- */
.vs-hero {
    position: relative;
    background: #0a0f1c;
    padding: 80px 40px;
    overflow: hidden;
}

.vs-hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at top left, rgba(245,216,122,0.18), transparent),
                radial-gradient(circle at bottom right, rgba(0,153,255,0.18), transparent);
}

.vs-hero-inner {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    gap: 40px;
    align-items: center;
}

.vs-hero-left {
    flex: 1;
}

.vs-hero-right {
    flex: 1;
    text-align: right;
}

.vs-logo img {
    max-width: 240px;
    margin-bottom: 20px;
}

.vs-hero-title {
    font-size: 2.8rem;
    font-weight: 700;
    margin-bottom: 10px;
}

.vs-hero-tagline {
    font-size: 1.25rem;
    color: #f5d87a;
    margin-bottom: 25px;
}

/* ---------------------------------------------------------
   BUTTONS
--------------------------------------------------------- */
.vs-btn {
    display: inline-block;
    padding: 10px 22px;
    border-radius: 999px;
    font-weight: 600;
    text-decoration: none;
    border: 1px solid transparent;
    transition: 0.2s;
    cursor: pointer;
}

.vs-btn-primary {
    background: #f5d87a;
    color: #111827;
    border-color: #f5d87a;
}

.vs-btn-primary:hover {
    background: #f1c94a;
}

.vs-btn-outline {
    background: transparent;
    color: #f5d87a;
    border-color: #f5d87a;
}

.vs-btn-outline:hover {
    background: rgba(245,216,122,0.1);
}

.vs-btn-dark {
    background: #050b18;
    color: #f5d87a;
    border-color: #f5d87a;
}

/* ---------------------------------------------------------
   SECTIONS
--------------------------------------------------------- */
.vs-section {
    padding: 60px 40px;
}

.vs-section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.vs-section-dark {
    background: #0a0f1c;
    color: #fff;
}

.vs-section-light {
    background: #f5f7fb;
    color: #111827;
}

.vs-section-gold {
    background: #111827;
    color: #f5d87a;
}

.vs-section-header h2 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.vs-section-header p {
    margin-bottom: 30px;
    color: #9ca3af;
}

/* ---------------------------------------------------------
   GRID SYSTEM
--------------------------------------------------------- */
.vs-grid {
    display: grid;
    gap: 30px;
}

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

.vs-grid-3 {
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

/* ---------------------------------------------------------
   CARDS & LISTS
--------------------------------------------------------- */
.vs-card {
    background: #050b18;
    color: #f5d87a;
    padding: 20px;
    border-radius: 8px;
    border: 1px solid rgba(245,216,122,0.3);
}

.vs-section-light .vs-card {
    background: #fff;
    color: #111827;
    border-color: #e5e7eb;
}

.vs-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.vs-list li {
    margin-bottom: 18px;
}

/* ---------------------------------------------------------
   FORMS
--------------------------------------------------------- */
.vs-form-group {
    margin-bottom: 15px;
}

.vs-form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.vs-form-group input,
.vs-form-group textarea {
    width: 100%;
    padding: 8px 10px;
    border-radius: 4px;
    border: 1px solid #4b5563;
    background: #020617;
    color: #f9fafb;
}

/* ---------------------------------------------------------
   FOOTER
--------------------------------------------------------- */
.vs-footer {
    background: #0d1324;
    border-top: 2px solid #f5d87a;
    padding: 20px 0;
    text-align: center;
}

.vs-footer-inner {
    color: #e5e7eb;
    font-size: 0.9rem;
}
/* ---------------------------------------------------------
   MOBILE PACK — RESPONSIVE BREAKPOINTS
--------------------------------------------------------- */

/* Tablet & small desktop */
@media (max-width: 1024px) {

    .vs-nav-inner {
        padding: 0 20px;
    }

    .vs-hero-inner {
        flex-direction: column;
        text-align: center;
    }

    .vs-hero-right {
        text-align: center;
    }

    .vs-grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

/* Large phones */
@media (max-width: 768px) {

    /* NAVIGATION collapses */
    .vs-nav-right {
        display: none; /* Hide full nav */
    }

    .vs-nav {
        padding: 10px 0;
    }

    .vs-nav-logo img {
        height: 48px;
    }

    /* HERO */
    .vs-hero {
        padding: 50px 20px;
    }

    .vs-hero-title {
        font-size: 2.2rem;
    }

    .vs-hero-tagline {
        font-size: 1.1rem;
    }

    /* SECTIONS */
    .vs-section {
        padding: 40px 20px;
    }

    .vs-grid-2 {
        grid-template-columns: 1fr;
    }

    .vs-grid-3 {
        grid-template-columns: 1fr;
    }

    .vs-section-image img {
        margin-top: 20px;
    }

    /* BUTTONS */
    .vs-btn {
        width: 100%;
        text-align: center;
        margin-bottom: 10px;
    }

    /* FORM */
    .vs-form-group input,
    .vs-form-group textarea {
        font-size: 1rem;
    }
}

/* Small phones */
@media (max-width: 480px) {

    .vs-hero-title {
        font-size: 1.9rem;
    }

    .vs-hero-tagline {
        font-size: 1rem;
    }

    .vs-nav-logo img {
        height: 42px;
    }

    .vs-card {
        padding: 15px;
    }

    .vs-section-header h2 {
        font-size: 1.6rem;
    }

    .vs-section-header p {
        font-size: 0.9rem;
    }

    .vs-footer-inner {
        font-size: 0.8rem;
    }
}
