/* ----------------------------------------------------
   GEO369 Premium Design System Stylesheet
   ---------------------------------------------------- */

/* Google Fonts Imports fallback inside HTML, variables defined here */
:root {
    --canvas: #000000;
    --surface: #050505;
    --warm-white: #F4F1EA;
    --muted-silver: #A9B0B6;
    
    /* Gold Colors & Gradients */
    --gold-solid: #E6AD32;
    --gold-start: #FFD67A;
    --gold-mid: #E7AD35;
    --gold-end: #B76F10;
    --gold-line: rgba(230, 173, 50, 0.42);
    
    /* Gradient Presets */
    --grad-canvas: linear-gradient(135deg, #000000 0%, #010101 48%, #000000 100%);
    --grad-section: linear-gradient(180deg, #000000 0%, #010101 50%, #000000 100%);
    --grad-overlay: linear-gradient(90deg, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.68) 42%, rgba(0, 0, 0, 0.08) 75%, rgba(0, 0, 0, 0.32) 100%);
    --grad-headline-white: linear-gradient(180deg, #FFFFFF 0%, #D6D9DC 100%);
    --grad-headline-gold: linear-gradient(180deg, #FFD67A 0%, #E7AD35 52%, #B76F10 100%);
    --grad-cta: linear-gradient(135deg, #F4C45D 0%, #D89A20 55%, #B9710F 100%);
    --grad-glass: linear-gradient(180deg, rgba(5, 5, 5, 0.96) 0%, rgba(0, 0, 0, 0.92) 100%);
    
    /* Fonts */
    --font-display: 'Barlow Condensed', 'Arial Narrow', 'Arial', sans-serif;
    --font-body: 'Inter', 'Arial', sans-serif;
    
    /* Shadows & Border Radii */
    --glow-gold: 0 0 15px rgba(230, 173, 50, 0.3);
    --glow-screen: 0 0 25px rgba(230, 173, 50, 0.15);
    --border-radius-sm: 4px;
    --border-radius-md: 8px;
    --border-radius-lg: 16px;
    
    /* Header/Footer Heights */
    --header-height: 80px;
    
    /* Transitions */
    --trans-fast: 0.2s ease;
    --trans-med: 0.4s cubic-bezier(0.16, 1, 0.3, 1);
    --trans-slow: 0.8s cubic-bezier(0.16, 1, 0.3, 1);
}

/* ----------------------------------------------------
   Reset & Base Styles
   ---------------------------------------------------- */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
    background-color: var(--canvas);
    color: var(--muted-silver);
    font-family: var(--font-body);
    -webkit-font-smoothing: antialiased;
}

body {
    background: var(--grad-canvas);
    overflow-x: hidden;
}

/* Typography Resets & Helpers */
h1, h2, h3, .heading-display {
    font-family: var(--font-display);
    font-weight: 700;
    color: var(--warm-white);
    letter-spacing: -0.01em;
    text-transform: uppercase;
    line-height: 1;
}

p {
    font-family: var(--font-body);
    font-weight: 400;
    line-height: 1.55;
    color: var(--muted-silver);
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--trans-fast);
}

button, input, select, textarea {
    font-family: inherit;
    background: none;
    border: none;
    outline: none;
}

/* ----------------------------------------------------
   Utility Classes & Layout
   ---------------------------------------------------- */
.container {
    width: 100%;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

.section-padding {
    padding: 100px 0;
}

.text-gold {
    background: var(--grad-headline-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.text-white {
    background: var(--grad-headline-white);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    display: inline-block;
}

.eyebrow {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: clamp(13px, 2vw, 16px);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-solid);
    margin-bottom: 12px;
    display: block;
}

.supporting-line {
    font-size: clamp(16px, 2vw, 22px);
    font-weight: 400;
    color: var(--muted-silver);
    margin-top: 16px;
    max-width: 650px;
    line-height: 1.45;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 14px 28px;
    font-size: clamp(14px, 1.5vw, 15px);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: var(--border-radius-sm);
    cursor: pointer;
    transition: var(--trans-med);
    min-height: 48px;
    position: relative;
    overflow: hidden;
}

.btn-gold {
    background: var(--grad-cta);
    color: #000000;
    box-shadow: var(--glow-gold);
    border: 1px solid rgba(255, 214, 122, 0.4);
}

.btn-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(230, 173, 50, 0.6);
    filter: brightness(1.1);
}

.btn-outline {
    border: 1px solid var(--gold-line);
    color: var(--warm-white);
    background: rgba(0, 0, 0, 0.4);
}

.btn-outline:hover {
    border-color: var(--gold-solid);
    background: rgba(230, 173, 50, 0.1);
    color: var(--gold-solid);
    transform: translateY(-2px);
}

.glass-panel {
    background: var(--grad-glass);
    border: 1px solid var(--gold-line);
    backdrop-filter: blur(12px);
    border-radius: var(--border-radius-md);
}

/* ----------------------------------------------------
   Header Navigation
   ---------------------------------------------------- */
body::before {
    content: '';
    position: fixed;
    top: 20px;
    left: 20px;
    right: 20px;
    bottom: 20px;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 12px;
    pointer-events: none;
    z-index: 9999;
}

header {
    position: fixed;
    top: 40px;
    left: 40px;
    right: 40px;
    height: auto;
    z-index: 100;
    transition: var(--trans-med);
}

header.scrolled {
    top: 30px;
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 6px;
    padding: 16px 32px;
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(12px);
    max-width: 100%;
    width: 100%;
}

.logo {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    line-height: 1;
}

.logo-main {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 26px;
    color: var(--warm-white);
    letter-spacing: 0.05em;
}

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

.logo-sub {
    font-family: var(--font-body);
    font-size: 8px;
    font-weight: 700;
    color: var(--muted-silver);
    letter-spacing: 0.22em;
    text-transform: uppercase;
    margin-top: 1px;
}

.nav-links {
    display: none;
    align-items: center;
    gap: 32px;
}

@media (min-width: 992px) {
    .nav-links {
        display: flex;
    }
}

.nav-link {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 11px;
    color: var(--warm-white);
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

.nav-link:hover {
    color: var(--gold-solid);
}

.nav-utilities {
    display: none;
    align-items: center;
    gap: 16px;
}

@media (min-width: 992px) {
    .nav-utilities {
        display: flex;
    }
}

.nav-utilities .btn {
    padding: 10px 24px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    border-radius: 4px;
    cursor: pointer;
    min-height: auto;
    height: 40px;
    background: var(--grad-cta);
    color: #000;
    border: none;
    box-shadow: none;
}

.nav-utilities .btn-outline {
    background: transparent;
    color: var(--warm-white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.nav-utilities .btn:hover {
    transform: translateY(-1px);
    box-shadow: var(--glow-gold);
    filter: brightness(1.1);
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    background: none;
    border: none;
}

@media (min-width: 992px) {
    .menu-toggle {
        display: none;
    }
}

.menu-toggle span {
    display: block;
    width: 25px;
    height: 2px;
    background: var(--warm-white);
    transition: var(--trans-fast);
}

.menu-toggle:hover span {
    background: var(--gold-solid);
}

/* Mobile Menu Drawer */
.mobile-menu {
    position: fixed;
    top: 0;
    right: -100%;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.98);
    z-index: 1000;
    transition: var(--trans-med);
    display: flex;
    flex-direction: column;
    padding: 40px 24px;
    border-left: 1px solid var(--gold-line);
}

@media (min-width: 576px) {
    .mobile-menu {
        width: 320px;
    }
}

.mobile-menu.open {
    right: 0;
}

.close-menu {
    align-self: flex-end;
    background: none;
    border: none;
    color: var(--warm-white);
    font-size: 32px;
    cursor: pointer;
    margin-bottom: 40px;
}

.close-menu:hover {
    color: var(--gold-solid);
}

.mobile-nav-links {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-bottom: 40px;
}

.mobile-nav-link {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 18px;
    color: var(--warm-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.mobile-nav-link:hover {
    color: var(--gold-solid);
}

.mobile-utilities {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

/* ----------------------------------------------------
   Section 01: Hero - Ocean of Attention
   ---------------------------------------------------- */
.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 100px 0;
    background-image: url('../images/12.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg,
        rgba(0, 0, 0, 0.82) 0%,
        rgba(0, 0, 0, 0.60) 38%,
        rgba(0, 0, 0, 0.18) 65%,
        rgba(0, 0, 0, 0.05) 100%);
    z-index: 1;
}


.hero-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    position: relative;
    z-index: 2;
    width: 100%;
}

@media (min-width: 992px) {
    .hero-grid {
        grid-template-columns: 1fr 1.4fr;
    }
}

.hero-content {
    z-index: 5;
    position: relative;
    padding-left: 20px;
}

.hero-eyebrow-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.hero-eyebrow-container .gold-dash {
    color: var(--gold-solid);
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
}

.hero-eyebrow-container .eyebrow {
    margin-bottom: 0;
}

.hero-content h1 {
    font-size: clamp(38px, 4.5vw, 68px);
    margin-bottom: 24px;
    line-height: 0.92;
    letter-spacing: -0.01em;
}

.hero-content h1 span.text-gold {
    background: var(--grad-headline-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-content .supporting-line {
    font-size: clamp(16px, 1.8vw, 20px);
    color: var(--muted-silver);
    max-width: 500px;
    line-height: 1.45;
    margin-top: 16px;
}

.btn-hero-gold {
    background: var(--grad-cta);
    color: #000;
    font-weight: 700;
    padding: 12px 28px;
    border-radius: 6px;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    letter-spacing: 0.05em;
    font-size: 14px;
    text-transform: uppercase;
    border: none;
    box-shadow: var(--glow-gold);
    cursor: pointer;
    transition: var(--trans-med);
    text-decoration: none;
}

.btn-hero-gold .arrow-circle {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: #000;
    color: var(--gold-solid);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--trans-fast);
}

.btn-hero-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 0 25px rgba(230, 173, 50, 0.5);
}

.btn-hero-gold:hover .arrow-circle {
    transform: rotate(45deg);
}

.hero-sublabel {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--gold-solid);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-top: 24px;
    text-transform: uppercase;
}

.hero-sublabel .gold-dot {
    font-size: 16px;
}

.hero-bottom-badge {
    position: absolute;
    bottom: 40px;
    right: 40px;
    border: 1px solid var(--gold-line);
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(8px);
    padding: 10px 20px;
    border-radius: 4px;
    font-family: var(--font-body);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--warm-white);
    text-transform: uppercase;
    z-index: 5;
}

.hero-visual {
    position: relative;
    width: 100%;
    display: none;
    justify-content: center;
    align-items: center;
    z-index: 5;
    overflow: visible;
}

@media (max-width: 991px) {
    .hero-section {
        background-image: var(--grad-section);
        background-position: center;
        padding-top: 140px;
    }
    
    .hero-overlay {
        background: rgba(0, 0, 0, 0.85);
    }
    
    .hero-visual {
        display: flex;
        margin-top: 30px;
    }
}

/* Digital Unipole Screen Container */
.screen-wrapper {
    position: relative;
    width: 100%;
    max-width: 440px;
    aspect-ratio: 9 / 12;
    background: #080808;
    border-radius: 8px;
    box-shadow: 0 0 35px rgba(230, 173, 50, 0.25);
    border: 1px solid var(--gold-solid);
    overflow: hidden;
    transform: perspective(1000px) rotateY(-8deg);
    transition: var(--trans-slow);
}

.screen-wrapper:hover {
    transform: perspective(1000px) rotateY(-2deg) scale(1.02);
}

.screen-wrapper::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at top, rgba(230, 173, 50, 0.15), transparent 70%);
    pointer-events: none;
}

.screen-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.screen-pole {
    width: 24px;
    height: 180px;
    background: linear-gradient(90deg, #111, #222, #0d0d0d);
    position: absolute;
    bottom: -180px;
    left: 50%;
    transform: translateX(-50%);
    border-left: 1px solid rgba(255, 255, 255, 0.05);
    border-right: 1px solid rgba(255, 255, 255, 0.05);
    z-index: -1;
}

/* ----------------------------------------------------
   Section 02: Why GEO369 — Premium Orb Layout
   ---------------------------------------------------- */
.why-section {
    background: var(--grad-section);
    position: relative;
    overflow: hidden;
}

/* Ambient glow radials behind the section */
.why-section::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(230,173,50,0.06) 0%, transparent 70%);
    pointer-events: none;
}

/* ---- Eyebrow with decorative lines ---- */
.why-eyebrow-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 20px;
}

