/*
Theme Name: LTNT Business Solutions
Theme URI: https://ltntbiz.com/
Author: LTNT
Description: Premium enterprise IT consulting theme for LTNT BIZ Solutions.
Version: 2.0
Text Domain: ltnt
*/

/* ================================================================
   1. DESIGN TOKENS
================================================================ */
:root {
  /* Brand Colors */
  --navy:        #0B1F3A;
  --navy-deep:   #071526;
  --navy-mid:    #0d2847;
  --gold:        #B88932;
  --gold-light:  #D6B15E;
  --gold-dark:   #7A5818;
  --gold-glow:   rgba(184, 137, 50, 0.18);

  /* UI Colors */
  --bg:          #F7F8FA;
  --bg-alt:      #EDEEF2;
  --white:       #FFFFFF;
  --text:        #1F2937;
  --text-mid:    #374151;
  --text-muted:  #6B7280;
  --text-faint:  #9CA3AF;
  --border:      #E5E7EB;
  --border-mid:  #D1D5DB;

  /* Status */
  --green:       #10B981;
  --green-dim:   rgba(16, 185, 129, 0.15);
  --red:         #EF4444;
  --blue-bright: #3B82F6;

  /* Shadows */
  --shadow-xs:   0 1px 2px rgba(0,0,0,.06);
  --shadow-sm:   0 1px 4px rgba(0,0,0,.08), 0 1px 2px rgba(0,0,0,.05);
  --shadow-md:   0 4px 16px rgba(0,0,0,.10), 0 2px 4px rgba(0,0,0,.06);
  --shadow-lg:   0 10px 40px rgba(0,0,0,.14), 0 4px 8px rgba(0,0,0,.08);
  --shadow-xl:   0 20px 60px rgba(0,0,0,.18), 0 8px 16px rgba(0,0,0,.1);
  --shadow-gold: 0 0 0 3px rgba(184,137,50,.25);
  --shadow-navy: 0 10px 40px rgba(7,21,38,.5);

  /* Spacing */
  --sp-xs:  .5rem;
  --sp-sm:  .75rem;
  --sp-md:  1rem;
  --sp-lg:  1.5rem;
  --sp-xl:  2rem;
  --sp-2xl: 3rem;
  --sp-3xl: 5rem;
  --sp-4xl: 7rem;

  /* Radius */
  --r-sm:   4px;
  --r-md:   8px;
  --r-lg:   14px;
  --r-xl:   20px;
  --r-full: 9999px;

  /* Type */
  --font-body: 'Inter', 'Segoe UI', system-ui, sans-serif;
  --font-head: 'Plus Jakarta Sans', 'Inter', sans-serif;

  /* Motion */
  --ease:       cubic-bezier(.25,.46,.45,.94);
  --ease-out:   cubic-bezier(.0,0,.2,1);
  --ease-spring:cubic-bezier(.34,1.56,.64,1);
  --dur-fast:   150ms;
  --dur-base:   250ms;
  --dur-slow:   400ms;

  /* Layout */
  --max-w: 1200px;
  --max-w-sm: 860px;
}

/* ================================================================
   2. RESET & BASE
================================================================ */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.65;
  color: var(--text);
  background: var(--bg);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

img, video, svg { max-width: 100%; height: auto; display: block; }
a { color: var(--gold); text-decoration: none; transition: color var(--dur-base) var(--ease); }
a:hover { color: var(--gold-light); }
ul, ol { list-style: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }

/* ================================================================
   3. ACCESSIBILITY
================================================================ */
.skip-link {
  position: absolute;
  top: -100%;
  left: 1rem;
  z-index: 10000;
  background: var(--gold);
  color: var(--navy-deep);
  font-weight: 700;
  padding: .75rem 1.5rem;
  border-radius: 0 0 var(--r-md) var(--r-md);
  transition: top var(--dur-fast);
  white-space: nowrap;
}
.skip-link:focus { top: 0; color: var(--navy-deep); }

:focus-visible {
  outline: 2px solid var(--gold);
  outline-offset: 3px;
  border-radius: 2px;
}

