
/* ============================================================
   GLASS & GRADIENT DESIGN SYSTEM
   Primary: #5C7E8F  |  Gray: #A2A2A2  |  Frost: #D4DDE2  |  White: #FFFFFF
   ============================================================ */

:root {
  /* Primary palette */
  --primary:          #5C7E8F;
  --primary-dark:     #4A6B7A;
  --primary-light:    #7A9BAD;
  --primary-glow:     rgba(92, 126, 143, 0.18);

  /* Neutral palette */
  --mid-gray:         #A2A2A2;
  --frost:            #D4DDE2;
  --frost-deep:       #BFC9D0;
  --white:            #FFFFFF;
  --off-white:        #F8FAFC;
  --near-white:       #F0F4F6;

  /* Dark section palette */
  --dark-bg:          #1A2332;
  --dark-bg-mid:      #14202E;
  --dark-bg-deep:     #0D1521;
  --dark-surface:     rgba(255, 255, 255, 0.04);

  /* Text */
  --ink:              #1A2332;
  --ink-light:        #EAF1FB;
  --muted:            #6B7E8F;
  --muted-light:      #8A9EB8;

  /* Borders */
  --line:             rgba(92, 126, 143, 0.14);
  --line-dark:        rgba(255, 255, 255, 0.08);
  --hairline:         rgba(92, 126, 143, 0.28);

  /* Legacy aliases (used across HTML pages) */
  --navy:             #1A2332;
  --navy-2:           #14202E;
  --navy-3:           #0D1521;
  --gold:             #5C7E8F;
  --gold-2:           #7A9BAD;
  --steel:            #A2A2A2;
  --paper:            #F8FAFC;

  /* Typography */
  --disp:   'Saira Condensed', 'Arial Narrow', system-ui, sans-serif;
  --body:   'Inter', system-ui, -apple-system, 'Segoe UI', Roboto, sans-serif;
  --maxw:   1180px;
}

/* ── Scrollbar ─────────────────────────────────────────── */
::-webkit-scrollbar          { width: 8px; height: 8px; }
::-webkit-scrollbar-track    { background: var(--near-white); }
::-webkit-scrollbar-thumb    { background: var(--frost); border-radius: 99px; border: 2px solid var(--near-white); }
::-webkit-scrollbar-thumb:hover { background: var(--primary); }

/* ── Ambient glow bubbles ───────────────────────────────── */
.glow-bubble {
  position: fixed;
  border-radius: 50%;
  filter: blur(130px);
  z-index: 0;
  pointer-events: none;
  opacity: 0.28;
  will-change: transform;
}
.bubble-1 {
  background: radial-gradient(circle, rgba(92,126,143,0.35) 0%, transparent 70%);
  width: 650px; height: 650px;
  top: -180px; left: -220px;
  animation: float-1 26s infinite alternate ease-in-out;
}
.bubble-2 {
  background: radial-gradient(circle, rgba(212,221,226,0.3) 0%, transparent 70%);
  width: 750px; height: 750px;
  top: 38%; right: -260px;
  animation: float-2 32s infinite alternate ease-in-out;
}
.bubble-3 {
  background: radial-gradient(circle, rgba(122,155,173,0.22) 0%, transparent 70%);
  width: 620px; height: 620px;
  bottom: -120px; left: 22%;
  animation: float-3 29s infinite alternate ease-in-out;
}
@keyframes float-1 { 0%{transform:translate(0,0) scale(1)} 100%{transform:translate(80px,55px) scale(1.14)} }
@keyframes float-2 { 0%{transform:translate(0,0) scale(1)} 100%{transform:translate(-90px,35px) scale(0.91)} }
@keyframes float-3 { 0%{transform:translate(0,0) scale(1)} 100%{transform:translate(55px,-65px) scale(1.06)} }

/* ── Reset & Base ───────────────────────────────────────── */
* { box-sizing: border-box }
html { scroll-behavior: smooth }

body {
  margin: 0;
  background: var(--white);
  color: var(--ink);
  font-family: var(--body);
  font-size: 17px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none }
img { max-width: 100%; height: auto; }

.wrap {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.disp { font-family: var(--disp); letter-spacing: .01em; line-height: .96 }

/* ── Eyebrow ────────────────────────────────────────────── */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--disp);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .22em;
  font-size: 13px;
  color: var(--primary);
}
.eyebrow::before {
  content: "";
  width: 13px; height: 13px;
  flex: 0 0 auto;
  background:
    radial-gradient(circle, var(--primary) 1.7px, transparent 2px) center/100% 100%,
    linear-gradient(var(--primary), var(--primary)) center/100% 1.4px no-repeat,
    linear-gradient(var(--primary), var(--primary)) center/1.4px 100% no-repeat;
  border-radius: 50%;
  outline: 1.4px solid rgba(92,126,143,0.3);
  outline-offset: 2px;
}
.eyebrow.on-dark {
  color: var(--frost);
}
.eyebrow.on-dark::before {
  background:
    radial-gradient(circle, var(--frost) 1.7px, transparent 2px) center/100% 100%,
    linear-gradient(var(--frost), var(--frost)) center/100% 1.4px no-repeat,
    linear-gradient(var(--frost), var(--frost)) center/1.4px 100% no-repeat;
  outline-color: rgba(212,221,226,0.25);
}

/* ============================================================
   NAV & GLASS-NAV  (shared frosted white glass capsule)
   ============================================================ */
.nav, .glass-nav {
  position: fixed;
  top: 0; left: 0;
  width: 100%;
  z-index: 100;
  background: rgba(255, 255, 255, 0.80);
  backdrop-filter: blur(22px) saturate(180%);
  -webkit-backdrop-filter: blur(22px) saturate(180%);
  border-bottom: 1px solid rgba(212, 221, 226, 0.55);
  box-shadow: 0 2px 16px rgba(92, 126, 143, 0.07);
  transition: all 0.42s cubic-bezier(0.16,1,0.3,1);
  height: auto;
}
.nav.scrolled, .glass-nav.scrolled {
  top: 12px;
  width: calc(100% - 32px);
  left: 16px;
  border-radius: 16px;
  border: 1px solid rgba(212, 221, 226, 0.7);
  background: rgba(255, 255, 255, 0.92);
  box-shadow: 0 10px 36px rgba(92, 126, 143, 0.14), 0 2px 8px rgba(92, 126, 143, 0.06);
}
.nav__in, .nav-container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 72px;
  transition: height 0.42s cubic-bezier(0.16,1,0.3,1);
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 0 24px;
}
.nav.scrolled .nav__in,
.glass-nav.scrolled .nav-container { height: 60px; }

/* Brand */
.brand, .nav-logo {
  display: flex; align-items: center; gap: 12px;
  color: var(--ink);
  transition: transform 0.28s ease;
  text-decoration: none;
}
.brand:hover, .nav-logo:hover { transform: scale(1.02); }

.brand__mark {
  width: 38px; height: 38px;
  border: 2px solid var(--primary);
  border-radius: 9px;
  display: grid; place-items: center;
  color: var(--primary);
  background: rgba(92, 126, 143, 0.08);
  overflow: hidden;
}
.brand__mark img, .logo-image {
  width: 100%; height: 100%;
  object-fit: contain;
  border-radius: 7px;
}
.nav-logo .logo-image {
  width: 28px; height: 28px;
  border-radius: 6px;
}
.brand__txt, .nav-logo > span:last-child {
  font-family: var(--disp);
  text-transform: uppercase;
  line-height: 1; letter-spacing: .04em;
}
.brand__txt b { font-weight: 800; font-size: 18px; color: var(--ink); }
.brand__txt b span, .nav-logo > span:last-child { color: var(--primary); }
.brand__txt small {
  display: block; font-weight: 500;
  font-size: 10px; letter-spacing: .28em;
  color: var(--mid-gray); margin-top: 3px;
}

