/* ============================================
   BidReadyGov — Premium Design System
   ============================================ */

:root {
  /* Brand Colors - extracted from logo */
  --navy-950: #050D24;
  --navy-900: #0A1A3F;
  --navy-800: #0F2554;
  --navy-700: #142E6B;
  --navy-600: #1B3A6B;
  --navy-500: #254B85;

  --teal-600: #0F8B7A;
  --teal-500: #14B8A6;
  --teal-400: #2DD4BF;
  --teal-300: #5EEAD4;

  --gold-700: #B8860B;
  --gold-600: #D4AF37;
  --gold-500: #E5C158;
  --gold-400: #F0D27A;

  --red-600: #B22234;
  --red-500: #C8202F;

  --cream-50: #FBFAF6;
  --cream-100: #F5F2E8;

  --white: #ffffff;
  --gray-50: #F9FAFB;
  --gray-100: #F3F4F6;
  --gray-200: #E5E7EB;
  --gray-300: #D1D5DB;
  --gray-400: #9CA3AF;
  --gray-500: #6B7280;
  --gray-600: #4B5563;
  --gray-700: #374151;
  --gray-800: #1F2937;
  --gray-900: #111827;

  /* Semantic */
  --bg-primary: var(--cream-50);
  --bg-dark: var(--navy-950);
  --text-primary: var(--navy-900);
  --text-secondary: var(--gray-600);
  --text-light: var(--gray-400);
  --accent-primary: var(--gold-600);
  --accent-secondary: var(--teal-500);

  /* Typography */
  --font-display: 'Fraunces', 'Playfair Display', Georgia, serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;

  /* Shadows */
  --shadow-sm: 0 1px 2px rgba(10, 26, 63, 0.05);
  --shadow-md: 0 4px 12px rgba(10, 26, 63, 0.08);
  --shadow-lg: 0 12px 32px rgba(10, 26, 63, 0.12);
  --shadow-xl: 0 24px 64px rgba(10, 26, 63, 0.18);
  --shadow-gold: 0 12px 32px rgba(212, 175, 55, 0.32);
  --shadow-teal: 0 12px 32px rgba(20, 184, 166, 0.28);

  /* Transitions */
  --ease: cubic-bezier(0.4, 0, 0.2, 1);
  --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
  --ease-bounce: cubic-bezier(0.68, -0.6, 0.32, 1.6);

  /* Container */
  --container-max: 1320px;
  --container-pad: clamp(1.25rem, 4vw, 2.5rem);
}

/* ============================================
   RESET
   ============================================ */
*, *::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: 16px;
  line-height: 1.6;
  color: var(--text-primary);
  background: var(--bg-primary);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}
img, video { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; transition: color 0.3s var(--ease); }
button { font: inherit; cursor: pointer; border: none; background: none; }
ul, ol { list-style: none; }
input, textarea, select { font: inherit; }

/* Selection */
::selection { background: var(--gold-600); color: var(--navy-900); }

/* ============================================
   TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  font-weight: 600;
  line-height: 1.1;
  letter-spacing: -0.025em;
  color: var(--navy-900);
}
h1 { font-size: clamp(2.5rem, 6vw, 5rem); font-weight: 700; letter-spacing: -0.03em; }
h2 { font-size: clamp(2rem, 4.5vw, 3.5rem); }
h3 { font-size: clamp(1.5rem, 3vw, 2.25rem); }
h4 { font-size: clamp(1.25rem, 2vw, 1.5rem); }
p  { color: var(--text-secondary); font-size: 1.0625rem; line-height: 1.7; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-600);
  margin-bottom: 1rem;
}
.eyebrow::before {
  content: '';
  width: 32px;
  height: 1px;
  background: var(--gold-600);
}
.eyebrow.center::before { display: none; }

.text-gold { color: var(--gold-600); }
.text-teal { color: var(--teal-500); }
.text-white { color: var(--white); }
.text-gradient {
  background: linear-gradient(135deg, var(--gold-600) 0%, var(--gold-400) 50%, var(--teal-400) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  display: inline-block;
}

/* ============================================
   LAYOUT
   ============================================ */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding-left: var(--container-pad);
  padding-right: var(--container-pad);
}
.section { padding: clamp(4rem, 10vw, 8rem) 0; position: relative; }
.section-sm { padding: clamp(3rem, 6vw, 5rem) 0; }
.section-dark { background: var(--navy-950); color: rgba(255,255,255,0.85); }
.section-dark h1, .section-dark h2, .section-dark h3, .section-dark h4 { color: var(--white); }
.section-cream { background: var(--cream-100); }

.center-text { text-align: center; }
.section-header { max-width: 780px; margin: 0 auto 4rem; text-align: center; }
.section-header p { font-size: 1.125rem; }

.grid { display: grid; gap: 2rem; }
.grid-2 { grid-template-columns: repeat(auto-fit, minmax(320px, 1fr)); }
.grid-3 { grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); }
.grid-4 { grid-template-columns: repeat(auto-fit, minmax(240px, 1fr)); }

/* ============================================
   BUTTONS
   ============================================ */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.625rem;
  padding: 1.05rem 2rem;
  font-family: var(--font-body);
  font-weight: 600;
  font-size: 0.9375rem;
  letter-spacing: 0.02em;
  border-radius: 999px;
  cursor: pointer;
  transition: all 0.4s var(--ease-out);
  position: relative;
  overflow: hidden;
  white-space: nowrap;
  isolation: isolate;
}
.btn svg { width: 18px; height: 18px; transition: transform 0.4s var(--ease-out); }
.btn:hover svg { transform: translateX(4px); }

.btn-primary {
  background: linear-gradient(135deg, var(--gold-600) 0%, var(--gold-500) 100%);
  color: var(--navy-900);
  box-shadow: var(--shadow-gold);
}
.btn-primary::before {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, var(--gold-500) 0%, var(--gold-700) 100%);
  opacity: 0;
  transition: opacity 0.4s var(--ease);
  z-index: -1;
}
.btn-primary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(212,175,55,0.45); }
.btn-primary:hover::before { opacity: 1; }

.btn-secondary {
  background: linear-gradient(135deg, var(--teal-600) 0%, var(--teal-500) 100%);
  color: white;
  box-shadow: var(--shadow-teal);
}
.btn-secondary:hover { transform: translateY(-3px); box-shadow: 0 16px 40px rgba(20,184,166,0.4); }

.btn-outline {
  background: transparent;
  color: var(--white);
  border: 1.5px solid rgba(255,255,255,0.3);
  backdrop-filter: blur(8px);
}
.btn-outline:hover {
  background: rgba(255,255,255,0.08);
  border-color: var(--gold-600);
  color: var(--gold-500);
}

.btn-dark {
  background: var(--navy-900);
  color: white;
}
.btn-dark:hover { background: var(--navy-700); transform: translateY(-3px); }

.btn-lg { padding: 1.25rem 2.5rem; font-size: 1rem; }