/* ================================================================
   4. TYPOGRAPHY
================================================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-head);
  font-weight: 700;
  line-height: 1.2;
  color: var(--navy);
  letter-spacing: -.02em;
}
h1 { font-size: clamp(2.25rem, 5.5vw, 3.75rem); font-weight: 800; }
h2 { font-size: clamp(1.75rem, 3.5vw, 2.625rem); }
h3 { font-size: clamp(1.125rem, 2vw, 1.375rem); }
h4 { font-size: 1.0625rem; }
h5 { font-size: .9375rem; }

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

.lead {
  font-size: clamp(1.0625rem, 2vw, 1.25rem);
  font-weight: 400;
  line-height: 1.7;
  color: var(--text-mid);
}

/* Gradient text for hero accent */
.text-gradient {
  background: linear-gradient(135deg, var(--gold-light) 0%, var(--gold) 50%, #e6c97a 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

/* ================================================================
   5. LAYOUT UTILITIES
================================================================ */
.container {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 1.5rem;
}
.container--sm { max-width: var(--max-w-sm); }

.section { padding: var(--sp-4xl) 0; }
.section--sm { padding: var(--sp-3xl) 0; }
.section--lg { padding: 9rem 0; }

.text-center { text-align: center; }
.text-white  { color: var(--white) !important; }
.text-gold   { color: var(--gold) !important; }
.text-muted  { color: var(--text-muted) !important; }

/* Section header block */
.sec-head { margin-bottom: var(--sp-3xl); }
.sec-head.text-center .sec-divider { margin-left: auto; margin-right: auto; }

.sec-label {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-size: .6875rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--gold-dark);
  margin-bottom: .875rem;
}
.sec-label--light { color: var(--gold-light); }
.sec-label::before {
  content: '';
  display: inline-block;
  width: 24px;
  height: 2px;
  background: currentColor;
  border-radius: 2px;
}

.sec-title { margin-bottom: .875rem; }

.sec-subtitle {
  font-size: 1.0625rem;
  color: var(--text-muted);
  line-height: 1.7;
  max-width: 640px;
}
.text-center .sec-subtitle { margin: 0 auto; }

.sec-divider {
  width: 40px;
  height: 3px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: var(--r-full);
  margin: 1rem 0 1.5rem;
}

/* ================================================================
   6. BUTTONS
================================================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .875rem 1.875rem;
  font-size: .9375rem;
  font-weight: 600;
  line-height: 1;
  border-radius: var(--r-md);
  border: 1.5px solid transparent;
  cursor: pointer;
  transition: all var(--dur-base) var(--ease);
  white-space: nowrap;
  letter-spacing: -.005em;
  position: relative;
  overflow: hidden;
}
.btn::after {
  content: '';
  position: absolute;
  inset: 0;
  background: rgba(255,255,255,0);
  transition: background var(--dur-fast);
}
.btn:hover::after { background: rgba(255,255,255,.07); }

.btn-lg { padding: 1.0625rem 2.25rem; font-size: 1rem; }
.btn-sm { padding: .625rem 1.25rem; font-size: .875rem; }

/* Primary — Gold */
.btn-primary {
  background: linear-gradient(135deg, var(--gold) 0%, #c99b40 100%);
  color: var(--navy-deep);
  border-color: var(--gold);
  box-shadow: 0 2px 8px rgba(184,137,50,.3);
  font-weight: 700;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 6px 20px rgba(184,137,50,.4);
  color: var(--navy-deep);
}
.btn-primary:active { transform: translateY(0); }

/* Secondary — outline on dark */
.btn-outline-light {
  background: transparent;
  color: rgba(255,255,255,.9);
  border-color: rgba(255,255,255,.35);
}
.btn-outline-light:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(255,255,255,.7);
  color: var(--white);
  transform: translateY(-2px);
}

/* Ghost — outline on light */
.btn-outline-navy {
  background: transparent;
  color: var(--navy);
  border-color: var(--border-mid);
}
.btn-outline-navy:hover {
  background: var(--navy);
  color: var(--white);
  border-color: var(--navy);
  transform: translateY(-2px);
  box-shadow: var(--shadow-md);
}

/* ================================================================
   7. SITE HEADER & NAVIGATION
================================================================ */
.site-header {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background var(--dur-slow) var(--ease),
              box-shadow var(--dur-slow) var(--ease),
              padding var(--dur-slow) var(--ease);
}

/* Transparent on hero */
.site-header.is-transparent {
  background: transparent;
  box-shadow: none;
}

/* Solid on scroll */
.site-header.is-scrolled {
  background: rgba(7, 21, 38, .96);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  box-shadow: 0 1px 0 rgba(255,255,255,.05), 0 4px 20px rgba(0,0,0,.25);
}

.header-inner {
  display: flex;
  align-items: center;
  height: 76px;
  gap: 2rem;
}

/* Logo */
.site-logo {
  display: flex;
  align-items: center;
  gap: 1rem;
  text-decoration: none;
  flex-shrink: 0;
  background: #fff;
  padding: .9rem 1.1rem;
  border-radius: 18px;
  border: 1px solid rgba(11,31,58,.08);
  box-shadow: 0 12px 36px rgba(11,31,58,.12);
}
.site-logo img {
  display: none;
}

.logo-mark {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.25rem;
  color: var(--navy-deep);
  flex-shrink: 0;
  box-shadow: 0 2px 12px rgba(184,137,50,.35);
}

.logo-text { display: flex; flex-direction: column; line-height: 1.05; }
.site-header .logo-name {
  font-family: var(--font-head);
  font-size: 1.55rem;
  font-weight: 900;
  color: var(--navy-deep);
  letter-spacing: -.04em;
  text-transform: uppercase;
}
.site-header .logo-sub {
  font-size: .78rem;
  font-weight: 700;
  color: #B88932;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-top: .15rem;
}

/* Nav */
.primary-nav {
  display: flex;
  align-items: center;
  gap: .125rem;
  margin-left: auto;
}

.primary-nav > li { position: relative; }

.primary-nav > li > a {
  display: flex;
  align-items: center;
  gap: .3rem;
  padding: .5rem .875rem;
  font-size: .875rem;
  font-weight: 600;
  color: rgba(255,255,255,.82);
  border-radius: var(--r-md);
  transition: color var(--dur-base), background var(--dur-base);
  white-space: nowrap;
}
.primary-nav > li > a:hover,
.primary-nav > li.current-menu-item > a {
  color: var(--white);
  background: rgba(255,255,255,.08);
}

/* Dropdown arrow */
.primary-nav .menu-item-has-children > a::after {
  content: '';
  width: 5px;
  height: 5px;
  border-right: 1.5px solid currentColor;
  border-bottom: 1.5px solid currentColor;
  transform: rotate(45deg) translateY(-2px);
  flex-shrink: 0;
  transition: transform var(--dur-base) var(--ease);
}
.primary-nav .menu-item-has-children:hover > a::after,
.primary-nav .menu-item-has-children.is-dropdown-open > a::after {
  transform: rotate(-135deg) translateY(2px);
}

/* Dropdown */
.primary-nav .sub-menu {
  position: absolute;
  top: 100%;
  left: 50%;
  /* padding-top bridges the mouse gap so hover isn't lost */
  padding-top: 10px;
  transform: translateX(-50%) translateY(-6px);
  background: transparent;
  min-width: 260px;
  opacity: 0;
  visibility: hidden;
  pointer-events: none;
  transition: opacity var(--dur-base) var(--ease),
              transform var(--dur-base) var(--ease),
              visibility var(--dur-base);
  z-index: 200;
}
/* Inner wrapper carries the visual chrome */
.primary-nav .sub-menu::after {
  content: '';
  position: absolute;
  inset: 10px 0 0;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  box-shadow: var(--shadow-xl);
  z-index: -1;
}
.primary-nav .menu-item-has-children:hover .sub-menu,
.primary-nav .menu-item-has-children.is-dropdown-open .sub-menu {
  opacity: 1;
  visibility: visible;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.primary-nav .sub-menu::before {
  content: '';
  position: absolute;
  top: 4px;
  left: 50%;
  width: 10px;
  height: 10px;
  background: var(--white);
  border-left: 1px solid var(--border);
  border-top: 1px solid var(--border);
  transform: translateX(-50%) rotate(45deg);
  z-index: 1;
}

.primary-nav .sub-menu li a {
  display: flex;
  align-items: center;
  gap: .75rem;
  padding: .6875rem 1rem;
  font-size: .875rem;
  color: var(--text-mid);
  border-radius: var(--r-md);
  font-weight: 500;
  transition: all var(--dur-base);
}
.primary-nav .sub-menu li a i {
  width: 20px;
  text-align: center;
  color: var(--gold-dark);
  font-size: .875rem;
}
.primary-nav .sub-menu li a:hover {
  background: var(--bg);
  color: var(--navy);
}

/* Nav CTA */
.nav-cta { margin-left: .75rem; }

/* Mobile toggle */
.menu-toggle {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: .5rem;
  margin-left: auto;
  width: 40px;
  height: 40px;
}
.menu-toggle span {
  display: block;
  height: 1.5px;
  background: rgba(255,255,255,.85);
  border-radius: 2px;
  transition: all var(--dur-base) var(--ease);
}
.menu-toggle.is-open span:nth-child(1) { transform: rotate(45deg) translateY(6.5px) translateX(.5px); }
.menu-toggle.is-open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.menu-toggle.is-open span:nth-child(3) { transform: rotate(-45deg) translateY(-6.5px) translateX(.5px); }

/* ================================================================
   8. HERO
================================================================ */
.hero {
  position: relative;
  min-height: 100svh;
  display: flex;
  align-items: center;
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-mid) 100%);
  overflow: hidden;
  padding: 120px 0 80px;
}

