/* ============================================================
   EIDDI — Global Stylesheet
   Clean & Corporate: White + Deep Blue
   Font Stack: Inter, Helvetica Neue, Arial, sans-serif
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&display=swap');

:root {
  --blue-900: #0a1628;
  --blue-800: #0d1f3c;
  --blue-700: #102a50;
  --blue-600: #1a3a6b;
  --blue-500: #1e4fa3;
  --blue-400: #2563eb;
  --blue-300: #3b82f6;
  --blue-200: #93c5fd;
  --blue-100: #dbeafe;
  --blue-50:  #eff6ff;
  --accent:   #0ea5e9;
  --accent-2: #06b6d4;
  --white:    #ffffff;
  --gray-50:  #f8fafc;
  --gray-100: #f1f5f9;
  --gray-200: #e2e8f0;
  --gray-300: #cbd5e1;
  --gray-500: #64748b;
  --gray-700: #334155;
  --gray-900: #0f172a;
  --font-main: 'Inter', 'Helvetica Neue', Arial, sans-serif;
  --shadow-sm: 0 1px 3px rgba(0,0,0,.08);
  --shadow-md: 0 4px 20px rgba(10,22,40,.12);
  --shadow-lg: 0 10px 40px rgba(10,22,40,.18);
  --shadow-xl: 0 20px 60px rgba(10,22,40,.25);
  --radius:    8px;
  --radius-lg: 16px;
  --transition: .3s cubic-bezier(.4,0,.2,1);
}

*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

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

body {
  font-family: var(--font-main);
  color: var(--gray-900);
  background: var(--white);
  line-height: 1.65;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
}

/* ── VIDEO BACKGROUND ──────────────────────────────────────── */
.video-hero {
  position: relative;
  min-height: 100vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--blue-900);
}

.video-bg {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  z-index: 0;
  opacity: .45;
}

.video-overlay {
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, rgba(10,22,40,.85) 0%, rgba(30,79,163,.55) 60%, rgba(10,22,40,.7) 100%);
  z-index: 1;
}

.video-content {
  position: relative;
  z-index: 2;
  width: 100%;
}

/* ── PAGE VIDEO HERO (shorter, for inner pages) ─────────────── */
.page-hero {
  position: relative;
  min-height: 55vh;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--blue-900);
}

/* ── NAVBAR ─────────────────────────────────────────────────── */
#site-header {
  position: fixed;
  top: 0; left: 0; right: 0;
  z-index: 1050;
  transition: background var(--transition), box-shadow var(--transition), padding var(--transition);
  padding: .9rem 0;
}

#site-header.scrolled {
  background: rgba(10,22,40,.97) !important;
  backdrop-filter: blur(12px);
  box-shadow: 0 2px 20px rgba(0,0,0,.3);
  padding: .55rem 0;
}

.navbar-brand img { height: 40px; }
.navbar-brand span {
  font-size: 1.5rem;
  font-weight: 800;
  letter-spacing: -.5px;
  color: var(--white);
}
.navbar-brand span em {
  font-style: normal;
  color: var(--accent);
}

.navbar-nav .nav-link {
  color: rgba(255,255,255,.88) !important;
  font-weight: 500;
  font-size: .875rem;
  letter-spacing: .3px;
  padding: .45rem .85rem !important;
  transition: color var(--transition);
  position: relative;
}

.navbar-nav .nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: .85rem; right: .85rem;
  height: 2px;
  background: var(--accent);
  transform: scaleX(0);
  transition: transform var(--transition);
  border-radius: 2px;
}

.navbar-nav .nav-link:hover { color: var(--accent) !important; }
.navbar-nav .nav-link:hover::after,
.navbar-nav .nav-link.active::after { transform: scaleX(1); }
.navbar-nav .nav-link.active { color: var(--accent) !important; }

.dropdown-menu {
  background: var(--blue-800);
  border: 1px solid rgba(255,255,255,.08);
  border-radius: var(--radius);
  box-shadow: var(--shadow-xl);
  padding: .5rem;
  min-width: 220px;
}

.dropdown-item {
  color: rgba(255,255,255,.85);
  font-size: .875rem;
  font-weight: 500;
  padding: .55rem 1rem;
  border-radius: 6px;
  transition: all var(--transition);
}

