/* ============================================================
   BHAAJE - Full Cinematic Stylesheet
   ============================================================ */

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

:root {
    --gold:    #F15A29;
    --gold-lt: #FF7A4D;
    --navy:    #262262;
    --dark:    oklch(97% .018 90);
    --dark-2:  oklch(93% .02 85);
    --dark-3:  oklch(93% .02 85);
    --card-bg: oklch(99% .008 90);
    --mid:     oklch(88% .02 85);
    --border:  oklch(88% .02 85);
    --text:    oklch(24% .05 265);
    --muted:   oklch(45% .03 265);
    --ff-head: 'Poppins', sans-serif;
    --ff-brand: 'Orbitron', sans-serif;
    --ff-body: 'Open Sans', sans-serif;
    --ease-expo: cubic-bezier(0.19,1,0.22,1);
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    background: var(--dark);
    color: var(--text);
    font-family: var(--ff-body);
    font-size: 16px;
    line-height: 1.6;
    overflow-x: hidden;
}

img { max-width: 100%; display: block; }
a  { color: inherit; text-decoration: none; }
ul { list-style: none; }

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 3rem;
}

/* ---------- Typography helpers ---------- */
.lbl {
    font-family: var(--ff-body);
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 0.2em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.sec-sub {
    font-size: 1.05rem;
    color: var(--muted);
    max-width: 560px;
    margin-top: 1.2rem;
    line-height: 1.7;
}

.gold-text  { color: var(--gold); }
.promise-em { font-style: italic; color: var(--gold); }

/* ---------- Clip-line reveal ---------- */
.clip-line {
    overflow: visible !important;
    display: block;
    line-height: 1;
    position: relative;
}

/* ---------- Buttons ---------- */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    height: 40px;
    padding: 0 2rem;
    background: var(--gold);
    color: #fff;
    font-family: var(--ff-body);
    font-weight: 500;
    font-size: 0.875rem;
    border-radius: 6px;
    border: none;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1), 0 1px 2px -1px rgba(0, 0, 0, 0.1);
    transition: background 0.3s, opacity 0.3s;
}

.btn-primary:hover { 
    background: var(--gold);
    opacity: 0.9;
}

.btn-ghost {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    height: 40px;
    padding: 0 2rem;
    background: transparent;
    color: var(--navy);
    font-family: var(--ff-body);
    font-weight: 500;
    font-size: 0.875rem;
    border-radius: 6px;
    border: 1px solid rgba(38, 34, 98, 0.3);
    box-shadow: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    transition: background 0.3s, color 0.3s;
}

.btn-ghost:hover { 
    background: var(--navy);
    color: #fff;
}

/* ============================================================
   VIDEO INTRO
   ============================================================ */
#video-intro {
    position: fixed;
    inset: 0;
    z-index: 11000;
    background: #000;
    display: flex;
    align-items: center;
    justify-content: center;
}

#video-intro video {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

/* ============================================================
   PRELOADER
   ============================================================ */
#preloader {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: var(--dark);
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

.pre-inner {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.pre-chars {
    display: flex;
    gap: 0.15em;
}

.pre-chars span {
    font-family: var(--ff-brand);
    font-size: clamp(3rem, 10vw, 9rem);
    font-weight: 900;
    color: var(--text);
    display: block;
    will-change: transform, opacity, filter;
}

.pre-bar-wrap {
    width: clamp(180px, 30vw, 320px);
    height: 1px;
    background: rgba(255,255,255,0.1);
    border-radius: 2px;
    overflow: hidden;
}

.pre-bar {
    height: 100%;
    width: 0%;
    background: var(--gold);
    border-radius: 2px;
}

.pre-count {
    font-family: var(--ff-brand);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.1em;
    min-width: 3ch;
    text-align: center;
}

/* ============================================================
   CUSTOM CURSOR (Removed)
   ============================================================ */
.diff-card,
.svc-card,
.phase-card,
.engage-card,
.team-card {
    cursor: pointer;
}

/* ============================================================
   NAVBAR
   ============================================================ */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 900;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.5rem 3rem;
    background: rgba(252,252,253,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: background 0.4s, backdrop-filter 0.4s, transform 0.4s var(--ease-expo), padding 0.4s;
}

.navbar.scrolled {
    background: rgba(252,252,253,0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    padding: 0.3rem 3rem;
    border-bottom: 1px solid var(--border);
}

/* Make logo slightly smaller on scroll for a better sticky header experience */
.navbar.scrolled .nav-logo-img {
    height: 45px;
}

.navbar.hidden {
    transform: translateY(-110%);
}

.logo {
    text-decoration: none;
    display: flex;
    align-items: center;
}

.nav-logo-img {
    height: 60px;
    width: auto;
    object-fit: contain;
    mix-blend-mode: multiply; /* Blends the logo background seamlessly */
    transition: height 0.4s;
}

.nav-links {
    display: flex;
    gap: 2rem;
    align-items: center;
    font-size: calc(100% + 1.5px);
}

.nav-links a {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text);
    letter-spacing: 0.04em;
    transition: color 0.3s;
}

.nav-links a:hover { color: var(--gold); }

.nav-cta {
    font-family: var(--ff-head);
    font-size: 0.82rem;
    font-weight: 700;
    color: #000;
    background: var(--gold);
    padding: 0.6rem 1.4rem;
    border-radius: 100px;
    letter-spacing: 0.02em;
    transition: background 0.3s;
}

.nav-cta:hover { background: var(--gold-lt); }

/* ============================================================
   BURGER BUTTON
   ============================================================ */
.burger-btn {
    display: none; /* hidden on desktop */
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    background: transparent;
    border: 1.5px solid var(--border);
    border-radius: 8px;
    cursor: pointer;
    padding: 0;
    transition: background 0.2s, border-color 0.2s;
    flex-shrink: 0;
    z-index: 1000;
}

.burger-btn:hover {
    background: rgba(241, 90, 41, 0.06);
    border-color: rgba(241, 90, 41, 0.3);
}

.burger-btn.is-active .burger-line:nth-child(1) {
    transform: translateY(6.5px) rotate(45deg);
}
.burger-btn.is-active .burger-line:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}
.burger-btn.is-active .burger-line:nth-child(3) {
    transform: translateY(-6.5px) rotate(-45deg);
}

.burger-line {
    display: block;
    width: 20px;
    height: 2px;
    background: var(--text);
    border-radius: 2px;
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.32, 1), opacity 0.2s, background 0.2s;
    transform-origin: center;
}

/* ============================================================
   MOBILE NAV OVERLAY + DRAWER
   ============================================================ */
.mobile-nav-overlay {
    position: fixed;
    inset: 0;
    z-index: 800;
    background: rgba(0, 0, 0, 0.55);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.35s ease;
}

.mobile-nav-overlay.is-open {
    opacity: 1;
    pointer-events: all;
}

.mobile-nav-drawer {
    position: absolute;
    top: 0;
    right: 0;
    width: min(340px, 88vw);
    height: 100%;
    background: var(--navy);
    display: flex;
    flex-direction: column;
    transform: translateX(100%);
    transition: transform 0.45s cubic-bezier(0.16, 1, 0.32, 1);
    overflow-y: auto;
    overscroll-behavior: contain;
}

.mobile-nav-overlay.is-open .mobile-nav-drawer {
    transform: translateX(0);
}

/* Drawer header */
.mobile-nav-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.2rem 1.5rem;
    border-bottom: 1px solid rgba(255, 255, 255, 0.08);
}

.mobile-nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.mobile-nav-close {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.15);
    background: rgba(255, 255, 255, 0.06);
    color: #fff;
    font-size: 1.6rem;
    font-family: sans-serif;
    line-height: 1;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    padding-bottom: 2px;
    transition: background 0.2s, transform 0.3s;
}

