/* ================================================
   MANGESH JANVALKAR ENTERPRISES — Premium Styles
   Palette: Ivory · Deep Navy · Warm Gold
   ================================================ */

@font-face {
  font-family: 'BusinessElegance';
  src: url('businesselegance/BusinessElegance-Regular.ttf') format('truetype'),
       url('businesselegance/BusinessElegance-Regular.otf') format('opentype');
  font-weight: 400;
  font-style: normal;
  font-display: swap;
}

@font-face {
  font-family: 'BusinessElegance';
  src: url('businesselegance/BusinessElegance-Italic.ttf') format('truetype'),
       url('businesselegance/BusinessElegance-Italic.otf') format('opentype');
  font-weight: 400;
  font-style: italic;
  font-display: swap;
}

/* ============================================
   CUSTOM PROPERTIES
   ============================================ */
:root {
  /* Core Palette */
  --navy-950: #060D1E;
  --navy-900: #0C1B33;
  --navy-700: #1A2F52;
  --navy-400: #4A6FA5;
  --navy-200: #C5CEDF;
  --navy-100: #E8EDF5;

  --gold-500: #C9A84C;
  --gold-400: #D4B96A;
  --gold-200: #EDD99A;
  --gold-100: #F5EDD6;

  --off-white: #F8F6F1;
  --white:     #FFFFFF;
  --charcoal:  #1E1E1E;
  --slate:     #4A5568;

  /* Backgrounds */
  --bg-white:  #FFFFFF;
  --bg-off:    #F8F6F1;
  --bg-deep:   #0C1B33;
  --bg-footer: #060D1E;

  /* Text */
  --text-heading: #0C1B33;
  --text-body:    #374151;
  --text-muted:   #4A5568;
  --text-faint:   #9CA3AF;
  --text-light:   #F0F4F8;
  --text-light-muted: rgba(197, 206, 223, 0.70);

  /* Borders */
  --line:      rgba(0, 0, 0, 0.08);
  --line-dark: rgba(255, 255, 255, 0.09);
  --line-gold: rgba(201, 168, 76, 0.28);

  /* Shadows */
  --shadow-sm:   0 2px 12px rgba(0,0,0,0.05);
  --shadow-md:   0 8px 32px rgba(0,0,0,0.09);
  --shadow-card: 0 4px 24px rgba(12,27,51,0.06);
  --shadow-lift: 0 12px 36px rgba(12,27,51,0.11);

  /* Shape */
  --radius-sm: 4px;
  --radius:    8px;
  --radius-lg: 12px;

  /* Motion */
  --ease:     cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0, 0, 0.2, 1);
  --dur:      0.3s;

  /* Layout */
  --max-w:   1240px;
  --pad-x:   40px;
  --section: 112px 0;
}


/* ============================================
   RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; font-size: 16px; }

body {
  font-family: 'Inter', -apple-system, sans-serif;
  background: var(--bg-white);
  color: var(--text-body);
  line-height: 1.6;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

a { text-decoration: none; color: inherit; }
ul { list-style: none; }
img, svg { display: block; max-width: 100%; }
button { cursor: pointer; font-family: inherit; }


/* ============================================
   UTILITIES
   ============================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
}

/* Sections */
.section        { padding: var(--section); }
.section-white  { background: var(--bg-white); }
.section-tinted { background: var(--bg-off); }

.section-coverage {
  position: relative;
  background-color: var(--bg-off);
  overflow: hidden;
}
.section-coverage::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: url('buildings.jpg');
  background-size: cover;
  background-position: center 60%;
  opacity: 0.10;
  pointer-events: none;
  z-index: 0;
}
.section-coverage > .container {
  position: relative;
  z-index: 1;
}
.section-deep { background: var(--bg-deep); }

/* Section label */
.section-label {
  display: inline-block;
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: var(--gold-500);
  margin-bottom: 16px;
}
.section-label.light { color: var(--gold-400); }

/* Section headings */
.section-heading {
  font-family: 'BusinessElegance', Georgia, serif;
  font-size: clamp(32px, 4.2vw, 52px);
  font-weight: 700;
  line-height: 1.12;
  margin-bottom: 18px;
}
.section-heading.dark  { color: var(--text-heading); }
.section-heading.light { color: var(--text-light); }

/* Gold accent in headings */
.section-heading .gold { color: var(--gold-500); }
.gradient-text { color: var(--gold-500); }
.section-deep .gradient-text { color: var(--gold-400); }

.section-sub {
  font-family: 'BusinessElegance', Georgia, serif;
  font-size: 17px;
  line-height: 1.80;
  max-width: 580px;
  margin-bottom: 60px;
}
.section-sub.dark  { color: var(--text-muted); }
.section-sub.light { color: var(--text-light-muted); }


/* ---- Buttons ---- */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--navy-900);
  color: var(--gold-500);
  padding: 13px 32px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1.5px solid var(--gold-500);
  transition: background var(--dur) var(--ease),
              color var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
  white-space: nowrap;
}
.btn-primary:hover {
  background: var(--gold-500);
  color: var(--navy-900);
  border-color: var(--gold-500);
}

.btn-ghost {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  color: var(--navy-900);
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1.5px solid rgba(12, 27, 51, 0.28);
  transition: border-color var(--dur) var(--ease),
              background var(--dur) var(--ease);
  white-space: nowrap;
  background: transparent;
}
.btn-ghost:hover {
  border-color: var(--navy-900);
  background: rgba(12, 27, 51, 0.04);
}

.btn-ghost-white {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--gold-400);
  padding: 13px 28px;
  border-radius: var(--radius-sm);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  border: 1.5px solid rgba(201, 168, 76, 0.38);
  transition: background var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
  white-space: nowrap;
}
.btn-ghost-white:hover {
  background: rgba(201, 168, 76, 0.09);
  border-color: var(--gold-500);
}