/* ============================================
   NAVBAR
   ============================================ */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 1.25rem 0;
  transition: all 0.4s var(--ease);
  background: rgba(5, 13, 36, 0.0);
}
.navbar.scrolled {
  background: rgba(5, 13, 36, 0.92);
  backdrop-filter: saturate(180%) blur(20px);
  -webkit-backdrop-filter: saturate(180%) blur(20px);
  padding: 0.75rem 0;
  box-shadow: 0 4px 30px rgba(0,0,0,0.15);
}
.navbar.solid {
  background: rgba(5, 13, 36, 0.95);
  backdrop-filter: saturate(180%) blur(20px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.nav-logo {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 1.125rem;
  color: var(--white);
  z-index: 10;
}
.nav-logo img {
  width: 48px;
  height: 48px;
  object-fit: contain;
  background: white;
  border-radius: 10px;
  padding: 4px;
  transition: transform 0.4s var(--ease);
}
.nav-logo:hover img { transform: scale(1.05); }
.nav-logo .brand-name { color: white; line-height: 1; }
.nav-logo .brand-tag { display: block; font-family: var(--font-body); font-size: 0.6875rem; font-weight: 500; letter-spacing: 0.18em; text-transform: uppercase; color: var(--gold-500); margin-top: 4px; }

.nav-links {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}
.nav-links a {
  color: rgba(255,255,255,0.85);
  font-weight: 500;
  font-size: 0.9375rem;
  padding: 0.625rem 1rem;
  border-radius: 8px;
  position: relative;
  transition: all 0.3s var(--ease);
}
.nav-links a:hover { color: var(--gold-500); }
.nav-links a.active { color: var(--gold-500); }
.nav-links a::after {
  content: '';
  position: absolute;
  bottom: 0.25rem;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--gold-600);
  transition: all 0.3s var(--ease);
  transform: translateX(-50%);
}
.nav-links a:hover::after { width: 24px; }
.nav-links a.active::after { width: 24px; }

.nav-cta {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-toggle {
  display: none;
  width: 44px;
  height: 44px;
  align-items: center;
  justify-content: center;
  color: white;
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 10px;
  z-index: 1001;
}
.nav-toggle span {
  display: block;
  width: 22px;
  height: 2px;
  background: white;
  position: relative;
  transition: all 0.3s var(--ease);
}
.nav-toggle span::before, .nav-toggle span::after {
  content: '';
  position: absolute;
  left: 0;
  width: 100%;
  height: 2px;
  background: white;
  transition: all 0.3s var(--ease);
}
.nav-toggle span::before { top: -7px; }
.nav-toggle span::after { top: 7px; }
.nav-toggle.open span { background: transparent; }
.nav-toggle.open span::before { top: 0; transform: rotate(45deg); }
.nav-toggle.open span::after { top: 0; transform: rotate(-45deg); }

@media (max-width: 1024px) {
  .nav-toggle { display: flex; }
  .nav-links {
    position: fixed;
    inset: 0;
    background: rgba(5, 13, 36, 0.98);
    backdrop-filter: blur(20px);
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1.5rem;
    transform: translateX(100%);
    transition: transform 0.5s var(--ease-out);
  }
  .nav-links.open { transform: translateX(0); }
  .nav-links a { font-size: 1.5rem; font-family: var(--font-display); }
  .nav-cta .btn { display: none; }
}

/* ============================================
   HERO - HOME
   ============================================ */
.hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  padding: 8rem 0 5rem;
  overflow: hidden;
  background: var(--navy-950);
  color: white;
}
.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.42;
  filter: saturate(0.9);
}
.hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse at 20% 30%, rgba(20,184,166,0.18), transparent 50%),
    radial-gradient(ellipse at 80% 70%, rgba(212,175,55,0.15), transparent 50%),
    linear-gradient(180deg, rgba(5,13,36,0.65) 0%, rgba(5,13,36,0.92) 100%);
}
.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.04) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.04) 1px, transparent 1px);
  background-size: 60px 60px;
  mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 80%);
  z-index: 1;
}
.hero-inner {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: 4rem;
  align-items: center;
}
.hero-content { max-width: 720px; }
.hero h1 {
  color: white;
  margin-bottom: 1.75rem;
  letter-spacing: -0.04em;
}
.hero h1 .accent {
  position: relative;
  display: inline-block;
  background: linear-gradient(135deg, var(--gold-500) 30%, var(--gold-400) 100%);
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero h1 .accent::after {
  content: '';
  position: absolute;
  bottom: 8px;
  left: 0;
  right: 0;
  height: 12px;
  background: linear-gradient(90deg, transparent, rgba(212,175,55,0.25), transparent);
  z-index: -1;
  filter: blur(8px);
}
.hero-subtitle {
  font-size: 1.25rem;
  color: rgba(255,255,255,0.78);
  margin-bottom: 2.5rem;
  max-width: 600px;
  line-height: 1.65;
}
.hero-actions {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
  margin-bottom: 3rem;
}
.hero-trust {
  display: flex;
  align-items: center;
  gap: 1.25rem;
  flex-wrap: wrap;
}
.hero-trust-stars {
  color: var(--gold-500);
  font-size: 1.125rem;
  letter-spacing: 0.1em;
}
.hero-trust-text {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.7);
}
.hero-trust-text strong { color: white; }

.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}
.hero-card-stack { position: relative; width: 100%; max-width: 460px; aspect-ratio: 4/5; }
.hero-card {
  position: absolute;
  inset: 0;
  border-radius: 24px;
  overflow: hidden;
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.12);
  backdrop-filter: blur(20px);
  box-shadow: 0 30px 80px rgba(0,0,0,0.4);
  transform-origin: center;
  animation: floatCard 6s var(--ease) infinite;
}
.hero-card img { width: 100%; height: 100%; object-fit: cover; }
.hero-card.front {
  z-index: 3;
}
.hero-card.mid {
  z-index: 2;
  transform: rotate(-6deg) translate(-30px, 30px) scale(0.95);
  animation-delay: 0.5s;
}
.hero-card.back {
  z-index: 1;
  transform: rotate(8deg) translate(40px, -20px) scale(0.92);
  animation-delay: 1s;
}
@keyframes floatCard {
  0%, 100% { transform: translateY(0) rotate(0); }
  50% { transform: translateY(-15px) rotate(0); }
}
.hero-card.mid { animation: floatMid 6s var(--ease) infinite; }
@keyframes floatMid {
  0%, 100% { transform: rotate(-6deg) translate(-30px, 30px) scale(0.95); }
  50% { transform: rotate(-6deg) translate(-30px, 15px) scale(0.95); }
}
.hero-card.back { animation: floatBack 6s var(--ease) infinite; }
@keyframes floatBack {
  0%, 100% { transform: rotate(8deg) translate(40px, -20px) scale(0.92); }
  50% { transform: rotate(8deg) translate(40px, -35px) scale(0.92); }
}

.hero-badge {
  position: absolute;
  background: white;
  color: var(--navy-900);
  padding: 1rem 1.25rem;
  border-radius: 16px;
  display: flex;
  align-items: center;
  gap: 0.875rem;
  box-shadow: var(--shadow-xl);
  z-index: 4;
  font-size: 0.875rem;
  font-weight: 600;
}
.hero-badge.top { top: 8%; left: -10%; animation: floatBadge 4s var(--ease) infinite; }
.hero-badge.bottom { bottom: 12%; right: -8%; animation: floatBadge 4s var(--ease) infinite 1.5s; }
.hero-badge .icon {
  width: 40px;
  height: 40px;
  background: linear-gradient(135deg, var(--gold-600), var(--gold-400));
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
}
.hero-badge.bottom .icon { background: linear-gradient(135deg, var(--teal-600), var(--teal-400)); }
.hero-badge .label { font-size: 0.75rem; color: var(--gray-500); font-weight: 500; }
.hero-badge .value { font-size: 1rem; color: var(--navy-900); font-weight: 700; line-height: 1.2; }
@keyframes floatBadge {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

.scroll-down {
  position: absolute;
  bottom: 2.5rem;
  left: 50%;
  transform: translateX(-50%);
  z-index: 3;
  color: rgba(255,255,255,0.6);
  font-size: 0.75rem;
  text-transform: uppercase;
  letter-spacing: 0.2em;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 0.75rem;
}
.scroll-down .line {
  width: 1px;
  height: 40px;
  background: linear-gradient(180deg, transparent, var(--gold-600));
  animation: scrollLine 2s var(--ease) infinite;
}
@keyframes scrollLine {
  0% { transform: scaleY(0); transform-origin: top; }
  50% { transform: scaleY(1); transform-origin: top; }
  100% { transform: scaleY(0); transform-origin: bottom; }
}

@media (max-width: 1024px) {
  .hero-inner { grid-template-columns: 1fr; gap: 3rem; }
  .hero-visual { display: none; }
}

/* ============================================
   PAGE HERO (interior pages)
   ============================================ */
.page-hero {
  position: relative;
  padding: 11rem 0 5rem;
  background: var(--navy-950);
  color: white;
  overflow: hidden;
}
.page-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.page-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.35;
}
.page-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(5,13,36,0.85), rgba(5,13,36,0.95)),
              radial-gradient(ellipse at 30% 50%, rgba(20,184,166,0.15), transparent 60%);
}
.page-hero-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 820px;
  margin: 0 auto;
}
.page-hero h1 { color: white; margin-bottom: 1.25rem; }
.page-hero p { color: rgba(255,255,255,0.78); font-size: 1.1875rem; }
.breadcrumbs {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 0.5rem;
  margin-bottom: 1.5rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
}
.breadcrumbs a:hover { color: var(--gold-500); }
.breadcrumbs span { color: var(--gold-500); }

