/* ── Design Tokens ────────────────────────────────────────────────────── */
:root {
  --navy:        #0D1B2A;
  --navy-800:    #162947;
  --navy-700:    #1E3A5F;
  --navy-600:    #2A4E7F;
  --gold:        #B8912F;
  --gold-light:  #D4AF5C;
  --gold-pale:   #F8F1E0;
  --white:       #FFFFFF;
  --gray-50:     #F8F9FC;
  --gray-100:    #EEF0F5;
  --gray-200:    #D8DCE8;
  --gray-400:    #8892A4;
  --gray-600:    #4A5568;
  --gray-800:    #1A2332;
  --red:         #E53E3E;
  --green:       #38A169;

  --font-heading: 'Outfit', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --font-body:    'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --transition:      0.25s ease;
  --transition-slow: 0.45s ease;

  --shadow-sm:  0 2px 8px rgba(13,27,42,0.07);
  --shadow-md:  0 6px 24px rgba(13,27,42,0.11);
  --shadow-lg:  0 16px 48px rgba(13,27,42,0.15);
  --shadow-xl:  0 32px 80px rgba(13,27,42,0.20);

  --radius-sm:  4px;
  --radius-md:  8px;
  --radius-lg:  14px;
  --radius-xl:  24px;

  --container: 1200px;
}

/* ── Reset ────────────────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; font-size: 16px; }
body {
  font-family: var(--font-body);
  color: var(--gray-800);
  background: var(--white);
  line-height: 1.65;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
img { display: block; max-width: 100%; }
button { cursor: pointer; font: inherit; border: none; background: none; }
input, select, textarea { font: inherit; }

/* ── Container ────────────────────────────────────────────────────────── */
.container {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
}

/* ── Typography ──────────────────────────────────────────────────────── */
h1, h2, h3, h4 { font-family: var(--font-heading); line-height: 1.15; color: var(--navy); }
h1 { font-size: clamp(2.4rem, 5vw, 3.8rem); font-weight: 700; letter-spacing: -0.03em; }
h2 { font-size: clamp(1.85rem, 3.5vw, 2.6rem); font-weight: 700; letter-spacing: -0.025em; }
h3 { font-size: 1.2rem; font-weight: 600; letter-spacing: -0.01em; }
h4 { font-size: 0.98rem; font-weight: 600; }
p  { color: var(--gray-600); line-height: 1.72; }

.label-tag {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: var(--gold);
  margin-bottom: 12px;
}
.label-tag.light { color: var(--gold-light); }

.section-header {
  text-align: center;
  max-width: 640px;
  margin: 0 auto 56px;
}
.section-header h2 { margin-bottom: 14px; }
.section-header p { font-size: 1.05rem; }

/* ── Buttons ─────────────────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
  border-radius: var(--radius-sm);
  transition: all var(--transition);
  white-space: nowrap;
  letter-spacing: 0.01em;
}
.btn-sm  { padding: 9px 20px; font-size: 0.85rem; }
.btn-md  { padding: 12px 28px; }
.btn-lg  { padding: 15px 34px; font-size: 0.95rem; }
.btn-full { width: 100%; justify-content: center; padding: 15px; }

.btn-gold {
  background: var(--gold);
  color: var(--white);
  box-shadow: 0 4px 16px rgba(184,145,47,0.35);
}
.btn-gold:hover {
  background: var(--gold-light);
  box-shadow: 0 6px 24px rgba(184,145,47,0.45);
  transform: translateY(-1px);
}

.btn-navy {
  background: var(--navy);
  color: var(--white);
  box-shadow: var(--shadow-md);
}
.btn-navy:hover {
  background: var(--navy-800);
  transform: translateY(-1px);
}

.btn-outline-light {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.4);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,0.1);
  border-color: rgba(255,255,255,0.7);
}

/* ── Section Helpers ─────────────────────────────────────────────────── */
.section     { padding: 100px 0; }
.section-dark { padding: 100px 0; background: var(--navy); }
.bg-light    { background: var(--gray-50); }