.btn-block {
  width: 100%;
  margin-bottom: 12px;
  padding: 14px 28px;
  font-size: 12px;
}
.btn-whatsapp {
  border-color: rgba(37, 211, 102, 0.35);
  color: #25D366;
  text-transform: uppercase;
  letter-spacing: 1.5px;
}
.btn-whatsapp:hover {
  background: rgba(37, 211, 102, 0.08);
  border-color: #25D366;
  color: #25D366;
}


/* ---- Scroll Reveal (fade-up) ---- */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  will-change: transform, opacity;
  transition:
    opacity   0.65s cubic-bezier(0, 0, 0.2, 1),
    transform 0.65s cubic-bezier(0, 0, 0.2, 1);
}
.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}
.delay-1 { transition-delay: 0.10s; }
.delay-2 { transition-delay: 0.20s; }
.delay-3 { transition-delay: 0.30s; }

/* ---- Hero entrance — left content slides in from left ---- */
@keyframes hero-slide-left {
  from { opacity: 0; transform: translateX(-40px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* ---- Hero entrance — credentials panel slides in from right ---- */
@keyframes hero-slide-right {
  from { opacity: 0; transform: translateX(40px); }
  to   { opacity: 1; transform: translateX(0); }
}

/* Staggered left-side entrance */
.hero-eyebrow {
  animation: hero-slide-left 0.90s cubic-bezier(0, 0, 0.2, 1) 0.20s both;
}
.hero-heading {
  animation: hero-slide-left 1.00s cubic-bezier(0, 0, 0.2, 1) 0.38s both;
}
.hero-sub {
  animation: hero-slide-left 0.88s cubic-bezier(0, 0, 0.2, 1) 0.58s both;
}
.hero-ctas {
  animation: hero-slide-left 0.82s cubic-bezier(0, 0, 0.2, 1) 0.74s both;
}

/* Right-side panel slides in from right */
.credentials-panel {
  animation: hero-slide-right 0.95s cubic-bezier(0, 0, 0.2, 1) 0.45s both;
}

/* "With Trust." — BusinessElegance Italic */
.trust-italic {
  font-family: 'BusinessElegance', Georgia, serif !important;
  font-style: italic !important;
  font-weight: 400;
}

/* Section headings are always visible — no hidden state */


/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 22px 0;
  transition: background var(--dur) var(--ease),
              padding var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
}
.navbar.scrolled {
  background: rgba(255, 255, 255, 0.07);
  backdrop-filter: blur(4.5px);
  -webkit-backdrop-filter: blur(4.5px);
  box-shadow: 0 4px 30px rgba(0, 0, 0, 0.1);
  border-bottom: 1px solid rgba(255, 255, 255, 0.33);
  padding: 14px 0;
}

/* On dark hero */
.navbar:not(.scrolled) .nav-links a { color: rgba(255, 255, 255, 0.55); }
.navbar:not(.scrolled) .logo-sub    { color: var(--gold-400); }
.navbar:not(.scrolled) .logo-text   { color: #fff; }
.navbar:not(.scrolled) .btn-nav {
  color: var(--gold-400);
  border-color: rgba(201, 168, 76, 0.35);
}
.navbar:not(.scrolled) .nav-toggle span { background: #fff; }

/* Scrolled state */
.navbar.scrolled .nav-links a { color: var(--text-muted); }
.navbar.scrolled .logo-sub    { color: var(--gold-500); }
.navbar.scrolled .logo-text   { color: var(--navy-900); }
.navbar.scrolled .btn-nav     { color: var(--navy-900); border-color: rgba(12,27,51,0.25); }
.navbar.scrolled .nav-toggle span { background: var(--navy-900); }

.nav-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x);
  display: flex;
  align-items: center;
  gap: 36px;
}

.nav-logo {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-right: auto;
}
.logo-text {
  font-family: 'BusinessElegance', Georgia, serif;
  font-size: 26px;
  font-weight: 700;
  letter-spacing: 2px;
  line-height: 1;
  transition: color var(--dur) var(--ease);
}
.nav-logo-divider {
  width: 1px;
  height: 22px;
  background: currentColor;
  opacity: 0.25;
  flex-shrink: 0;
}
.logo-sub {
  font-size: 7.5px;
  letter-spacing: 3.5px;
  font-weight: 700;
  text-transform: uppercase;
  transition: color var(--dur) var(--ease);
  line-height: 1;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
}
.nav-links a {
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.2px;
  transition: color var(--dur) var(--ease);
  position: relative;
  padding-bottom: 3px;
}
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 0;
  height: 1.5px;
  background: var(--gold-500);
  transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}
.nav-links a:hover::after { width: 100%; }
.navbar.scrolled .nav-links a:hover { color: var(--gold-500); }
.navbar:not(.scrolled) .nav-links a:hover { color: #fff; }
.navbar:not(.scrolled) .nav-links a::after { background: rgba(255,255,255,0.6); }

/* Active nav link */
.nav-link.active { color: var(--gold-400) !important; }
.nav-link.active::after { width: 100% !important; background: var(--gold-500) !important; }
.navbar:not(.scrolled) .nav-link.active { color: #fff !important; }
.navbar:not(.scrolled) .nav-link.active::after { background: rgba(255,255,255,0.75) !important; }

/* Hide mobile-CTA on desktop */
.nav-mobile-cta-item { display: none; }

.btn-nav {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 9px 20px;
  border-radius: var(--radius-sm);
  border: 1.5px solid;
  transition: background var(--dur) var(--ease),
              color var(--dur) var(--ease);
  white-space: nowrap;
}
.navbar.scrolled .btn-nav:hover {
  background: var(--navy-900);
  color: var(--gold-500);
  border-color: var(--navy-900);
}
.navbar:not(.scrolled) .btn-nav:hover {
  background: rgba(201, 168, 76, 0.12);
  border-color: var(--gold-400);
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  padding: 4px;
}
.nav-toggle span {
  display: block;
  width: 22px; height: 1.5px;
  border-radius: 1px;
  transition: all var(--dur) var(--ease);
}
.nav-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(4.5px, 4.5px); }
.nav-toggle.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.nav-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(4.5px, -4.5px); }


/* ============================================
   HERO
   ============================================ */
#hero {
  min-height: 100vh;
  min-height: 100dvh; /* accounts for mobile browser chrome */
  position: relative;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--navy-950);
}