/* ============================================
   STATS STRIP
   ============================================ */
.stats-strip {
  background: linear-gradient(135deg, var(--navy-900) 0%, var(--navy-700) 100%);
  color: white;
  padding: 3.5rem 0;
  margin-top: -5rem;
  position: relative;
  z-index: 5;
  border-radius: 24px;
  margin-left: var(--container-pad);
  margin-right: var(--container-pad);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}
.stats-strip::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(212,175,55,0.18), transparent 60%);
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  position: relative;
}
.stat {
  text-align: center;
  padding: 0 1rem;
  border-right: 1px solid rgba(255,255,255,0.1);
}
.stat:last-child { border-right: none; }
.stat-number {
  font-family: var(--font-display);
  font-size: clamp(2.25rem, 4vw, 3.25rem);
  font-weight: 700;
  background: linear-gradient(135deg, var(--gold-500), var(--gold-400));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
  line-height: 1;
  margin-bottom: 0.5rem;
}
.stat-label {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.7);
  letter-spacing: 0.05em;
}
@media (max-width: 768px) {
  .stat { border-right: none; border-bottom: 1px solid rgba(255,255,255,0.1); padding-bottom: 1.5rem; }
  .stat:last-child { border-bottom: none; padding-bottom: 0; }
}

/* ============================================
   FEATURE / ABOUT BLOCK
   ============================================ */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center;
}
.split.reverse > :first-child { order: 2; }
.split-image {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  aspect-ratio: 4/5;
  box-shadow: var(--shadow-xl);
}
.split-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.8s var(--ease-out);
}
.split:hover .split-image img { transform: scale(1.05); }
.split-image::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 60%, rgba(10,26,63,0.4));
}

.split-image-frame {
  position: relative;
}
.split-image-frame::before {
  content: '';
  position: absolute;
  inset: -16px -16px 16px 16px;
  border: 2px solid var(--gold-600);
  border-radius: 24px;
  z-index: -1;
}

.split-decor-card {
  position: absolute;
  bottom: -30px;
  right: -30px;
  background: white;
  padding: 1.5rem 1.75rem;
  border-radius: 16px;
  box-shadow: var(--shadow-xl);
  display: flex;
  align-items: center;
  gap: 1rem;
  z-index: 2;
  max-width: 280px;
}
.split-decor-card .icon-wrap {
  width: 48px;
  height: 48px;
  background: linear-gradient(135deg, var(--teal-600), var(--teal-400));
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: white;
  flex-shrink: 0;
}
.split-decor-card .label { font-size: 0.75rem; color: var(--gray-500); }
.split-decor-card .value { font-weight: 700; color: var(--navy-900); }

.split-content h2 { margin-bottom: 1.5rem; }
.split-content p { margin-bottom: 1.25rem; font-size: 1.0625rem; }
.feature-list { display: grid; gap: 1rem; margin: 2rem 0; }
.feature-list li {
  display: flex;
  align-items: flex-start;
  gap: 0.875rem;
  font-size: 1rem;
  color: var(--gray-700);
  font-weight: 500;
}
.feature-list li::before {
  content: '';
  width: 24px;
  height: 24px;
  background: linear-gradient(135deg, var(--teal-500), var(--teal-400));
  border-radius: 50%;
  flex-shrink: 0;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>");
  background-size: 16px;
  background-position: center;
  background-repeat: no-repeat;
  margin-top: 2px;
}

@media (max-width: 900px) {
  .split { grid-template-columns: 1fr; gap: 3rem; }
  .split.reverse > :first-child { order: initial; }
  .split-decor-card { right: 1rem; bottom: -20px; }
}

/* ============================================
   SERVICES GRID
   ============================================ */
.services-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 1.5rem;
}
.service-card {
  position: relative;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 20px;
  padding: 2.25rem 2rem;
  transition: all 0.5s var(--ease-out);
  overflow: hidden;
  cursor: pointer;
}
.service-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--teal-500), var(--gold-500));
  transform: scaleX(0);
  transform-origin: left;
  transition: transform 0.5s var(--ease-out);
}
.service-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
  border-color: var(--gold-600);
}
.service-card:hover::before { transform: scaleX(1); }

.service-icon {
  width: 64px;
  height: 64px;
  border-radius: 16px;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--gold-500);
  margin-bottom: 1.5rem;
  transition: all 0.5s var(--ease);
}
.service-card:hover .service-icon {
  background: linear-gradient(135deg, var(--gold-600), var(--gold-400));
  color: var(--navy-900);
  transform: rotate(-6deg) scale(1.05);
}
.service-icon svg { width: 30px; height: 30px; }
.service-card h3 { font-size: 1.375rem; margin-bottom: 0.75rem; }
.service-card p { font-size: 0.9375rem; line-height: 1.65; margin-bottom: 1.5rem; }
.service-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.875rem;
  font-weight: 600;
  color: var(--navy-900);
  letter-spacing: 0.02em;
}
.service-link svg { width: 16px; height: 16px; transition: transform 0.3s var(--ease); }
.service-card:hover .service-link { color: var(--gold-700); }
.service-card:hover .service-link svg { transform: translateX(4px); }

/* ============================================
   PROCESS TIMELINE
   ============================================ */
.process {
  background: linear-gradient(180deg, var(--navy-950) 0%, var(--navy-900) 100%);
  color: white;
  position: relative;
  overflow: hidden;
}
.process::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle at 20% 20%, rgba(20,184,166,0.15), transparent 40%),
                    radial-gradient(circle at 80% 80%, rgba(212,175,55,0.12), transparent 40%);
  pointer-events: none;
}
.process .container { position: relative; z-index: 1; }
.process h2, .process h3 { color: white; }
.process .section-header p { color: rgba(255,255,255,0.7); }

.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1.5rem;
  position: relative;
}
.process-grid::before {
  content: '';
  position: absolute;
  top: 40px;
  left: 5%;
  right: 5%;
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--gold-600) 20%, var(--teal-500) 80%, transparent);
  opacity: 0.3;
}
.process-step {
  position: relative;
  text-align: center;
  padding: 1rem;
}
.process-num {
  width: 80px;
  height: 80px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-600), var(--gold-400));
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: 1.875rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  position: relative;
  z-index: 2;
  box-shadow: 0 12px 32px rgba(212,175,55,0.4);
  transition: all 0.4s var(--ease);
}
.process-step:hover .process-num { transform: scale(1.1) rotate(8deg); }
.process-step h3 { font-size: 1.25rem; margin-bottom: 0.75rem; color: white; }
.process-step p { color: rgba(255,255,255,0.7); font-size: 0.9375rem; }

@media (max-width: 900px) {
  .process-grid { grid-template-columns: 1fr 1fr; }
  .process-grid::before { display: none; }
}
@media (max-width: 540px) {
  .process-grid { grid-template-columns: 1fr; }
}

