/* ==========================================================================
   ZEVEN GLOBAL PVT LTD — CORPORATE DESIGN SYSTEM (CSS3)
   Dark Midnight Slate & Luminous Copper Brand Identity
   Palette: Midnight Slate (#050811, #0A0F1D, #121929), Vibrant Copper (#FF7E5F, #FEB47B)
   Typography: Outfit (Headings), Inter / Plus Jakarta Sans (Body & UI)
   ========================================================================== */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&amp;family=Outfit:wght@400;500;600;700;800;900&amp;family=Plus+Jakarta+Sans:wght@400;500;600;700&amp;display=swap');

:root {
  color-scheme: dark;

  /* ---- Surfaces: Midnight Slate Canvas (Enhanced Contrast) ------------- */
  --bg-dark: #050811; /* Deeper, richer dark */
  --bg-navy-dark: #0A0F1D;
  --bg-navy-card: #121929; /* Refined card background */
  --bg-card-hover: #1A2438; /* Smooth hover state */
  --bg-card-elevated: rgba(18, 25, 41, 0.85);

  --surface: #0A0F1D;
  --surface-strong: #121929;
  --surface-solid: #050811;
  --surface-soft: rgba(18, 25, 41, 0.5);

  /* ---- Vibrant Copper Brand Palette (Enhanced) ------------------------- */
  --gold-primary: #FF7E5F; /* Vibrant Copper */
  --gold-light: #FEB47B;   /* Luminous Peach/Gold */
  --gold-dark: #D65A40;    /* Deep Copper */
  --gold-gradient: linear-gradient(135deg, #FEB47B 0%, #FF7E5F 50%, #D65A40 100%);
  --gold-glow: rgba(255, 126, 95, 0.25);
  --border-gold: rgba(255, 126, 95, 0.35);
  --border-gold-strong: rgba(255, 126, 95, 0.65);

  /* ---- Accent Blues & Cyans (Adjusted for harmony) --------------------- */
  --primary-navy: #0A0F1D;
  --primary-blue: #3B82F6;
  --accent-blue-light: #60A5FA;
  --accent-cyan: #2DD4BF; /* Adjusted to Teal to complement Copper */
  --accent-emerald: #10B981;

  /* ---- Typography & Text Contrast -------------------------------------- */
  --text: #F8FAFC;
  --text-main: #F8FAFC;
  --text-soft: #CBD5E1;
  --text-muted: #94A3B8;
  --text-faint: #64748B;

  /* ---- Borders & Glassmorphism ----------------------------------------- */
  --line: rgba(255, 255, 255, 0.08);
  --line-strong: rgba(255, 255, 255, 0.14);
  --border-subtle: rgba(255, 255, 255, 0.06);
  --border-card: rgba(255, 255, 255, 0.08);
  --glass-bg: rgba(10, 15, 29, 0.85);
  --glass-blur: saturate(150%) blur(20px);

  /* ---- Shadows & Glows ------------------------------------------------- */
  --shadow-xs: 0 2px 8px rgba(0, 0, 0, 0.5);
  --shadow-sm: 0 4px 14px rgba(0, 0, 0, 0.55);
  --shadow-md: 0 12px 32px rgba(0, 0, 0, 0.65);
  --shadow-lg: 0 24px 54px rgba(0, 0, 0, 0.8);
  --shadow-gold: 0 10px 30px -4px rgba(255, 126, 95, 0.35);

  /* ---- Radii ------------------------------------------------------------ */
  --r-xs: 6px;
  --r-sm: 10px;
  --r-md: 14px;
  --r-lg: 20px;
  --r-xl: 28px;
  --r-pill: 9999px;

  /* ---- Motion ----------------------------------------------------------- */
  --ease: cubic-bezier(0.22, 1, 0.36, 1);
  --t-fast: 160ms var(--ease);
  --t-base: 280ms var(--ease);
  --t-slow: 550ms var(--ease);

  /* ---- Layout ----------------------------------------------------------- */
  --page: 1240px;
  --gutter: clamp(20px, 4vw, 40px);
  --header-h: 84px;
  --section-y: clamp(52px, 8vw, 110px);
}

/* ==========================================================================
   RESET & BASE STYLES & GLOBAL ENHANCEMENTS
   ========================================================================== */

*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: calc(var(--header-h) + 24px);
  font-size: 16px;
  -webkit-text-size-adjust: 100%;
}

/* Custom Premium Scrollbar */
::-webkit-scrollbar {
  width: 10px;
  height: 10px;
}

::-webkit-scrollbar-track {
  background: var(--bg-dark);
}

::-webkit-scrollbar-thumb {
  background: rgba(255, 126, 95, 0.25);
  border-radius: var(--r-pill);
  border: 2px solid var(--bg-dark);
  transition: background var(--t-fast);
}

::-webkit-scrollbar-thumb:hover {
  background: rgba(255, 126, 95, 0.5);
}

/* Custom Focus Rings for Accessibility */
:focus-visible {
  outline: 2px solid var(--gold-primary);
  outline-offset: 3px;
}