.dropdown-item:hover {
  background: rgba(59,130,246,.2);
  color: var(--accent);
}

.btn-nav-cta {
  background: var(--blue-400);
  color: var(--white) !important;
  border-radius: 6px;
  padding: .5rem 1.25rem !important;
  font-weight: 600;
  font-size: .875rem;
  transition: all var(--transition);
}

.btn-nav-cta:hover {
  background: var(--blue-300) !important;
  transform: translateY(-1px);
  box-shadow: 0 4px 15px rgba(37,99,235,.4);
}

.navbar-toggler {
  border-color: rgba(255,255,255,.3);
  color: white;
}
.navbar-toggler-icon { filter: invert(1); }

/* ── TYPOGRAPHY ─────────────────────────────────────────────── */
.display-1 { font-size: clamp(2.5rem, 6vw, 4.5rem); font-weight: 800; line-height: 1.1; letter-spacing: -1.5px; }
.display-2 { font-size: clamp(2rem, 5vw, 3.75rem); font-weight: 800; line-height: 1.1; letter-spacing: -1px; }
.display-3 { font-size: clamp(1.75rem, 4vw, 3rem); font-weight: 700; line-height: 1.15; letter-spacing: -.5px; }
h1 { font-size: clamp(1.75rem, 4vw, 2.75rem); font-weight: 700; line-height: 1.2; }
h2 { font-size: clamp(1.5rem, 3vw, 2.25rem); font-weight: 700; line-height: 1.25; }
h3 { font-size: clamp(1.2rem, 2.5vw, 1.75rem); font-weight: 600; line-height: 1.3; }
h4 { font-size: 1.2rem; font-weight: 600; }
h5 { font-size: 1rem; font-weight: 600; }

.text-white-muted { color: rgba(255,255,255,.72) !important; }
.text-accent { color: var(--accent) !important; }
.text-blue { color: var(--blue-500) !important; }

.section-label {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: .75rem;
  display: block;
}

.section-title {
  font-size: clamp(1.75rem, 3.5vw, 2.5rem);
  font-weight: 800;
  letter-spacing: -.5px;
  color: var(--blue-900);
  line-height: 1.2;
}

.section-title-white {
  color: var(--white);
}

.lead { font-size: 1.1rem; font-weight: 400; line-height: 1.75; }

/* ── BUTTONS ────────────────────────────────────────────────── */
.btn {
  font-family: var(--font-main);
  font-weight: 600;
  border-radius: var(--radius);
  letter-spacing: .2px;
  transition: all var(--transition);
  border: none;
}

.btn-primary-eiddi {
  background: var(--blue-400);
  color: var(--white);
  padding: .85rem 2rem;
  font-size: .95rem;
}

.btn-primary-eiddi:hover {
  background: var(--blue-300);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(37,99,235,.4);
  color: var(--white);
}

.btn-outline-eiddi {
  background: transparent;
  color: var(--white);
  border: 2px solid rgba(255,255,255,.5);
  padding: .82rem 2rem;
  font-size: .95rem;
}

.btn-outline-eiddi:hover {
  background: rgba(255,255,255,.12);
  border-color: var(--white);
  color: var(--white);
  transform: translateY(-2px);
}

.btn-accent {
  background: var(--accent);
  color: var(--white);
  padding: .85rem 2rem;
  font-size: .95rem;
}

.btn-accent:hover {
  background: var(--accent-2);
  transform: translateY(-2px);
  box-shadow: 0 8px 25px rgba(14,165,233,.4);
  color: var(--white);
}

/* ── CARDS ──────────────────────────────────────────────────── */
.card-eiddi {
  background: var(--white);
  border: 1px solid var(--gray-200);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  height: 100%;
}

.card-eiddi:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-xl);
  border-color: var(--blue-300);
}

.card-eiddi-dark {
  background: rgba(255,255,255,.06);
  border: 1px solid rgba(255,255,255,.1);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--transition);
  height: 100%;
  backdrop-filter: blur(8px);
}

.card-eiddi-dark:hover {
  background: rgba(255,255,255,.1);
  border-color: rgba(59,130,246,.4);
  transform: translateY(-4px);
}