.hero-img-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
  background-image: url('hero-building.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
  will-change: transform;
}

/* Handshake layer — human touch over the building, fades right */
.hero-building-bg {
  position: absolute;
  inset: 0;
  z-index: 2;
  will-change: transform;
  background-image: url('hero.jpg');
  background-size: cover;
  background-position: right center;
  background-repeat: no-repeat;
  opacity: 0.60;
  mix-blend-mode: normal;
  pointer-events: none;
  -webkit-mask-image: linear-gradient(to right, transparent 0%, transparent 18%, black 52%, black 100%);
  mask-image: linear-gradient(to right, transparent 0%, transparent 18%, black 52%, black 100%);
}
@media (max-width: 768px) {
  .hero-building-bg {
    background-position: center top;
    -webkit-mask-image: linear-gradient(to bottom, black 0%, black 45%, transparent 72%);
    mask-image: linear-gradient(to bottom, black 0%, black 45%, transparent 72%);
    opacity: 0.45;
  }
}

/* Single directional overlay — dark left for text, lighter right */
.hero-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  background: linear-gradient(
    to right,
    rgba(6, 13, 30, 0.93) 0%,
    rgba(6, 13, 30, 0.72) 50%,
    rgba(6, 13, 30, 0.42) 100%
  );
}

.hero-container {
  position: relative;
  z-index: 4;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 120px var(--pad-x) 80px;
  display: grid;
  grid-template-columns: 1fr 380px;
  gap: 64px;
  align-items: center;
  min-height: 100vh;
}

/* Hero eyebrow */
.hero-eyebrow {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 28px;
}
.hero-eyebrow-line {
  width: 32px;
  height: 1px;
  background: var(--gold-500);
  flex-shrink: 0;
}
.hero-eyebrow-text {
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--gold-400);
}

/* Hero heading */
.hero-heading {
  font-family: 'BusinessElegance', Georgia, serif;
  font-size: clamp(46px, 6vw, 78px);
  font-weight: 700;
  line-height: 1.06;
  color: #fff;
  letter-spacing: -1px;
  margin-bottom: 24px;
}
.hero-heading .gold {
  color: var(--gold-500);
  font-style: normal;
}

.hero-sub {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 500px;
  line-height: 1.80;
  margin-bottom: 44px;
}

.hero-ctas {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

/* ---- Credentials Panel (replaces glassmorphism card) ---- */
.credentials-panel {
  background: rgba(12, 27, 51, 0.82);
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-lg);
  overflow: hidden;
}

.cp-header {
  padding: 26px 28px 22px;
  border-bottom: 1px solid var(--line-dark);
}
.cp-name {
  font-family: 'BusinessElegance', Georgia, serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-light);
  letter-spacing: 0.5px;
  margin-bottom: 4px;
}
.cp-title {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.5px;
  color: rgba(197, 206, 223, 0.55);
}

.cp-stats {
  display: flex;
  align-items: stretch;
  border-bottom: 1px solid var(--line-dark);
}
.cp-stat {
  flex: 1;
  padding: 22px 18px;
  text-align: center;
  border-right: 1px solid var(--line-dark);
}
.cp-stat:last-child { border-right: none; }
.cp-num {
  font-family: 'BusinessElegance', Georgia, serif;
  font-size: 38px;
  font-weight: 700;
  line-height: 1;
  color: var(--gold-500);
  margin-bottom: 5px;
}
.cp-suffix {
  font-family: 'BusinessElegance', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--gold-500);
}
.cp-label {
  font-size: 9px;
  font-weight: 600;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: rgba(197, 206, 223, 0.45);
}

.cp-region {
  padding: 14px 28px;
  border-bottom: 1px solid var(--line-dark);
  font-size: 11.5px;
  color: rgba(197, 206, 223, 0.55);
  letter-spacing: 0.3px;
}

.cp-authorities {
  padding: 16px 28px;
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.cp-authorities span {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: var(--gold-400);
}
.cp-dot {
  color: rgba(201, 168, 76, 0.35);
  font-weight: 400;
}


/* ============================================
   ABOUT
   ============================================ */
.about-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 80px;
  align-items: start;
}

.about-body {
  font-family: 'BusinessElegance', Georgia, serif;
  font-size: 17px;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 20px;
}

.abilities-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 28px;
}
.tag {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 0.5px;
  color: var(--navy-900);
  background: var(--gold-100);
  border: 1px solid rgba(201, 168, 76, 0.3);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  transition: background var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}
.tag:hover {
  background: var(--gold-200);
  border-color: rgba(201, 168, 76, 0.55);
}

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

.stat-card {
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 26px 20px;
  transition: box-shadow var(--dur) var(--ease),
              transform var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
  box-shadow: var(--shadow-sm);
  position: relative;
}
.stat-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
  border-radius: 0 0 var(--radius) var(--radius);
}
.stat-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: var(--shadow-lift);
  transform: translateY(-4px);
}
.stat-card:hover::after { transform: scaleX(1); }