.mobile-nav-close:hover {
    background: rgba(241, 90, 41, 0.2);
    transform: rotate(90deg);
}

/* Drawer links */
.mobile-nav-links {
    display: flex;
    flex-direction: column;
    padding: 1rem 0;
    flex: 1;
}

.mobile-nav-link {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.1rem 1.5rem;
    text-decoration: none;
    color: rgba(255, 255, 255, 0.75);
    border-bottom: 1px solid rgba(255, 255, 255, 0.06);
    transition: background 0.2s, color 0.2s, padding-left 0.25s;
    position: relative;
    overflow: hidden;
}

.mobile-nav-link::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--gold);
    transform: scaleY(0);
    transition: transform 0.25s ease;
    border-radius: 0 2px 2px 0;
}

.mobile-nav-link:hover {
    background: rgba(255, 255, 255, 0.05);
    color: #fff;
    padding-left: 1.9rem;
}

.mobile-nav-link:hover::before {
    transform: scaleY(1);
}

.mnl-num {
    display: none;
}

.mnl-text {
    font-family: 'Poppins', sans-serif;
    font-size: 1.05rem;
    font-weight: 600;
    letter-spacing: 0.02em;
    flex: 1;
}

.mnl-arrow {
    width: 16px;
    height: 16px;
    color: var(--gold);
    opacity: 0;
    transform: translateX(-6px);
    transition: opacity 0.2s, transform 0.25s;
    flex-shrink: 0;
}

.mobile-nav-link:hover .mnl-arrow {
    opacity: 1;
    transform: translateX(0);
}

/* Drawer footer */
.mobile-nav-footer {
    padding: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.mobile-nav-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.9rem 1.5rem;
    background: var(--gold);
    color: #fff;
    font-family: 'Poppins', sans-serif;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 8px;
    text-decoration: none;
    transition: opacity 0.2s, transform 0.2s;
}

.mobile-nav-cta svg {
    width: 15px;
    height: 15px;
}

.mobile-nav-cta:hover {
    opacity: 0.9;
    transform: translateY(-1px);
}

.mobile-nav-tagline {
    text-align: center;
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.3);
    letter-spacing: 0.05em;
    font-style: italic;
}

/* Hide nav-cta-btn on mobile */
@media (max-width: 768px) {
    .nav-cta-btn {
        display: none;
    }
    .burger-btn {
        display: flex;
    }
}


/* ============================================================
   HERO
   ============================================================ */
.hero {
    min-height: 85vh;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 6rem 3rem 1rem;
    overflow: hidden;
    background: var(--dark);
    will-change: transform;
}

/* Orbs */
.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(120px);
    pointer-events: none;
    will-change: transform;
}

.orb-gold {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(241,90,41,0.08) 0%, transparent 70%);
    top: -100px;
    right: -100px;
}

.orb-blue {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(38,34,98,0.06) 0%, transparent 70%);
    bottom: -80px;
    left: -60px;
}

/* Noise + Grid */
.noise-layer {
    position: absolute;
    inset: 0;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 256 256' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)' opacity='0.04'/%3E%3C/svg%3E");
    opacity: 0.5;
    pointer-events: none;
    z-index: 2;
}

.grid-layer {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,0,0,0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.02) 1px, transparent 1px);
    background-size: 80px 80px;
    pointer-events: none;
    z-index: 2;
}

/* Hero Content Row - side by side layout */
.hero-content-row {
    position: relative;
    z-index: 3;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
}

.hero-inner {
    position: relative;
    z-index: 100;
    max-width: 1400px;
    flex-shrink: 1;
    min-width: 0;
    overflow: visible;
}

.hero-image-wrapper {
    flex: 1;
    display: flex;
    justify-content: center;
    align-items: center;
    max-width: 46%;
    margin-right: 2rem;
}

/* ============================================================
   HERO LOGO SHOWCASE - Cinematic Centerpiece
   ============================================================ */
.hero-logo-showcase {
    position: relative;
    z-index: 1;
    width: clamp(500px, 45vw, 800px);
    height: clamp(500px, 45vw, 800px);
    flex-shrink: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
}



/* The logo itself */
.hero-logo-container {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    transform: translate(-50%, -50%); /* Perfect centering alignment with rings */
    z-index: 10;
}

.hero-logo-img {
    width: 65%; /* Elegant standalone size */
    height: 65%;
    object-fit: contain;
    mix-blend-mode: multiply; /* Blends white background into the clean hero surface */
    filter: drop-shadow(0 0 20px rgba(255, 255, 255, 0.4))
            drop-shadow(0 0 40px rgba(241, 90, 41, 0.5));
    transition: all 0.5s ease;
    animation: logoCinematic 6s ease-in-out infinite;
    /* Significant downward shift to counteract the top-heavy logo image */
}

@keyframes logoCinematic {
    0%, 100% { 
        transform: translate(-20px, 60px) scale(1); 
        filter: drop-shadow(0 0 15px rgba(255, 255, 255, 0.2)) drop-shadow(0 0 30px rgba(241, 90, 41, 0.4)); 
    }
    50% { 
        transform: translate(-20px, 50px) scale(1.04); 
        filter: drop-shadow(0 0 25px rgba(255, 255, 255, 0.4)) drop-shadow(0 0 50px rgba(241, 90, 41, 0.6)); 
    }
}

/* Animated Glow Rings - brand navy */
.logo-ring {
    position: absolute;
    top: 50%;
    left: 50%;
    border-radius: 50%;
    border: 1px solid;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.logo-ring-1 {
    width: clamp(340px, 30vw, 500px);
    height: clamp(340px, 30vw, 500px);
    border-color: rgba(241, 90, 41, 0.25);
    animation: ringPulse1 4s ease-in-out infinite, ringSpin 20s linear infinite;
}

.logo-ring-2 {
    width: clamp(400px, 35vw, 580px);
    height: clamp(400px, 35vw, 580px);
    border-color: rgba(38, 34, 98, 0.35);
    border-width: 2px;
    animation: ringPulse2 5s ease-in-out infinite, ringSpin 30s linear infinite reverse;
}

.logo-ring-3 {
    width: clamp(450px, 40vw, 650px);
    height: clamp(450px, 40vw, 650px);
    border-color: rgba(241, 90, 41, 0.08);
    border-style: dashed;
    animation: ringPulse3 6s ease-in-out infinite, ringSpin 25s linear infinite;
}

@keyframes ringPulse1 {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.06); }
}

@keyframes ringPulse2 {
    0%, 100% { opacity: 0.3; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.7; transform: translate(-50%, -50%) scale(1.03); }
}

@keyframes ringPulse3 {
    0%, 100% { opacity: 0.25; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.5; transform: translate(-50%, -50%) scale(1.04); }
}

@keyframes ringSpin {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Radial Aura - brand orange + navy glow */
.logo-aura {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: clamp(360px, 32vw, 520px);
    height: clamp(360px, 32vw, 520px);
    border-radius: 50%;
    background: radial-gradient(
        circle,
        rgba(241, 90, 41, 0.12) 0%,
        rgba(241, 90, 41, 0.06) 30%,
        rgba(38, 34, 98, 0.08) 55%,
        transparent 80%
    );
    filter: blur(35px);
    animation: auraPulse 4s ease-in-out infinite;
    pointer-events: none;
}

@keyframes auraPulse {
    0%, 100% { opacity: 0.6; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.18); }
}