.why-eyebrow-line {
    flex: 1;
    max-width: 80px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-solid), transparent);
    display: block;
}

/* ---- Particle/wave background ---- */
.why-particles {
    position: absolute;
    inset: 0;
    pointer-events: none;
    background-image:
        radial-gradient(circle at 15% 50%, rgba(230,173,50,0.07) 0%, transparent 45%),
        radial-gradient(circle at 85% 30%, rgba(230,173,50,0.05) 0%, transparent 40%),
        radial-gradient(circle at 50% 80%, rgba(180,120,20,0.04) 0%, transparent 35%);
    z-index: 1;
}

/* ---- Green badge/title variants for GEO369 card ---- */
.why-badge--green {
    background: rgba(34, 197, 94, 0.12);
    border: 1.5px solid rgba(34, 197, 94, 0.55);
    color: #22c55e;
}

.why-card__title--green { color: #22c55e; }

.why-card__divider--green {
    background: linear-gradient(90deg, rgba(34, 197, 94, 0.5) 0%, transparent 100%);
}

.why-header {
    text-align: center;
    max-width: 860px;
    margin: 0 auto 60px;
}

.why-header .supporting-line {
    margin: 16px auto 0;
}

/* ---- 3-column layout ---- */
.why-compare-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 70px;
    position: relative;
}