.stat-number {
  font-family: 'BusinessElegance', Georgia, serif;
  font-size: 48px;
  font-weight: 700;
  line-height: 1;
  margin-bottom: 9px;
  color: var(--navy-900);
}
.stat-plus { font-size: 28px; }
.stat-label {
  font-size: 12px;
  color: var(--text-muted);
  line-height: 1.45;
  font-weight: 500;
}


/* ============================================
   PROCESS (How it works)
   ============================================ */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 2px;
  margin-top: 56px;
  position: relative;
}
/* Connecting line */
.process-grid::before {
  content: '';
  position: absolute;
  top: 32px;
  left: calc(12.5% + 20px);
  right: calc(12.5% + 20px);
  height: 1px;
  background: linear-gradient(to right,
    transparent,
    rgba(201, 168, 76, 0.22) 10%,
    rgba(201, 168, 76, 0.22) 90%,
    transparent
  );
  z-index: 0;
}

.process-step {
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 32px 24px 28px;
  text-align: center;
  position: relative;
  transition: box-shadow var(--dur) var(--ease),
              transform var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
  margin: 0 8px;
}
.process-step:hover {
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: var(--shadow-lift);
  transform: translateY(-5px);
}

.step-num {
  font-family: 'BusinessElegance', Georgia, serif;
  font-size: 42px;
  font-weight: 700;
  line-height: 1;
  color: var(--gold-500);
  opacity: 0.85;
  margin: 0 auto 20px;
  display: block;
  position: relative;
  z-index: 1;
}

.step-title {
  font-family: 'BusinessElegance', Georgia, serif;
  font-size: 17px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 10px;
}
.step-desc {
  font-family: 'BusinessElegance', Georgia, serif;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.72;
}


/* ============================================
   SERVICES
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.service-card {
  position: relative;
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: border-color var(--dur) var(--ease),
              transform var(--dur) var(--ease),
              box-shadow var(--dur) var(--ease);
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.service-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: var(--shadow-lift);
  transform: translateY(-5px);
}
.service-card:hover::before { transform: scaleX(1); }

/* Highlight card */
.service-card-highlight {
  background: var(--navy-900);
  border-color: var(--line-gold);
}
.service-card-highlight::before {
  transform: scaleX(1);
  background: var(--gold-500);
}
.service-card-highlight .service-title  { color: var(--text-light); }
.service-card-highlight .service-desc   { color: rgba(197, 206, 223, 0.65); }

.service-icon {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-500);
  margin-bottom: 22px;
  flex-shrink: 0;
}

.service-title {
  font-family: 'BusinessElegance', Georgia, serif;
  font-size: 19px;
  font-weight: 700;
  color: var(--text-heading);
  margin-bottom: 10px;
  line-height: 1.25;
}
.service-desc {
  font-family: 'BusinessElegance', Georgia, serif;
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 18px;
}
.service-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.service-list li {
  font-size: 13px;
  color: var(--text-body);
  display: flex;
  align-items: center;
  gap: 10px;
}
.service-list li::before {
  content: '';
  width: 3px; height: 3px;
  border-radius: 50%;
  background: var(--gold-500);
  flex-shrink: 0;
}
.service-card-highlight .service-list li { color: rgba(197, 206, 223, 0.70); }
.service-card-highlight .service-list li::before { background: var(--gold-400); }

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 7px;
  margin-top: 20px;
}
.trust-badge {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  color: var(--gold-400);
}
.trust-badge:not(:last-child)::after {
  content: ' ·';
  color: rgba(201, 168, 76, 0.35);
  margin-left: 7px;
}


/* ============================================
   COVERAGE
   ============================================ */
.coverage-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-top: 0;
}

.coverage-card {
  background: var(--bg-white);
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 30px 20px;
  text-align: center;
  transition: box-shadow var(--dur) var(--ease),
              transform var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
  box-shadow: var(--shadow-sm);
  position: relative;
  overflow: hidden;
}
.coverage-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold-500);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.4s var(--ease);
}
.coverage-card:hover {
  border-color: rgba(201, 168, 76, 0.3);
  box-shadow: var(--shadow-lift);
  transform: translateY(-5px);
}
.coverage-card:hover::after { transform: scaleX(1); }

.coverage-abbr {
  font-family: 'BusinessElegance', Georgia, serif;
  font-size: 28px;
  font-weight: 700;
  letter-spacing: 1px;
  color: var(--gold-500);
  display: block;
  margin: 0 auto 14px;
  line-height: 1;
}

.coverage-name {
  font-size: 13.5px;
  font-weight: 600;
  color: var(--text-heading);
  margin-bottom: 5px;
  line-height: 1.4;
}
.coverage-office {
  font-size: 11.5px;
  color: var(--text-faint);
  margin-bottom: 14px;
}
.coverage-depts {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 4px;
}
.coverage-depts span {
  font-size: 10px;
  font-weight: 600;
  color: var(--text-muted);
}
.coverage-depts span:not(:last-child)::after {
  content: ' ·';
  color: var(--text-faint);
  margin-left: 4px;
}


/* ============================================
   CLIENTS  (dark section)
   ============================================ */
.clients-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}

.client-card {
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid var(--line-dark);
  border-radius: var(--radius);
  padding: 34px 28px;
  transition: border-color var(--dur) var(--ease),
              background var(--dur) var(--ease),
              transform var(--dur) var(--ease);
  position: relative;
  overflow: hidden;
}
.client-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold-500);
  opacity: 0;
  transition: opacity var(--dur) var(--ease);
}
.client-card:hover {
  background: rgba(201, 168, 76, 0.04);
  border-color: var(--line-gold);
  transform: translateY(-5px);
}
.client-card:hover::before { opacity: 1; }

