/* IAC Core Styles v3.0 */
/* ============================================
   2. RESET & BASE
   ============================================ */
*, *::before, *::after { box-sizing: border-box; }

html {
  scroll-behavior: smooth;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

body {
  margin: 0;
  background-color: var(--white);
  color: var(--text-body);
  font-family: var(--font-body);
  font-size: 1rem;
  line-height: 1.6;
  overflow-x: hidden;
}

/* ============================================
   3. TYPOGRAPHY
   ============================================ */
h1, h2, h3, h4, h5, h6 {
  font-family: var(--font-display);
  color: var(--text-heading);
  letter-spacing: -0.01em;
  margin: 0 0 1rem 0;
  line-height: 1.2;
}

h1 { font-size: clamp(2.25rem, 4vw, 3.25rem); font-weight: 400; }
h2 { font-size: clamp(1.75rem, 3vw, 2.5rem); font-weight: 400; margin-bottom: 1.5rem; }
h3 { font-size: 1.375rem; font-weight: 600; font-family: var(--font-body); letter-spacing: -0.01em; }
h4 { font-size: 1.125rem; font-weight: 600; font-family: var(--font-body); }

p {
  color: var(--text-body);
  font-size: 1.0625rem;
  line-height: 1.7;
  max-width: 68ch;
  margin: 0 0 1.25rem 0;
}

a { color: var(--blue); text-decoration: none; transition: color var(--ease-fast); }
a:hover { color: var(--blue-light); }
strong { font-weight: 600; }

/* ============================================
   4. LAYOUT
   ============================================ */
.container { max-width: var(--container-max); margin: 0 auto; padding: 0 2rem; }
.section { padding: 5rem 0; position: relative; }
.section.compact { padding: 3rem 0; }
.section-split { display: grid; grid-template-columns: 1fr 1fr; gap: 4rem; align-items: center; }
.section-header { display: flex; justify-content: space-between; align-items: center; margin-bottom: 2rem; gap: 1rem; flex-wrap: wrap; }
.section-header h2 { margin-bottom: 0; }
.result-count-label { font-size: var(--text-sm); color: var(--text-muted); font-weight: 500; }
.directory-results { display: flex; flex-direction: column; gap: 1.5rem; min-height: 4rem; }

/* ============================================
   5. HEADER
   ============================================ */
.site-header {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(226, 232, 240, 0.6);
  padding: 0;
  transition: box-shadow var(--ease-normal), background var(--ease-normal);
}

.site-header.scrolled {
  box-shadow: 0 1px 12px rgba(0, 0, 0, 0.06);
  background: rgba(255, 255, 255, 0.97);
}

.header-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 0.875rem 0;
}

.brand { display: flex; align-items: center; gap: 0.75rem; }
.brand-logo { height: 44px; width: auto; }

.nav-links { display: flex; gap: 0.25rem; }

.nav-links a {
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-body);
  padding: 0.5rem 0.875rem;
  border-radius: var(--radius-md);
  transition: color var(--ease-fast), background var(--ease-fast);
  text-decoration: none;
  position: relative;
}

.nav-links a:hover { color: var(--navy); background: var(--slate-100); }

.nav-links a.active {
  color: var(--navy);
  background: var(--slate-100);
  font-weight: 600;
}

.nav-links a.active::after {
  content: '';
  position: absolute;
  bottom: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 16px;
  height: 2px;
  background: var(--gold);
  border-radius: 1px;
}

.nav-toggle {
  display: none;
  cursor: pointer;
  color: var(--text-heading);
  background: none;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  padding: 0.5rem 1rem;
  font-size: 0.875rem;
  font-family: var(--font-body);
  transition: background var(--ease-fast);
}

.nav-toggle:hover { background: var(--slate-100); }

/* ============================================
   6. HERO
   ============================================ */
.hero {
  padding: 6rem 0 5rem;
  background: var(--gradient-hero);
  color: var(--text-inverse);
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  top: -50%;
  right: -20%;
  width: 80%;
  height: 200%;
  background: radial-gradient(ellipse, rgba(181, 146, 43, 0.08) 0%, transparent 70%);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.hero-grid {
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 3rem;
  align-items: center;
  position: relative;
  z-index: 1;
  border-bottom: 1px solid transparent; /* Placeholder to keep structure */
}

.hero-grid::after {
  content: '';
  position: absolute;
  bottom: -5rem;
  left: -50vw;
  right: -50vw;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
  z-index: 1;
}

.eyebrow {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  border: 1px solid var(--gold);
  border-radius: var(--radius-sm);
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  color: var(--gold-dim);
  margin-bottom: 1.5rem;
  font-weight: 600;
  background: rgba(181, 146, 43, 0.06);
}

.hero .eyebrow { color: var(--gold-light); border-color: rgba(212, 175, 55, 0.4); background: rgba(212, 175, 55, 0.1); }

.hero h1 {
  margin-bottom: 1.25rem;
  color: var(--text-inverse);
  font-size: clamp(2.5rem, 5vw, 3.75rem);
}

.hero h1 .text-gold {
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero p { font-size: 1.125rem; color: rgba(255, 255, 255, 0.75); max-width: 540px; }

.hero-card {
  background: rgba(255, 255, 255, 0.05);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: var(--radius-2xl);
  padding: 2.5rem;
  color: var(--text-inverse);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.3);
  position: relative;
  overflow: hidden;
}

.hero-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
}

.hero-card h2 { color: var(--text-inverse); font-size: 1.5rem; margin-bottom: 0.75rem; }
.hero-card h2::after { display: none; }
.hero-card p { color: rgba(255, 255, 255, 0.7); font-size: 0.9375rem; }

.hero-search {
  position: relative;
  display: flex;
  align-items: center;
}

.hero-search input {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.15);
  color: var(--text-inverse);
  border-radius: var(--radius-lg);
  padding: 0.875rem 3rem 0.875rem 1.25rem;
  font-size: 0.9375rem;
  transition: all var(--ease-normal);
  width: 100%;
}

.hero-search input::placeholder { color: rgba(255, 255, 255, 0.4); }

.search-btn {
  position: absolute;
  right: 0.75rem;
  background: none;
  border: none;
  color: rgba(255, 255, 255, 0.5);
  cursor: pointer;
  padding: 0.25rem;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: color var(--ease-fast);
}
.search-btn:hover { color: var(--gold-light); }

.hero-search input:focus {
  border-color: var(--gold-light);
  outline: none;
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.2), 0 0 20px rgba(212, 175, 55, 0.1);
  background: rgba(255, 255, 255, 0.12);
}

.hero-actions { display: flex; gap: 0.875rem; margin-top: 2rem; }

.hero .cta.primary {
  background: var(--gradient-gold);
  color: var(--navy-dark);
  font-weight: 700;
  box-shadow: var(--shadow-gold);
}

.hero .cta.primary:hover {
  box-shadow: 0 6px 28px rgba(181, 146, 43, 0.3);
  transform: translateY(-2px);
}