/* Grid mesh */
.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.03) 1px, transparent 1px);
  background-size: 60px 60px;
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 60% 40%, black 30%, transparent 100%);
  mask-image: radial-gradient(ellipse 80% 80% at 60% 40%, black 30%, transparent 100%);
}

/* Gold glow */
.hero::after {
  content: '';
  position: absolute;
  top: -20%;
  right: -15%;
  width: 65%;
  height: 130%;
  background: radial-gradient(ellipse, rgba(184,137,50,.14) 0%, rgba(184,137,50,.04) 40%, transparent 70%);
  animation: glowPulse 6s ease-in-out infinite alternate;
  pointer-events: none;
}

@keyframes glowPulse {
  from { opacity: .6; transform: scale(1) translate(0,0); }
  to   { opacity: 1;  transform: scale(1.08) translate(-2%, 2%); }
}

.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
  z-index: 1;
}

/* Hero content */
.hero-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(184,137,50,.12);
  border: 1px solid rgba(184,137,50,.28);
  color: var(--gold-light);
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  padding: .4rem 1rem;
  border-radius: var(--r-full);
  margin-bottom: 1.625rem;
}
.hero-eyebrow-dot {
  width: 6px;
  height: 6px;
  background: var(--green);
  border-radius: 50%;
  animation: pulseDot 2s ease-in-out infinite;
}
@keyframes pulseDot {
  0%, 100% { opacity: 1; transform: scale(1); }
  50% { opacity: .5; transform: scale(1.4); }
}

.hero-title {
  color: var(--white);
  margin-bottom: 1.5rem;
  font-weight: 800;
  letter-spacing: -.03em;
}

.hero-desc {
  font-size: clamp(1rem, 1.8vw, 1.125rem);
  color: rgba(255,255,255,.72);
  line-height: 1.75;
  margin-bottom: 2.5rem;
  max-width: 540px;
}

.hero-actions {
  display: flex;
  align-items: center;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}

.hero-trust {
  display: flex;
  flex-wrap: wrap;
  gap: .5rem;
}
.hero-trust-tag {
  display: inline-flex;
  align-items: center;
  gap: .4rem;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  color: rgba(255,255,255,.7);
  font-size: .775rem;
  font-weight: 500;
  padding: .35rem .8rem;
  border-radius: var(--r-full);
}
.hero-trust-tag i { color: var(--gold); font-size: .75rem; }

/* ----------------------------------------------------------------
   Hero Dashboard (Right Column)
---------------------------------------------------------------- */
.hero-visual {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1rem 1rem 1rem 0;
}

/* Base glass card */
.hd-card {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--r-lg);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 1.5rem;
  transition: transform var(--dur-slow) var(--ease);
}
.hd-card:hover { transform: translateY(-3px); }

/* Primary card */
.hd-card--primary { padding: 1.625rem; }

.hd-header {
  display: flex;
  align-items: center;
  gap: .625rem;
  margin-bottom: 1.25rem;
}
.hd-indicator {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 8px var(--green);
  animation: pulseDot 2.5s ease-in-out infinite;
  flex-shrink: 0;
}
.hd-label {
  font-size: .75rem;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  text-transform: uppercase;
  letter-spacing: .08em;
  flex: 1;
}
.hd-status {
  font-size: .65rem;
  font-weight: 700;
  color: var(--green);
  background: var(--green-dim);
  padding: .2rem .5rem;
  border-radius: var(--r-full);
  letter-spacing: .05em;
}

.hd-metrics {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .75rem;
  margin-bottom: 1.25rem;
  padding-bottom: 1.25rem;
  border-bottom: 1px solid rgba(255,255,255,.08);
}
.hd-metric {}
.hd-metric-val {
  font-family: var(--font-head);
  font-size: 1.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: .2rem;
}
.hd-metric-val span { font-size: .9rem; color: var(--gold); }
.hd-metric-lbl { font-size: .6875rem; color: rgba(255,255,255,.5); font-weight: 500; }