/* Laser Line - brand orange sweep */
.logo-laser-line {
    position: absolute;
    top: 50%;
    left: -50%;
    width: 200%;
    height: 2px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        transparent 20%,
        rgba(241, 90, 41, 0) 30%,
        rgba(241, 90, 41, 0.8) 48%,
        #fff 50%,
        rgba(241, 90, 41, 0.8) 52%,
        rgba(241, 90, 41, 0) 70%,
        transparent 80%,
        transparent 100%
    );
    transform: translateY(-50%);
    animation: heroLaserSweep 5s cubic-bezier(0.4, 0, 0.2, 1) infinite;
    pointer-events: none;
    z-index: 5;
}

.logo-laser-line::before {
    content: '';
    position: absolute;
    top: -10px;
    left: 0;
    right: 0;
    height: 22px;
    background: linear-gradient(
        90deg,
        transparent 0%,
        transparent 20%,
        rgba(241, 90, 41, 0) 30%,
        rgba(241, 90, 41, 0.12) 48%,
        rgba(255, 255, 255, 0.15) 50%,
        rgba(241, 90, 41, 0.12) 52%,
        rgba(241, 90, 41, 0) 70%,
        transparent 80%,
        transparent 100%
    );
    filter: blur(8px);
}

@keyframes heroLaserSweep {
    0% { transform: translateY(-50%) translateX(-100%); opacity: 0; }
    10% { opacity: 1; }
    40% { transform: translateY(-50%) translateX(100%); opacity: 1; }
    50% { opacity: 0; }
    100% { opacity: 0; transform: translateY(-50%) translateX(100%); }
}

/* Floating Particles - brand orange + navy */
.logo-particle {
    position: absolute;
    border-radius: 50%;
    pointer-events: none;
    z-index: 3;
}

.logo-particle.p1 {
    width: 4px; height: 4px;
    background: var(--gold);
    top: 12%; left: 18%;
    animation: particleFloat 8s ease-in-out infinite;
    box-shadow: 0 0 10px var(--gold);
}

.logo-particle.p2 {
    width: 3px; height: 3px;
    background: rgba(38, 34, 98, 0.9);
    top: 22%; right: 12%;
    animation: particleFloat 6s ease-in-out infinite 1s;
    box-shadow: 0 0 8px rgba(38, 34, 98, 0.6);
}

.logo-particle.p3 {
    width: 5px; height: 5px;
    background: var(--gold);
    bottom: 18%; left: 8%;
    animation: particleFloat 7s ease-in-out infinite 0.5s;
    box-shadow: 0 0 12px rgba(241, 90, 41, 0.5);
}

.logo-particle.p4 {
    width: 3px; height: 3px;
    background: #fff;
    bottom: 28%; right: 18%;
    animation: particleFloat 9s ease-in-out infinite 2s;
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.4);
}

.logo-particle.p5 {
    width: 2px; height: 2px;
    background: var(--gold);
    top: 38%; left: 3%;
    animation: particleFloat 5s ease-in-out infinite 1.5s;
    box-shadow: 0 0 6px var(--gold);
}

.logo-particle.p6 {
    width: 4px; height: 4px;
    background: rgba(38, 34, 98, 0.7);
    top: 58%; right: 5%;
    animation: particleFloat 7.5s ease-in-out infinite 3s;
    box-shadow: 0 0 10px rgba(38, 34, 98, 0.4);
}

@keyframes particleFloat {
    0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
    25% { transform: translate(12px, -18px) scale(1.6); opacity: 1; }
    50% { transform: translate(-10px, -28px) scale(0.7); opacity: 0.5; }
    75% { transform: translate(15px, -12px) scale(1.4); opacity: 0.8; }
}

.hero-eyebrow {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 0.7rem;
    padding: 0.55rem 1.4rem;
    background: linear-gradient(135deg, rgba(38, 34, 98, 0.04), rgba(255, 255, 255, 0.3));
    border: 1px solid rgba(38, 34, 98, 0.1);
    border-radius: 100px;
    margin-bottom: 2rem;
    opacity: 0;
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 0 4px 20px rgba(38, 34, 98, 0.05), inset 0 1px 1px rgba(255, 255, 255, 0.5);
    overflow: hidden;
}

.hero-eyebrow::before {
    content: '';
    position: absolute;
    top: 0; left: -100%;
    width: 50%; height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
    animation: badgeShine 4s infinite;
}

@keyframes badgeShine {
    0% { left: -100%; }
    20%, 100% { left: 200%; }
}

.badge-icon {
    width: 16px;
    height: 16px;
    color: var(--gold);
    stroke-width: 2.5px;
}

.badge-text {
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--navy);
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.badge-divider {
    width: 1px;
    height: 12px;
    background: rgba(38, 34, 98, 0.2);
}

.badge-sub {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.hero-headline { 
    margin-bottom: 0.3rem; 
    overflow: visible;
}

.hero-word {
    font-family: var(--ff-head);
    font-size: clamp(2.2rem, 4vw, 3.8rem);
    font-weight: 400;
    text-shadow: 0 4px 12px rgba(255,255,255,0.8), 0 2px 4px rgba(0,0,0,0.05);
    letter-spacing: -0.04em;
    line-height: 1.05;
    display: block;
    will-change: transform;
    transform-origin: bottom center;
}

.hero-subline { margin-bottom: 1.2rem; }

.hero-sub {
    font-family: var(--ff-head);
    font-size: clamp(1.4rem, 3vw, 2.6rem);
    font-weight: 500;
    text-shadow: 0 2px 8px rgba(255,255,255,0.6);
    letter-spacing: -0.02em;
    line-height: 1;
    color: var(--muted);
    display: block;
    will-change: transform;
}

.hero-desc-box {
    margin-bottom: 2.5rem;
    max-width: 600px;
    border-left: 3px solid var(--gold);
    padding-left: 1.5rem;
    position: relative;
}

.hero-tagline {
    opacity: 0;
    margin-bottom: 0;
}

.hero-tagline.primary {
    font-size: 1rem;
    font-weight: 400;
    color: var(--text);
    line-height: 1.7;
    letter-spacing: 0.02em;
    text-transform: none;
    margin-bottom: 1rem;
}

.hero-tagline.secondary {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.5;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    font-weight: 600;
}

.hero-divider {
    width: 40px;
    height: 1px;
    background: var(--border);
    margin: 1rem 0;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    opacity: 0;
}

/* Hero metrics bar */
.hero-metrics {
    position: absolute;
    bottom: 3rem;
    right: 3rem;
    display: flex;
    align-items: center;
    gap: 2.5rem;
    z-index: 2;
    opacity: 0;
}

.hm-item { text-align: right; }

.hm-num {
    font-family: var(--ff-head);
    font-size: 2.2rem;
    font-weight: 800;
    color: var(--text);
    line-height: 1;
    letter-spacing: -0.03em;
}

.hm-count { font-variant-numeric: tabular-nums; }

.hm-lbl {
    font-size: 0.7rem;
    color: var(--muted);
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-top: 0.2rem;
}

.hm-sep {
    width: 1px;
    height: 40px;
    background: var(--border);
}

/* Scroll cue */
.scroll-cue {
    position: absolute;
    bottom: 2.5rem;
    left: 3rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    z-index: 2;
    opacity: 0;
}

.sc-track {
    width: 30px;
    height: 50px;
    border: 1.5px solid rgba(255,255,255,0.2);
    border-radius: 20px;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    padding: 6px;
}

.sc-thumb {
    width: 4px;
    height: 10px;
    background: var(--gold);
    border-radius: 4px;
    animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
    0%   { transform: translateY(0); opacity: 1; }
    60%  { transform: translateY(16px); opacity: 0.3; }
    100% { transform: translateY(0); opacity: 1; }
}

.scroll-cue span {
    font-size: 0.68rem;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--muted);
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

/* ============================================================
   TICKER
   ============================================================ */
.ticker-wrap {
    overflow: hidden;
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 1rem 0;
    background: var(--dark-2);
}

.ticker-track {
    display: flex;
    gap: 2.5rem;
    width: max-content;
    animation: tickerScroll 30s linear infinite;
}

.ticker-track span {
    font-size: 0.78rem;
    font-weight: 500;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    white-space: nowrap;
}

.ticker-track .tdot {
    color: var(--gold);
    font-size: 1rem;
}

@keyframes tickerScroll {
    from { transform: translateX(0); }
    to   { transform: translateX(-50%); }
}

/* ============================================================
   SECTION SHARED
   ============================================================ */
section { padding: 4.5rem 0; }

.heading-slide {
    font-family: var(--ff-head);
    font-size: clamp(2.4rem, 5vw, 4.5rem);
    font-weight: 300;
    letter-spacing: -0.03em;
    line-height: 1.05;
    display: block;
    will-change: transform;
}

/* ============================================================
   ABOUT
   ============================================================ */
.about { 
    background: var(--dark); 
    position: relative;
    overflow: hidden;
    padding-top: 1rem;
}

.about-bg-shape {
    position: absolute;
    top: -200px;
    right: -200px;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(241,90,41,0.03) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
}

.about-bg-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(0,0,0,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    pointer-events: none;
    z-index: 0;
}

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

.about-layout {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: stretch;
    margin-bottom: 1rem;
}

.difference .about-eyebrow {
    margin-bottom: 0.5rem;
}

.about-eyebrow .eyebrow-line {
    width: 40px;
    height: 2px;
    background: var(--gold);
}
.about-eyebrow span:not(.eyebrow-line) {
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.25em;
    color: var(--navy);
    text-transform: uppercase;
}

.about-title-wrap {
    position: relative;
}

.about-title-light {
    font-family: var(--ff-head);
    font-weight: 400;
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--text);
    letter-spacing: -0.02em;
    line-height: 1.1;
    text-transform: none;
    margin-bottom: 0;
}