/* ── Scroll Animations ───────────────────────────────────────────────── */
.fade-up {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity 0.55s ease, transform 0.55s ease;
  transition-delay: var(--delay, 0s);
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════════════════════════
   NAVBAR
═══════════════════════════════════════════════════════════════════ */
#navbar {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1000;
  padding: 0;
  transition: background var(--transition), box-shadow var(--transition);
}
#navbar.scrolled {
  background: rgba(13,27,42,0.97);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  box-shadow: 0 2px 32px rgba(0,0,0,0.3);
}
.nav-inner {
  max-width: var(--container);
  margin: 0 auto;
  padding: 0 28px;
  height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Logo */
.logo {
  display: flex;
  align-items: center;
  gap: 12px;
  flex-shrink: 0;
}
.logo-mark {
  width: 42px;
  height: 42px;
  background: var(--gold);
  color: var(--white);
  font-family: var(--font-heading);
  font-weight: 700;
  font-size: 0.85rem;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.logo-text { display: flex; flex-direction: column; line-height: 1.2; }
.logo-name {
  font-size: 0.95rem;
  font-weight: 600;
  color: var(--white);
  letter-spacing: -0.01em;
}
.logo-sub {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.45);
  letter-spacing: 0.03em;
  text-transform: uppercase;
}

/* Nav links */
.nav-links {
  display: flex;
  gap: 4px;
  margin-left: auto;
}
.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: rgba(255,255,255,0.75);
  padding: 6px 14px;
  border-radius: var(--radius-sm);
  transition: color var(--transition), background var(--transition);
}
.nav-links a:hover { color: var(--white); background: rgba(255,255,255,0.08); }

/* Nav actions */
.nav-actions {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-shrink: 0;
}
.nav-phone {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 0.85rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  transition: color var(--transition);
  padding: 6px 0;
}
.nav-phone svg { flex-shrink: 0; }
.nav-phone:hover { color: var(--gold-light); }

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  padding: 4px;
  width: 30px;
}
.hamburger span {
  display: block;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: all var(--transition);
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile drawer */
.mobile-drawer {
  display: none;
  position: fixed;
  top: 72px; left: 0; right: 0;
  background: var(--navy);
  border-top: 1px solid rgba(255,255,255,0.08);
  z-index: 999;
  padding: 20px 28px 28px;
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: all 0.2s ease;
}
.mobile-drawer.open {
  transform: translateY(0);
  opacity: 1;
  pointer-events: all;
}
.mobile-drawer ul { display: flex; flex-direction: column; gap: 2px; margin-bottom: 20px; }
.mobile-drawer ul a {
  display: block;
  padding: 11px 0;
  font-size: 1rem;
  font-weight: 500;
  color: rgba(255,255,255,0.8);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  transition: color var(--transition);
}
.mobile-drawer ul a:hover { color: var(--white); }
.drawer-call {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--gold-light);
  font-size: 0.9rem;
}
.drawer-overlay {
  display: none;
  position: fixed;
  inset: 0;
  background: rgba(0,0,0,0.5);
  z-index: 998;
}

/* ══════════════════════════════════════════════════════════════════
   HERO
═══════════════════════════════════════════════════════════════════ */
#hero {
  min-height: 100vh;
  background: linear-gradient(145deg, var(--navy) 0%, var(--navy-800) 60%, #0f2a47 100%);
  position: relative;
  display: flex;
  align-items: center;
  padding: 120px 0 80px;
  overflow: hidden;
}

.hero-pattern {
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(rgba(184,145,47,0.12) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}

/* Diagonal accent line */
#hero::after {
  content: '';
  position: absolute;
  top: 0; right: -80px;
  width: 420px;
  height: 100%;
  background: linear-gradient(135deg, transparent 40%, rgba(184,145,47,0.05) 100%);
  pointer-events: none;
}

.hero-grid {
  display: grid;
  grid-template-columns: 1fr 420px;
  gap: 60px;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* Hero Left */
.hero-left { max-width: 600px; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: rgba(184,145,47,0.12);
  border: 1px solid rgba(184,145,47,0.3);
  color: var(--gold-light);
  font-size: 0.8rem;
  font-weight: 500;
  padding: 7px 16px;
  border-radius: 100px;
  margin-bottom: 28px;
}
.badge-dot {
  width: 7px; height: 7px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulseDot 2s ease infinite;
}
@keyframes pulseDot {
  0%,100% { opacity: 1; transform: scale(1); }
  50%      { opacity: 0.5; transform: scale(1.4); }
}

#hero h1 {
  color: var(--white);
  margin-bottom: 22px;
}
.gold-italic {
  font-style: normal;
  font-weight: 800;
  color: var(--gold);
  letter-spacing: -0.03em;
}