.hero .cta.secondary {
  background: transparent;
  color: var(--text-inverse);
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.hero .cta.secondary:hover {
  background: rgba(255, 255, 255, 0.1);
  border-color: rgba(255, 255, 255, 0.5);
}

.hero-meta {
  display: flex;
  gap: 1.5rem;
  margin-top: 1.5rem;
  font-size: 0.8rem;
  color: rgba(255, 255, 255, 0.5);
}

.hero-meta span {
  display: flex;
  align-items: center;
  gap: 0.375rem;
}

.hero-meta span::before {
  content: '';
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--gold-light);
  display: inline-block;
}

/* Utility: metrics card */
.metrics-grid { display: grid; gap: 2rem; margin-top: 1.5rem; }

/* Utility: text-center */
.text-center { text-align: center; }
.section-intro { text-align: center; max-width: 800px; margin: 0 auto 4rem; }
.section-intro.narrow { max-width: 600px; margin-bottom: 3rem; }

/* Utility: spacing */
.mt-1 { margin-top: 0.5rem; }
.mt-2, .mt-sm { margin-top: 1rem; }
.mt-3, .mt-md { margin-top: 1.5rem; }
.mt-4, .mt-lg { margin-top: 2rem; }
.mb-1 { margin-bottom: 0.5rem; }
.mb-2, .mb-sm { margin-bottom: 1rem; }
.mb-3, .mb-md { margin-bottom: 1.5rem; }
.mb-4, .mb-lg { margin-bottom: 2rem; }
.mb-5, .mb-xl { margin-bottom: 4rem; }

/* Utility: card-meta, cta-group, badge-sm */
.card-meta { margin-top: 1rem; font-size: 0.9rem; color: var(--text-muted); }
.cta-group { margin-top: 1rem; display: flex; gap: 1rem; flex-wrap: wrap; }
.badge-sm { font-size: 0.75rem; }

/* ============================================
   7. BUTTONS / CTA
   ============================================ */
.cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.75rem;
  border-radius: var(--radius-md);
  font-weight: 600;
  font-size: 0.875rem;
  font-family: var(--font-body);
  letter-spacing: 0.02em;
  transition: all var(--ease-normal);
  cursor: pointer;
  border: none;
  text-decoration: none;
}

.cta.primary {
  background: var(--navy);
  color: var(--text-inverse);
  position: relative;
  overflow: hidden;
}

.cta.primary::after {
  content: '';
  position: absolute;
  top: 0;
  left: -100%;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255,255,255,0.1), transparent);
  transition: left 0.5s ease;
}

.cta.primary:hover {
  background: var(--navy-light);
  box-shadow: var(--shadow-lg);
  transform: translateY(-2px);
}

.cta.primary:hover::after { left: 100%; }

.cta.secondary {
  background: var(--white);
  color: var(--navy);
  border: 1px solid var(--border-medium);
}

.cta.secondary:hover {
  background: var(--slate-50);
  border-color: var(--navy);
  box-shadow: var(--shadow-sm);
  transform: translateY(-1px);
}

.cta:active {
  transform: scale(0.97);
  transition-duration: 0.1s;
}

.cta {
  position: relative;
  overflow: hidden;
}

.cta::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at var(--ripple-x, 50%) var(--ripple-y, 50%), rgba(255,255,255,0.3) 10%, transparent 60%);
  transform: scale(0);
  opacity: 0;
  transition: transform 0.5s, opacity 0.3s;
  pointer-events: none;
}

.cta.ripple::before {
  transform: scale(3);
  opacity: 1;
}

/* ============================================
   8. CARDS
   ============================================ */
.card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2rem;
  transition: all var(--ease-normal);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--gradient-gold);
  opacity: 0;
  transition: opacity var(--ease-normal);
}

.card:hover {
  border-color: var(--border-medium);
  box-shadow: var(--shadow-lg);
  transform: translateY(-4px);
}

.card:hover::before { opacity: 1; }

.card h3 { margin-bottom: 0.75rem; }
.card p { color: var(--text-muted); font-size: 0.9375rem; }

.card .card-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
  background: var(--slate-100);
  color: var(--navy);
}

.card .card-icon.gold { background: rgba(181, 146, 43, 0.1); color: var(--gold); }
.card .card-icon.blue { background: rgba(30, 64, 175, 0.08); color: var(--blue); }
.card .card-icon.green { background: var(--success-bg); color: var(--success); }

.card-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 1.5rem; }

/* ============================================
   9. DIRECTORY CARDS
   ============================================ */
.directory-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  margin-bottom: 1rem;
  transition: border-color var(--ease-fast), box-shadow var(--ease-fast);
}

.directory-card:hover { border-color: var(--border-medium); box-shadow: var(--shadow-sm); }

.status-panel {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  margin-bottom: 0.75rem;
}

.meta { display: flex; gap: 1rem; font-size: 0.8125rem; color: var(--text-muted); margin-top: 0.5rem; }
.meta span { position: relative; padding-right: 1rem; }
.meta span:not(:last-child)::after { content: '\00B7'; position: absolute; right: 0; color: var(--border-dark); }

/* ============================================
   10. BADGES
   ============================================ */
.badge {
  display: inline-block;
  padding: 0.2rem 0.625rem;
  border-radius: var(--radius-sm);
  font-size: 0.6875rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

.badge.active { background: var(--success-bg); color: var(--success); border: 1px solid var(--success-border); }
.badge.suspended { background: var(--warning-bg); color: var(--warning); border: 1px solid var(--warning-border); }
.badge.withdrawn { background: var(--error-bg); color: var(--error); border: 1px solid var(--error-border); }

/* ============================================
   11. TAGS
   ============================================ */
.tag-row { display: flex; flex-wrap: wrap; gap: 0.375rem; margin: 0.75rem 0; }

.tag {
  display: inline-block;
  padding: 0.15rem 0.5rem;
  background: var(--slate-100);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-sm);
  font-size: 0.6875rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* ============================================
   12. FORMS
   ============================================ */
input:not([type="checkbox"]):not([type="radio"]):not([type="hidden"]), select, textarea {
  width: 100%;
  padding: 0.75rem 1rem;
  background: var(--white);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  color: var(--text-heading);
  font-family: var(--font-body);
  font-size: 0.9375rem;
  transition: border-color var(--ease-fast), box-shadow var(--ease-fast);
}

input:focus, select:focus, textarea:focus {
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(30, 64, 175, 0.08);
  outline: none;
  transform: translateY(-1px);
  transition: all var(--ease-fast);
}

/* Animated underline for inputs */
.form-group {
  position: relative;
}

.form-group::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 50%;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width var(--ease-normal), left var(--ease-normal);
}

.form-group:focus-within::after {
  left: 0;
  width: 100%;
}

input::placeholder, textarea::placeholder { color: var(--text-muted); }