.about-title-bold {
    font-family: var(--ff-head);
    font-weight: 400;
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--navy);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.about-title-accent {
    font-family: var(--ff-head);
    font-weight: 400;
    font-size: clamp(2rem, 3.5vw, 3rem);
    color: var(--gold);
    letter-spacing: -0.02em;
    line-height: 1.1;
}

.about-title-accent .tdot {
    color: var(--navy);
}

.about-p {
    font-size: 1.05rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 1.5rem;
}

.about-cards-wrap {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
    margin-top: 2.5rem;
}

.about-quote {
    display: flex;
    gap: 1.2rem;
    padding: 1.5rem 1.8rem;
    background: rgba(255, 255, 255, 0.6);
    border: 1px solid rgba(38, 34, 98, 0.05);
    border-left: 3px solid var(--gold);
    border-radius: 8px 16px 16px 8px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.02);
    backdrop-filter: blur(10px);
    transition: transform 0.4s ease, box-shadow 0.4s ease;
}

.about-quote:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 40px rgba(38, 34, 98, 0.06);
}

.aq-icon {
    width: 24px;
    height: 24px;
    color: var(--gold);
    flex-shrink: 0;
    margin-top: 2px;
}

.aq-lbl {
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 0.18em;
    color: var(--navy);
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.about-quote blockquote {
    font-size: 0.95rem;
    color: var(--text);
    line-height: 1.7;
    font-weight: 400;
}

/* Stats bar */
/* Stats bar - Compact Single Line */
.stats-bar.glass-stats {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 4rem;
    background: linear-gradient(135deg, rgba(38, 34, 98, 0.02), rgba(255, 255, 255, 0.8));
    border: 1px solid rgba(255, 255, 255, 0.5);
    border-radius: 20px;
    box-shadow: 0 20px 50px rgba(0,0,0,0.03), inset 0 2px 5px rgba(255,255,255,0.8);
    backdrop-filter: blur(20px);
}

.sb-item {
    flex: 1;
    padding: 0.5rem 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    transition: background 0.3s ease;
}

.sb-item:hover {
    background: rgba(229,169,61,0.02);
}

.sb-divider {
    width: 1px;
    height: 30px;
    background: var(--border);
    flex-shrink: 0;
}

.sb-num {
    font-family: var(--ff-head);
    font-size: 2rem;
    font-weight: 500;
    color: var(--gold);
    letter-spacing: -0.03em;
    line-height: 1;
    font-variant-numeric: tabular-nums;
}

.sb-plus { 
    font-size: 0.7em;
    vertical-align: super;
}

.sb-lbl {
    font-size: 1.1rem;
    color: var(--muted);
    letter-spacing: 0.08em;
    text-transform: uppercase;
    font-weight: 600;
    line-height: 1.2;
    text-align: left;
}

@media (max-width: 1024px) {
    .stats-bar { flex-wrap: wrap; }
    .sb-item { flex: 1 1 45%; justify-content: flex-start; padding-left: 2rem; }
    .sb-divider { display: none; }
}

@media (max-width: 600px) {
    .sb-item { flex: 1 1 100%; }
}

@media (max-width: 1024px) {
    .stats-bar { grid-template-columns: repeat(2, 1fr); }
    .sb-divider:nth-child(2), .sb-divider:nth-child(6) { display: none; }
}

@media (max-width: 600px) {
    .stats-bar { grid-template-columns: 1fr; }
    .sb-divider { display: none; }
}

@media (max-width: 1024px) {
    .stats-bar { grid-template-columns: repeat(2, 1fr); gap: 1rem; }
}

@media (max-width: 600px) {
    .stats-bar { grid-template-columns: 1fr; }
}

/* ============================================================
   DIFFERENCE
   ============================================================ */
.difference {
    background: var(--dark-2);
    padding: 3rem 0 1rem;
}

.diff-hd { margin-bottom: 4rem; }

.diff-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    border-radius: 16px;
}

[data-glow] {
    --base: 30;
    --spread: 200;
    --radius: 14;
    --border: 3;
    --backdrop: hsl(0 0% 60% / 0.05);
    --backup-border: var(--backdrop);
    --size: 200;
    --outer: 1;
    --saturation: 100;
    --lightness: 45;
    --bg-spot-opacity: 0.05;
    --border-spot-opacity: 1;
    --border-light-opacity: 0.5;
    --border-size: calc(var(--border, 2) * 1px);
    --spotlight-size: calc(var(--size, 150) * 1px);
    
    /* Inherit from root or default to 0 */
    --gx: var(--x, 0);
    --gy: var(--y, 0);
    --gxp: var(--xp, 0);
    --gyp: var(--yp, 0);
    
    --hue: calc(var(--base) + (var(--gxp) * var(--spread)));
    
    position: relative;
    touch-action: none;
    border-radius: calc(var(--radius) * 1px);
    background-color: var(--backdrop, transparent);
    border: var(--border-size) solid var(--backup-border);
    background-image: radial-gradient(
        var(--spotlight-size) var(--spotlight-size) at
        calc(var(--gx) * 1px)
        calc(var(--gy) * 1px),
        hsl(var(--hue) calc(var(--saturation) * 1%) calc(var(--lightness) * 1%) / var(--bg-spot-opacity)), transparent
    );
    background-size: calc(100% + (2 * var(--border-size))) calc(100% + (2 * var(--border-size)));
    background-position: 50% 50%;
    background-attachment: fixed;
}

/* Different colors for each card */
[data-glow][data-glow-color="blue"] { --base: 220; --spread: 200; }
[data-glow][data-glow-color="purple"] { --base: 280; --spread: 300; }
[data-glow][data-glow-color="green"] { --base: 120; --spread: 200; }
[data-glow][data-glow-color="red"] { --base: 0; --spread: 200; }
[data-glow][data-glow-color="orange"] { --base: 30; --spread: 200; }

