/* ============================================
   ROOT & BRAND VARIABLES
============================================ */
:root {
  --navy:        #0C1A2E;
  --gold:        #D4AF37;
  --neon-white:  #F0FAFF;
  --white:       #FFFFFF;
  --text-dark:   #0C1A2E;
  --text-muted:  #6B7280;
  --border:      #E5E7EB;
  --font:        'Plus Jakarta Sans', system-ui, sans-serif;
  --max-w:       1280px;
  --section-py:  clamp(64px, 9vw, 120px);
  --container-px:clamp(20px, 5vw, 80px);
}

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

body {
  font-family: var(--font);
  background: var(--navy);
  color: var(--neon-white);
  font-size: 16px;
  line-height: 1.7;
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

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

/* ============================================
   TYPOGRAPHY
============================================ */
h1 {
  font-size: clamp(38px, 5vw, 68px);
  font-weight: 800;
  letter-spacing: -1.5px;
  line-height: 1.08;
}
h2 {
  font-size: clamp(28px, 3.5vw, 46px);
  font-weight: 700;
  letter-spacing: -1px;
  line-height: 1.18;
}
h3 {
  font-size: clamp(18px, 2vw, 24px);
  font-weight: 700;
  line-height: 1.3;
}

.eyebrow {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-weight: 700;
  color: var(--gold);
}

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

.section-py { padding-block: var(--section-py); }

/* ============================================
   FADE-UP ANIMATION
============================================ */
.fade-up {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}
.fade-up.visible {
  opacity: 1;
  transform: translateY(0);
}

/* ============================================
   BUTTONS
============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 8px 18px;
  border-radius: 6px;
  font-size: 13px;
  font-weight: 600;
  font-family: var(--font);
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, color 0.2s, opacity 0.2s;
  white-space: nowrap;
}
.btn--gold {
  background: var(--gold);
  color: var(--navy);
  border: 1px solid transparent;
}
.btn--gold:hover { background: #c9a227; }

.btn--outline-gold {
  background: transparent;
  color: var(--gold);
  border: 1px solid rgba(212,175,55,0.5);
}
.btn--outline-gold:hover { background: rgba(212,175,55,0.1); }

.btn--lg {
  padding: 14px 32px;
  font-size: 15px;
  border-radius: 8px;
}
.btn--ghost {
  background: transparent;
  color: rgba(240,250,255,0.7);
  border: 1px solid rgba(240,250,255,0.12);
}
.btn--ghost:hover {
  color: var(--neon-white);
  border-color: rgba(240,250,255,0.3);
}

/* ============================================
   NAVIGATION
============================================ */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  height: 72px;
  z-index: 1000;
  background: rgba(12,26,46,0.92);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid rgba(212,175,55,0.15);
  transition: box-shadow 0.3s ease;
}
.nav.scrolled { box-shadow: 0 4px 30px rgba(0,0,0,0.4); }

.nav__inner {
  height: 72px;
  display: flex;
  align-items: center;
  gap: 32px;
}

/* Brand */
.nav__brand {
  display: flex;
  align-items: center;
  gap: 10px;
  flex-shrink: 0;
}
.nav__wordmark {
  font-size: 22px;
  font-weight: 700;
  color: var(--neon-white);
}

/* Links */
.nav__links {
  display: flex;
  align-items: center;
  gap: 2px;
  margin: 0 auto;
}
.nav__link {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  padding: 8px 12px;
  font-size: 14px;
  font-weight: 500;
  color: rgba(240,250,255,0.75);
  border-radius: 6px;
  transition: color 0.2s;
  white-space: nowrap;
}
.nav__link:hover,
.nav__link.active,
.has-dropdown:hover > .nav__link { color: var(--gold); }

.chevron {
  transition: transform 0.2s ease;
  flex-shrink: 0;
  opacity: 0.6;
}
.has-dropdown:hover .chevron,
.has-dropdown.open .chevron { transform: rotate(180deg); }

/* Dropdown */
.has-dropdown { position: relative; }