.hd-bars { display: flex; flex-direction: column; gap: .625rem; }
.hd-bar-row {
  display: grid;
  grid-template-columns: 1fr auto;
  align-items: center;
  gap: .5rem;
}
.hd-bar-label { font-size: .6875rem; color: rgba(255,255,255,.6); }
.hd-bar-pct   { font-size: .6875rem; color: rgba(255,255,255,.5); font-weight: 600; width: 2.5rem; text-align: right; }
.hd-bar-track {
  grid-column: 1 / -1;
  height: 3px;
  background: rgba(255,255,255,.1);
  border-radius: var(--r-full);
  overflow: hidden;
}
.hd-bar-fill {
  height: 100%;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: var(--r-full);
  width: 0;
  transition: width 1.2s var(--ease-out) .4s;
}
.hd-bar-fill--green {
  background: linear-gradient(90deg, var(--green) 0%, #34d399 100%);
}

/* Secondary row */
.hd-row { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }

.hd-card--sm { padding: 1rem 1.25rem; }
.hd-card-icon {
  width: 36px; height: 36px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: .875rem;
  color: var(--navy-deep);
  margin-bottom: .75rem;
}
.hd-card-title { font-size: .875rem; font-weight: 700; color: var(--white); margin-bottom: .2rem; }
.hd-card-sub   { font-size: .725rem; color: rgba(255,255,255,.5); }

/* Compliance grid */
.hd-comp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .5rem;
}
.hd-comp-item {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .725rem;
  color: rgba(255,255,255,.75);
  font-weight: 500;
}
.hd-comp-item i { color: var(--green); font-size: .65rem; }

/* Floating badge */
.hd-float-badge {
  position: absolute;
  bottom: -12px;
  right: -12px;
  display: flex;
  align-items: center;
  gap: .5rem;
  background: linear-gradient(135deg, var(--gold) 0%, #c99b40 100%);
  color: var(--navy-deep);
  font-size: .75rem;
  font-weight: 800;
  padding: .6rem 1rem;
  border-radius: var(--r-full);
  box-shadow: 0 4px 20px rgba(184,137,50,.5);
  letter-spacing: .02em;
  z-index: 2;
}

/* ================================================================
   9. TRUST / MARQUEE BAR
================================================================ */
.trust-bar {
  background: var(--navy-deep);
  border-top: 1px solid rgba(255,255,255,.06);
  border-bottom: 1px solid rgba(255,255,255,.06);
  padding: 1.25rem 0;
  overflow: hidden;
}

.marquee-track {
  display: flex;
  gap: 0;
  width: max-content;
  animation: marquee 30s linear infinite;
}
.marquee-track:hover { animation-play-state: paused; }

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

.marquee-item {
  display: inline-flex;
  align-items: center;
  gap: .625rem;
  padding: 0 2.5rem;
  font-size: .8125rem;
  font-weight: 600;
  color: rgba(255,255,255,.55);
  white-space: nowrap;
  border-right: 1px solid rgba(255,255,255,.07);
  transition: color var(--dur-base);
}
.marquee-item i { color: var(--gold); font-size: .9rem; }
.marquee-item:last-child { border-right: none; }

/* ================================================================
   10. SERVICES SECTION
================================================================ */
.services-section { background: var(--white); }

.services-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.25rem;
}

.service-card {
  background: var(--bg);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem 1.75rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  transition: all var(--dur-slow) var(--ease);
  position: relative;
  overflow: hidden;
}
.service-card::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(184,137,50,.04) 0%, transparent 60%);
  opacity: 0;
  transition: opacity var(--dur-slow);
}
.service-card:hover {
  border-color: rgba(184,137,50,.4);
  box-shadow: var(--shadow-lg), var(--shadow-gold);
  transform: translateY(-6px);
  background: var(--white);
}
.service-card:hover::before { opacity: 1; }

/* Span 2 cols for last item when grid is 3 and total is 5 */
.services-grid .service-card:nth-child(4) { grid-column: span 1; }

.service-icon {
  width: 54px; height: 54px;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%);
  border-radius: var(--r-lg);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.375rem;
  color: var(--gold);
  flex-shrink: 0;
  transition: transform var(--dur-slow) var(--ease-spring);
}
.service-card:hover .service-icon { transform: scale(1.1) rotate(-3deg); }

.service-card h3 { color: var(--navy); font-size: 1.125rem; margin-bottom: .25rem; }
.service-card p  { color: var(--text-muted); font-size: .9375rem; flex: 1; }

.service-outcomes {
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.service-outcomes li {
  display: flex;
  align-items: baseline;
  gap: .5rem;
  font-size: .875rem;
  color: var(--text);
  padding: .25rem 0;
}
.service-outcomes li::before {
  content: '';
  width: 5px; height: 5px;
  background: var(--gold);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: .35rem;
}

.service-link {
  display: inline-flex;
  align-items: center;
  gap: .375rem;
  font-size: .875rem;
  font-weight: 700;
  color: var(--gold-dark);
  margin-top: .25rem;
  transition: gap var(--dur-base);
}
.service-link i { font-size: .75rem; transition: transform var(--dur-base) var(--ease-spring); }
.service-card:hover .service-link i { transform: translateX(4px); }

/* ================================================================
   11. STATS SECTION
================================================================ */
.stats-section {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  padding: 4rem 0;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
}

.stat-item {
  text-align: center;
  padding: 1.5rem 1rem;
  border-right: 1px solid rgba(255,255,255,.07);
}
.stat-item:last-child { border-right: none; }

.stat-num {
  font-family: var(--font-head);
  font-size: clamp(2rem, 4vw, 3rem);
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: .375rem;
}
.stat-num .accent { color: var(--gold); }
.stat-label {
  font-size: .8125rem;
  color: rgba(255,255,255,.55);
  font-weight: 500;
}

/* ================================================================
   12. WHY LTNT SECTION
================================================================ */
.why-section { background: var(--bg); }

.why-inner {
  display: grid;
  grid-template-columns: 5fr 4fr;
  gap: 5rem;
  align-items: center;
}

.why-points { margin-top: 2rem; display: flex; flex-direction: column; gap: 1.5rem; }

.why-point {
  display: flex;
  gap: 1.25rem;
  padding: 1.25rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  transition: all var(--dur-base);
}
.why-point:hover {
  border-color: rgba(184,137,50,.3);
  box-shadow: var(--shadow-md);
  transform: translateX(4px);
}

.why-point-icon {
  width: 44px; height: 44px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.125rem;
  color: var(--navy-deep);
  flex-shrink: 0;
}
.why-point h4 { color: var(--navy); margin-bottom: .2rem; font-size: 1rem; }
.why-point p  { color: var(--text-muted); font-size: .9rem; }

/* Certifications panel */
.certs-panel {
  background: linear-gradient(160deg, var(--navy) 0%, var(--navy-deep) 100%);
  border-radius: var(--r-xl);
  padding: 2.5rem;
  box-shadow: var(--shadow-navy);
}
.certs-panel-title {
  color: rgba(255,255,255,.6);
  font-size: .75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1.5rem;
  text-align: center;
}
.certs-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: .75rem;
}
.cert-badge {
  background: rgba(255,255,255,.05);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-md);
  padding: 1rem;
  text-align: center;
  transition: all var(--dur-base);
}
.cert-badge:hover {
  background: rgba(184,137,50,.1);
  border-color: rgba(184,137,50,.25);
}
.cert-badge i { font-size: 1.5rem; color: var(--gold); margin-bottom: .5rem; display: block; }
.cert-badge-name { font-size: .8125rem; font-weight: 700; color: var(--white); display: block; }
.cert-badge-desc { font-size: .7rem; color: rgba(255,255,255,.45); margin-top: .15rem; display: block; }