/* Nav links */
.nav__links, .desktop-links {
  display: flex; align-items: center; gap: 26px;
}
.nav__links a, .nav-link-btn {
  color: var(--muted);
  font-size: 13px; font-weight: 500;
  letter-spacing: .06em; text-transform: uppercase;
  transition: all 0.28s ease;
  position: relative; padding: 6px 0;
  background: none; border: none; cursor: pointer;
  text-decoration: none; opacity: 0.88;
}
.nav__links a:hover, .nav-link-btn:hover { color: var(--primary); opacity: 1; }
.nav__links a::after, .nav-link-btn::after {
  content: ''; position: absolute;
  bottom: 0; left: 0;
  width: 0; height: 2px;
  background: var(--primary);
  border-radius: 1px;
  transition: width 0.3s cubic-bezier(0.16,1,0.3,1);
}
.nav__links a:hover::after, .nav-link-btn:hover::after { width: 100%; }
.nav-link-btn.active-nav {
  color: var(--primary); opacity: 1; font-weight: 700;
}
.nav-link-btn.active-nav::after { width: 100%; }

/* Dropdown */
.nav-dropdown { position: relative; }
.dropdown-menu {
  position: absolute; top: calc(100% + 8px); left: 50%;
  transform: translateX(-50%) translateY(8px);
  background: rgba(255, 255, 255, 0.97);
  backdrop-filter: blur(16px);
  border: 1px solid rgba(212, 221, 226, 0.75);
  border-radius: 12px; padding: 8px 0; min-width: 220px;
  box-shadow: 0 12px 40px rgba(92, 126, 143, 0.14);
  opacity: 0; visibility: hidden;
  transition: all 0.28s cubic-bezier(0.16,1,0.3,1);
  z-index: 1000;
}
.nav-dropdown:hover .dropdown-menu {
  opacity: 1; visibility: visible;
  transform: translateX(-50%) translateY(0);
}
.dropdown-menu a {
  display: block; padding: 10px 20px;
  color: var(--muted); font-size: 13.5px;
  transition: all 0.2s ease;
}
.dropdown-menu a:hover {
  background: rgba(92,126,143,0.06);
  color: var(--primary); padding-left: 24px;
}

/* Hamburger */
.mobile-toggle-btn {
  display: none; flex-direction: column;
  justify-content: space-between;
  width: 22px; height: 14px;
  background: none; border: none;
  cursor: pointer; z-index: 110; padding: 0;
}
.bar-line {
  width: 100%; height: 2px;
  background-color: var(--ink);
  transition: all 0.28s ease; border-radius: 2px;
}
.bar-line.open-top { transform: translateY(6px) rotate(45deg); }
.bar-line.open-mid  { opacity: 0; transform: scaleX(0); }
.bar-line.open-bot  { transform: translateY(-6px) rotate(-45deg); }

/* Mobile nav panel */
.mobile-nav-panel {
  position: fixed; top: 72px; left: 0; right: 0;
  height: calc(100vh - 72px);
  padding: 28px 24px;
  display: flex; flex-direction: column; gap: 4px;
  z-index: 99;
  background: rgba(255, 255, 255, 0.97) !important;
  backdrop-filter: blur(24px) !important;
  border-top: 1px solid rgba(212, 221, 226, 0.55) !important;
  border-radius: 0 !important;
  border-left: none !important;
  border-right: none !important;
  border-bottom: none !important;
  overflow-y: auto;
  box-shadow: none !important;
}
.mobile-nav-link {
  color: var(--ink); font-family: var(--disp);
  font-size: 22px; font-weight: 600;
  letter-spacing: .04em; text-transform: uppercase;
  text-decoration: none; padding: 14px 0;
  border-bottom: 1px solid rgba(212,221,226,0.45);
  transition: all 0.22s ease; display: block;
}
.mobile-nav-link:hover { color: var(--primary); padding-left: 8px; }
.mobile-nav-group { display: flex; flex-direction: column; }
.mobile-nav-header { display: flex; justify-content: space-between; align-items: center; }
.mobile-submenu-toggle {
  background: none; border: none;
  color: var(--muted); cursor: pointer; padding: 10px;
}
.mobile-submenu {
  display: none; flex-direction: column;
  padding-left: 16px; margin: 4px 0;
  border-left: 2px solid var(--frost);
}
.mobile-submenu.active { display: flex; }
.mobile-sublink {
  color: var(--muted); font-size: 14px;
  padding: 9px 0; text-decoration: none;
  transition: color 0.2s ease;
}
.mobile-sublink:hover { color: var(--primary); }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex; align-items: center; gap: 8px;
  font-family: var(--disp); font-weight: 700;
  text-transform: uppercase; letter-spacing: .08em;
  font-size: 14px; padding: 12px 26px;
  border-radius: 99px; cursor: pointer;
  border: 1.5px solid transparent;
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
  text-decoration: none;
}

/* Primary blue-gray fill */
.btn--gold {
  background: var(--primary);
  color: #FFFFFF;
  border-color: var(--primary);
  box-shadow: 0 4px 16px rgba(92, 126, 143, 0.28);
}
.btn--gold:hover {
  background: var(--primary-dark);
  border-color: var(--primary-dark);
  transform: translateY(-2px) scale(1.02);
  box-shadow: 0 8px 26px rgba(92, 126, 143, 0.38);
}

/* Outlined ghost — adapts to context */
.btn--ghost {
  border-color: rgba(92, 126, 143, 0.32);
  color: var(--primary);
  background: rgba(92, 126, 143, 0.04);
}
.btn--ghost:hover {
  border-color: var(--primary);
  background: rgba(92, 126, 143, 0.09);
  transform: translateY(-2px) scale(1.02);
}
/* Ghost on dark hero/CTA */
.hero .btn--ghost, .cta .btn--ghost, .section--dark .btn--ghost {
  border-color: rgba(212, 221, 226, 0.4);
  color: var(--frost);
  background: rgba(255, 255, 255, 0.05);
}
.hero .btn--ghost:hover, .cta .btn--ghost:hover, .section--dark .btn--ghost:hover {
  border-color: var(--frost);
  color: #fff;
  background: rgba(212, 221, 226, 0.1);
  transform: translateY(-2px) scale(1.02);
}

/* Dark/solid */
.btn--dark {
  background: #fff;
  color: var(--ink);
  border-color: #fff;
}
.btn--dark:hover {
  background: var(--frost);
  border-color: var(--frost);
  transform: translateY(-2px) scale(1.02);
}

.nav__cta { display: inline-flex; }
.nav__burger { display: none; }

/* ============================================================
   HERO (always dark — 3D canvas)
   ============================================================ */