/* STREAMING_CHUNK:Base body styles... */
body {
  background-color: var(--bg-dark);
  color: var(--text-main);
  font-family: 'Inter', 'Plus Jakarta Sans', system-ui, -apple-system, sans-serif;
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* Ambient dark canvas background with breathing copper & slate radial auroras */
@keyframes ambient-breathe {
  0%, 100% { opacity: 0.85; transform: scale(1) translateZ(0); }
  50% { opacity: 1; transform: scale(1.05) translateZ(0); }
}

body::before {
  content: "";
  position: fixed;
  inset: -10%; /* Slightly larger to accommodate scale */
  z-index: -2;
  background:
    radial-gradient(900px 600px at 20% 0%, rgba(59, 130, 246, 0.1), transparent 65%),
    radial-gradient(750px 500px at 80% 20%, rgba(255, 126, 95, 0.12), transparent 60%),
    radial-gradient(1000px 700px at 50% 50%, rgba(5, 8, 17, 0.8), transparent 70%);
  pointer-events: none;
  animation: ambient-breathe 24s ease-in-out infinite alternate;
}

body::after {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  background-image:
    linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(circle at 50% 20%, #000 0%, transparent 80%);
  -webkit-mask-image: radial-gradient(circle at 50% 20%, #000 0%, transparent 80%);
  pointer-events: none;
}

body.is-locked {
  overflow: hidden;
}

/* Typography Hierarchy with Refined Text Rendering */
h1, h2, h3, h4, h5, h6 {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  line-height: 1.2;
  color: #FFFFFF;
  letter-spacing: -0.015em;
  text-shadow: 0 4px 16px rgba(0, 0, 0, 0.4); /* Faint shadow for crispness on dark bg */
}

h1 { font-size: clamp(2.3rem, 4.8vw, 3.6rem); font-weight: 800; }
h2 { font-size: clamp(1.85rem, 3.4vw, 2.75rem); }
h3 { font-size: clamp(1.3rem, 2.2vw, 1.7rem); }
h4 { font-size: 1.15rem; }
h5 { font-size: 1rem; }

p {
  color: var(--text-soft);
  margin-bottom: 1rem;
}

p:last-child {
  margin-bottom: 0;
}

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

ul, ol {
  list-style: none;
}

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

button, input, select, textarea {
  font: inherit;
  color: inherit;
}

/* Skip link */
.skip-link {
  position: absolute;
  top: -100px;
  left: 16px;
  background: var(--gold-gradient);
  color: var(--bg-dark);
  font-weight: 700;
  padding: 10px 18px;
  border-radius: var(--r-sm);
  z-index: 9999;
  transition: top 0.2s ease;
}

.skip-link:focus {
  top: 16px;
}

/* Scroll Progress Bar */
#progress {
  position: fixed;
  top: 0;
  left: 0;
  height: 3px;
  width: 0%;
  background: var(--gold-gradient);
  z-index: 10000;
  box-shadow: 0 0 10px rgba(255, 126, 95, 0.7);
  transition: width 0.1s linear;
}

/* STREAMING_CHUNK:Layout utilities and kickers... */
/* ==========================================================================
   LAYOUT PRIMITIVES & UTILITIES
   ========================================================================== */

.container {
  width: 100%;
  max-width: var(--page);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.section {
  padding-block: var(--section-y);
  position: relative;
}

.section--tight {
  padding-block: clamp(32px, 5vw, 64px);
}

.section--divider {
  border-top: 1px solid var(--border-subtle);
}

.section-head {
  max-width: 780px;
  margin-bottom: clamp(36px, 5vw, 56px);
}

.section-head.text-center {
  margin-inline: auto;
}

.section-head h2 {
  margin-top: 12px;
  margin-bottom: 14px;
}

.section-head .lead {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: var(--text-soft);
  line-height: 1.6;
}

.text-center { text-align: center; }
.text-gold { 
  background: var(--gold-gradient);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  text-shadow: none; /* Reset shadow for gradient text */
}
.gradient-text {
  background: linear-gradient(135deg, #FFFFFF 20%, #FEB47B 60%, #FF7E5F 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  display: inline-block;
  text-shadow: none; /* Reset shadow for gradient text */
}

.grid {
  display: grid;
  gap: 24px;
}

.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

.split {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(36px, 6vw, 64px);
  align-items: center;
}

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

/* Badges & Kickers */
.kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.8rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--gold-light);
  background: rgba(255, 126, 95, 0.1);
  border: 1px solid var(--border-gold);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  box-shadow: 0 0 16px rgba(255, 126, 95, 0.12);
}

.kicker--gold {
  background: rgba(255, 126, 95, 0.12);
  border-color: var(--border-gold);
  color: var(--gold-light);
}

.kicker .dot {
  width: 7px;
  height: 7px;
  background: #10B981;
  border-radius: 50%;
  box-shadow: 0 0 8px #10B981;
  animation: pulse-dot 2s infinite;
}

@keyframes pulse-dot {
  0%, 100% { transform: scale(1); opacity: 1; }
  50% { transform: scale(1.3); opacity: 0.6; }
}

.tag {
  display: inline-flex;
  align-items: center;
  font-size: 0.76rem;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: var(--r-pill);
  background: rgba(255, 255, 255, 0.06);
  color: var(--text-soft);
  border: 1px solid var(--border-subtle);
}

/* STREAMING_CHUNK:Buttons and interactive elements... */
/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 0.95rem;
  padding: 13px 26px;
  border-radius: var(--r-pill);
  cursor: pointer;
  transition: var(--t-base);
  border: 1px solid transparent;
  text-decoration: none;
  white-space: nowrap;
  position: relative;
  overflow: hidden;
  will-change: transform, box-shadow;
}

.btn svg {
  width: 18px;
  height: 18px;
  transition: transform var(--t-fast);
}

.btn:hover svg {
  transform: translateX(2px);
}

/* Tactile Physics */
.btn:active {
  transform: scale(0.97);
}

.btn--primary {
  background: var(--gold-gradient);
  color: var(--bg-dark);
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}

.btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 34px -4px rgba(255, 126, 95, 0.45);
  filter: brightness(1.06);
}

.btn--primary:active {
  transform: translateY(0) scale(0.97);
  box-shadow: 0 4px 12px rgba(255, 126, 95, 0.5);
  filter: brightness(0.95);
}

.btn--secondary {
  background: rgba(18, 25, 41, 0.7);
  color: #FFFFFF;
  border: 1px solid var(--border-card);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.25), inset 0 1px 0 rgba(255,255,255,0.05);
}

.btn--secondary:hover {
  background: rgba(26, 36, 56, 0.9);
  border-color: var(--border-gold);
  color: var(--gold-light);
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(255, 126, 95, 0.25), inset 0 1px 0 rgba(255,255,255,0.05);
}

.btn--secondary:active {
  transform: translateY(0) scale(0.97);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255,255,255,0.02);
}

.btn--ghost {
  background: transparent;
  color: var(--text-main);
  border: 1px solid var(--border-subtle);
}

.btn--ghost:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: var(--border-gold);
  color: var(--gold-light);
  transform: translateY(-2px);
}

.btn--ghost:active {
  transform: translateY(0) scale(0.97);
}

.btn--sm {
  padding: 8px 18px;
  font-size: 0.86rem;
}

.btn--block {
  width: 100%;
}

.link-arrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
  font-size: 0.9rem;
  color: var(--gold-light);
  background: none;
  border: none;
  cursor: pointer;
  padding: 0;
  transition: var(--t-fast);
}

