/* ----------------------------------------------------
   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: 'Montserrat', 'Arial', sans-serif;
    --font-body: 'Inter', 'Arial', sans-serif;
    --font-serif: 'Playfair Display', Georgia, 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: clip;
}

section, footer {
    background-color: var(--canvas);
    position: relative;
    z-index: 5;
}

/* 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: 1600px;
    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-display);
    font-weight: 700;
    font-size: clamp(10px, 1.2vw, 13px);
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold-solid);
    margin-bottom: 12px;
    display: block;
}

.supporting-line {
    font-size: clamp(14px, 1.5vw, 18px);
    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 (Full-Width Edge-to-Edge)
   ---------------------------------------------------- */
body::before {
    display: none !important;
}

header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    height: auto;
    z-index: 1000;
    background: rgba(0, 0, 0, 0.70);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.10);
    transition: background 0.3s ease, padding 0.3s ease, border-color 0.3s ease;
}

header.scrolled {
    top: 0;
    background: rgba(0, 0, 0, 0.92);
    border-bottom: 1px solid rgba(212, 175, 55, 0.35);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.7);
}

header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 16px clamp(24px, 4vw, 64px);
    max-width: 100%;
    width: 100%;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-img {
    height: 40px;
    width: auto;
    object-fit: contain;
}

.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 00: Journey Intro - Scroll-Driven Experience
   ---------------------------------------------------- */
.journey-intro-track {
    position: sticky;
    top: 0;
    z-index: 0;
    width: 100%;
    height: 100vh;
    height: 100dvh;
    min-height: 550px;
    background: #000000;
    overflow: hidden;
    touch-action: none;
}

.journey-sticky-frame {
    position: relative;
    width: 100%;
    height: 100%;
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
    background: #000000;
    touch-action: none;
}

.journey-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: fill;
    z-index: 1;
    pointer-events: none;
    will-change: transform;
}

.journey-overlay {
    display: none !important;
}

.journey-content-container {
    position: relative;
    z-index: 3;
    width: 100%;
    max-width: 100%;
    height: 100%;
    box-sizing: border-box;
    touch-action: none;
}

.journey-content {
    position: absolute;
    top: 130px;
    max-width: 520px;
    padding-left: 0;
    transition: opacity 0.35s cubic-bezier(0.16, 1, 0.3, 1), transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
    pointer-events: auto;
}

/* Step 01: Left side (Opening Chapter) */
.journey-step-1 {
    left: clamp(16px, 2.2vw, 36px);
    right: auto;
}

/* Step 02: Right side (Creative Studio Chapter) */
.journey-step-2 {
    right: clamp(24px, 4vw, 64px);
    left: auto;
    opacity: 0;
    transform: translateY(35px);
    pointer-events: none;
}

/* Step 03: Left side (Screen Par Entry Chapter) */
.journey-step-3 {
    left: clamp(16px, 2.2vw, 36px);
    right: auto;
    max-width: 780px;
    opacity: 0;
    transform: translateY(35px);
    pointer-events: none;
}

.journey-step-3 .journey-headline {
    max-width: 780px;
}

.journey-step-3 .journey-headline .journey-line {
    white-space: nowrap;
}

@media (max-width: 768px) {
    .journey-step-3 .journey-headline .journey-line {
        white-space: normal;
    }
}

/* Step 04: Right side (WOW MOMENT Chapter) */
.journey-step-4 {
    right: clamp(24px, 4vw, 64px);
    left: auto;
    max-width: 560px;
    opacity: 0;
    transform: translateY(35px);
    pointer-events: none;
}

/* Step 05: Left side (CAMPAIGN INSIGHTS Chapter) */
.journey-step-5 {
    left: clamp(16px, 2.2vw, 36px);
    right: auto;
    max-width: 580px;
    opacity: 0;
    transform: translateY(35px);
    pointer-events: none;
}

/* Step 06: Right side (AAPKA PROUD MOMENT Chapter) */
.journey-step-6 {
    right: clamp(24px, 4vw, 64px);
    left: auto;
    max-width: 560px;
    opacity: 0;
    transform: translateY(35px);
    pointer-events: none;
}

/* Pre-animation hidden state so text is NOT directly visible until animated */
.journey-content:not(.animate-in) .journey-eyebrow,
.journey-content:not(.animate-in) .journey-headline .journey-line,
.journey-content:not(.animate-in) .journey-supporting-line {
    opacity: 0;
    transform: translateY(35px);
    filter: blur(8px);
}

.journey-content:not(.animate-in)::before {
    opacity: 0;
    transform: scale(0.92);
}

/* Background shadow fade-in */
.journey-content::before {
    content: '';
    position: absolute;
    inset: -30px -50px -30px -35px;
    background: radial-gradient(ellipse at 32% 48%, rgba(0, 0, 0, 0.82) 0%, rgba(0, 0, 0, 0.60) 42%, rgba(0, 0, 0, 0.22) 72%, transparent 100%);
    filter: blur(24px);
    z-index: -1;
    pointer-events: none;
    border-radius: 24px;
    transition: opacity 0.8s ease, transform 0.8s ease;
}

.journey-content.animate-in::before {
    opacity: 1;
    transform: scale(1);
}

.journey-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-body);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.88);
    margin-bottom: 20px;
    will-change: opacity, transform, filter;
}

.journey-step-num {
    color: #ffffff;
    font-weight: 700;
}

.journey-step-dot {
    color: var(--gold-solid);
    font-size: 15px;
    line-height: 1;
}

.journey-step-title {
    color: rgba(255, 255, 255, 0.88);
}

.journey-headline {
    font-family: var(--font-serif);
    font-size: clamp(30px, 3.4vw, 48px);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -0.01em;
    text-transform: none;
    color: #ffffff;
    margin-bottom: 20px;
}

.journey-headline .journey-line {
    display: block;
    text-transform: none;
    will-change: opacity, transform, filter;
}

.journey-highlight-italic {
    font-family: var(--font-serif);
    font-style: italic;
    font-weight: 700;
    text-transform: none;
    color: #F5C967 !important;
    background: none !important;
    -webkit-background-clip: unset !important;
    -webkit-text-fill-color: #F5C967 !important;
    text-shadow: none !important;
    display: inline;
    padding-right: 3px;
}

.journey-supporting-line {
    font-family: var(--font-body);
    font-size: clamp(15px, 1.35vw, 19px);
    font-weight: 400;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.55;
    max-width: 480px;
    margin-bottom: 0;
    will-change: opacity, transform, filter;
}

/* Staggered Cinema Entrance Animation */
@keyframes journeyTextReveal {
    0% {
        opacity: 0;
        transform: translateY(35px);
        filter: blur(8px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
        filter: blur(0);
    }
}

.journey-content.animate-in .journey-eyebrow {
    animation: journeyTextReveal 0.55s 0.02s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.journey-content.animate-in .journey-headline .journey-line:nth-child(1) {
    animation: journeyTextReveal 0.65s 0.08s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.journey-content.animate-in .journey-headline .journey-line:nth-child(2) {
    animation: journeyTextReveal 0.65s 0.16s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.journey-content.animate-in .journey-headline .journey-line:nth-child(3) {
    animation: journeyTextReveal 0.65s 0.24s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.journey-content.animate-in .journey-headline .journey-line:nth-child(4) {
    animation: journeyTextReveal 0.65s 0.32s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.journey-content.animate-in .journey-supporting-line {
    animation: journeyTextReveal 0.70s 0.22s cubic-bezier(0.16, 1, 0.3, 1) both;
}

.journey-process-timeline {
    width: 100%;
    margin-top: auto;
    transition: opacity 0.25s ease-out, transform 0.25s ease-out;
    will-change: opacity, transform;
}

.journey-scroll-indicator {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    z-index: 4;
    opacity: 0.95;
    transition: opacity 0.3s ease;
    pointer-events: none;
    filter: drop-shadow(0 2px 8px rgba(0, 0, 0, 0.8));
}

.journey-scroll-indicator .scroll-text {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.15em;
    color: var(--gold-solid);
    text-transform: uppercase;
}

.journey-scroll-indicator .scroll-mouse {
    width: 20px;
    height: 32px;
    border: 2px solid var(--gold-solid);
    border-radius: 12px;
    display: flex;
    justify-content: center;
    padding-top: 4px;
    box-sizing: border-box;
}

.journey-scroll-indicator .scroll-wheel {
    width: 3px;
    height: 6px;
    background: var(--gold-solid);
    border-radius: 2px;
    animation: journeyScrollWheel 1.5s infinite ease;
}

@keyframes journeyScrollWheel {
    0% { transform: translateY(0); opacity: 1; }
    100% { transform: translateY(12px); opacity: 0; }
}

.journey-scrub-progress-bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.15);
    z-index: 20;
    pointer-events: none;
}

.journey-scrub-progress-fill {
    height: 100%;
    width: 0%;
    background: linear-gradient(90deg, var(--gold-solid) 0%, #ffffff 100%);
    box-shadow: 0 0 10px rgba(212, 175, 55, 0.8);
    transition: width 0.05s linear;
}

.journey-skip-btn {
    font-size: 10px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: rgba(255, 255, 255, 0.45);
    text-transform: uppercase;
    text-decoration: none;
    transition: color 0.2s ease;
    margin-top: 4px;
    cursor: pointer;
    pointer-events: auto;
    display: inline-flex;
    align-items: center;
    gap: 5px;
}

.journey-skip-btn:hover {
    color: var(--gold-solid);
}

.journey-skip-btn .skip-arrow-svg {
    stroke: currentColor;
    transition: transform 0.2s ease;
}

.journey-skip-btn:hover .skip-arrow-svg {
    transform: translateY(2px);
}

@media (max-width: 991px) {
    .journey-process-timeline {
        display: none !important;
    }
    .journey-scroll-indicator {
        position: static !important;
        transform: none !important;
        display: contents !important;
        pointer-events: none !important;
    }
    .journey-scroll-indicator .scroll-mouse,
    .journey-scroll-indicator .scroll-text {
        display: none !important;
    }
    .journey-skip-btn {
        position: absolute !important;
        bottom: calc(24px + env(safe-area-inset-bottom, 0px)) !important;
        right: 18px !important;
        top: auto !important;
        left: auto !important;
        transform: none !important;
        z-index: 50 !important;
        display: inline-flex !important;
        align-items: center !important;
        gap: 6px !important;
        padding: 9px 18px !important;
        background: rgba(14, 14, 18, 0.82) !important;
        border: 1px solid rgba(212, 175, 55, 0.65) !important;
        border-radius: 9999px !important;
        color: #F4C45D !important;
        font-family: 'Montserrat', sans-serif !important;
        font-size: 10.5px !important;
        font-weight: 700 !important;
        letter-spacing: 0.12em !important;
        text-transform: uppercase !important;
        text-decoration: none !important;
        backdrop-filter: blur(14px) saturate(180%) !important;
        -webkit-backdrop-filter: blur(14px) saturate(180%) !important;
        box-shadow: 0 4px 22px rgba(0, 0, 0, 0.75), 0 0 14px rgba(212, 175, 55, 0.22) !important;
        cursor: pointer !important;
        pointer-events: auto !important;
        touch-action: manipulation !important;
        transition: transform 0.15s ease, background-color 0.2s ease, border-color 0.2s ease, box-shadow 0.2s ease, opacity 0.3s ease !important;
    }
    .journey-skip-btn:active {
        transform: scale(0.93) !important;
        background: rgba(212, 175, 55, 0.22) !important;
        border-color: rgba(212, 175, 55, 0.95) !important;
    }
    .journey-skip-btn .skip-arrow-svg {
        stroke: #F4C45D !important;
        width: 11px !important;
        height: 11px !important;
    }
}

@media (max-width: 768px) {
    .journey-intro-track {
        height: 100vh;
        height: 100dvh;
        min-height: 100%;
        touch-action: none;
    }
    .journey-content-container {
        padding: 0;
        touch-action: none;
    }
    .journey-content {
        top: 90px;
        left: 20px !important;
        right: 20px !important;
        max-width: calc(100% - 40px);
    }
    .journey-headline {
        font-size: clamp(24px, 6.5vw, 36px);
        line-height: 1.18;
        margin-bottom: 16px;
    }
    .journey-supporting-line {
        font-size: 14px;
        line-height: 1.5;
    }
}

/* ----------------------------------------------------
   Section 01: Hero - Ocean of Attention
   ---------------------------------------------------- */
#hero {
    scroll-margin-top: 0 !important;
}

.hero-section {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: clamp(65px, 8.5vh, 90px) 0 clamp(20px, 3.5vh, 35px) 0;
    background-color: #000000;
    overflow: hidden;
    scroll-margin-top: 0 !important;
}

.hero-video {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.hero-video-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, 
        rgba(0, 0, 0, 0.85) 0%, 
        rgba(0, 0, 0, 0.6) 24%, 
        rgba(0, 0, 0, 0.15) 36%, 
        rgba(0, 0, 0, 0) 45%, 
        rgba(0, 0, 0, 0) 100%);
    z-index: 1;
    pointer-events: none;
}

.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: transparent;
    z-index: 1;
    pointer-events: none;
}


.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;
    }
}

.hero-content {
    z-index: 5;
    position: relative;
    padding-left: 0;
    max-width: 650px;
    margin-left: -115px;
}