@media (min-width: 992px) {
    .why-compare-layout {
        grid-template-columns: 1fr auto 1fr;
        align-items: stretch;
        gap: 0;
    }
}

/* ---- Cards ---- */
.why-card {
    padding: 32px 28px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 0;
    border-radius: 8px;
    transition: var(--trans-med);
    position: relative;
}

.why-card--bad {
    border: 1px solid rgba(239, 68, 68, 0.45);
    background: rgba(10, 5, 5, 0.85);
    box-shadow: 0 0 40px rgba(239, 68, 68, 0.07);
}

.why-card--bad:hover {
    border-color: rgba(239, 68, 68, 0.7);
    box-shadow: 0 0 55px rgba(239, 68, 68, 0.14);
}

.why-card--good {
    border: 1px solid rgba(230, 173, 50, 0.45);
    background: rgba(5, 5, 0, 0.85);
    box-shadow: 0 0 40px rgba(230, 173, 50, 0.09);
}

.why-card--good:hover {
    border-color: var(--gold-solid);
    box-shadow: 0 0 55px rgba(230, 173, 50, 0.18);
}

/* ---- Card Header (badge + title row) ---- */
.why-card__header {
    display: flex;
    align-items: center;
    gap: 14px;
    margin-bottom: 16px;
}

.why-badge {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-badge--bad {
    background: rgba(239, 68, 68, 0.12);
    border: 1.5px solid rgba(239, 68, 68, 0.55);
    color: #ef4444;
}

.why-badge--good {
    background: rgba(230, 173, 50, 0.12);
    border: 1.5px solid rgba(230, 173, 50, 0.55);
    color: var(--gold-solid);
}

.why-card__title {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(16px, 2vw, 20px);
    text-transform: uppercase;
    letter-spacing: 0.06em;
    line-height: 1.1;
}

.why-card__title--bad  { color: #ef4444; }
.why-card__title--good { color: var(--gold-solid); }

/* ---- Divider line under header ---- */
.why-card__divider {
    height: 1px;
    margin-bottom: 24px;
}

.why-card__divider--bad  { background: linear-gradient(90deg, rgba(239,68,68,0.5) 0%, transparent 100%); }
.why-card__divider--good { background: linear-gradient(90deg, rgba(230,173,50,0.5) 0%, transparent 100%); }

/* ---- Row list ---- */
.why-row-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0;
    flex: 1;
}

.why-row {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
    transition: var(--trans-fast);
}

/* Split row: icon+title on left | description on right */
.why-row--split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    align-items: center;
    gap: 12px;
    padding: 14px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

.why-row--split:last-child { border-bottom: none; }

.why-row__left {
    display: flex;
    align-items: center;
    gap: 12px;
}

.why-row:last-child { border-bottom: none; }

.why-row__icon {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.why-row__icon--bad {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.4);
    color: #ef4444;
}

.why-row__icon--good {
    background: rgba(230, 173, 50, 0.12);
    border: 1px solid rgba(230, 173, 50, 0.4);
    color: var(--gold-solid);
}

.why-row__icon--green {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #22c55e;
}

.why-row__title {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: clamp(10px, 1.2vw, 12px);
    color: var(--warm-white);
    text-transform: uppercase;
    letter-spacing: 0.05em;
    line-height: 1.2;
}

.why-card--bad .why-row__desc {
    font-size: 12px;
    color: rgba(239, 68, 68, 0.8);
    line-height: 1.4;
}

.why-card--good .why-row__desc {
    font-size: 12px;
    color: var(--muted-silver);
    line-height: 1.4;
}

.why-row__desc {
    font-size: 12px;
    color: var(--muted-silver);
    line-height: 1.4;
}

/* ---- Center Orb — vertically centers itself within stretched grid ---- */
.why-center-orb {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    position: relative;
    padding: 0 20px;
    align-self: center;
}

@media (min-width: 992px) {
    .why-center-orb {
        flex-direction: row;
    }
}

.orb-ring {
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
}

.orb-ring--outer {
    width: 160px;
    height: 160px;
    background: radial-gradient(circle, rgba(230,173,50,0.04) 0%, transparent 70%);
    border: 1px solid rgba(230, 173, 50, 0.2);
    animation: orbPulse 4s ease-in-out infinite;
}

.orb-ring--inner {
    width: 128px;
    height: 128px;
    border: 1.5px solid rgba(230, 173, 50, 0.45);
    background: radial-gradient(circle, rgba(230,173,50,0.08) 0%, rgba(0,0,0,0.6) 70%);
}

.orb-core {
    display: flex;
    flex-direction: column;
    align-items: center;
    line-height: 1;
}

.orb-text-geo {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 26px;
    color: var(--warm-white);
    letter-spacing: 0.05em;
}

.orb-text-369 {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 30px;
    background: var(--grad-headline-gold);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: 0.02em;
}

/* Connecting lines from orb to cards */
.orb-connector {
    height: 1px;
    flex: 1;
    display: none;
}

@media (min-width: 992px) {
    .orb-connector { display: block; }
}

.orb-connector--left  { background: linear-gradient(90deg, transparent, rgba(239, 68, 68, 0.5)); }
.orb-connector--right { background: linear-gradient(90deg, rgba(230, 173, 50, 0.5), transparent); }

/* Connecting dots */
.orb-dots {
    display: none;
}

@media (min-width: 992px) {
    .orb-dots {
        display: block;
        position: absolute;
        left: 0;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        pointer-events: none;
    }
}

.orb-dot {
    position: absolute;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.orb-dot--left {
    left: -4px;
    background: #ef4444;
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.8);
}

.orb-dot--right {
    right: -4px;
    background: var(--gold-solid);
    box-shadow: 0 0 8px rgba(230, 173, 50, 0.8);
}

@keyframes orbPulse {
    0%, 100% { box-shadow: 0 0 20px rgba(230,173,50,0.1); }
    50%       { box-shadow: 0 0 40px rgba(230,173,50,0.25); }
}

/* ---- CTA Button inside gold card ---- */
.btn-card-gold {
    display: block;
    width: 100%;
    text-align: center;
    padding: 16px 20px;
    background: var(--grad-cta);
    color: #000000;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 12px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 4px;
    border: 1px solid rgba(255, 214, 122, 0.4);
    margin-top: 24px;
    transition: var(--trans-med);
    box-shadow: 0 4px 15px rgba(230, 173, 50, 0.2);
    cursor: pointer;
}

.btn-card-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 28px rgba(230, 173, 50, 0.45);
    filter: brightness(1.08);
    color: #000000;
}