.dropdown {
  position: absolute;
  top: calc(100% + 8px);
  left: 50%;
  transform: translateX(-50%) translateY(-8px);
  background: var(--navy);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 12px;
  box-shadow: 0 20px 60px rgba(0,0,0,0.4);
  min-width: 220px;
  padding: 8px;
  opacity: 0;
  visibility: hidden;
  transition: opacity 0.2s ease, transform 0.2s ease, visibility 0.2s;
  pointer-events: none;
}
.has-dropdown:hover .dropdown,
.has-dropdown.open .dropdown {
  opacity: 1;
  visibility: visible;
  transform: translateX(-50%) translateY(0);
  pointer-events: auto;
}

.dropdown__item {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 16px;
  border-radius: 8px;
  transition: background 0.2s;
}
.dropdown__item:hover { background: rgba(212,175,55,0.08); }
.dropdown__item--disabled {
  opacity: 0.4;
  pointer-events: none;
  cursor: default;
}
.dropdown__title {
  font-size: 14px;
  font-weight: 600;
  color: var(--neon-white);
  line-height: 1.3;
}
.dropdown__desc {
  font-size: 12px;
  color: rgba(240,250,255,0.5);
  line-height: 1.4;
}

/* Nav actions */
.nav__actions {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-shrink: 0;
}

/* Hamburger */
.hamburger {
  display: none;
  flex-direction: column;
  justify-content: center;
  gap: 5px;
  padding: 6px;
  margin-left: auto;
  flex-shrink: 0;
}
.hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--gold);
  border-radius: 2px;
  transition: transform 0.3s ease, opacity 0.3s ease;
  transform-origin: center;
}
.hamburger.active span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.active span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.active span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* Mobile menu */
.mobile-menu {
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  bottom: 0;
  background: var(--navy);
  padding: 28px var(--container-px) 40px;
  display: flex;
  flex-direction: column;
  gap: 0;
  overflow-y: auto;
  z-index: 999;
  transform: translateX(100%);
  transition: transform 0.35s cubic-bezier(0.4,0,0.2,1);
}
.mobile-menu.open { transform: translateX(0); }

.mobile-menu__links {
  display: flex;
  flex-direction: column;
  flex: 1;
}
.mobile-menu__links > li > a {
  display: block;
  padding: 14px 0;
  font-size: 17px;
  font-weight: 600;
  color: var(--neon-white);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  transition: color 0.2s;
}
.mobile-menu__links > li > a:hover { color: var(--gold); }