.card-icon {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: var(--blue-50);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--blue-500);
  font-size: 1.4rem;
  transition: all var(--transition);
}

.card-eiddi:hover .card-icon {
  background: var(--blue-400);
  color: var(--white);
}

.card-icon-dark {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  background: rgba(37,99,235,.2);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  color: var(--accent);
  font-size: 1.4rem;
}

/* ── SECTIONS ───────────────────────────────────────────────── */
.section-py { padding: 5rem 0; }
.section-py-sm { padding: 3.5rem 0; }
.section-py-lg { padding: 7rem 0; }

.bg-blue-dark { background: var(--blue-900); }
.bg-blue-mid  { background: var(--blue-800); }
.bg-section   { background: var(--gray-50); }

/* ── DIVIDER ─────────────────────────────────────────────────── */
.divider-accent {
  width: 60px;
  height: 4px;
  background: linear-gradient(90deg, var(--blue-400), var(--accent));
  border-radius: 2px;
  margin: 1rem 0 1.75rem;
}

.divider-center { margin: 1rem auto 1.75rem; }

/* ── STATS BAR ──────────────────────────────────────────────── */
.stat-item h3 {
  font-size: 2.5rem;
  font-weight: 800;
  color: var(--white);
  line-height: 1;
}

.stat-item p {
  font-size: .875rem;
  color: rgba(255,255,255,.65);
  margin-top: .35rem;
}

/* ── BADGE ───────────────────────────────────────────────────── */
.badge-eiddi {
  background: var(--blue-50);
  color: var(--blue-600);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .5px;
  padding: .35rem .85rem;
  border-radius: 50px;
  display: inline-block;
}

.badge-eiddi-dark {
  background: rgba(37,99,235,.25);
  color: var(--blue-200);
  font-size: .75rem;
  font-weight: 600;
  letter-spacing: .5px;
  padding: .35rem .85rem;
  border-radius: 50px;
  display: inline-block;
}

/* ── SERVICE PILL ────────────────────────────────────────────── */
.service-pill {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  background: rgba(37,99,235,.1);
  border: 1px solid rgba(37,99,235,.25);
  color: var(--blue-300);
  font-size: .8rem;
  font-weight: 600;
  padding: .4rem 1rem;
  border-radius: 50px;
}

/* ── TIMELINE ────────────────────────────────────────────────── */
.timeline-item {
  position: relative;
  padding-left: 2.5rem;
  padding-bottom: 2rem;
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: .7rem;
  top: .5rem;
  bottom: 0;
  width: 2px;
  background: var(--blue-200);
}

.timeline-item:last-child::before { display: none; }

.timeline-dot {
  position: absolute;
  left: 0;
  top: .25rem;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 50%;
  background: var(--blue-400);
  border: 3px solid var(--white);
  box-shadow: 0 0 0 2px var(--blue-400);
}

/* ── FOOTER ─────────────────────────────────────────────────── */
#site-footer {
  background: var(--blue-900);
  border-top: 1px solid rgba(255,255,255,.07);
  color: rgba(255,255,255,.7);
  font-size: .9rem;
}

.footer-brand span {
  font-size: 1.4rem;
  font-weight: 800;
  color: var(--white);
}

.footer-brand span em {
  font-style: normal;
  color: var(--accent);
}

.footer-heading {
  font-size: .75rem;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: var(--white);
  margin-bottom: 1.25rem;
}

.footer-links { list-style: none; padding: 0; }

.footer-links a {
  color: rgba(255,255,255,.6);
  text-decoration: none;
  font-size: .875rem;
  display: block;
  padding: .3rem 0;
  transition: color var(--transition);
}

.footer-links a:hover { color: var(--accent); }

.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.08);
  padding: 1.5rem 0;
  font-size: .8rem;
  color: rgba(255,255,255,.4);
}

.social-icon {
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: rgba(255,255,255,.07);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.6);
  text-decoration: none;
  transition: all var(--transition);
  font-size: 1rem;
}

.social-icon:hover {
  background: var(--blue-400);
  color: var(--white);
  transform: translateY(-2px);
}

/* ── BREADCRUMB ──────────────────────────────────────────────── */
.breadcrumb-eiddi {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  color: rgba(255,255,255,.55);
  margin-bottom: 1.25rem;
}