/* ---- Four pillars grid ---- */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.pillar-card {
    padding: 28px 24px;
    transition: var(--trans-med);
}

.pillar-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold-solid);
    box-shadow: var(--glow-gold);
}

.pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--gold-line);
    background: rgba(230, 173, 50, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--gold-solid);
}

.pillar-card h4 {
    font-size: 18px;
    margin-bottom: 12px;
}

.pillar-card p {
    font-size: 14px;
    line-height: 1.5;
}

.scale-strip {
    text-align: center;
    margin-top: 60px;
    padding: 16px;
    border-top: 1px solid var(--gold-line);
    border-bottom: 1px solid var(--gold-line);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: var(--gold-solid);
    text-transform: uppercase;
}

/* Full-width bottom CTA */
.why-bottom-cta {
    margin-top: 32px;
    display: flex;
    justify-content: center;
}

.btn-why-cta {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 48px;
    background: var(--grad-cta);
    color: #000;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 4px;
    border: 1px solid rgba(255, 214, 122, 0.5);
    box-shadow: 0 4px 20px rgba(230, 173, 50, 0.3);
    transition: var(--trans-med);
    cursor: pointer;
}

.btn-why-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 32px rgba(230, 173, 50, 0.5);
    filter: brightness(1.08);
    color: #000;
}