/* ============================================
   PRICING / PLANS
   ============================================ */
.plans-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(310px, 1fr));
  gap: 1.75rem;
  align-items: stretch;
}
.plan-card {
  position: relative;
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 24px;
  padding: 2.5rem 2rem;
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease-out);
  overflow: hidden;
}
.plan-card:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-xl);
}
.plan-card.featured {
  background: linear-gradient(165deg, var(--navy-950), var(--navy-800));
  color: white;
  border: none;
  transform: scale(1.04);
  box-shadow: 0 30px 80px rgba(10,26,63,0.4);
}
.plan-card.featured::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top right, rgba(212,175,55,0.18), transparent 60%);
}
.plan-card.featured > * { position: relative; }
.plan-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: linear-gradient(135deg, var(--gold-600), var(--gold-400));
  color: var(--navy-900);
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  padding: 0.5rem 1.25rem;
  border-radius: 999px;
  z-index: 4;
  box-shadow: 0 8px 24px rgba(212,175,55,0.4);
  white-space: nowrap;
}
.plan-name {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 600;
  margin-bottom: 0.5rem;
  color: var(--navy-900);
}
.plan-card.featured .plan-name { color: white; }
.plan-tagline {
  font-size: 0.9375rem;
  color: var(--gray-500);
  margin-bottom: 2rem;
  min-height: 50px;
}
.plan-card.featured .plan-tagline { color: rgba(255,255,255,0.7); }
.plan-price {
  display: flex;
  align-items: baseline;
  gap: 0.25rem;
  margin-bottom: 2rem;
  padding-bottom: 2rem;
  border-bottom: 1px solid var(--gray-200);
}
.plan-card.featured .plan-price { border-bottom-color: rgba(255,255,255,0.12); }
.plan-price-main {
  font-family: var(--font-display);
  font-size: 1.625rem;
  font-weight: 700;
  color: var(--gold-700);
}
.plan-card.featured .plan-price-main { color: var(--gold-500); }
.plan-price-note { font-size: 0.875rem; color: var(--gray-500); }
.plan-card.featured .plan-price-note { color: rgba(255,255,255,0.6); }

.plan-features {
  flex: 1;
  display: grid;
  gap: 0.875rem;
  margin-bottom: 2rem;
}
.plan-features li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
  font-size: 0.9375rem;
  color: var(--gray-700);
  line-height: 1.5;
}
.plan-card.featured .plan-features li { color: rgba(255,255,255,0.85); }
.plan-features li::before {
  content: '';
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--teal-500);
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>");
  background-size: 14px;
  background-position: center;
  background-repeat: no-repeat;
  flex-shrink: 0;
  margin-top: 1px;
}
.plan-card.featured .plan-features li::before {
  background-color: var(--gold-600);
}

.plan-cta { margin-top: auto; }
.plan-cta .btn { width: 100%; }

@media (max-width: 900px) {
  .plan-card.featured { transform: none; }
}

/* ============================================
   TEAM
   ============================================ */
.team-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 2rem;
}
.team-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  background: var(--navy-900);
  aspect-ratio: 3/4;
  cursor: pointer;
}
.team-card img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: all 0.6s var(--ease-out);
  filter: grayscale(20%);
}
.team-card:hover img { transform: scale(1.05); filter: grayscale(0%); }
.team-card::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 40%, rgba(5,13,36,0.95));
}
.team-info {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 1.75rem;
  z-index: 2;
  color: white;
}
.team-info h3 { color: white; font-size: 1.375rem; margin-bottom: 0.25rem; }
.team-role {
  font-size: 0.8125rem;
  color: var(--gold-500);
  letter-spacing: 0.05em;
  margin-bottom: 0.875rem;
  text-transform: uppercase;
  font-weight: 600;
}
.team-bio {
  color: rgba(255,255,255,0.85);
  font-size: 0.9375rem;
  max-height: 0;
  opacity: 0;
  overflow: hidden;
  transition: all 0.5s var(--ease-out);
}
.team-card:hover .team-bio { max-height: 200px; opacity: 1; margin-top: 0.5rem; }

/* ============================================
   TESTIMONIALS
   ============================================ */
.testimonials {
  background: var(--cream-100);
  position: relative;
  overflow: hidden;
}
.testimonials::before {
  content: '"';
  position: absolute;
  top: -100px;
  right: -50px;
  font-family: var(--font-display);
  font-size: 600px;
  color: rgba(212,175,55,0.06);
  line-height: 1;
  z-index: 0;
}
.testimonials-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 1.5rem;
  position: relative;
  z-index: 1;
}

/* ===== Testimonials Slider (carousel) ===== */
.testimonials-slider {
  position: relative;
  z-index: 1;
}
.testimonials-track {
  display: flex;
  gap: 1.5rem;
  overflow-x: auto;
  scroll-snap-type: x mandatory;
  scroll-behavior: smooth;
  scrollbar-width: none;
  -ms-overflow-style: none;
  padding: 0.5rem 0.25rem 1.5rem;
  margin: 0 -0.25rem;
}
.testimonials-track::-webkit-scrollbar { display: none; }
.testimonials-track .testimonial-card {
  flex: 0 0 calc((100% - 3rem) / 3);
  scroll-snap-align: start;
  margin: 0;
}
@media (max-width: 900px) {
  .testimonials-track .testimonial-card {
    flex: 0 0 calc((100% - 1.5rem) / 2);
  }
}
@media (max-width: 600px) {
  .testimonials-track .testimonial-card {
    flex: 0 0 calc(100% - 1rem);
  }
}

/* Navigation arrows */
.testimonials-arrow {
  position: absolute;
  top: 45%;
  transform: translateY(-50%);
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: white;
  box-shadow: 0 8px 24px rgba(10, 26, 63, 0.18);
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 5;
  cursor: pointer;
  color: var(--navy-900);
  transition: all 0.3s var(--ease);
  border: 1px solid var(--gray-200);
}
.testimonials-arrow:hover {
  background: linear-gradient(135deg, var(--gold-600), var(--gold-400));
  color: var(--navy-900);
  transform: translateY(-50%) scale(1.08);
  border-color: transparent;
  box-shadow: 0 12px 32px rgba(212, 175, 55, 0.45);
}
.testimonials-arrow svg { width: 20px; height: 20px; }
.testimonials-arrow.prev { left: -24px; }
.testimonials-arrow.next { right: -24px; }
@media (max-width: 1100px) {
  .testimonials-arrow.prev { left: 4px; }
  .testimonials-arrow.next { right: 4px; }
}
@media (max-width: 600px) {
  .testimonials-arrow { display: none; }
}

/* Pagination dots */
.testimonials-dots {
  display: flex;
  justify-content: center;
  gap: 0.5rem;
  margin-top: 2rem;
  position: relative;
  z-index: 2;
}
.testimonials-dots button {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background: var(--gray-300);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all 0.4s var(--ease);
}
.testimonials-dots button:hover { background: var(--gold-400); }
.testimonials-dots button.active {
  background: linear-gradient(135deg, var(--gold-600), var(--gold-400));
  width: 32px;
  border-radius: 5px;
}
.testimonial-card {
  background: white;
  border-radius: 20px;
  padding: 2rem;
  box-shadow: var(--shadow-md);
  transition: all 0.4s var(--ease-out);
  display: flex;
  flex-direction: column;
}
.testimonial-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
}
.testimonial-stars {
  color: var(--gold-600);
  font-size: 1.125rem;
  letter-spacing: 0.15em;
  margin-bottom: 1.25rem;
}
.testimonial-text {
  font-size: 1.0625rem;
  color: var(--gray-700);
  line-height: 1.65;
  flex: 1;
  margin-bottom: 1.5rem;
  font-style: italic;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 1rem;
  border-top: 1px solid var(--gray-200);
  padding-top: 1.25rem;
}
.testimonial-avatar {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--navy-700), var(--navy-500));
  color: white;
  font-weight: 700;
  font-size: 1.125rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.testimonial-author .name { font-weight: 700; color: var(--navy-900); font-size: 0.9375rem; }