.breadcrumb-eiddi a { color: rgba(255,255,255,.7); text-decoration: none; }
.breadcrumb-eiddi a:hover { color: var(--accent); }
.breadcrumb-eiddi span { color: rgba(255,255,255,.35); }

/* ── FORM STYLES ─────────────────────────────────────────────── */
.form-control, .form-select {
  border: 1.5px solid var(--gray-200);
  border-radius: var(--radius);
  padding: .75rem 1rem;
  font-family: var(--font-main);
  font-size: .9rem;
  color: var(--gray-900);
  transition: all var(--transition);
}

.form-control:focus, .form-select:focus {
  border-color: var(--blue-400);
  box-shadow: 0 0 0 3px rgba(37,99,235,.12);
  outline: none;
}

.form-label {
  font-size: .85rem;
  font-weight: 600;
  color: var(--gray-700);
  margin-bottom: .4rem;
}

/* ── ANIMATIONS ──────────────────────────────────────────────── */
@keyframes fadeInUp {
  from { opacity: 0; transform: translateY(30px); }
  to   { opacity: 1; transform: translateY(0); }
}

@keyframes fadeInLeft {
  from { opacity: 0; transform: translateX(-30px); }
  to   { opacity: 1; transform: translateX(0); }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to   { opacity: 1; }
}

@keyframes pulse-ring {
  0%   { transform: scale(.9); opacity: .8; }
  50%  { transform: scale(1.05); opacity: .5; }
  100% { transform: scale(.9); opacity: .8; }
}

.animate-fade-up   { animation: fadeInUp .7s ease both; }
.animate-fade-left { animation: fadeInLeft .7s ease both; }
.animate-fade      { animation: fadeIn .7s ease both; }
.delay-1 { animation-delay: .15s; }
.delay-2 { animation-delay: .3s; }
.delay-3 { animation-delay: .45s; }
.delay-4 { animation-delay: .6s; }

/* ── HERO CONTENT ────────────────────────────────────────────── */
.hero-tagline {
  font-size: .8rem;
  font-weight: 700;
  letter-spacing: 3px;
  text-transform: uppercase;
  color: var(--accent);
  display: flex;
  align-items: center;
  gap: .6rem;
  margin-bottom: 1.25rem;
}

.hero-tagline::before {
  content: '';
  width: 30px;
  height: 2px;
  background: var(--accent);
  border-radius: 2px;
}

.hero-title {
  font-size: clamp(2.5rem, 5.5vw, 4.25rem);
  font-weight: 900;
  line-height: 1.08;
  letter-spacing: -2px;
  color: var(--white);
}

.hero-title .highlight {
  background: linear-gradient(135deg, var(--blue-300), var(--accent));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 1.1rem;
  color: rgba(255,255,255,.72);
  line-height: 1.75;
  max-width: 560px;
}

/* ── TRUST BADGES ────────────────────────────────────────────── */
.trust-badge {
  display: flex;
  align-items: center;
  gap: .5rem;
  font-size: .8rem;
  font-weight: 600;
  color: rgba(255,255,255,.65);
}

.trust-dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--accent);
  flex-shrink: 0;
}

/* ── SCROLL TO TOP ───────────────────────────────────────────── */
#scrollTop {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: var(--blue-400);
  color: var(--white);
  border: none;
  display: flex;
  align-items: center;
  justify-content: center;
  z-index: 999;
  opacity: 0;
  pointer-events: none;
  transition: all var(--transition);
  cursor: pointer;
  box-shadow: var(--shadow-md);
}

#scrollTop.show { opacity: 1; pointer-events: auto; }
#scrollTop:hover { background: var(--blue-300); transform: translateY(-3px); }

/* ── LEGAL PAGE ──────────────────────────────────────────────── */
.legal-section h3 {
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--blue-800);
  margin: 2rem 0 .75rem;
  padding-top: 1rem;
  border-top: 1px solid var(--gray-200);
}

.legal-section h3:first-child { border-top: none; margin-top: 0; }

.legal-section p, .legal-section li {
  font-size: .92rem;
  color: var(--gray-700);
  line-height: 1.8;
  margin-bottom: .5rem;
}