.comparison-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 60px;
}

@media (min-width: 992px) {
    .comparison-grid {
        grid-template-columns: 1fr 1.2fr;
    }
}

.compare-card {
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    border-radius: 8px;
    transition: var(--trans-med);
}

.compare-card.traditional {
    border: 1px solid rgba(239, 68, 68, 0.42);
    background: rgba(239, 68, 68, 0.02);
    box-shadow: 0 0 30px rgba(239, 68, 68, 0.05);
}

.compare-card.traditional:hover {
    box-shadow: 0 0 40px rgba(239, 68, 68, 0.12);
    border-color: rgba(239, 68, 68, 0.6);
}

.compare-card.traditional h3 {
    color: #ef4444;
}

.compare-card.geo369-approach {
    border: 1px solid rgba(230, 173, 50, 0.42);
    background: rgba(230, 173, 50, 0.03);
    box-shadow: 0 0 35px rgba(230, 173, 50, 0.08);
}

.compare-card.geo369-approach:hover {
    box-shadow: 0 0 45px rgba(230, 173, 50, 0.16);
    border-color: var(--gold-solid);
}

.compare-card.geo369-approach h3 {
    color: var(--gold-solid);
}

.compare-card h3 {
    font-family: var(--font-display);
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    font-size: clamp(22px, 2.5vw, 26px);
    margin-bottom: 28px;
    line-height: 1.1;
}

.compare-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 20px;
    margin-bottom: 8px;
}

.compare-item {
    display: flex;
    align-items: flex-start;
    gap: 12px;
}

.compare-item .icon {
    font-size: 18px;
    line-height: 1;
    margin-top: 2px;
}

.compare-item.bad .icon { color: #ef4444; }
.compare-item.good .icon { color: var(--gold-solid); }

.compare-item-title {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--warm-white);
    font-size: 16px;
    margin-bottom: 4px;
}

.compare-item-desc {
    font-size: 14px;
    color: var(--muted-silver);
}

.btn-card-gold {
    display: block;
    width: 100%;
    text-align: center;
    padding: 16px 20px;
    background: var(--grad-gold);
    color: #000000;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    border-radius: 4px;
    border: 1px solid rgba(255, 214, 122, 0.4);
    margin-top: 20px;
    transition: var(--trans-med);
    box-shadow: 0 4px 15px rgba(230, 173, 50, 0.2);
    cursor: pointer;
}

.btn-card-gold:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 25px rgba(230, 173, 50, 0.45);
    filter: brightness(1.08);
    color: #000000;
}

/* Four pillars grid */
.pillars-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 24px;
    margin-top: 50px;
}

.pillar-card {
    padding: 24px;
    transition: var(--trans-med);
}

.pillar-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold-solid);
    box-shadow: var(--glow-gold);
}

.pillar-icon {
    width: 48px;
    height: 48px;
    border-radius: var(--border-radius-sm);
    border: 1px solid var(--gold-line);
    background: rgba(230, 173, 50, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
    color: var(--gold-solid);
}

.pillar-card h4 {
    font-size: 20px;
    margin-bottom: 12px;
}

.pillar-card p {
    font-size: 15px;
    line-height: 1.45;
}

.scale-strip {
    text-align: center;
    margin-top: 60px;
    padding: 16px;
    border-top: 1px solid var(--gold-line);
    border-bottom: 1px solid var(--gold-line);
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: var(--gold-solid);
    text-transform: uppercase;
}

/* ----------------------------------------------------
   Section 03: Flat Screen vs GEO369 3D Curved Screen
   ---------------------------------------------------- */
.comparison-section {
    background: var(--grad-section);
}

.screen-compare-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 60px;
}

@media (min-width: 976px) {
    .screen-compare-container {
        grid-template-columns: 1fr 1fr;
    }
}

.compare-screen-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.compare-screen-label {
    text-align: center;
    margin-bottom: 24px;
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 22px;
    letter-spacing: 0.05em;
    color: var(--muted-silver);
}

.compare-screen-panel.active .compare-screen-label {
    color: var(--gold-solid);
}