select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%2364748B' stroke-width='2'%3E%3Cpath d='m6 9 6 6 6-6'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 0.75rem center;
  padding-right: 2.5rem;
}

textarea { min-height: 120px; resize: vertical; }

.form-card {
  background: var(--slate-50);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 2.5rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.5rem;
  margin-bottom: 1.25rem;
}

.form-row > div > label, label {
  display: block;
  margin-bottom: 0.375rem;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-heading);
}

.form-consent { display: flex; align-items: flex-start; gap: 0.75rem; margin-top: 1.5rem; }
.form-consent input[type="checkbox"] { width: auto; margin-top: 0.25rem; }

/* Validation error styles */
.field-error { border-color: var(--error) !important; box-shadow: 0 0 0 3px var(--error-bg) !important; }
.field-error-msg { display: block; font-size: 0.8rem; color: var(--error); margin-top: 0.375rem; }

/* ============================================
   39. FORM VALIDATION STATES
   ============================================ */
.field-valid {
  border-color: var(--success) !important;
  box-shadow: 0 0 0 3px var(--success-bg) !important;
}

.field-valid + .field-valid-icon,
.field-valid::after {
  color: var(--success);
}

.btn-loading {
  position: relative;
  opacity: 0.8;
  pointer-events: none;
}

.btn-loading::after {
  content: '';
  position: absolute;
  right: 1rem;
  top: 50%;
  transform: translateY(-50%);
  width: 16px;
  height: 16px;
  border: 2px solid transparent;
  border-top-color: currentColor;
  border-radius: 50%;
  animation: spin 0.6s linear infinite;
}

@keyframes spin {
  to { transform: translateY(-50%) rotate(360deg); }
}

form[aria-busy="true"] input,
form[aria-busy="true"] select,
form[aria-busy="true"] textarea {
  opacity: 0.6;
  pointer-events: none;
}

/* ============================================
   13. LISTS
   ============================================ */
.list { list-style: none; padding: 0; margin: 0; }

.list li {
  padding: 0.75rem 0;
  border-bottom: 1px solid var(--border-light);
  color: var(--text-body);
  position: relative;
  padding-left: 1.75rem;
  font-size: 0.9375rem;
  transition: padding-left var(--ease-fast), color var(--ease-fast);
}

.list li::before {
  content: '\2192';
  position: absolute;
  left: 0;
  color: var(--gold);
  font-weight: 600;
  transition: transform var(--ease-fast);
}

.list li:hover { padding-left: 2rem; color: var(--text-heading); }
.list li:hover::before { transform: translateX(3px); }
.list li:last-child { border-bottom: none; }

.list li a {
  color: var(--text-body);
  text-decoration: none;
  font-weight: 500;
  transition: color var(--ease-fast);
}

.list li a:hover { color: var(--blue); }

/* ============================================
   14. BANNER / INFO BOX
   ============================================ */
.banner {
  background: var(--info-bg);
  border: 1px solid var(--info-border);
  border-left: 4px solid var(--blue);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  color: var(--text-body);
  font-size: 0.9375rem;
  line-height: 1.6;
  position: relative;
}

.notice { font-size: 0.8125rem; color: var(--text-muted); margin-top: 0.375rem; }

/* ============================================
   15. LINK ARROW
   ============================================ */
.link-arrow {
  color: var(--blue);
  font-weight: 600;
  font-size: 0.875rem;
  transition: color var(--ease-fast), gap var(--ease-fast);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
}

.link-arrow:hover { color: var(--blue-light); gap: 0.5rem; }

/* ============================================
   16. STEPS / PROCESS
   ============================================ */
.steps { counter-reset: step; padding: 0; list-style: none; }

.step {
  position: relative;
  padding: 1.5rem 0 1.5rem 4rem;
  border-left: 2px solid var(--border-light);
  margin-left: 1rem;
  counter-increment: step;
  transition: all var(--ease-normal);
}

.step:hover { border-left-color: var(--gold); }

.step::before {
  content: counter(step);
  position: absolute;
  left: -1.125rem;
  top: 1.5rem;
  width: 2.25rem;
  height: 2.25rem;
  background: var(--navy);
  color: var(--text-inverse);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 0.8125rem;
  font-weight: 600;
  font-family: var(--font-body);
  transition: all var(--ease-normal);
  box-shadow: 0 0 0 4px var(--white);
}

.step:hover::before {
  background: var(--gradient-gold);
  color: var(--navy-dark);
  transform: scale(1.15);
  box-shadow: 0 0 0 4px var(--white), var(--shadow-gold);
}

.step:last-child { border-left-color: transparent; }
.step:last-child:hover { border-left-color: transparent; }
.step h3 { margin-bottom: 0.5rem; font-size: 1.125rem; }
.step p { font-size: 0.9375rem; color: var(--text-muted); margin: 0.5rem 0 0; }

/* ============================================
   16b. DATA TABLES
   ============================================ */
.table-wrapper { overflow-x: auto; -webkit-overflow-scrolling: touch; border-radius: var(--radius-lg); border: 1px solid var(--border-light); }

.data-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 0.875rem;
}

.data-table thead { background: var(--slate-50); }
.data-table th {
  padding: 0.875rem 1.25rem;
  text-align: left;
  font-weight: 600;
  color: var(--text-heading);
  font-size: 0.8125rem;
  text-transform: uppercase;
  letter-spacing: 0.04em;
  border-bottom: 2px solid var(--border-light);
}
.data-table td {
  padding: 0.875rem 1.25rem;
  border-bottom: 1px solid var(--border-light);
  vertical-align: top;
  color: var(--text-body);
}
.data-table tbody tr:hover td { background: var(--slate-50); }
.data-table tbody tr:last-child td { border-bottom: none; }

/* ============================================
   17. TIMELINE
   ============================================ */
.timeline-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 1.5rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border-light);
}

.timeline-item:last-child { border-bottom: none; }

.timeline-item time {
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.04em;
}

/* ============================================
   18. REQUIREMENT CARD
   ============================================ */
.requirement-card {
  background: var(--white);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  padding: 1.5rem 2rem;
  margin-bottom: 1rem;
  border-left: 3px solid var(--navy);
}

.requirement-card h4 { margin-bottom: 0.5rem; }
.requirement-card p { font-size: 0.9375rem; color: var(--text-muted); margin: 0; }

/* ============================================
   19. FOOTER CTA BANNER
   ============================================ */
.footer-cta-banner {
  background: linear-gradient(135deg, var(--navy) 0%, #0D2240 50%, #132D4F 100%);
  padding: 4rem 0;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}

.footer-cta-banner::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}

.footer-cta-banner::after {
  content: '';
  position: absolute;
  bottom: -40%;
  right: -10%;
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(181, 146, 43, 0.06) 0%, transparent 70%);
  pointer-events: none;
}

.footer-cta-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 3rem;
  position: relative;
  z-index: 1;
}

.footer-cta-content { flex: 1; max-width: 420px; }