.hero-sub {
  font-size: 1.05rem;
  color: rgba(255,255,255,0.65);
  margin-bottom: 36px;
  max-width: 480px;
  line-height: 1.75;
}

.hero-ctas {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 36px;
}

.hero-trust {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}
.trust-item {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 0.8rem;
  font-weight: 500;
  color: rgba(255,255,255,0.55);
}

/* Hero Right — stat cards */
.hero-right {
  position: relative;
  height: 360px;
}
.stat-card {
  position: absolute;
  background: rgba(255,255,255,0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-lg);
  padding: 24px 28px;
  min-width: 200px;
  animation: floatCard 6s ease-in-out infinite;
}
.stat-card--1 { top: 0; right: 20px; animation-delay: 0s; }
.stat-card--2 { top: 110px; left: 0; animation-delay: 2s; }
.stat-card--3 { bottom: 10px; right: 40px; animation-delay: 4s; }

@keyframes floatCard {
  0%,100% { transform: translateY(0); }
  50%      { transform: translateY(-8px); }
}

.reveal-card {
  opacity: 0;
  transform: translateY(20px) scale(0.97);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.reveal-card.visible { opacity: 1; transform: translateY(0) scale(1); }
.stat-card--1.visible { transition-delay: 0.3s; }
.stat-card--2.visible { transition-delay: 0.5s; }
.stat-card--3.visible { transition-delay: 0.7s; }

.sc-icon {
  width: 38px; height: 38px;
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 14px;
}
.sc-icon--up   { background: rgba(56,161,105,0.15); color: #68D391; }
.sc-icon--gold { background: rgba(184,145,47,0.15); color: var(--gold-light); }
.sc-icon--star { background: rgba(237,137,54,0.15); color: #F6AD55; }
.sc-num {
  font-family: var(--font-heading);
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.sc-label {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.5);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Scroll cue */
.scroll-cue {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  color: rgba(255,255,255,0.35);
  display: flex;
  animation: bounce 2s ease infinite;
}
@keyframes bounce {
  0%,100% { transform: translateX(-50%) translateY(0); }
  50%      { transform: translateX(-50%) translateY(6px); }
}

/* ══════════════════════════════════════════════════════════════════
   SERVICES BAND
═══════════════════════════════════════════════════════════════════ */
.services-band {
  background: var(--navy-800);
  border-top: 1px solid rgba(255,255,255,0.06);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 18px 0;
  overflow: hidden;
}
.band-track {
  display: flex;
  gap: 24px;
  align-items: center;
  white-space: nowrap;
  font-size: 0.8rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  animation: scrollBand 30s linear infinite;
}
.band-track .dot { color: var(--gold); opacity: 0.6; }
@keyframes scrollBand {
  from { transform: translateX(0); }
  to   { transform: translateX(-50%); }
}

/* ══════════════════════════════════════════════════════════════════
   SERVICES
═══════════════════════════════════════════════════════════════════ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.service-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 36px 30px;
  position: relative;
  overflow: hidden;
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}
.service-card::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--gold), var(--gold-light));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.35s ease;
}
.service-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: var(--gray-200);
}
.service-card:hover::after { transform: scaleX(1); }

.svc-icon {
  width: 54px; height: 54px;
  background: var(--gold-pale);
  color: var(--gold);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 20px;
  transition: background var(--transition), color var(--transition);
}
.service-card:hover .svc-icon {
  background: var(--gold);
  color: var(--white);
}
.service-card h3 { margin-bottom: 10px; color: var(--navy); }
.service-card p { font-size: 0.9rem; margin-bottom: 20px; }

.svc-link {
  font-size: 0.85rem;
  font-weight: 600;
  color: var(--gold);
  display: inline-flex;
  align-items: center;
  gap: 4px;
  transition: gap var(--transition), color var(--transition);
}
.svc-link span { transition: transform var(--transition); }
.service-card:hover .svc-link span { transform: translateX(4px); }

/* ══════════════════════════════════════════════════════════════════
   STATS
═══════════════════════════════════════════════════════════════════ */
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
.stat-block {
  text-align: center;
  padding: 56px 32px;
  border-right: 1px solid rgba(255,255,255,0.07);
  position: relative;
}
.stat-block:last-child { border-right: none; }
.stat-block::before {
  content: '';
  position: absolute;
  top: 50%; left: 0;
  width: 1px;
  height: 60px;
  background: rgba(255,255,255,0.07);
  transform: translateY(-50%);
}
.stat-block:first-child::before { display: none; }

.stat-num-large {
  font-family: var(--font-heading);
  font-size: clamp(2.5rem, 4vw, 3.5rem);
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 10px;
}
.stat-title {
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--gold-light);
  margin-bottom: 8px;
  letter-spacing: 0.02em;
}
.stat-desc {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.38);
  line-height: 1.5;
}

/* ══════════════════════════════════════════════════════════════════
   ABOUT
═══════════════════════════════════════════════════════════════════ */
.about-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

/* Dashboard mockup */
.about-visual { position: relative; }
.dashboard-mock {
  background: var(--navy);
  border-radius: var(--radius-lg);
  overflow: hidden;
  box-shadow: var(--shadow-xl);
  border: 1px solid rgba(255,255,255,0.06);
}
.dm-header {
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(255,255,255,0.04);
  border-bottom: 1px solid rgba(255,255,255,0.06);
  padding: 12px 18px;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.04em;
}
.dm-dot { width: 10px; height: 10px; border-radius: 50%; }
.dm-dot.red   { background: #FF5F57; }
.dm-dot.amber { background: #FFBD2E; }
.dm-dot.green { background: #28C941; }
.dm-header span { margin-left: 8px; }

.dm-row {
  display: flex;
  gap: 1px;
  padding: 24px 20px 0;
}
.dm-kpi {
  flex: 1;
  background: rgba(255,255,255,0.03);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: var(--radius-md);
  padding: 16px 18px;
  margin-bottom: 0;
}
.dm-kpi + .dm-kpi { margin-left: 12px; }
.dm-kpi-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.4);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 6px;
}
.dm-kpi-val {
  font-family: var(--font-heading);
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--white);
  line-height: 1;
  margin-bottom: 6px;
}
.dm-kpi-delta {
  font-size: 0.75rem;
  font-weight: 600;
  padding: 2px 8px;
  border-radius: 100px;
  display: inline-block;
}
.dm-kpi-delta.up { background: rgba(56,161,105,0.15); color: #68D391; }

.dm-bars {
  padding: 20px 20px 0;
}
.dm-bar-label {
  font-size: 0.7rem;
  color: rgba(255,255,255,0.35);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.dm-bar-group {
  display: flex;
  gap: 10px;
  align-items: flex-end;
  height: 80px;
}
.dm-bar {
  flex: 1;
  background: rgba(255,255,255,0.08);
  border-radius: 4px 4px 0 0;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 6px;
  transition: background 0.3s ease;
}
.dm-bar.active { background: var(--gold); }
.dm-bar span {
  font-size: 0.65rem;
  color: rgba(255,255,255,0.4);
  font-weight: 500;
}
.dm-bar.active span { color: rgba(255,255,255,0.9); }

.dm-audit-badge {
  margin: 16px 20px 20px;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: rgba(184,145,47,0.1);
  border: 1px solid rgba(184,145,47,0.25);
  color: var(--gold-light);
  font-size: 0.75rem;
  font-weight: 500;
  padding: 8px 14px;
  border-radius: 6px;
}

/* About content */
.about-content h2 { margin-bottom: 18px; }
.about-content > p {
  margin-bottom: 14px;
  font-size: 0.97rem;
}
.values-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin: 28px 0 32px;
}
.value-item {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.value-icon {
  width: 36px;
  height: 36px;
  background: var(--gold-pale);
  color: var(--gold);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 2px;
}
.value-item strong {
  display: block;
  font-size: 0.9rem;
  color: var(--navy);
  margin-bottom: 4px;
}
.value-item p {
  font-size: 0.85rem;
  margin: 0;
}

/* ══════════════════════════════════════════════════════════════════
   APPROACH / PROCESS
═══════════════════════════════════════════════════════════════════ */
.process-grid {
  display: grid;
  grid-template-columns: 1fr 40px 1fr 40px 1fr 40px 1fr;
  gap: 0;
  align-items: start;
}
.process-step {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px 28px;
  text-align: center;
  box-shadow: var(--shadow-sm);
}
.step-num {
  font-family: var(--font-heading);
  font-size: 2rem;
  font-weight: 700;
  color: var(--gold);
  opacity: 0.5;
  margin-bottom: 10px;
  line-height: 1;
}
.process-step h3 { margin-bottom: 10px; }
.process-step p { font-size: 0.88rem; }

.process-connector {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  padding-top: 60px;
}
.process-connector::before {
  content: '';
  display: block;
  width: 32px;
  height: 1px;
  background: var(--gray-200);
  position: relative;
}

/* ══════════════════════════════════════════════════════════════════
   INDUSTRIES
═══════════════════════════════════════════════════════════════════ */
.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.industry-card {
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 28px;
  transition: all var(--transition);
  background: var(--white);
}
.industry-card:hover {
  border-color: var(--gold);
  box-shadow: 0 0 0 1px var(--gold), var(--shadow-md);
  transform: translateY(-3px);
}
.ind-icon {
  width: 46px; height: 46px;
  background: var(--gray-50);
  border: 1px solid var(--gray-100);
  color: var(--navy-600);
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 16px;
  transition: all var(--transition);
}
.industry-card:hover .ind-icon {
  background: var(--gold-pale);
  border-color: var(--gold-light);
  color: var(--gold);
}
.industry-card h4 { margin-bottom: 8px; }
.industry-card p { font-size: 0.85rem; }

/* ══════════════════════════════════════════════════════════════════
   TESTIMONIALS
═══════════════════════════════════════════════════════════════════ */
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--white);
  border: 1px solid var(--gray-100);
  border-radius: var(--radius-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
}
.stars {
  color: var(--gold);
  font-size: 0.9rem;
  letter-spacing: 2px;
  margin-bottom: 16px;
}
.testimonial-card blockquote {
  font-size: 0.92rem;
  line-height: 1.75;
  color: var(--gray-600);
  flex: 1;
  margin-bottom: 24px;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
}
.author-avatar {
  width: 44px; height: 44px;
  background: var(--navy);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 0.8rem;
  flex-shrink: 0;
}
.testimonial-author strong {
  display: block;
  font-size: 0.88rem;
  color: var(--navy);
  font-weight: 600;
}
.testimonial-author span {
  font-size: 0.78rem;
  color: var(--gray-400);
}

/* ══════════════════════════════════════════════════════════════════
   CONTACT
═══════════════════════════════════════════════════════════════════ */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: start;
}

.contact-info h2 { color: var(--white); margin-bottom: 16px; }
.contact-info > p { color: rgba(255,255,255,0.55); margin-bottom: 36px; }

/* Call CTA button */
.call-cta {
  display: flex;
  align-items: center;
  gap: 16px;
  background: rgba(184,145,47,0.1);
  border: 1px solid rgba(184,145,47,0.3);
  border-radius: var(--radius-lg);
  padding: 20px 24px;
  margin-bottom: 32px;
  transition: background var(--transition), border-color var(--transition);
}
.call-cta:hover {
  background: rgba(184,145,47,0.18);
  border-color: rgba(184,145,47,0.5);
}
.call-pulse-wrap {
  position: relative;
  width: 52px; height: 52px;
  flex-shrink: 0;
}
.call-pulse {
  position: absolute;
  inset: -6px;
  border-radius: 50%;
  border: 2px solid rgba(184,145,47,0.4);
  animation: pulseRing 2.2s ease infinite;
}
@keyframes pulseRing {
  0%   { transform: scale(0.85); opacity: 0.8; }
  70%  { transform: scale(1.25); opacity: 0; }
  100% { transform: scale(0.85); opacity: 0; }
}
.call-icon-circle {
  width: 52px; height: 52px;
  background: var(--gold);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--white);
  position: relative;
  z-index: 1;
}
.call-text { flex: 1; }
.call-label {
  display: block;
  font-size: 0.75rem;
  color: rgba(255,255,255,0.5);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 4px;
}
.call-number {
  display: block;
  font-size: 1.2rem;
  font-weight: 700;
  font-family: var(--font-heading);
  color: var(--gold-light);
  letter-spacing: -0.01em;
}

/* Contact details list */
.contact-details {
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cd-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 0.88rem;
  color: rgba(255,255,255,0.55);
}
.cd-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--gold);
  opacity: 0.7;
}
.cd-item a { color: rgba(255,255,255,0.55); transition: color var(--transition); }
.cd-item a:hover { color: var(--gold-light); }