.client-card-featured {
  background: rgba(201, 168, 76, 0.05);
  border-color: var(--line-gold);
}
.client-card-featured::before { opacity: 1; }

.client-badge {
  font-size: 9.5px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: rgba(197, 206, 223, 0.50);
  margin-bottom: 14px;
  display: block;
}
.client-badge.featured { color: var(--gold-400); }

.client-name {
  font-family: 'BusinessElegance', Georgia, serif;
  font-size: 20px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 4px;
  line-height: 1.25;
}
.client-group {
  font-size: 12.5px;
  font-style: italic;
  color: var(--gold-400);
  margin-bottom: 10px;
}
.client-location {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 12.5px;
  color: rgba(197, 206, 223, 0.45);
  margin-bottom: 16px;
}
.client-desc {
  font-family: 'BusinessElegance', Georgia, serif;
  font-size: 15px;
  color: rgba(197, 206, 223, 0.45);
  line-height: 1.72;
}


/* ============================================
   CONTACT
   ============================================ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 390px;
  gap: 80px;
  align-items: start;
  margin-top: 52px;
}

.contact-intro {
  font-family: 'BusinessElegance', Georgia, serif;
  font-size: 18px;
  color: var(--text-body);
  line-height: 1.85;
  margin-bottom: 44px;
}

.contact-details {
  display: flex;
  flex-direction: column;
  gap: 24px;
}
.contact-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
  color: inherit;
  transition: all var(--dur) var(--ease);
}
.contact-item:not(.no-link):hover .contact-value { color: var(--gold-500); }

.contact-icon {
  width: 40px; height: 40px;
  border-radius: var(--radius);
  background: var(--gold-100);
  border: 1px solid rgba(201, 168, 76, 0.25);
  display: flex; align-items: center; justify-content: center;
  color: var(--gold-500);
  flex-shrink: 0;
  transition: background var(--dur) var(--ease),
              border-color var(--dur) var(--ease);
}
.contact-item:hover .contact-icon {
  background: var(--gold-200);
  border-color: rgba(201, 168, 76, 0.5);
}
.contact-label {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--text-faint);
  margin-bottom: 3px;
}
.contact-value {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-heading);
  line-height: 1.55;
  transition: color var(--dur) var(--ease);
}

/* CTA Card */
.cta-card {
  background: var(--navy-900);
  border: 1px solid var(--line-gold);
  border-radius: var(--radius-lg);
  padding: 44px 36px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gold-500);
}

.cta-icon {
  width: 60px; height: 60px;
  border-radius: var(--radius);
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid var(--line-gold);
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto 22px;
  color: var(--gold-500);
}
.cta-card h3 {
  font-family: 'BusinessElegance', Georgia, serif;
  font-size: 22px;
  font-weight: 700;
  color: var(--text-light);
  margin-bottom: 12px;
  line-height: 1.3;
}
.cta-card p {
  font-family: 'BusinessElegance', Georgia, serif;
  font-size: 15px;
  color: rgba(197, 206, 223, 0.60);
  line-height: 1.75;
  margin-bottom: 30px;
}
.cta-card .btn-ghost {
  color: rgba(197, 206, 223, 0.75);
  border-color: rgba(255, 255, 255, 0.15);
}
.cta-card .btn-ghost:hover {
  border-color: rgba(255, 255, 255, 0.35);
  background: rgba(255, 255, 255, 0.05);
}
.pan-info {
  font-size: 10px;
  font-weight: 600;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  color: rgba(197, 206, 223, 0.18);
  margin-top: 16px;
}


/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--bg-footer);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  padding-top: 68px;
}

.footer-container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--pad-x) 52px;
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 80px;
}