.link-arrow svg {
  width: 16px;
  height: 16px;
  transition: transform var(--t-fast);
}

.link-arrow:hover {
  color: #FFFFFF;
}

.link-arrow:hover svg {
  transform: translateX(4px);
}

/* Icon Badges */
.icon-badge {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: var(--r-md);
  background: rgba(255, 126, 95, 0.12);
  border: 1px solid var(--border-gold);
  color: var(--gold-light);
  box-shadow: 0 0 16px rgba(255, 126, 95, 0.1);
  transition: transform var(--t-base), background var(--t-base), color var(--t-base), border-color var(--t-base), box-shadow var(--t-base);
}

.icon-badge svg {
  width: 24px;
  height: 24px;
  transition: transform var(--t-base);
}

.icon-badge--gold {
  background: var(--gold-gradient);
  color: var(--bg-dark);
  border: none;
  box-shadow: var(--shadow-gold);
}

/* Bold icon badge when cursor is placed on the box / card */
.card:hover .icon-badge,
.card--hover:hover .icon-badge,
.icon-badge:hover {
  transform: scale(1.08);
  background: var(--gold-gradient);
  color: var(--bg-dark);
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}

.card:hover .icon-badge svg,
.card--hover:hover .icon-badge svg,
.icon-badge:hover svg {
  transform: scale(1.06);
}

/* Cards & Panels (Enhanced Glassmorphism) */
.card {
  background: var(--bg-navy-card);
  border: 1px solid var(--border-card);
  border-radius: var(--r-lg);
  padding: clamp(22px, 3vw, 32px);
  position: relative;
  transition: var(--t-base);
  box-shadow: var(--shadow-sm), inset 0 1px 0 rgba(255, 255, 255, 0.05); /* Frosted top edge */
}

.card--hover:hover,
.card:hover {
  transform: translateY(-4px);
  background: var(--bg-card-hover);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-md), 0 0 24px rgba(255, 126, 95, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.08);
}

.panel {
  background: linear-gradient(160deg, rgba(18, 25, 41, 0.9) 0%, rgba(10, 15, 29, 0.95) 100%);
  border: 1px solid var(--border-card);
  border-radius: var(--r-xl);
  padding: clamp(24px, 4vw, 44px);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

/* STREAMING_CHUNK:Header, Navigation, and Resposive Logo... */
/* ==========================================================================
   HEADER & NAVIGATION & LOGO
   ========================================================================== */

.header {
  position: sticky;
  top: 0;
  z-index: 1000;
  height: var(--header-h);
  width: 100%;
  background: rgba(5, 8, 17, 0.85);
  backdrop-filter: var(--glass-blur);
  -webkit-backdrop-filter: var(--glass-blur);
  border-bottom: 1px solid var(--border-subtle);
  transition: var(--t-base);
  box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.05); /* Frosted edge */
}

.header.is-stuck {
  background: rgba(5, 8, 17, 0.96);
  box-shadow: var(--shadow-md), inset 0 1px 0 rgba(255, 255, 255, 0.05);
  border-bottom-color: rgba(255, 126, 95, 0.25);
}

.header__inner {
  width: 100%;
  max-width: var(--page);
  height: 100%;
  margin-inline: auto;
  padding-inline: var(--gutter);
  display: grid;
  grid-template-columns: auto 1fr auto;
  align-items: center;
  gap: 20px;
}

.brand,
.brand-logo {
  display: inline-flex;
  align-items: center;
  text-decoration: none;
  flex-shrink: 0;
  justify-self: start;
}

/* Updated Logo Styling */
.brand-logo-badge {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  transition: transform var(--t-fast);
  max-width: 245px;
  width: 100%; 
  height: auto;
}

.brand-logo-badge:hover {
  transform: translateY(-1px);
}

.brand-logo-badge img {
  width: 100%;
  height: auto;
  max-height: calc(var(--header-h) - 20px);
  object-fit: contain;
  display: block;
}

.footer-logo-badge {
  max-width: 245px;
  width: 100%;
  margin-bottom: 0;
}

.footer-logo-badge img {
  width: 100%;
  height: auto;
  object-fit: contain;
  display: block;
}

.footer__brand {
  margin-bottom: 24px;
}

.nav {
  display: flex;
  align-items: center;
  justify-self: center;
  gap: 4px;
  background: rgba(255, 255, 255, 0.03);
  padding: 5px 8px;
  border-radius: var(--r-pill);
  border: 1px solid var(--border-subtle);
}

.nav a {
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-soft);
  padding: 6px 14px;
  border-radius: var(--r-pill);
  transition: var(--t-fast);
  white-space: nowrap;
}

.nav a:hover {
  color: #FFFFFF;
  background: rgba(255, 255, 255, 0.06);
}

.nav a.is-active {
  background: var(--gold-gradient);
  color: var(--bg-dark);
  font-weight: 700;
  box-shadow: 0 2px 10px rgba(255, 126, 95, 0.3);
}

.header__actions {
  display: flex;
  align-items: center;
  justify-self: end;
  gap: 16px;
  flex-shrink: 0;
}

.header__phone {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.88rem;
  font-weight: 600;
  color: var(--gold-light);
  white-space: nowrap;
}

.header__phone svg {
  width: 16px;
  height: 16px;
}

.header__phone:hover {
  color: #FFFFFF;
}

.nav-toggle {
  display: none;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-sm);
  color: #FFFFFF;
  padding: 8px;
  cursor: pointer;
}

.nav-toggle svg {
  width: 24px;
  height: 24px;
}

/* Mobile Panel */
.mobile-panel {
  position: fixed;
  top: var(--header-h);
  left: 0;
  right: 0;
  bottom: 0;
  background: rgba(5, 8, 17, 0.98);
  backdrop-filter: blur(20px);
  z-index: 999;
  padding: 28px var(--gutter);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transform: translateY(-100%);
  opacity: 0;
  visibility: hidden;
  transition: var(--t-base);
}

.mobile-panel.is-open {
  transform: translateY(0);
  opacity: 1;
  visibility: visible;
}

.mobile-panel nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.mobile-panel nav a {
  font-family: 'Outfit', sans-serif;
  font-size: 1.35rem;
  font-weight: 700;
  color: var(--text-soft);
  padding: 10px 16px;
  border-radius: var(--r-md);
  border: 1px solid transparent;
}