.legal-section ul { padding-left: 1.5rem; }

.legal-alert {
  background: var(--blue-50);
  border-left: 4px solid var(--blue-400);
  border-radius: 0 var(--radius) var(--radius) 0;
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  font-size: .9rem;
  color: var(--blue-800);
}

/* ── RESPONSIVE ──────────────────────────────────────────────── */
@media (max-width: 767px) {
  /* md breakpoint navbar mobile styles */
  /* md breakpoint navbar mobile styles */
  .navbar-nav { padding: 1rem 0; }
  .navbar-nav .nav-link { padding: .6rem 0 !important; }
  .navbar-nav .nav-link::after { display: none; }
  .dropdown-menu { background: rgba(10,22,40,.6); border: none; box-shadow: none; }
  .video-hero { min-height: 100svh; }
}

@media (max-width: 768px) {
  .section-py { padding: 3.5rem 0; }
  .section-py-lg { padding: 4.5rem 0; }
  .stat-item h3 { font-size: 2rem; }
}

/* ── UTILITY ─────────────────────────────────────────────────── */
.rounded-xl { border-radius: var(--radius-lg) !important; }
.border-accent { border-color: var(--blue-300) !important; }
.fw-800 { font-weight: 800; }
.fw-900 { font-weight: 900; }

/* ── PRELOADER ───────────────────────────────────────────────── */
#preloader {
  position: fixed;
  inset: 0;
  background: var(--blue-900);
  z-index: 9999;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: opacity .5s ease, visibility .5s ease;
}

#preloader.hidden { opacity: 0; visibility: hidden; pointer-events: none; transition: opacity .4s, visibility .4s; }
#preloader.hidden { display: none !important; }

.preloader-logo {
  font-size: 2rem;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
}

.preloader-logo em {
  font-style: normal;
  color: var(--accent);
}

.preloader-bar {
  width: 160px;
  height: 3px;
  background: rgba(255,255,255,.15);
  border-radius: 2px;
  margin: 1rem auto 0;
  overflow: hidden;
}

.preloader-progress {
  height: 100%;
  background: linear-gradient(90deg, var(--blue-400), var(--accent));
  border-radius: 2px;
  animation: loading 1.2s ease forwards;
}

@keyframes loading {
  from { width: 0; }
  to   { width: 100%; }
}

/* ── INTERSECT REVEAL ────────────────────────────────────────── */
.reveal {
  opacity: 0;
  transform: translateY(28px);
  transition: opacity .65s ease, transform .65s ease;
}

.reveal.visible {
  opacity: 1;
  transform: none;
}

/* ── GSAP OVERRIDE — disable CSS animations when GSAP takes over ── */
/* GSAP sets initial opacity:0 and animates in — prevent CSS flash  */
.gsap-active .animate-fade-up,
.gsap-active .animate-fade-left,
.gsap-active .animate-fade {
  animation: none !important;
  opacity: 0;
}

/* Smooth 3D card perspective for tilt effect */
.card-eiddi {
  transform-style: preserve-3d;
  will-change: transform;
}

/* Floating ring animations — enhanced by GSAP but CSS fallback kept */
@keyframes float-gentle {
  0%, 100% { transform: translateY(0px) rotate(0deg); }
  50%       { transform: translateY(-12px) rotate(5deg); }
}

/* GSAP ScrollTrigger — ensure elements are invisible before scroll triggers */
.reveal {
  opacity: 0;
  transform: translateY(32px);
}

/* Already-visible class added by GSAP (fallback for no-JS) */
.reveal.gsap-visible {
  opacity: 1 !important;
  transform: none !important;
}

/* Preloader initial state for GSAP to animate from */
#preloader .preloader-logo {
  opacity: 0;
  transform: translateY(10px);
}

#preloader .preloader-bar {
  opacity: 0;
}

/* Smooth will-change for animated elements */
.hero-title,
.hero-tagline,
.hero-sub,
.section-title,
.section-label,
.divider-accent {
  will-change: opacity, transform;
}

/* Magnetic card — smooth transition for non-hover state */
.card-eiddi {
  transform-origin: center center;
}