.footer-logo-wrap { margin-bottom: 10px; }
.footer-logo-wrap .logo-text { color: #fff; }
.footer-logo-wrap .logo-sub  { color: var(--gold-500); }

.footer-tagline {
  font-style: italic;
  font-size: 12.5px;
  color: rgba(197, 206, 223, 0.40);
  margin-bottom: 14px;
  letter-spacing: 0.5px;
}
.footer-address {
  font-size: 13px;
  color: rgba(197, 206, 223, 0.25);
  line-height: 1.7;
  max-width: 300px;
}

.footer-links {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
}
.footer-col h4 {
  font-size: 9.5px;
  letter-spacing: 3.5px;
  text-transform: uppercase;
  color: rgba(201, 168, 76, 0.50);
  margin-bottom: 20px;
  font-weight: 700;
}
.footer-col a {
  display: block;
  font-size: 13px;
  color: rgba(197, 206, 223, 0.28);
  margin-bottom: 11px;
  transition: color var(--dur) var(--ease);
}
.footer-col a:hover { color: var(--gold-400); }

.footer-bottom {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 20px var(--pad-x);
  border-top: 1px solid rgba(255, 255, 255, 0.04);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}
.footer-bottom p {
  font-size: 11.5px;
  color: rgba(197, 206, 223, 0.18);
}
.quanta-credit {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  text-decoration: none;
  opacity: 0.45;
  transition: opacity 0.2s ease;
}
.quanta-credit:hover { opacity: 0.85; }
.quanta-credit span {
  font-size: 11px;
  color: rgba(197, 206, 223, 0.70);
  letter-spacing: 0.02em;
}
.quanta-logo {
  width: 20px; height: 20px;
  object-fit: contain;
  filter: brightness(0) invert(1);
  opacity: 0.7;
}
.quanta-name {
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(197, 206, 223, 0.85) !important;
  letter-spacing: 0.03em;
}


/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1100px) {
  :root { --pad-x: 30px; }

  .hero-container {
    grid-template-columns: 1fr;
    padding-top: 100px;
    gap: 52px;
  }
  .credentials-panel { max-width: 500px; }
  .hero-sub { max-width: 600px; }

  .about-grid { gap: 52px; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .coverage-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .process-grid::before { display: none; }
  .contact-grid { grid-template-columns: 1fr; gap: 52px; }
}

@media (max-width: 768px) {
  :root { --section: 64px 0; --pad-x: 20px; }

  /* Nav */
  .nav-links, .btn-nav { display: none; }
  .nav-toggle { display: flex; }
  .nav-mobile-cta-item { display: none; } /* hidden on desktop */

  /* Dropdown mobile menu */
  .nav-links.open {
    display: flex;
    flex-direction: column;
    position: absolute;   /* drops below the fixed navbar */
    top: 100%;
    left: 0; right: 0;
    background: rgba(6, 13, 30, 0.97);
    backdrop-filter: blur(24px) saturate(150%);
    -webkit-backdrop-filter: blur(24px) saturate(150%);
    border-top: 1px solid rgba(255, 255, 255, 0.06);
    box-shadow: 0 16px 40px rgba(0, 0, 0, 0.45);
    padding: 12px 24px 20px;
    gap: 2px;
    z-index: 998;
    align-items: stretch;
    justify-content: flex-start;
    animation: menuSlideDown 0.25s cubic-bezier(0, 0, 0.2, 1);
  }
  @keyframes menuSlideDown {
    from { opacity: 0; transform: translateY(-6px); }
    to   { opacity: 1; transform: translateY(0); }
  }
  .nav-links.open li { width: 100%; }
  .nav-links.open a {
    display: flex;
    align-items: center;
    padding: 12px 10px;
    font-size: 13px;
    font-family: 'Inter', sans-serif;
    font-weight: 500;
    letter-spacing: 0.5px;
    color: rgba(255, 255, 255, 0.60);
    border-radius: 6px;
    min-height: 44px;
    transition: color 0.2s ease, background 0.2s ease, padding-left 0.2s ease;
  }
  .nav-links.open a:hover {
    color: #fff;
    background: rgba(255, 255, 255, 0.06);
    padding-left: 18px;
  }
  /* Active state in dropdown */
  .nav-links.open .nav-link.active { color: var(--gold-400); }

  /* Mobile CTA — show only in the dropdown */
  .nav-mobile-cta-item { display: block; margin-top: 10px; }
  .nav-mobile-cta-btn {
    display: flex !important;
    justify-content: center;
    width: 100%;
    padding: 13px !important;
    font-size: 11.5px !important;
    font-weight: 700 !important;
    letter-spacing: 1.5px !important;
    text-transform: uppercase;
    color: var(--gold-400) !important;
    border: 1.5px solid rgba(201, 168, 76, 0.35);
    border-radius: var(--radius-sm);
    background: transparent;
    transition: background 0.2s ease, border-color 0.2s ease, padding-left 0.2s ease !important;
  }
  .nav-mobile-cta-btn:hover {
    background: rgba(201, 168, 76, 0.08) !important;
    border-color: var(--gold-500);
    padding-left: 10px !important; /* override the hover indent */
  }

  /* Hero */
  .hero-container { min-height: auto; padding: 100px 20px 56px; gap: 36px; }
  .credentials-panel { display: none; }
  .hero-heading { font-size: clamp(34px, 10vw, 52px); letter-spacing: -0.5px; }
  .hero-sub { font-size: 15px; }
  .hero-eyebrow-text { font-size: 10px; letter-spacing: 2px; }
  .hero-ctas { flex-direction: column; align-items: flex-start; gap: 12px; }
  .btn-primary, .btn-ghost-white { width: 100%; justify-content: center; min-height: 48px; }

  /* About */
  .about-grid { grid-template-columns: 1fr; gap: 40px; }
  .about-right { grid-template-columns: 1fr 1fr; gap: 12px; }
  .stat-number { font-size: 40px; }

  /* Process */
  .process-grid { grid-template-columns: 1fr; margin: 32px 0 0; gap: 12px; }
  .process-step { margin: 0; padding: 24px 20px; }
  .process-grid::before { display: none; }

  /* Services */
  .services-grid { grid-template-columns: 1fr; gap: 16px; }
  .service-card { padding: 28px 22px; }

  /* Coverage */
  .coverage-grid { grid-template-columns: 1fr 1fr; gap: 12px; }
  .coverage-card { padding: 22px 14px; }

  /* Clients */
  .clients-grid { grid-template-columns: 1fr; gap: 16px; }
  .client-card { padding: 28px 22px; }

  /* Contact */
  .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .contact-intro { font-size: 15px; }
  .btn-primary.btn-block, .btn-ghost.btn-block { min-height: 48px; }

  /* Section headings */
  .section-heading { font-size: clamp(28px, 8vw, 42px); }
  .section-sub { font-size: 14.5px; margin-bottom: 32px; }

  /* Hero — full-coverage overlay on mobile (left→right gradient looks wrong when stacked) */
  .hero-overlay { background: rgba(6, 13, 30, 0.78); }

  /* Scroll reveal — slightly faster on mobile */
  .reveal { transition-duration: 0.5s; }

  /* CTA card */
  .cta-card { padding: 32px 22px; }

  /* Footer */
  .footer-container { grid-template-columns: 1fr; gap: 36px; }
  .footer-links { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}

@media (max-width: 480px) {
  :root { --pad-x: 16px; }

  .about-right { grid-template-columns: 1fr 1fr; }
  .coverage-grid { grid-template-columns: 1fr 1fr; }
  .footer-links { grid-template-columns: 1fr; gap: 28px; }
  .logo-text { font-size: 15px; letter-spacing: 1px; }
  .logo-sub { font-size: 9px; letter-spacing: 3px; }

  .btn-primary, .btn-ghost, .btn-ghost-white, .btn-nav, .contact-item { min-height: 44px; }
  .nav-toggle { min-width: 44px; min-height: 44px; justify-content: center; }

  .hero-heading { font-size: clamp(30px, 9vw, 44px); }
  .hero-sub { font-size: 14.5px; }
  .stat-number { font-size: 36px; }
  .process-step { padding: 20px 16px; }
  .coverage-card { padding: 18px 12px; }
  .coverage-name { font-size: 12.5px; }
  .client-card { padding: 24px 18px; }
  .section-sub { margin-bottom: 28px; }
  .contact-intro { font-size: 14.5px; margin-bottom: 32px; }
}

/* ============================================
   SERVICES SLIDER
   ============================================ */

.services-slider-wrap {
  display: flex;
  align-items: center;
  gap: 0;
  margin-top: 48px;
}

.services-track-outer {
  overflow: hidden;
  flex: 1;
  min-width: 0;
  touch-action: pan-y; /* allow vertical scroll, capture horizontal for swipe */
}

.services-track {
  display: flex;
  transition: transform 0.60s cubic-bezier(0.4, 0, 0.2, 1);
  will-change: transform;
}

.service-slide {
  min-width: 100%;
  box-sizing: border-box;
}

.slide-inner {
  display: grid;
  grid-template-columns: 120px 1fr;
  gap: 48px;
  align-items: start;
  background: var(--white);
  border: 1px solid rgba(12, 27, 51, 0.08);
  border-radius: var(--radius);
  padding: 52px 52px 52px 44px;
  box-shadow: 0 4px 32px rgba(12, 27, 51, 0.07);
  min-height: 320px;
}

.slide-inner-highlight {
  background: var(--navy-900);
}

.slide-inner-highlight .slide-title,
.slide-inner-highlight .slide-desc {
  color: var(--off-white);
}

.slide-inner-highlight .slide-num {
  color: var(--gold-500);
  opacity: 0.25;
}

.slide-left {
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  gap: 16px;
  padding-top: 4px;
}

.slide-num {
  font-family: 'BusinessElegance', Georgia, serif;
  font-size: 80px;
  font-weight: 400;
  line-height: 1;
  color: var(--gold-500);
  opacity: 0.45;
  user-select: none;
  letter-spacing: -2px;
}

.slide-icon {
  width: 46px;
  height: 46px;
  background: rgba(12, 27, 51, 0.06);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--navy-900);
  flex-shrink: 0;
}

.slide-icon-gold {
  background: rgba(201, 168, 76, 0.14);
  color: var(--gold-500);
}

.slide-content {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.slide-title {
  font-family: 'BusinessElegance', Georgia, serif;
  font-size: 28px;
  font-weight: 400;
  color: var(--navy-900);
  line-height: 1.25;
  margin: 0;
}

.slide-desc {
  font-family: 'Inter', sans-serif;
  font-size: 15.5px;
  font-weight: 300;
  line-height: 1.75;
  color: var(--slate);
  margin: 0;
  max-width: 600px;
}

.slide-list {
  list-style: none;
  padding: 0;
  margin: 4px 0 0;
  display: flex;
  flex-wrap: wrap;
  column-gap: 36px;
  row-gap: 6px;
}

.slide-list li {
  font-family: 'Inter', sans-serif;
  font-size: 13.5px;
  font-weight: 400;
  color: var(--charcoal);
  padding-left: 14px;
  position: relative;
}

.slide-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--gold-500);
}