@media (max-width: 1280px) and (min-width: 769px) {
    .hero-content {
        margin-left: -60px;
    }
}

@media (max-width: 768px) {
    .hero-content {
        margin-left: 0 !important;
        padding-left: 0 !important;
    }
}

.hero-eyebrow-container {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.gold-dash {
    color: var(--gold-solid);
    font-weight: 700;
    font-size: 20px;
    line-height: 1;
}

.hero-eyebrow-container .eyebrow {
    margin-bottom: 0;
}

.why-eyebrow-container {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    margin-bottom: 12px;
}

.why-eyebrow-container .eyebrow {
    margin-bottom: 0;
}

.why-header h2 {
    font-family: var(--font-body);
    font-weight: 700;
    font-size: clamp(32px, 4vw, 38px);
}

.hero-content h1 {
    font-size: clamp(34px, 4vw, 50px);
    margin-bottom: 30px;
    line-height: 1.1;
    letter-spacing: 0.02em;
}

.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;
     margin-bottom: 30px;
}

.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(--warm-white);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.1em;
    margin-top: 24px;
    text-transform: uppercase;
}

.hero-sublabel .gold-dot {
    font-size: 16px;
    color: var(--gold-solid);
}

.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: url('../images/image2_clean.png');
        background-position: 70% center;
        padding-top: 140px;
    }
    
    .hero-overlay {
        background: rgba(0, 0, 0, 0.55);
    }
    
    .hero-visual {
        display: none;
    }
}

/* 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: #0a0907;
    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 30px;
}

.why-header .supporting-line {
    margin: 16px auto 0;
}

/* ---- 3-column layout ---- */
.why-compare-layout {
    display: grid;
    grid-template-columns: 1fr;
    gap: 32px;
    margin-bottom: 20px;
    position: relative;
}

@media (min-width: 992px) {
    .why-compare-layout {
        grid-template-columns: 1fr auto 1fr;
        align-items: stretch;
        gap: 0;
    }
}

/* ---- Cards ---- */
.why-card {
    padding: 15px 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(34, 197, 94, 0.45);
    background: rgba(5, 10, 5, 0.85);
    box-shadow: 0 0 40px rgba(34, 197, 94, 0.07);
}

.why-card--good:hover {
    border-color: #22c55e;
    box-shadow: 0 0 55px rgba(34, 197, 94, 0.14);
}

/* ---- 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(34, 197, 94, 0.12);
    border: 1.5px solid rgba(34, 197, 94, 0.55);
    color: #22c55e;
}

.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: #22c55e; }

/* ---- 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(34, 197, 94, 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: minmax(0, 2.2fr) minmax(0, 1fr);
    align-items: center;
    gap: 12px;
    padding: 7px 0;
    border-bottom: 1px solid rgba(255,255,255,0.06);
}

@media (max-width: 575px) {
    .why-row--split {
        grid-template-columns: 1fr;
        gap: 6px;
        align-items: flex-start;
    }
}

.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(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #22c55e;
}

.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;
    white-space: nowrap;
}

.why-card--bad .why-row__desc {
    font-size: 12px;
    color: var(--warm-white);
    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;
    align-self: center;
}

@media (min-width: 992px) {
    .why-center-orb {
        flex-direction: row;
        width: 320px;
        flex-shrink: 0;
    }
}

.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: 1.5px dotted rgba(230, 173, 50, 0.65);
    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: 2px;
    flex: 6;
    display: none;
}

@media (min-width: 992px) {
    .orb-connector { display: block; }
}

.orb-connector--left  { background: rgba(230, 173, 50, 1); margin-right: -16px; position: relative; z-index: 1; }
.orb-connector--right { background: rgba(230, 173, 50, 1); margin-left: -16px; position: relative; z-index: 1; }

/* 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: 6px;
    height: 6px;
    border-radius: 50%;
    top: 50%;
    transform: translateY(-50%);
}

.orb-dot--left-card {
    left: -4px;
    width: 8px;
    height: 8px;
    background: #ef4444;
    box-shadow: 0 0 8px rgba(239, 68, 68, 0.8);
}

.orb-dot--left-outer {
    left: 77px;
    background: rgba(230, 173, 50, 0.8);
    box-shadow: 0 0 8px rgba(230, 173, 50, 0.8);
}

.orb-dot--left-inner {
    left: 93px;
    background: rgba(230, 173, 50, 0.8);
    box-shadow: 0 0 8px rgba(230, 173, 50, 0.8);
}

.orb-dot--right-inner {
    right: 93px;
    background: rgba(230, 173, 50, 0.8);
    box-shadow: 0 0 8px rgba(230, 173, 50, 0.8);
}

.orb-dot--right-outer {
    right: 77px;
    background: rgba(230, 173, 50, 0.8);
    box-shadow: 0 0 8px rgba(230, 173, 50, 0.8);
}

.orb-dot--right-card {
    right: -4px;
    width: 8px;
    height: 8px;
    background: #22c55e;
    box-shadow: 0 0 8px rgba(34, 197, 94, 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 ---- */
/* ---- Four pillars grid ---- */
.pillars-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
    margin-top: 20px;
}

@media (min-width: 768px) {
    .pillars-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (min-width: 1200px) {
    .pillars-grid {
        grid-template-columns: repeat(4, 1fr);
        gap: 16px;
    }
}

.pillar-card {
    display: flex;
    flex-direction: column;
    padding: 10px 25px;
    gap: 16px;
    justify-content: flex-start;
    align-items: flex-start;
    transition: var(--trans-med);
    min-height: 150px; 
}

.pillar-card:hover {
    transform: translateY(-4px);
    border-color: var(--gold-solid);
    box-shadow: var(--glow-gold);
}

.pillar-card__header {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 4px;
}

.pillar-card__icon-badge {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 1px solid var(--gold-line);
    background: rgba(230, 173, 50, 0.06);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-solid);
    flex-shrink: 0;
}

.pillar-card h4 {
    font-size: 16px;
    margin-bottom: 0;
    letter-spacing: 0.03em;
}

.pillar-card p {
    font-size: 13.5px;
    line-height: 1.5;
    color: var(--muted-silver);
}

.scale-strip {
    text-align: center;
    margin-top: 30px;
    padding: 8px 0;
    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.12em;
    color: #ffffff;
    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;
    justify-content: space-between;
    gap: 24px;
    padding: 8px 8px 8px 36px;
    background: var(--grad-cta);
    color: #000000;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 18px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 8px;
    border: 1px solid rgba(255, 214, 122, 0.4);
    box-shadow: 0 4px 20px rgba(230, 173, 50, 0.25);
    transition: var(--trans-med);
    cursor: pointer;
    text-decoration: none !important;
    width: 100%;
    max-width: 540px;
}

.btn-why-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(230, 173, 50, 0.4);
    color: #000000 !important;
}

.btn-why-cta-arrow {
    width: 36px;
    height: 36px;
    background: #000000;
    color: #ffffff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--trans-med);
    flex-shrink: 0;
}

.btn-why-cta:hover .btn-why-cta-arrow {
    background: #ffffff;
    color: #000000;
}


.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(230, 173, 50, 0.5);
    background: rgba(230, 173, 50, 0.02);
    box-shadow: 0 0 30px rgba(230, 173, 50, 0.08);
}

.compare-card.traditional:hover {
    box-shadow: 0 0 40px rgba(230, 173, 50, 0.2);
    border-color: var(--gold-solid);
}

.compare-card.traditional h3 {
    color: var(--gold-solid);
}

.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;
}


/* ----------------------------------------------------
   Section 03: Flat Screen vs GEO369 3D Curved Screen
   ---------------------------------------------------- */
.comparison-section {
    background: #000000;
}

.comparison-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 20px;
}

.comparison-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(32px, 4vw, 46px);
    margin-top: 12px;
    margin-bottom: 16px;
    line-height: 1.15;
}

.comparison-header .supporting-line {
    max-width: 950px;
    font-size: clamp(13px, 1.3vw, 16px);
}

.screen-compare-container {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 60px;
    position: relative;
}

@media (min-width: 976px) {
    .screen-compare-container {
        grid-template-columns: 1fr 1fr;
        gap: 120px;
    }
}

.compare-screen-panel {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: rgba(230, 173, 50, 0.02);
    border: 1px solid rgba(230, 173, 50, 0.45);
    border-radius: var(--border-radius-lg);
    padding: 24px;
    transition: var(--trans-med);
    width: 100%;
    max-width: 480px;
    margin: 0 auto;
    box-shadow: 0 0 20px rgba(230, 173, 50, 0.06);
}

.compare-screen-panel.active {
    border-color: var(--gold-solid);
    box-shadow: 0 0 30px rgba(230, 173, 50, 0.1);
}

.screen-flat, .screen-curved-3d {
    width: 100%;
    margin-bottom: 20px;
    border-radius: var(--border-radius-md);
    overflow: hidden;
    transition: var(--trans-med);
}

.comparison-img {
    width: 100%;
    aspect-ratio: 16 / 9.5;
    object-fit: cover;
    display: block;
    border-radius: var(--border-radius-md);
    transition: opacity 0.25s ease-in-out;
}

.compare-info-box {
    text-align: center;
    width: 100%;
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    padding-top: 16px;
    margin-top: 8px;
}

.compare-screen-label {
    font-family: var(--font-display);
    font-weight: 700;
    font-size: clamp(16px, 1.8vw, 20px);
    letter-spacing: 0.05em;
    color: var(--warm-white);
    margin-bottom: 8px;
    text-transform: uppercase;
}

.compare-screen-panel.active .compare-screen-label {
    color: var(--gold-solid);
}

.compare-screen-sublabel {
    font-family: var(--font-body);
    font-size: clamp(10px, 1.2vw, 12px);
    font-weight: 500;
    color: var(--muted-silver);
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.screen-flat:hover {
    transform: perspective(1000px) rotateY(1deg) scale(1.02);
    box-shadow: 0 0 50px rgba(230, 173, 50, 0.4);
}

.screen-curved-3d:hover {
    transform: perspective(1000px) rotateY(-1deg) scale(1.02);
    box-shadow: 0 0 50px rgba(230, 173, 50, 0.4);
}

/* Middle Divider styling */
.compare-divider-wrap {
    display: none; /* Hide on mobile */
}

@media (min-width: 976px) {
    .compare-divider-wrap {
        display: flex;
        position: absolute;
        left: 50%;
        top: 0;
        bottom: 0;
        transform: translateX(-50%);
        flex-direction: column;
        align-items: center;
        justify-content: center;
        pointer-events: none;
        z-index: 10;
        width: 100px;
    }
    
    .compare-divider-line {
        position: absolute;
        top: 0;
        bottom: 0;
        width: 2px;
        background: linear-gradient(180deg, transparent 0%, rgba(230, 173, 50, 0.45) 50%, transparent 100%);
    }
    
    .compare-divider-badge {
        position: relative;
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        width: 86px;
        height: 86px;
        border-radius: 50%;
        background: #000000;
        border: 2px solid var(--gold-solid);
        box-shadow: 0 0 25px rgba(230, 173, 50, 0.35);
        color: var(--gold-solid);
        text-align: center;
        padding: 8px;
    }
    
    .compare-divider-icon {
        display: flex;
        align-items: center;
        justify-content: center;
        color: var(--gold-solid);
        margin-bottom: 2px;
    }
    
    .compare-divider-text {
        font-family: var(--font-body);
        font-size: 8px;
        font-weight: 800;
        letter-spacing: 0.05em;
        line-height: 1.2;
        text-transform: uppercase;
        color: var(--gold-solid);
    }
}

.screen-curved-3d-pole {
    width: 24px;
    height: 100px;
    background: linear-gradient(90deg, #151515, #333, #0d0d0d);
    position: absolute;
    bottom: -100px;
    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: 30px;
}

/* Custom Industry Divider Decoration */
.industry-select-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    color: var(--gold-solid);
    font-family: var(--font-display);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 24px;
}

.industry-select-divider::before,
.industry-select-divider::after {
    content: '•';
    display: inline-block;
    color: var(--gold-solid);
    opacity: 0.8;
}

.industry-select-divider span {
    position: relative;
    padding: 0 10px;
}

.industry-select-divider span::before,
.industry-select-divider span::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 60px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--gold-solid) 50%, transparent);
}

.industry-select-divider span::before {
    right: 100%;
    margin-right: 15px;
}

.industry-select-divider span::after {
    left: 100%;
    margin-left: 15px;
}

/* Custom Compare CTA button styling */
.btn-compare-cta {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px;
    padding: 8px 8px 8px 24px;
    background: var(--grad-cta);
    color: #000000 !important;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 13.5px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 8px;
    border: 1px solid rgba(255, 214, 122, 0.4);
    box-shadow: 0 4px 20px rgba(230, 173, 50, 0.25);
    transition: var(--trans-med);
    cursor: pointer;
    text-decoration: none !important;
    max-width: 100%;
}

.btn-compare-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(230, 173, 50, 0.4);
    color: #000000 !important;
}

.btn-compare-cta-arrow {
    width: 36px;
    height: 36px;
    background: #000000;
    color: #ffffff;
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--trans-med);
    flex-shrink: 0;
}