/* Form panel */
.contact-form-panel {
  background: var(--white);
  border-radius: var(--radius-xl);
  padding: 44px 40px;
  box-shadow: var(--shadow-xl);
}
.contact-form-panel h3 {
  font-size: 1.4rem;
  margin-bottom: 28px;
  color: var(--navy);
}

/* Forms */
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
  margin-bottom: 18px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
  margin-bottom: 18px;
}
.form-row .form-group { margin-bottom: 0; }
label {
  font-size: 0.8rem;
  font-weight: 600;
  color: var(--gray-800);
  letter-spacing: 0.01em;
}
.req { color: var(--gold); }

input, select, textarea {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius-sm);
  padding: 11px 14px;
  font-size: 0.9rem;
  color: var(--gray-800);
  background: var(--white);
  transition: border-color var(--transition), box-shadow var(--transition);
  outline: none;
  width: 100%;
}
input::placeholder, textarea::placeholder { color: var(--gray-400); }
input:focus, select:focus, textarea:focus {
  border-color: var(--gold);
  box-shadow: 0 0 0 3px rgba(184,145,47,0.12);
}
select { appearance: none; background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%238892A4' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E"); background-repeat: no-repeat; background-position: right 14px center; padding-right: 36px; }
textarea { resize: vertical; min-height: 110px; }

.btn-gold .btn-arrow { transition: transform var(--transition); }
.btn-gold:hover .btn-arrow { transform: translateX(4px); }

.form-feedback {
  margin-top: 14px;
  padding: 12px 16px;
  border-radius: var(--radius-sm);
  font-size: 0.875rem;
  font-weight: 500;
}
.form-feedback.success {
  background: rgba(56,161,105,0.1);
  border: 1px solid rgba(56,161,105,0.3);
  color: var(--green);
}
.form-feedback.error {
  background: rgba(229,62,62,0.08);
  border: 1px solid rgba(229,62,62,0.25);
  color: var(--red);
}

/* ══════════════════════════════════════════════════════════════════
   FOOTER
═══════════════════════════════════════════════════════════════════ */
#footer {
  background: var(--gray-800);
  padding: 72px 0 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1.6fr;
  gap: 48px;
  padding-bottom: 56px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.footer-brand .logo { margin-bottom: 16px; }
.footer-logo .logo-name { font-size: 0.9rem; }
.footer-brand p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.4);
  line-height: 1.7;
  max-width: 300px;
  margin-bottom: 20px;
}
.footer-socials {
  display: flex;
  gap: 10px;
}
.footer-socials a {
  width: 36px; height: 36px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--radius-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.4);
  transition: all var(--transition);
}
.footer-socials a:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--white);
}
.footer-links h4 {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer-links ul {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.footer-links li a {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.38);
  transition: color var(--transition);
}
.footer-links li a:hover { color: var(--gold-light); }
.footer-contact h4 {
  font-size: 0.8rem;
  color: rgba(255,255,255,0.6);
  text-transform: uppercase;
  letter-spacing: 0.1em;
  margin-bottom: 16px;
}
.footer-contact p {
  font-size: 0.85rem;
  color: rgba(255,255,255,0.38);
  margin-bottom: 6px;
  line-height: 1.6;
}
.footer-contact a {
  color: rgba(255,255,255,0.38);
  transition: color var(--transition);
}
.footer-contact a:hover { color: var(--gold-light); }
.footer-hours { font-size: 0.78rem !important; }

.footer-bottom {
  padding: 22px 0;
  display: flex;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}
.footer-bottom p {
  font-size: 0.78rem;
  color: rgba(255,255,255,0.22);
  margin: 0;
}
.footer-creds {
  font-size: 0.72rem;
  color: rgba(255,255,255,0.18);
  flex: 1;
  text-align: center;
  letter-spacing: 0.04em;
}
.footer-legal {
  display: flex;
  gap: 20px;
}
.footer-legal a {
  font-size: 0.75rem;
  color: rgba(255,255,255,0.22);
  transition: color var(--transition);
}
.footer-legal a:hover { color: rgba(255,255,255,0.5); }

/* ══════════════════════════════════════════════════════════════════
   MOBILE STICKY CALL BAR
═══════════════════════════════════════════════════════════════════ */
.mobile-cta-bar {
  display: none;
  position: fixed;
  bottom: 0; left: 0; right: 0;
  z-index: 900;
  background: var(--white);
  border-top: 1px solid var(--gray-100);
  box-shadow: 0 -4px 20px rgba(0,0,0,0.12);
  padding: 12px 20px;
  gap: 12px;
}
.mcta-call {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  background: var(--navy);
  color: var(--white);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 12px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.mcta-call svg { flex-shrink: 0; }
.mcta-call:hover { background: var(--navy-700); }
.mcta-contact {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--gold);
  color: var(--white);
  font-weight: 600;
  font-size: 0.88rem;
  padding: 12px;
  border-radius: var(--radius-sm);
  transition: background var(--transition);
}
.mcta-contact:hover { background: var(--gold-light); }

/* ══════════════════════════════════════════════════════════════════
   RESPONSIVE
═══════════════════════════════════════════════════════════════════ */
@media (max-width: 1100px) {
  .services-grid    { grid-template-columns: repeat(2, 1fr); }
  .stats-grid       { grid-template-columns: repeat(2, 1fr); }
  .stat-block       { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.07); }
  .stat-block:nth-child(odd)  { border-right: 1px solid rgba(255,255,255,0.07); }
  .stat-block:last-child      { border-bottom: none; }
  .footer-grid      { grid-template-columns: 1fr 1fr; gap: 36px; }
}