.hero {
  position: relative; overflow: hidden;
  background: radial-gradient(120% 90% at 72% 10%, #1E3445 0%, #1A2332 45%, #0D1521 100%);
  color: #EAF1FB;
  min-height: 88vh;
  display: flex; align-items: center;
  padding-top: 72px;
}
.hero__canvas {
  position: absolute;
  inset: 0;
  z-index: 0;
  opacity: 0;
  transition: opacity 0.8s ease-in-out;
}
.hero__canvas.ready {
  opacity: 1;
}
.hero__canvas canvas { display: block; }
.hero__grid {
  position: absolute; inset: 0; z-index: 1;
  pointer-events: none; opacity: .35;
  background-image:
    linear-gradient(rgba(212,221,226,.07) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,221,226,.07) 1px, transparent 1px);
  background-size: 46px 46px;
  mask-image: radial-gradient(120% 80% at 30% 50%, #000 35%, transparent 78%);
}
.hero::before {
  content: ""; position: absolute; inset: 0; z-index: 1;
  pointer-events: none;
  background: linear-gradient(90deg, #0D1521 4%, rgba(13,21,33,.78) 40%, rgba(13,21,33,.12) 70%, transparent 100%);
}
.hero__inner { position: relative; z-index: 2; width: 100%; padding: 60px 0; }
.hero__col { max-width: 680px; }
.hero h1 {
  font-family: var(--disp); font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(46px, 8vw, 104px);
  margin: 18px 0 10px; color: #fff; line-height: .9;
}
.hero h1 .amp { color: var(--frost); }
.hero__sub {
  font-size: clamp(17px, 2.2vw, 21px);
  color: rgba(212, 221, 226, 0.82);
  max-width: 560px; margin: 0 0 30px;
}
.hero__cta { display: flex; gap: 14px; flex-wrap: wrap; }
.hero__trust {
  margin-top: 34px;
  display: flex; gap: 14px; align-items: center;
  flex-wrap: wrap; font-size: 13px;
  letter-spacing: .04em; color: var(--muted-light);
}
.hero__trust b { color: var(--frost); font-weight: 600; }
.hero__trust .dot { width: 5px; height: 5px; border-radius: 50%; background: var(--primary-light); }
.hero__tag {
  position: absolute; right: 26px; bottom: 22px; z-index: 2;
  font-family: var(--disp); text-transform: uppercase;
  letter-spacing: .2em; font-size: 12px;
  color: rgba(212, 221, 226, 0.42);
}
.fallback .hero__canvas { display: none; }

/* ── Page Hero (inner pages) ────────────────────────────── */
.page-hero {
  background: linear-gradient(135deg, #1A2332 0%, #14202E 60%, #0D1521 100%);
  padding: 120px 0 70px;
  color: #EAF1FB;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.page-hero h1 {
  font-family: var(--disp); font-weight: 800;
  text-transform: uppercase;
  font-size: clamp(36px, 6vw, 72px);
  margin: 14px 0 10px; color: #fff; line-height: .92;
}
.page-hero p { color: rgba(212,221,226,.8); font-size: 18px; max-width: 560px; margin: 0; }

/* ============================================================
   SECTION SHELL  —  alternating light/dark rhythm
   ============================================================ */
.section { padding: 96px 0; background: var(--white); }

/* Odd / dark atmospheric sections */
.section--dark {
  background: var(--dark-bg);
  color: var(--ink-light);
}
.section--dark .section__head h2 { color: #fff; }
.section--dark .section__head p   { color: var(--muted-light); }
.section--dark .eyebrow            { color: var(--frost); }
.section--dark p                   { color: var(--muted-light); }
.section--dark .why p              { color: var(--muted-light); }
.section--dark .why__lead          { color: #fff; }

/* Subtle off-white variant (even) */
.section--subtle { background: var(--off-white); }

.section__head { max-width: 720px; margin-bottom: 46px; }
.section__head h2 {
  font-family: var(--disp); font-weight: 700;
  text-transform: uppercase;
  font-size: clamp(30px, 4.6vw, 52px);
  margin: 14px 0 12px; line-height: .98; color: var(--ink);
}
.section__head p { color: var(--muted); font-size: 18px; margin: 0; }

/* ── Grids ─────────────────────────────────────────────── */
.grid3 { display: grid; grid-template-columns: repeat(3,1fr); gap: 20px; }
.grid2 { display: grid; grid-template-columns: repeat(2,1fr); gap: 20px; }

/* ============================================================
   CARDS  —  light context (default)
   ============================================================ */
.card {
  background: #FFFFFF;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 28px 24px 24px;
  position: relative;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
  box-shadow: 0 2px 14px rgba(92,126,143,0.06);
}
.card:hover {
  transform: translateY(-6px) scale(1.01);
  border-color: rgba(92,126,143,0.32);
  box-shadow: 0 16px 40px rgba(92,126,143,0.13), 0 0 0 1px rgba(92,126,143,0.12);
}

/* Cards — dark context */
.section--dark .card, .process .card {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 8px 32px rgba(0,0,0,0.18);
  color: var(--ink-light);
}
.section--dark .card:hover, .process .card:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(212,221,226,0.28);
  box-shadow: 0 20px 44px rgba(0,0,0,0.28);
  transform: translateY(-6px) scale(1.01);
}
.section--dark .card h3, .section--dark .card h4 { color: #fff; }
.section--dark .card p { color: var(--muted-light); }

/* Card icon */
.card__ic {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: rgba(92,126,143,0.1);
  border: 1px solid rgba(92,126,143,0.18);
  display: grid; place-items: center;
  margin-bottom: 16px;
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
}
.card:hover .card__ic {
  background: rgba(92,126,143,0.18);
  border-color: rgba(92,126,143,0.38);
  transform: scale(1.08) rotate(3deg);
}
.card__ic svg { width: 24px; height: 24px; stroke: var(--primary); stroke-width: 1.7; fill: none; }

.card h3 {
  font-family: var(--disp); text-transform: uppercase;
  letter-spacing: .02em; font-weight: 700;
  font-size: 21px; margin: 0 0 8px; color: var(--ink);
}
.card p { margin: 0; color: var(--muted); font-size: 15.5px; line-height: 1.55; }

/* ── Process (built-in dark section) ────────────────────── */
.process {
  background: radial-gradient(130% 90% at 50% 0%, #1A2332 0%, #111A28 60%, #0D1521 100%);
  color: #DCE6F4;
}
.process .section__head h2 { color: #fff; }
.process .section__head p  { color: var(--muted-light); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 22px;
  margin-top: 50px;
}
.process-card {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 36px 26px 30px;
  display: flex;
  flex-direction: column;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
  z-index: 1;
}
.process-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.03), transparent 60%);
  z-index: -1;
  transition: opacity 0.4s ease;
}
.process-card:hover {
  transform: translateY(-8px);
  background: rgba(255, 255, 255, 0.04);
  border-color: rgba(92, 126, 143, 0.35);
  box-shadow: 0 20px 44px rgba(0, 0, 0, 0.32), 0 0 0 1px rgba(92, 126, 143, 0.18);
}
.process-card__num {
  font-family: var(--disp);
  font-weight: 800;
  font-size: 34px;
  line-height: 1;
  color: rgba(255, 255, 255, 0.04);
  position: absolute;
  top: 24px;
  right: 26px;
  transition: all 0.4s ease;
}
.process-card:hover .process-card__num {
  color: var(--primary-light);
  transform: scale(1.1);
  opacity: 0.18;
}
.process-card__icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.08);
  display: grid;
  place-items: center;
  margin-bottom: 24px;
  color: var(--frost);
  transition: all 0.3s ease;
}
.process-card:hover .process-card__icon {
  background: rgba(92, 126, 143, 0.25);
  border-color: var(--primary-light);
  color: #fff;
  transform: scale(1.08) rotate(3deg);
  box-shadow: 0 0 15px rgba(92, 126, 143, 0.25);
}
.process-card__icon svg {
  width: 22px;
  height: 22px;
  fill: none;
  stroke: currentColor;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.process-card h4 {
  font-family: var(--disp);
  font-size: 20px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #fff;
  margin: 0 0 8px;
}
.process-card p {
  font-size: 14px;
  line-height: 1.55;
  color: var(--muted-light);
  margin: 0;
}

/* ── Stats / Why ────────────────────────────────────────── */
.why { display: grid; grid-template-columns: 1.05fr .95fr; gap: 54px; align-items: center; }
.why__lead {
  font-family: var(--disp); text-transform: uppercase;
  font-weight: 700; font-size: clamp(26px,3.4vw,40px);
  line-height: 1.02; margin: 14px 0 16px;
}
.why__lead em { font-style: normal; color: var(--primary); }
.why p { color: var(--muted); margin: 0 0 14px; }

.stats { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; }

/* Stat — light */
.stat {
  border: 1px solid var(--line);
  border-radius: 16px; padding: 24px 22px;
  background: var(--white);
  box-shadow: 0 2px 12px rgba(92,126,143,0.05);
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1);
}
.stat:hover {
  transform: translateY(-4px) scale(1.02);
  border-color: rgba(92,126,143,0.28);
  box-shadow: 0 12px 28px rgba(92,126,143,0.12);
}
.stat b {
  display: block; font-family: var(--disp);
  font-weight: 800; font-size: 34px;
  color: var(--primary); line-height: 1;
}
.stat span { display: block; margin-top: 8px; font-size: 13.5px; color: var(--muted); letter-spacing: .02em; }

/* Stat — dark context */
.section--dark .stat {
  background: rgba(255,255,255,0.04);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: 0 4px 20px rgba(0,0,0,0.18);
}
.section--dark .stat:hover {
  background: rgba(255,255,255,0.08);
  border-color: rgba(212,221,226,0.22);
}
.section--dark .stat b   { color: var(--frost); }
.section--dark .stat span { color: var(--muted-light); }

/* ── CTA Banner (dark) ──────────────────────────────────── */
.cta {
  background: linear-gradient(135deg, var(--dark-bg) 0%, #14202E 50%, #0F1B2B 100%);
  color: var(--ink-light);
  border-top: 1px solid rgba(255,255,255,0.05);
  border-bottom: 1px solid rgba(255,255,255,0.05);
}
.cta__in { display: flex; align-items: center; justify-content: space-between; gap: 30px; flex-wrap: wrap; padding: 60px 0; }
.cta h2 {
  font-family: var(--disp); text-transform: uppercase;
  font-weight: 800; font-size: clamp(28px,4vw,46px);
  margin: 0; line-height: .98; color: #fff;
}
.cta p { margin: 8px 0 0; font-size: 17px; color: var(--muted-light); max-width: 520px; }
.cta__act { display: flex; gap: 14px; align-items: center; flex-wrap: wrap; }
.cta__phone { font-family: var(--disp); font-weight: 800; font-size: 26px; color: var(--frost); }
.cta__phone small {
  display: block; font-family: var(--body);
  font-weight: 600; font-size: 12px; letter-spacing: .16em;
  text-transform: uppercase; color: var(--muted-light);
}

/* ── Footer (always dark) ───────────────────────────────── */
.foot {
  background: var(--dark-bg-deep);
  color: var(--muted-light);
  padding: 64px 0 30px;
}
.foot__top {
  display: grid; grid-template-columns: 1.3fr 1fr 1fr;
  gap: 40px; padding-bottom: 40px;
  border-bottom: 1px solid rgba(255,255,255,.07);
}
.foot h5 {
  font-family: var(--disp); text-transform: uppercase;
  letter-spacing: .16em; font-size: 12px;
  color: var(--frost); margin: 0 0 16px;
}
.foot a:hover { color: #fff; }
.foot__addr { font-style: normal; font-size: 14.5px; line-height: 1.7; color: var(--muted-light); }
.foot__addr b { color: var(--frost); font-weight: 600; font-family: var(--disp); letter-spacing: .03em; }
.foot__brand { display: flex; align-items: center; gap: 12px; margin-bottom: 14px; }
.foot__tag { color: var(--frost); font-family: var(--disp); text-transform: uppercase; letter-spacing: .18em; font-size: 12px; margin-top: 8px; }
.foot__social { display: flex; gap: 10px; margin-top: 14px; }
.foot__links { display: flex; flex-direction: column; gap: 9px; font-size: 14.5px; }
.foot__bottom {
  display: flex; justify-content: space-between;
  gap: 14px; flex-wrap: wrap; padding-top: 22px;
  font-size: 12.5px; color: rgba(162,162,162,0.5); letter-spacing: .03em;
}
.foot .brand__mark { border-color: var(--primary); background: rgba(92,126,143,0.1); }
.foot .brand__txt b { color: #fff; }
.foot .brand__txt b span { color: var(--frost); }

/* ── Divider ────────────────────────────────────────────── */
.divider { border: none; border-top: 1px solid var(--line); margin: 0; }

/* ── Prose ──────────────────────────────────────────────── */
.prose h2 { font-family: var(--disp); text-transform: uppercase; font-weight: 700; font-size: clamp(22px,3vw,36px); margin: 0 0 10px; color: var(--ink); }
.prose p  { color: var(--muted); margin: 0 0 14px; }
.prose ul { margin: 0; padding-left: 20px; color: var(--muted); }
.prose li { margin-bottom: 6px; }

/* ── Forms ──────────────────────────────────────────────── */
.form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.form-group { display: flex; flex-direction: column; gap: 6px; }
.form-group label {
  font-size: 12px; font-weight: 600;
  letter-spacing: .06em; text-transform: uppercase; color: var(--muted);
}
.form-group input,
.form-group select,
.form-group textarea {
  padding: 12px 14px;
  border: 1.5px solid var(--line);
  border-radius: 10px;
  font-family: var(--body); font-size: 15px;
  color: var(--ink); background: var(--off-white);
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 0 0 4px rgba(92,126,143,0.1);
}
.form-group textarea { resize: vertical; min-height: 120px; }

.draft-submit-btn {
  display: inline-flex; align-items: center; justify-content: center;
  width: 100%; padding: 14px 32px;
  background: var(--primary); color: #fff;
  font-family: var(--disp); font-weight: 700;
  font-size: 15px; letter-spacing: .08em; text-transform: uppercase;
  border: none; border-radius: 99px; cursor: pointer;
  box-shadow: 0 4px 16px rgba(92,126,143,0.28);
  transition: all 0.3s cubic-bezier(0.16,1,0.3,1);
}
.draft-submit-btn:hover {
  background: var(--primary-dark);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(92,126,143,0.38);
}

/* ── Gallery grid ───────────────────────────────────────── */
.gallery-filter-tabs { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 32px; justify-content: center; }
.gf-tab {
  padding: 8px 20px; border-radius: 99px;
  border: 1.5px solid var(--frost);
  background: transparent;
  font-family: var(--body); font-size: 13px; font-weight: 500;
  color: var(--muted); cursor: pointer; transition: all .22s ease;
}
.gf-tab:hover { border-color: var(--primary); color: var(--primary); }
.gf-tab.active { background: var(--primary); border-color: var(--primary); color: #fff; }

.gallery-3d-grid {
  display: grid; grid-template-columns: repeat(3,1fr);
  grid-auto-rows: 220px; gap: 10px; perspective: 1200px;
}
.gallery-3d-card {
  position: relative; border-radius: 12px; overflow: hidden;
  cursor: pointer; background: var(--frost);
  opacity: 0; transform: translateY(22px) scale(0.96);
  transition: opacity .5s cubic-bezier(.25,1,.5,1), transform .5s cubic-bezier(.25,1,.5,1), box-shadow .4s ease;
}
.gallery-3d-card.tall { grid-row: span 2; }
.gallery-3d-card.revealed { opacity: 1; transform: translateY(0) scale(1); }
.gallery-3d-card.filtered-out { display: none; }
.gallery-3d-card img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .55s cubic-bezier(.25,1,.5,1); }
.gallery-3d-card:hover { transform: translateY(0) scale(1.035) translateZ(18px) rotateX(-2deg); box-shadow: 0 24px 48px rgba(92,126,143,0.18), 0 0 0 1px var(--hairline); z-index: 4; }
.gallery-3d-card:hover img { transform: scale(1.1); }
.gallery-3d-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(to top, rgba(13,21,33,.82) 0%, transparent 60%);
  opacity: 0; transition: opacity .3s ease;
  display: flex; align-items: flex-end; justify-content: space-between;
  padding: 14px 16px; pointer-events: none;
}
.gallery-3d-card:hover .gallery-3d-overlay { opacity: 1; }
.gallery-3d-label { font-family: var(--disp); font-size: 14px; font-weight: 600; color: #fff; letter-spacing: .04em; text-transform: uppercase; }
.gallery-3d-zoom {
  flex-shrink: 0; width: 28px; height: 28px;
  border-radius: 50%; background: rgba(255,255,255,.15);
  backdrop-filter: blur(6px); color: #fff;
  display: flex; align-items: center; justify-content: center;
  padding: 5px; box-sizing: content-box;
  transform: scale(.7); opacity: 0;
  transition: transform .3s ease, opacity .3s ease;
}
.gallery-3d-card:hover .gallery-3d-zoom { transform: scale(1); opacity: 1; }

/* ── Lightbox ───────────────────────────────────────────── */
.gallery-lightbox {
  position: fixed; inset: 0; z-index: 9999;
  background: rgba(13,21,33,.95);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center; gap: 16px;
  opacity: 0; pointer-events: none;
  transition: opacity .28s ease; backdrop-filter: blur(12px);
}
.gallery-lightbox.active { opacity: 1; pointer-events: auto; }
.lb-image-wrap { display: flex; align-items: center; justify-content: center; max-width: 90vw; max-height: 80vh; }
.lb-image {
  max-width: 90vw; max-height: 80vh; object-fit: contain;
  border-radius: 10px; box-shadow: 0 32px 80px rgba(0,0,0,.7);
  transform: scale(.9); opacity: 0;
  transition: transform .35s cubic-bezier(.25,1,.5,1), opacity .35s ease; display: block;
}
.gallery-lightbox.active .lb-image { transform: scale(1); opacity: 1; }
.lb-meta { display: flex; align-items: center; gap: 16px; }
.lb-caption { font-family: var(--disp); font-size: 14px; font-weight: 600; color: rgba(255,255,255,.6); text-transform: uppercase; letter-spacing: .06em; }
.lb-counter  { font-size: 12px; color: rgba(255,255,255,.35); letter-spacing: 1px; }
.lb-close, .lb-prev, .lb-next {
  position: fixed; background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.12); color: #fff; cursor: pointer;
  backdrop-filter: blur(8px); display: flex; align-items: center; justify-content: center;
  border-radius: 50%; transition: background .2s ease, transform .2s ease;
}
.lb-close { top: 20px; right: 20px; width: 42px; height: 42px; }
.lb-prev, .lb-next { top: 50%; width: 50px; height: 50px; transform: translateY(-50%); }
.lb-prev { left: 20px; } .lb-next { right: 20px; }
.lb-close:hover { background: rgba(255,255,255,.18); transform: scale(1.08); }
.lb-prev:hover  { background: rgba(255,255,255,.18); transform: translateY(-50%) scale(1.08); }
.lb-next:hover  { background: rgba(255,255,255,.18); transform: translateY(-50%) scale(1.08); }

/* ── Showcase 3D (Expertise page) ───────────────────────── */
.showcase-3d-layout { display: grid; grid-template-columns: 260px 1fr; gap: 40px; align-items: start; margin-top: 40px; }
.showcase-nav-rail  { display: flex; flex-direction: column; gap: 4px; position: sticky; top: 88px; }
.snav-item {
  display: flex; align-items: center; gap: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: transparent;
  border-radius: 12px; cursor: pointer; text-align: left;
  transition: all .25s ease; position: relative; opacity: .5; width: 100%;
}
.snav-item:hover { background: rgba(92,126,143,0.06); opacity: .8; border-color: rgba(92,126,143,0.25); }
.snav-item.active { background: rgba(92,126,143,0.08); opacity: 1; border-color: rgba(92,126,143,0.3); }
.snav-indicator {
  position: absolute; left: 0; top: 18%; bottom: 18%;
  width: 3px; border-radius: 0 2px 2px 0;
  background: var(--primary); opacity: 0;
  transform: scaleY(0); transform-origin: center;
  transition: opacity .3s ease, transform .3s cubic-bezier(.25,1,.5,1);
}
.snav-item.active .snav-indicator { opacity: 1; transform: scaleY(1); }
.snav-num  { font-family: var(--disp); font-size: 13px; font-weight: 700; color: var(--primary); letter-spacing: 1px; flex-shrink: 0; min-width: 20px; }
.snav-body { display: flex; flex-direction: column; gap: 2px; flex: 1; min-width: 0; }
.snav-title { font-family: var(--disp); font-size: 14px; font-weight: 700; color: var(--ink); line-height: 1.2; text-transform: uppercase; letter-spacing: .03em; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }
.snav-sub   { font-size: 12px; color: var(--muted); line-height: 1.2; white-space: nowrap; overflow: hidden; text-overflow: ellipsis; }

.showcase-3d-stage { perspective: 1400px; perspective-origin: center center; }
.showcase-3d-wrapper {
  position: relative; border-radius: 18px; overflow: hidden; height: 560px;
  transform-style: preserve-3d;
  box-shadow: 0 40px 80px rgba(92,126,143,0.11), 0 16px 32px rgba(92,126,143,0.07), 0 0 0 1px rgba(92,126,143,0.09);
  will-change: transform;
}
.showcase-panel { position: absolute; inset: 0; opacity: 0; transform: scale(.96) rotateY(5deg); transition: opacity .45s cubic-bezier(.25,1,.5,1), transform .45s cubic-bezier(.25,1,.5,1); pointer-events: none; }
.showcase-panel.active   { opacity: 1; transform: scale(1) rotateY(0); pointer-events: auto; z-index: 2; }
.showcase-panel.exiting  { opacity: 0; transform: scale(.97) rotateY(-5deg); z-index: 1; }
.sp-image-bg { position: absolute; inset: 0; }
.sp-image-bg img { width: 100%; height: 100%; object-fit: cover; display: block; transform: scale(1.06); transition: transform .7s cubic-bezier(.25,1,.5,1); }
.showcase-panel.active .sp-image-bg img { transform: scale(1); }
.sp-gradient-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(13,21,33,.93) 0%, rgba(13,21,33,.6) 38%, rgba(13,21,33,.08) 72%, transparent 100%); }
.sp-content { position: absolute; bottom: 0; left: 0; right: 0; padding: 44px 48px; color: #fff; }
.sp-badge {
  display: inline-flex; align-items: center; padding: 4px 12px;
  border-radius: 99px; font-family: var(--disp); font-size: 11px;
  font-weight: 700; text-transform: uppercase; letter-spacing: 1.5px;
  background: rgba(92,126,143,0.25); border: 1px solid rgba(92,126,143,0.42);
  color: var(--frost); margin-bottom: 14px; backdrop-filter: blur(6px);
}
.sp-title { font-family: var(--disp); font-size: clamp(24px,3.5vw,36px); font-weight: 800; text-transform: uppercase; line-height: 1; letter-spacing: .02em; color: #fff; margin-bottom: 12px; }
.sp-desc  { font-size: 15px; line-height: 1.65; color: rgba(255,255,255,.7); max-width: 600px; margin-bottom: 22px; }
.sp-standards-row { display: flex; flex-wrap: wrap; gap: 8px; }
.sp-std-chip { padding: 4px 12px; border-radius: 99px; font-size: 12px; font-family: var(--disp); font-weight: 600; text-transform: uppercase; letter-spacing: .06em; color: rgba(255,255,255,.88); background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.18); backdrop-filter: blur(4px); }
.sp-shine { position: absolute; inset: 0; border-radius: inherit; pointer-events: none; background: radial-gradient(circle at 50% 25%, rgba(255,255,255,.05) 0%, transparent 60%); transition: background .08s ease-out; }
.showcase-dots { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.sdot { width: 6px; height: 6px; border-radius: 99px; background: var(--frost); border: none; cursor: pointer; padding: 0; transition: all .3s cubic-bezier(.25,1,.5,1); }
.sdot.active { background: var(--primary); width: 22px; }

/* ── Glass card utility (subpage elements) ──────────────── */
.glass-card {
  background: rgba(255,255,255,0.72) !important;
  backdrop-filter: blur(18px) saturate(130%) !important;
  -webkit-backdrop-filter: blur(18px) saturate(130%) !important;
  border: 1px solid rgba(212,221,226,0.62) !important;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(92,126,143,0.09) !important;
  transition: all 0.4s cubic-bezier(0.16,1,0.3,1) !important;
}
.glass-card:hover {
  border-color: rgba(92,126,143,0.38) !important;
  box-shadow: 0 12px 32px rgba(92,126,143,0.14) !important;
}
.section--dark .glass-card {
  background: rgba(255,255,255,0.05) !important;
  border: 1px solid rgba(255,255,255,0.09) !important;
  box-shadow: 0 8px 32px rgba(0,0,0,0.2) !important;
}
.section--dark .glass-card:hover {
  border-color: rgba(212,221,226,0.28) !important;
}

/* Page layout (subpages with .bluetic-layout wrapper) */
.bluetic-layout { position: relative; width: 100%; overflow-x: hidden; }

/* Expertise section header */
.expertise-sec-header { display: flex; align-items: flex-start; justify-content: space-between; gap: 40px; margin-bottom: 40px; flex-wrap: wrap; }
.expertise-eyebrow { display: inline-flex; align-items: center; gap: 10px; font-family: var(--disp); font-weight: 600; text-transform: uppercase; letter-spacing: .22em; font-size: 13px; color: var(--primary); margin-bottom: 12px; }
.expertise-main-title { font-family: var(--disp); font-weight: 800; text-transform: uppercase; font-size: clamp(40px,6vw,72px); margin: 0 0 12px; line-height: .92; color: var(--ink); }
.expertise-title-accent { color: var(--primary); }
.expertise-title-bar { width: 60px; height: 4px; background: var(--primary); border-radius: 2px; }
.expertise-header-desc { color: var(--muted); font-size: 17px; max-width: 420px; margin: 0; padding-top: 8px; }

/* Subpage footer */
.footer-sec {
  background: var(--dark-bg-deep);
  padding: 64px 0 30px;
  border-top: 1px solid rgba(255,255,255,.06);
}
.footer-company-name { color: #fff; font-family: var(--disp); text-transform: uppercase; font-size: 18px; font-weight: 800; }
.footer-tagline { color: var(--muted-light); }
.footer-grid { display: grid; grid-template-columns: 1.5fr 1fr; gap: 60px; margin-bottom: 40px; }
.footer-logo img { height: 36px; width: auto; object-fit: contain; }
.footer-locations { margin-top: 20px; display: flex; flex-direction: column; gap: 12px; }
.footer-location-item { display: flex; flex-direction: column; gap: 2px; font-size: 14px; }
.location-title { color: var(--frost); font-weight: 600; font-family: var(--disp); letter-spacing: .04em; text-transform: uppercase; font-size: 12px; }
.location-address { color: var(--muted-light); }
.location-directions-link { color: var(--primary-light); font-size: 13px; margin-top: 2px; }
.location-directions-link:hover { color: var(--frost); }
.footer-social-links { display: flex; gap: 12px; margin-top: 20px; }
.social-icon-link { display: flex; align-items: center; justify-content: center; width: 34px; height: 34px; border-radius: 50%; background: rgba(255,255,255,.06); border: 1px solid rgba(255,255,255,.1); color: var(--muted-light); transition: all 0.3s ease; }
.social-icon-link:hover { background: rgba(92,126,143,0.2); border-color: var(--primary); color: var(--frost); }
.footer-links-group { display: grid; grid-template-columns: repeat(3,1fr); gap: 30px; }
.footer-col { display: flex; flex-direction: column; gap: 10px; }
.footer-col h4 { color: var(--frost); font-family: var(--disp); text-transform: uppercase; letter-spacing: .1em; font-size: 12px; margin-bottom: 4px; }
.foot-link { color: var(--muted-light); font-size: 14px; transition: color 0.2s ease; }
.foot-link:hover { color: #fff; }
.foot-text { color: var(--muted-light); font-size: 14px; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,.06); padding-top: 24px; color: rgba(162,162,162,.5); font-size: 13.5px; display: flex; justify-content: center; }

/* Cookie banner */
.cookie-banner {
  position: fixed; bottom: 20px; left: 50%;
  transform: translate(-50%, calc(100% + 40px));
  width: calc(100% - 32px); max-width: 700px;
  z-index: 9999;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(20px);
  border: 1px solid var(--frost);
  border-radius: 16px; padding: 20px 24px;
  box-shadow: 0 20px 60px rgba(92,126,143,0.18);
  transition: transform 0.5s cubic-bezier(0.16,1,0.3,1);
}
.cookie-banner.show { transform: translate(-50%, 0); }
.cookie-content { display: flex; flex-direction: column; gap: 14px; }
.cookie-content p { font-size: 13.5px; color: var(--muted); margin: 0; line-height: 1.6; }
.cookie-actions { display: flex; gap: 10px; justify-content: flex-end; flex-wrap: wrap; }
#cookie-accept {
  padding: 9px 22px; border-radius: 99px;
  background: var(--primary); color: #fff;
  font-family: var(--disp); font-weight: 700; font-size: 13px;
  letter-spacing: .06em; text-transform: uppercase;
  border: none; cursor: pointer; transition: all 0.3s ease;
}
#cookie-accept:hover { background: var(--primary-dark); transform: translateY(-1px); }
#cookie-reject {
  padding: 9px 22px; border-radius: 99px;
  background: transparent; color: var(--muted);
  font-family: var(--disp); font-weight: 700; font-size: 13px;
  letter-spacing: .06em; text-transform: uppercase;
  border: 1.5px solid var(--frost); cursor: pointer; transition: all 0.3s ease;
}
#cookie-reject:hover { border-color: var(--primary); color: var(--primary); }

/* ── Reveal animation ───────────────────────────────────── */
.reveal { opacity: 0; transform: translateY(22px); transition: opacity .7s ease, transform .7s ease; }
.reveal.in { opacity: 1; transform: none; }

/* ── Focus ──────────────────────────────────────────────── */
:focus-visible { outline: 3px solid var(--primary); outline-offset: 3px; border-radius: 4px; }

/* ── Careers custom styles ──────────────────────────────── */
.career-opportunity-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 24px; margin-top: 40px; }
.opp-card  { display: flex; flex-direction: column; justify-content: space-between; height: 100%; }
.opp-meta-list { display: flex; flex-direction: column; gap: 12px; margin: 20px 0; padding: 16px; background: var(--off-white); border-radius: 12px; border: 1px solid var(--line); }
.section--dark .opp-meta-list { background: rgba(0,0,0,0.18); border-color: rgba(255,255,255,0.06); }
.opp-meta-item { display: flex; justify-content: space-between; font-size: 14.5px; color: var(--muted); }
.section--dark .opp-meta-item { color: var(--muted-light); }
.opp-meta-item strong { color: var(--ink); font-weight: 600; }
.section--dark .opp-meta-item strong { color: #fff; }
.free-badge { display: inline-block; padding: 2px 8px; background: #10B981; color: #fff; font-size: 11px; font-weight: 700; border-radius: 4px; text-transform: uppercase; }
.opp-section-title { font-family: var(--disp); font-size: 18px; font-weight: 700; text-transform: uppercase; color: var(--ink); margin-top: 20px; margin-bottom: 10px; border-bottom: 1px solid var(--line); padding-bottom: 4px; }
.section--dark .opp-section-title { color: #fff; border-bottom-color: rgba(255,255,255,0.1); }
.opp-bullets { padding-left: 20px; margin: 0; font-size: 15px; color: var(--muted); }
.section--dark .opp-bullets { color: var(--muted-light); }
.opp-bullets li { margin-bottom: 6px; }


/* ── Quick Connect (WhatsApp & Gmail) ──────────────────── */
.connect-channels {
  background: linear-gradient(180deg, #14202E 0%, #0D1521 100%);
  padding: 60px 0 80px;
  position: relative;
  overflow: hidden;
}
.connect-channels__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 30px;
}
.connect-card {
  position: relative;
  background: rgba(255, 255, 255, 0.02);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.05);
  border-radius: 20px;
  padding: 40px;
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
.connect-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  background: radial-gradient(circle at 10% 10%, rgba(255, 255, 255, 0.03), transparent 50%);
  z-index: 1;
  pointer-events: none;
}
.connect-card:hover {
  transform: translateY(-6px);
  background: rgba(255, 255, 255, 0.05);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.25);
}
.connect-card--whatsapp:hover {
  border-color: rgba(37, 211, 102, 0.35);
  box-shadow: 0 15px 30px rgba(37, 211, 102, 0.05), 0 0 0 1px rgba(37, 211, 102, 0.15);
}
.connect-card--gmail:hover {
  border-color: rgba(234, 67, 53, 0.35);
  box-shadow: 0 15px 30px rgba(234, 67, 53, 0.05), 0 0 0 1px rgba(234, 67, 53, 0.15);
}
.connect-card__header {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 20px;
  margin-bottom: 24px;
}
.connect-card__icon-wrapper {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  display: grid;
  place-items: center;
  transition: all 0.3s ease;
}
.connect-card--whatsapp .connect-card__icon-wrapper {
  background: rgba(37, 211, 102, 0.1);
  border: 1px solid rgba(37, 211, 102, 0.2);
  color: #25d366;
}
.connect-card--gmail .connect-card__icon-wrapper {
  background: rgba(234, 67, 53, 0.1);
  border: 1px solid rgba(234, 67, 53, 0.2);
  color: #ea4335;
}
.connect-card:hover .connect-card__icon-wrapper {
  transform: scale(1.08) rotate(3deg);
}
.connect-card--whatsapp:hover .connect-card__icon-wrapper {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
  box-shadow: 0 0 15px rgba(37, 211, 102, 0.3);
}
.connect-card--gmail:hover .connect-card__icon-wrapper {
  background: #ea4335;
  color: #fff;
  border-color: #ea4335;
  box-shadow: 0 0 15px rgba(234, 67, 53, 0.3);
}
.connect-card__icon-wrapper svg {
  width: 28px;
  height: 28px;
  fill: currentColor;
}
.connect-card__title {
  font-family: var(--disp);
  font-size: 26px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  letter-spacing: 0.02em;
  color: #fff;
}
.connect-card__content {
  position: relative;
  z-index: 2;
  margin-bottom: 30px;
}
.connect-card__content p {
  color: var(--muted-light);
  font-size: 15.5px;
  line-height: 1.6;
  margin: 0 0 16px;
}
.connect-card__meta {
  font-family: var(--disp);
  font-size: 16px;
  color: var(--frost);
  letter-spacing: 0.05em;
  font-weight: 600;
  display: flex;
  align-items: center;
  gap: 8px;
}
.connect-card__btn {
  position: relative;
  z-index: 2;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  width: 100%;
  padding: 14px 28px;
  border-radius: 99px;
  font-family: var(--disp);
  font-weight: 700;
  font-size: 14px;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  transition: all 0.3s ease;
  cursor: pointer;
}
.connect-card--whatsapp .connect-card__btn {
  background: transparent;
  color: #25d366;
  border: 2px solid rgba(37, 211, 102, 0.25);
}
.connect-card--whatsapp:hover .connect-card__btn {
  background: #25d366;
  color: #fff;
  border-color: #25d366;
  box-shadow: 0 6px 20px rgba(37, 211, 102, 0.2);
}
.connect-card--gmail .connect-card__btn {
  background: transparent;
  color: #ea4335;
  border: 2px solid rgba(234, 67, 53, 0.25);
}
.connect-card--gmail:hover .connect-card__btn {
  background: #ea4335;
  color: #fff;
  border-color: #ea4335;
  box-shadow: 0 6px 20px rgba(234, 67, 53, 0.2);
}

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1024px) {
  .showcase-3d-layout { grid-template-columns: 1fr; gap: 28px; }
  .showcase-nav-rail { position: static; flex-direction: row; overflow-x: auto; scrollbar-width: none; gap: 6px; padding-bottom: 4px; }
  .showcase-nav-rail::-webkit-scrollbar { display: none; }
  .snav-item { flex-shrink: 0; flex-direction: column; align-items: flex-start; padding: 12px 14px; min-width: 150px; opacity: .55; }
  .snav-item.active { opacity: 1; }
  .snav-indicator { top: 0; left: 14%; right: 14%; bottom: auto; width: auto; height: 3px; border-radius: 0 0 2px 2px; transform: scaleX(0); transform-origin: left center; }
  .snav-item.active .snav-indicator { transform: scaleX(1); }
  .showcase-3d-wrapper { height: 480px; }
  .gallery-3d-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 200px; }
  .process-grid { grid-template-columns: repeat(3, 1fr); }
}

@media (max-width: 920px) {
  .grid3 { grid-template-columns: 1fr 1fr; }
  .career-opportunity-grid { grid-template-columns: 1fr; }
  .steps { grid-template-columns: 1fr 1fr; }
  .step { border-right: 0; border-bottom: 1px solid rgba(255,255,255,.08); padding-right: 0; }
  .why { grid-template-columns: 1fr; gap: 34px; }
  .foot__top { grid-template-columns: 1fr 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 40px; }
  .footer-links-group { grid-template-columns: 1fr 1fr; }
  .connect-channels__grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 680px) {
  .nav__links { display: none; }
  .nav__cta  { display: none; }
  .desktop-links { display: none; }
  .mobile-toggle-btn { display: flex; }
  .grid3 { grid-template-columns: 1fr; }
  .grid2 { grid-template-columns: 1fr; }
  .stats { grid-template-columns: 1fr 1fr; }
  .foot__top { grid-template-columns: 1fr; }
  .section { padding: 68px 0; }
  .hero { min-height: 92vh; }
  .form-row { grid-template-columns: 1fr; }
  .showcase-3d-wrapper { height: 500px; border-radius: 14px; }
  .sp-content { padding: 28px 24px; }
  .sp-title { font-size: 22px; }
  .sp-desc { font-size: 13px; display: -webkit-box; -webkit-line-clamp: 4; line-clamp: 4; -webkit-box-orient: vertical; overflow: hidden; }
  .gallery-3d-grid { grid-template-columns: repeat(2,1fr); grid-auto-rows: 160px; gap: 8px; }
  .gallery-3d-card.tall { grid-row: span 1; }
  .lb-prev { left: 10px; } .lb-next { right: 10px; }
  .footer-links-group { grid-template-columns: 1fr; }
  .expertise-sec-header { flex-direction: column; }
  .cta__in { padding: 48px 0; }
  .process-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .reveal { transition: none; opacity: 1; transform: none; }
  .btn, .card, .stat { transition: none; }
  .glow-bubble { animation: none; }
}

/* ============================================================
   NEW SECTIONS: SOFTWARE, INDUSTRIES, WHY CHOOSE
   ============================================================ */

/* Software Expertise */
.software-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.software-card {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  border: 1px solid rgba(212, 221, 226, 0.62);
  border-radius: 16px;
  padding: 30px 20px;
  text-align: center;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 16px;
  box-shadow: 0 4px 20px rgba(92, 126, 143, 0.06);
}
.software-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 16px 36px rgba(92, 126, 143, 0.16);
}
.software-card svg {
  width: 44px;
  height: 44px;
  color: var(--primary);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1), color 0.3s ease;
}
.software-card:hover svg {
  transform: scale(1.15) rotate(5deg);
  color: var(--primary-dark);
}
.software-card h4 {
  font-family: var(--disp);
  font-size: 22px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  color: var(--ink);
  letter-spacing: 0.03em;
  line-height: 1.1;
}
.software-card p {
  font-size: 13.5px;
  color: var(--muted);
  margin: 0;
  line-height: 1.4;
}