.certs-tagline {
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid rgba(255,255,255,.07);
  text-align: center;
  font-size: .8125rem;
  color: rgba(255,255,255,.5);
}

/* ================================================================
   13. INDUSTRIES SECTION
================================================================ */
.industries-section { background: var(--navy); }

.industries-section .sec-label--light {}
.industries-section .sec-title { color: var(--white); }
.industries-section .sec-subtitle { color: rgba(255,255,255,.65); }

.industries-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.25rem;
}

.ind-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-xl);
  padding: 2rem 1.5rem;
  text-align: center;
  transition: all var(--dur-slow) var(--ease);
  cursor: default;
}
.ind-card:hover {
  background: rgba(184,137,50,.1);
  border-color: rgba(184,137,50,.3);
  transform: translateY(-6px);
  box-shadow: 0 20px 40px rgba(0,0,0,.3);
}

.ind-icon {
  width: 68px; height: 68px;
  background: rgba(184,137,50,.1);
  border: 1px solid rgba(184,137,50,.2);
  border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  font-size: 1.875rem;
  color: var(--gold);
  margin: 0 auto 1.25rem;
  transition: all var(--dur-slow) var(--ease);
}
.ind-card:hover .ind-icon {
  background: rgba(184,137,50,.18);
  transform: scale(1.1);
}

.ind-card h3 { color: var(--white); font-size: 1.0625rem; margin-bottom: .5rem; }
.ind-card p  { color: rgba(255,255,255,.6); font-size: .875rem; line-height: 1.6; }

.ind-tags {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: .375rem;
  margin-top: .875rem;
}
.ind-tag {
  font-size: .675rem;
  font-weight: 600;
  color: rgba(255,255,255,.5);
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.08);
  padding: .2rem .5rem;
  border-radius: var(--r-full);
}

/* ================================================================
   14. PROCESS SECTION
================================================================ */
.process-section { background: var(--white); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 12px);
  right: calc(12.5% + 12px);
  height: 1px;
  background: linear-gradient(90deg, var(--gold) 0%, var(--gold-light) 100%);
}

.proc-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  position: relative;
}

.proc-num {
  width: 72px; height: 72px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--gold);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-head);
  font-size: 1.375rem;
  font-weight: 800;
  color: var(--gold);
  margin-bottom: 1.5rem;
  position: relative;
  z-index: 1;
  box-shadow: 0 0 0 6px var(--white), var(--shadow-sm);
  transition: all var(--dur-slow) var(--ease-spring);
}
.proc-step:hover .proc-num {
  background: var(--gold);
  color: var(--navy-deep);
  transform: scale(1.08);
}

.proc-step h3 { color: var(--navy); margin-bottom: .5rem; font-size: 1rem; }
.proc-step p  { color: var(--text-muted); font-size: .875rem; line-height: 1.6; }

/* ================================================================
   15. CAPABILITIES SECTION
================================================================ */
.capabilities-section {
  background: linear-gradient(160deg, var(--navy-deep) 0%, #0e2a47 60%, var(--navy) 100%);
}

.cap-sec-label { color: var(--gold-light); }
.cap-sec-title { color: var(--white); }

.cap-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: start;
}

.cap-list { display: flex; flex-direction: column; gap: .875rem; margin-top: 1.75rem; }

.cap-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
  padding: 1.25rem;
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.07);
  border-radius: var(--r-lg);
  transition: all var(--dur-base);
}
.cap-item:hover {
  background: rgba(184,137,50,.08);
  border-color: rgba(184,137,50,.18);
}
.cap-item-icon {
  width: 40px; height: 40px;
  background: rgba(184,137,50,.12);
  border: 1px solid rgba(184,137,50,.2);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  flex-shrink: 0;
}
.cap-item h4 { color: var(--white); font-size: .9375rem; margin-bottom: .2rem; }
.cap-item p  { color: rgba(255,255,255,.55); font-size: .875rem; }

/* Compliance frameworks */
.comp-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: .875rem;
  margin-top: 1.75rem;
}
.comp-card {
  background: rgba(255,255,255,.04);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-lg);
  padding: 1.25rem 1rem;
  text-align: center;
  transition: all var(--dur-base);
}
.comp-card:hover {
  background: rgba(184,137,50,.1);
  border-color: rgba(184,137,50,.22);
  transform: translateY(-3px);
}
.comp-card i { font-size: 1.625rem; color: var(--gold); display: block; margin-bottom: .5rem; }
.comp-card-name { font-size: .875rem; font-weight: 700; color: var(--white); display: block; }
.comp-card-desc { font-size: .725rem; color: rgba(255,255,255,.45); margin-top: .2rem; display: block; }