.mobile-menu__group { padding: 4px 0; }
.mobile-menu__label {
  display: block;
  padding: 16px 0 8px;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  font-weight: 700;
}
.mobile-menu__group ul {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding-bottom: 8px;
  border-bottom: 1px solid rgba(255,255,255,0.07);
}
.mobile-menu__group ul li a {
  display: block;
  padding: 9px 14px;
  font-size: 15px;
  color: rgba(240,250,255,0.65);
  border-radius: 6px;
  transition: color 0.2s, background 0.2s;
}
.mobile-menu__group ul li a:hover {
  color: var(--gold);
  background: rgba(212,175,55,0.06);
}
.mobile-menu__group ul li a.disabled {
  opacity: 0.35;
  pointer-events: none;
}
.mobile-menu__actions {
  padding-top: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.mobile-menu__actions .btn { justify-content: center; padding: 14px; font-size: 15px; }

/* ============================================
   FOOTER
============================================ */
.footer {
  background: var(--navy);
  border-top: 1px solid rgba(212,175,55,0.2);
  padding-top: 64px;
}

.footer__grid {
  display: grid;
  grid-template-columns: 1fr 3fr;
  gap: 64px;
  align-items: start;
}

.footer__brand {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer__logo {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: 20px;
  font-weight: 700;
  color: var(--neon-white);
}

.footer__tagline {
  font-size: 14px;
  color: rgba(255,255,255,0.5);
  line-height: 1.65;
  max-width: 220px;
}

.footer__social {
  display: flex;
  gap: 8px;
  margin-top: 4px;
}

.social-icon {
  width: 36px;
  height: 36px;
  border-radius: 8px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,0.55);
  transition: border-color 0.2s, color 0.2s, background 0.2s;
}
.social-icon:hover {
  border-color: var(--gold);
  color: var(--gold);
  background: rgba(212,175,55,0.07);
}

.footer__links {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

.footer__col-title {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: var(--gold);
  font-weight: 700;
  margin-bottom: 16px;
}

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

.footer__col a {
  font-size: 14px;
  color: rgba(255,255,255,0.55);
  transition: color 0.2s;
  line-height: 1.4;
}
.footer__col a:hover { color: rgba(255,255,255,0.9); }

.footer__bottom {
  margin-top: 48px;
  border-top: 1px solid rgba(255,255,255,0.08);
  padding: 20px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.footer__bottom p { font-size: 13px; color: rgba(255,255,255,0.4); }

/* ============================================
   COMING SOON / PAGE PLACEHOLDER
============================================ */
.page-hero {
  min-height: calc(100vh - 72px);
  display: flex;
  align-items: center;
  justify-content: center;
  text-align: center;
  position: relative;
  overflow: hidden;
}

/* Background effects */
.page-hero__bg {
  position: absolute;
  inset: 0;
  pointer-events: none;
}
.page-hero__glow {
  position: absolute;
  top: -10%;
  left: 50%;
  transform: translateX(-50%);
  width: 900px;
  height: 600px;
  background: radial-gradient(ellipse, rgba(212,175,55,0.07) 0%, transparent 65%);
  border-radius: 50%;
}
.page-hero__glow-corner {
  position: absolute;
  bottom: 0;
  right: 0;
  width: 600px;
  height: 400px;
  background: radial-gradient(ellipse at bottom right, rgba(212,175,55,0.04) 0%, transparent 60%);
}
.page-hero__grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(212,175,55,0.035) 1px, transparent 1px),
    linear-gradient(90deg, rgba(212,175,55,0.035) 1px, transparent 1px);
  background-size: 72px 72px;
  mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
  -webkit-mask-image: radial-gradient(ellipse 80% 80% at 50% 50%, black 30%, transparent 100%);
}

/* Content */
.page-hero__content {
  position: relative;
  z-index: 1;
  max-width: 700px;
  padding: 60px 24px;
}

.page-hero__badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px;
  border: 1px solid rgba(212,175,55,0.3);
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  color: var(--gold);
  margin-bottom: 36px;
  background: rgba(212,175,55,0.05);
  letter-spacing: 0.3px;
}
.page-hero__badge .dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold);
  flex-shrink: 0;
  animation: pulse-dot 2.2s ease-in-out infinite;
}

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