.testimonial-author .role { font-size: 0.8125rem; color: var(--gray-500); }

/* ============================================
   CTA BANNER
   ============================================ */
.cta-banner {
  position: relative;
  padding: 5rem 3rem;
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-700) 100%);
  border-radius: 32px;
  text-align: center;
  color: white;
  overflow: hidden;
  margin: 0 var(--container-pad);
}
.cta-banner::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(212,175,55,0.25), transparent 60%);
  pointer-events: none;
}
.cta-banner::after {
  content: '';
  position: absolute;
  bottom: -50%;
  left: -20%;
  width: 600px;
  height: 600px;
  background: radial-gradient(circle, rgba(20,184,166,0.18), transparent 60%);
  pointer-events: none;
}
.cta-banner-inner { position: relative; max-width: 720px; margin: 0 auto; }
.cta-banner h2 { color: white; margin-bottom: 1.25rem; }
.cta-banner p { color: rgba(255,255,255,0.8); margin-bottom: 2.5rem; font-size: 1.125rem; }
.cta-banner .hero-actions { justify-content: center; }

/* ============================================
   FORM SECTION
   ============================================ */
.form-section {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: 4rem;
  align-items: start;
}
.form-info h2 { margin-bottom: 1.5rem; }
.form-info p { font-size: 1.0625rem; margin-bottom: 2rem; }

.contact-blocks { display: grid; gap: 1.25rem; margin-top: 2rem; }
.contact-block {
  display: flex;
  gap: 1.25rem;
  padding: 1.5rem;
  background: white;
  border-radius: 16px;
  border: 1px solid var(--gray-200);
  transition: all 0.3s var(--ease);
}
.contact-block:hover {
  transform: translateX(6px);
  border-color: var(--gold-600);
  box-shadow: var(--shadow-md);
}
.contact-icon {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--navy-900), var(--navy-700));
  color: var(--gold-500);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.contact-icon svg { width: 22px; height: 22px; }
.contact-block .label { font-size: 0.75rem; color: var(--gray-500); letter-spacing: 0.1em; text-transform: uppercase; margin-bottom: 0.25rem; }
.contact-block .value { font-weight: 600; color: var(--navy-900); font-size: 1rem; }
.contact-block a:hover { color: var(--gold-700); }

.form-wrap {
  background: white;
  border-radius: 24px;
  padding: 2.5rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
}
.form-wrap h3 {
  font-size: 1.5rem;
  margin-bottom: 0.5rem;
}
.form-wrap > p {
  margin-bottom: 1.5rem;
  font-size: 0.9375rem;
}
.form-iframe-wrap {
  position: relative;
  min-height: 832px;
  width: 100%;
}
.form-iframe-wrap iframe { width: 100%; min-height: 832px; border: none; }

@media (max-width: 900px) {
  .form-section { grid-template-columns: 1fr; gap: 3rem; }
  .form-wrap { padding: 1.5rem; }
}

/* ============================================
   CALENDAR / SCHEDULE
   ============================================ */
.schedule-grid {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: 3rem;
  align-items: start;
}
.schedule-info {
  position: sticky;
  top: 100px;
}
.schedule-info h2 { margin-bottom: 1.5rem; }
.schedule-info > p { margin-bottom: 2rem; font-size: 1.0625rem; }

.expect-list { display: grid; gap: 1.25rem; }
.expect-item {
  display: flex;
  gap: 1rem;
  align-items: flex-start;
}
.expect-num {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-600), var(--gold-400));
  color: var(--navy-900);
  font-weight: 700;
  font-family: var(--font-display);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 1rem;
}
.expect-item h4 { font-size: 1.0625rem; margin-bottom: 0.25rem; color: var(--navy-900); font-family: var(--font-body); font-weight: 700; }
.expect-item p { font-size: 0.9375rem; }

.calendar-wrap {
  background: white;
  border-radius: 24px;
  padding: 1.5rem;
  box-shadow: var(--shadow-xl);
  border: 1px solid var(--gray-200);
  min-height: 700px;
  overflow: hidden;
}
.calendar-wrap iframe { width: 100%; min-height: 700px; border: none; display: block; }

@media (max-width: 900px) {
  .schedule-grid { grid-template-columns: 1fr; }
  .schedule-info { position: static; }
}

/* ============================================
   FAQ
   ============================================ */
.faq-list {
  max-width: 820px;
  margin: 0 auto;
  display: grid;
  gap: 1rem;
}
.faq-item {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  overflow: hidden;
  transition: all 0.3s var(--ease);
}
.faq-item.open { border-color: var(--gold-600); box-shadow: var(--shadow-lg); }
.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  width: 100%;
  text-align: left;
  padding: 1.5rem 1.75rem;
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--navy-900);
  cursor: pointer;
  transition: all 0.3s var(--ease);
}
.faq-q:hover { color: var(--gold-700); }
.faq-q .icon {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: var(--cream-100);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: all 0.3s var(--ease);
  color: var(--navy-900);
}
.faq-item.open .icon { background: var(--gold-600); color: white; transform: rotate(45deg); }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s var(--ease-out);
}
.faq-a-inner {
  padding: 0 1.75rem 1.5rem;
  color: var(--gray-600);
  line-height: 1.7;
}
.faq-item.open .faq-a { max-height: 400px; }

/* ============================================
   COMPARE TABLE
   ============================================ */
.compare-wrap { overflow-x: auto; margin-top: 3rem; border-radius: 20px; box-shadow: var(--shadow-lg); }
.compare-table { width: 100%; border-collapse: collapse; min-width: 700px; background: white; }
.compare-table th, .compare-table td { padding: 1.25rem 1.5rem; text-align: left; border-bottom: 1px solid var(--gray-200); }
.compare-table th { background: var(--navy-900); color: white; font-family: var(--font-display); font-weight: 600; font-size: 1.0625rem; }
.compare-table th.featured { background: linear-gradient(135deg, var(--gold-600), var(--gold-700)); color: var(--navy-900); }
.compare-table td.center { text-align: center; }
.compare-table tbody tr:hover { background: var(--cream-50); }
.compare-table .check { color: var(--teal-500); font-weight: 700; }
.compare-table .dash { color: var(--gray-300); }

/* ============================================
   GALLERY
   ============================================ */
.gallery {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-template-rows: 280px 280px;
  gap: 1rem;
  margin-top: 3rem;
}
.gallery-item {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  cursor: pointer;
}
.gallery-item img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.7s var(--ease-out);
}
.gallery-item:hover img { transform: scale(1.08); }
.gallery-item::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(5,13,36,0.7));
  opacity: 0.6;
  transition: opacity 0.3s var(--ease);
}
.gallery-item:hover::after { opacity: 0.85; }
.gallery-caption {
  position: absolute;
  bottom: 1.25rem;
  left: 1.25rem;
  color: white;
  font-weight: 600;
  z-index: 2;
  font-size: 0.9375rem;
}
.gallery-item.large { grid-column: span 2; grid-row: span 2; }
.gallery-item.tall { grid-row: span 2; }
@media (max-width: 768px) {
  .gallery { grid-template-columns: 1fr 1fr; grid-template-rows: auto; }
  .gallery-item.large, .gallery-item.tall { grid-column: auto; grid-row: auto; height: 240px; }
}

/* ============================================
   VALUES (icon cards)
   ============================================ */