/* 2D Flat Screen Mockup */
.screen-flat {
    width: 100%;
    max-width: 440px;
    aspect-ratio: 9 / 12;
    background: #030303;
    border: 2px solid #222;
    border-radius: var(--border-radius-sm);
    overflow: hidden;
    position: relative;
    opacity: 0.65;
    transition: var(--trans-med);
}

.screen-flat-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.5) contrast(0.9);
}

.screen-flat-pole {
    width: 18px;
    height: 140px;
    background: #111;
    position: absolute;
    bottom: -140px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
}

/* 3D Curved Unipole Screen Mockup */
.screen-curved-3d {
    width: 100%;
    max-width: 440px;
    aspect-ratio: 9 / 12;
    background: #050505;
    border: 2px solid var(--gold-solid);
    border-radius: var(--border-radius-md);
    box-shadow: 0 0 35px rgba(230, 173, 50, 0.25);
    overflow: hidden;
    position: relative;
    transform: perspective(1000px) rotateY(-5deg);
    transition: var(--trans-slow);
}

.screen-curved-3d:hover {
    transform: perspective(1000px) rotateY(-1deg) scale(1.02);
    box-shadow: 0 0 50px rgba(230, 173, 50, 0.4);
}

.screen-curved-media {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.screen-curved-3d-pole {
    width: 24px;
    height: 140px;
    background: linear-gradient(90deg, #151515, #333, #0d0d0d);
    position: absolute;
    bottom: -140px;
    left: 50%;
    transform: translateX(-50%);
    z-index: -1;
    border-left: 1px solid rgba(255, 255, 255, 0.05);
}

.screen-compare-ctas {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    margin-top: 180px; /* offset the poles */
}

/* ----------------------------------------------------
   Section 04: Screen Infrastructure
   ---------------------------------------------------- */
.infra-section {
    background: var(--grad-section);
}

.infra-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 60px;
}

@media (min-width: 992px) {
    .infra-grid {
        grid-template-columns: 1.1fr 1fr;
    }
}

.infra-visual-container {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
}

.infra-screen-wrap {
    width: 100%;
    max-width: 440px;
    aspect-ratio: 9 / 12;
    position: relative;
}

.infra-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--border-radius-md);
    border: 1px dashed var(--gold-line);
}

/* Exploded callout overlay lines */
.infra-callout-marker {
    position: absolute;
    width: 14px;
    height: 14px;
    background: var(--gold-solid);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--gold-solid);
    cursor: pointer;
    z-index: 10;
}

.infra-callout-marker::after {
    content: '';
    position: absolute;
    width: 100%;
    height: 100%;
    border: 2px solid var(--gold-solid);
    border-radius: 50%;
    animation: pulseGlow 1.8s infinite;
}

.infra-marker-1 { top: 22%; left: 32%; }
.infra-marker-2 { top: 40%; left: 75%; }
.infra-marker-3 { top: 58%; left: 45%; }
.infra-marker-4 { top: 78%; left: 62%; }

@keyframes pulseGlow {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(3.5); opacity: 0; }
}

.infra-lists {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.infra-group h3 {
    font-size: 22px;
    color: var(--gold-solid);
    border-left: 2px solid var(--gold-solid);
    padding-left: 12px;
    margin-bottom: 20px;
}

.infra-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.infra-item {
    display: flex;
    gap: 16px;
}

.infra-bullet {
    min-width: 8px;
    height: 8px;
    background: var(--gold-solid);
    border-radius: 50%;
    margin-top: 8px;
}

.infra-item h4 {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--warm-white);
    font-size: 16px;
}

.infra-item p {
    font-size: 14px;
    color: var(--muted-silver);
    margin-top: 2px;
}

/* ----------------------------------------------------
   Section 05: SIYAA 3D Studio
   ---------------------------------------------------- */
.studio-section {
    position: relative;
    background-image: url('../images/123.png');
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    padding: 180px 0;
    overflow: hidden;
}

/* Dark overlay so text stays readable over the forest image */
.studio-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(
        135deg,
        rgba(0, 0, 0, 0.88) 0%,
        rgba(0, 0, 0, 0.72) 40%,
        rgba(0, 0, 0, 0.50) 70%,
        rgba(0, 0, 0, 0.35) 100%
    );
    z-index: 0;
}

.studio-section .container {
    position: relative;
    z-index: 1;
}


.studio-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 60px;
}

@media (min-width: 992px) {
    .studio-grid {
        grid-template-columns: 1fr;
        max-width: 50%;
    }
}

.studio-screen-wrap {
    width: 100%;
    max-width: 440px;
    aspect-ratio: 9 / 12;
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--glow-screen);
}

.studio-screen-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

/* Process Timeline Row */
.process-timeline {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin-top: 50px;
    position: relative;
}