.btn-compare-cta:hover .btn-compare-cta-arrow {
    background: #ffffff;
    color: #000000;
}

/* ----------------------------------------------------
   Section 04: Screen Infrastructure
   ---------------------------------------------------- */
.infra-section {
    background-image: url('../images/Website Data For Geo369/Screen Infra Icon/02_screen/screen-infrastructure-exploded-transparent-2x.png');
    background-size: contain;
    background-position: 50% 65%; /* Shift the background image upwards */
    background-repeat: no-repeat;
    background-color: #0a0907;
}

/* Push text closer to the left edge on web/desktop */
.infra-section > .container {
    padding-left: 0 !important;
}

.infra-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    align-items: center;
    margin-top: 40px;
}

@media (min-width: 992px) {
    .infra-grid {
        grid-template-columns: 1.15fr 1fr;
        gap: 50px;
    }
}

.infra-left-col {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    text-align: left;
    padding-left: 0;
    margin-left: -40px;
}

.infra-left-col .eyebrow {
    margin-bottom: 12px;
}

.infra-left-col h2 {
    font-size: 32px;
    line-height: 1.2;
    margin-bottom: 16px;
}

@media (min-width: 992px) {
    .infra-left-col h2 {
        font-size: 42px;
    }
}

.infra-left-col .supporting-line {
    text-align: left;
    margin-left: 0;
    max-width: 100%;
    margin-bottom: 28px;
}

.infra-middle-col {
    display: flex;
    justify-content: center;
    align-items: center;
}

.infra-screen-wrap {
    width: 100%;
    max-width: 260px;
    position: relative;
}

.infra-image {
    width: 100%;
    max-height: 480px;
    object-fit: contain;
    filter: drop-shadow(0 0 25px rgba(230, 173, 50, 0.15));
}

.infra-group h3 {
    font-size: 22px;
    color: var(--gold-solid);
    border-left: 2px solid var(--gold-solid);
    padding-left: 12px;
    margin-bottom: 20px;
}

.infra-timeline {
    position: relative;
    padding-left: 0;
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-top: 24px;
}

.infra-timeline-line {
    display: none;
}

@media (min-width: 992px) {
    .infra-timeline {
        padding-left: 42px;
        margin-left: 150px; /* Shift the timeline towards the right */
        margin-top: -50px; /* Move the cards upwards */
        gap: 20px;
    }
    .infra-timeline-line {
        display: block;
        position: absolute;
        left: -75px;
        top: 15px;
        bottom: 15px;
        width: 2px;
        background: linear-gradient(180deg, rgba(230, 173, 50, 0.5) 0%, rgba(230, 173, 50, 0.05) 100%);
    }
}

.infra-box-item {
    position: relative;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px 22px;
    border: 1px solid rgba(230, 173, 50, 0.22);
    background: rgba(10, 8, 5, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border-radius: 8px;
    transition: var(--trans-med);
}

.infra-box-item:hover {
    transform: translateX(4px);
    border-color: var(--gold-solid);
    box-shadow: 0 0 20px rgba(230, 173, 50, 0.12);
}

.infra-box-item .infra-box-badge {
    flex-shrink: 0;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--trans-med);
}

.infra-box-item:hover .infra-box-badge {
    transform: scale(1.1);
}

.infra-box-content h4 {
    margin-bottom: 4px;
    font-size: 18px;
    font-weight: 700;
}

.infra-box-content p {
    font-size: 14px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
}

/* Connecting lines */
.infra-box-item::before {
    content: '';
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    height: 1px;
    background: rgba(230, 173, 50, 0.35);
    pointer-events: none;
    display: none;
}

/* Intersection dot on the vertical line */
.infra-box-item::after {
    content: '';
    position: absolute;
    left: -33px; /* centers exactly on the 12px vertical line */
    top: 50%;
    transform: translateY(-50%);
    width: 8px;
    height: 8px;
    background: var(--gold-solid);
    border-radius: 50%;
    box-shadow: 0 0 8px var(--gold-solid);
    pointer-events: none;
    transition: var(--trans-med);
    display: none;
}

@media (min-width: 992px) {
    .infra-box-item::before {
        display: block;
        left: -192px; /* Line stretches all the way to the image's dot */
        width: 192px;
    }
    .infra-box-item::after {
        display: block;
        left: -121px; /* Centers the dot exactly on the -75px vertical line */
    }
    /* Move the first card's line up to align with the image's top dot */
    .infra-box-item:nth-child(2)::before,
    .infra-box-item:nth-child(2)::after {
        transform: translateY(calc(-50% - 25px));
    }
    /* 3 dots for item 2 (with the vertical transform offset preserved) */
    .infra-box-item:nth-child(2)::after {
        box-shadow: 
            0 0 8px var(--gold-solid), 
            40px 0 0 var(--gold-solid), 
            80px 0 0 var(--gold-solid);
    }
    /* 3 dots for item 3 */
    .infra-box-item:nth-child(3)::after {
        box-shadow: 
            0 0 8px var(--gold-solid), 
            40px 0 0 var(--gold-solid), 
            80px 0 0 var(--gold-solid);
    }
    /* 3 dots for item 4 */
    .infra-box-item:nth-child(4)::after {
        box-shadow: 
            0 0 8px var(--gold-solid), 
            40px 0 0 var(--gold-solid), 
            80px 0 0 var(--gold-solid);
    }
    /* 3 dots for item 5 */
    .infra-box-item:nth-child(5)::after {
        box-shadow: 
            0 0 8px var(--gold-solid), 
            40px 0 0 var(--gold-solid), 
            80px 0 0 var(--gold-solid);
    }
    /* 3 dots for item 6 */
    .infra-box-item:nth-child(6)::after {
        box-shadow: 
            0 0 8px var(--gold-solid), 
            40px 0 0 var(--gold-solid), 
            80px 0 0 var(--gold-solid);
    }

    /* Preserve the vertical transform offset for the first card on hover */
    .infra-box-item:nth-child(2):hover::after {
        transform: translateY(calc(-50% - 25px)) scale(1.3);
    }
}

.infra-box-item:hover::after {
    transform: translateY(-50%) scale(1.3);
    background: var(--warm-white);
    box-shadow: 0 0 12px var(--gold-solid);
}

.infra-box-badge {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--trans-med);
}

.infra-box-item:hover .infra-box-badge {
    transform: scale(1.1);
}

.infra-box-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.infra-box-content h4 {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--warm-white);
    font-size: 15px;
    letter-spacing: 0.02em;
    margin: 0;
}

.infra-box-content p {
    font-size: 13px;
    color: var(--muted-silver);
    margin: 0;
    line-height: 1.4;
}

.infra-physical-group {
    max-width: 620px;
    margin: 0 auto;
}

.infra-connected-section {
    margin-top: 50px;
}

.infra-connected-section .connected-title {
    font-size: 22px;
    color: var(--gold-solid);
    border-left: 2px solid var(--gold-solid);
    padding-left: 12px;
    margin-bottom: 24px;
}

.infra-connected-bar {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 24px 20px;
    border: 1px solid rgba(230, 173, 50, 0.22);
    border-radius: 12px;
    background: rgba(10, 8, 5, 0.45);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

@media (min-width: 992px) {
    .infra-connected-bar {
        grid-template-columns: repeat(4, 1fr);
        gap: 0;
        padding: 28px 12px;
    }
}

.infra-bar-item {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 0 16px;
    transition: var(--trans-med);
}

@media (max-width: 991px) {
    .infra-bar-item {
        padding: 12px 0;
    }
    .infra-bar-item:not(:last-child) {
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    }
}

@media (min-width: 992px) {
    .infra-bar-item:not(:last-child) {
        border-right: 1px solid rgba(230, 173, 50, 0.22);
    }
}

.infra-bar-badge {
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    transition: var(--trans-med);
}

.infra-bar-item:hover .infra-bar-badge {
    transform: scale(1.1);
}

.infra-bar-content {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.infra-bar-content h4 {
    font-family: var(--font-body);
    font-weight: 700;
    color: var(--warm-white);
    font-size: 13.5px;
    letter-spacing: 0.02em;
    margin: 0;
}

.infra-bar-content p {
    font-size: 11.5px;
    color: var(--muted-silver);
    margin: 0;
}

.btn-infra-cta {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 20px;
    border: none;
    border-radius: 8px;
    color: #000000;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    background: var(--gold-solid);
    gap: 16px;
    width: 100%;
    max-width: 440px;
    transition: var(--trans-med);
    cursor: pointer;
    text-decoration: none !important;
    margin-top: 10px;
}

.btn-infra-cta:hover {
    background: #c9941f;
    color: #000000 !important;
    box-shadow: 0 0 25px rgba(230, 173, 50, 0.45);
    transform: translateY(-2px);
}

.btn-infra-cta-arrow {
    width: 34px;
    height: 34px;
    background: #000000;
    color: var(--gold-solid);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    font-weight: 800;
    flex-shrink: 0;
    transition: var(--trans-med);
}

.btn-infra-cta:hover .btn-infra-cta-arrow {
    background: #000000;
    color: var(--gold-solid);
}

/* ---------------------------------------------------- */
  /* Section 05: SIYAA 3D Studio*/
 /*  ---------------------------------------------------- */
.studio-section {
    position: relative;
    background-color: #000000;
    /* background-image: url('../images/123.png'); */
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    padding: 110px 0;
    min-height: 640px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.studio-video {
    position: absolute;
    top: -45px;
    left: 45px;
    width: 100%;
    height: calc(100% + 55px);
    object-fit: cover;
    object-position: center top;
    z-index: 0;
}

/* Black Shadow Overlay in the background - focused STRICTLY behind text on the left, completely removed from the middle/deer area */
.studio-section::before {
    display: none;
}

.studio-shadow-overlay {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    right: 0;
    width: 100%;
    height: 100%;
    background: 
        linear-gradient(to bottom, #000000 0%, rgba(0, 0, 0, 0.95) 8%, rgba(0, 0, 0, 0.60) 14%, transparent 20%),
        linear-gradient(to top, #000000 0%, rgba(0, 0, 0, 0.95) 10%, rgba(0, 0, 0, 0.60) 18%, transparent 26%),
        linear-gradient(to right, rgba(0, 0, 0, 0.96) 0%, rgba(0, 0, 0, 0.96) 38%, rgba(0, 0, 0, 0.90) 42%, rgba(0, 0, 0, 0.65) 44%, rgba(0, 0, 0, 0.20) 45.5%, transparent 46.5%);
    pointer-events: none;
    z-index: 2;
}

.studio-section .container {
    position: relative;
    z-index: 5;
}

/* Custom Eyebrow with horizontal line decoration */
.studio-eyebrow-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 24px;
}

.studio-eyebrow-line {
    display: inline-block;
    width: 28px;
    height: 2px;
    background-color: var(--gold-solid);
}

.studio-eyebrow-wrap .eyebrow {
    margin-bottom: 0; /* Override default margin */
}

/* Typography elements */
.studio-headline {
    font-family: var(--font-display);
    font-size: clamp(28px, 3.2vw, 36px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: 0.03em;
    margin-bottom: 24px;
    color: #ffffff;
    text-transform: uppercase;
}

.studio-headline span.text-gold {
    font-size: clamp(34px, 4.2vw, 46px);
    font-weight: 900;
    letter-spacing: 0.02em;
    display: inline-block;
    margin-top: 6px;
}

.studio-supporting-line {
    font-size: clamp(15px, 1.6vw, 17px);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.85);
    margin-bottom: 28px;
    max-width: 600px;
}

.studio-desc-paragraph {
    font-size: clamp(13.5px, 1.4vw, 15px);
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 36px;
    max-width: 580px;
}

/* Custom Studio CTA button styling */
.btn-studio-cta {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    padding: 6px 6px 6px 24px;
    background: var(--grad-cta);
    color: #000000 !important;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 13px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    border-radius: 8px;
    border: 1px solid rgba(255, 214, 122, 0.4);
    box-shadow: 0 4px 15px rgba(230, 173, 50, 0.2);
    transition: var(--trans-med);
    cursor: pointer;
    text-decoration: none !important;
}

.btn-studio-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(230, 173, 50, 0.35);
}

.btn-studio-cta-arrow {
    width: 32px;
    height: 32px;
    background: #000000;
    color: var(--gold-solid);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--trans-med);
    flex-shrink: 0;
}

.btn-studio-cta:hover .btn-studio-cta-arrow {
    background: #ffffff;
    color: #000000;
}




.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);
        border: 1px solid rgba(230,173,50,0.6);
        border-radius: 8px;
        padding: 24px 20px 10px;
        background: rgba(0, 0, 0, 0.85);
        backdrop-filter: blur(10px);
    }
}

.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;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 12px;
    transition: var(--trans-fast);
}

.process-step:hover .process-icon-box {
    transform: scale(1.1);
}

.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 {
    display: none;
}

@media (min-width: 992px) {
    .process-step:not(:last-child)::after {
        content: '';
        position: absolute;
        top: 24px;
        left: calc(50% + 30px);
        width: calc(100% - 60px);
        height: 1px;
        background: rgba(230,173,50,0.6);
        z-index: 1;
    }
    
    .process-step:not(:last-child)::before {
        content: '';
        position: absolute;
        top: 21px;
        right: calc(-50% + 30px);
        width: 7px;
        height: 7px;
        border-top: 1px solid rgba(230,173,50,0.6);
        border-right: 1px solid rgba(230,173,50,0.6);
        transform: rotate(45deg);
        z-index: 1;
    }
}