.values-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
  gap: 1.5rem;
}
.value-card {
  padding: 2.25rem 2rem;
  background: white;
  border-radius: 20px;
  border: 1px solid var(--gray-200);
  text-align: center;
  transition: all 0.4s var(--ease-out);
}
.value-card:hover {
  transform: translateY(-8px);
  border-color: var(--gold-600);
  box-shadow: var(--shadow-xl);
}
.value-icon {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  background: var(--cream-100);
  color: var(--gold-700);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1.5rem;
  transition: all 0.4s var(--ease);
}
.value-card:hover .value-icon {
  background: linear-gradient(135deg, var(--gold-600), var(--gold-400));
  color: var(--navy-900);
  transform: rotate(-8deg) scale(1.1);
}
.value-icon svg { width: 32px; height: 32px; }
.value-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; }
.value-card p { font-size: 0.9375rem; }

/* ============================================
   FOOTER
   ============================================ */
.footer {
  background: var(--navy-950);
  color: rgba(255,255,255,0.7);
  padding: 5rem 0 2rem;
  position: relative;
  overflow: hidden;
}
.footer::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse at top left, rgba(20,184,166,0.08), transparent 50%),
              radial-gradient(ellipse at bottom right, rgba(212,175,55,0.06), transparent 50%);
}
.footer-inner { position: relative; }
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1.2fr;
  gap: 3rem;
  margin-bottom: 4rem;
}
.footer-brand { max-width: 360px; }
.footer-logo { display: flex; align-items: center; gap: 0.875rem; margin-bottom: 1.25rem; }
.footer-logo img { width: 56px; height: 56px; background: white; padding: 6px; border-radius: 12px; object-fit: contain; }
.footer-logo .brand-name { color: white; font-family: var(--font-display); font-weight: 700; font-size: 1.25rem; line-height: 1.1; }
.footer-logo .brand-tag { display: block; font-size: 0.6875rem; color: var(--gold-500); letter-spacing: 0.18em; text-transform: uppercase; margin-top: 4px; font-weight: 500; }
.footer-brand p { font-size: 0.9375rem; line-height: 1.7; color: rgba(255,255,255,0.65); margin-bottom: 1.75rem; }

.footer-social { display: flex; gap: 0.75rem; }
.footer-social a {
  width: 42px;
  height: 42px;
  display: flex;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: 12px;
  color: rgba(255,255,255,0.8);
  transition: all 0.3s var(--ease);
}
.footer-social a:hover {
  background: var(--gold-600);
  border-color: var(--gold-600);
  color: var(--navy-900);
  transform: translateY(-3px);
}
.footer-social svg { width: 18px; height: 18px; }

.footer-col h4 {
  color: white;
  font-family: var(--font-body);
  font-weight: 700;
  font-size: 0.875rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  margin-bottom: 1.5rem;
}
.footer-col ul { display: grid; gap: 0.875rem; }
.footer-col a {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.7);
  transition: all 0.3s var(--ease);
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.footer-col a:hover { color: var(--gold-500); transform: translateX(4px); }

.footer-contact-item {
  font-size: 0.9375rem;
  color: rgba(255,255,255,0.7);
  margin-bottom: 1rem;
  display: flex;
  gap: 0.75rem;
  align-items: flex-start;
  line-height: 1.5;
}
.footer-contact-item svg { width: 16px; height: 16px; color: var(--gold-500); flex-shrink: 0; margin-top: 4px; }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding-top: 2rem;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}
.footer-bottom p { font-size: 0.875rem; color: rgba(255,255,255,0.5); margin: 0; }
.footer-legal { display: flex; gap: 1.5rem; flex-wrap: wrap; }
.footer-legal a { font-size: 0.8125rem; color: rgba(255,255,255,0.5); }
.footer-legal a:hover { color: var(--gold-500); }

@media (max-width: 900px) {
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2.5rem; }
}
@media (max-width: 540px) {
  .footer-grid { grid-template-columns: 1fr; }
}

/* ============================================
   ANIMATIONS / REVEAL
   ============================================ */
.reveal {
  opacity: 0;
  transform: translateY(40px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.in {
  opacity: 1;
  transform: translateY(0);
}
.reveal-delay-1 { transition-delay: 0.12s; }
.reveal-delay-2 { transition-delay: 0.24s; }
.reveal-delay-3 { transition-delay: 0.36s; }
.reveal-delay-4 { transition-delay: 0.48s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after { animation-duration: 0.001s !important; transition-duration: 0.001s !important; }
}

/* ============================================
   FLOATING WHATSAPP / CTA
   ============================================ */
.float-cta {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  z-index: 900;
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--gold-600), var(--gold-400));
  color: var(--navy-900);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 32px rgba(212,175,55,0.5);
  transition: all 0.3s var(--ease);
  animation: pulse 2s infinite;
}
.float-cta:hover { transform: scale(1.1); }
.float-cta svg { width: 28px; height: 28px; }
@keyframes pulse {
  0%, 100% { box-shadow: 0 12px 32px rgba(212,175,55,0.5), 0 0 0 0 rgba(212,175,55,0.5); }
  50% { box-shadow: 0 12px 32px rgba(212,175,55,0.5), 0 0 0 16px rgba(212,175,55,0); }
}

/* ============================================
   ARTICLE / BLOG STYLES
   ============================================ */
.article-hero {
  position: relative;
  padding: 11rem 0 4rem;
  background: var(--navy-950);
  color: white;
  overflow: hidden;
}
.article-hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}
.article-hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  opacity: 0.28;
  filter: saturate(0.85);
}
.article-hero-bg::after {
  content: '';
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(5,13,36,0.85), rgba(5,13,36,0.95)),
    radial-gradient(ellipse at 30% 50%, rgba(20,184,166,0.15), transparent 60%);
}
.article-hero-content {
  position: relative;
  z-index: 1;
  max-width: 880px;
  margin: 0 auto;
  text-align: center;
}
.article-hero h1 {
  color: white;
  font-size: clamp(2rem, 4.5vw, 3.5rem);
  margin-bottom: 1.25rem;
  letter-spacing: -0.025em;
}
.article-hero .lead {
  color: rgba(255,255,255,0.82);
  font-size: 1.1875rem;
  line-height: 1.65;
  max-width: 720px;
  margin: 0 auto;
}
.article-meta {
  display: flex;
  justify-content: center;
  align-items: center;
  flex-wrap: wrap;
  gap: 1.5rem;
  margin-top: 2rem;
  font-size: 0.875rem;
  color: rgba(255,255,255,0.72);
}
.article-meta-item {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
}
.article-meta-item svg { width: 16px; height: 16px; color: var(--gold-500); }
.article-meta-author {
  display: inline-flex;
  align-items: center;
  gap: 0.625rem;
}
.article-meta-author img {
  width: 32px;
  height: 32px;
  border-radius: 50%;
  object-fit: cover;
  border: 2px solid var(--gold-500);
}