@media (min-width: 576px) {
    .process-timeline {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (min-width: 992px) {
    .process-timeline {
        grid-template-columns: repeat(6, 1fr);
    }
}

.process-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    position: relative;
    z-index: 2;
}

.process-icon-box {
    width: 54px;
    height: 54px;
    border-radius: 50%;
    border: 1px solid var(--gold-line);
    background: #050505;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-solid);
    font-weight: 700;
    font-size: 18px;
    margin-bottom: 12px;
    transition: var(--trans-fast);
}

.process-step:hover .process-icon-box {
    border-color: var(--gold-solid);
    box-shadow: var(--glow-gold);
    transform: scale(1.05);
}

.process-label {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.05em;
    color: var(--warm-white);
    text-transform: uppercase;
}

.process-line-connector {
    position: absolute;
    top: 27px;
    left: 8%;
    right: 8%;
    height: 1px;
    background: var(--gold-line);
    z-index: 1;
    display: none;
}

@media (min-width: 992px) {
    .process-line-connector {
        display: block;
    }
}

/* ----------------------------------------------------
   Section 06: Campaigns in Action
   ---------------------------------------------------- */
.campaigns-section {
    background: var(--grad-section);
}

.video-showcase-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 60px;
}

@media (min-width: 768px) {
    .video-showcase-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.video-card {
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    aspect-ratio: 16 / 10;
}

.video-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--trans-slow);
}

.video-card:hover .video-poster {
    transform: scale(1.03);
}

.video-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.85) 100%);
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    padding: 32px;
}

.video-card-title {
    font-family: var(--font-display);
    font-size: 24px;
    color: var(--warm-white);
    margin-bottom: 20px;
}

.play-video-btn {
    align-self: flex-start;
    display: flex;
    align-items: center;
    gap: 12px;
    color: var(--gold-solid);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    cursor: pointer;
}

.play-video-btn svg {
    transition: var(--trans-fast);
    fill: var(--gold-solid);
}

.play-video-btn:hover svg {
    transform: scale(1.2);
    filter: drop-shadow(0 0 5px var(--gold-solid));
}

.impact-points {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-top: 60px;
    padding-top: 40px;
    border-top: 1px solid var(--gold-line);
}

@media (min-width: 768px) {
    .impact-points {
        grid-template-columns: 1fr 1fr;
    }
}

.impact-col h3 {
    font-size: 22px;
    color: var(--gold-solid);
    margin-bottom: 24px;
}

.impact-items {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.impact-item h4 {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--warm-white);
    font-size: 16px;
    margin-bottom: 4px;
}

.impact-item p {
    font-size: 14px;
}

/* ----------------------------------------------------
   Section 07: AI Audience + Mobility Intelligence
   ---------------------------------------------------- */
.ai-section {
    background: var(--grad-section);
}

.ai-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 60px;
}

@media (min-width: 992px) {
    .ai-grid {
        grid-template-columns: 1.15fr 1fr;
    }
}

.ai-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 576px) {
    .ai-cards-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.ai-card {
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.ai-card-icon {
    color: var(--gold-solid);
    font-size: 24px;
}

.ai-card h4 {
    font-family: var(--font-body);
    font-size: 16px;
    font-weight: 700;
    color: var(--warm-white);
}

.ai-screen-wrap {
    width: 100%;
    max-width: 440px;
    aspect-ratio: 9 / 12;
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--glow-screen);
}

.ai-screen-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trend-strip {
    text-align: center;
    padding: 16px;
    border-top: 1px solid var(--gold-line);
    border-bottom: 1px solid var(--gold-line);
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--muted-silver);
    text-transform: uppercase;
    margin-top: 60px;
}

.privacy-note {
    font-size: 12px;
    line-height: 1.4;
    text-align: center;
    color: rgba(255, 255, 255, 0.25);
    margin-top: 24px;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

/* ----------------------------------------------------
   Section 08: Industries + Creative Possibilities
   ---------------------------------------------------- */
.industries-section {
    background: var(--grad-section);
}

.industry-pills-container {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 40px;
    justify-content: center;
}

.industry-pill {
    padding: 10px 20px;
    border-radius: 4px;
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.05em;
    color: var(--muted-silver);
    border: 1px solid var(--gold-line);
    cursor: pointer;
    transition: var(--trans-fast);
    background: rgba(0, 0, 0, 0.4);
    text-transform: uppercase;
}

.industry-pill:hover, .industry-pill.active {
    color: #000;
    background: var(--grad-cta);
    border-color: var(--gold-solid);
    box-shadow: var(--glow-gold);
}

.industry-showcase-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 50px;
}

@media (min-width: 992px) {
    .industry-showcase-grid {
        grid-template-columns: 1.1fr 1fr;
    }
}

.industry-demo-panel {
    padding: 40px;
    min-height: 250px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    transition: opacity var(--trans-med);
}

.industry-demo-title {
    font-size: 26px;
    color: var(--gold-solid);
    margin-bottom: 16px;
}