/* ----------------------------------------------------
   Section 06: Campaigns in Action
   ---------------------------------------------------- */
.campaigns-section {
    background-color: #000000;
    background-image: linear-gradient(to bottom, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.15) 50%, rgba(0, 0, 0, 0.5) 100%), url('../images/Gemini_Generated_Image_kcrdgjkcrdgjkcrd-Photoroom.png');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    position: relative;
    padding: 130px 0;
}

.campaigns-container-3col {
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    margin-top: 0;
}

.campaigns-center-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 700px;
    width: 100%;
    margin: 0 auto;
    position: relative;
    z-index: 5;
}

@media (min-width: 1024px) {
    .campaigns-container-3col {
        grid-template-columns: 1fr 1.16fr 1fr;
        gap: 24px;
        margin-top: 60px;
    }
    .campaigns-center-content {
        order: 0; /* Natural middle column order on desktop */
    }
}

/* Centered campaigns CTA button styling */
.btn-campaigns-center-cta {
    display: inline-flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    padding: 6px 6px 6px 20px;
    background: var(--grad-cta);
    color: #000000 !important;
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 11px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border-radius: 8px;
    border: 1px solid rgba(255, 214, 122, 0.4);
    box-shadow: 0 4px 15px rgba(230, 173, 50, 0.2);
    transition: var(--trans-med);
    cursor: pointer;
    text-decoration: none !important;
    max-width: 100%;
    margin-top: 15px;
}

.btn-campaigns-center-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(230, 173, 50, 0.35);
}

.btn-campaigns-center-cta-arrow {
    width: 30px;
    height: 30px;
    background: #000000;
    color: var(--gold-solid);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--trans-med);
    flex-shrink: 0;
}

.btn-campaigns-center-cta:hover .btn-campaigns-center-cta-arrow {
    background: #ffffff;
    color: #000000;
}

/* Custom Eyebrow and Headline for Campaigns in Action */
.campaigns-eyebrow-wrap {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
}

.campaigns-eyebrow-line {
    display: inline-block;
    width: 28px;
    height: 2px;
    background-color: var(--gold-solid);
}

.campaigns-eyebrow-wrap .eyebrow {
    margin-bottom: 0;
}

.campaigns-headline {
    font-family: var(--font-display);
    font-size: clamp(26px, 3vw, 34px);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.03em;
    margin-bottom: 16px;
    text-transform: uppercase;
}

.campaigns-supporting-line {
    font-size: clamp(14.5px, 1.5vw, 16px);
    line-height: 1.5;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 40px;
}

/* Video Showcase Cards Grid */
.video-card {
    position: relative;
    border: 1px solid rgba(230, 173, 50, 0.25);
    border-radius: 12px;
    overflow: hidden;
    background: #000000;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 30px rgba(0, 0, 0, 0.5);
    transition: border-color 0.3s ease, box-shadow 0.3s ease;
}

.video-card:hover {
    border-color: rgba(230, 173, 50, 0.45);
    box-shadow: 0 8px 30px rgba(230, 173, 50, 0.12);
}

.video-frame {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
    cursor: pointer;
}

.video-poster {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}

.video-frame:hover .video-poster {
    transform: scale(1.04);
}

/* Play Icon Overlay in the middle of image */
.video-frame-play-overlay {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.3);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0.9;
    transition: opacity 0.3s ease, background 0.3s ease;
}

.video-frame:hover .video-frame-play-overlay {
    background: rgba(0, 0, 0, 0.15);
    opacity: 1;
}

.play-icon-circle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(0, 0, 0, 0.75);
    border: 2px solid var(--gold-solid);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-solid);
    box-shadow: 0 0 15px rgba(230, 173, 50, 0.25);
    transition: transform 0.3s ease, background-color 0.3s ease, box-shadow 0.3s ease;
}

.play-icon-circle svg {
    margin-left: 3px; /* visual center adjustment */
    transition: transform 0.3s ease;
}

.video-frame:hover .play-icon-circle {
    transform: scale(1.1);
    background-color: var(--gold-solid);
    color: #000000;
    box-shadow: 0 0 25px rgba(230, 173, 50, 0.55);
}

/* Details and bottom link */
.video-card-details {
    padding: 24px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 12px;
    background: #000000;
}

.video-card-title {
    font-family: var(--font-display);
    font-size: 22px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.02em;
}

.play-video-link {
    background: none;
    border: none;
    padding: 0;
    color: var(--gold-solid);
    font-family: var(--font-body);
    font-weight: 700;
    font-size: 13.5px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    transition: color 0.2s ease, transform 0.2s ease;
}

.play-video-link .play-triangle {
    font-size: 11px;
    transition: transform 0.2s ease;
}

.play-video-link:hover {
    color: #ffffff;
}

.play-video-link:hover .play-triangle {
    transform: scale(1.2);
}

/* Impact Grid Cards layout */
.impact-points-row {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 992px) {
    .impact-points-row {
        grid-template-columns: 1fr 1fr;
        gap: 40px;
    }
}

.impact-points-col {
    display: flex;
    flex-direction: column;
}

/* Header line decorations */
.impact-grid-header {
    border-bottom: 1.5px solid rgba(230, 173, 50, 0.4);
    padding-bottom: 8px;
    margin-bottom: 24px;
    text-align: center;
}

.impact-grid-header h3 {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 700;
    letter-spacing: 0.1em;
    color: #ffffff;
    margin: 0;
    text-transform: uppercase;
}

/* Subgrid for cards */
.impact-cards-subgrid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 16px;
}

@media (min-width: 576px) {
    .impact-cards-subgrid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
}

/* Individual card styling */
.impact-box-card {
    border: 1px solid rgba(230, 173, 50, 0.22);
    background: #020202;
    border-radius: 12px;
    padding: 16px;
    display: flex;
    align-items: center;
    gap: 16px;
    transition: var(--trans-med);
}

.impact-box-card:hover {
    border-color: rgba(230, 173, 50, 0.45);
    box-shadow: 0 4px 15px rgba(230, 173, 50, 0.1);
    transform: translateY(-1px);
}

.impact-box-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold-solid);
    flex-shrink: 0;
}

.impact-box-icon svg {
    display: block;
}