[data-glow]::before,
[data-glow]::after {
    pointer-events: none;
    content: "";
    position: absolute;
    inset: calc(var(--border-size) * -1);
    border: var(--border-size) solid transparent;
    border-radius: calc(var(--radius) * 1px);
    background-attachment: fixed;
    background-size: calc(100% + (2 * var(--border-size))) calc(100% + (2 * var(--border-size)));
    background-repeat: no-repeat;
    background-position: 50% 50%;
    mask: linear-gradient(transparent, transparent), linear-gradient(white, white);
    mask-clip: padding-box, border-box;
    mask-composite: intersect;
    -webkit-mask-composite: source-in;
    opacity: 0;
    transition: opacity 0.4s ease;
}

[data-glow]:hover::before,
[data-glow]:hover::after {
    opacity: 1;
}

[data-glow]::before {
    background-image: radial-gradient(
        calc(var(--spotlight-size) * 0.75) calc(var(--spotlight-size) * 0.75) at
        calc(var(--gx) * 1px)
        calc(var(--gy) * 1px),
        hsl(var(--hue) calc(var(--saturation) * 1%) calc(var(--lightness, 50) * 1%) / var(--border-spot-opacity, 1)), transparent 100%
    );
    filter: brightness(2);
}

[data-glow]::after {
    background-image: radial-gradient(
        calc(var(--spotlight-size) * 0.5) calc(var(--spotlight-size) * 0.5) at
        calc(var(--gx) * 1px)
        calc(var(--gy) * 1px),
        hsl(0 100% 100% / var(--border-light-opacity, 1)), transparent 100%
    );
}

[data-glow] [data-glow] {
    position: absolute;
    inset: 0;
    will-change: filter;
    opacity: 0;
    transition: opacity 0.4s ease;
    border-radius: calc(var(--radius) * 1px);
    border-width: calc(var(--border-size) * 20);
    filter: blur(calc(var(--border-size) * 10));
    background: none;
    pointer-events: none;
    border: none;
}

[data-glow]:hover [data-glow] {
    opacity: var(--outer, 1);
}

[data-glow] > [data-glow]::before {
    inset: -10px;
    border-width: 10px;
}


.diff-card {
    padding: 1.8rem 1.8rem;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-start;
    gap: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.diff-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 0, 0, 0.4);
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
}

.diff-header-flex {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.5rem;
}
.diff-header-flex .dc-icon,
.diff-header-flex .ec-icon {
    margin-bottom: 0;
    flex-shrink: 0;
}

.diff-card h3 {
    font-family: var(--ff-head);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0;
    line-height: 1.3;
}

.diff-card p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.8;
}

.dc-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(241, 90, 41, 0.12);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
}

.dc-icon svg { width: 22px; height: 22px; }

/* ============================================================
   SERVICES - Horizontal Scroll
   ============================================================ */
.svc-pin {
    position: relative;
    padding: 3rem 0 2rem;
    background: var(--dark);
}

.svc-sticky {
    position: relative;
    display: block;
    padding: 0;
    background: transparent;
}

.svc-top {
    flex-shrink: 0;
    margin-bottom: 1rem;
}

.svc-top .heading-slide {
    font-size: clamp(2rem, 4vw, 3.5rem);
}

.svc-overflow {
    flex: 1;
    overflow-x: auto;
    overflow-y: hidden;
    position: relative;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    margin-top: 1rem;
    padding-bottom: 2rem;
}
.svc-overflow::-webkit-scrollbar { display: none; }

.svc-track {
    display: flex;
    gap: 1.5rem;
    height: auto;
    width: max-content;
    align-items: stretch;
    padding-right: 3rem;
}

.svc-card {
    scroll-snap-align: start;
    width: 380px;
    flex-shrink: 0;
    min-height: auto;
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: border-color 0.3s;
    will-change: transform;
}

.svc-card:hover { border-color: rgba(229,169,61,0.25); }

.svc-num {
    font-family: var(--ff-head);
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.2em;
    color: var(--gold);
}

.svc-card h3 {
    font-family: var(--ff-head);
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text);
    line-height: 1.25;
    min-height: 3.5rem; /* Forces 2 lines of height so images below are perfectly aligned */
    display: flex;
    align-items: flex-start;
    margin: 0;
}

.svc-image {
    width: 100%;
    height: 180px;
    object-fit: cover;
    border-radius: 8px;
    margin: 0 0 0.5rem 0;
    box-shadow: 0 4px 15px rgba(0,0,0,0.2);
}

.svc-card p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 0.8rem;
}

.svc-list {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.svc-list li {
    font-size: 0.82rem;
    color: var(--muted);
    padding-left: 1rem;
    position: relative;
}

.svc-list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0.55em;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: var(--gold);
}

.svc-read-more {
    margin: 0;
    padding: 0;
    background: transparent;
    border: none;
    color: var(--gold);
    font-size: 0;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    vertical-align: middle;
    margin-left: 0.3rem;
}

.svc-read-more i {
    width: 16px;
    height: 16px;
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    stroke-width: 2.5;
}

.svc-read-more:hover {
    color: var(--gold-lt, #d4951f);
}

.svc-read-more:hover i {
    transform: translateX(4px);
}

.svc-card .svc-list {
    margin-bottom: 0;
}

/* Footer bar */
.svc-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 2rem 0;
    border-top: 1px solid var(--border);
    margin-top: 2rem;
}

.svc-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 54px;
    height: 54px;

    border-radius: 50%;
    border: 1px solid var(--border);
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: var(--text);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 100;
    box-shadow: 0 4px 15px rgba(0,0,0,0.05);
}

.svc-prev { left: 1.5rem; }
.svc-next { right: 1.5rem; }

.svc-btn:hover {
    background: var(--gold);
    border-color: var(--gold);
    color: #fff;
    transform: translateY(-50%) scale(1.1);
}

.svc-prog-wrap {
    flex: 1;
    height: 1px;
    background: rgba(0,0,0,0.08);
    border-radius: 2px;
    overflow: hidden;
    margin-right: 2rem;
}

.svc-bar {
    height: 100%;
    width: 0%;
    background: var(--gold);
    border-radius: 2px;
    will-change: width;
}

.svc-count {
    font-family: var(--ff-head);
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--muted);
    white-space: nowrap;
}

.svc-cur { color: var(--text); }

/* ============================================================
   APPROACH
   ============================================================ */
.approach { 
    background: var(--dark-2); 
    padding-top: 3rem;
}

.approach-hd { margin-bottom: 4rem; }

.phase-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    perspective: 1500px;
}

.phase-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 2.2rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: border-color 0.3s, background 0.3s;
    will-change: transform;
}

.phase-card:hover { border-color: rgba(229,169,61,0.2); }

.phase-num {
    font-family: var(--ff-head);
    font-size: 3rem;
    font-weight: 900;
    color: rgba(0, 0, 0, 0.8);
    line-height: 1;
    margin-bottom: 1rem;
    letter-spacing: -0.04em;
}

.phase-header-flex {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
}
.phase-header-flex .ec-icon {
    margin-bottom: 0;
    flex-shrink: 0;
}

.phase-card h3 {
    font-family: var(--ff-head);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text);
    margin-bottom: 0;
    line-height: 1.3;
}

.phase-card p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.7;
}

.tech-strip {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    margin-top: 3rem;
    padding: 1.5rem 2rem;
    background: rgba(229,169,61,0.05);
    border: 1px solid rgba(229,169,61,0.15);
    border-radius: 10px;
}

.tech-strip svg { color: var(--gold); width: 20px; height: 20px; flex-shrink: 0; }

.tech-strip p {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.6;
}

.tech-strip strong { color: #F2C46D; font-weight: 600; }

/* ============================================================
   ENGAGEMENT
   ============================================================ */
.engagement { background: var(--dark); }

.engage-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    margin-top: 1.5rem;
    gap: 2rem;
    position: relative;
}