.footer-cta-title {
  font-family: var(--font-display);
  color: var(--text-inverse);
  font-size: 1.75rem;
  font-weight: 400;
  margin-bottom: 0.5rem;
  letter-spacing: -0.01em;
}

.footer-cta-text {
  color: rgba(255, 255, 255, 0.6);
  font-size: 0.9375rem;
  margin: 0;
  line-height: 1.6;
}

.footer-cta-form { flex: 1; max-width: 480px; }

.footer-cta-input-group {
  display: flex;
  gap: 0;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color var(--ease-normal), box-shadow var(--ease-normal);
}

.footer-cta-input-group:focus-within {
  border-color: var(--gold-light);
  box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15), 0 0 30px rgba(212, 175, 55, 0.08);
}

.footer-cta-input-group input {
  background: transparent;
  border: none;
  color: var(--text-inverse);
  padding: 0.875rem 1.25rem;
  font-size: 0.9375rem;
  flex: 1;
  border-radius: 0;
}

.footer-cta-input-group input::placeholder { color: rgba(255, 255, 255, 0.35); }
.footer-cta-input-group input:focus { outline: none; box-shadow: none; }

.footer-cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  background: var(--gradient-gold);
  color: var(--navy-dark);
  border: none;
  padding: 0.875rem 1.5rem;
  font-weight: 700;
  font-size: 0.8125rem;
  font-family: var(--font-body);
  letter-spacing: 0.03em;
  cursor: pointer;
  transition: all var(--ease-normal);
  white-space: nowrap;
  text-transform: uppercase;
}

.footer-cta-btn:hover {
  filter: brightness(1.1);
  box-shadow: 0 4px 20px rgba(181, 146, 43, 0.3);
}

.footer-cta-btn svg { transition: transform var(--ease-normal); }
.footer-cta-btn:hover svg { transform: translateX(3px); }

.footer-cta-notice {
  display: block;
  margin-top: 0.625rem;
  font-size: 0.75rem;
  color: rgba(255, 255, 255, 0.35);
  letter-spacing: 0.01em;
}

/* ============================================
   19b. FOOTER MAIN
   ============================================ */
.site-footer {
  background: linear-gradient(180deg, #04101F 0%, #060E1A 100%);
  color: var(--text-inverse);
  padding: 4.5rem 0 0;
  margin-top: 0;
  position: relative;
  overflow: hidden;
}

.site-footer::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent 10%, rgba(255,255,255,0.06) 50%, transparent 90%);
}

/* Decorative noise */
.footer-noise {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.02;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* Decorative glow orbs */
.footer-glow {
  position: absolute;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  pointer-events: none;
  z-index: 0;
  filter: blur(100px);
}

.footer-glow--left {
  top: -100px;
  left: -100px;
  background: radial-gradient(circle, rgba(30, 64, 175, 0.08) 0%, transparent 70%);
}

.footer-glow--right {
  bottom: -150px;
  right: -100px;
  background: radial-gradient(circle, rgba(181, 146, 43, 0.06) 0%, transparent 70%);
}

/* Footer Brand Column */
.footer-brand-col {
  position: relative;
  z-index: 1;
}

.footer-brand-link {
  display: inline-block;
  transition: opacity var(--ease-normal);
}

.footer-brand-link:hover { opacity: 0.85; }

.footer-logo {
  height: 44px;
  width: auto;
  filter: brightness(0) invert(1);
  margin-bottom: 1.25rem;
}

.footer-tagline {
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.875rem;
  line-height: 1.65;
  margin: 0 0 1.5rem 0;
  max-width: 280px;
}

/* Footer Contact Items */
.footer-contact-block {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-bottom: 1.5rem;
}

.footer-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 0.625rem;
  color: rgba(255, 255, 255, 0.55);
  font-size: 0.8125rem;
  line-height: 1.5;
  text-decoration: none;
  transition: color var(--ease-fast);
}

a.footer-contact-item:hover { color: var(--gold-light); }

.footer-contact-item svg {
  flex-shrink: 0;
  margin-top: 2px;
  color: rgba(255, 255, 255, 0.35);
  transition: color var(--ease-fast);
}

a.footer-contact-item:hover svg { color: var(--gold-light); }

/* Footer Social Links */
.footer-social {
  display: flex;
  gap: 0.5rem;
}

.footer-social-link {
  width: 36px;
  height: 36px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-md);
  color: rgba(255, 255, 255, 0.5);
  background: rgba(255, 255, 255, 0.04);
  border: 1px solid rgba(255, 255, 255, 0.08);
  transition: all var(--ease-normal);
  text-decoration: none;
}

.footer-social-link:hover {
  color: var(--gold-light);
  background: rgba(212, 175, 55, 0.1);
  border-color: rgba(212, 175, 55, 0.3);
  transform: translateY(-2px);
  box-shadow: 0 4px 16px rgba(212, 175, 55, 0.12);
}

/* Footer Grid */
.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr 1fr 1fr;
  gap: 2.5rem;
  position: relative;
  z-index: 1;
}

/* Footer Columns */
.footer-col { position: relative; z-index: 1; }

.footer-title,
.site-footer h4 {
  color: var(--text-inverse);
  font-weight: 600;
  margin-bottom: 1.25rem;
  font-size: 0.6875rem;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  font-family: var(--font-body);
  position: relative;
  padding-bottom: 0.75rem;
}

.footer-title::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  width: 20px;
  height: 2px;
  background: var(--gradient-gold);
  border-radius: 1px;
  transition: width var(--ease-slow);
}

.footer-col:hover .footer-title::after { width: 36px; }

/* Footer Links - enhanced */
.footer-links { list-style: none; padding: 0; margin: 0; }
.footer-links li { margin-bottom: 0.125rem; }

.footer-links a {
  color: rgba(255, 255, 255, 0.5);
  font-size: 0.8125rem;
  transition: all var(--ease-fast);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  padding: 0.3125rem 0;
  position: relative;
}

.footer-links a::before {
  content: '';
  position: absolute;
  left: -12px;
  top: 50%;
  transform: translateY(-50%);
  width: 0;
  height: 1px;
  background: var(--gold-light);
  transition: width var(--ease-fast);
}

.footer-links a:hover {
  color: var(--text-inverse);
  transform: translateX(8px);
}

.footer-links a:hover::before { width: 8px; }

/* Footer Link Highlight (Apply Now) */
.footer-link-highlight {
  color: var(--gold-light);
  font-weight: 600;
}

.footer-links a:hover .footer-link-highlight { color: var(--text-inverse); }

.footer-links a svg {
  opacity: 0;
  transform: translateX(-4px);
  transition: all var(--ease-fast);
}

.footer-links a:hover svg {
  opacity: 1;
  transform: translateX(0);
}

/* ============================================
   19c. FOOTER STANDARD BADGE
   ============================================ */