.impact-box-text {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.impact-box-text h4 {
    font-family: var(--font-body);
    font-size: 13.5px;
    font-weight: 700;
    color: #ffffff;
    margin: 0;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.impact-box-text p {
    font-size: 11px;
    color: rgba(255, 255, 255, 0.6);
    margin: 0;
    line-height: 1.35;
}

/* ----------------------------------------------------
   Section 07: AI Audience + Mobility Intelligence
   ---------------------------------------------------- */
.ai-section {
    background-image: url('../images/Website Data For Geo369/AI Intelligence/Background/BG.png');
    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
    background-color: #000000;
}
@media (max-width: 991px) {
    .ai-section {
        background-size: cover;
    }
}

.ai-header {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    margin-bottom: 40px;
}

.ai-header h2 {
    font-family: 'Montserrat', sans-serif;
    font-weight: 800;
    font-size: clamp(32px, 4vw, 46px);
    line-height: 1.15;
    text-align: center;
    max-width: none;
    margin-top: 12px;
}

.ai-grid {
    margin-top: 60px;
}

.ai-cards-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

@media (min-width: 576px) {
    .ai-cards-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (min-width: 992px) {
    .ai-cards-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

.ai-card {
    padding: 24px;
    display: flex;
    align-items: center;
    gap: 16px;
}

.ai-card-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.ai-card-icon-img {
    width: 46px;
    height: 46px;
    object-fit: contain;
    display: block;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 10px rgba(230, 173, 50, 0.3));
    transition: transform 0.3s ease;
}

.ai-card:hover .ai-card-icon-img {
    transform: scale(1.08);
}

.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 {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 20px 40px;
    border: 1px solid rgba(230, 173, 50, 0.5);
    border-radius: 100px;
    background: rgba(255, 255, 255, 0.01);
    margin-top: 60px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.trend-title {
    font-family: 'Montserrat', sans-serif;
    font-size: 16px;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.trend-desc {
    font-family: var(--font-body);
    font-size: 12px;
    font-weight: 600;
    color: var(--muted-silver);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.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: 11px;
    font-weight: 700;
    letter-spacing: 0.08em;
    color: var(--muted-silver);
    margin-top: 8px;
    text-transform: uppercase;
}

/* ----------------------------------------------------
   Section 09: Plan Your Campaign — PIXEL-LOCKED BILLBOARD
   ---------------------------------------------------- */

.campaign-section-wrapper {
    background: #000;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: flex-end;
    padding-top: 85px;
    padding-bottom: 20px;
    font-family: 'Montserrat', sans-serif;
    color: #fff;
    position: relative;
    overflow: hidden;
}

.campaign-container-flex {
    position: relative;
    width: 100%;
    max-width: 100%;
    margin: 0;
    padding: 0;
    display: flex;
    justify-content: flex-end;
    align-items: center;
}

/* Left Content Area (Overlaid directly over the image left night sky) */
.cpv2-left {
    position: absolute;
    left: 17%;
    top: 40%;
    transform: translateY(-50%);
    z-index: 10;
    max-width: 440px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-left: 0;
    pointer-events: auto;
}
.cpv2-eyebrow {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 11px;
    font-weight: 700;
    color: #E6AD32;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 14px;
}
.cpv2-dash { color: #E6AD32; font-size: 14px; }
.cpv2-heading {
    font-size: clamp(24px, 2.5vw, 38px);
    font-weight: 800;
    line-height: 1.15;
    margin: 0 0 14px;
    text-transform: uppercase;
    color: #fff;
}
.cpv2-sub {
    font-size: 13px;
    color: rgba(255,255,255,0.75);
    line-height: 1.5;
    margin-bottom: 24px;
    max-width: 400px;
}
.cpv2-cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: linear-gradient(135deg, #f0b840, #ca8a18);
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.05em;
    padding: 12px 22px;
    border-radius: 6px;
    text-decoration: none;
    text-transform: uppercase;
    transition: all 0.2s ease;
    margin-bottom: 26px;
    width: fit-content;
    box-shadow: 0 4px 15px rgba(230,173,50,0.25);
}
.cpv2-cta:hover { transform: translateY(-2px); box-shadow: 0 6px 20px rgba(230,173,50,0.4); }

.cpv2-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
    margin-top: 10px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.15);
}
.cpv2-feat {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
}
.cpv2-feat-icon {
    width: 36px; height: 36px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}
.cpv2-feat-title {
    font-size: 9.5px; font-weight: 800; color: #E6AD32;
    text-transform: uppercase; letter-spacing: 0.03em; display: block;
    line-height: 1.2;
}
.cpv2-feat-sub { font-size: 11px; color: rgba(255,255,255,0.7); display: block; margin-top: 1px; }

/* ── Billboard Poster Wrapper (Full right side with left dark gradient overlay) ── */
.billboard-poster-wrapper {
    position: relative;
    width: 82%;
    max-width: 1650px;
    display: block;
    overflow: hidden;
}
.billboard-poster-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 46%;
    background: linear-gradient(to right,
        #000000 0%,
        #000000 45%,
        rgba(0, 0, 0, 0.85) 75%,
        transparent 100%
    );
    z-index: 2;
    pointer-events: none;
}
.billboard-base-img {
    width: 100%;
    height: auto;
    display: block;
}

/* Absolute Overlay directly over the image */
.billboard-screens-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 3;
    pointer-events: auto;
}

/* Left Screen Panel — clean flat overlay inside the billboard left screen */
.screen-panel-left {
    position: absolute;
    left: 34.5%;
    top: 19.5%;
    width: 21.5%;
    height: 52%;
    background: transparent;
    padding: 3% 2% 2% 2%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-sizing: border-box;
    transform: skewY(-9deg);
    transform-origin: center;
}

/* Left Screen Content */
.screen-title {
    font-size: clamp(8px, 0.72vw, 11px);
    font-weight: 800;
    color: #E6AD32;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin: 0 0 3px;
    white-space: nowrap;
}
.screen-sub {
    font-size: clamp(7.5px, 0.65vw, 10px);
    color: rgba(255,255,255,0.7);
    margin: 0 0 6px;
    line-height: 1.25;
}

/* Right Screen Panel — Positioned seamlessly inside the billboard right screen */
.screen-panel-right {
    position: absolute;
    left: 56.5%;
    top: 14.5%;
    width: 35.5%;
    height: 56.5%;
    background: transparent;
    padding: 2.5% 3.5% 2% 3.5%;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
    box-sizing: border-box;
}

/* Left Screen Content */
.screen-title {
    font-size: clamp(9px, 0.9vw, 13px);
    font-weight: 800;
    color: #E6AD32;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0 0 2px;
}
.screen-sub {
    font-size: clamp(8px, 0.75vw, 11px);
    color: rgba(255,255,255,0.6);
    margin: 0 0 8px;
    line-height: 1.3;
}
.screen-map-wrap {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 0;
    padding: 2px 0;
}
.screen-map-svg, .screen-map-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    max-height: none;
    filter: drop-shadow(0 0 10px rgba(230,173,50,0.35));
}
.screen-map-img {
    transform: scale(1.18);
    transform-origin: center;
}
.screen-foot {
    font-size: clamp(7px, 0.65vw, 10px);
    color: rgba(255,255,255,0.6);
    display: flex;
    align-items: center;
    gap: 4px;
    flex-shrink: 0;
    padding-bottom: 4px;
}

/* Right Screen Content */
.screen-form-head { flex-shrink: 0; margin-bottom: 1.5%; }
.screen-form-title {
    font-size: clamp(10px, 1.1vw, 16px);
    font-weight: 800;
    color: #E6AD32;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin: 0 0 1px;
}
.screen-form-subtitle {
    font-size: clamp(8px, 0.7vw, 11px);
    color: rgba(255,255,255,0.5);
    margin: 0;
}

.screen-form {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    flex: 1;
    min-height: 0;
}
.screen-form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4px;
}
.screen-field { display: flex; flex-direction: column; gap: 2px; }
.screen-field-label {
    font-size: clamp(7px, 0.6vw, 9px);
    font-weight: 800;
    color: #E6AD32;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}
.screen-field-wrap {
    position: relative;
    display: flex;
    align-items: center;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(230,173,50,0.3);
    border-radius: 4px;
}
.screen-input {
    width: 100%;
    height: clamp(22px, 2.2vh, 32px);
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: clamp(8px, 0.75vw, 11px);
    font-family: 'Montserrat', sans-serif;
    padding: 0 22px 0 8px;
    appearance: none;
    -webkit-appearance: none;
}
.screen-input option { background: #111; color: #fff; }
.screen-input::placeholder { color: rgba(255,255,255,0.3); }
.screen-field-icon {
    position: absolute;
    right: 6px;
    color: rgba(230,173,50,0.6);
    pointer-events: none;
}

/* Industry Grid */
.screen-industry-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 4px;
    margin: 2px 0;
}
.cpv2-ind {
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(230,173,50,0.22);
    border-radius: 4px;
    padding: 8px 4px;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.15s ease;
    text-align: center;
}
.cpv2-ind span:last-child {
    font-size: clamp(6px, 0.55vw, 8px);
    font-weight: 700;
    letter-spacing: 0.02em;
    color: rgba(255,255,255,0.7);
    text-transform: uppercase;
    line-height: 1;
}
.cpv2-ind svg { color: rgba(230,173,50,0.75); }
.cpv2-ind:hover,
.cpv2-ind.active {
    border-color: #E6AD32;
    background: rgba(230,173,50,0.18);
    box-shadow: 0 0 8px rgba(230,173,50,0.25);
}
.cpv2-ind.active span:last-child { color: #fff; }

/* Submit Button */
.screen-submit {
    width: 100%;
    background: linear-gradient(135deg, #f0b840 0%, #ca8a18 100%);
    border: none;
    border-radius: 4px;
    padding: clamp(6px, 0.8vh, 10px) 10px;
    color: #000;
    font-family: 'Montserrat', sans-serif;
    font-size: clamp(8px, 0.7vw, 11px);
    font-weight: 800;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    cursor: pointer;
    transition: all 0.2s ease;
    flex-shrink: 0;
}
.screen-submit:hover { transform: translateY(-1px); box-shadow: 0 4px 12px rgba(230,173,50,0.4); }
.screen-submit-arrow {
    background: rgba(0,0,0,0.2);
    border-radius: 50%;
    width: 18px; height: 18px;
    display: flex; align-items: center; justify-content: center;
    flex-shrink: 0;
}

.screen-form-notes {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    font-size: clamp(6px, 0.55vw, 8px);
    color: rgba(255,255,255,0.4);
    flex-shrink: 0;
}
.screen-dot { color: rgba(255,255,255,0.25); }

/* Responsive Adjustments */
@media (max-width: 1100px) {
    .campaign-container-flex {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
}

/* ─── Industry JS interaction update ─── */

/* ── Section Background (old, kept for backward compat) ── */
.campaign-form-section {

    background-image: linear-gradient(to right, #000000 0%, #000000 12%, rgba(0, 0, 0, 0.45) 28%, rgba(0, 0, 0, 0.0) 100%), url('../images/last page.png');
    background-size: auto 100%;
    background-position: right 3% top;
    background-repeat: no-repeat;
    background-color: #000000;
    height: 100vh;
    min-height: 600px;
    display: flex;
    align-items: center;
    font-family: 'Montserrat', sans-serif;
    color: #ffffff;
    position: relative;
    padding: 0;
}

/* 3D Dual Panel Billboard Container (Used inside absolute overlay) */
.billboard-image-overlay {
    position: absolute;
    right: 3%;
    width: calc(100vh * 1.690);  /* image aspect ratio 1324/783 = 1.690 */
    max-width: 97%;
    height: 100%;
    top: 0;
    z-index: 3;
    display: none;
}

@media (min-width: 992px) {
    .billboard-image-overlay {
        display: block;
    }
}

/* Individual Panel Styling (Gold Glowing Border) */
.billboard-panel {
    position: absolute;
    background: transparent !important;
    border: none !important;
    box-shadow: none !important;
    padding: 12px 16px;
    display: flex;
    flex-direction: column;
    color: #fff;
    box-sizing: border-box;
    overflow: hidden;
}

/* LEFT SCREEN — Parallelogram/trapezoid shape:
   Image px: TL(305,128) TR(682,82) BR(682,625) BL(305,625)
   Image 1324×783. As % of overlay (same aspect):
   left=23.0%, width=28.5%, top=10.5%, height=69.3%
   Top edge slopes: left is 46px lower → 46/540=8.5% of panel height */
.billboard-panel.left-panel {
    left: 23.0%;
    top: 10.5%;
    width: 28.5%;
    height: 69.3%;
    padding: 14px 10px 12px;
    clip-path: polygon(0% 8.5%, 100% 0%, 100% 100%, 0% 100%);
}

/* RIGHT SCREEN — Near-rectangular, frontal face:
   Image px: TL(710,82) TR(1290,82) BR(1290,625) BL(710,625)
   left=53.6%, width=43.8%, top=10.5%, height=69.3% */
.billboard-panel.right-panel {
    left: 53.6%;
    top: 10.5%;
    width: 43.8%;
    height: 69.3%;
    padding: 12px 14px 12px;
    clip-path: polygon(0% 0%, 100% 0%, 100% 100%, 0% 100%);
}

.mobile-only-form {
    display: block;
    width: 100%;
}

@media (min-width: 992px) {
    .mobile-only-form {
        display: none;
    }
}

.mobile-form-panel {
    background: rgba(0, 0, 0, 0.72);
    border: 2px solid rgba(230, 173, 50, 0.45);
    border-radius: 12px;
    box-shadow: 0 0 25px rgba(230, 173, 50, 0.12);
    padding: 24px;
    width: 100%;
}

/* LEFT PANEL (MAP) STYLING */
.left-panel {
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.gold-subtitle {
    color: #e2a028;
    font-size: 14px;
    letter-spacing: 1px;
    font-weight: 700;
    margin-bottom: 5px;
}

.panel-desc {
    color: #cccccc;
    font-size: 14px;
    margin-bottom: 20px;
}

.map-container {
    text-align: center;
    padding: 20px 0;
}

.india-map-img {
    max-width: 100%;
    height: auto;
    filter: drop-shadow(0px 0px 10px rgba(226, 160, 40, 0.5));
}

.map-footer {
    font-size: 12px;
    color: #dddddd;
    display: flex;
    align-items: center;
    gap: 8px;
    margin-top: auto;
}

.diamond-bullet {
    color: #e2a028;
}

/* RIGHT PANEL (FORM) STYLING */
.right-panel .panel-header {
    text-align: center;
    margin-bottom: 25px;
}

.right-panel h2 {
    color: #e2a028;
    font-size: 22px;
    letter-spacing: 1.5px;
    font-weight: 800;
    margin: 0;
}

.right-panel p {
    color: #aaaaaa;
    font-size: 13px;
    margin-top: 4px;
}

/* Form Inputs Grid */
.form-row {
    display: flex;
    gap: 15px;
    margin-bottom: 15px;
}

.form-row.full-width {
    width: 100%;
}

.input-group {
    flex: 1;
    position: relative;
    background: #080808;
    border: 1px solid #44371d;
    border-radius: 8px;
    padding: 8px 12px;
    display: flex;
    flex-direction: column;
}

.input-group label {
    font-size: 10px;
    color: #e2a028;
    font-weight: 700;
    letter-spacing: 0.5px;
    margin-bottom: 2px;
    text-align: left;
}

.input-group input, 
.input-group select {
    background: transparent;
    border: none;
    outline: none;
    color: #ffffff;
    font-size: 13px;
    width: 100%;
    appearance: none;
    -webkit-appearance: none;
}

.input-group .icon {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: #e2a028;
    font-size: 14px;
    pointer-events: none;
}

/* 10-Item Industry Category Grid */
.industry-grid {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 8px;
    margin: 20px 0;
}

@media (max-width: 575px) {
    .industry-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

.ind-card {
    border: 1px solid #332917;
    background: #080808;
    border-radius: 6px;
    padding: 6px 4px;
    text-align: center;
    color: #ffffff;
    font-weight: 600;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 4px;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 0;
}

.ind-card:hover, .ind-card.active {
    border-color: #e2a028;
    background: rgba(226, 160, 40, 0.15);
    box-shadow: 0 0 10px rgba(226, 160, 40, 0.2);
}

.ind-icon {
    font-size: clamp(12px, 1.4vw, 20px);
    color: #e2a028;
    line-height: 1;
}

.ind-label {
    font-size: clamp(7px, 0.6vw, 9px);
    letter-spacing: 0.03em;
    line-height: 1;
}

/* ── Billboard Panel Compact Form Inputs ── */
.bp-input-wrap {
    background: rgba(8,8,8,0.85);
    border: 1px solid #44371d;
    border-radius: 5px;
    padding: clamp(4px, 0.6vh, 8px) clamp(7px, 0.8vw, 12px);
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.bp-label {
    font-size: clamp(8px, 0.6vw, 10px);
    font-weight: 800;
    color: #e2a028;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    line-height: 1;
}

.bp-input {
    background: transparent;
    border: none;
    outline: none;
    color: #fff;
    font-size: clamp(9px, 0.75vw, 12px);
    width: 100%;
    padding: 0;
    appearance: none;
    -webkit-appearance: none;
    height: clamp(14px, 1.6vh, 22px);
}

.bp-input::placeholder {
    color: #555;
}


.cta-gold-btn {
    width: 100%;
    background: linear-gradient(180deg, #f0b840 0%, #ca8a18 100%);
    border: none;
    border-radius: 8px;
    padding: 14px;
    color: #000000;
    font-weight: 800;
    font-size: 14px;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    cursor: pointer;
    box-shadow: 0 0 15px rgba(226, 160, 40, 0.4);
    transition: transform 0.2s ease, filter 0.2s ease;
}

.cta-gold-btn:hover {
    transform: scale(1.01);
    filter: brightness(1.1);
}

.btn-arrow {
    background: #000000;
    color: #e2a028;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 14px;
}

/* Bottom Note */
.form-footer-notes {
    display: flex;
    justify-content: center;
    gap: 10px;
    font-size: 11px;
    color: #888888;
    margin-top: 12px;
}

.campaign-right {
    width: 100%;
}

.campaign-mockup-img {
    width: 100%;
    height: auto;
    border-radius: 12px;
    border: 2px solid rgba(230, 173, 50, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.6), 0 0 30px rgba(230, 173, 50, 0.15);
}

.campaign-features {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

@media (min-width: 576px) {
    .campaign-features {
        flex-direction: row;
        justify-content: space-between;
        gap: 15px;
    }
}

.campaign-feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
}

.campaign-feature-item .feature-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(230, 173, 50, 0.1);
    border: 1px solid rgba(230, 173, 50, 0.25);
    flex-shrink: 0;
}

.feature-text {
    display: flex;
    flex-direction: column;
}

.feature-label {
    font-family: 'Montserrat', sans-serif;
    font-size: 11px;
    font-weight: 800;
    letter-spacing: 0.08em;
    color: var(--gold-solid);
    text-transform: uppercase;
}

.feature-sublabel {
    font-size: 13px;
    color: var(--muted-silver);
    margin-top: 3px;
}

.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: 30px;
}

@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 {
    color: var(--gold-solid);
    font-weight: 700;
}

.footer-col.portal-col a {
    color: var(--muted-silver);
    font-weight: inherit;
    background: none;
    -webkit-background-clip: unset;
    -webkit-text-fill-color: unset;
}

.footer-col.portal-col a:hover {
    color: var(--gold-solid);
    padding-left: 4px;
}

.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 {
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.footer-social-icon {
    width: 28px;
    height: 28px;
    object-fit: contain;
    transition: transform 0.2s ease, filter 0.2s ease;
    filter: brightness(0.8) contrast(1.2);
}

.footer-social-link:hover .footer-social-icon {
    transform: scale(1.15) translateY(-2px);
    filter: brightness(1);
}

.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%;
    height: 100%;
    object-fit: cover;
}

.eyebrow-container {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 16px;
}

/* When .eyebrow sits inside .eyebrow-container, reset block+margin so it aligns inline with dashes */
.eyebrow-container .eyebrow {
    display: inline !important;
    margin: 0 !important;
    padding: 0 !important;
    line-height: 1 !important;
}

/* Match gold-dash size to eyebrow text so baseline is consistent */
.eyebrow-container .gold-dash {
    font-size: 13px !important;
    line-height: 1 !important;
}

/* ==========================================================================
   Antigravity Premium Mobile Responsiveness & Compact Enhancements
   ========================================================================== */

/* Modern Global Scroll Padding Fix for Fixed Headers */
html {
    scroll-padding-top: 130px; /* Offset for desktop fixed header */
}

.orb-hub-img {
    width: 140px;
    height: 140px;
    object-fit: contain;
}

@media (max-width: 991px) {
    html {
        scroll-padding-top: 80px; /* Offset for mobile compact header */
    }

    /* Why Section — Vertical stack on mobile, compact boxes */
    .why-compare-layout {
        grid-template-columns: 1fr !important;
        gap: 12px !important;
        align-items: stretch !important;
        overflow-x: visible !important;
    }

    /* Center orb — compact horizontal pill between cards */
    .why-center-orb {
        flex-direction: row !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 0 !important;
        padding: 4px 0 !important;
        width: 100% !important;
    }

    .orb-hub-img {
        width: 64px !important;
        height: 64px !important;
    }

    .orb-text-geo {
        font-size: 11px !important;
        letter-spacing: 0 !important;
    }

    .orb-text-369 {
        font-size: 13px !important;
    }

    /* Show horizontal connectors on mobile between orb and cards */
    .orb-connector {
        display: block !important;
        height: 2px !important;
        flex: 1 !important;
        max-width: 60px !important;
    }

    /* Card Adjustments — compact, full-width boxes */
    .why-card {
        padding: 12px 14px !important;
    }

    .why-card__header {
        gap: 8px !important;
        margin-bottom: 10px !important;
    }

    .why-card__header img {
        width: 26px !important;
        height: 26px !important;
        margin-right: 6px !important;
    }

    .why-card__title {
        font-size: 12px !important;
        letter-spacing: 0.04em !important;
        line-height: 1.2 !important;
    }

    .why-card__divider {
        margin-bottom: 10px !important;
    }

    /* Row items — icon+title in one line, desc below — fully visible */
    .why-row--split {
        display: flex !important;
        flex-direction: column !important;
        gap: 3px !important;
        padding: 8px 0 !important;
    }

    .why-row__left {
        display: flex !important;
        flex-direction: row !important;
        align-items: center !important;
        gap: 8px !important;
    }

    .why-row__left img {
        width: 22px !important;
        height: 22px !important;
        flex-shrink: 0 !important;
        margin-right: 0 !important; /* Kill inline margin-right, only use gap */
    }

    .why-row__title {
        font-size: 10px !important;
        white-space: normal !important;
        letter-spacing: 0.03em !important;
        line-height: 1.3 !important;
    }

    /* Description starts exactly below the title text (icon 22px + gap 8px = 30px) */
    .why-row__desc {
        display: block !important;
        font-size: 10px !important;
        line-height: 1.4 !important;
        color: var(--muted-silver) !important;
        padding-left: 30px !important;
        white-space: normal !important;
        overflow: visible !important;
        text-overflow: unset !important;
    }

    /* Build With Pride Section (.bwp-section) Overrides — Overlay text over mobile poster */
    .bwp-section > div:first-child {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
        background-image: none !important;
        background-position: center center !important;
        background-size: cover !important;
        background-repeat: no-repeat !important;
        display: block !important;
        align-items: center !important;
        min-height: 280px !important;
    }
    
    .bwp-top-container {
        justify-content: center !important;
        padding-right: 0 !important;
        width: 100% !important;
        display: flex !important;
    }
    
    .bwp-right {
        flex: 0 0 55% !important; /* Limit width to right side */
        max-width: 55% !important;
        padding: 0 !important;
        text-align: left !important; /* Left align text inside container */
        margin-left: auto !important; /* Float container to the right */
        margin-right: 0 !important;
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    
    .bwp-right .bwp-eyebrow {
        justify-content: flex-start !important; /* Left-align eyebrow items */
        font-size: 9px !important;
        gap: 4px !important;
    }
    
    .bwp-right .bwp-eyebrow span {
        font-size: 9px !important;
    }
    
    .bwp-title-white, 
    .bwp-title-red {
        font-size: 11px !important; /* Slightly smaller font size to fit nicely */
        line-height: 1.3 !important;
        margin-bottom: 8px !important;
        margin-top: 4px !important;
    }
    
    .bwp-cta-container {
        position: absolute !important;
        bottom: 0 !important;
        left: 50% !important;
        transform: translate(-50%, 50%) !important;
        margin-top: 0 !important;
        z-index: 10 !important;
    }
    
    .bwp-cta-btn {
        padding: 8px 16px !important;
        font-size: 9px !important;
        width: auto !important;
        white-space: nowrap !important;
        justify-content: center !important;
        border-radius: 20px !important;
    }

    .bwp-top-wrapper {
        background-position: 30% center !important; /* Shift the shirt billboard slightly to the right to center it */
    }

    /* BWP Bottom Wrapper — Split Screen watch on right */
    .bwp-bottom-wrapper {
        padding-top: 60px !important;
        padding-bottom: 60px !important;
        background-image: none !important;
        min-height: 280px !important;
        display: block !important;
    }
    
    .bwp-bottom-container {
        padding: 0 0 0 15px !important;
        text-align: left !important;
        width: 100% !important;
        max-width: 68% !important; /* Increase text container width for more room */
        margin-right: auto !important;
        margin-left: 0 !important;
        background: transparent !important;
        border: none !important;
        border-radius: 0 !important;
        backdrop-filter: none !important;
        -webkit-backdrop-filter: none !important;
    }
    
    .bwp-bottom-heading {
        font-size: 11px !important;
        text-align: left !important;
        margin-bottom: 12px !important;
        max-width: 100% !important;
        line-height: 1.3 !important;
    }
    
    .bwp-bottom-content {
        flex-direction: row !important;
        gap: 0 !important;
    }
    
    .bwp-features-grid {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 12px 8px !important;
    }
    
    .bwp-feature-item {
        flex: unset !important;
        gap: 6px !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
    }

    .bwp-feature-icon svg {
        width: 22px !important;
        height: 22px !important;
    }

    .bwp-feature-text {
        font-size: 8px !important;
        line-height: 1.2 !important;
        text-align: center !important;
    }

    /* Section 09: Campaign Form Responsive Stack Override */
    .campaign-section-wrapper {
        padding-top: 60px !important;
        padding-bottom: 40px !important;
        min-height: auto !important;
        display: block !important;
    }
    
    .campaign-container-flex {
        flex-direction: column !important;
        justify-content: center !important;
        align-items: center !important;
        padding: 0 20px !important;
        gap: 40px !important;
    }

    .cpv2-left {
        position: relative !important;
        left: 0 !important;
        top: 0 !important;
        transform: none !important;
        max-width: 100% !important;
        width: 100% !important;
        text-align: center !important;
        align-items: center !important;
        margin-bottom: 20px !important;
    }
    
    .cpv2-heading {
        font-size: 20px !important;
        line-height: 1.3 !important;
        text-align: center !important;
    }
    
    .cpv2-sub {
        font-size: 11px !important;
        text-align: center !important;
        margin-bottom: 15px !important;
    }
    
    .cpv2-cta {
        margin: 0 auto 20px auto !important;
        font-size: 10px !important;
        padding: 10px 16px !important;
        border-radius: 20px !important;
        width: auto !important;
        display: inline-flex !important;
        align-items: center !important;
    }
    
    .cpv2-features {
        width: 100% !important;
        display: grid !important;
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 6px !important;
        text-align: center !important;
        align-items: flex-start !important;
        padding-top: 15px !important;
    }
    
    .cpv2-feat {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 4px !important;
    }

    .cpv2-feat-icon {
        width: 28px !important;
        height: 28px !important;
        margin: 0 auto !important;
    }

    .cpv2-feat-title {
        font-size: 7.5px !important;
        line-height: 1.15 !important;
        text-align: center !important;
    }

    .cpv2-feat-sub {
        font-size: 7.5px !important;
        text-align: center !important;
        margin-top: 1px !important;
    }
    
    .billboard-poster-wrapper {
        width: 100% !important;
        max-width: 600px !important;
        position: relative !important;
        margin: 0 auto !important;
    }
    
    .billboard-base-img {
        display: none !important;
    }
    
    .billboard-poster-wrapper::before {
        display: none !important;
    }
    
    .billboard-screens-overlay {
        position: relative !important;
        display: flex !important;
        flex-direction: column !important;
        gap: 20px !important;
        width: 100% !important;
        height: auto !important;
    }
    
    .screen-panel-left,
    .screen-panel-right {
        position: relative !important;
        left: 0 !important;
        top: 0 !important;
        width: 100% !important;
        height: auto !important;
        transform: none !important;
        padding: 16px 12px !important;
        background: rgba(10, 8, 5, 0.9) !important;
        border: 2px solid var(--gold-solid) !important; /* Premium gold neon border */
        box-shadow: 0 0 15px rgba(230, 173, 50, 0.25) !important; /* Neon glow */
        border-radius: 12px !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
    }
    
    .screen-map-wrap {
        height: 180px !important; /* Extremely compact map viewport */
        margin: 10px 0 !important;
    }

    .screen-form-title {
        font-size: 14px !important;
        text-align: center !important;
    }
    
    .screen-form-subtitle {
        font-size: 10px !important;
        text-align: center !important;
        margin-bottom: 12px !important;
    }

    .screen-form-row {
        grid-template-columns: 1fr !important;
        gap: 10px !important;
        margin-bottom: 10px !important;
    }
    
    .screen-field {
        gap: 4px !important;
    }
    
    .screen-field-label {
        font-size: 9px !important;
    }

    .screen-input {
        height: 38px !important;
        font-size: 12px !important;
        padding: 0 30px 0 12px !important;
    }

    .screen-field-icon {
        right: 12px !important;
    }

    .screen-industry-grid {
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 8px !important;
        margin: 16px 0 !important;
    }
    
    .cpv2-ind {
        padding: 10px 6px !important;
    }
    
    .cpv2-ind span:last-child {
        font-size: 9px !important;
    }

    .screen-submit {
        padding: 10px 14px !important;
        font-size: 11px !important;
        height: 40px !important;
    }
    
    .screen-form-notes {
        font-size: 9px !important;
        margin-top: 12px !important;
    }
}

@media (max-width: 768px) {
    /* Hide fixed outer border to maximize screen space */
    body::before {
        display: none !important;
    }

    /* Fixed Header Spacing & Layout */
    header {
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        width: 100% !important;
    }
    
    header .container {
        padding: 12px 20px !important;
        border-radius: 0 !important;
        border: none !important;
    }
    
    .logo-img {
        height: 32px !important;
    }

    /* Text scale adjustments */
    h1 {
        font-size: 30px !important;
        line-height: 1.2 !important;
    }

    .why-header h2 {
        font-size: 24px !important;
        line-height: 1.25 !important;
    }

    .comparison-header h2,
    .infra-left-col h2,
    .studio-headline {
        font-size: 26px !important;
        line-height: 1.2 !important;
    }
    
    .campaigns-headline {
        font-size: 24px !important;
        line-height: 1.25 !important;
    }

    .ai-header h2 {
        font-size: 24px !important;
        line-height: 1.3 !important;
    }

    #insights-section h2 {
        font-size: 32px !important;
        line-height: 1.15 !important;
    }

    /* Interactive Comparison Layout Section */
    .screen-compare-container {
        gap: 30px !important;
        margin-top: 30px !important;
    }

    .compare-screen-panel {
        padding: 16px !important;
    }

    /* Industry pills padding for touch targets */
    .industry-pill {
        padding: 8px 14px !important;
        font-size: 11px !important;
    }

    /* Process Timeline steps compact spacing & 3x2 grid with connected arrows */
    .process-timeline {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 20px 8px !important;
        margin-top: 25px !important;
        border: 1px solid rgba(230, 173, 50, 0.25) !important;
        border-radius: 8px !important;
        padding: 20px 10px 12px 10px !important;
        background: rgba(0, 0, 0, 0.8) !important;
        backdrop-filter: blur(10px) !important;
        -webkit-backdrop-filter: blur(10px) !important;
        position: relative !important;
    }
    
    .process-icon-box {
        width: 36px !important;
        height: 36px !important;
        margin-bottom: 8px !important;
    }

    .process-icon-box img {
        width: 18px !important;
        height: 18px !important;
    }
    
    .process-label {
        font-size: 8px !important;
        letter-spacing: 0.02em !important;
        line-height: 1.25 !important;
    }

    /* Draw horizontal connector lines on mobile for 3x2 grid rows */
    .process-step:not(:nth-child(3n + 1))::after {
        content: '' !important;
        position: absolute !important;
        top: 18px !important; /* Center of 36px icon */
        left: calc(50% + 22px) !important;
        width: calc(100% - 44px) !important;
        height: 1px !important;
        background: rgba(230, 173, 50, 0.5) !important;
        z-index: 1 !important;
    }
    
    .process-step:not(:nth-child(3n + 1))::before {
        content: '' !important;
        position: absolute !important;
        top: 15px !important;
        right: calc(-50% + 18px) !important;
        width: 5px !important;
        height: 5px !important;
        border-top: 1px solid rgba(230, 173, 50, 0.5) !important;
        border-right: 1px solid rgba(230, 173, 50, 0.5) !important;
        transform: rotate(45deg) !important;
        z-index: 1 !important;
    }

    /* Section paddings */
    .section-padding {
        padding: 60px 0 !important;
    }

    /* SIYAA studio mobile updates */
    .studio-section {
        min-height: auto !important;
        padding-top: 90px !important; /* Push down slightly to avoid header overlap */
        padding-bottom: 40px !important;
        background-position: center center !important;
        background-size: cover !important;
    }

    .studio-section::before,
    .studio-shadow-overlay {
        background: linear-gradient(
            to bottom,
            rgba(0, 0, 0, 0.85) 0%,
            rgba(0, 0, 0, 0.70) 50%,
            rgba(0, 0, 0, 0.25) 75%,
            transparent 100%
        ) !important;
    }

    .studio-headline {
        font-size: 18px !important;
        line-height: 1.3 !important;
    }

    .studio-supporting-line {
        font-size: 10px !important;
        line-height: 1.35 !important;
        margin-bottom: 15px !important;
    }

    .btn-studio-cta {
        font-size: 9px !important;
        padding: 9px 14px !important;
        width: auto !important;
        max-width: 280px !important;
        justify-content: center !important;
        margin-top: 10px !important;
        border-radius: 20px !important;
    }

    /* Why GEO369 Bottom CTA Button compact height on Mobile */
    .why-bottom-cta {
        margin-top: 15px !important;
    }

    .btn-why-cta {
        padding: 6px 6px 6px 14px !important;
        font-size: 11px !important;
        line-height: 1.2 !important;
        gap: 10px !important;
        max-width: 310px !important;
        border-radius: 6px !important;
    }

    .btn-why-cta-arrow {
        width: 28px !important;
        height: 28px !important;
        border-radius: 4px !important;
    }

    .btn-why-cta-arrow img {
        width: 16px !important;
        height: 16px !important;
    }

    /* Infrastructure timeline adjustments */
    .infra-timeline {
        margin-left: 0 !important;
        margin-top: 0 !important;
    }

    .infra-box-item {
        padding: 14px 16px !important;
    }

    .infra-box-content h4 {
        font-size: 14px !important;
    }

    .infra-box-content p {
        font-size: 12px !important;
    }

    /* Scale Strip and other strips */
    .scale-strip,
    .trend-strip {
        font-size: 11px !important;
        padding: 10px 16px !important;
        border-radius: 30px !important;
    }

    /* Compare Section Mobile Rules — Increased Card Height */
    .screen-compare-container {
        gap: 12px !important;
        margin-top: 20px !important;
    }

    .compare-screen-panel {
        padding: 12px 14px !important;
        border-radius: 12px !important;
    }

    .screen-flat, .screen-curved-3d {
        margin-bottom: 8px !important;
    }

    .comparison-img {
        max-height: 160px !important;
        object-fit: cover !important;
    }

    .compare-info-box {
        padding-top: 8px !important;
        margin-top: 4px !important;
    }

    .compare-screen-label {
        font-size: 13px !important;
        margin-bottom: 3px !important;
    }

    .compare-screen-sublabel {
        font-size: 9.5px !important;
        line-height: 1.25 !important;
    }

    /* Compare Section Divider on Mobile */
    .compare-divider-wrap {
        display: flex !important;
        position: relative !important;
        left: auto !important;
        top: auto !important;
        bottom: auto !important;
        transform: none !important;
        flex-direction: row !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
        margin: 10px 0 !important;
        z-index: 10 !important;
        height: 52px !important;
    }

    .compare-divider-line {
        position: absolute !important;
        left: 0 !important;
        right: 0 !important;
        top: 50% !important;
        bottom: auto !important;
        transform: translateY(-50%) !important;
        width: 100% !important;
        height: 1.5px !important;
        background: linear-gradient(90deg, transparent 0%, rgba(230, 173, 50, 0.45) 50%, transparent 100%) !important;
    }

    .compare-divider-badge {
        position: relative !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 52px !important;
        height: 52px !important;
        border-radius: 50% !important;
        background: #000000 !important;
        border: 1.5px solid var(--gold-solid) !important;
        box-shadow: 0 0 14px rgba(230, 173, 50, 0.35) !important;
        color: var(--gold-solid) !important;
        padding: 4px !important;
        z-index: 2 !important;
    }

    .compare-divider-icon {
        display: flex !important;
        align-items: center !important;
        justify-content: center !important;
        margin-bottom: 1px !important;
    }

    .compare-divider-icon svg {
        width: 14px !important;
        height: 14px !important;
    }

    .compare-divider-text {
        font-size: 6.5px !important;
        letter-spacing: 0.02em !important;
        line-height: 1.15 !important;
        width: 100% !important;
        display: block !important;
        text-align: center !important;
    }

    /* Screen Infrastructure Section Mobile Enhancements — Side-by-Side Flex Split View */
    .infra-section {
        background-image: none !important; /* Remove background image from parent to prevent clipping */
    }

    .infra-section > .container {
        padding-left: 22px !important;
        padding-right: 18px !important;
    }

    .infra-grid {
        display: flex !important;
        flex-direction: row !important;
        flex-wrap: wrap !important;
        gap: 15px 2% !important;
    }

    /* Left-side image column */
    .infra-grid::before {
        content: "" !important;
        display: block !important;
        flex: 0 0 38% !important;
        max-width: 38% !important;
        height: 430px !important; /* Height matching features timeline height */
        background-image: url("../images/Website Data For Geo369/Screen Infra Icon/02_screen/screen-infrastructure-exploded-transparent-2x.png") !important;
        background-size: 190% !important; /* Zoom in to bypass empty transparent padding */
        background-position: -50px center !important; /* Shift to center the 3D model in the column */
        background-repeat: no-repeat !important;
        order: 1 !important;
        margin: 0 !important;
    }

    .infra-left-col {
        flex: 0 0 100% !important;
        max-width: 100% !important;
        order: 0 !important;
        text-align: center !important;
        align-items: center !important;
        margin-bottom: 10px !important;
        margin-left: 0 !important;  /* Reset desktop -40px negative margin */
    }

    .infra-left-col h2 {
        text-align: center !important;
        font-size: 20px !important;
        line-height: 1.3 !important;
    }

    .infra-left-col .supporting-line {
        text-align: center !important;
        font-size: 11px !important;
        margin-bottom: 15px !important;
    }

    .infra-left-col .eyebrow {
        justify-content: center !important;
    }

    /* Button smaller on mobile */
    .btn-infra-cta {
        padding: 10px 14px !important;
        font-size: 10px !important;
        max-width: 280px !important;
        gap: 10px !important;
    }

    .btn-infra-cta-arrow {
        width: 26px !important;
        height: 26px !important;
        font-size: 14px !important;
    }

    .infra-right-col {
        flex: 0 0 60% !important; /* Timeline occupies right 60% width */
        max-width: 60% !important;
        order: 2 !important;
        margin-left: auto !important;
        margin-right: 0 !important;
    }

    .infra-timeline {
        margin-left: 0 !important;
        margin-top: 0 !important;
        padding-left: 0 !important;
    }

    .infra-timeline-line {
        display: none !important; /* Hide vertical connecting line on mobile */
    }

    .infra-box-item {
        padding: 8px 10px !important;
        background: rgba(10, 8, 5, 0.45) !important;
        border: 1px solid rgba(230, 173, 50, 0.15) !important;
        border-radius: 10px !important;
        margin-bottom: 8px !important;
        backdrop-filter: blur(8px) !important;
        -webkit-backdrop-filter: blur(8px) !important;
        display: flex !important;
        align-items: center !important;
        gap: 8px !important;
    }

    .infra-box-badge {
        flex: 0 0 32px !important;
        width: 32px !important;
        height: 32px !important;
        min-width: 32px !important;
    }

    .infra-box-badge img {
        width: 20px !important;
        height: 20px !important;
    }

    .infra-box-content h4 {
        font-size: 10px !important;
        margin-bottom: 2px !important;
    }

    .infra-box-content p {
        font-size: 8px !important;
        line-height: 1.25 !important;
    }

    /* Connected Operation Bottom Bar Mobile Layout — Centered Box, Icon on Top, Larger Text Below */
    .infra-connected-section {
        width: 100% !important;
        max-width: 100% !important;
        margin: 25px auto 0 auto !important;
        display: flex !important;
        justify-content: center !important;
        clear: both !important;
    }

    .infra-connected-bar {
        display: grid !important;
        grid-template-columns: repeat(2, 1fr) !important;
        gap: 16px 12px !important;
        padding: 18px 12px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 auto !important;
        box-sizing: border-box !important;
    }

    .infra-bar-item {
        display: flex !important;
        flex-direction: column !important;   /* Icon on top, text below */
        align-items: center !important;
        text-align: center !important;
        gap: 8px !important;
        padding: 8px 4px !important;
        border-right: none !important;
        border-bottom: none !important;
    }

    .infra-bar-badge {
        flex: 0 0 38px !important;
        width: 38px !important;
        height: 38px !important;
        min-width: 38px !important;
        margin: 0 auto !important;
    }

    .infra-bar-badge img {
        width: 32px !important;
        height: 32px !important;
        object-fit: contain !important;
    }

    .infra-bar-content {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        width: 100% !important;
    }

    .infra-bar-content h4 {
        font-size: 11.5px !important;
        line-height: 1.25 !important;
        text-align: center !important;
        margin-bottom: 4px !important;
        color: #ffffff !important;
        font-weight: 700 !important;
        letter-spacing: 0.02em !important;
    }

    .infra-bar-content p {
        font-size: 10px !important;
        line-height: 1.3 !important;
        text-align: center !important;
        color: rgba(255, 255, 255, 0.7) !important;
        margin: 0 !important;
    }

    /* Mobile Footer Enhancements */
    footer {
        padding: 40px 0 25px 0 !important;
    }

    .footer-brand {
        text-align: center !important;
        margin-bottom: 25px !important;
    }

    .footer-brand a img {
        height: 38px !important;
        margin: 0 auto 10px auto !important;
        display: block !important;
    }

    .footer-brand p {
        font-size: 12px !important;
        line-height: 1.5 !important;
        margin-bottom: 15px !important;
        text-align: center !important;
        padding: 0 10px !important;
    }

    .footer-brand .map-note {
        font-size: 10px !important;
        letter-spacing: 0.05em !important;
        text-align: center !important;
    }

    .footer-grid {
        gap: 0 !important; /* Stack elements flush for accordion borders */
        margin-bottom: 30px !important;
    }

    .footer-col {
        border-bottom: 1px solid rgba(230, 173, 50, 0.15) !important; /* Premium accordion borders */
    }

    .footer-col-header {
        margin-bottom: 0 !important;
        padding: 14px 0 !important;
        font-size: 13px !important;
        letter-spacing: 0.05em !important;
        font-weight: 700 !important;
        background: transparent !important;
        border: none !important;
        outline: none !important;
    }

    .footer-links {
        padding-left: 10px !important;
        gap: 8px !important;
    }

    .footer-links a {
        font-size: 12px !important;
        padding: 5px 0 !important;
        display: block !important;
    }

    /* Contact Info Block Mobile Styles */
    footer .glass-panel {
        padding: 16px 12px !important;
        margin-bottom: 30px !important;
        margin-top: 15px !important;
        gap: 12px !important;
        border: 1px solid rgba(230, 173, 50, 0.15) !important;
        text-align: center !important;
        margin-left: auto !important;
        margin-right: auto !important;
    }

    footer .glass-panel div {
        font-size: 11px !important;
        margin-bottom: 4px !important;
    }

    footer .glass-panel div strong {
        font-size: 9px !important;
        letter-spacing: 0.05em !important;
    }

    .footer-bottom {
        padding-top: 20px !important;
        gap: 15px !important;
    }

    .copyright {
        font-size: 10px !important;
    }

    .footer-social-link {
        font-size: 10px !important;
    }

    /* AI Analytics Section Mobile Optimizations */
    .ai-section {
        padding-top: 90px !important; /* Push down to avoid fixed header overlap */
        padding-bottom: 40px !important;
        background-image: url('../images/Website Data For Geo369/AI Intelligence/Background/BG1.jpg') !important;
        background-size: cover !important;
        background-position: center center !important;
    }

    .ai-header h2 {
        font-size: 20px !important;
        line-height: 1.3 !important;
    }

    .ai-header .eyebrow {
        font-size: 10px !important;
        letter-spacing: 0.05em !important;
    }

    .ai-cards-grid {
        grid-template-columns: repeat(2, 1fr) !important; /* 2 columns instead of vertical stack */
        gap: 10px !important;
    }

    .ai-card {
        padding: 12px 8px !important; /* Compact padding */
        flex-direction: column !important; /* Icon on top, text below */
        gap: 6px !important;
        text-align: center !important;
        justify-content: center !important;
        border-radius: 8px !important;
        min-height: 100px !important;
    }

    .ai-card-icon svg,
    .ai-card-icon-img {
        width: 32px !important;
        height: 32px !important;
    }

    .ai-card h4 {
        font-size: 9px !important; /* Scaled down for 2-column mobile layout */
        line-height: 1.35 !important;
        margin: 0 !important;
        letter-spacing: 0.02em !important;
    }

    .trend-strip {
        margin-top: 30px !important;
        padding: 12px 16px !important;
        gap: 4px !important;
    }

    .trend-title {
        font-size: 11px !important;
    }

    .trend-desc {
        font-size: 8px !important;
        line-height: 1.3 !important;
        text-align: center !important;
    }

    .screen-compare-ctas {
        margin-top: 25px !important;
    }

    .btn-compare-cta {
        padding: 10px 16px !important;
        font-size: 10px !important;
    }

    .btn-compare-cta-arrow svg {
        width: 14px !important;
        height: 14px !important;
    }

    /* Campaigns Section Mobile Optimizations */
    .campaigns-section {
        padding-top: 95px !important; /* Push down to avoid header overlap */
        padding-bottom: 40px !important;
    }

    .campaigns-headline {
        font-size: 20px !important;
        line-height: 1.3 !important;
    }

    .btn-campaigns-center-cta {
        padding: 10px 16px !important;
        font-size: 10px !important;
    }

    .impact-points-row {
        gap: 25px !important; /* Reduce vertical gap between categories */
    }

    .impact-grid-header {
        margin-bottom: 12px !important;
        padding-bottom: 6px !important;
    }

    .impact-grid-header h3 {
        font-size: 11px !important;
        letter-spacing: 0.05em !important;
    }

    .impact-cards-subgrid {
        grid-template-columns: repeat(2, 1fr) !important; /* Render sub-cards in 2 columns side-by-side */
        gap: 10px !important;
    }

    .impact-box-card {
        padding: 10px 8px !important; /* Compact padding */
        flex-direction: column !important; /* Icon on top, text below */
        gap: 6px !important;
        text-align: center !important;
        justify-content: center !important;
        border-radius: 8px !important;
        min-height: 95px !important;
    }

    .impact-box-icon img {
        width: 24px !important;
        height: 24px !important;
    }

    .impact-box-text {
        align-items: center !important;
        gap: 2px !important;
    }

    .impact-box-text h4 {
        font-size: 9px !important; /* Downscaled header */
        line-height: 1.3 !important;
        margin: 0 !important;
    }

    .impact-box-text p {
        font-size: 8px !important; /* Downscaled description */
        line-height: 1.25 !important;
        margin: 0 !important;
    }

    /* Hero Section Mobile Optimizations */
    .hero-content h1 {
        font-size: 24px !important; /* Scale down main hero heading */
        line-height: 1.25 !important;
    }

    .hero-content .supporting-line {
        font-size: 11px !important; /* Scale down description paragraph */
        line-height: 1.4 !important;
        margin-top: 10px !important;
        margin-bottom: 20px !important;
    }

    .btn-hero-gold {
        padding: 10px 18px !important; /* Compact button padding */
        font-size: 10px !important; /* Scale down button text */
        gap: 8px !important;
    }

    .btn-hero-gold .arrow-circle {
        width: 18px !important;
        height: 18px !important;
    }

    .hero-eyebrow-container .eyebrow {
        font-size: 9px !important; /* Scale down eyebrow text */
    }

    /* Global Eyebrow Row Fix: Keep — text — on single centered line on mobile */
    .eyebrow-container {
        display: inline-flex !important;
        align-items: center !important;
        justify-content: center !important;
        flex-wrap: nowrap !important;
        gap: 5px !important;
        white-space: nowrap !important;
        overflow: visible !important;
        width: auto !important;
        margin: 0 auto !important;
    }

    .eyebrow-container .eyebrow {
        font-size: 9px !important;
        letter-spacing: 0.08em !important;
        margin: 0 !important;
        display: inline !important;
        white-space: nowrap !important;
        line-height: 1 !important;
    }

    .eyebrow-container .gold-dash {
        font-size: 9px !important;
        flex-shrink: 0 !important;
        line-height: 1 !important;
        display: inline-flex !important;
        align-items: center !important;
    }

    /* Hero Section Mobile Background Video Overrides */
    .hero-section {
        min-height: 100vh !important;
        position: relative !important;
        display: block !important;
        padding-top: 0 !important;
        padding-bottom: 80px !important;
        background-color: #000000 !important;
        background-image: none !important; /* Remove static background image */
        overflow: visible !important;
    }
    
    .hero-section .container {
        position: relative !important;
        z-index: 2 !important;
        padding: 0 20px !important;
    }
    
    .hero-content {
        padding-left: 0 !important;
        margin-left: 0 !important;
        padding-top: 42vh !important; /* Pushes text down below the main video visual on mobile */
        text-align: center !important;
        max-width: 100% !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
    }
    
    .hero-eyebrow-container {
        justify-content: center !important;
    }
    
    .hero-content h1 {
        text-align: center !important;
        font-size: 24px !important;
        line-height: 1.25 !important;
    }
    
    .hero-content .supporting-line {
        text-align: center !important;
        margin: 16px auto 24px !important;
        font-size: 12px !important;
    }
    
    .hero-sublabel {
        justify-content: center !important;
        margin-top: 16px !important;
    }
    
    .hero-video {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 48vh !important; /* Made the video larger on mobile screen */
        object-fit: cover !important;
        object-position: 70% center !important;
        z-index: 0 !important;
        margin: 0 !important;
        border-radius: 0 !important;
        border: none !important;
        box-shadow: none !important;
        display: block !important;
    }
    
    .hero-video-overlay {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        width: 100% !important;
        height: 48vh !important;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.2) 0%, rgba(0, 0, 0, 0.5) 50%, #000000 100%) !important; /* Fades video seamlessly to solid black at the bottom */
        z-index: 1 !important;
        display: block !important;
    }
    
    .hero-overlay {
        display: none !important;
    }
    
    .hero-bottom-badge {
        position: absolute !important;
        bottom: 24px !important;
        left: 50% !important;
        right: auto !important;
        transform: translateX(-50%) !important;
        text-align: center !important;
        width: max-content !important;
        z-index: 5 !important;
        margin: 0 !important;
    }

    /* SIYAA studio background image fit on mobile — 100% full width, no black box borders */
    .studio-section {
        background-color: #000000 !important;
        background-image: none !important;
        position: relative !important;
        overflow: hidden !important;
        width: 100% !important;
    }

    .studio-video {
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        width: 100% !important;
        height: 100% !important;
        object-fit: cover !important;
        object-position: center center !important;
        transform: none !important;      /* Removes scale(0.9) box gap */
        margin: 0 !important;
        z-index: 0 !important;
        display: block !important;
    }

    .studio-section::before,
    .studio-shadow-overlay {
        content: '' !important;
        position: absolute !important;
        inset: 0 !important;
        width: 100% !important;
        height: 100% !important;
        background: linear-gradient(to bottom, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.60) 50%, #000000 100%) !important;
        z-index: 1 !important;
        pointer-events: none !important;
    }
}

/* ============================================================
   Laptop / Medium Screen Fix (769px – 1280px)
   Restores EXACT Web View design (3 yellow dots, connecting lines, 
   vertical timeline line, & 4-item bottom bar) scaled for laptops.
   ============================================================ */
@media (min-width: 769px) and (max-width: 1280px) {

    /* Hero section scaling for laptop */
    .hero-content {
        margin-left: 0 !important;
        padding-left: 0 !important;
        max-width: 100% !important;
    }

    .hero-content h1 {
        font-size: clamp(20px, 2.4vw, 30px) !important;
        line-height: 1.15 !important;
    }

    .hero-content .supporting-line {
        font-size: clamp(13px, 1.4vw, 16px) !important;
        max-width: 420px !important;
    }

    .hero-eyebrow-container .eyebrow {
        font-size: 11px !important;
    }

    /* Screen Infrastructure Section — Match Web View Layout */
    .infra-section.section-padding {
        padding: 90px 0 60px 0 !important; /* Top padding prevents top card cut-off */
    }

    .infra-grid {
        display: grid !important;
        grid-template-columns: 1fr 1.1fr !important;
        gap: 20px !important;
        align-items: center !important;
        margin-top: 40px !important;
    }

    /* Left column content */
    .infra-left-col {
        text-align: left !important;
        align-items: flex-start !important;
        margin-left: 0 !important;
        padding-left: 30px !important;    /* Shifts left column text & CTA slightly right on laptop */
        max-width: 100% !important;
    }

    .infra-left-col h2 {
        text-align: left !important;
        font-size: clamp(18px, 2.1vw, 25px) !important;
        line-height: 1.2 !important;
    }

    .infra-left-col .supporting-line {
        text-align: left !important;
        font-size: 13px !important;
    }

    .infra-left-col .eyebrow {
        justify-content: flex-start !important;
        font-size: 10px !important;
    }

    .btn-infra-cta {
        font-size: 11px !important;
        padding: 12px 16px !important;
        max-width: 360px !important;
    }

    /* Right column — Web View style timeline, dots & connecting lines */
    .infra-right-col {
        overflow: visible !important;
    }

    .infra-timeline {
        position: relative !important;
        padding-left: 30px !important;
        margin-left: 220px !important;    /* Shifted further right to give clean clearance from middle screen image */
        margin-top: -45px !important;     /* Vertical offset to align cards with screen image dots */
        gap: 16px !important;
        display: flex !important;
        flex-direction: column !important;
    }

    .infra-timeline-line {
        display: block !important;
        position: absolute !important;
        left: -90px !important;
        top: 15px !important;
        bottom: 15px !important;
        width: 2px !important;
        background: linear-gradient(180deg, rgba(230, 173, 50, 0.5) 0%, rgba(230, 173, 50, 0.05) 100%) !important;
    }

    .infra-box-item {
        position: relative !important;
        display: flex !important;
        align-items: center !important;
        gap: 14px !important;
        padding: 12px 16px !important;
        border-radius: 8px !important;
        max-width: 330px !important;       /* Reduces card width on laptop screens */
    }

    /* Connecting horizontal line to middle image */
    .infra-box-item::before {
        display: block !important;
        content: '' !important;
        position: absolute !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        height: 1px !important;
        background: rgba(230, 173, 50, 0.35) !important;
        left: -270px !important;
        width: 270px !important;
        pointer-events: none !important;
    }

    /* 3 Yellow dots matching Web view */
    .infra-box-item::after {
        display: block !important;
        content: '' !important;
        position: absolute !important;
        left: -160px !important;
        top: 50% !important;
        transform: translateY(-50%) !important;
        width: 7px !important;
        height: 7px !important;
        background: var(--gold-solid) !important;
        border-radius: 50% !important;
        box-shadow: 
            0 0 8px var(--gold-solid), 
            45px 0 0 var(--gold-solid), 
            90px 0 0 var(--gold-solid) !important;
        pointer-events: none !important;
    }

    /* First card vertical offset for dots */
    .infra-box-item:nth-child(2)::before,
    .infra-box-item:nth-child(2)::after {
        transform: translateY(calc(-50% - 20px)) !important;
    }

    .infra-box-badge {
        width: 40px !important;
        height: 40px !important;
        flex-shrink: 0 !important;
    }

    .infra-box-badge img {
        width: 32px !important;
        height: 32px !important;
    }

    .infra-box-content h4 {
        font-size: 13px !important;
        margin-bottom: 2px !important;
    }

    .infra-box-content p {
        font-size: 11px !important;
        line-height: 1.3 !important;
    }

    /* Bottom Connected Bar — 4 Items in 1 Single Horizontal Row (Web View Style) */
    .infra-connected-bar {
        display: grid !important;
        grid-template-columns: repeat(4, 1fr) !important;
        gap: 0 !important;
        padding: 20px 10px !important;
    }

    .infra-bar-item {
        display: flex !important;
        align-items: center !important;
        gap: 12px !important;
        padding: 0 12px !important;
    }

    .infra-bar-item:not(:last-child) {
        border-right: 1px solid rgba(230, 173, 50, 0.22) !important;
        border-bottom: none !important;
    }

    .infra-bar-badge {
        width: 38px !important;
        height: 38px !important;
        flex-shrink: 0 !important;
    }

    .infra-bar-badge img {
        width: 30px !important;
        height: 30px !important;
    }

    /* Section 09: Plan Your Campaign — Shift left content to the left on laptop */
    .cpv2-left {
        left: 4% !important;               /* Shifted to the left edge so it doesn't overlap billboard image */
        max-width: 360px !important;       /* Compact width for laptop screens */
    }

    .cpv2-heading {
        font-size: clamp(18px, 2.2vw, 28px) !important;
    }

    .cpv2-sub {
        font-size: 12px !important;
        margin-bottom: 16px !important;
    }

    .cpv2-cta {
        font-size: 11px !important;
        padding: 12px 18px !important;
        max-width: 320px !important;
    }

    .cpv2-features {
        gap: 10px !important;
    }

    .cpv2-feat-title {
        font-size: 10px !important;
    }

    .cpv2-feat-sub {
        font-size: 9px !important;
    }
}