/* Dark mode compatibility for software cards inside .section--dark */
.section--dark .software-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}
.section--dark .software-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-light);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}
.section--dark .software-card h4 {
  color: #fff;
}
.section--dark .software-card p {
  color: var(--frost);
}
.section--dark .software-card svg {
  color: var(--primary-light);
}

/* Industries Served */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.industry-card {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  border: 1px solid rgba(212, 221, 226, 0.62);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 4px 20px rgba(92, 126, 143, 0.06);
}
.industry-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 16px 36px rgba(92, 126, 143, 0.16);
}
.industry-card svg {
  width: 32px;
  height: 32px;
  color: var(--primary);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.industry-card:hover svg {
  transform: scale(1.18);
}
.industry-card h4 {
  font-family: var(--disp);
  font-size: 21px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  color: var(--ink);
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.industry-card p {
  font-size: 14px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* Dark mode compatibility for industry cards inside .section--dark */
.section--dark .industry-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}
.section--dark .industry-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-light);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}
.section--dark .industry-card h4 {
  color: #fff;
}
.section--dark .industry-card p {
  color: var(--frost);
}
.section--dark .industry-card svg {
  color: var(--primary-light);
}

/* Why Choose Bluetic */
.why-choose-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 36px;
}
.why-choose-card {
  background: rgba(255, 255, 255, 0.72);
  backdrop-filter: blur(18px) saturate(130%);
  -webkit-backdrop-filter: blur(18px) saturate(130%);
  border: 1px solid rgba(212, 221, 226, 0.62);
  border-radius: 16px;
  padding: 24px;
  transition: all 0.4s cubic-bezier(0.16, 1, 0.3, 1);
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 4px 20px rgba(92, 126, 143, 0.06);
}
.why-choose-card:hover {
  transform: translateY(-6px) scale(1.02);
  border-color: var(--primary);
  background: #fff;
  box-shadow: 0 16px 36px rgba(92, 126, 143, 0.16);
}
.why-choose-card svg {
  width: 36px;
  height: 36px;
  color: var(--primary);
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.why-choose-card:hover svg {
  transform: scale(1.2);
}
.why-choose-card h4 {
  font-family: var(--disp);
  font-size: 21px;
  font-weight: 700;
  text-transform: uppercase;
  margin: 0;
  color: var(--ink);
  letter-spacing: 0.02em;
  line-height: 1.1;
}
.why-choose-card p {
  font-size: 14.5px;
  color: var(--muted);
  margin: 0;
  line-height: 1.5;
}

/* Dark mode compatibility for why-choose cards inside .section--dark */
.section--dark .why-choose-card {
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.15);
}
.section--dark .why-choose-card:hover {
  background: rgba(255, 255, 255, 0.08);
  border-color: var(--primary-light);
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.3);
}
.section--dark .why-choose-card h4 {
  color: #fff;
}
.section--dark .why-choose-card p {
  color: var(--frost);
}
.section--dark .why-choose-card svg {
  color: var(--primary-light);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .software-grid { grid-template-columns: repeat(3, 1fr); }
  .industries-grid { grid-template-columns: repeat(3, 1fr); }
  .why-choose-grid { grid-template-columns: repeat(3, 1fr); }
}

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