.footer-standard-badge {
  display: flex;
  align-items: center;
  gap: 1rem;
  padding: 1.25rem 1.5rem;
  margin-top: 3rem;
  background: rgba(255, 255, 255, 0.03);
  border: 1px solid rgba(255, 255, 255, 0.06);
  border-radius: var(--radius-lg);
  position: relative;
  z-index: 1;
  transition: border-color var(--ease-normal), background var(--ease-normal);
}

.footer-standard-badge:hover {
  border-color: rgba(212, 175, 55, 0.15);
  background: rgba(255, 255, 255, 0.04);
}

.footer-standard-icon {
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(212, 175, 55, 0.08);
  border-radius: var(--radius-md);
  color: var(--gold-light);
  flex-shrink: 0;
  transition: all var(--ease-normal);
}

.footer-standard-badge:hover .footer-standard-icon {
  background: rgba(212, 175, 55, 0.12);
  box-shadow: 0 0 20px rgba(212, 175, 55, 0.1);
}

.footer-standard-text {
  display: flex;
  flex-direction: column;
  gap: 0.125rem;
}

.footer-standard-text strong {
  color: rgba(255, 255, 255, 0.85);
  font-size: 0.8125rem;
  font-weight: 600;
  letter-spacing: 0.01em;
}

.footer-standard-text span {
  color: rgba(255, 255, 255, 0.4);
  font-size: 0.75rem;
  line-height: 1.4;
}

/* ============================================
   19d. FOOTER BOTTOM BAR
   ============================================ */
.footer-bottom {
  margin-top: 2rem;
  padding: 1.5rem 0;
  border-top: 1px solid rgba(255, 255, 255, 0.06);
  color: rgba(255, 255, 255, 0.35);
  font-size: 0.75rem;
  position: relative;
  z-index: 1;
}

.footer-bottom-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 1rem;
}

.footer-copyright { color: rgba(255, 255, 255, 0.35); }

.footer-legal-links {
  display: flex;
  gap: 1.25rem;
  font-size: 0.75rem;
}

.footer-legal-links a {
  color: rgba(255, 255, 255, 0.35);
  text-decoration: none;
  transition: color var(--ease-fast);
  position: relative;
}

.footer-legal-links a::after {
  content: '';
  position: absolute;
  bottom: -2px;
  left: 0;
  width: 0;
  height: 1px;
  background: var(--gold-light);
  transition: width var(--ease-fast);
}

.footer-legal-links a:hover { color: rgba(255, 255, 255, 0.7); }
.footer-legal-links a:hover::after { width: 100%; }

.footer-region {
  display: flex;
  align-items: center;
  gap: 0.375rem;
  color: rgba(255, 255, 255, 0.3);
  font-size: 0.75rem;
}

.footer-region svg { opacity: 0.5; }

/* ============================================
   19e. BACK TO TOP BUTTON
   ============================================ */
.back-to-top {
  position: fixed;
  bottom: 2rem;
  right: 2rem;
  width: 44px;
  height: 44px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--navy);
  color: var(--text-inverse);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 50%;
  cursor: pointer;
  z-index: 90;
  opacity: 0;
  visibility: hidden;
  transform: translateY(16px);
  transition: all var(--ease-normal);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.back-to-top.visible {
  opacity: 1;
  visibility: visible;
  transform: translateY(0);
}

.back-to-top:hover {
  background: var(--navy-light);
  border-color: var(--gold-light);
  transform: translateY(-3px);
  box-shadow: 0 8px 28px rgba(0, 0, 0, 0.25), 0 0 0 3px rgba(212, 175, 55, 0.1);
}

.back-to-top svg { transition: transform var(--ease-normal); }
.back-to-top:hover svg { transform: translateY(-2px); }

/* ============================================
   20. SKIP LINK
   ============================================ */
.skip-link {
  position: fixed;
  top: -100%;
  left: 1rem;
  background: var(--navy);
  color: var(--text-inverse);
  padding: 0.5rem 1rem;
  border-radius: 0 0 var(--radius-md) var(--radius-md);
  z-index: 200;
  font-weight: 600;
  font-size: 0.875rem;
  transition: top 0.2s;
}

.skip-link:focus { top: 0; color: var(--text-inverse); }

/* ============================================
   21. TOAST NOTIFICATIONS
   ============================================ */
.toast-container {
  position: fixed;
  top: 1.5rem;
  right: 1.5rem;
  z-index: 10000;
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.toast {
  display: flex;
  align-items: center;
  gap: 0.75rem;
  padding: 0.875rem 1.25rem;
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  background: var(--white);
  box-shadow: var(--shadow-lg);
  max-width: 400px;
  transition: opacity 0.3s, transform 0.3s;
}

.toast.success { border-left: 3px solid var(--success); color: var(--text-heading); }
.toast.error { border-left: 3px solid var(--error); color: var(--text-heading); }
.toast.info { border-left: 3px solid var(--info); color: var(--text-heading); }
.toast-icon { font-weight: bold; font-size: 1.1rem; }

/* ============================================
   22. CONSENT BANNER
   ============================================ */
.consent-banner {
  position: fixed;
  bottom: 1.5rem;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 3rem);
  max-width: 560px;
  background: rgba(255, 255, 255, 0.92);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border: 1px solid rgba(226, 232, 240, 0.6);
  border-radius: var(--radius-xl);
  padding: 1.5rem 2rem;
  z-index: 9998;
  box-shadow: 0 12px 40px rgba(0, 0, 0, 0.1);
}

.consent-actions { display: flex; gap: 0.75rem; justify-content: center; margin-top: 1rem; }
.consent-actions .cta { padding: 0.5rem 1.25rem; font-size: 0.8125rem; }

/* ============================================
   23. SCROLL ANIMATIONS
   ============================================ */
[data-scroll] {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.7s cubic-bezier(0.16, 1, 0.3, 1), transform 0.7s cubic-bezier(0.16, 1, 0.3, 1);
}

[data-scroll="in-view"] { opacity: 1; transform: translateY(0); }

/* Stagger cards inside grids */
.card-grid > [data-scroll]:nth-child(2) { transition-delay: 100ms; }
.card-grid > [data-scroll]:nth-child(3) { transition-delay: 200ms; }
.card-grid > [data-scroll]:nth-child(4) { transition-delay: 300ms; }
.card-grid > [data-scroll]:nth-child(5) { transition-delay: 400ms; }
.card-grid > [data-scroll]:nth-child(6) { transition-delay: 500ms; }

/* Stagger steps */
.steps > [data-scroll]:nth-child(2) { transition-delay: 80ms; }
.steps > [data-scroll]:nth-child(3) { transition-delay: 160ms; }
.steps > [data-scroll]:nth-child(4) { transition-delay: 240ms; }
.steps > [data-scroll]:nth-child(5) { transition-delay: 320ms; }
.steps > [data-scroll]:nth-child(6) { transition-delay: 400ms; }
.steps > [data-scroll]:nth-child(7) { transition-delay: 480ms; }
.steps > [data-scroll]:nth-child(8) { transition-delay: 560ms; }
.steps > [data-scroll]:nth-child(9) { transition-delay: 640ms; }
.steps > [data-scroll]:nth-child(10) { transition-delay: 720ms; }