.industry-demo-desc {
    font-size: 16px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.industry-screen-wrap {
    width: 100%;
    max-width: 440px;
    aspect-ratio: 9 / 12;
    position: relative;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    box-shadow: var(--glow-screen);
}

.industry-screen-video {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.closing-scale-line {
    text-align: center;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.05em;
    color: var(--warm-white);
    margin-top: 50px;
    text-transform: uppercase;
}

/* ----------------------------------------------------
   Section 09: Plan Your Campaign + Footer
   ---------------------------------------------------- */
.campaign-form-section {
    background: var(--grad-section);
}

.form-map-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 60px;
}

@media (min-width: 992px) {
    .form-map-grid {
        grid-template-columns: 1.15fr 1fr;
    }
}

.map-panel {
    padding: 32px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.map-panel h3 {
    font-size: 24px;
    color: var(--gold-solid);
    margin-bottom: 8px;
}

.map-placeholder {
    width: 100%;
    aspect-ratio: 16 / 11;
    border: 1px dashed var(--gold-line);
    border-radius: var(--border-radius-sm);
    margin: 24px 0;
    position: relative;
    overflow: hidden;
}

.map-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.65;
}

.map-note {
    font-size: 13px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    color: var(--muted-silver);
}

.form-panel {
    padding: 32px;
}

.form-panel h3 {
    font-size: 24px;
    margin-bottom: 8px;
}

.form-helper {
    font-size: 14px;
    color: var(--muted-silver);
    margin-bottom: 24px;
}

.form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.form-group label {
    font-family: var(--font-body);
    font-weight: 600;
    font-size: 14px;
    color: var(--warm-white);
    text-transform: uppercase;
    letter-spacing: 0.03em;
}

.form-control {
    width: 100%;
    height: 48px;
    border: 1px solid var(--gold-line);
    background: rgba(0, 0, 0, 0.6);
    border-radius: var(--border-radius-sm);
    color: var(--warm-white);
    padding: 0 16px;
    font-size: 16px;
    transition: var(--trans-fast);
}

textarea.form-control {
    height: auto;
    padding: 12px 16px;
}

.form-control:focus {
    border-color: var(--gold-solid);
    box-shadow: 0 0 10px rgba(230, 173, 50, 0.2);
}

.form-control.invalid {
    border-color: #ef4444;
}

.error-msg {
    font-size: 12px;
    color: #ef4444;
    margin-top: 4px;
}

.form-reassurance {
    display: block;
    text-align: center;
    font-size: 12px;
    font-weight: 700;
    color: var(--gold-solid);
    letter-spacing: 0.05em;
    margin-top: 16px;
}

.form-success-state {
    text-align: center;
    padding: 60px 20px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 20px;
}

.form-success-state h3 {
    font-size: 28px;
    color: var(--gold-solid);
}

.form-success-state p {
    font-size: 16px;
    max-width: 400px;
}

/* ----------------------------------------------------
   Footer Section
   ---------------------------------------------------- */
footer {
    background: #000000;
    border-top: 1px solid var(--gold-line);
    padding: 60px 0 30px 0;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-bottom: 50px;
}

@media (min-width: 576px) {
    .footer-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .footer-grid {
        grid-template-columns: 1.5fr repeat(4, 1fr);
    }
}

.footer-brand h2 {
    font-size: 32px;
    margin-bottom: 16px;
}

.footer-brand p {
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 24px;
}

.footer-col {
    display: flex;
    flex-direction: column;
}

.footer-col-header {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 18px;
    color: var(--gold-solid);
    text-transform: uppercase;
    margin-bottom: 16px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    width: 100%;
}

.footer-chevron {
    display: block;
    width: 10px;
    height: 10px;
    border-right: 2px solid var(--gold-solid);
    border-bottom: 2px solid var(--gold-solid);
    transform: rotate(45deg);
    transition: var(--trans-fast);
}

@media (min-width: 768px) {
    .footer-chevron {
        display: none;
    }
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

@media (max-width: 767px) {
    .footer-links {
        max-height: 0;
        overflow: hidden;
        transition: max-height var(--trans-med) ease-out;
    }
    
    .footer-col.active .footer-links {
        max-height: 300px;
        margin-bottom: 20px;
    }
    
    .footer-col.active .footer-chevron {
        transform: rotate(-135deg);
    }
}

.footer-links a {
    font-size: 14px;
    color: var(--muted-silver);
}

.footer-links a:hover {
    color: var(--gold-solid);
    padding-left: 4px;
}

.footer-col.portal-col .footer-col-header, 
.footer-col.portal-col a {
    background: var(--grad-cta);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    font-weight: 700;
}

.footer-col.portal-col a:hover {
    filter: brightness(1.2);
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 30px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    align-items: center;
    text-align: center;
}

@media (min-width: 768px) {
    .footer-bottom {
        flex-direction: row;
        justify-content: space-between;
        text-align: left;
    }
}

.footer-socials {
    display: flex;
    gap: 20px;
}

.footer-social-link {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.footer-social-link:hover {
    color: var(--gold-solid);
}

.copyright {
    font-size: 12px;
    color: rgba(255, 255, 255, 0.2);
}

/* ----------------------------------------------------
   Video Modal Overlay
   ---------------------------------------------------- */
.video-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.95);
    z-index: 10000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: var(--trans-med);
    padding: 24px;
}

.video-modal.open {
    opacity: 1;
    pointer-events: auto;
}

.video-modal-content {
    position: relative;
    width: 100%;
    max-width: 960px;
    aspect-ratio: 16 / 9;
    background: #000;
    border: 1px solid var(--gold-line);
    border-radius: var(--border-radius-md);
    box-shadow: 0 0 50px rgba(0,0,0,0.8);
    overflow: hidden;
}

.video-modal-content video {
    width: 100%;