.slide-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 4px;
}

.slide-badges span {
  font-family: 'Inter', sans-serif;
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--gold-500);
  background: rgba(201, 168, 76, 0.12);
  border: 1px solid rgba(201, 168, 76, 0.30);
  border-radius: var(--radius-sm);
  padding: 5px 12px;
}

.slider-arrow {
  flex-shrink: 0;
  width: 46px;
  height: 46px;
  background: var(--navy-900);
  border: 1px solid var(--gold-500);
  border-radius: var(--radius-sm);
  color: var(--gold-500);
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s ease, color 0.2s ease;
}

.slider-arrow:hover {
  background: var(--gold-500);
  color: var(--navy-900);
}

.slider-prev { margin-right: 14px; }
.slider-next { margin-left: 14px; }

.slider-dots {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  margin-top: 28px;
}

.dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  border: 1.5px solid var(--gold-500);
  background: transparent;
  cursor: pointer;
  padding: 0;
  transition: background 0.2s ease, transform 0.2s ease;
}

.dot.active {
  background: var(--gold-500);
  transform: scale(1.35);
}

@media (max-width: 768px) {
  .slide-inner {
    grid-template-columns: 1fr;
    gap: 20px;
    padding: 32px 24px;
    min-height: unset;
  }
  .slide-left { flex-direction: row; align-items: center; gap: 12px; }
  .slide-num { font-size: 52px; opacity: 0.15; }
  .slider-arrow { width: 44px; height: 44px; } /* min 44px touch target */
  .slider-prev { margin-right: 8px; }
  .slider-next { margin-left: 8px; }
  .slide-title { font-size: 23px; }
  .slide-desc { font-size: 14.5px; }
  /* Enlarge dot tap targets */
  .slider-dots { gap: 16px; margin-top: 20px; }
  .dot {
    width: 10px;
    height: 10px;
    /* invisible padding grows the tap area to ~26px */
    padding: 8px;
    box-sizing: content-box;
    border-radius: 50%;
  }
  /* Swipe hint — hide arrows on very narrow to reclaim width */
}

/* ============================================
   INTRO SPLASH
   ============================================ */