.mobile-panel nav a.is-active,
.mobile-panel nav a:hover {
  color: #FFFFFF;
  background: rgba(18, 25, 41, 0.7);
  border-color: var(--border-gold);
}

.mobile-panel__actions {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding-top: 20px;
  border-top: 1px solid var(--border-subtle);
}

.mobile-phone {
  justify-content: center;
  font-size: 1.05rem;
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .header__inner {
    grid-template-columns: auto 1fr auto;
    gap: 10px;
  }
  .nav {
    display: none; 
  }
  .nav-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
  }
}

@media (max-width: 768px) {
  .header__inner {
    display: flex;
    justify-content: space-between;
    align-items: center;
  }
  
  .header__actions {
    display: flex;
    align-items: center;
    gap: 10px;
  }

  .header__phone {
    display: none;
  }

  /* Make button text disappear on small screens, keeping only the icon */
  .header__actions .btn--primary span {
    display: none;
  }
  
  .header__actions .btn--primary {
    padding: 8px;
    border-radius: var(--r-sm);
  }

  .header__actions .btn--primary svg {
    margin: 0;
  }
  
  .brand-logo-badge {
    max-width: 160px;
  }
}

/* STREAMING_CHUNK:Hero and statistics components... */
/* ==========================================================================
   HERO SECTION
   ========================================================================== */

.hero {
  padding-top: clamp(40px, 8vw, 80px);
  padding-bottom: clamp(50px, 8vw, 90px);
  position: relative;
}

.hero__container {
  display: flex;
  justify-content: center;
}

.hero__content {
  max-width: 900px;
}

.hero__content h1 {
  margin-top: 20px;
  margin-bottom: 20px;
}

.hero__copy {
  font-size: clamp(1.05rem, 1.4vw, 1.25rem);
  color: var(--text-soft);
  line-height: 1.65;
  margin-inline: auto;
  max-width: 760px;
}

.hero__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 32px;
  margin-bottom: 48px;
}

.hero__proof {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  background: linear-gradient(145deg, rgba(18, 25, 41, 0.85) 0%, rgba(10, 15, 29, 0.95) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-xl);
  padding: 12px 16px;
  box-shadow: var(--shadow-md), 0 0 32px rgba(255, 126, 95, 0.1), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  position: relative;
  overflow: hidden;
}

.hero__proof::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(254, 180, 123, 0.6), transparent);
}

.hero__pillar {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  padding: 10px 16px;
  position: relative;
  transition: transform var(--t-fast);
}

.hero__pillar:hover {
  transform: translateY(-2px);
}

.hero__pillar:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 20%;
  bottom: 20%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 126, 95, 0.25), transparent);
}

.hero__pillar-icon {
  width: 38px;
  height: 38px;
  border-radius: var(--r-md);
  background: rgba(255, 126, 95, 0.1);
  border: 1px solid rgba(255, 126, 95, 0.32);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  flex-shrink: 0;
  box-shadow: 0 0 12px rgba(255, 126, 95, 0.1);
  transition: transform var(--t-base), background var(--t-base), color var(--t-base), box-shadow var(--t-base);
}

.hero__pillar:hover .hero__pillar-icon {
  transform: scale(1.06);
  background: var(--gold-gradient);
  color: var(--bg-dark);
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}

.hero__pillar-icon svg {
  width: 18px;
  height: 18px;
}

.hero__pillar-title {
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--gold-light);
  letter-spacing: 0.04em;
  text-transform: uppercase;
  line-height: 1.25;
  white-space: nowrap;
}

@media (max-width: 860px) {
  .hero__proof {
    grid-template-columns: 1fr;
    gap: 4px;
    padding: 12px 16px;
  }

  .hero__pillar {
    justify-content: flex-start;
    padding: 10px 8px;
  }

  .hero__pillar:not(:last-child)::after {
    display: none;
  }

  .hero__pillar:not(:last-child) {
    border-bottom: 1px solid var(--border-subtle);
  }
}

/* ==========================================================================
   STAT STRIP & KEY OPERATIONAL METRICS
   ========================================================================== */

.stat-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: linear-gradient(145deg, rgba(18, 25, 41, 0.9) 0%, rgba(10, 15, 29, 0.95) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-xl);
  padding: clamp(24px, 3.5vw, 36px) clamp(20px, 3vw, 32px);
  box-shadow: var(--shadow-md), 0 0 36px rgba(255, 126, 95, 0.14), inset 0 1px 0 rgba(255, 255, 255, 0.04);
  position: relative;
  overflow: hidden;
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
}

.stat-strip::before {
  content: '';
  position: absolute;
  top: 0;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(254, 180, 123, 0.6), transparent);
}

.stat-item {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px clamp(12px, 2vw, 24px);
  position: relative;
  transition: transform var(--t-fast);
}

.stat-item:hover {
  transform: translateY(-2px);
}

.stat-item:not(:last-child)::after {
  content: '';
  position: absolute;
  right: 0;
  top: 15%;
  bottom: 15%;
  width: 1px;
  background: linear-gradient(180deg, transparent, rgba(255, 126, 95, 0.25), transparent);
}

.stat-item__icon {
  width: 52px;
  height: 52px;
  border-radius: var(--r-md);
  background: rgba(255, 126, 95, 0.1);
  border: 1px solid rgba(255, 126, 95, 0.35);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  flex-shrink: 0;
  box-shadow: 0 0 16px rgba(255, 126, 95, 0.12);
  transition: transform var(--t-base), background var(--t-base), color var(--t-base), box-shadow var(--t-base);
}

.stat-item:hover .stat-item__icon {
  transform: scale(1.08);
  background: var(--gold-gradient);
  color: var(--bg-dark);
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}

.stat-item__icon svg {
  width: 26px;
  height: 26px;
}

.stat-item__content {
  display: flex;
  flex-direction: column;
  gap: 2px;
}

.stat-item__number {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.9rem, 2.8vw, 2.5rem);
  font-weight: 900;
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--gold-light);
  background: linear-gradient(135deg, #FFFFFF 30%, #FEB47B 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
}

.stat-item__label {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-soft);
  line-height: 1.25;
}

@media (max-width: 1024px) {
  .stat-strip {
    grid-template-columns: repeat(2, 1fr);
    gap: 24px 0;
  }
  .stat-item:nth-child(2)::after {
    display: none;
  }
}