.engage-card {
    background: var(--card-bg);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 1.5rem 1.8rem;
    display: flex;
    flex-direction: column;
    position: relative;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05), 0 2px 4px -1px rgba(0, 0, 0, 0.03);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
}

.engage-card:hover { 
    transform: translateY(-4px);
    box-shadow: 0 10px 25px rgba(0,0,0,0.1);
    z-index: 10;
}

.ec-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(229,169,61,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 1rem;
    transition: all 0.4s cubic-bezier(0.25, 1, 0.5, 1);
}

.ec-icon svg { width: 22px; height: 22px; }

.engage-card:hover .ec-icon {
    background: var(--gold);
    color: #fff;
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 5px 15px rgba(229,169,61,0.3);
}

.engage-card h3 {
    font-family: var(--ff-head);
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0;
    line-height: 1.35;
    transition: color 0.3s;
}

.engage-card:hover h3 {
    color: var(--gold);
}

.engage-card p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.5;
}

.ec-tag {
    display: inline-block;
    align-self: flex-start;
    margin-top: 1rem;
    padding: 0.3rem 0.8rem;
    font-size: 0.65rem;
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--gold);
    background: rgba(229,169,61,0.08);
    border: 1px solid rgba(229,169,61,0.2);
    border-radius: 100px;
}

/* Fallback for smaller screens */
@media (max-width: 1200px) {
    .engage-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .engage-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 500px) {
    .engage-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   SECTORS
   ============================================================ */
.sectors { background: var(--dark-2); }

.marquee-wrapper {
    overflow: hidden;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    margin-top: 3rem;
    padding: 1.5rem 0;
}

.marquee-track {
    display: flex;
    gap: 2rem;
    width: max-content;
}

.marquee-content {
    display: flex;
    gap: 2rem;
    animation: scroll-marquee 40s linear infinite;
}

.marquee-track:hover .marquee-content {
    animation-play-state: paused;
}

.marquee-item {
    width: 220px;
    height: 280px;
    flex-shrink: 0;
    border-radius: 14px;
    overflow: hidden;
    box-shadow: 0 8px 24px rgba(0,0,0,0.12);
    position: relative;
    cursor: pointer;
}

.marquee-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.8s cubic-bezier(0.25, 1, 0.5, 1);
}

.marquee-item:hover img {
    transform: scale(1.08);
}

.marquee-item::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(to top, rgba(0,0,0,0.8), transparent 50%);
    z-index: 1;
    transition: opacity 0.4s;
}

.marquee-item:hover::after {
    background: linear-gradient(to top, rgba(0,0,0,0.9), transparent 60%);
}

.marquee-title {
    position: absolute;
    bottom: 1rem;
    left: 1rem;
    right: 1rem;
    color: #fff;
    font-family: var(--ff-head);
    font-size: 0.95rem;
    font-weight: 500;
    z-index: 2;
    margin: 0;
    text-shadow: 0 2px 4px rgba(0,0,0,0.5);
}

@keyframes scroll-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-100% - 2rem)); }
}

/* ============================================================
   LEADERSHIP - 3D Tilt Cards
   ============================================================ */
.leadership { 
    background: var(--dark); 
    padding-bottom: 1rem;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3.5rem;
}

.team-card {
    perspective: 1200px;
    cursor: pointer;
    height: 100%;
}

.card-inner {
    background: #ffffff;
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 1.8rem;
    position: relative;
    overflow: hidden;
    transform-style: preserve-3d;
    transition: border-color 0.3s;
    will-change: transform;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.team-card:hover .card-inner { border-color: rgba(229,169,61,0.25); }

/* Sheen overlay */
.card-sheen {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    background: radial-gradient(
        circle at var(--sheen-x, 50%) var(--sheen-y, 50%),
        rgba(229,169,61,0.08) 0%,
        transparent 60%
    );
    pointer-events: none;
    transition: opacity 0.3s;
    opacity: 0;
}

.team-card:hover .card-sheen { opacity: 1; }

.tc-head {
    display: flex;
    flex-direction: row;
    align-items: center;
    text-align: left;
    gap: 1rem;
    margin-bottom: 1.2rem;
}

.tc-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold), #b07d1a);
    color: #000;
    font-family: var(--ff-head);
    font-size: 1.2rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    overflow: hidden;
    border: 3px solid var(--text);
}

.tc-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.tc-badge {
    font-size: 0.65rem;
    font-weight: 400;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 0.3rem;
}

.tc-info h3 {
    font-family: var(--ff-head);
    font-size: 1.3rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.2rem;
}

.tc-tenure {
    font-size: 0.82rem;
    color: var(--muted);
}

.tc-bio {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.6;
    margin-bottom: 1.2rem;
}

.tc-tags-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 0.8rem;
}

.tc-bullets {
    list-style-type: disc;
    padding-left: 1.2rem;
    margin-top: 0.8rem;
}

.tc-bullets li {
    font-size: 0.85rem;
    font-weight: 500;
    letter-spacing: 0.02em;
    color: var(--muted);
    margin-bottom: 0.5rem;
    line-height: 1.5;
}

/* ============================================================
   PROMISE - Pinned
   ============================================================ */
.promise {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--dark);
    overflow: hidden;
    padding: 4rem 3rem 1rem;
}

.promise-glow {
    position: absolute;
    width: 700px;
    height: 700px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(229,169,61,0.12) 0%, transparent 65%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
}

.promise-inner {
    position: relative;
    z-index: 2;
    max-width: 900px;
    width: 100%;
    text-align: center;
}

.promise-mark {
    font-family: var(--ff-head);
    font-size: clamp(6rem, 15vw, 14rem);
    color: rgba(229,169,61,0.08);
    line-height: 0.7;
    font-weight: 400;
    margin-bottom: 0.5rem;
    display: block;
    will-change: transform;
}

.promise-lines {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    margin-bottom: 3rem;
}

.promise-lines .clip-line { display: block; }

.promise-lines .heading-slide {
    font-size: calc(clamp(1.6rem, 3.5vw, 2.8rem) - 1.5px);
    font-weight: 400;
    line-height: 1.1;
    text-align: center;
}