/* ============================================
   24. BACKGROUND ELEMENTS
   ============================================ */
.bg-mesh { display: none; }

.noise-overlay {
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

/* ============================================
   25. UTILITY CLASSES (see section 6 for canonical definitions)
   ============================================ */
.text-muted { color: var(--text-muted); }
.mb-0 { margin-bottom: 0; }
.mt-0 { margin-top: 0; }

/* Page hero for inner pages */
.page-hero {
  background: var(--gradient-hero);
  padding: 3.5rem 0 3rem;
  color: var(--text-inverse);
  position: relative;
  overflow: hidden;
}

.page-hero::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  pointer-events: none;
  z-index: 0;
  opacity: 0.03;
  background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.65' numOctaves='3' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)'/%3E%3C/svg%3E");
}

.page-hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--gold-light), transparent);
}

.page-hero .container {
  position: relative;
  z-index: 1;
}

.page-hero h1 { color: var(--text-inverse); margin-bottom: 0.75rem; }
.page-hero p { color: rgba(255, 255, 255, 0.7); max-width: 640px; }
.page-hero .eyebrow { color: var(--gold-light); border-color: rgba(212, 175, 55, 0.4); background: rgba(212, 175, 55, 0.1); }
.page-hero .meta { color: rgba(255, 255, 255, 0.6); }
.page-hero .meta span { color: rgba(255, 255, 255, 0.6); }
.page-hero .meta span::after { color: rgba(255, 255, 255, 0.3); }
.page-hero .status-panel { margin-bottom: 1rem; }
.page-hero .badge { font-size: 0.75rem; }

/* Breadcrumbs */
.breadcrumbs {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: 0.8125rem;
  color: rgba(255, 255, 255, 0.5);
  margin-bottom: 1rem;
}

.breadcrumbs a {
  color: rgba(255, 255, 255, 0.6);
  text-decoration: none;
  transition: color var(--ease-fast);
}

.breadcrumbs a:hover { color: var(--gold-light); }
.breadcrumbs .separator { font-size: 0.625rem; }

/* Gold accent line under section headings */
.section h2::after {
  content: '';
  display: block;
  width: 48px;
  height: 3px;
  background: var(--gradient-gold);
  margin-top: 0.75rem;
  border-radius: 2px;
  transition: width var(--ease-slow);
}

.section:hover h2::after,
.section h2.text-center::after { width: 64px; }

.section h2.text-center::after { margin-left: auto; margin-right: auto; }

.section h2.no-bar::after { display: none; }

/* Alternating section backgrounds */
.section:nth-child(even) { background: var(--gradient-subtle); }

/* Section visual divider */
.section + .section::before {
  content: '';
  display: block;
  max-width: var(--container-max);
  margin: 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border-light) 20%, var(--border-light) 80%, transparent 100%);
}

/* Notice box (info callout) */
.notice-box {
  background: var(--info-bg);
  border: 1px solid var(--info-border);
  border-left: 4px solid var(--info);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.5rem;
  margin: 1.5rem 0;
  font-size: 0.9375rem;
  color: var(--text-body);
  line-height: 1.6;
}

.notice-box strong { color: var(--text-heading); }
.notice-box a { color: var(--blue); font-weight: 500; }

/* Divider */
.divider {
  height: 1px;
  background: linear-gradient(90deg, transparent 0%, var(--border-light) 20%, var(--border-light) 80%, transparent 100%);
  margin: 2rem 0;
  border: none;
}

/* ============================================
   26. FAQ ACCORDION
   ============================================ */
.faq-item {
  border: 1px solid var(--border-light);
  border-radius: var(--radius-lg);
  margin-bottom: 0.75rem;
  overflow: hidden;
  transition: all var(--ease-normal);
}

.faq-item:hover { border-color: var(--border-medium); }

.faq-item summary {
  padding: 1.25rem 1.5rem;
  font-weight: 600;
  font-size: 0.9375rem;
  cursor: pointer;
  list-style: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  color: var(--text-heading);
  transition: background var(--ease-fast);
}

.faq-item summary::-webkit-details-marker { display: none; }

.faq-item summary::after {
  content: '+';
  font-size: 1.25rem;
  font-weight: 400;
  color: var(--text-muted);
  transition: transform var(--ease-normal);
  flex-shrink: 0;
  margin-left: 1rem;
}

.faq-item[open] summary::after {
  content: '\2212';
  transform: rotate(180deg);
  color: var(--gold);
}

.faq-item summary:hover { background: var(--slate-50); }
.faq-item[open] summary { background: var(--slate-50); border-bottom: 1px solid var(--border-light); }
.faq-item[open] { border-color: var(--border-medium); box-shadow: var(--shadow-sm); }

.faq-item p {
  padding: 1rem 1.5rem 1.5rem;
  margin: 0;
  color: var(--text-body);
  line-height: 1.7;
  animation: faqSlide 0.3s ease;
}

@keyframes faqSlide {
  from { opacity: 0; transform: translateY(-8px); }
  to { opacity: 1; transform: translateY(0); }
}

/* ============================================
   27. METRIC VALUES
   ============================================ */
.metric-value {
  font-size: 2.25rem;
  font-weight: 700;
  font-family: var(--font-display);
  background: var(--gradient-gold);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1.2;
}

.metric-label {
  color: var(--text-muted);
  font-size: 0.875rem;
  margin-top: 0.25rem;
}

/* ============================================
   28. VISUAL DECORATIONS
   ============================================ */

/* Floating accent dots */
.section-intro::before {
  content: '\2022 \2022 \2022';
  display: block;
  text-align: center;
  color: var(--gold);
  letter-spacing: 0.5em;
  font-size: 0.625rem;
  margin-bottom: 1.5rem;
}

/* Directory card visual */
.directory-card {
  position: relative;
  overflow: hidden;
}

.directory-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 4px;
  height: 100%;
  background: var(--border-medium);
  transition: background var(--ease-fast);
}

.directory-card:hover::before { background: var(--gradient-gold); }

/* Requirement card visual */
.requirement-card { transition: all var(--ease-normal); }
.requirement-card:hover { transform: translateX(4px); box-shadow: var(--shadow-sm); }

/* Banner accent */
.banner {
  position: relative;
  overflow: hidden;
}

.banner::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 4px;
  background: var(--blue);
  border-radius: 2px 0 0 2px;
}

/* ============================================
   29. RESPONSIVE — TABLET (max 1024px)
   ============================================ */