@media (max-width: 640px) {
  .stat-strip {
    grid-template-columns: 1fr;
    gap: 18px;
    padding: 24px 18px;
  }
  .stat-item:not(:last-child)::after {
    display: none;
  }
}

/* Page Hero for Inner Pages */
.page-hero {
  padding-top: clamp(40px, 6vw, 64px);
  padding-bottom: clamp(36px, 5vw, 56px);
  border-bottom: 1px solid var(--border-subtle);
  background: linear-gradient(180deg, rgba(10, 15, 29, 0.4) 0%, transparent 100%);
}

.breadcrumb {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: var(--text-muted);
  margin-bottom: 16px;
}

.breadcrumb a {
  color: var(--gold-light);
}

.breadcrumb a:hover {
  text-decoration: underline;
}

.page-hero h1 {
  margin-top: 10px;
  margin-bottom: 14px;
}

.page-hero .lead {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: var(--text-soft);
  max-width: 800px;
  line-height: 1.6;
}

/* STREAMING_CHUNK:Marquee and service cards... */
/* ==========================================================================
   MARQUEE COMPLIANCE TICKER
   ========================================================================== */

.marquee {
  overflow: hidden;
  white-space: nowrap;
  background: rgba(10, 15, 29, 0.6);
  border-block: 1px solid var(--border-subtle);
  padding-block: 16px;
  position: relative;
}

.marquee::before,
.marquee::after {
  content: "";
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.marquee::before {
  left: 0;
  background: linear-gradient(90deg, var(--bg-dark), transparent);
}

.marquee::after {
  right: 0;
  background: linear-gradient(270deg, var(--bg-dark), transparent);
}

.marquee__track {
  display: inline-flex;
  gap: 40px;
  animation: marquee-scroll 32s linear infinite;
}

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

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

.marquee__item {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-soft);
  letter-spacing: 0.02em;
}

.marquee__item svg {
  width: 18px;
  height: 18px;
  color: var(--gold-light);
}

/* ==========================================================================
   FILTER TABS & SERVICE CARDS
   ========================================================================== */

.filters {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 40px;
}

.filter {
  font-family: 'Outfit', sans-serif;
  font-size: 0.88rem;
  font-weight: 600;
  padding: 8px 20px;
  border-radius: var(--r-pill);
  background: rgba(18, 25, 41, 0.6);
  border: 1px solid var(--border-card);
  color: var(--text-soft);
  cursor: pointer;
  transition: var(--t-fast);
}

.filter:hover {
  background: rgba(26, 36, 56, 0.8);
  color: #FFFFFF;
  border-color: var(--border-gold);
}

.filter.is-active {
  background: var(--gold-gradient);
  color: var(--bg-dark);
  border-color: transparent;
  font-weight: 700;
  box-shadow: 0 4px 14px rgba(255, 126, 95, 0.35);
}

.service-card {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: var(--t-base), opacity 0.3s ease;
}

.service-card.is-hidden {
  display: none;
}

.service-card h3 {
  margin-top: 18px;
  margin-bottom: 10px;
}

.service-card p {
  font-size: 0.92rem;
  color: var(--text-soft);
  margin-bottom: 18px;
}

.service-card__list {
  margin-bottom: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
  color: var(--text-soft);
}

.service-card__list li svg {
  width: 16px;
  height: 16px;
  color: var(--gold-light);
  flex-shrink: 0;
  margin-top: 3px;
}

.service-card__foot {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid var(--border-subtle);
  margin-top: auto;
}

/* ==========================================================================
   STAT STRIP (Alternate)
   ========================================================================== */

.stat-strip-alt {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 20px;
  background: linear-gradient(135deg, rgba(18, 25, 41, 0.9) 0%, rgba(10, 15, 29, 0.95) 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-xl);
  padding: clamp(28px, 4vw, 40px);
  box-shadow: var(--shadow-gold), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.stat strong {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.2rem, 3.8vw, 3rem);
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1.1;
  margin-bottom: 6px;
}

.stat span {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--text-soft);
}

/* STREAMING_CHUNK:Interactive calculator styles... */
/* ==========================================================================
   ROI & POD COST CALCULATOR
   ========================================================================== */

.calc {
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: stretch;
}

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

.calc__controls {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.control__head {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 12px;
}

.control__head label {
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
  font-size: 1.05rem;
  color: #FFFFFF;
}

.badge-value {
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  font-size: 1.05rem;
  color: var(--gold-light);
  background: rgba(255, 126, 95, 0.15);
  border: 1px solid var(--border-gold);
  padding: 4px 14px;
  border-radius: var(--r-pill);
}

input[type="range"] {
  -webkit-appearance: none;
  appearance: none;
  width: 100%;
  height: 8px;
  border-radius: var(--r-pill);
  background: linear-gradient(
    90deg,
    var(--gold-primary) 0%,
    var(--gold-primary) var(--fill, 0%),
    rgba(255, 255, 255, 0.1) var(--fill, 0%),
    rgba(255, 255, 255, 0.1) 100%
  );
  outline: none;
  cursor: pointer;
}

input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  appearance: none;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--gold-gradient);
  border: 2px solid #FFFFFF;
  box-shadow: 0 0 12px rgba(255, 126, 95, 0.6);
  cursor: pointer;
  transition: transform var(--t-fast);
}

input[type="range"]::-webkit-slider-thumb:hover {
  transform: scale(1.15);
}

.scale-marks {
  display: flex;
  justify-content: space-between;
  font-size: 0.78rem;
  color: var(--text-muted);
  margin-top: 6px;
}

/* Pod Bonus Card */
.pod-bonus-card {
  background: rgba(255, 126, 95, 0.08);
  border: 1px dashed var(--border-gold);
  border-radius: var(--r-md);
  padding: 18px 20px;
}

.pod-bonus__head {
  display: flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-light);
  font-family: 'Outfit', sans-serif;
  font-size: 0.95rem;
  margin-bottom: 12px;
}

.pod-bonus__head svg {
  width: 18px;
  height: 18px;
}

.pod-bonus__list {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
  gap: 8px;
  margin-bottom: 14px;
}

.pod-bonus__list li {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  color: #FFFFFF;
}

.pod-bonus__list li svg {
  width: 15px;
  height: 15px;
  color: var(--gold-light);
  flex-shrink: 0;
}