/* ================================================================
   16. TESTIMONIALS SECTION
================================================================ */
.testimonials-section { background: var(--bg); }

.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.5rem;
}

.testi-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  padding: 2rem;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  transition: all var(--dur-slow) var(--ease);
  position: relative;
}
.testi-card:hover {
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
  border-color: rgba(184,137,50,.25);
}

.testi-quote-icon {
  position: absolute;
  top: 1.5rem;
  right: 1.75rem;
  font-size: 3rem;
  color: var(--border);
  line-height: 1;
  font-family: Georgia, serif;
}

.testi-stars {
  display: flex;
  gap: .2rem;
  color: var(--gold);
  font-size: .875rem;
}

.testi-text {
  font-size: .9375rem;
  line-height: 1.75;
  color: var(--text-mid);
  font-style: italic;
  flex: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: .875rem;
  padding-top: 1rem;
  border-top: 1px solid var(--border);
}
.testi-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem;
  color: var(--gold);
  font-weight: 700;
  flex-shrink: 0;
}
.testi-name { font-weight: 700; color: var(--navy); font-size: .9375rem; }
.testi-role { font-size: .8rem; color: var(--text-muted); margin-top: .1rem; }

/* ================================================================
   17. CTA SECTION
================================================================ */
.cta-section { background: var(--bg); }

.cta-box {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 50%, var(--navy-mid) 100%);
  border-radius: var(--r-xl);
  padding: 5rem 3rem;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-box::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 48px 48px;
}
.cta-box::after {
  content: '';
  position: absolute;
  top: -40%;
  left: 50%;
  transform: translateX(-50%);
  width: 80%;
  height: 180%;
  background: radial-gradient(ellipse, rgba(184,137,50,.12) 0%, transparent 65%);
  pointer-events: none;
}

.cta-inner { position: relative; z-index: 1; }
.cta-box .sec-label--light { display: block; margin-bottom: .75rem; }
.cta-box h2 { color: var(--white); margin-bottom: 1rem; }
.cta-box p  { color: rgba(255,255,255,.7); font-size: 1.0625rem; max-width: 580px; margin: 0 auto 2.5rem; }

.cta-actions {
  display: flex;
  justify-content: center;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-guarantees {
  display: flex;
  justify-content: center;
  gap: 2rem;
  margin-top: 2rem;
  flex-wrap: wrap;
}
.cta-guarantee {
  display: flex;
  align-items: center;
  gap: .4rem;
  font-size: .8125rem;
  color: rgba(255,255,255,.55);
}
.cta-guarantee i { color: var(--green); }

/* ================================================================
   18. FOOTER
================================================================ */
.site-footer { background: var(--navy-deep); }

.footer-top {
  display: grid;
  grid-template-columns: 2.2fr 1fr 1fr 1.2fr;
  gap: 3rem;
  padding: 4.5rem 0 3.5rem;
  border-bottom: 1px solid rgba(255,255,255,.07);
}

.footer-brand .site-logo { margin-bottom: 1rem; }
.footer-brand .logo-name {
  font-family: var(--font-head);
  font-size: 1.375rem;
  font-weight: 900;
  color: var(--navy-deep);
  letter-spacing: -.04em;
  text-transform: uppercase;
}
.footer-brand .logo-sub {
  font-size: .78rem;
  font-weight: 700;
  color: #B88932;
  text-transform: uppercase;
  letter-spacing: .14em;
  margin-top: .15rem;
  margin-bottom: 1rem;
}

.footer-desc {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  line-height: 1.75;
  margin-bottom: 1.5rem;
}

.footer-socials { display: flex; gap: .625rem; }
.f-social {
  width: 36px; height: 36px;
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.09);
  border-radius: var(--r-md);
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,.55);
  font-size: .875rem;
  transition: all var(--dur-base);
}
.f-social:hover {
  background: var(--gold);
  border-color: var(--gold);
  color: var(--navy-deep);
  transform: translateY(-2px);
}

.footer-col h5 {
  color: var(--white);
  font-size: .8125rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 1.25rem;
}
.footer-links { display: flex; flex-direction: column; gap: .625rem; }
.footer-links a {
  font-size: .875rem;
  color: rgba(255,255,255,.55);
  transition: color var(--dur-base);
  display: flex; align-items: center; gap: .4rem;
}
.footer-links a:hover { color: var(--gold-light); }

.f-contact-list { display: flex; flex-direction: column; gap: .875rem; }
.f-contact-item {
  display: flex;
  align-items: flex-start;
  gap: .75rem;
  font-size: .875rem;
  color: rgba(255,255,255,.55);
}
.f-contact-item i { color: var(--gold); font-size: .875rem; flex-shrink: 0; margin-top: .15rem; }
.f-contact-item a { color: rgba(255,255,255,.55); }
.f-contact-item a:hover { color: var(--gold-light); }

.footer-bottom {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.5rem 0;
  gap: 1rem;
  flex-wrap: wrap;
}
.footer-bottom-copy { font-size: .8125rem; color: rgba(255,255,255,.35); }
.footer-bottom-links { display: flex; gap: 1.5rem; }
.footer-bottom-links a { font-size: .8125rem; color: rgba(255,255,255,.35); transition: color var(--dur-base); }
.footer-bottom-links a:hover { color: var(--gold-light); }

/* ================================================================
   19. INNER PAGE TEMPLATES
================================================================ */
.page-banner {
  background: linear-gradient(135deg, var(--navy-deep) 0%, var(--navy) 100%);
  padding: 8rem 0 4rem;
  text-align: center;
}
.page-banner h1 { color: var(--white); margin-bottom: .875rem; }
.page-banner p  { color: rgba(255,255,255,.7); font-size: 1.125rem; max-width: 600px; margin: 0 auto; }