.promise-sign {
    font-family: var(--ff-head);
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    color: var(--gold);
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.promise-entity {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: var(--muted);
    text-transform: uppercase;
    margin-bottom: 0;
}

/* ============================================================
   CTA BANNER
   ============================================================ */
.cta-banner-section {
    background: var(--dark);
    padding: 1rem 0 3rem 0;
}

.cta-banner {
    background: linear-gradient(90deg, #12192e 0%, #1e263c 100%);
    border-radius: 12px;
    padding: 1.8rem 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

.cta-content {
    max-width: 650px;
}

.cta-eyebrow {
    color: #e85d41;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.cta-title {
    font-family: var(--ff-head);
    font-size: 2rem;
    font-weight: 600;
    color: #ffffff;
    line-height: 1.2;
    margin-bottom: 0.6rem;
    letter-spacing: -0.02em;
}

.cta-desc {
    font-size: 0.95rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
}

.cta-action {
    flex-shrink: 0;
}

.btn-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.8rem;
    background: #e85d41;
    color: #ffffff;
    padding: 1rem 2rem;
    border-radius: 6px;
    font-size: 1.05rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s, background 0.3s, box-shadow 0.3s;
}

.btn-cta:hover {
    background: #d64f35;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(232, 93, 65, 0.2);
}

.btn-cta i {
    width: 18px;
    height: 18px;
    transition: transform 0.3s;
}

.btn-cta:hover i {
    transform: translateX(4px);
}

@media (max-width: 991px) {
    .cta-banner {
        flex-direction: column;
        align-items: flex-start;
        padding: 3rem 2rem;
    }
}

/* ============================================================
   FOOTER (COMPACT)
   ============================================================ */
.footer-compact {
    background: var(--dark);
    border-top: 1px solid rgba(255,255,255,0.05);
    padding: 1.5rem 0 0.2rem 0;
}

.fc-inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.fc-logo {
    height: 60px;
    width: auto;
    object-fit: contain;
    transform-origin: left center;
    transform: scale(1.5) translateX(-8px);
    margin-bottom: -15px;
}

.fc-tagline {
    font-size: 0.85rem;
    color: var(--muted);
    line-height: 1.5;
    margin-top: 0;
}

.fc-contact-item {
    display: flex;
    align-items: flex-start;
    gap: 0.8rem;
    font-size: 0.85rem;
    color: var(--muted);
    margin-bottom: 0.8rem;
    line-height: 1.5;
}

.fc-contact-item:last-child {
    margin-bottom: 0;
}

.fc-contact-item i {
    width: 14px;
    height: 14px;
    color: var(--gold);
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.fc-contact-item a {
    color: var(--muted);
    transition: color 0.3s;
    text-decoration: none;
}

.fc-contact-item a:hover {
    color: var(--gold);
}

.fc-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.75rem;
    color: rgba(255,255,255,0.4);
}

@media (max-width: 768px) {
    .fc-inner {
        flex-direction: column;
        gap: 2rem;
    }
    .fc-bottom {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }
    .svc-btn {
        display: none !important;
    }
}



/* ============================================================
   MAGNETIC BUTTON WRAPPER
   ============================================================ */
.magnetic {
    display: inline-flex;
    cursor: pointer;
}

/* ============================================================
   MODAL OVERLAY (Info Popup)
   ============================================================ */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.4s ease;
    padding: 2rem;
}

.modal-overlay.active {
    display: flex;
    opacity: 1;
    pointer-events: all;
}

.modal-content {
    background: var(--dark-2);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 3rem;
    max-width: 600px;
    width: 100%;
    position: relative;
    transform: translateY(30px) scale(0.95);
    transition: transform 0.5s cubic-bezier(0.19,1,0.22,1);
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
    max-height: 90vh;
    overflow-y: auto;
    scrollbar-width: thin;
}

@keyframes cinematicPan {
    0% { transform: scale(1) translate(0, 0); }
    100% { transform: scale(1.15) translate(-2%, 2%); }
}

.modal-overlay.active .modal-content {
    transform: translateY(0) scale(1);
}

.modal-close {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border);
    background: rgba(255,255,255,0.05);
    color: var(--muted);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.3s;
    z-index: 10;
}

.modal-close:hover {
    background: rgba(229,169,61,0.15);
    color: var(--gold);
    border-color: rgba(229,169,61,0.3);
    transform: rotate(90deg);
}

.modal-icon {
    width: 56px;
    height: 56px;
    border-radius: 12px;
    background: rgba(229,169,61,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gold);
    margin-bottom: 1.5rem;
}

.modal-icon svg { width: 28px; height: 28px; }

#modal-title {
    font-family: var(--ff-head);
    font-size: 1.8rem;
    font-weight: 600;
    color: var(--text);
    margin-bottom: 0.5rem;
}

#modal-bg-glow {
    position: absolute;
    top: -50px;
    right: -50px;
    width: 250px;
    height: 250px;
    background: radial-gradient(circle, rgba(229,169,61,0.08) 0%, transparent 70%);
    border-radius: 50%;
    pointer-events: none;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 1024px) {
    .diff-grid       { grid-template-columns: repeat(2, 1fr); }
    .phase-grid      { grid-template-columns: repeat(2, 1fr); }
    .stats-bar       { grid-template-columns: repeat(2, 1fr); }
    .sb-divider      { display: none; }
    .sb-item         { border-bottom: 1px solid var(--border); }
    .sb-item:nth-child(3),
    .sb-item:nth-child(4) { border-bottom: none; }

    .hero-content-row { gap: 1rem; }
    .hero-logo-showcase { width: 400px; height: 400px; }
    .hero-logo-container { width: 260px; height: 260px; }
    .logo-ring-1 { width: 310px; height: 310px; }
    .logo-ring-2 { width: 370px; height: 370px; }
    .logo-ring-3 { width: 400px; height: 400px; }
    .logo-aura { width: 320px; height: 320px; }
}

@media (max-width: 768px) {
    body { cursor: auto; }
    .cursor-ring, .cursor-dot { display: none; }

    .navbar { padding: 1rem 1.5rem; }
    .navbar.scrolled { padding: 0.8rem 1.5rem; }
    .nav-links { display: none; }
    .container { padding: 0 1.5rem; }

    .hero { padding: 7rem 1.5rem 5rem; }
    .hero-content-row {
        flex-direction: column;
        gap: 2rem;
        align-items: center;
        text-align: center;
    }
    .hero-inner { max-width: 100%; }
    .hero-image-wrapper {
        max-width: 100%;
        margin-right: 0;
        margin-top: 2rem;
    }
    .hero-eyebrow { justify-content: center; }
    .hero-cta { justify-content: center; }
    .hero-logo-showcase {
        width: 340px;
        height: 340px;
        order: -1; /* Logo on top on mobile */
    }
    .hero-logo-container { width: 220px; height: 220px; }
    .logo-ring-1 { width: 260px; height: 260px; }
    .logo-ring-2 { width: 310px; height: 310px; }
    .logo-ring-3 { width: 340px; height: 340px; }
    .logo-aura { width: 280px; height: 280px; }

    .hero-metrics {
        position: static;
        margin-top: 3rem;
        justify-content: center;
        flex-wrap: wrap;
        gap: 1.5rem;
    }
    .hm-item { text-align: center; }
    .scroll-cue { display: none; }

    .about-layout { grid-template-columns: 1fr; gap: 3rem; }
    .stats-bar { grid-template-columns: repeat(2, 1fr); }

    .diff-grid   { grid-template-columns: 1fr; }
    .phase-grid  { grid-template-columns: 1fr; }
    .team-grid   { grid-template-columns: 1fr; }
    .engage-grid { grid-template-columns: 1fr; }
    .sector-grid { grid-template-columns: 1fr; }
    .engage-feat { grid-column: auto; }

    .svc-pin { height: auto; }
    .svc-sticky { position: static; height: auto; padding: 4rem 1.5rem; overflow: visible; }
    .svc-overflow { overflow: visible; }
    .svc-track { flex-direction: column; width: 100%; height: auto; padding-right: 0; }
    .svc-card  { width: 100%; height: auto; }
    .svc-footer { display: none; }

    .promise { padding: 5rem 1.5rem; }
    .footer-inner { grid-template-columns: 1fr; gap: 3rem; }
    .footer-bottom { flex-direction: column; gap: 0.5rem; text-align: center; padding: 1.5rem; }
}

@media (max-width: 480px) {
    .hero-word { font-size: 3.5rem; }
    .hero-sub  { font-size: 2rem; }
    .heading-slide { font-size: 2rem; }
}

/* ============================================================
   CONTACT MODAL — PREMIUM TWO-PANEL
   ============================================================ */

/* Overlay */
#contact-modal.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(6px);
    z-index: 9000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1rem;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}

#contact-modal.modal-overlay.active {
    opacity: 1;
    pointer-events: all;
}

/* Inner container — two columns */
.contact-modal-inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    max-width: 900px;
    width: 100%;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 30px 80px rgba(0,0,0,0.5);
    transform: translateY(30px) scale(0.97);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.32, 1);
    max-height: 90vh;
    overflow-y: auto;
}

#contact-modal.active .contact-modal-inner {
    transform: translateY(0) scale(1);
}