#siteIntro {
  position: fixed;
  inset: 0;
  background: var(--navy-950);
  z-index: 99999;
  display: flex;
  align-items: center;
  justify-content: center;
  pointer-events: none;
  transition: transform 0.65s cubic-bezier(0.7, 0, 0.3, 1),
              opacity 0.3s ease;
}

#siteIntro.intro-exit {
  transform: translateY(-100%);
}

.intro-logo {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  opacity: 0;
  transform: translateY(16px);
  transition: opacity 0.55s cubic-bezier(0, 0, 0.2, 1),
              transform 0.55s cubic-bezier(0, 0, 0.2, 1);
}

#siteIntro.intro-loaded .intro-logo {
  opacity: 1;
  transform: translateY(0);
}

.intro-mj {
  font-family: 'BusinessElegance', Georgia, serif;
  font-size: 80px;
  font-weight: 400;
  color: var(--gold-500);
  line-height: 1;
  letter-spacing: 6px;
}

.intro-ent {
  font-family: 'Inter', sans-serif;
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 7px;
  color: rgba(201, 168, 76, 0.45);
  text-transform: uppercase;
}

.intro-line {
  width: 0;
  height: 1px;
  background: var(--gold-500);
  opacity: 0.35;
  transition: width 0.5s cubic-bezier(0, 0, 0.2, 1) 0.25s;
}

#siteIntro.intro-loaded .intro-line {
  width: 48px;
}

/* ── GLASS BASE ─────────────────────────────────────── */
.glass {
  background: rgba(255, 255, 255, 0.1);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
}

/* ── DARK GLASS (for dark backgrounds) ─────────────── */
.glass-dark {
  background: rgba(0, 0, 0, 0.25);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 16px;
  box-shadow: 0 8px 40px rgba(0, 0, 0, 0.4);
}

/* ── FROSTED (heavier blur, more opaque) ────────────── */
.glass-frosted {
  background: rgba(255, 255, 255, 0.15);
  backdrop-filter: blur(24px) saturate(180%);
  -webkit-backdrop-filter: blur(24px) saturate(180%);
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 20px;
  box-shadow:
    0 4px 24px rgba(0, 0, 0, 0.15),
    inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

/* ── GLASS CARD ─────────────────────────────────────── */
.glass-card {
  background: rgba(255, 255, 255, 0.08);
  backdrop-filter: blur(10px);
  -webkit-backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 12px;
  padding: 24px;
  box-shadow:
    0 4px 16px rgba(0, 0, 0, 0.2),
    inset 0 1px 0 rgba(255, 255, 255, 0.15);
  transition: background 0.3s ease, box-shadow 0.3s ease;
}

.glass-card:hover {
  background: rgba(255, 255, 255, 0.14);
  box-shadow:
    0 8px 32px rgba(0, 0, 0, 0.25),
    inset 0 1px 0 rgba(255, 255, 255, 0.2);
}

/* ── GLASS NAVBAR ───────────────────────────────────── */
.glass-nav {
  background: rgba(10, 10, 10, 0.18);
  backdrop-filter: blur(20px) saturate(150%);
  -webkit-backdrop-filter: blur(20px) saturate(150%);
  border-bottom: 1px solid rgba(255, 255, 255, 0.06);
  box-shadow: 0 2px 20px rgba(0, 0, 0, 0.15);
}

/* ── GLASS BUTTON ───────────────────────────────────── */
.glass-btn {
  background: rgba(255, 255, 255, 0.12);
  backdrop-filter: blur(8px);
  -webkit-backdrop-filter: blur(8px);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 8px;
  padding: 10px 24px;
  color: #fff;
  cursor: pointer;
  transition: all 0.2s ease;
}

.glass-btn:hover {
  background: rgba(255, 255, 255, 0.22);
  border-color: rgba(255, 255, 255, 0.35);
  box-shadow: 0 4px 20px rgba(255, 255, 255, 0.1);
}

/* ── GLASS MODAL ────────────────────────────────────── */
.glass-modal {
  background: rgba(15, 15, 15, 0.6);
  backdrop-filter: blur(32px) saturate(200%);
  -webkit-backdrop-filter: blur(32px) saturate(200%);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 24px;
  box-shadow:
    0 24px 64px rgba(0, 0, 0, 0.5),
    inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

/* ── GLASS INPUT ────────────────────────────────────── */
.glass-input {
  background: rgba(255, 255, 255, 0.06);
  backdrop-filter: blur(6px);
  -webkit-backdrop-filter: blur(6px);
  border: 1px solid rgba(255, 255, 255, 0.15);
  border-radius: 8px;
  padding: 10px 16px;
  color: #fff;
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.glass-input:focus {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.35);
}

/* ── SHIMMER HIGHLIGHT (top edge glow) ──────────────── */
.glass-shine::before {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: linear-gradient(
    135deg,
    rgba(255, 255, 255, 0.15) 0%,
    rgba(255, 255, 255, 0) 50%
  );
  pointer-events: none;
}


/* ============================================
   REDUCED MOTION (accessibility)
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  /* Kill all entrance animations */
  .hero-eyebrow, .hero-heading, .hero-sub, .hero-ctas, .credentials-panel {
    animation: none;
    opacity: 1;
    transform: none;
    filter: none;
  }
  /* Reveal elements appear instantly */
  .reveal {
    opacity: 1;
    transform: none;
    filter: none;
    transition: none;
  }
  /* Slider transitions snap */
  .services-track { transition: none; }
  /* Intro splash skips animation */
  #siteIntro { transition: none; }
  .intro-logo { opacity: 1; transform: none; transition: none; }
  .intro-line { width: 48px; transition: none; }
  /* General transitions shortened */
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
}
