/* ========================================= */
/* GLOBAL */
/* ========================================= */
:root {
    --vanthos-gold: #FFA500;
    --deep-space-blue: #0A3D62;
    --horizon-light: #00D2FF;
    --jet-black: #000000;
    --white: #FFFFFF;
}

body {
    margin: 0;
    background: #05070a;
    color: #ffffff;
    font-family: "Inter", sans-serif;
}

/* ========================================= */
/* NAVIGATION */
/* ========================================= */
.vs-nav {
    position: fixed;
    top: 0;
    width: 100%;
    height: 70px;
    background: rgba(5, 7, 10, 0.85);
    backdrop-filter: blur(10px);
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 40px;
    z-index: 1000;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.vs-logo-img {
    height: 42px;
    width: auto;
}

.vs-nav-links {
    list-style: none;
    display: flex;
    gap: 30px;
}

.vs-nav-links a {
    color: #ffffff;
    text-decoration: none;
    opacity: 0.8;
    transition: 0.3s;
    font-size: 14px;
}

.vs-nav-links a:hover {
    opacity: 1;
    color: var(--vanthos-gold);
}

/* ========================================= */
/* HERO */
/* ========================================= */
.vs-hero {
    position: relative;
    width: 100%;
    height: 70vh;
    margin-top: 70px;
    margin-bottom: 80px;
    overflow: hidden;
}

.vs-hero-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(60%);
}

.vs-hero-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.4),
        rgba(0, 0, 0, 0.85)
    );
}

.vs-hero-text {
    position: absolute;
    bottom: 60px;
    left: 60px;
    max-width: 700px;
}

.vs-hero-text h1 {
    font-size: 48px;
    margin-bottom: 20px;
}

.vs-accent {
    color: var(--vanthos-gold);
}

.vs-hero-text p {
    font-size: 20px;
    opacity: 0.85;
}

.vs-hero-cta {
    margin-top: 30px;
    display: flex;
    gap: 16px;
}

/* ========================================= */
/* BUTTONS */
/* ========================================= */
.vs-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 10px 22px;
    border-radius: 999px;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    cursor: pointer;
    border: 1px solid transparent;
    transition: 0.25s ease;
}

.vs-btn-primary {
    background: linear-gradient(135deg, var(--vanthos-gold), var(--horizon-light));
    color: #05070a;
    box-shadow: 0 0 18px rgba(0, 210, 255, 0.4);
}

.vs-btn-primary:hover {
    filter: brightness(1.1);
    box-shadow: 0 0 24px rgba(0, 210, 255, 0.6);
}

.vs-btn-outline {
    background: transparent;
    color: var(--white);
    border-color: rgba(255,255,255,0.4);
}

.vs-btn-outline:hover {
    border-color: var(--vanthos-gold);
    color: var(--vanthos-gold);
}

.vs-btn-full {
    width: 100%;
}

/* ========================================= */
/* FULL-WIDTH IMAGE SECTIONS */
/* ========================================= */
.vs-full-section {
    position: relative;
    width: 100%;
    height: 60vh;
    margin-bottom: 80px;
}

.vs-full-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: brightness(60%);
}

.vs-full-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(
        to bottom,
        rgba(0, 0, 0, 0.3),
        rgba(0, 0, 0, 0.85)
    );
}

.vs-full-text {
    position: absolute;
    bottom: 60px;
    left: 60px;
    max-width: 600px;
}

.vs-full-text h2 {
    font-size: 42px;
    margin-bottom: 20px;
}

.vs-full-text p {
    font-size: 18px;
    opacity: 0.85;
}

.vs-section-cta {
    margin-top: 24px;
    display: flex;
    gap: 12px;
}

/* ========================================= */
/* GENERIC SECTIONS */
/* ========================================= */
.vs-section {
    padding: 80px 40px;
}

.vs-section-alt {
    background: radial-gradient(circle at top, rgba(0, 210, 255, 0.08), transparent);
}