/* Close button */
.contact-modal-close {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    border-radius: 50%;
    border: none;
    background: rgba(38, 34, 98, 0.08);
    color: var(--navy);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10;
    transition: background 0.2s, transform 0.2s, color 0.2s;
}

.contact-modal-close:hover {
    background: rgba(241, 90, 41, 0.15);
    color: var(--gold);
    transform: rotate(90deg);
}

.contact-modal-close svg {
    width: 18px;
    height: 18px;
}

/* ---- LEFT PANEL (dark navy) ---- */
.contact-modal-left {
    background: var(--navy, #1a1a5e);
    color: #fff;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.cml-badge {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold, #c9a84c);
    background: rgba(201,168,76,0.12);
    border: 1px solid rgba(201,168,76,0.3);
    padding: 0.3rem 0.9rem;
    border-radius: 100px;
    width: fit-content;
}

.cml-title {
    font-family: var(--ff-head, 'Orbitron', sans-serif);
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    color: #fff;
    margin: 0;
}

.cml-title span {
    color: var(--gold, #c9a84c);
}

.cml-sub {
    font-size: 0.9rem;
    color: rgba(255,255,255,0.65);
    line-height: 1.7;
    margin: 0;
}

.cml-details {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-top: 0.5rem;
}

.cml-item {
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.cml-icon {
    width: 38px;
    height: 38px;
    border-radius: 10px;
    background: rgba(201,168,76,0.15);
    color: var(--gold, #c9a84c);
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.cml-icon svg {
    width: 17px;
    height: 17px;
}

.cml-icon[style*="25D366"] svg {
    color: #fff;
}

.cml-label {
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold, #c9a84c);
    margin-bottom: 0.25rem;
}

.cml-value {
    font-size: 0.88rem;
    color: rgba(255,255,255,0.85);
    line-height: 1.65;
}

.cml-value a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    transition: color 0.2s;
}

.cml-value a:hover {
    color: var(--gold, #c9a84c);
}

/* ---- RIGHT PANEL (white/light) ---- */
.contact-modal-right {
    background: #fff;
    padding: 3rem 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    overflow-y: auto;
}

.cmr-title {
    font-family: var(--ff-head, 'Orbitron', sans-serif);
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--navy, #1a1a5e);
    margin: 0;
}

.cmr-sub {
    font-size: 0.875rem;
    color: #6b7280;
    margin: 0 0 1rem;
    line-height: 1.6;
}

/* Form */
.contact-modal-form {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cmf-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.cmf-group {
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
}

.cmf-group label {
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--navy, #1a1a5e);
}

.cmf-group input,
.cmf-group select,
.cmf-group textarea {
    padding: 0.75rem 1rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    font-size: 0.9rem;
    color: #111;
    background: #f9fafb;
    outline: none;
    transition: border-color 0.25s, box-shadow 0.25s;
    font-family: inherit;
    resize: none;
}

.cmf-group input:focus,
.cmf-group select:focus,
.cmf-group textarea:focus {
    border-color: var(--navy, #1a1a5e);
    box-shadow: 0 0 0 3px rgba(26, 26, 94, 0.1);
    background: #fff;
}

.cmf-group select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 1rem center;
    padding-right: 2.5rem;
    cursor: pointer;
}

.cmf-submit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.6rem;
    padding: 0.9rem 1.5rem;
    background: var(--navy, #1a1a5e);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
    font-family: inherit;
    margin-top: 0.25rem;
}

.cmf-submit:hover {
    background: var(--gold, #c9a84c);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201,168,76,0.35);
}

.cmf-submit svg {
    width: 16px;
    height: 16px;
}

.cmf-disclaimer {
    font-size: 0.72rem;
    color: #9ca3af;
    text-align: center;
    margin: 0;
}

/* Responsive: stack on mobile */
@media (max-width: 700px) {
    .contact-modal-inner {
        grid-template-columns: 1fr;
    }
    .contact-modal-close {
        color: #fff;
        background: rgba(255, 255, 255, 0.15);
        top: 0.8rem;
        right: 0.8rem;
    }
    .contact-modal-close:hover {
        background: rgba(255, 255, 255, 0.25);
    }
    .contact-modal-left {
        padding: 2.5rem 1.5rem;
    }
    .contact-modal-right {
        padding: 2rem 1.5rem;
    }
    .cmf-row {
        grid-template-columns: 1fr;
    }
}


/* ============================================================
   CAREERS ACCORDION
   ============================================================ */
.job-accordion.active .job-body {
    max-height: 2000px !important;
}
.job-accordion.active .job-chevron {
    transform: rotate(90deg) !important;
}

/* ============================================================
   APPLY MODAL
   ============================================================ */
#apply-modal {
    display: none;
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(0,0,0,0.5);
    z-index: 9999;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: opacity 0.3s ease;
}
#apply-modal.active {
    display: flex;
    opacity: 1;
}
#apply-modal .modal-content {
    background: #fff;
    width: 90%;
    max-width: 550px;
    padding: 2.5rem 2rem;
    border-radius: 12px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
    position: relative;
    transform: scale(0.95);
    transition: transform 0.3s ease;
}
#apply-modal.active .modal-content {
    transform: scale(1);
}
#apply-modal .modal-close-am {
    position: absolute;
    top: 1rem;
    right: 1rem;
    width: 36px;
    height: 36px;
    background: rgba(38, 34, 98, 0.08);
    border: none;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    color: var(--navy);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: background 0.2s, color 0.2s;
    line-height: 1;
    padding-bottom: 2px;
}
#apply-modal .modal-close-am:hover {
    background: var(--gold);
    color: #fff;
}
#apply-modal .am-title {
    font-family: var(--ff-head, 'Orbitron', sans-serif);
    text-align: center;
    font-size: 1.6rem;
    color: var(--navy);
    margin: 0 0 2rem 0;
    font-weight: 700;
}
.am-group {
    margin-bottom: 1.2rem;
}
.am-group label {
    display: block;
    font-size: 0.78rem;
    font-weight: 600;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    color: var(--navy, #1a1a5e);
    margin-bottom: 0.4rem;
}
.am-input {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    background: #f9fafb;
    font-size: 0.9rem;
    color: #111;
    transition: border-color 0.25s, box-shadow 0.25s;
    outline: none;
    font-family: inherit;
    box-sizing: border-box;
}
.am-input:focus {
    border-color: var(--navy, #1a1a5e);
    box-shadow: 0 0 0 3px rgba(26, 26, 94, 0.1);
    background: #fff;
}
.am-file-container {
    width: 100%;
    padding: 0.75rem 1rem;
    border: 1.5px solid #e5e7eb;
    border-radius: 8px;
    background: #f9fafb;
    font-size: 0.9rem;
    color: #111;
    transition: border-color 0.25s, box-shadow 0.25s;
    outline: none;
    box-sizing: border-box;
}
.am-file-container input[type="file"] {
    font-size: 0.85rem;
    color: #333;
    width: 100%;
}
.am-submit {
    width: 100%;
    padding: 0.9rem 1.5rem;
    background: var(--navy, #1a1a5e);
    color: #fff;
    border: none;
    border-radius: 8px;
    font-size: 0.95rem;
    font-weight: 600;
    cursor: pointer;
    margin-top: 1rem;
    box-shadow: none;
    transition: background 0.25s, transform 0.2s, box-shadow 0.25s;
}
.am-submit:hover {
    background: var(--gold, #c9a84c);
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(201,168,76,0.35);
}
.am-submit:disabled {
    background: #aaa;
    cursor: not-allowed;
    transform: none;
    box-shadow: none;
}
.am-note {
    text-align: center;
    font-size: 0.72rem;
    color: #9ca3af;
    margin-top: 1rem;
    line-height: 1.4;
}