@media (max-width: 900px) {
  .nav-links        { display: none; }
  .nav-phone        { display: none; }
  .hamburger        { display: flex; }
  .mobile-drawer    { display: block; }
  .mobile-cta-bar   { display: flex; }

  .hero-grid {
    grid-template-columns: 1fr;
    text-align: center;
    padding-bottom: 120px;
  }
  .hero-right { display: none; }
  .hero-ctas  { justify-content: center; }
  .hero-trust { justify-content: center; }
  .hero-badge { justify-content: center; }

  .about-grid   { grid-template-columns: 1fr; gap: 48px; }
  .contact-grid { grid-template-columns: 1fr; gap: 48px; }

  .process-grid {
    grid-template-columns: 1fr;
    gap: 16px;
  }
  .process-connector { display: none; }

  .testimonials-grid { grid-template-columns: 1fr; }

  section, .section { padding: 72px 0; }
  .section-dark { padding: 72px 0; }

  body { padding-bottom: 72px; }
}

@media (max-width: 640px) {
  .services-grid    { grid-template-columns: 1fr; }
  .industries-grid  { grid-template-columns: 1fr; }
  .stats-grid       { grid-template-columns: 1fr; }
  .stat-block       { border-right: none; }
  .stat-block:nth-child(odd) { border-right: none; }
  .footer-grid      { grid-template-columns: 1fr; }
  .form-row         { grid-template-columns: 1fr; }
  .footer-creds     { text-align: left; flex: none; width: 100%; }
  .footer-bottom    { flex-direction: column; align-items: flex-start; gap: 12px; }
  .contact-form-panel { padding: 28px 22px; }
  .hero-ctas { flex-direction: column; align-items: center; }
}