.vs-section-inner {
    max-width: 1100px;
    margin: 0 auto;
}

.vs-section h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.vs-section-desc {
    max-width: 640px;
    opacity: 0.8;
    margin-bottom: 40px;
}

/* ========================================= */
/* GRID */
/* ========================================= */
.vs-grid-3 {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 24px;
}

.vs-grid-2 {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 24px;
}

/* ========================================= */
/* CARDS */
/* ========================================= */
.vs-card {
    background: #0a0f14;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid rgba(255,255,255,0.06);
}

.vs-card-alt {
    background: #05070a;
    border-color: rgba(0, 210, 255, 0.25);
}

/* ========================================= */
/* VIDEO PLACEHOLDER */
/* ========================================= */
.vs-video-frame {
    position: relative;
    width: 100%;
    max-width: 800px;
    margin: 0 auto 40px;
    aspect-ratio: 16 / 9;
    border-radius: 16px;
    overflow: hidden;
    background: radial-gradient(circle at 0% 0%, rgba(0, 210, 255, 0.25), #05070a);
    border: 1px solid rgba(255,255,255,0.08);
}

.vs-video-overlay {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
}

.vs-video-btn {
    padding: 12px 26px;
}

/* ========================================= */
/* PRICING */
/* ========================================= */
.vs-pricing-grid {
    align-items: stretch;
}

.vs-pricing-card {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.vs-pricing-card-featured {
    border-color: var(--vanthos-gold);
    box-shadow: 0 0 20px rgba(255, 165, 0, 0.25);
}

.vs-price {
    font-size: 18px;
    font-weight: 600;
    color: var(--vanthos-gold);
}

/* ========================================= */
/* CONTACT */
/* ========================================= */
.vs-contact-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 1fr);
    gap: 40px;
}

.vs-contact-info h2 {
    margin-bottom: 12px;
}

.vs-contact-form h3 {
    margin-bottom: 16px;
}

.vs-form-row {
    display: flex;
    flex-direction: column;
    margin-bottom: 14px;
}

.vs-form-row label {
    font-size: 13px;
    margin-bottom: 4px;
    opacity: 0.8;
}

.vs-form-row input,
.vs-form-row textarea {
    background: #05070a;
    border-radius: 8px;
    border: 1px solid rgba(255,255,255,0.12);
    padding: 8px 10px;
    color: #ffffff;
    font-family: "Inter", sans-serif;
    font-size: 14px;
}

.vs-form-row input::placeholder,
.vs-form-row textarea::placeholder {
    opacity: 0.5;
}

/* ========================================= */
/* FOOTER */
/* ========================================= */
.vs-footer {
    text-align: center;
    padding: 40px 0;
    opacity: 0.6;
    font-size: 14px;
}

/* ========================================= */
/* RESPONSIVE */
/* ========================================= */
@media (max-width: 1024px) {
    .vs-grid-3 {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .vs-contact-grid {
        grid-template-columns: minmax(0, 1fr);
    }

    .vs-hero-text h1 {
        font-size: 40px;
    }
}

@media (max-width: 768px) {

    .vs-nav {
        padding: 0 20px;
    }

    .vs-nav-links {
        gap: 15px;
        font-size: 12px;
    }

    .vs-hero {
        height: 60vh;
        margin-top: 70px;
    }

    .vs-hero-text {
        bottom: 40px;
        left: 20px;
        right: 20px;
    }

    .vs-hero-text h1 {
        font-size: 32px;
    }

    .vs-hero-text p {
        font-size: 16px;
    }

    .vs-full-text h2 {
        font-size: 28px;
    }

    .vs-full-text p {
        font-size: 16px;
    }

    .vs-section {
        padding: 60px 20px;
    }

    .vs-grid-3 {
        grid-template-columns: minmax(0, 1fr);
    }

    .vs-grid-2 {
        grid-template-columns: minmax(0, 1fr);
    }

    .vs-video-frame {
        max-width: 100%;
    }
}