@media (max-width: 480px) {
  .software-grid { grid-template-columns: 1fr; }
  .industries-grid { grid-template-columns: 1fr; }
  .why-choose-grid { grid-template-columns: 1fr; }
}

/* ============================================================
   INTERACTIVE CONTACT HUB: WHATSAPP & EMAIL WIDGETS
   ============================================================ */
.contact-hub-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 40px;
  align-items: start;
  max-width: 1000px;
  margin: 0 auto;
}

@media (max-width: 768px) {
  .contact-hub-grid {
    grid-template-columns: 1fr;
    gap: 30px;
  }
}

/* WhatsApp Widget Component */
.wa-widget {
  background: #efeae2;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  display: flex;
  flex-direction: column;
  height: 480px;
  border: 1px solid rgba(0, 0, 0, 0.05);
}
.wa-header {
  background: #005e54;
  padding: 16px 20px;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
}
.wa-profile {
  display: flex;
  align-items: center;
  gap: 12px;
}
.wa-avatar {
  width: 42px;
  height: 42px;
  background: rgba(255, 255, 255, 0.15);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 16px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  color: #fff;
  position: relative;
}
.wa-avatar::after {
  content: '';
  position: absolute;
  bottom: 1px;
  right: 1px;
  width: 10px;
  height: 10px;
  background: #4ade80;
  border: 2px solid #005e54;
  border-radius: 50%;
}
.wa-brand-details {
  display: flex;
  flex-direction: column;
}
.wa-brand-name {
  font-weight: 600;
  font-size: 16px;
  line-height: 1.2;
}
.wa-status {
  font-size: 12px;
  opacity: 0.85;
}
.wa-phone-icon {
  color: #fff;
  opacity: 0.9;
  cursor: pointer;
  transition: opacity 0.2s;
  background: none;
  border: none;
  outline: none;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 0;
}
.wa-phone-icon:hover {
  opacity: 1;
}