/* Article body */
.article {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.article > * { margin-bottom: 1.25rem; }
.article p {
  font-size: 1.0625rem;
  line-height: 1.85;
  color: var(--gray-700);
}
.article h2 {
  font-size: clamp(1.625rem, 3vw, 2.125rem);
  margin-top: 3.5rem;
  margin-bottom: 1.25rem;
  color: var(--navy-900);
  letter-spacing: -0.02em;
  scroll-margin-top: 90px;
}
.article h2:first-of-type { margin-top: 1.5rem; }
.article h3 {
  font-size: 1.375rem;
  margin-top: 2.25rem;
  margin-bottom: 0.875rem;
  color: var(--navy-800);
  font-family: var(--font-body);
  font-weight: 700;
  letter-spacing: -0.01em;
}
.article h4 {
  font-size: 1.0625rem;
  margin-top: 1.75rem;
  margin-bottom: 0.625rem;
  color: var(--navy-800);
  font-family: var(--font-body);
  font-weight: 700;
}
.article ul, .article ol {
  padding-left: 1.5rem;
  margin: 1.25rem 0;
}
.article ul li, .article ol li {
  list-style: disc;
  font-size: 1.0625rem;
  line-height: 1.8;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}
.article ol li { list-style: decimal; }
.article a {
  color: var(--gold-700);
  font-weight: 500;
  border-bottom: 1px solid currentColor;
  transition: color 0.3s var(--ease);
}
.article a:hover { color: var(--navy-900); }
.article strong { color: var(--navy-900); font-weight: 700; }
.article blockquote {
  border-left: 4px solid var(--gold-600);
  padding: 1.5rem 1.75rem;
  margin: 2rem 0;
  background: var(--cream-100);
  border-radius: 0 12px 12px 0;
  font-style: italic;
  color: var(--gray-700);
  font-size: 1.0625rem;
  line-height: 1.7;
}
.article blockquote p { margin: 0; font-size: inherit; }
.article img {
  width: 100%;
  border-radius: 12px;
  margin: 2rem 0;
  box-shadow: var(--shadow-md);
}

/* TOC */
.article-toc {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 1.75rem 2rem;
  margin: 2rem 0 3rem;
  box-shadow: var(--shadow-sm);
}
.article-toc h4 {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin: 0 0 1rem;
}
.article-toc ol {
  padding-left: 1.25rem;
  margin: 0;
  columns: 2;
  column-gap: 2rem;
}
.article-toc ol li {
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
  break-inside: avoid;
  list-style: decimal;
  color: var(--gray-600);
}
.article-toc a {
  color: var(--navy-800);
  border-bottom: none;
  font-weight: 500;
}
.article-toc a:hover { color: var(--gold-700); }
@media (max-width: 640px) { .article-toc ol { columns: 1; } }

/* TLDR box */
.tldr {
  background: linear-gradient(135deg, rgba(20,184,166,0.08), rgba(212,175,55,0.06));
  border: 1px solid var(--teal-500);
  border-left: 6px solid var(--teal-500);
  border-radius: 16px;
  padding: 2rem 2.25rem;
  margin: 2rem 0 3rem;
}
.tldr-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--teal-600);
  margin-bottom: 0.875rem;
}
.tldr-label::before { content: '⚡'; font-size: 1rem; }
.tldr h2, .tldr h3 {
  font-size: 1.25rem;
  margin: 0 0 0.875rem;
  color: var(--navy-900);
  letter-spacing: -0.01em;
}
.tldr p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}
.tldr p:last-child { margin-bottom: 0; }
.tldr ul { margin: 0.875rem 0; padding-left: 1.5rem; }
.tldr ul li { font-size: 1rem; line-height: 1.7; margin-bottom: 0.4rem; list-style: disc; color: var(--gray-700); }

/* Article tables */
.article table {
  width: 100%;
  border-collapse: collapse;
  margin: 2rem 0;
  font-size: 0.9375rem;
  background: white;
  border-radius: 12px;
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  border: 1px solid var(--gray-200);
}
.article th, .article td {
  padding: 0.875rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
  vertical-align: top;
}
.article th {
  background: var(--navy-900);
  color: white;
  font-family: var(--font-display);
  font-weight: 600;
}
.article tr:last-child td { border-bottom: none; }
.article tr:hover td { background: var(--cream-50); }

/* Callouts inline in articles */
.callout-box {
  background: white;
  border-radius: 14px;
  padding: 1.5rem 1.75rem;
  border-left: 4px solid var(--gold-600);
  box-shadow: var(--shadow-sm);
  margin: 2rem 0;
}
.callout-box.tip { border-left-color: var(--teal-500); background: #F1FCFA; }
.callout-box.warn { border-left-color: var(--red-500); background: #FFF8F8; }
.callout-box-title {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-family: var(--font-body);
  font-size: 0.875rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--gold-700);
  margin-bottom: 0.5rem;
}
.callout-box.tip .callout-box-title { color: var(--teal-600); }
.callout-box.warn .callout-box-title { color: var(--red-600); }
.callout-box p { margin: 0; font-size: 1rem; line-height: 1.7; color: var(--gray-700); }
.callout-box p + p { margin-top: 0.75rem; }

/* Article CTA */
.article-cta {
  background: linear-gradient(135deg, var(--navy-950) 0%, var(--navy-700) 100%);
  color: white;
  padding: 2.5rem;
  border-radius: 20px;
  text-align: center;
  margin: 3rem 0;
  position: relative;
  overflow: hidden;
}
.article-cta::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 400px;
  height: 400px;
  background: radial-gradient(circle, rgba(212,175,55,0.18), transparent 60%);
}
.article-cta > * { position: relative; }
.article-cta h3 { color: white; font-size: 1.625rem; margin-bottom: 0.75rem; }
.article-cta p { color: rgba(255,255,255,0.82); margin-bottom: 1.75rem; font-size: 1.0625rem; }

/* Source citations inline */
.article .source {
  display: block;
  font-size: 0.8125rem;
  color: var(--gray-500);
  font-style: italic;
  margin: 1rem 0 1.5rem;
  padding-left: 1rem;
  border-left: 3px solid var(--gold-400);
}
.article .source a { color: var(--gold-700); border-bottom: 1px dotted; font-style: normal; font-weight: 500; }

/* Related articles */
.related-articles {
  margin-top: 5rem;
  padding-top: 3rem;
  border-top: 1px solid var(--gray-200);
}
.related-articles h3 { text-align: center; margin-bottom: 2rem; }
.related-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
  max-width: 1100px;
  margin: 0 auto;
}

/* Article hub cards */
.article-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 18px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  transition: all 0.4s var(--ease-out);
}
.article-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--gold-600);
}
.article-card-image {
  position: relative;
  aspect-ratio: 16/10;
  overflow: hidden;
}
.article-card-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s var(--ease-out);
}
.article-card:hover .article-card-image img { transform: scale(1.05); }
.article-card-tag {
  position: absolute;
  top: 1rem;
  left: 1rem;
  background: rgba(255,255,255,0.95);
  color: var(--navy-900);
  padding: 0.375rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  backdrop-filter: blur(4px);
}
.article-card-body {
  padding: 1.5rem 1.75rem 1.75rem;
  flex: 1;
  display: flex;
  flex-direction: column;
}
.article-card-meta {
  font-size: 0.75rem;
  color: var(--gray-500);
  letter-spacing: 0.05em;
  margin-bottom: 0.75rem;
  display: flex;
  gap: 0.75rem;
}
.article-card h3 {
  font-size: 1.25rem;
  margin-bottom: 0.875rem;
  line-height: 1.3;
  color: var(--navy-900);
}
.article-card p {
  font-size: 0.9375rem;
  color: var(--gray-600);
  line-height: 1.6;
  margin-bottom: 1.25rem;
  flex: 1;
}
.article-card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  color: var(--gold-700);
  font-weight: 600;
  font-size: 0.875rem;
  margin-top: auto;
}
.article-card:hover .article-card-link { color: var(--navy-900); }
.article-card-link svg { width: 14px; height: 14px; transition: transform 0.3s var(--ease); }
.article-card:hover .article-card-link svg { transform: translateX(4px); }

/* ============================================
   AEO / GEO CONTENT BLOCKS
   ============================================ */

/* Answer-first callout (TL;DR) */
.answer-block {
  background: linear-gradient(135deg, rgba(212,175,55,0.08), rgba(20,184,166,0.06));
  border: 1px solid var(--gold-600);
  border-left: 6px solid var(--gold-600);
  border-radius: 16px;
  padding: 2rem 2.25rem;
  max-width: 880px;
  margin: 0 auto;
  position: relative;
}
.answer-block .ab-label {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.75rem;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: 0.875rem;
}
.answer-block .ab-label::before {
  content: '⚡';
  font-size: 1rem;
}
.answer-block h2, .answer-block h3 {
  font-size: 1.375rem;
  margin-bottom: 0.875rem;
  color: var(--navy-900);
  letter-spacing: -0.015em;
}
.answer-block p {
  font-size: 1.0625rem;
  line-height: 1.7;
  color: var(--gray-700);
  margin-bottom: 0.75rem;
}
.answer-block p:last-child { margin-bottom: 0; }
.answer-block strong { color: var(--navy-900); }