.page-hero h1 {
  margin-bottom: 24px;
  background: linear-gradient(135deg, var(--neon-white) 0%, rgba(240,250,255,0.7) 100%);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.page-hero__divider {
  width: 56px;
  height: 2px;
  background: linear-gradient(90deg, var(--gold), rgba(212,175,55,0.3));
  margin: 0 auto 28px;
  border-radius: 2px;
}

.page-hero p {
  font-size: clamp(16px, 1.8vw, 20px);
  color: rgba(240,250,255,0.55);
  line-height: 1.7;
  margin-bottom: 44px;
}

.page-hero__actions {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* Floating decorative shapes */
.page-hero__shape {
  position: absolute;
  border: 1px solid rgba(212,175,55,0.12);
  border-radius: 50%;
  pointer-events: none;
}
.page-hero__shape--1 {
  width: 500px;
  height: 500px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  animation: rotate-slow 40s linear infinite;
}
.page-hero__shape--2 {
  width: 300px;
  height: 300px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-color: rgba(212,175,55,0.08);
  animation: rotate-slow 25s linear infinite reverse;
}
.page-hero__shape--3 {
  width: 160px;
  height: 160px;
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-color: rgba(212,175,55,0.15);
  animation: rotate-slow 15s linear infinite;
}

@keyframes rotate-slow {
  from { transform: translate(-50%, -50%) rotate(0deg); }
  to   { transform: translate(-50%, -50%) rotate(360deg); }
}

/* Page-specific hero tints */
.page-hero--about .page-hero__glow {
  background: radial-gradient(ellipse, rgba(212,175,55,0.06) 0%, transparent 65%);
}
.page-hero--contact .page-hero__glow {
  width: 700px;
  height: 500px;
}

/* ============================================
   HERO SLIDER
============================================ */
.hero {
  position: relative;
  height: 100vh;
  min-height: 640px;
  overflow: hidden;
  display: flex;
  align-items: center;
}

.hero__slides {
  position: absolute;
  inset: 0;
}

.hero__slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  transition: opacity 0.9s ease;
}
.hero__slide.active { opacity: 1; }

.hero__slide--1 { background: linear-gradient(135deg, #0C1A2E 0%, #1a2d4a 100%); }
.hero__slide--2 { background: linear-gradient(135deg, #0C1A2E 0%, #1a3525 100%); }
.hero__slide--3 { background: linear-gradient(135deg, #0C1A2E 0%, #2a1a3e 100%); }

.hero__inner {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: 1.2fr 0.8fr;
  align-items: center;
  gap: 80px;
  width: 100%;
}

/* Eyebrow chip */
.hero__eyebrow {
  display: inline-block;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.3);
  color: #D4AF37;
  padding: 6px 14px;
  border-radius: 20px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 1px;
  text-transform: uppercase;
  margin-bottom: 28px;
}

.hero__h1 {
  font-size: clamp(38px, 5vw, 62px);
  font-weight: 800;
  letter-spacing: -1.5px;
  color: #F0FAFF;
  line-height: 1.1;
  margin-bottom: 24px;
  position: relative;
  min-height: 1.1em;
}

.hero__line {
  display: block;
  position: absolute;
  top: 0; left: 0;
  opacity: 0;
  transition: opacity 0.7s ease;
  pointer-events: none;
}
.hero__line.active {
  opacity: 1;
  position: relative;
  pointer-events: auto;
}
.hero__h1 em { color: #D4AF37; font-style: normal; }

.hero__sub {
  font-size: 18px;
  color: rgba(240,250,255,0.65);
  max-width: 480px;
  line-height: 1.7;
  margin-bottom: 36px;
}

.hero__ctas { display: flex; gap: 12px; flex-wrap: wrap; }

.btn--hero-ghost {
  background: transparent;
  color: #F0FAFF;
  border: 1px solid rgba(240,250,255,0.3);
}
.btn--hero-ghost:hover {
  border-color: #D4AF37;
  color: #D4AF37;
}

/* Glassmorphism card */
.hero__card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(212,175,55,0.2);
  border-radius: 20px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  padding: 32px;
}

.hero__card-header {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 1.5px;
  color: rgba(212,175,55,0.7);
  margin-bottom: 20px;
}

.hero__metric-row {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255,255,255,0.06);
  flex-wrap: wrap;
}
.hero__metric-row--last { border-bottom: none; }

.hero__metric-icon { font-size: 18px; flex-shrink: 0; }

.hero__metric-info {
  display: flex;
  flex-direction: column;
  flex: 1;
  min-width: 0;
}
.hero__metric-label { font-size: 13px; color: rgba(255,255,255,0.5); }
.hero__metric-value { font-size: 14px; font-weight: 600; color: #F0FAFF; }

.hero__bar-wrap {
  width: 100%;
  height: 3px;
  background: rgba(212,175,55,0.15);
  border-radius: 2px;
  overflow: hidden;
}
.hero__bar {
  height: 100%;
  background: #D4AF37;
  border-radius: 2px;
  width: 0;
  transition: width 1.8s ease-out;
}
.hero__bar.animated { width: var(--w); }

/* Dot nav */
.hero__dots {
  position: absolute;
  bottom: 40px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 8px;
  align-items: center;
  z-index: 2;
}
.hero__dot {
  height: 8px;
  width: 8px;
  border-radius: 4px;
  background: rgba(255,255,255,0.3);
  transition: width 0.3s ease, background 0.3s ease;
  cursor: pointer;
  padding: 0;
}
.hero__dot.active {
  width: 24px;
  background: #D4AF37;
}

/* ============================================
   LOGO STRIP
============================================ */
.logo-strip {
  background: #FFFFFF;
  border-top: 1px solid #E5E7EB;
  border-bottom: 1px solid #E5E7EB;
  padding: 28px 0;
  overflow: hidden;
}

.logo-strip__inner {
  display: flex;
  align-items: center;
  gap: 40px;
}

.logo-strip__label {
  font-size: 12px;
  color: #6B7280;
  text-transform: uppercase;
  letter-spacing: 1px;
  white-space: nowrap;
  flex-shrink: 0;
}

.logo-strip__track-wrap {
  overflow: hidden;
  flex: 1;
  min-width: 0;
}

.logo-strip__track {
  display: flex;
  align-items: center;
  animation: scroll-strip 28s linear infinite;
  width: max-content;
}

.logo-strip__track span {
  font-size: 15px;
  font-weight: 600;
  color: #9CA3AF;
  padding: 0 40px;
  white-space: nowrap;
}

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

/* ============================================
   SECTION INTRO (shared)
============================================ */
.section-intro {
  text-align: center;
  margin-bottom: clamp(40px, 6vw, 72px);
}
.section-intro h2 { margin: 12px 0 16px; }
.section-intro__sub {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 560px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ============================================
   SOLUTIONS PREVIEW
============================================ */
.solutions { background: #FFFFFF; }
.solutions .eyebrow { color: var(--gold); }
.solutions h2 { color: var(--navy); }
.solutions .section-intro__sub { color: var(--text-muted); }

.solutions__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.sol-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, box-shadow 0.3s;
}
.sol-card:hover {
  border-color: rgba(212,175,55,0.4);
  box-shadow: 0 8px 32px rgba(0,0,0,0.06);
}

.sol-card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--dot);
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.3s ease;
}
.sol-card:hover::before { transform: scaleX(1); }

.sol-card__dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--dot);
  margin-bottom: 16px;
  box-shadow: 0 0 12px rgba(var(--dot-rgb), 0.4);
}

.sol-card__icon { font-size: 28px; margin-bottom: 14px; }

.sol-card h3 { color: var(--navy); margin-bottom: 10px; font-size: 18px; }
.sol-card p  { color: var(--text-muted); font-size: 14px; line-height: 1.65; flex: 1; margin-bottom: 20px; }

.sol-card__link {
  font-size: 14px;
  font-weight: 600;
  transition: opacity 0.2s;
}
.sol-card__link:hover { opacity: 0.75; }

/* ============================================
   TESTIMONIALS
============================================ */
.testimonials { background: #F8F6F0; }
.testimonials .eyebrow { color: var(--gold); }
.testimonials h2 { color: var(--navy); }

.testimonials__grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.testi-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  position: relative;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
}
.testi-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 40px rgba(0,0,0,0.08);
}

.testi-card__quote-mark {
  font-size: 48px;
  line-height: 1;
  color: rgba(212,175,55,0.3);
  font-family: Georgia, serif;
  display: block;
  margin-bottom: -12px;
}

.testi-card__quote {
  font-size: 16px;
  font-style: italic;
  color: #0C1A2E;
  line-height: 1.7;
  flex: 1;
}

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

.testi-card__avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: #0C1A2E;
  color: #D4AF37;
  font-size: 14px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.testi-card__meta {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.testi-card__name {
  font-size: 14px;
  font-weight: 700;
  color: #0C1A2E;
  line-height: 1.3;
}
.testi-card__role {
  font-size: 13px;
  color: #6B7280;
  line-height: 1.4;
}

.testimonials__sep {
  margin-top: 56px;
  height: 1px;
  background: #E5E7EB;
}

.testimonials__stats {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: clamp(40px, 8vw, 120px);
  padding-top: 48px;
}

.testi-stat {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 6px;
}
.testi-stat__num {
  font-size: clamp(28px, 3vw, 40px);
  font-weight: 800;
  color: #D4AF37;
  line-height: 1;
}
.testi-stat__label {
  font-size: 14px;
  color: #6B7280;
}

/* ============================================
   METRICS
============================================ */
.metrics { background: #0C1A2E; }

.metrics__inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 80px;
  align-items: center;
}

.metrics__left { display: flex; flex-direction: column; gap: 0; }
.metrics__left .eyebrow { margin-bottom: 14px; }
.metrics__left h2 {
  color: #F0FAFF;
  margin-bottom: 18px;
}
.metrics__left h2 em { color: #D4AF37; font-style: normal; }

.metrics__sub {
  color: rgba(240,250,255,0.65);
  font-size: 16px;
  line-height: 1.7;
  margin-bottom: 28px;
}
.metrics__link {
  color: #D4AF37;
  font-size: 15px;
  font-weight: 600;
  transition: opacity 0.2s;
}
.metrics__link:hover { opacity: 0.75; }

.metrics__grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px;
}
.metrics__card {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(212,175,55,0.12);
  border-radius: 16px;
  padding: 28px;
  display: flex;
  flex-direction: column;
}
.metrics__num {
  font-size: clamp(32px, 4vw, 48px);
  font-weight: 800;
  color: #D4AF37;
  line-height: 1;
}
.metrics__label {
  font-size: 14px;
  color: rgba(240,250,255,0.55);
  margin-top: 6px;
}

/* ============================================
   PRODUCTS TEASER
============================================ */
.products { background: #F8F6F0; }
.products .eyebrow { color: var(--gold); }
.products h2 { color: var(--navy); }
.products .section-intro__sub { color: var(--text-muted); }

.products__grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 20px;
  margin-bottom: 40px;
}

.prod-card {
  background: #FFFFFF;
  border: 1px solid #E5E7EB;
  border-radius: 12px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  transition: transform 0.25s ease, box-shadow 0.25s ease;
  position: relative;
}
.prod-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
}

.prod-card__icon { font-size: 26px; }
.prod-card h3 { font-size: 17px; color: var(--navy); line-height: 1.3; }
.prod-card p  { font-size: 14px; color: var(--text-muted); line-height: 1.6; }

.prod-card__badge {
  display: inline-block;
  background: rgba(212,175,55,0.12);
  border: 1px solid rgba(212,175,55,0.3);
  color: #D4AF37;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 3px 10px;
  border-radius: 20px;
  align-self: flex-start;
}

.products__cta-line {
  text-align: center;
  color: var(--text-muted);
  font-size: 15px;
}
.link-gold {
  color: #D4AF37;
  font-weight: 600;
  transition: opacity 0.2s;
}
.link-gold:hover { opacity: 0.75; }

/* ============================================
   BOTTOM CTA
============================================ */
.cta-bottom {
  background: #0C1A2E;
  border-top: 2px solid rgba(212,175,55,0.3);
  padding: 100px 0;
  text-align: center;
  position: relative;
  overflow: hidden;
}

.cta-bottom__deco {
  position: absolute;
  top: -200px;
  right: -200px;
  width: 600px;
  height: 600px;
  background: rgba(212,175,55,0.03);
  border-radius: 50%;
  pointer-events: none;
}

.cta-bottom__inner { position: relative; z-index: 1; }

.cta-bottom h2 {
  color: #F0FAFF;
  margin-bottom: 16px;
}
.cta-bottom p {
  color: rgba(240,250,255,0.6);
  font-size: 17px;
  margin-bottom: 36px;
}

.cta-bottom__btns {
  display: flex;
  gap: 12px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ============================================
   RESPONSIVE
============================================ */
@media (max-width: 820px) {
  .nav__links,
  .nav__actions { display: none; }
  .hamburger    { display: flex; }

  .footer__grid  { grid-template-columns: 1fr; gap: 40px; }
  .footer__links { grid-template-columns: repeat(2, 1fr); }

  .page-hero h1 { letter-spacing: -1px; }

  /* Hero */
  .hero__inner {
    grid-template-columns: 1fr;
    gap: 40px;
    padding-top: 60px;
    padding-bottom: 80px;
  }
  .hero__card { display: none; }

  /* Testimonials */
  .testimonials__grid { grid-template-columns: 1fr; }
  .testimonials__stats { gap: 32px; }

  /* Solutions */
  .solutions__grid { grid-template-columns: 1fr; }

  /* Metrics */
  .metrics__inner {
    grid-template-columns: 1fr;
    gap: 48px;
  }

  /* Products */
  .products__grid { grid-template-columns: repeat(2, 1fr); }

  /* Logo strip */
  .logo-strip__label { display: none; }
}

@media (max-width: 560px) {
  .footer__links { grid-template-columns: 1fr 1fr; gap: 32px 20px; }
  .page-hero__shape--1 { width: 320px; height: 320px; }
  .page-hero__shape--2 { width: 200px; height: 200px; }
  .page-hero__shape--3 { width: 110px; height: 110px; }

  .products__grid { grid-template-columns: 1fr; }
  .metrics__grid  { grid-template-columns: 1fr; }
  .hero__ctas { flex-direction: column; }
  .testimonials__stats { flex-direction: column; gap: 24px; }
}