.pod-bonus__total {
  padding-top: 10px;
  border-top: 1px solid rgba(255, 126, 95, 0.2);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px;
  font-size: 0.88rem;
}

.pod-bonus__total strong {
  color: var(--gold-light);
  font-family: 'Outfit', sans-serif;
  font-weight: 700;
}

/* Calculator Result Card */
.calc__result {
  background: var(--bg-navy-card);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-lg);
  padding: clamp(24px, 3.5vw, 36px);
  text-align: center;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  gap: 16px;
}

.eyebrow-label {
  font-size: 0.82rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--text-muted);
}

.calc__amount {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1.1;
  margin-block: 8px;
}

.calc__sub {
  font-size: 0.92rem;
  color: var(--accent-cyan);
  font-weight: 600;
  margin-bottom: 24px;
}

.calc__compare {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
  padding: 16px;
  background: rgba(10, 15, 29, 0.6);
  border-radius: var(--r-md);
  border: 1px solid var(--border-subtle);
}

.calc__compare > div {
  display: flex;
  flex-direction: column;
  gap: 4px;
}

.calc__compare span {
  font-size: 0.78rem;
  color: var(--text-muted);
}

.calc__compare strong {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
}

/* Calculator Card Wrapper & Math Breakdown */
.calc-card {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.calc__math-breakdown {
  border-top: 1px solid rgba(255, 126, 95, 0.18);
  padding-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.calc__math-head {
  display: flex;
  align-items: center;
  gap: 14px;
}

.calc__math-head strong {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  color: #FFFFFF;
}

.calc__math-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 16px;
}

.calc__math-box {
  background: rgba(10, 15, 29, 0.55);
  border: 1px solid var(--border-subtle);
  border-radius: var(--r-md);
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.calc__math-box--inhouse {
  border-color: rgba(59, 130, 246, 0.35);
  background: rgba(59, 130, 246, 0.04);
}

.calc__math-box--luster {
  border-color: rgba(255, 126, 95, 0.35);
  background: rgba(255, 126, 95, 0.04);
}

.calc__math-box--savings {
  border-color: rgba(45, 212, 191, 0.35);
  background: rgba(45, 212, 191, 0.04);
}

.calc__math-title {
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  font-weight: 700;
  color: var(--text-muted);
}

.calc__math-calc {
  font-size: 0.86rem;
  color: var(--text-soft);
  font-family: 'JetBrains Mono', monospace, sans-serif;
}

.calc__math-value {
  font-family: 'Outfit', sans-serif;
  font-size: 1.15rem;
  font-weight: 700;
  color: #FFFFFF;
  margin-top: 4px;
}

.calc__math-note {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  padding: 14px 18px;
  background: rgba(255, 126, 95, 0.08);
  border: 1px dashed rgba(255, 126, 95, 0.35);
  border-radius: var(--r-sm);
  font-size: 0.86rem;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  line-height: 1.55;
}

.calc__math-note svg {
  width: 16px;
  height: 16px;
  color: var(--gold-light);
  flex-shrink: 0;
  margin-top: 2px;
}

/* STREAMING_CHUNK:Tour, tech standards, and components... */
/* ==========================================================================
   FACILITY TOUR
   ========================================================================== */

.facility-nav {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 12px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.facility-tab {
  font-family: 'Outfit', sans-serif;
  font-size: 0.92rem;
  font-weight: 700;
  padding: 12px 24px;
  border-radius: var(--r-pill);
  background: rgba(18, 25, 41, 0.7);
  border: 1px solid var(--border-card);
  color: var(--text-soft);
  cursor: pointer;
  transition: var(--t-fast);
}

.facility-tab:hover {
  background: rgba(26, 36, 56, 0.9);
  color: #FFFFFF;
  border-color: var(--border-gold);
}

.facility-tab.is-active {
  background: var(--gold-gradient);
  color: var(--bg-dark);
  border-color: transparent;
  box-shadow: var(--shadow-gold);
}

.facility-display {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: clamp(28px, 4vw, 48px);
  align-items: center;
  background: var(--bg-navy-card);
  border: 1px solid var(--border-card);
  border-radius: var(--r-xl);
  padding: clamp(20px, 3.5vw, 36px);
  box-shadow: var(--shadow-md);
  transition: opacity 0.3s ease;
}

.facility-display.is-hidden {
  display: none;
}

@media (max-width: 900px) {
  .facility-display {
    grid-template-columns: 1fr;
  }
}

.facility-display__img-wrap {
  border-radius: var(--r-lg);
  overflow: hidden;
  border: 1px solid var(--border-subtle);
  box-shadow: var(--shadow-md);
  max-height: 400px;
}

.facility-display__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.facility-display:hover .facility-display__img-wrap img {
  transform: scale(1.03);
}

.facility-display__info h3 {
  margin-top: 10px;
  margin-bottom: 12px;
}

.facility-display__info p {
  color: var(--text-soft);
  font-size: 0.95rem;
  margin-bottom: 22px;
}

.facility-feat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 10px;
}

.facility-feat-item {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.86rem;
  color: var(--text-main);
}

.facility-feat-item svg {
  width: 16px;
  height: 16px;
  color: var(--gold-light);
  flex-shrink: 0;
  margin-top: 3px;
}

/* ==========================================================================
   TECH & SECURITY STANDARDS
   ========================================================================== */

.tech-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tech-card h3 {
  font-size: 1.1rem;
}

.tech-card__list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 6px;
  padding-top: 10px;
  border-top: 1px solid rgba(255, 126, 95, 0.12);
}

.tech-card__list li {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 0.84rem;
  color: var(--text-soft);
  line-height: 1.4;
}

.tech-card__list li svg {
  width: 14px;
  height: 14px;
  color: var(--gold-light);
  flex-shrink: 0;
  margin-top: 2px;
}

/* ==========================================================================
   DELIVERY PROCESS TIMELINE
   ========================================================================== */

.timeline-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 24px;
}

.step {
  background: var(--bg-navy-card);
  border: 1px solid var(--border-card);
  border-radius: var(--r-lg);
  padding: 28px;
  position: relative;
  transition: var(--t-base);
}

.step:hover {
  transform: translateY(-4px);
  border-color: var(--border-gold);
  box-shadow: var(--shadow-md);
}