/* Glossary cards */
.glossary-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(290px, 1fr));
  gap: 1.25rem;
  margin-top: 2rem;
}
.glossary-card {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 1.75rem;
  transition: all 0.4s var(--ease-out);
  scroll-margin-top: 90px;
}
.glossary-card:hover {
  transform: translateY(-4px);
  border-color: var(--gold-600);
  box-shadow: var(--shadow-lg);
}
.glossary-term {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy-900);
  margin-bottom: 0.25rem;
  display: flex;
  align-items: center;
  gap: 0.5rem;
}
.glossary-term .acronym {
  background: var(--gold-600);
  color: var(--navy-900);
  font-family: var(--font-body);
  font-size: 0.6875rem;
  font-weight: 700;
  letter-spacing: 0.1em;
  padding: 0.25rem 0.5rem;
  border-radius: 6px;
  text-transform: uppercase;
}
.glossary-meaning {
  font-size: 0.8125rem;
  color: var(--gray-500);
  font-style: italic;
  margin-bottom: 0.875rem;
  font-weight: 500;
}
.glossary-card p {
  font-size: 0.9375rem;
  line-height: 1.65;
  color: var(--gray-700);
  margin: 0;
}

/* Certification comparison table */
.cert-table-wrap {
  overflow-x: auto;
  margin-top: 2.5rem;
  border-radius: 16px;
  box-shadow: var(--shadow-md);
}
.cert-table {
  width: 100%;
  border-collapse: collapse;
  min-width: 900px;
  background: white;
  font-size: 0.9375rem;
}
.cert-table th, .cert-table td {
  padding: 1rem 1.25rem;
  text-align: left;
  border-bottom: 1px solid var(--gray-200);
  vertical-align: top;
}
.cert-table thead th {
  background: var(--navy-900);
  color: white;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
  position: sticky;
  top: 0;
}
.cert-table tbody tr:hover { background: var(--cream-50); }
.cert-table tbody td:first-child {
  font-weight: 700;
  color: var(--navy-900);
  font-family: var(--font-display);
  font-size: 1rem;
}
.cert-table .small { font-size: 0.8125rem; color: var(--gray-500); display: block; margin-top: 0.25rem; }

/* Source citation */
.source-cite {
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
  font-size: 0.8125rem;
  color: var(--gray-500);
  font-style: italic;
  margin-top: 0.75rem;
}
.source-cite a {
  color: var(--gold-700);
  border-bottom: 1px dotted currentColor;
  font-style: normal;
  font-weight: 500;
}
.source-cite a:hover { color: var(--navy-900); }

/* Expanded team bio */
.team-bio-expanded {
  display: grid;
  grid-template-columns: 1fr 2fr;
  gap: 2.5rem;
  align-items: start;
  margin-bottom: 3rem;
  padding: 2rem;
  background: white;
  border-radius: 20px;
  border: 1px solid var(--gray-200);
}
.team-bio-expanded .photo {
  position: relative;
  border-radius: 16px;
  overflow: hidden;
  aspect-ratio: 3/4;
  box-shadow: var(--shadow-md);
}
.team-bio-expanded .photo img { width: 100%; height: 100%; object-fit: cover; }
.team-bio-expanded h3 { font-size: 1.625rem; margin-bottom: 0.25rem; }
.team-bio-expanded .role {
  font-size: 0.8125rem;
  color: var(--gold-700);
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
  margin-bottom: 1.25rem;
}
.team-bio-expanded .credentials {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin: 1rem 0 1.25rem;
}
.team-bio-expanded .credentials span {
  background: var(--cream-100);
  color: var(--navy-800);
  padding: 0.375rem 0.75rem;
  border-radius: 999px;
  font-size: 0.75rem;
  font-weight: 600;
}
.team-bio-expanded p { font-size: 0.9375rem; line-height: 1.7; color: var(--gray-700); margin-bottom: 1rem; }
.team-bio-expanded ul { margin-top: 1rem; padding-left: 0; }
.team-bio-expanded ul li {
  position: relative;
  padding-left: 1.5rem;
  font-size: 0.9375rem;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
  line-height: 1.6;
}
.team-bio-expanded ul li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0.55rem;
  width: 14px;
  height: 14px;
  background: var(--teal-500);
  border-radius: 50%;
  background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'><path d='M9 16.17L4.83 12l-1.42 1.41L9 19 21 7l-1.41-1.41z'/></svg>");
  background-size: 10px;
  background-position: center;
  background-repeat: no-repeat;
}

@media (max-width: 768px) {
  .team-bio-expanded { grid-template-columns: 1fr; gap: 1.5rem; padding: 1.5rem; }
  .team-bio-expanded .photo { max-width: 240px; }
}

/* ============================================
   LEGAL PAGES
   ============================================ */
.legal {
  max-width: 920px;
  margin: 0 auto;
  padding: 0 var(--container-pad);
}
.legal h2 {
  font-size: clamp(1.5rem, 2.5vw, 1.875rem);
  margin-top: 3rem;
  margin-bottom: 1rem;
  color: var(--navy-900);
  padding-bottom: 0.75rem;
  border-bottom: 2px solid var(--gold-600);
  display: inline-block;
}
.legal h2:first-of-type { margin-top: 0; }
.legal h3 {
  font-size: 1.25rem;
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  color: var(--navy-800);
  font-family: var(--font-body);
  font-weight: 700;
}
.legal p {
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-700);
  margin-bottom: 1.25rem;
}
.legal ul, .legal ol {
  padding-left: 1.5rem;
  margin-bottom: 1.5rem;
}
.legal ul li, .legal ol li {
  list-style: disc;
  font-size: 1rem;
  line-height: 1.8;
  color: var(--gray-700);
  margin-bottom: 0.5rem;
}
.legal ol li { list-style: decimal; }
.legal a {
  color: var(--gold-700);
  font-weight: 500;
  border-bottom: 1px solid currentColor;
  transition: color 0.3s var(--ease);
}
.legal a:hover { color: var(--navy-900); }
.legal strong { color: var(--navy-900); font-weight: 700; }
.legal-meta {
  background: var(--cream-100);
  border-left: 4px solid var(--gold-600);
  padding: 1.5rem 1.75rem;
  border-radius: 12px;
  margin-bottom: 3rem;
}
.legal-meta p { margin: 0 0 0.5rem; font-size: 0.9375rem; }
.legal-meta p:last-child { margin-bottom: 0; }
.legal-toc {
  background: white;
  border: 1px solid var(--gray-200);
  border-radius: 16px;
  padding: 1.75rem 2rem;
  margin-bottom: 3rem;
  box-shadow: var(--shadow-sm);
}
.legal-toc h4 {
  font-family: var(--font-body);
  font-size: 0.8125rem;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--gold-700);
  margin-bottom: 1rem;
}
.legal-toc ol {
  padding-left: 1.25rem;
  margin: 0;
  columns: 2;
  column-gap: 2rem;
}
.legal-toc ol li {
  margin-bottom: 0.5rem;
  font-size: 0.9375rem;
  break-inside: avoid;
  list-style: decimal;
  color: var(--gray-600);
}
.legal-toc a {
  color: var(--navy-800);
  border-bottom: none;
  font-weight: 500;
}
.legal-toc a:hover { color: var(--gold-700); }
@media (max-width: 640px) {
  .legal-toc ol { columns: 1; }
}

/* ============================================
   UTILITIES
   ============================================ */
.mt-0 { margin-top: 0; }
.mb-0 { margin-bottom: 0; }
.text-center { text-align: center; }