.page-body {
  max-width: var(--max-w-sm);
  margin: 4rem auto;
  padding: 0 1.5rem;
}

/* ================================================================
   20. SCROLL REVEAL ANIMATIONS
================================================================ */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s var(--ease-out), transform .65s var(--ease-out);
}
.reveal.is-visible { opacity: 1; transform: translateY(0); }

.reveal-delay-1 { transition-delay: .1s; }
.reveal-delay-2 { transition-delay: .2s; }
.reveal-delay-3 { transition-delay: .3s; }
.reveal-delay-4 { transition-delay: .4s; }

/* ================================================================
   21. RESPONSIVE
================================================================ */
@media (max-width: 1080px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { display: none; }
  .why-inner { grid-template-columns: 1fr; gap: 3rem; }
  .cap-inner { grid-template-columns: 1fr; gap: 3rem; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
  .services-grid { grid-template-columns: repeat(2, 1fr); }
  .stats-grid { grid-template-columns: repeat(3, 1fr); }
  .stats-grid .stat-item:last-child,
  .stats-grid .stat-item:nth-last-child(2) { border-right: none; }
}

@media (max-width: 768px) {
  h1 { font-size: 2.125rem; }
  h2 { font-size: 1.625rem; }
  .section { padding: 4rem 0; }

  .primary-nav, .nav-cta { display: none; }
  .primary-nav.is-open {
    display: flex;
    flex-direction: column;
    position: fixed;
    top: 76px; left: 0; right: 0; bottom: 0;
    background: var(--navy-deep);
    padding: 1.5rem;
    z-index: 999;
    overflow-y: auto;
    gap: .25rem;
  }
  .primary-nav.is-open > li > a {
    color: rgba(255,255,255,.85);
    padding: .875rem 1rem;
    font-size: 1rem;
    border-bottom: 1px solid rgba(255,255,255,.06);
  }
  .primary-nav.is-open .sub-menu {
    position: static;
    opacity: 1;
    visibility: visible;
    pointer-events: auto;
    transform: none;
    box-shadow: none;
    background: rgba(255,255,255,.04);
    border: none;
    border-radius: 0;
    padding-left: 1rem;
  }
  .primary-nav.is-open .sub-menu::before { display: none; }
  .primary-nav.is-open .sub-menu li a { color: rgba(255,255,255,.65); }

  .menu-toggle { display: flex; }
  .header-inner { position: relative; }

  .services-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item { border-right: none; border-bottom: 1px solid rgba(255,255,255,.07); }
  .stat-item:last-child { border-bottom: none; }
  .industries-grid { grid-template-columns: repeat(2, 1fr); }
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid::before { display: none; }
  .testimonials-grid { grid-template-columns: 1fr; }
  .comp-grid { grid-template-columns: repeat(2, 1fr); }
  .footer-top { grid-template-columns: 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .cta-box { padding: 3rem 1.5rem; }
  .cta-guarantees { gap: 1rem; }
}

@media (max-width: 480px) {
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .industries-grid { grid-template-columns: 1fr; }
  .process-grid { grid-template-columns: 1fr; }
  .certs-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: 1fr 1fr; }
  .comp-grid { grid-template-columns: 1fr 1fr; }
}

/* ================================================================
   SERVICES PAGE
================================================================ */

/* Page hero */
.svc-hero {
  background: linear-gradient(155deg, var(--navy-deep) 0%, var(--navy) 55%, var(--navy-mid) 100%);
  padding: 9rem 0 5rem;
  position: relative;
  overflow: hidden;
}
.svc-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,.025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,.025) 1px, transparent 1px);
  background-size: 56px 56px;
  -webkit-mask-image: radial-gradient(ellipse 70% 90% at 50% 50%, black 20%, transparent 100%);
  mask-image: radial-gradient(ellipse 70% 90% at 50% 50%, black 20%, transparent 100%);
}
.svc-hero::after {
  content: '';
  position: absolute;
  top: -30%;
  right: -10%;
  width: 55%;
  height: 160%;
  background: radial-gradient(ellipse, rgba(184,137,50,.12) 0%, transparent 65%);
  pointer-events: none;
}
.svc-hero-inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.svc-hero h1 { color: var(--white); margin-bottom: 1.125rem; }
.svc-hero .lead { color: rgba(255,255,255,.72); margin-bottom: 2rem; }
.svc-hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; }

.svc-hero-stats {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1px;
  background: rgba(255,255,255,.08);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--r-xl);
  overflow: hidden;
}
.svc-hero-stat {
  background: rgba(255,255,255,.04);
  padding: 1.75rem 1.5rem;
  text-align: center;
  backdrop-filter: blur(12px);
  transition: background var(--dur-base);
}
.svc-hero-stat:hover { background: rgba(184,137,50,.1); }
.svc-hero-stat-num {
  font-family: var(--font-head);
  font-size: 2.25rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
  margin-bottom: .3rem;
}
.svc-hero-stat-num .accent { color: var(--gold); }
.svc-hero-stat-lbl {
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  font-weight: 500;
  line-height: 1.4;
}

/* Quick-nav cards */
.svc-nav { background: var(--white); border-bottom: 1px solid var(--border); }
.svc-nav-inner {
  display: flex;
  gap: 0;
  overflow-x: auto;
  scrollbar-width: none;
  -ms-overflow-style: none;
}
.svc-nav-inner::-webkit-scrollbar { display: none; }
.svc-nav-link {
  display: flex;
  align-items: center;
  gap: .625rem;
  padding: 1.125rem 1.5rem;
  font-size: .875rem;
  font-weight: 600;
  color: var(--text-muted);
  border-bottom: 2px solid transparent;
  white-space: nowrap;
  transition: all var(--dur-base);
  flex-shrink: 0;
}
.svc-nav-link i { font-size: .875rem; color: var(--text-faint); transition: color var(--dur-base); }
.svc-nav-link:hover {
  color: var(--navy);
  border-bottom-color: var(--gold);
}
.svc-nav-link:hover i { color: var(--gold-dark); }