.wa-chat-area {
  flex: 1;
  padding: 20px;
  overflow-y: auto;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.wa-date-badge {
  align-self: center;
  background: #fff;
  color: #54656f;
  font-size: 11px;
  font-weight: 500;
  padding: 6px 12px;
  border-radius: 8px;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
  text-transform: uppercase;
}
.wa-bubble {
  max-width: 80%;
  padding: 10px 14px;
  font-size: 14px;
  line-height: 1.4;
  position: relative;
  box-shadow: 0 1px 2px rgba(0,0,0,0.06);
}
.wa-bubble.incoming {
  background: #fff;
  color: #111b21;
  border-radius: 0 12px 12px 12px;
  align-self: flex-start;
}
.wa-bubble.incoming::before {
  content: '';
  position: absolute;
  top: 0;
  left: -8px;
  width: 8px;
  height: 10px;
  background: linear-gradient(135deg, #fff 50%, transparent 50%);
}
.wa-time {
  display: block;
  text-align: right;
  font-size: 10px;
  color: #667781;
  margin-top: 4px;
}
.wa-footer {
  background: #f0f2f5;
  padding: 12px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
}
.wa-input-form {
  display: flex;
  flex: 1;
  align-items: center;
  gap: 12px;
}
.wa-input {
  flex: 1;
  background: #fff;
  border: none;
  outline: none;
  padding: 10px 16px;
  border-radius: 20px;
  font-size: 14px;
  color: #111b21;
  box-shadow: 0 1px 2px rgba(0,0,0,0.05);
}
.wa-send-btn {
  background: #00a884;
  color: #fff;
  border: none;
  outline: none;
  width: 38px;
  height: 38px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: transform 0.2s, background 0.2s;
  box-shadow: 0 1px 3px rgba(0,0,0,0.1);
  padding: 0;
}
.wa-send-btn:hover {
  background: #008f72;
  transform: scale(1.05);
}
.wa-send-btn svg {
  width: 18px;
  height: 18px;
}

/* Email Composer Widget Component */
.mail-widget {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
  display: flex;
  flex-direction: column;
  height: 480px;
  border: 1px solid rgba(0,0,0,0.06);
}
.mail-header {
  background: #f6f8fc;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: 1px solid #eaf1fb;
}
.mail-title {
  font-size: 14px;
  font-weight: 600;
  color: #1f1f1f;
}
.mail-dots {
  display: flex;
  gap: 6px;
}
.mail-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
}
.mail-dot.red { background: #ff5f56; }
.mail-dot.yellow { background: #ffbd2e; }
.mail-dot.green { background: #27c93f; }

.mail-form {
  flex: 1;
  display: flex;
  flex-direction: column;
  padding: 0 20px;
}
.mail-row {
  display: flex;
  align-items: center;
  padding: 10px 0;
  border-bottom: 1px solid #f1f3f4;
  font-size: 14px;
}
.mail-label {
  color: #5f6368;
  width: 60px;
}
.mail-to-chip {
  background: #e8f0fe;
  color: #1a73e8;
  padding: 4px 12px;
  border-radius: 16px;
  font-weight: 500;
  font-size: 13px;
}
.mail-input-subject {
  flex: 1;
  border: none;
  outline: none;
  font-size: 14px;
  color: #202124;
  padding: 2px 0;
}
.mail-body {
  flex: 1;
  padding: 14px 0;
  border: none;
  outline: none;
  resize: none;
  font-size: 14px;
  color: #202124;
  line-height: 1.5;
  font-family: inherit;
}
.mail-footer {
  border-top: 1px solid #f1f3f4;
  padding: 12px 20px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: #fff;
}
.mail-send-btn {
  background: #0b57d0;
  color: #fff;
  border: none;
  outline: none;
  padding: 10px 24px;
  border-radius: 100px;
  font-weight: 600;
  font-size: 14px;
  cursor: pointer;
  transition: background 0.2s, transform 0.1s;
}
.mail-send-btn:hover {
  background: #0842a0;
}
.mail-send-btn:active {
  transform: scale(0.98);
}
.mail-tools {
  display: flex;
  align-items: center;
  gap: 16px;
  color: #5f6368;
}
.mail-tool-btn {
  background: none;
  border: none;
  outline: none;
  cursor: pointer;
  color: #5f6368;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color 0.2s;
  padding: 0;
}
.mail-tool-btn:hover {
  color: #202124;
}
.mail-tool-btn svg {
  width: 18px;
  height: 18px;
}

/* ============================================================
   LOCATION MAP & 3D STREET VIEW
   ============================================================ */
.location-tabs {
  display: flex;
  justify-content: center;
  gap: 16px;
  margin-bottom: 30px;
}
.location-tab {
  background: var(--white);
  border: 1px solid var(--line);
  color: var(--ink);
  font-family: var(--disp);
  font-size: 16px;
  font-weight: 600;
  text-transform: uppercase;
  padding: 12px 28px;
  border-radius: 100px;
  cursor: pointer;
  transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
  outline: none;
}
.location-tab:hover {
  border-color: var(--primary);
  color: var(--primary);
  transform: translateY(-2px);
}
.location-tab.active {
  background: var(--primary);
  color: #fff;
  border-color: var(--primary);
  box-shadow: 0 8px 20px rgba(92, 126, 143, 0.2);
}
.location-map-container {
  max-width: 1000px;
  margin: 0 auto;
  border-radius: 24px;
  overflow: hidden;
  transition: transform 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}
.location-map-container iframe {
  width: 100%;
  height: 480px;
  border: none;
  border-radius: 16px;
  display: block;
}
@media (max-width: 768px) {
  .location-map-container iframe {
    height: 350px;
  }
}

/* ── Mobile Navigation Responsive Display ───────────────── */
@media (max-width: 768px) {
  .nav__links, .desktop-links, .nav__cta {
    display: none !important;
  }
  .mobile-toggle-btn {
    display: flex !important;
  }
}

/* ── Mobile Performance & Compatibility Optimization ── */
@media (max-width: 768px) {
  /* Hide heavy fixed animating glow bubbles to prevent iOS Safari memory/GPU crashes and blank screens */
  .glow-bubbles-container {
    display: none !important;
  }
  .glow-bubble {
    animation: none !important;
  }
  
  /* Disable scroll reveals on mobile to prevent white screen blocks if JS is delayed or blocked */
  .reveal {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  
  /* Disable stagger reveal on showcase gallery cards for instant load and scroll performance */
  .gallery-3d-card {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
}