@media (max-width: 1024px) {
  .hero-grid { grid-template-columns: 1fr; gap: 2rem; }
  .section-split { grid-template-columns: 1fr; gap: 2rem; }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }

  .nav-links {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    flex-direction: column;
    gap: 0;
    background: var(--white);
    border-top: 1px solid var(--border-light);
    box-shadow: var(--shadow-lg);
    padding: 0.5rem 0;
    z-index: 101;
  }

  .nav-links a {
    display: block;
    padding: 0.75rem 2rem;
    font-size: 0.9375rem;
    border-radius: 0;
    border-bottom: 1px solid var(--border-light);
  }

  .nav-links a:last-child { border-bottom: none; }
  .nav-links a:hover, .nav-links a.active { background: var(--slate-50); }
  .site-header[data-open="true"] .nav-links { display: flex; }
  .nav-toggle { display: block; }
  .card-grid { grid-template-columns: 1fr; }
}

/* ============================================
   30. RESPONSIVE — SMALL TABLET (max 768px)
   ============================================ */
@media (max-width: 768px) {
  .container { padding: 0 1.25rem; }
  .section { padding: 3rem 0; }
  .hero { padding: 3.5rem 0 3rem; }
  h1 { font-size: clamp(1.75rem, 5vw, 2.5rem); }
  h2 { font-size: clamp(1.5rem, 4vw, 2rem); }
  .form-row { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 1.5rem; }
  .hero-card { padding: 1.25rem; }
  .form-card { padding: 1.5rem; }
  .hero-search { display: none; }
  .hero-meta { flex-wrap: wrap; gap: 1rem; justify-content: center; }
  .hero .eyebrow { text-align: center; }
  .hero h1 { text-align: center; font-size: clamp(1.75rem, 5vw, 2.25rem); }
  .hero p { text-align: center; }
  .hero-actions { flex-direction: column; justify-content: center; }
  .hero-actions .cta { width: 100%; text-align: center; }
  .timeline-item { grid-template-columns: 1fr; gap: 0.25rem; }
}

/* ============================================
   31. RESPONSIVE — PHONE (max 480px)
   ============================================ */
@media (max-width: 480px) {
  .container { padding: 0 1rem; }
  .section { padding: 2.5rem 0; }
  .card { padding: 1.25rem; }
  .directory-card { padding: 1.25rem; }
  .hero-card { padding: 1.5rem; }
  p { font-size: 0.9375rem; }
  .card-grid { grid-template-columns: 1fr; }
  .cta { padding: 0.875rem 1.5rem; font-size: 0.8125rem; }
  .hero-actions { gap: 0.75rem; }
  .toast-container { right: 0.75rem; left: 0.75rem; top: 0.75rem; }
  .toast { max-width: 100%; }
  .consent-banner { width: calc(100% - 1.5rem); padding: 1.25rem; }
  .status-panel { flex-direction: column; gap: 0.5rem; }
}

/* ============================================
   32. FOCUS STATES (accessibility)
   ============================================ */
:focus-visible { outline: 2px solid var(--blue); outline-offset: 2px; }
a:focus:not(:focus-visible),
button:focus:not(:focus-visible),
input:focus:not(:focus-visible),
select:focus:not(:focus-visible),
textarea:focus:not(:focus-visible) { outline: none; }

/* ============================================
   33. PRINT STYLES
   ============================================ */