.step__num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.2rem;
  font-weight: 800;
  color: var(--gold-light);
  line-height: 1;
  margin-bottom: 12px;
  display: block;
}

.step h3 {
  font-size: 1.2rem;
  margin-bottom: 10px;
}

.step p {
  font-size: 0.88rem;
  color: var(--text-soft);
  margin: 0;
}

/* Check Grid */
.check-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 14px;
  margin-top: 24px;
}

.check {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 0.92rem;
  font-weight: 600;
  color: var(--text-main);
  background: rgba(18, 25, 41, 0.6);
  padding: 12px 16px;
  border-radius: var(--r-md);
  border: 1px solid var(--border-subtle);
}

.check svg {
  width: 18px;
  height: 18px;
  color: var(--gold-light);
  flex-shrink: 0;
}

.showcase {
  border-radius: var(--r-xl);
  overflow: hidden;
  border: 1px solid var(--border-gold);
  box-shadow: var(--shadow-md);
}

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

/* STREAMING_CHUNK:Quotes, updates, FAQs, and forms... */
/* ==========================================================================
   CLIENT TESTIMONIALS CAROUSEL
   ========================================================================== */

.quotes {
  position: relative;
  overflow: hidden;
  max-width: 860px;
  margin-inline: auto;
  min-height: 280px;
  display: flex;
  flex-direction: column;
  justify-content: center;
}

.quote {
  display: none;
  flex-direction: column;
  align-items: center;
  text-align: center;
}

.quote.is-active {
  display: flex;
  animation: fadeIn 0.4s ease forwards;
}

@keyframes fadeIn {
  from { opacity: 0; transform: translateY(8px); }
  to { opacity: 1; transform: translateY(0); }
}

.quote__mark {
  width: 36px;
  height: 36px;
  color: var(--gold-light);
  margin-bottom: 16px;
}

.quote p {
  font-size: clamp(1.1rem, 1.6vw, 1.35rem);
  color: #FFFFFF;
  line-height: 1.6;
  font-style: italic;
  margin-bottom: 24px;
}

.quote__by {
  display: flex;
  align-items: center;
  gap: 14px;
}

.quote__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--bg-dark);
  font-family: 'Outfit', sans-serif;
  font-weight: 800;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.95rem;
}

.quote__by span {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.quote__by strong {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  color: #FFFFFF;
}

.quote__by span span {
  font-size: 0.82rem;
  color: var(--gold-light);
}

.quotes__nav {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 24px;
}

.quotes__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.2);
  border: none;
  cursor: pointer;
  transition: var(--t-fast);
}

.quotes__dot.is-active {
  background: var(--gold-light);
  width: 28px;
  border-radius: var(--r-pill);
}

/* ==========================================================================
   OFFICE UPDATES / LIFE AT LUSTER
   ========================================================================== */

.update-card {
  padding: 0;
  overflow: hidden;
  transition: var(--t-base);
}

.update-card.is-hidden {
  display: none;
}

.update-card__img-wrap {
  position: relative;
  height: 240px;
  overflow: hidden;
}

.update-card__img-wrap img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform var(--t-slow);
}

.update-card:hover .update-card__img-wrap img {
  transform: scale(1.05);
}

.update-card__badge {
  position: absolute;
  top: 14px;
  left: 14px;
  font-family: 'Outfit', sans-serif;
  font-size: 0.76rem;
  font-weight: 700;
  background: rgba(5, 8, 17, 0.85);
  backdrop-filter: blur(8px);
  color: var(--gold-light);
  border: 1px solid var(--border-gold);
  padding: 4px 12px;
  border-radius: var(--r-pill);
}

.update-card__body {
  padding: 24px;
}

.update-card__meta {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  color: var(--text-muted);
  margin-bottom: 8px;
}

.update-card__meta svg {
  width: 14px;
  height: 14px;
  color: var(--gold-light);
}

.update-card h3 {
  font-size: 1.25rem;
  margin-bottom: 8px;
}

.update-card p {
  font-size: 0.9rem;
  color: var(--text-soft);
  margin: 0;
}

/* ==========================================================================
   FAQ ACCORDION
   ========================================================================== */

.faq {
  max-width: 820px;
  margin-inline: auto;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq__item {
  background: var(--bg-navy-card);
  border: 1px solid var(--border-card);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: var(--t-fast);
}

.faq__item.is-open {
  border-color: var(--border-gold);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.3);
}

.faq__q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: none;
  border: none;
  text-align: left;
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  color: #FFFFFF;
  cursor: pointer;
  transition: var(--t-fast);
}

.faq__q:hover {
  color: var(--gold-light);
}

.faq__q svg {
  width: 20px;
  height: 20px;
  color: var(--gold-light);
  transition: transform var(--t-base);
  flex-shrink: 0;
}

.faq__item.is-open .faq__q svg {
  transform: rotate(180deg);
}

.faq__a {
  display: grid;
  grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}

.faq__item.is-open .faq__a {
  grid-template-rows: 1fr;
}

.faq__a > div {
  overflow: hidden;
}

.faq__a p {
  padding: 0 24px 20px 24px;
  font-size: 0.95rem;
  color: var(--text-soft);
  line-height: 1.6;
}

/* ==========================================================================
   CTA BAND
   ========================================================================== */