/* ── Company Registration Band ──────────────────────────────────────────── */
.reg-band {
  background: var(--navy-800);
  border-top: 1px solid rgba(184,145,47,0.18);
  padding: 28px 0;
}
.reg-band .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}
.reg-fields {
  display: flex;
  flex-wrap: wrap;
  gap: 20px 36px;
}
.reg-field {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.reg-field-label {
  font-size: 0.65rem;
  font-weight: 600;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--gold);
  opacity: 0.8;
}
.reg-field-value {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.75);
  font-weight: 400;
}
.cert-link {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  background: rgba(184,145,47,0.10);
  border: 1px solid rgba(184,145,47,0.30);
  border-radius: var(--radius-md);
  padding: 12px 18px;
  color: var(--gold-light);
  transition: background var(--transition), border-color var(--transition);
  white-space: nowrap;
  flex-shrink: 0;
}
.cert-link:hover {
  background: rgba(184,145,47,0.18);
  border-color: rgba(184,145,47,0.55);
  color: var(--gold-light);
}
.cert-link-icon {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 34px;
  height: 34px;
  background: rgba(184,145,47,0.15);
  border-radius: var(--radius-sm);
  flex-shrink: 0;
}
.cert-link-text {
  display: flex;
  flex-direction: column;
  gap: 1px;
}
.cert-link-text span {
  font-size: 0.82rem;
  font-weight: 600;
  font-family: var(--font-heading);
}
.cert-link-text small {
  font-size: 0.68rem;
  opacity: 0.65;
  letter-spacing: 0.04em;
}

@media (max-width: 840px) {
  .reg-band .container { flex-direction: column; align-items: flex-start; }
  .cert-link { width: 100%; }
}
@media (max-width: 480px) {
  .reg-fields { gap: 14px 24px; }
}