@media print {
  *, *::before, *::after { background: transparent !important; color: #000 !important; box-shadow: none !important; }
  body { font-size: 11pt; line-height: 1.5; }
  .site-header, .site-footer, .skip-link, .nav-toggle, .bg-mesh, .noise-overlay, .consent-banner, .toast-container, .cta { display: none !important; }
  .container { max-width: 100%; padding: 0; }
  .section { padding: 1rem 0; page-break-inside: avoid; }
  h1, h2, h3 { page-break-after: avoid; }
  a { text-decoration: underline; }
  a[href^="http"]::after { content: " (" attr(href) ")"; font-size: 0.8em; color: #666 !important; }
  .hero { padding: 1rem 0; border-bottom: 1px solid #ccc; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-card { border: 1px solid #ccc; padding: 1rem; }
  .card { border: 1px solid #ccc; page-break-inside: avoid; }
  .directory-card { border: 1px solid #ccc; page-break-inside: avoid; }
  .badge { border: 1px solid currentColor; }
}

/* ============================================
   36. TESTIMONIAL CARDS
   ============================================ */
.testimonial-card blockquote {
  margin: 0;
  padding: 0;
}

.testimonial-card blockquote p {
  font-style: italic;
  font-size: 1rem;
  line-height: 1.7;
  color: var(--text-body);
  margin-bottom: 1rem;
}

.testimonial-card blockquote footer {
  display: flex;
  flex-direction: column;
  gap: 0.25rem;
}

.testimonial-card blockquote footer strong {
  font-size: 0.9375rem;
  color: var(--text-heading);
}

.trust-metrics {
  max-width: 800px;
  margin: 0 auto;
}

.trust-metrics .metric-value {
  font-size: clamp(1.5rem, 3vw, 2.25rem);
}

/* ============================================
   37. HEADER CTA
   ============================================ */
.header-cta {
  padding: 0.5rem 1.25rem !important;
  font-size: 0.8125rem !important;
  margin-left: 0.5rem;
  white-space: nowrap;
}

@media (max-width: 768px) {
  .header-cta {
    margin-left: 0;
    margin-top: 0.5rem;
    text-align: center;
    width: 100%;
  }
}

/* ============================================
   40. DIRECTORY ENHANCEMENTS
   ============================================ */

/* Pagination */
.pagination {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 1rem;
  margin-top: 2rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--border-light);
}

.pagination-btn {
  padding: 0.5rem 1.25rem;
  background: var(--white);
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-md);
  font-size: 0.875rem;
  font-weight: 500;
  color: var(--text-body);
  cursor: pointer;
  transition: all var(--ease-fast);
}

.pagination-btn:hover:not(:disabled) {
  background: var(--slate-50);
  border-color: var(--blue);
  color: var(--blue);
}

.pagination-btn:disabled {
  opacity: 0.4;
  cursor: not-allowed;
}

.pagination-info {
  font-size: 0.875rem;
  color: var(--text-muted);
  font-weight: 500;
}

/* Search highlighting */
.directory-card mark {
  background: rgba(181, 146, 43, 0.2);
  padding: 0 2px;
  border-radius: 2px;
  color: inherit;
}

/* Skeleton loading */
.skeleton-card {
  pointer-events: none;
}

.skeleton-line {
  background: linear-gradient(90deg, var(--slate-100) 25%, var(--slate-200) 50%, var(--slate-100) 75%);
  background-size: 200% 100%;
  animation: shimmer 1.5s infinite;
  border-radius: var(--radius-sm);
}

@keyframes shimmer {
  0% { background-position: 200% 0; }
  100% { background-position: -200% 0; }
}

/* Mobile collapsible filters */
.mobile-filters {
  margin-bottom: 1rem;
}

.mobile-filters-toggle {
  cursor: pointer;
  padding: 0.75rem 1rem;
  background: var(--slate-50);
  border: 1px solid var(--border-light);
  border-radius: var(--radius-md);
  font-weight: 500;
  font-size: 0.875rem;
  color: var(--text-body);
  list-style: none;
}

.mobile-filters-toggle::-webkit-details-marker {
  display: none;
}

.mobile-filters-toggle::after {
  content: " \25BC";
  font-size: 0.75em;
}

.mobile-filters[open] .mobile-filters-toggle::after {
  content: " \25B2";
}

/* ============================================
   38. BREADCRUMBS
   ============================================ */
.breadcrumb {
  background: var(--slate-50);
  padding: 0.5rem 0;
  font-size: var(--text-sm);
  border-bottom: 1px solid var(--border-light);
}

.breadcrumb ol {
  list-style: none;
  padding: 0;
  margin: 0;
  display: flex;
  flex-wrap: wrap;
  gap: 0.25rem;
  align-items: center;
}

.breadcrumb li {
  display: inline-flex;
  align-items: center;
  color: var(--text-muted);
}

.breadcrumb li + li::before {
  content: "\203A";
  margin-right: 0.25rem;
  color: var(--border-dark);
}

.breadcrumb a {
  color: var(--text-muted);
  text-decoration: none;
  font-weight: 500;
}

.breadcrumb a:hover {
  color: var(--blue);
}

.breadcrumb [aria-current="page"] {
  color: var(--text-body);
  font-weight: 600;
}

/* ============================================
   35. MINIMUM TOUCH TARGETS (WCAG 2.5.8)
   ============================================ */
@media (pointer: coarse) {
  .cta, button, .nav-links a, select,
  input[type="checkbox"], input[type="radio"] {
    min-height: 44px;
    min-width: 44px;
  }

  .cta {
    padding: 0.875rem 1.5rem;
  }

  select {
    padding: 0.75rem 1rem;
  }
}

/* ============================================
   34. REDUCED MOTION / ACCESSIBILITY
   ============================================ */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
    scroll-behavior: auto !important;
  }
  .card, .hero-card, .section, [data-scroll] {
    opacity: 1 !important;
    transform: none !important;
  }
  .cta::before {
    display: none !important;
  }
  .cta:active {
    transform: none !important;
  }
}

/* ============================================
   5.b HEADER UTILITY BAR (B2G/Premium Expansion)
   ============================================ */
.utility-bar {
  background: var(--navy-dark);
  color: var(--slate-300);
  font-size: 0.75rem;
  padding: 0.5rem 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  display: flex;
  align-items: center;
}

.utility-flex {
  display: flex;
  justify-content: space-between;
  align-items: center;
  width: 100%;
}

.utility-left, .utility-right {
  display: flex;
  gap: 1.5rem;
  align-items: center;
}

.utility-link {
  color: var(--slate-300);
  text-decoration: none;
  font-weight: 500;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: color var(--ease-fast);
}

.utility-link:hover {
  color: var(--white);
}

.utility-link.highlight {
  color: var(--gold-light);
  font-weight: 600;
}

.utility-link.highlight:hover {
  color: var(--white);
}

.utility-link svg {
  opacity: 0.8;
}

@media (max-width: 768px) {
  .utility-bar {
    display: none;
  }
}

/* ============================================
   41. MOBILE STICKY CTA BAR
   ============================================ */
.mobile-cta-bar {
  display: none;
}

@media (max-width: 768px) {
  .mobile-cta-bar {
    display: flex;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: var(--z-header);
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-top: 1px solid var(--border-light);
    padding: 0.75rem 1rem;
    gap: 0.75rem;
    transform: translateY(100%);
    transition: transform var(--ease-normal);
  }

  .mobile-cta-bar.visible {
    transform: translateY(0);
  }

  .mobile-cta-bar .cta {
    flex: 1;
    text-align: center;
    font-size: 0.8125rem;
    padding: 0.75rem;
  }

  /* Add bottom padding to body so content isn't hidden behind the bar */
  body.has-sticky-cta {
    padding-bottom: 4rem;
  }
}

@media (prefers-reduced-motion: reduce) {
  .mobile-cta-bar {
    transition: none;
  }
}

/* ============================================
   42. FORM SUCCESS ANIMATION
   ============================================ */
.form-success {
  animation: successGlow 0.5s ease;
  border-color: var(--success) !important;
  box-shadow: 0 0 0 4px var(--success-bg) !important;
}

@keyframes successGlow {
  0% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.3); }
  50% { box-shadow: 0 0 0 8px rgba(22, 163, 74, 0.1); }
  100% { box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.05); }
}

@media (prefers-reduced-motion: reduce) {
  .form-success {
    animation: none;
  }
}

/* ============================================
   43. SEARCH TOGGLE BUTTON
   ============================================ */
.search-toggle {
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  color: var(--text-body);
  transition: color var(--ease-fast);
  display: inline-flex;
  align-items: center;
}

.search-toggle:hover {
  color: var(--blue);
}

/* ============================================
   44. SITE SEARCH MODAL
   ============================================ */
.search-modal {
  display: none;
  position: fixed;
  inset: 0;
  z-index: var(--z-modal);
}

.search-modal.open {
  display: block;
}

.search-modal-backdrop {
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.5);
  backdrop-filter: blur(4px);
}

.search-modal-content {
  position: relative;
  max-width: 600px;
  margin: 10vh auto 0;
  background: var(--white);
  border-radius: var(--radius-lg);
  box-shadow: var(--shadow-xl);
  overflow: hidden;
}

.search-modal-input {
  width: 100%;
  padding: 1rem 1.25rem;
  border: none;
  border-bottom: 1px solid var(--border-light);
  font-size: 1.125rem;
  font-family: var(--font-body);
  outline: none;
}

.search-modal-results {
  max-height: 400px;
  overflow-y: auto;
  padding: 0.5rem;
}

.search-group-title {
  padding: 0.5rem 0.75rem;
  font-size: 0.75rem;
  font-weight: 600;
  color: var(--text-muted);
  text-transform: uppercase;
  letter-spacing: 0.05em;
}

.search-result {
  display: block;
  padding: 0.75rem;
  border-radius: var(--radius-md);
  text-decoration: none;
  transition: background var(--ease-fast);
}

.search-result:hover {
  background: var(--slate-50);
}

.search-result-title {
  font-weight: 600;
  color: var(--text-heading);
  font-size: 0.9375rem;
}

.search-result-desc {
  font-size: 0.8125rem;
  color: var(--text-muted);
  margin-top: 0.25rem;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.search-no-results {
  padding: 2rem;
  text-align: center;
  color: var(--text-muted);
}

.search-modal-hint {
  padding: 0.5rem 1rem;
  font-size: 0.75rem;
  color: var(--text-muted);
  border-top: 1px solid var(--border-light);
  text-align: center;
}

@media (max-width: 768px) {
  .search-modal-content {
    margin: 0;
    border-radius: 0;
    height: 100vh;
    max-height: 100vh;
  }

  .search-modal-results {
    max-height: calc(100vh - 120px);
  }
}