.cta-band {
  background: linear-gradient(135deg, #121929 0%, #050811 50%, #0A0F1D 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-xl);
  padding: clamp(36px, 6vw, 64px);
  text-align: center;
  box-shadow: var(--shadow-gold), inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.cta-band h2 {
  margin-top: 14px;
  margin-bottom: 12px;
}

.cta-band p {
  font-size: clamp(1.05rem, 1.3vw, 1.2rem);
  color: var(--text-soft);
  max-width: 680px;
  margin-inline: auto;
  margin-bottom: 32px;
}

.cta-band__actions {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  flex-wrap: wrap;
}

/* ==========================================================================
   FORMS & INPUTS
   ========================================================================== */

.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

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

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field--full {
  grid-column: 1 / -1;
}

.field label {
  font-size: 0.86rem;
  font-weight: 600;
  color: var(--text-main);
}

.input, .select, .textarea {
  width: 100%;
  background: rgba(10, 15, 29, 0.7);
  border: 1px solid var(--border-card);
  border-radius: var(--r-sm);
  padding: 12px 16px;
  color: #FFFFFF;
  font-size: 0.95rem;
  outline: none;
  transition: var(--t-fast);
}

.input::placeholder,
.select::placeholder,
.textarea::placeholder {
  color: rgba(203, 213, 225, 0.5);
  opacity: 1;
}

.select option {
  background: #0A0F1D;
  color: #FFFFFF;
}

.phone-input-group {
  display: flex;
  align-items: stretch;
  gap: 8px;
  width: 100%;
}

.select--country {
  width: 96px;
  min-width: 88px;
  flex-shrink: 0;
  padding: 12px 20px 12px 8px;
  font-size: 0.88rem;
  font-weight: 500;
  cursor: pointer;
  background-position: right 6px center;
}

.phone-input-group .input {
  flex: 1 1 auto;
  min-width: 0;
  width: 100%;
  padding: 12px 12px;
}

@media (max-width: 480px) {
  .select--country {
    width: 90px;
    min-width: 84px;
    padding: 12px 16px 12px 6px;
    font-size: 0.84rem;
  }
  .phone-input-group .input {
    padding: 12px 10px;
  }
}

.input:focus, .select:focus, .textarea:focus {
  border-color: var(--gold-primary);
  box-shadow: 0 0 12px rgba(255, 126, 95, 0.3);
  background: rgba(18, 25, 41, 0.95);
}

.input[aria-invalid="true"],
.textarea[aria-invalid="true"] {
  border-color: #EF4444;
}

.form-error {
  font-size: 0.78rem;
  color: #F87171;
  min-height: 18px;
}

.form-consent {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.82rem;
  color: var(--text-muted);
  cursor: pointer;
}

.form-consent input[type="checkbox"] {
  margin-top: 3px;
  accent-color: var(--gold-primary);
}

.form-success {
  display: none;
  text-align: center;
  padding: 32px 20px;
}

.form-success.is-shown {
  display: flex;
  flex-direction: column;
  align-items: center;
  animation: fadeIn 0.4s ease forwards;
}

.form-success__icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: var(--gold-gradient);
  color: var(--bg-dark);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  box-shadow: var(--shadow-gold);
}

.form-success__icon svg {
  width: 32px;
  height: 32px;
}

/* STREAMING_CHUNK:Modal and Footer... */
/* ==========================================================================
   CONSULTATION MODAL
   ========================================================================== */

.modal {
  position: fixed;
  inset: 0;
  z-index: 2000;
  background: rgba(5, 8, 17, 0.85);
  backdrop-filter: blur(16px);
  display: flex;
  align-items: center;
  justify-content: center;
  padding: var(--gutter);
  opacity: 0;
  visibility: hidden;
  transition: var(--t-base);
}

.modal.is-open {
  opacity: 1;
  visibility: visible;
}

.modal__dialog {
  background: linear-gradient(160deg, #121929 0%, #0A0F1D 100%);
  border: 1px solid var(--border-gold);
  border-radius: var(--r-xl);
  padding: clamp(24px, 4vw, 44px);
  width: 100%;
  max-width: 640px;
  max-height: 90vh;
  overflow-y: auto;
  position: relative;
  box-shadow: var(--shadow-lg), 0 0 40px rgba(255, 126, 95, 0.2);
  transform: scale(0.95);
  transition: transform var(--t-base);
}

.modal.is-open .modal__dialog {
  transform: scale(1);
}

.modal__close {
  position: absolute;
  top: 20px;
  right: 20px;
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid var(--border-subtle);
  border-radius: 50%;
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #FFFFFF;
  cursor: pointer;
  transition: var(--t-fast);
}

.modal__close:hover {
  background: rgba(255, 126, 95, 0.2);
  border-color: var(--gold-primary);
  color: var(--gold-light);
}

.modal__close svg {
  width: 20px;
  height: 20px;
}

.modal h3 {
  margin-top: 10px;
  margin-bottom: 8px;
}

.modal p {
  font-size: 0.92rem;
  color: var(--text-soft);
  margin-bottom: 24px;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */

.footer {
  background: #030408; /* Very deep slate for footer */
  border-top: 1px solid var(--border-subtle);
  padding-top: clamp(48px, 6vw, 80px);
  padding-bottom: 32px;
  color: var(--text-soft);
}

.footer__grid {
  display: grid;
  grid-template-columns: 1.4fr 0.8fr 1fr 1.2fr;
  gap: clamp(28px, 4vw, 48px);
  margin-bottom: 48px;
}

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

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

.footer__about {
  font-size: 0.88rem;
  line-height: 1.6;
  margin-top: 16px;
  margin-bottom: 20px;
}

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

.socials a {
  width: 36px;
  height: 36px;
  border-radius: var(--r-sm);
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-light);
  transition: var(--t-fast);
}

.socials a svg {
  width: 18px;
  height: 18px;
}

.socials a:hover {
  background: var(--gold-gradient);
  color: var(--bg-dark);
  border-color: transparent;
  transform: translateY(-2px);
}

.footer h4 {
  font-family: 'Outfit', sans-serif;
  font-size: 1.05rem;
  color: #FFFFFF;
  margin-bottom: 18px;
}

.footer__links {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer__links a {
  font-size: 0.88rem;
  color: var(--text-soft);
}

.footer__links a:hover {
  color: var(--gold-light);
  padding-left: 4px;
}

.footer__contact {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer__contact li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 0.88rem;
}

.footer__contact li svg {
  width: 16px;
  height: 16px;
  color: var(--gold-light);
  flex-shrink: 0;
  margin-top: 3px;
}

.footer__contact a:hover {
  color: var(--gold-light);
}

.footer__bottom {
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.82rem;
  color: var(--text-muted);
}

.footer__bottom-links {
  display: flex;
  align-items: center;
  gap: 20px;
}

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

/* ==========================================================================
   SCROLL REVEALS & MOTION
   ========================================================================== */

[data-reveal] {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s var(--ease), transform 0.6s var(--ease);
  will-change: opacity, transform;
}

[data-reveal].is-visible {
  opacity: 1;
  transform: translateY(0);
}

@media (prefers-reduced-motion: reduce) {
  [data-reveal] {
    opacity: 1;
    transform: none;
    transition: none;
  }
  .marquee__track {
    animation: none;
  }
}