/* ============================================================
   EIDDI — AUDIT PATCH  (appended; existing rules unchanged)
   Fixes: missing .wrapper, .section-num, .section-deck,
          .score-*, mobile responsive, notice-bar visibility
   ============================================================ */

/* ── WRAPPER (missing centred container used on /pk/ and /us/) ─ */
/* HTML change NOT needed — pure CSS addition */
.wrapper {
  width: 100%;
  max-width: 1200px;
  margin-left: auto;
  margin-right: auto;
  padding-left: 1.5rem;
  padding-right: 1.5rem;
}

@media (min-width: 1400px) {
  .wrapper { max-width: 1280px; }
}

/* ── SECTION NUMBER LABEL  (01 — Section Title) ─────────────── */
.section-num {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.72rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.14em;
  color: var(--gray-500);
  margin-bottom: 0.9rem;
  display: block;
}

/* ── SECTION DECK  (hero intro paragraph) ───────────────────── */
.section-deck {
  font-size: 1.05rem;
  color: var(--gray-700);
  line-height: 1.78;
  max-width: 720px;
}

/* ── SCORE GRID / CELLS  (metric strip on pk & us heroes) ───── */
/* These were inline-only; now properly classed for responsive  */
.score-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
  gap: 2rem;
  margin-bottom: 3.5rem;
}

.score-cell {
  border-left: 2px solid var(--blue-600);
  padding-left: 1rem;
}

.score-label {
  font-family: 'Courier New', Courier, monospace;
  font-size: 0.72rem;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--gray-500);
  margin-bottom: 0.2rem;
}

.score-value {
  font-size: 1.75rem;
  font-weight: 800;
  color: var(--blue-800);
  line-height: 1.1;
  margin: 0.2rem 0;
}

.score-note {
  font-size: 0.85rem;
  color: var(--gray-500);
  line-height: 1.5;
}

/* ── NOTICE BAR  (us/index.html vertical notice strip) ──────── */
/* Fixes invisible white text on near-white background           */
.notice-bar {
  background: var(--blue-50);
  border-bottom: 1px solid var(--blue-100);
  padding: 0.55rem 0;
}

.notice-bar-text {
  font-size: 0.8rem;
  color: var(--gray-700);
  text-align: center;
}

.notice-bar-text strong { color: var(--blue-500); }
.notice-bar-text a      { color: var(--gray-700); text-decoration: none; }
.notice-bar-text a:hover { color: var(--blue-500); }

/* ── FORM ROW — 2-COLUMN GRID RESPONSIVE FIX ────────────────── */
/* On mobile the inline 2-col grid creates cramped name/email    */
.form-row-2col {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
}

@media (max-width: 575px) {
  .form-row-2col {
    grid-template-columns: 1fr;
    gap: 1rem;
  }
  .score-grid {
    grid-template-columns: 1fr;
    gap: 1.25rem;
  }
}

/* ── HEADER OFFSET for pages that start with a light hero ────── */
/* The fixed #site-header is 72px tall. Pages with section-py    */
/* heroes (not full-viewport video) need this top-clearance.     */
.has-fixed-header {
  padding-top: 72px;
}

@media (max-width: 767px) {
  .has-fixed-header { padding-top: 64px; }
}

/* AUDIT PATCH 2: merged into main #site-header rule above */

/* Inner Page Header Visibility Contrast Fix */
body:not(.home-page) #site-header,
body:not([class*="home"]) #site-header {
    background: rgba(10, 22, 40, 0.98) !important;
    box-shadow: 0 2px 20px rgba(0,0,0,0.15);
}

/* ── PRELOADER PERMANENT HIDE FIX ──────────────────────────── */
#preloader.hidden {
}
/* ── WORD BREAK FIX ─────────────────────────────────────────── */
/* Prevents mid-word breaking on all text elements               */
body, p, h1, h2, h3, h4, h5, h6, li, a, span, div {
  word-break: keep-all;
  overflow-wrap: normal;
  word-wrap: normal;
  hyphens: none !important;
  -webkit-hyphens: none !important;
}
/* ── CONTAINER LEFT EDGE FIX ────────────────────────────────── */
/* Prevents content from touching the left edge of the screen    */
.container, .container-fluid {
}
@media (max-width: 767px) {
  .container, .container-fluid {
  }
}