/* Service detail sections */
.svc-detail {
  padding: 6rem 0;
}
.svc-detail--alt { background: var(--bg); }
.svc-detail--dark {
  background: linear-gradient(160deg, var(--navy-deep) 0%, var(--navy) 100%);
}

.svc-detail-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: start;
}
.svc-detail-inner.flip > :first-child { order: 2; }
.svc-detail-inner.flip > :last-child  { order: 1; }

/* Service content side */
.svc-detail-icon {
  width: 64px;
  height: 64px;
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%);
  border-radius: var(--r-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.625rem;
  color: var(--gold);
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-md);
}
.svc-detail--dark .svc-detail-icon {
  background: rgba(184,137,50,.15);
  border: 1px solid rgba(184,137,50,.25);
}

.svc-detail-tag {
  display: inline-block;
  font-size: .675rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--gold-dark);
  background: rgba(184,137,50,.1);
  border: 1px solid rgba(184,137,50,.2);
  padding: .3rem .75rem;
  border-radius: var(--r-full);
  margin-bottom: 1rem;
}
.svc-detail--dark .svc-detail-tag {
  color: var(--gold-light);
  background: rgba(184,137,50,.12);
  border-color: rgba(184,137,50,.25);
}

.svc-detail h2 { margin-bottom: 1rem; }
.svc-detail--dark h2 { color: var(--white); }

.svc-detail .lead { margin-bottom: 1.5rem; }
.svc-detail--dark .lead { color: rgba(255,255,255,.7); }

.svc-detail-body {
  font-size: .9375rem;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 1.75rem;
}
.svc-detail--dark .svc-detail-body { color: rgba(255,255,255,.6); }

.svc-detail-action { margin-top: .5rem; }

/* Who it's for tags */
.svc-who {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  margin-top: 1.5rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border);
}
.svc-detail--dark .svc-who { border-top-color: rgba(255,255,255,.08); }
.svc-who-label {
  font-size: .75rem;
  font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: .08em;
  width: 100%;
  margin-bottom: .25rem;
}
.svc-detail--dark .svc-who-label { color: rgba(255,255,255,.45); }
.svc-who-tag {
  font-size: .775rem;
  font-weight: 500;
  color: var(--text-mid);
  background: var(--bg-alt);
  border: 1px solid var(--border);
  padding: .3rem .7rem;
  border-radius: var(--r-full);
}
.svc-detail--dark .svc-who-tag {
  color: rgba(255,255,255,.65);
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.08);
}

/* Deliverables panel */
.svc-panel {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-md);
}
.svc-detail--alt .svc-panel { background: var(--white); }
.svc-detail--dark .svc-panel {
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.1);
}

.svc-panel-head {
  background: linear-gradient(135deg, var(--navy) 0%, #1a3a5c 100%);
  padding: 1.25rem 1.5rem;
}
.svc-detail--dark .svc-panel-head {
  background: rgba(184,137,50,.15);
  border-bottom: 1px solid rgba(184,137,50,.2);
}
.svc-panel-head h4 {
  color: var(--white);
  font-size: .9375rem;
  margin-bottom: 0;
}

.svc-panel-body { padding: 1.25rem 1.5rem; }

.svc-deliverables { display: flex; flex-direction: column; gap: 0; }
.svc-deliverable {
  display: flex;
  align-items: flex-start;
  gap: .875rem;
  padding: .875rem 0;
  border-bottom: 1px solid var(--border);
}
.svc-detail--dark .svc-deliverable { border-bottom-color: rgba(255,255,255,.07); }
.svc-deliverable:last-child { border-bottom: none; padding-bottom: 0; }
.svc-deliverable-icon {
  width: 32px;
  height: 32px;
  background: linear-gradient(135deg, var(--gold) 0%, var(--gold-light) 100%);
  border-radius: var(--r-sm);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  color: var(--navy-deep);
  flex-shrink: 0;
  margin-top: .1rem;
}
.svc-deliverable h5 {
  font-size: .875rem;
  color: var(--navy);
  margin-bottom: .15rem;
}
.svc-detail--dark .svc-deliverable h5 { color: var(--white); }
.svc-deliverable p {
  font-size: .8rem;
  color: var(--text-muted);
  margin: 0;
  line-height: 1.5;
}
.svc-detail--dark .svc-deliverable p { color: rgba(255,255,255,.5); }

.svc-panel-cta {
  margin: 1.25rem 1.5rem 1.5rem;
  display: flex;
  flex-direction: column;
  gap: .625rem;
}

/* Frameworks/tools strip inside a panel */
.svc-tools {
  display: flex;
  flex-wrap: wrap;
  gap: .4rem;
  padding: 1rem 1.5rem 1.25rem;
  border-top: 1px solid var(--border);
}
.svc-detail--dark .svc-tools { border-top-color: rgba(255,255,255,.07); }
.svc-tool-tag {
  font-size: .7rem;
  font-weight: 600;
  color: var(--text-muted);
  background: var(--bg);
  border: 1px solid var(--border);
  padding: .25rem .6rem;
  border-radius: var(--r-full);
}
.svc-detail--dark .svc-tool-tag {
  color: rgba(255,255,255,.55);
  background: rgba(255,255,255,.05);
  border-color: rgba(255,255,255,.08);
}

/* Services page CTA */
.svc-cta { background: var(--bg); }

/* Responsive — services page */
@media (max-width: 1024px) {
  .svc-hero-inner { grid-template-columns: 1fr; }
  .svc-hero-stats { max-width: 480px; }
  .svc-detail-inner { grid-template-columns: 1fr; gap: 2.5rem; }
  .svc-detail-inner.flip > :first-child { order: unset; }
  .svc-detail-inner.flip > :last-child  { order: unset; }
}
@media (max-width: 640px) {
  .svc-hero { padding: 7rem 0 3.5rem; }
  .svc-hero-stats { grid-template-columns: 1fr 1fr; }
  .svc-detail { padding: 4rem 0; }
}
