/* TruVis Landing v2 — modeled on CBUAE / ADGM editorial pattern */
@import url('./tokens.css');

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  background: var(--tv-white);
  color: var(--tv-charcoal);
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
  font-family: var(--font-body);
}

.container {
  width: 100%;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 40px;
}
@media (max-width: 720px) { .container { padding: 0 20px; } }

.eyebrow {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tv-brand-cyan);
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--tv-brand-cyan);
}

/* ============= TOP UTILITY BAR ============= */
.utility-bar {
  background: #01223e;
  color: rgba(255,255,255,0.7);
  font-family: var(--font-body);
  font-size: 12px;
  padding: 10px 0;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.utility-inner {
  display: flex;
  justify-content: space-between;
  align-items: center;
  max-width: 1340px;
  margin: 0 auto;
  padding: 0 40px;
}
.utility-left { display: flex; gap: 24px; align-items: center; }
.utility-left span { display: inline-flex; align-items: center; gap: 6px; }
.utility-right { display: flex; gap: 20px; }
.utility-right a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-weight: 500;
  letter-spacing: 0.04em;
}
.utility-right a:hover { color: var(--tv-brand-cyan); }
@media (max-width: 720px) { .utility-bar { display: none; } }

/* ============= MAIN NAV ============= */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: rgba(255,255,255,0.96);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border-bottom: 1px solid var(--tv-rule);
}
.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 40px;
  max-width: 1340px;
  margin: 0 auto;
  gap: 40px;
}
.nav-logo { display: flex; align-items: center; gap: 16px; text-decoration: none; }
.nav-logo img { height: 56px; width: auto; }
.nav-logo-text {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--tv-petroleum-blue);
  letter-spacing: -0.01em;
  line-height: 1;
}
.nav-logo-tagline {
  font-family: var(--font-display);
  font-size: 10px;
  color: var(--tv-slate);
  letter-spacing: 0.06em;
  text-transform: uppercase;
  margin-top: 4px;
  display: block;
  font-weight: 500;
}
.nav-links {
  display: flex;
  gap: 36px;
  align-items: center;
  flex: 1;
  justify-content: center;
}
.nav-link {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 14px;
  color: var(--tv-petroleum-blue);
  text-decoration: none;
  position: relative;
  padding: 8px 0;
}
.nav-link::after {
  content: '';
  position: absolute;
  bottom: 0; left: 0; right: 0;
  height: 2px;
  background: var(--tv-brand-cyan);
  transform: scaleX(0);
  transition: transform 200ms cubic-bezier(0.16, 1, 0.3, 1);
  transform-origin: left;
}
.nav-link:hover::after { transform: scaleX(1); }
.nav-cta {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  padding: 12px 22px;
  background: var(--tv-petroleum-blue);
  color: white;
  border-radius: 2px;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: all 200ms ease;
}
.nav-cta:hover { background: #012544; transform: translateY(-1px); }
@media (max-width: 1100px) { .nav-links { display: none; } }

/* ============= HERO — BIG EDITORIAL ============= */
.hero {
  position: relative;
  background: var(--tv-petroleum-blue);
  color: var(--tv-white);
  overflow: hidden;
  padding: 96px 0 0;
  min-height: 88vh;
  display: flex;
  flex-direction: column;
}
.hero-image {
  position: absolute;
  top: 0; right: 0; bottom: 0; left: 0;
  background: url('../assets/abu-dhabi-skyline.png') center/cover no-repeat;
  opacity: 0.5;
  filter: saturate(0.7);
}
.hero-fade {
  position: absolute;
  inset: 0;
  background:
    linear-gradient(180deg, rgba(2,48,89,0.55) 0%, rgba(2,48,89,0.85) 60%, var(--tv-petroleum-blue) 100%),
    radial-gradient(circle at 20% 50%, rgba(2,48,89,0.4), transparent 60%);
}
.hero-grid-bg {
  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: 100px 100px;
  mask-image: linear-gradient(180deg, transparent 0%, black 40%, black 80%, transparent 100%);
}
.hero-content {
  position: relative;
  z-index: 2;
  flex: 1;
  display: flex;
  align-items: center;
  padding: 80px 0;
}
.hero-grid {
  display: grid;
  grid-template-columns: 1.6fr 1fr;
  gap: 80px;
  align-items: end;
  width: 100%;
}
@media (max-width: 980px) { .hero-grid { grid-template-columns: 1fr; gap: 48px; } }
.hero-eyebrow { color: var(--tv-brand-cyan); margin-bottom: 28px; }
.hero-eyebrow::before { background: var(--tv-brand-cyan); }
.hero-title {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(44px, 6.2vw, 88px);
  line-height: 0.98;
  letter-spacing: -0.025em;
  color: var(--tv-white);
  margin: 0 0 32px;
  text-wrap: balance;
}
.hero-title .light { font-weight: 200; font-style: normal; color: rgba(255,255,255,0.78); }
.hero-title .accent { color: var(--tv-brand-cyan); }
.hero-sub {
  font-family: var(--font-body);
  font-size: clamp(17px, 1.5vw, 21px);
  line-height: 1.5;
  color: rgba(255,255,255,0.82);
  max-width: 56ch;
  margin: 0 0 40px;
  font-weight: 400;
}
.hero-ctas { display: flex; gap: 14px; flex-wrap: wrap; }
.hero-trust-inline { display: flex; flex-wrap: wrap; gap: 10px 18px; margin-top: 22px; }
.hero-trust-pill { display: inline-flex; align-items: center; gap: 8px; padding: 7px 14px; border: 1px solid rgba(255,255,255,0.18); border-radius: 999px; font-family: var(--font-display); font-size: 11px; letter-spacing: 0.08em; text-transform: uppercase; color: inherit; opacity: 0.92; backdrop-filter: blur(6px); }
.hero-trust-pill .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--tv-brand-cyan); box-shadow: 0 0 0 3px rgba(0, 196, 219, 0.18); }
.hero-cream .hero-trust-pill { border-color: rgba(20, 40, 70, 0.16); color: var(--tv-petroleum-blue); }
.btn {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 16px 28px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  cursor: pointer;
  transition: all 200ms cubic-bezier(0.16, 1, 0.3, 1);
  border: 1px solid transparent;
  white-space: nowrap;
}
.btn-primary { background: var(--tv-brand-cyan); color: var(--tv-petroleum-blue); }
.btn-primary:hover { background: var(--tv-white); transform: translateY(-1px); }
.btn-ghost-light { background: transparent; color: var(--tv-white); border-color: rgba(255,255,255,0.35); }
.btn-ghost-light:hover { background: rgba(255,255,255,0.08); border-color: var(--tv-white); }
.btn-primary-dark { background: var(--tv-petroleum-blue); color: var(--tv-white); }
.btn-primary-dark:hover { background: #012544; transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--tv-petroleum-blue); border-color: rgba(2,48,89,0.25); }
.btn-ghost:hover { border-color: var(--tv-petroleum-blue); background: var(--tv-ice-blue); }

/* hero side: editorial highlight card */
.hero-side {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.14);
  padding: 36px 36px 32px;
  border-radius: 2px;
  backdrop-filter: blur(10px);
  position: relative;
}
.hero-side::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 56px; height: 3px;
  background: var(--tv-brand-cyan);
}
.hero-side-tag {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tv-brand-cyan);
  margin-top: 12px;
}
.hero-side-h {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--tv-white);
  margin: 14px 0 16px;
  line-height: 1.2;
}
.hero-side-p {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.72);
  line-height: 1.6;
  margin: 0 0 24px;
}
.hero-side-meta {
  font-family: var(--font-display);
  font-size: 11px;
  color: rgba(255,255,255,0.5);
  letter-spacing: 0.08em;
  text-transform: uppercase;
  display: flex;
  justify-content: space-between;
  padding-top: 16px;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-side-meta a {
  color: var(--tv-brand-cyan);
  text-decoration: none;
  display: inline-flex;
  gap: 8px;
}

/* ============= QUICK ACCESS STRIP ============= */
.quick-access {
  background: var(--tv-white);
  border-bottom: 1px solid var(--tv-rule);
  position: relative;
  margin-top: -2px;
}
.quick-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
}
@media (max-width: 980px) { .quick-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .quick-grid { grid-template-columns: 1fr; } }
.quick-item {
  padding: 36px 32px;
  border-right: 1px solid var(--tv-rule);
  text-decoration: none;
  display: block;
  background: var(--tv-white);
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
  position: relative;
}
.quick-item:last-child { border-right: none; }
@media (max-width: 980px) {
  .quick-item:nth-child(2n) { border-right: none; }
  .quick-item:nth-child(-n+2) { border-bottom: 1px solid var(--tv-rule); }
}
.quick-item:hover {
  background: var(--tv-petroleum-blue);
}
.quick-item:hover .quick-num,
.quick-item:hover .quick-title,
.quick-item:hover .quick-desc,
.quick-item:hover .quick-arrow { color: var(--tv-white); }
.quick-item:hover .quick-num { color: var(--tv-brand-cyan); }
.quick-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  color: var(--tv-brand-cyan);
  letter-spacing: 0.16em;
  margin-bottom: 16px;
  display: block;
  transition: color 200ms ease;
}
.quick-icon {
  width: 32px; height: 32px;
  color: var(--tv-petroleum-blue);
  margin-bottom: 16px;
  transition: color 200ms ease;
}
.quick-item:hover .quick-icon { color: var(--tv-brand-cyan); }
.quick-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--tv-petroleum-blue);
  margin: 0 0 10px;
  transition: color 200ms ease;
  line-height: 1.25;
}
.quick-desc {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--tv-slate);
  line-height: 1.5;
  margin: 0 0 20px;
  transition: color 200ms ease;
}
.quick-arrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.12em;
  color: var(--tv-petroleum-blue);
  text-transform: uppercase;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: color 200ms ease, gap 200ms ease;
}
.quick-item:hover .quick-arrow { gap: 14px; }

/* ============= SECTION SHELL ============= */
section { position: relative; }
.section { padding: 120px 0; }
@media (max-width: 720px) { .section { padding: 72px 0; } }
.section-cream { background: var(--tv-warm-cream); }
.section-ice { background: var(--tv-ice-blue); }
.section-dark { background: var(--tv-petroleum-blue); color: var(--tv-white); }

.section-head { max-width: 760px; margin: 0 0 72px; }
.section-head.center { margin-left: auto; margin-right: auto; text-align: center; }
.section-head.wide { max-width: 920px; }
.section-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(32px, 4vw, 52px);
  line-height: 1.1;
  letter-spacing: -0.02em;
  color: var(--tv-petroleum-blue);
  margin: 18px 0 24px;
  text-wrap: balance;
}
.section-dark .section-title { color: var(--tv-white); }
.section-lede {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.55;
  color: var(--tv-charcoal);
  max-width: 65ch;
}
.section-dark .section-lede { color: rgba(255,255,255,0.78); }

/* ============= FEATURED STORY (ADGM-style) ============= */
.featured {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 0;
  align-items: stretch;
  background: var(--tv-petroleum-blue);
  border-radius: 2px;
  overflow: hidden;
  min-height: 540px;
}
@media (max-width: 980px) { .featured { grid-template-columns: 1fr; } }
.featured-img {
  background: url('../assets/abu-dhabi-skyline.png') center/cover no-repeat;
  position: relative;
  min-height: 360px;
}
.featured-img::after {
  content: '';
  position: absolute;
  inset: 0;
  background: linear-gradient(135deg, transparent 0%, rgba(2,48,89,0.4) 100%);
}
.featured-img-tag {
  position: absolute;
  top: 32px; left: 32px;
  background: var(--tv-brand-cyan);
  color: var(--tv-petroleum-blue);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.14em;
  padding: 8px 14px;
  text-transform: uppercase;
  z-index: 2;
}
.featured-body {
  padding: 64px 56px;
  color: var(--tv-white);
  display: flex;
  flex-direction: column;
  justify-content: center;
}
@media (max-width: 720px) { .featured-body { padding: 40px 28px; } }
.featured-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  color: var(--tv-brand-cyan);
  text-transform: uppercase;
}
.featured-h {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(26px, 3vw, 38px);
  line-height: 1.15;
  margin: 16px 0 20px;
  letter-spacing: -0.015em;
  color: var(--tv-white);
}
.featured-p {
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  color: rgba(255,255,255,0.82);
  margin: 0 0 32px;
  max-width: 50ch;
}
.featured-bullets {
  list-style: none;
  padding: 0;
  margin: 0 0 32px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.featured-bullets li {
  font-family: var(--font-body);
  font-size: 14px;
  color: rgba(255,255,255,0.82);
  display: flex;
  gap: 12px;
  line-height: 1.5;
}
.featured-bullets li::before {
  content: '';
  flex-shrink: 0;
  width: 16px; height: 16px;
  background: var(--tv-brand-cyan);
  margin-top: 2px;
  clip-path: polygon(20% 50%, 0 65%, 40% 100%, 100% 25%, 80% 10%, 40% 75%);
}

/* ============= PILLARS / SERVICE GRID ============= */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 4px;
}
@media (max-width: 980px) { .pillars-grid { grid-template-columns: 1fr; } }
.pillar {
  background: var(--tv-white);
  padding: 48px 40px;
  border: 1px solid var(--tv-rule);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: all 280ms cubic-bezier(0.16, 1, 0.3, 1);
}
.pillar::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 100%; height: 3px;
  background: var(--tv-brand-cyan);
  transform: scaleX(0.18);
  transform-origin: left;
  transition: transform 350ms cubic-bezier(0.16, 1, 0.3, 1);
}
.pillar:hover { transform: translateY(-4px); box-shadow: 0 16px 48px rgba(2,48,89,0.08); }
.pillar:hover::before { transform: scaleX(1); }
.pillar.emerald::before { background: var(--tv-deep-emerald); }
.pillar.teal::before { background: var(--tv-deep-teal); }
.pillar-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--tv-brand-cyan);
  letter-spacing: 0.16em;
  margin-bottom: 24px;
}
.pillar.emerald .pillar-num { color: var(--tv-deep-emerald); }
.pillar.teal .pillar-num { color: var(--tv-deep-teal); }
.pillar h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 24px;
  color: var(--tv-petroleum-blue);
  margin: 0 0 16px;
  line-height: 1.2;
}
.pillar p {
  font-family: var(--font-body);
  font-size: 14.5px;
  color: var(--tv-charcoal);
  line-height: 1.6;
  margin: 0 0 24px;
  flex: 1;
}
.pillar ul {
  list-style: none;
  padding: 0;
  margin: 0 0 28px;
  font-family: var(--font-body);
  font-size: 13px;
}
.pillar ul li {
  padding: 8px 0;
  border-bottom: 1px solid var(--tv-rule);
  color: var(--tv-charcoal);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 10px;
}
.pillar ul li:last-child { border-bottom: none; }
.pillar ul li .cap {
  color: var(--tv-deep-emerald);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  white-space: nowrap;
}
.pillar-cta {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 12px;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--tv-petroleum-blue);
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 10px;
  transition: gap 200ms ease;
  margin-top: auto;
}
.pillar:hover .pillar-cta { gap: 14px; }

/* ============= STATS BAND ============= */
.stats-band {
  background: var(--tv-petroleum-blue);
  position: relative;
  overflow: hidden;
}
.stats-band-img {
  position: absolute; inset: 0;
  background: url('../assets/abu-dhabi-skyline.png') center/cover no-repeat;
  opacity: 0.18;
  filter: saturate(0.5);
}
.stats-band-overlay {
  position: absolute; inset: 0;
  background: linear-gradient(135deg, rgba(2,48,89,0.92), rgba(2,48,89,0.7));
}
.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  position: relative;
  z-index: 1;
}
@media (max-width: 720px) { .stats-grid { grid-template-columns: repeat(2, 1fr); } }
.stat-cell {
  padding: 80px 36px;
  border-right: 1px solid rgba(255,255,255,0.12);
}
.stat-cell:last-child { border-right: none; }
@media (max-width: 720px) {
  .stat-cell { padding: 48px 24px; }
  .stat-cell:nth-child(2n) { border-right: none; }
  .stat-cell:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.12); }
}
.stat-num {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(48px, 5.5vw, 72px);
  color: var(--tv-white);
  line-height: 0.95;
  letter-spacing: -0.025em;
}
.stat-num .unit {
  font-size: 0.46em;
  color: var(--tv-brand-cyan);
  margin-left: 4px;
  font-weight: 700;
  letter-spacing: 0;
}
.stat-lbl {
  font-family: var(--font-display);
  font-size: 11px;
  color: var(--tv-brand-cyan);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 18px 0 8px;
  font-weight: 700;
}
.stat-desc {
  font-family: var(--font-body);
  font-size: 13.5px;
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
  max-width: 32ch;
}

/* ============= JURISDICTIONS — TAB COMPARATOR ============= */
.juris-tabs-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border: 1px solid var(--tv-rule);
  background: var(--tv-white);
}
@media (max-width: 720px) { .juris-tabs-row { grid-template-columns: 1fr; } }
.juris-tab {
  background: var(--tv-white);
  border: none;
  border-right: 1px solid var(--tv-rule);
  padding: 28px 32px;
  text-align: left;
  cursor: pointer;
  font-family: var(--font-body);
  position: relative;
  transition: all 200ms ease;
}
.juris-tab:last-child { border-right: none; }
@media (max-width: 720px) {
  .juris-tab { border-right: none; border-bottom: 1px solid var(--tv-rule); }
  .juris-tab:last-child { border-bottom: none; }
}
.juris-tab::after {
  content: '';
  position: absolute;
  bottom: -1px; left: 0; right: 0;
  height: 3px;
  background: var(--tv-brand-cyan);
  transform: scaleX(0);
  transition: transform 200ms ease;
}
.juris-tab.active::after { transform: scaleX(1); }
.juris-tab.active { background: var(--tv-warm-cream); }
.juris-tab-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  color: var(--tv-brand-cyan);
  letter-spacing: 0.16em;
}
.juris-tab-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--tv-petroleum-blue);
  margin: 6px 0 4px;
}
.juris-tab-reg {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--tv-slate);
}

.juris-detail {
  background: var(--tv-warm-cream);
  border: 1px solid var(--tv-rule);
  border-top: none;
  padding: 56px;
}
@media (max-width: 720px) { .juris-detail { padding: 36px 24px; } }
.juris-detail-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
}
@media (max-width: 980px) { .juris-detail-grid { grid-template-columns: 1fr; gap: 36px; } }
.juris-detail-eyebrow {
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.16em;
  color: var(--tv-brand-cyan);
  text-transform: uppercase;
}
.juris-detail-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--tv-petroleum-blue);
  margin: 12px 0 18px;
  line-height: 1.2;
  letter-spacing: -0.015em;
}
.juris-detail-lede {
  font-family: var(--font-body);
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--tv-charcoal);
  margin-bottom: 0;
}
.juris-stats-mini {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin: 24px 0 28px;
}
.juris-stat-mini .num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 28px;
  color: var(--tv-petroleum-blue);
  letter-spacing: -0.015em;
}
.juris-stat-mini .num.em { color: var(--tv-deep-emerald); }
.juris-stat-mini .lbl {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--tv-slate);
  margin-top: 4px;
}
.juris-license-table {
  border: 1px solid var(--tv-rule);
  background: var(--tv-white);
}
.juris-license-row {
  display: grid;
  grid-template-columns: 80px 1fr 110px;
  gap: 16px;
  padding: 14px 18px;
  border-bottom: 1px solid var(--tv-rule);
  align-items: center;
}
.juris-license-row:last-child { border-bottom: none; }
.juris-license-cat {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  color: var(--tv-brand-cyan);
  letter-spacing: 0.06em;
}
.juris-license-name {
  font-family: var(--font-body);
  font-size: 13px;
  color: var(--tv-charcoal);
  line-height: 1.3;
}
.juris-license-cap {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  color: var(--tv-deep-emerald);
  text-align: right;
}

/* ============= INSIGHTS / NEWS GRID (CBUAE-style) ============= */
.insights-head {
  display: flex;
  justify-content: space-between;
  align-items: flex-end;
  margin-bottom: 56px;
  flex-wrap: wrap;
  gap: 24px;
}
.insights-grid {
  display: grid;
  grid-template-columns: 1.4fr 1fr 1fr;
  gap: 32px;
}
@media (max-width: 980px) { .insights-grid { grid-template-columns: 1fr; } }
.insight-card {
  background: var(--tv-white);
  border: 1px solid var(--tv-rule);
  text-decoration: none;
  display: block;
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
  overflow: hidden;
}
.insight-card.featured-card { grid-row: span 1; }
.insight-card:hover {
  border-color: var(--tv-petroleum-blue);
  transform: translateY(-3px);
  box-shadow: 0 12px 40px rgba(2,48,89,0.08);
}
.insight-img {
  width: 100%;
  aspect-ratio: 16/9;
  background: var(--tv-petroleum-blue);
  background-size: cover;
  background-position: center;
  position: relative;
}
.insight-card.featured-card .insight-img { aspect-ratio: 4/3; }
.insight-img-1 { background-image: linear-gradient(135deg, #023059 0%, #0C6E8A 100%); }
.insight-img-2 { background-image: linear-gradient(135deg, #0D7A56 0%, #0C6E8A 100%); }
.insight-img-3 { background-image: linear-gradient(135deg, #0C6E8A 0%, #00A0E0 100%); }
.insight-img-pattern {
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.08) 0%, transparent 40%),
    linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
  background-size: auto, 30px 30px, 30px 30px;
}
.insight-img-icon {
  position: absolute;
  top: 50%; left: 50%;
  transform: translate(-50%, -50%);
  width: 64px; height: 64px;
  color: rgba(255,255,255,0.4);
}
.insight-body { padding: 32px; }
.insight-card.featured-card .insight-body { padding: 40px; }
.insight-tag {
  font-family: var(--font-display);
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--tv-brand-cyan);
}
.insight-h {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 20px;
  color: var(--tv-petroleum-blue);
  margin: 14px 0 14px;
  line-height: 1.3;
  letter-spacing: -0.01em;
}
.insight-card.featured-card .insight-h {
  font-size: 28px;
  letter-spacing: -0.02em;
}
.insight-p {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--tv-charcoal);
  line-height: 1.6;
  margin: 0 0 28px;
}
.insight-meta {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--tv-slate);
  display: flex;
  justify-content: space-between;
  padding-top: 20px;
  border-top: 1px solid var(--tv-rule);
}

/* ============= PROCESS — TIMELINE ============= */
.process-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  position: relative;
}
@media (max-width: 980px) { .process-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 540px) { .process-grid { grid-template-columns: 1fr; } }
.process-step {
  padding: 48px 32px 48px 0;
  border-right: 1px solid rgba(255,255,255,0.12);
  position: relative;
}
.process-step:last-child { border-right: none; }
@media (max-width: 980px) {
  .process-step:nth-child(2n) { border-right: none; }
  .process-step:nth-child(-n+2) { border-bottom: 1px solid rgba(255,255,255,0.12); }
}
.process-step::before {
  content: '';
  position: absolute;
  top: 0; left: 0;
  width: 48px; height: 3px;
  background: var(--tv-brand-cyan);
}
.process-num {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 56px;
  color: rgba(0,160,224,0.45);
  letter-spacing: -0.04em;
  line-height: 1;
  margin-top: 36px;
}
.process-h {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 22px;
  color: var(--tv-white);
  margin: 18px 0 14px;
  line-height: 1.25;
}
.process-p {
  font-family: var(--font-body);
  font-size: 14.5px;
  line-height: 1.6;
  color: rgba(255,255,255,0.74);
  margin: 0;
}

/* ============= FAQ ============= */
.faq-grid {
  display: grid;
  grid-template-columns: 360px 1fr;
  gap: 80px;
}
@media (max-width: 980px) { .faq-grid { grid-template-columns: 1fr; gap: 32px; } }
.faq-list { border-top: 2px solid var(--tv-petroleum-blue); }
.faq-item {
  border-bottom: 1px solid var(--tv-rule);
  padding: 28px 0;
}
.faq-q {
  display: flex;
  justify-content: space-between;
  align-items: center;
  cursor: pointer;
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 18px;
  color: var(--tv-petroleum-blue);
  background: none;
  border: none;
  width: 100%;
  text-align: left;
  padding: 0;
  line-height: 1.4;
  gap: 16px;
}
.faq-toggle {
  flex-shrink: 0;
  width: 28px; height: 28px;
  border: 1px solid var(--tv-petroleum-blue);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  color: var(--tv-petroleum-blue);
  transition: transform 200ms ease, background 200ms ease;
}
.faq-item.open .faq-toggle {
  transform: rotate(45deg);
  background: var(--tv-petroleum-blue);
  color: var(--tv-white);
}
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 350ms ease, padding 300ms ease;
}
.faq-item.open .faq-a { max-height: 400px; padding-top: 18px; }
.faq-a p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--tv-charcoal);
  line-height: 1.7;
  margin: 0;
  max-width: 70ch;
}

/* ============= CONTACT (CBUAE-style) ============= */
.contact-grid {
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  gap: 0;
  background: var(--tv-petroleum-blue);
  border-radius: 2px;
  overflow: hidden;
}
@media (max-width: 980px) { .contact-grid { grid-template-columns: 1fr; } }
.contact-info {
  padding: 64px 56px;
  color: var(--tv-white);
  position: relative;
  background: var(--tv-petroleum-blue);
  overflow: hidden;
}
.contact-info::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 80% 20%, rgba(0,160,224,0.18), transparent 50%),
    radial-gradient(circle at 20% 80%, rgba(13,122,86,0.15), transparent 50%);
}
.contact-info > * { position: relative; z-index: 1; }
@media (max-width: 720px) { .contact-info { padding: 40px 28px; } }
.contact-info h2 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(28px, 3vw, 40px);
  color: var(--tv-white);
  margin: 16px 0 20px;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
.contact-info .lede {
  font-family: var(--font-body);
  font-size: 16px;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
  margin: 0 0 40px;
  max-width: 50ch;
}
.contact-detail { padding: 18px 0; border-top: 1px solid rgba(255,255,255,0.12); }
.contact-detail:last-child { border-bottom: 1px solid rgba(255,255,255,0.12); }
.contact-detail-label {
  font-family: var(--font-display);
  font-size: 10px;
  letter-spacing: 0.18em;
  color: var(--tv-brand-cyan);
  text-transform: uppercase;
  font-weight: 700;
  margin-bottom: 6px;
}
.contact-detail-value {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--tv-white);
  line-height: 1.5;
}
.form-card {
  background: var(--tv-white);
  padding: 64px 56px;
}
@media (max-width: 720px) { .form-card { padding: 40px 28px; } }
.form-card h3 {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  color: var(--tv-petroleum-blue);
  margin: 0 0 8px;
  letter-spacing: -0.015em;
}
.form-card .form-sub {
  font-family: var(--font-body);
  font-size: 14px;
  color: var(--tv-slate);
  margin: 0 0 32px;
}
.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-bottom: 18px;
}
@media (max-width: 540px) { .form-row { grid-template-columns: 1fr; } }
.form-field { display: flex; flex-direction: column; }
.form-field.full { grid-column: 1 / -1; }
.form-field label {
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 11px;
  color: var(--tv-charcoal);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}
.form-field label .req { color: var(--tv-error); }
.form-field input, .form-field select, .form-field textarea {
  font-family: var(--font-body);
  font-size: 15px;
  padding: 14px 14px;
  border: 1px solid var(--tv-rule);
  border-radius: 2px;
  background: var(--tv-white);
  color: var(--tv-charcoal);
  transition: border-color 150ms, box-shadow 150ms;
  width: 100%;
}
.form-field input:focus, .form-field select:focus, .form-field textarea:focus {
  outline: none;
  border-color: var(--tv-petroleum-blue);
  box-shadow: 0 0 0 3px rgba(2,48,89,0.08);
}
.form-field input.error, .form-field select.error, .form-field textarea.error { border-color: var(--tv-error); }
.form-field .error-msg {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--tv-error);
  margin-top: 6px;
}
.form-field textarea { resize: vertical; min-height: 96px; }
.form-submit-row {
  margin-top: 28px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}
.form-disclaimer {
  font-family: var(--font-body);
  font-size: 12px;
  color: var(--tv-slate);
  max-width: 30ch;
  line-height: 1.5;
}
.form-success { text-align: center; padding: 24px 0; }
.form-success .check {
  width: 64px; height: 64px;
  border-radius: 50%;
  background: var(--tv-mint-tint);
  color: var(--tv-deep-emerald);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 32px;
  margin: 0 auto 24px;
}
.form-success h3 {
  font-family: var(--font-display);
  font-size: 28px;
  color: var(--tv-deep-emerald);
  margin: 0 0 12px;
}
.form-success p {
  font-family: var(--font-body);
  font-size: 15px;
  color: var(--tv-charcoal);
  line-height: 1.6;
  max-width: 42ch;
  margin: 0 auto;
}

/* ============= FOOTER (ADGM-style multi-col) ============= */
.footer {
  background: #01223e;
  color: rgba(255,255,255,0.7);
  padding: 96px 0 32px;
}
.footer-top {
  display: grid;
  grid-template-columns: 1.6fr 1fr 1fr 1fr 1fr;
  gap: 56px;
  padding-bottom: 64px;
  border-bottom: 1px solid rgba(255,255,255,0.1);
}
@media (max-width: 980px) { .footer-top { grid-template-columns: 1fr 1fr; } }
@media (max-width: 540px) { .footer-top { grid-template-columns: 1fr; gap: 32px; } }
.footer-brand img { height: 48px; margin-bottom: 20px; }
.footer-brand-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 26px;
  color: var(--tv-white);
  margin: 0 0 8px;
  letter-spacing: -0.01em;
}
.footer-tagline {
  font-family: var(--font-display);
  font-size: 13px;
  color: var(--tv-brand-cyan);
  margin: 0 0 20px;
  font-weight: 500;
}
.footer-blurb {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.55);
  line-height: 1.6;
  max-width: 36ch;
}
.footer-col-h {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 11px;
  color: var(--tv-white);
  letter-spacing: 0.18em;
  text-transform: uppercase;
  margin: 0 0 20px;
}
.footer-list { list-style: none; padding: 0; margin: 0; }
.footer-list li { margin-bottom: 12px; line-height: 1.5; }
.footer-list a {
  font-family: var(--font-body);
  font-size: 13px;
  color: rgba(255,255,255,0.65);
  text-decoration: none;
  transition: color 150ms;
}
.footer-list a:hover { color: var(--tv-brand-cyan); }
.footer-bottom {
  padding-top: 32px;
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
  font-family: var(--font-body);
  font-size: 12px;
  color: rgba(255,255,255,0.4);
}

/* ============= REVEAL ============= */
.reveal { opacity: 0; transform: translateY(28px); transition: opacity 700ms cubic-bezier(0.16, 1, 0.3, 1), transform 700ms cubic-bezier(0.16, 1, 0.3, 1); }
.reveal.in { opacity: 1; transform: none; }

/* tweaks */
body.density-modern .section { padding: 88px 0; }
body.density-modern .hero { padding: 64px 0 0; min-height: 78vh; }
body.density-modern .hero-content { padding: 56px 0; }
body.density-modern .pillar { padding: 36px 28px; }
body.density-modern .featured-body { padding: 48px 36px; }
body.emphasis-emerald .btn-primary { background: var(--tv-deep-emerald); color: var(--tv-white); }
body.emphasis-emerald .btn-primary:hover { background: #0a6447; }
body.emphasis-emerald .nav-cta { background: var(--tv-deep-emerald); }
body.emphasis-emerald .quick-num,
body.emphasis-emerald .pillar-num,
body.emphasis-emerald .featured-eyebrow,
body.emphasis-emerald .insight-tag,
body.emphasis-emerald .stat-lbl,
body.emphasis-emerald .juris-detail-eyebrow,
body.emphasis-emerald .hero-eyebrow,
body.emphasis-emerald .hero-side-tag,
body.emphasis-emerald .featured-img-tag { color: var(--tv-deep-emerald); }
body.emphasis-emerald .featured-img-tag { background: var(--tv-deep-emerald); color: var(--tv-white); }


/* ============= HERO CAROUSEL — CBUAE / ADGM editorial ============= */
.hero-carousel {
  position: relative;
  background: var(--tv-petroleum-blue);
  color: var(--tv-white);
  overflow: hidden;
  min-height: 600px;
  height: calc(100vh - 80px);
  max-height: 720px;
}
@media (max-width: 720px) { .hero-carousel { min-height: auto; height: auto; max-height: none; } }
.hero-slides { position: relative; width: 100%; height: 100%; }
.hero-slide {
  position: absolute;
  inset: 0;
  opacity: 0;
  visibility: hidden;
  transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1), visibility 0s linear 800ms;
}
.hero-slide.active {
  opacity: 1;
  visibility: visible;
  transition: opacity 800ms cubic-bezier(0.16, 1, 0.3, 1), visibility 0s linear 0s;
}
@media (max-width: 720px) {
  .hero-slide { position: relative; opacity: 1; visibility: visible; display: none; }
  .hero-slide.active { display: block; }
}
.hero-slide-bg { position: absolute; inset: 0; }
.hero-slide-content {
  position: relative;
  height: 100%;
  display: flex;
  align-items: center;
  z-index: 2;
}
@media (max-width: 720px) { .hero-slide-content { padding: 80px 0 64px; } }
.hero-slide-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: 60px;
  align-items: center;
  width: 100%;
}
@media (max-width: 980px) { .hero-slide-grid { grid-template-columns: 1fr; gap: 32px; } }

.hero-slide-eyebrow {
  font-family: var(--font-display);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--tv-brand-cyan);
  margin-bottom: 24px;
  display: inline-flex;
  align-items: center;
  gap: 12px;
}
.hero-slide-eyebrow::before {
  content: '';
  width: 28px; height: 1px;
  background: var(--tv-brand-cyan);
}
.hero-slide.theme-light .hero-slide-eyebrow { color: var(--tv-petroleum-blue); }
.hero-slide.theme-light .hero-slide-eyebrow::before { background: var(--tv-petroleum-blue); }

.hero-slide-title {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: clamp(48px, 7vw, 110px);
  line-height: 0.94;
  letter-spacing: -0.035em;
  color: var(--tv-white);
  margin: 0 0 32px;
  text-wrap: balance;
}
.hero-slide.theme-light .hero-slide-title { color: var(--tv-petroleum-blue); font-weight: 800; }
.hero-slide-title .grad {
  background: linear-gradient(120deg, var(--tv-brand-cyan), var(--tv-deep-emerald));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.hero-slide-title .light-w { font-weight: 200; opacity: 0.78; }

.hero-slide-sub {
  font-family: var(--font-body);
  font-size: clamp(15px, 1.3vw, 18px);
  line-height: 1.55;
  color: rgba(255,255,255,0.82);
  max-width: 50ch;
  margin: 0 0 36px;
}
.hero-slide.theme-light .hero-slide-sub { color: var(--tv-charcoal); }

.hero-slide-cta-row { display: flex; gap: 14px; flex-wrap: wrap; align-items: center; }
.hero-slide-cta-row .btn-pill {
  background: var(--tv-petroleum-blue);
  color: var(--tv-white);
  border-radius: 100px;
  padding: 16px 32px;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 13px;
  letter-spacing: 0.06em;
  text-transform: none;
  display: inline-flex;
  align-items: center;
  gap: 12px;
  text-decoration: none;
  transition: all 250ms cubic-bezier(0.16, 1, 0.3, 1);
}
.hero-slide-cta-row .btn-pill:hover { transform: translateY(-1px); background: #012544; }
.hero-slide.theme-light .hero-slide-cta-row .btn-pill { background: var(--tv-petroleum-blue); }
.hero-slide-cta-row .btn-pill-light {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.3);
  color: var(--tv-white);
}
.hero-slide-cta-row .btn-pill-light:hover { background: rgba(255,255,255,0.12); }

/* slide visuals */
.hero-visual {
  position: relative;
  width: 100%;
  height: 540px;
  display: flex;
  align-items: center;
  justify-content: center;
}
@media (max-width: 980px) { .hero-visual { height: 360px; } }
@media (max-width: 540px) { .hero-visual { height: 240px; } }

/* SLIDE 1 — Monogram (Dirham-style) */
.hero-slide.slide-monogram { background: linear-gradient(180deg, #0d3559 0%, #051a31 100%); }
.hero-slide.slide-monogram .hero-slide-bg {
  background-image:
    radial-gradient(ellipse at 70% 50%, rgba(0,160,224,0.18), transparent 55%),
    radial-gradient(ellipse at 20% 30%, rgba(13,122,86,0.10), transparent 50%);
}
.hero-slide.slide-monogram .hero-slide-bg::after {
  content: '';
  position: absolute; inset: 0;
  background-image:
    radial-gradient(circle at 50% 50%, rgba(255,255,255,0.04), transparent 60%),
    repeating-radial-gradient(circle at 70% 50%, transparent 0, transparent 40px, rgba(255,255,255,0.025) 40px, rgba(255,255,255,0.025) 41px);
  mask-image: radial-gradient(circle at 70% 50%, black 0%, transparent 75%);
}
.monogram-mark {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(180px, 30vw, 440px);
  line-height: 0.85;
  letter-spacing: -0.06em;
  color: var(--tv-white);
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  text-shadow: 0 24px 80px rgba(0,160,224,0.25);
}
.monogram-mark .accent {
  color: var(--tv-brand-cyan);
  font-weight: 200;
}
.monogram-ring {
  position: absolute;
  inset: -10%;
  border: 1px solid rgba(0,160,224,0.18);
  border-radius: 50%;
  pointer-events: none;
}
.monogram-ring.r2 { inset: 5%; border-color: rgba(255,255,255,0.06); }
.monogram-ring.r3 { inset: 18%; border-color: rgba(0,160,224,0.10); }

/* SLIDE 2 — Architectural sketch + chevron (ADGM-style) */
.hero-slide.slide-arch {
  background:
    linear-gradient(135deg, #023059 0%, #0066B3 45%, #00A0E0 100%);
}
.hero-slide.slide-arch .hero-slide-bg::before {
  content: '';
  position: absolute;
  top: 0; bottom: 0; right: 0;
  width: 38%;
  background: var(--tv-warm-cream);
  clip-path: polygon(35% 0, 100% 0, 100% 100%, 0% 100%);
}
.arch-illustration {
  position: relative;
  width: 100%;
  max-width: 540px;
  height: 100%;
}
.arch-illustration svg {
  width: 100%;
  height: 100%;
  display: block;
}
.chevron-mark {
  position: absolute;
  right: -40px; top: 35%;
  width: 360px; height: 200px;
  z-index: 3;
  pointer-events: none;
}
.chevron-mark svg {
  width: 100%; height: 100%;
  filter: drop-shadow(0 8px 24px rgba(0,160,224,0.4));
}

/* SLIDE 3 — Big editorial type (Proud-of-UAE style) */
.hero-slide.slide-editorial {
  background:
    linear-gradient(180deg, #f5f1e8 0%, #e8dfc9 100%);
  color: var(--tv-charcoal);
}
.hero-slide.slide-editorial .hero-slide-bg {
  opacity: 0.18;
  background-image:
    linear-gradient(180deg, transparent 0%, rgba(2,48,89,0.04) 100%),
    repeating-linear-gradient(0deg, transparent 0, transparent 16px, rgba(2,48,89,0.07) 16px, rgba(2,48,89,0.07) 17px);
}
.editorial-mark {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  gap: 24px;
}
.editorial-mark-text {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: clamp(72px, 10vw, 156px);
  line-height: 0.88;
  letter-spacing: -0.04em;
  color: var(--tv-petroleum-blue);
}
.editorial-mark-text .underline {
  display: inline-block;
  border-bottom: 8px solid var(--tv-brand-cyan);
  padding-bottom: 4px;
}
.editorial-flag {
  width: 180px; height: 240px;
  background: linear-gradient(180deg, #0D7A56 0%, #0D7A56 33%, #fff 33%, #fff 66%, #C8102E 66%);
  position: relative;
  box-shadow: 0 16px 48px rgba(2,48,89,0.18);
}
.editorial-flag::before {
  content: '';
  position: absolute;
  left: 0; top: 0; bottom: 0;
  width: 50px;
  background: var(--tv-petroleum-blue);
}

/* HERO LEFT NUMBERED INDICATORS (CBUAE-style) */
.hero-numbers {
  position: absolute;
  left: 32px;
  top: 50%;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 28px;
  z-index: 6;
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 12px;
  letter-spacing: 0.16em;
}
@media (max-width: 980px) { .hero-numbers { display: none; } }
.hero-numbers .line {
  position: absolute;
  left: 8px; top: 0; bottom: 0;
  width: 1px;
  background: rgba(255,255,255,0.15);
}
.hero-num-item {
  background: none; border: none;
  cursor: pointer;
  color: rgba(255,255,255,0.4);
  position: relative;
  padding: 4px 0 4px 28px;
  transition: color 200ms ease;
}
.hero-num-item::before {
  content: '';
  position: absolute;
  left: 4px; top: 50%;
  transform: translateY(-50%);
  width: 9px; height: 9px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,0.35);
  background: transparent;
  transition: all 200ms ease;
}
.hero-num-item:hover { color: rgba(255,255,255,0.75); }
.hero-num-item.active { color: var(--tv-white); }
.hero-num-item.active::before {
  background: var(--tv-brand-cyan);
  border-color: var(--tv-brand-cyan);
  box-shadow: 0 0 0 4px rgba(0,160,224,0.18);
}
.hero-num-item.active::after {
  content: '';
  position: absolute;
  left: -32px; top: 50%;
  transform: translateY(-50%);
  width: 24px; height: 1px;
  background: var(--tv-brand-cyan);
}

/* light theme num overrides */
.hero-slide.theme-light ~ .hero-numbers .hero-num-item,
body.hero-light .hero-num-item { color: rgba(2,48,89,0.45); }
body.hero-light .hero-num-item::before { border-color: rgba(2,48,89,0.3); }
body.hero-light .hero-num-item.active { color: var(--tv-petroleum-blue); }
body.hero-light .hero-num-item.active::before { background: var(--tv-petroleum-blue); border-color: var(--tv-petroleum-blue); box-shadow: 0 0 0 4px rgba(2,48,89,0.12); }
body.hero-light .hero-num-item.active::after { background: var(--tv-petroleum-blue); }
body.hero-light .hero-numbers .line { background: rgba(2,48,89,0.15); }

/* RIGHT SIDE ICON RAIL */
.icon-rail {
  position: fixed;
  right: 0;
  top: 50%;
  transform: translateY(-50%);
  z-index: 90;
  background: var(--tv-petroleum-blue);
  display: flex;
  flex-direction: column;
  border-radius: 8px 0 0 8px;
  overflow: hidden;
  box-shadow: 0 8px 32px rgba(2,48,89,0.25);
}
@media (max-width: 980px) { .icon-rail { display: none; } }
.icon-rail-item {
  width: 44px; height: 44px;
  display: flex; align-items: center; justify-content: center;
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  transition: all 200ms ease;
  position: relative;
  border-bottom: 1px solid rgba(255,255,255,0.06);
}
.icon-rail-item:last-child { border-bottom: none; }
.icon-rail-item:hover {
  background: var(--tv-brand-cyan);
  color: var(--tv-white);
}
.icon-rail-item .badge {
  position: absolute;
  top: 6px; right: 6px;
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--tv-brand-cyan);
}
.icon-rail-item:hover .badge { background: var(--tv-white); }
.icon-rail-divider {
  height: 1px;
  background: rgba(255,255,255,0.1);
  margin: 4px 8px;
}

/* FLOATING CHAT BUTTON */
.float-chat {
  position: fixed;
  bottom: 24px;
  right: 24px;
  z-index: 90;
  width: 52px; height: 52px;
  border-radius: 50%;
  background: var(--tv-brand-cyan);
  color: var(--tv-white);
  display: flex; align-items: center; justify-content: center;
  cursor: pointer;
  border: none;
  box-shadow: 0 8px 32px rgba(0,160,224,0.45);
  transition: transform 200ms ease;
}
.float-chat:hover { transform: scale(1.06); }
@media (max-width: 540px) { .float-chat { width: 48px; height: 48px; bottom: 16px; right: 16px; } }


/* ===== HERO V3 — EDITORIAL CAROUSEL ===== */
.hero { position: relative; min-height: 600px; overflow: hidden; isolation: isolate; }
.hero-cream { background: linear-gradient(135deg, #f4eee2 0%, #ece2cc 100%); color: var(--tv-petroleum-blue); }
.hero-petroleum { background: radial-gradient(ellipse at 70% 20%, #14454f 0%, #0a2a32 50%, #061d24 100%); color: #fff; }
.hero-navy { background: linear-gradient(135deg, #0a2a32 0%, #143842 50%, #1d4d5a 100%); color: #fff; }

.hero-bg-image { position: absolute; inset: 0; background: url('../assets/abu-dhabi-skyline.png') center/cover no-repeat; opacity: 0.18; mix-blend-mode: luminosity; pointer-events: none; }
.hero-cream .hero-bg-image { opacity: 0.08; mix-blend-mode: multiply; }
.hero-bg-fade { position: absolute; inset: 0; background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.25) 100%); pointer-events: none; }
.hero-cream .hero-bg-fade { background: linear-gradient(180deg, transparent 0%, rgba(0,0,0,0.04) 100%); }
.hero-bg-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: 80px 80px; pointer-events: none; }
.hero-cream .hero-bg-grid { background-image: linear-gradient(rgba(0,0,0,0.04) 1px, transparent 1px), linear-gradient(90deg, rgba(0,0,0,0.04) 1px, transparent 1px); }

/* Vertical left rail of slide indicators */
.hero-rail-left { position: absolute; left: 24px; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; gap: 18px; z-index: 4; }
.hero-rail-dot { background: transparent; border: none; padding: 6px 4px; cursor: pointer; display: flex; flex-direction: column; align-items: flex-start; gap: 6px; color: inherit; opacity: 0.45; transition: opacity 0.3s; }
.hero-rail-dot:hover { opacity: 0.85; }
.hero-rail-dot.active { opacity: 1; }
.hero-rail-dot .rail-num { font-family: var(--font-display); font-weight: 600; font-size: 11px; letter-spacing: 0.18em; }
.hero-rail-dot .rail-bar { width: 28px; height: 2px; background: currentColor; opacity: 0.4; transition: width 0.4s, opacity 0.3s; }
.hero-rail-dot.active .rail-bar { width: 56px; background: var(--tv-brand-cyan); opacity: 1; }

/* Vertical right rail of icon links */
.hero-rail-right { position: absolute; right: 28px; top: 50%; transform: translateY(-50%); display: flex; flex-direction: column; align-items: center; gap: 14px; z-index: 4; }
.rail-icon { width: 36px; height: 36px; border-radius: 50%; border: 1px solid currentColor; opacity: 0.5; display: inline-flex; align-items: center; justify-content: center; font-family: var(--font-display); font-weight: 700; font-size: 12px; color: inherit; text-decoration: none; transition: all 0.3s; }
.rail-icon:hover { opacity: 1; background: var(--tv-brand-cyan); border-color: var(--tv-brand-cyan); color: var(--tv-petroleum-blue); transform: translateY(-2px); }
.rail-divider { width: 1px; height: 32px; background: currentColor; opacity: 0.3; }
.rail-vert-label { font-family: var(--font-display); font-size: 10px; letter-spacing: 0.32em; writing-mode: vertical-rl; transform: rotate(180deg); opacity: 0.55; }

/* Slide grid */
.hero-content { position: relative; z-index: 2; padding: 64px 64px 56px; min-height: 600px; display: flex; align-items: center; }
.hero-slide-grid { display: grid; grid-template-columns: 1.1fr 0.9fr; gap: 64px; align-items: center; }
.hero-slide-text { animation: heroFade 0.8s cubic-bezier(.2,.8,.2,1); }
.hero-slide-visual { animation: heroFade 0.9s cubic-bezier(.2,.8,.2,1) 0.1s both; position: relative; }
@keyframes heroFade { from { opacity: 0; transform: translateY(16px); } to { opacity: 1; transform: translateY(0); } }

.hero-pretitle { font-family: var(--font-display); font-weight: 600; font-size: 14px; letter-spacing: 0.16em; text-transform: uppercase; color: var(--tv-brand-cyan); margin: 18px 0 14px; }
.hero-cream .hero-pretitle { color: var(--tv-petroleum-blue); }
.hero-title-xl { font-family: var(--font-display); font-weight: 600; font-size: clamp(40px, 5.4vw, 76px); line-height: 1.02; letter-spacing: -0.025em; margin: 0 0 24px; max-width: 720px; }
.hero-cream .hero-title-xl { color: var(--tv-petroleum-blue); }

.hero-meta { display: flex; align-items: center; gap: 14px; margin-top: 28px; font-family: var(--font-display); font-size: 12px; letter-spacing: 0.12em; opacity: 0.7; }
.hero-meta strong { font-size: 22px; font-weight: 600; opacity: 1; }
.hero-meta-sep { width: 28px; height: 1px; background: currentColor; opacity: 0.4; }
.hero-meta-btn { background: transparent; border: 1px solid currentColor; color: inherit; padding: 6px 14px; font-family: inherit; font-size: 11px; letter-spacing: 0.14em; text-transform: uppercase; cursor: pointer; opacity: 0.7; border-radius: 999px; transition: all 0.2s; }
.hero-meta-btn:hover { opacity: 1; background: var(--tv-brand-cyan); border-color: var(--tv-brand-cyan); color: var(--tv-petroleum-blue); }

/* Slide visuals */
.hero-monogram { position: relative; width: 100%; aspect-ratio: 1; max-width: 460px; margin: 0 auto; }
.hero-mono-svg { width: 100%; height: 100%; filter: drop-shadow(0 24px 48px rgba(0,0,0,0.18)); }
.hero-mono-caption { display: flex; justify-content: space-between; align-items: center; margin-top: 18px; font-family: var(--font-display); font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; opacity: 0.7; }
.hero-mono-tag { color: var(--tv-brand-cyan); }

.hero-chevron { position: relative; width: 100%; aspect-ratio: 1; max-width: 520px; margin: 0 auto; }
.hero-chevron-svg { width: 100%; height: 100%; }
.hero-chevron-tag { position: absolute; bottom: 0; left: 0; font-family: var(--font-display); font-size: 12px; letter-spacing: 0.14em; text-transform: uppercase; opacity: 0.75; }

.hero-editorial-card { background: rgba(255,255,255,0.06); backdrop-filter: blur(8px); border: 1px solid rgba(255,255,255,0.18); border-radius: 4px; padding: 36px; max-width: 460px; margin: 0 auto; }
.hero-cream .hero-editorial-card { background: rgba(255,255,255,0.7); border-color: rgba(0,0,0,0.08); }
.hero-ed-tag { font-family: var(--font-display); font-weight: 600; font-size: 11px; letter-spacing: 0.18em; text-transform: uppercase; color: var(--tv-brand-cyan); }
.hero-ed-rows { margin-top: 24px; display: flex; flex-direction: column; gap: 20px; }
.hero-ed-row { display: flex; gap: 16px; padding-bottom: 18px; border-bottom: 1px solid rgba(255,255,255,0.12); }
.hero-cream .hero-ed-row { border-bottom-color: rgba(0,0,0,0.08); }
.hero-ed-row:last-child { border-bottom: none; padding-bottom: 0; }
.hero-ed-num { font-family: var(--font-display); font-weight: 600; font-size: 28px; color: var(--tv-brand-cyan); line-height: 1; }
.hero-ed-h { font-family: var(--font-display); font-weight: 600; font-size: 18px; margin-bottom: 4px; }
.hero-ed-p { font-size: 13px; opacity: 0.75; line-height: 1.45; }
.hero-ed-link { display: inline-flex; align-items: center; gap: 6px; margin-top: 24px; font-family: var(--font-display); font-weight: 600; font-size: 13px; letter-spacing: 0.04em; color: var(--tv-brand-cyan); text-decoration: none; }
.hero-ed-link:hover { gap: 10px; transition: gap 0.2s; }

@media (max-width: 900px) {
  .hero-rail-left, .hero-rail-right { display: none; }
  .hero-content { padding: 56px 32px 48px; }
  .hero-slide-grid { grid-template-columns: 1fr; gap: 32px; }
}


/* ===== FOOTER COMPACT OVERRIDE ===== */
.footer { padding: 56px 0 24px; }
.footer-top { gap: 36px; padding-bottom: 36px; }
.footer-brand img { height: 36px; margin-bottom: 12px; }
.footer-brand-name { font-size: 22px; margin-bottom: 4px; }
.footer-tagline { font-size: 11px; margin-bottom: 12px; }
.footer-blurb { font-size: 12px; line-height: 1.5; max-width: 32ch; }
.footer-col-h { font-size: 11px; margin: 0 0 12px; letter-spacing: 0.18em; }
.footer-list li { margin-bottom: 8px; line-height: 1.4; }
.footer-list a { font-size: 12px; }
.footer-bottom { padding-top: 20px; font-size: 11px; }
.footer-bottom-left, .footer-bottom-right { font-size: 11px; }


/* ===== 8PT GRID STANDARDIZATION ===== */
/* All vertical rhythm and spacing snaps to multiples of 8px (8/16/24/32/40/48/56/64/72/80/96/112/128) */

/* Section padding: 96px desktop / 64px tablet / 48px mobile (all 8-multiples) */
.section { padding: 96px 0; }
@media (max-width: 980px) { .section { padding: 64px 0; } }
@media (max-width: 540px) { .section { padding: 48px 0; } }

/* Section heads */
.section-head { margin: 0 0 64px; }
@media (max-width: 980px) { .section-head { margin: 0 0 48px; } }

/* Hero padding */
.hero { padding: 64px 0 0; }
.hero-content { padding: 48px 0; }
@media (max-width: 980px) { .hero-content { padding: 32px 0; } }
.hero-slide-content { padding: 0; }
@media (max-width: 720px) { .hero-slide-content { padding: 64px 0 48px; } }

/* Hero grid gaps -> 8pt */
.hero-slide-grid { gap: 64px; }
@media (max-width: 980px) { .hero-slide-grid { gap: 32px; } }

/* Quick access strip */
.quick-access { padding: 48px 0; }

/* Featured story */
.featured { gap: 48px; }
@media (max-width: 900px) { .featured { gap: 32px; } }

/* Section-level grid gaps */
.pillars-grid, .pillar-grid, .stats-grid, .juris-grid, .insights-grid, .process-grid { gap: 24px; }
@media (max-width: 980px) {
  .pillars-grid, .pillar-grid, .stats-grid, .juris-grid, .insights-grid, .process-grid { gap: 16px; }
}

/* Faq item rhythm */
.faq-item { padding: 24px 0; }

/* Contact details */
.contact-detail { padding: 16px 0; }

/* Form */
.form-row + .form-row, .form-field + .form-field { margin-top: 16px; }
.form-success { padding: 24px 0; }

/* Footer — strict 8pt grid (8 / 16 / 24 / 32 / 40) — compact */
.footer { padding: 40px 0 16px; }
.footer-top { gap: 32px; padding-bottom: 24px; }
.footer-brand img { height: 32px; margin-bottom: 8px; }
.footer-brand-name { font-size: 20px; margin-bottom: 8px; }
.footer-tagline { font-size: 11px; margin-bottom: 8px; }
.footer-blurb { font-size: 12px; line-height: 1.5; max-width: 32ch; margin-top: 8px; }
.footer-col-h { font-size: 11px; margin: 0 0 8px; letter-spacing: 0.16em; }
.footer-list li { margin-bottom: 8px; line-height: 1.4; }
.footer-list a { font-size: 12px; }
.footer-bottom { padding-top: 16px; font-size: 11px; gap: 16px; }

/* Utility/Nav */
.utility-bar { padding: 8px 0; font-size: 12px; }
.nav { padding: 0; }
.nav-inner { padding: 16px 0; }


/* ===== HERO LEFT RAIL — better placement ===== */
/* Move rail outside the content gutter so it never overlaps copy */
.hero-rail-left { left: 32px; gap: 24px; }
.hero-rail-right { right: 32px; gap: 16px; }

/* Push hero content inward to clear the rails */
@media (min-width: 901px) {
  .hero-content { padding-left: 96px; padding-right: 96px; }
}
@media (min-width: 1280px) {
  .hero-rail-left { left: 48px; }
  .hero-rail-right { right: 48px; }
  .hero-content { padding-left: 120px; padding-right: 120px; }
}

/* Visual treatment — boxed numerals so they read as a discrete UI control, not floating text */
.hero-rail-dot { padding: 8px 12px 8px 0; }
.hero-rail-dot .rail-num { 
  display: inline-flex; align-items: center; justify-content: center;
  min-width: 28px; height: 24px; padding: 0 6px;
  border: 1px solid currentColor; border-radius: 2px;
  font-size: 10px; letter-spacing: 0.12em;
  opacity: 0.6;
}
.hero-rail-dot.active .rail-num { 
  border-color: var(--tv-brand-cyan); 
  background: var(--tv-brand-cyan); 
  color: var(--tv-petroleum-blue);
  opacity: 1; 
}
.hero-rail-dot .rail-bar { margin-top: 4px; }


/* ============================================================
   MOBILE RESPONSIVE — final pass (iPhone / iPad / Samsung)
   ============================================================ */

/* Prevent horizontal scroll on small screens */
html, body { overflow-x: hidden; max-width: 100%; }

/* Hamburger button — hidden on desktop, shown <1100px */
.nav-burger {
  display: none;
  width: 44px; height: 44px;
  background: transparent;
  border: 1px solid var(--tv-rule);
  border-radius: 4px;
  padding: 0;
  cursor: pointer;
  align-items: center;
  justify-content: center;
  flex-direction: column;
  gap: 5px;
  flex-shrink: 0;
}
.nav-burger span {
  display: block;
  width: 20px; height: 2px;
  background: var(--tv-petroleum-blue);
  border-radius: 1px;
  transition: transform 0.3s ease, opacity 0.3s ease;
}
.nav.nav-mobile-open .nav-burger span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav.nav-mobile-open .nav-burger span:nth-child(2) { opacity: 0; }
.nav.nav-mobile-open .nav-burger span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

@media (max-width: 1100px) {
  .nav-burger { display: inline-flex; }
  .nav-inner { gap: 16px; padding: 12px 24px; }
  .nav-logo img { height: 44px; }
  .nav-logo-text { font-size: 18px; }
  .nav-cta {
    padding: 12px 18px;
    font-size: 13px;
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }

  /* Hide desktop nav-links inline; show as drop-down panel when open */
  .nav-links {
    display: flex !important;
    position: absolute;
    top: 100%;
    left: 0; right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    background: var(--tv-white);
    border-bottom: 1px solid var(--tv-rule);
    box-shadow: 0 12px 32px rgba(2,48,89,0.08);
    padding: 8px 24px 16px;
    transform: translateY(-12px);
    opacity: 0;
    pointer-events: none;
    transition: transform 0.25s ease, opacity 0.25s ease;
    z-index: 99;
  }
  .nav.nav-mobile-open .nav-links {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
  }
  .nav-link {
    padding: 14px 0;
    border-bottom: 1px solid var(--tv-rule);
    font-size: 15px;
  }
  .nav-link:last-child { border-bottom: none; }
}

@media (max-width: 540px) {
  .nav-inner { padding: 12px 16px; gap: 12px; }
  .nav-logo img { height: 36px; }
  .nav-logo-text { font-size: 16px; }
  .nav-logo-tagline { display: none; }
  .nav-cta {
    /* compact on tiny screens but keep label visible */
    padding: 10px 14px;
    font-size: 12px;
    letter-spacing: 0;
    min-height: 44px;
  }
  .container { padding: 0 16px; }
}

/* Hero typography clamp tightening for tiny screens */
@media (max-width: 540px) {
  .hero-slide-title { font-size: clamp(34px, 9vw, 48px); letter-spacing: -0.02em; line-height: 1.02; }
  .hero-slide-sub, .hero-sub { font-size: 15px; line-height: 1.5; }
  .hero-pretitle { font-size: 12px; margin: 14px 0 10px; }
  .hero-title-xl { font-size: clamp(32px, 8.5vw, 44px); margin-bottom: 16px; }
  .section-title { font-size: clamp(26px, 7vw, 36px); }
  .section-lede { font-size: 15px; line-height: 1.55; }

  /* Tame the giant decorative monogram so it stays in viewport */
  .hero-mono-letter { font-size: clamp(120px, 38vw, 200px); }
  .hero-numbers { display: none; }

  /* Buttons stack full width */
  .hero-actions, .hero-slide-actions { flex-direction: column; align-items: stretch; gap: 12px; }
  .hero-actions .btn, .hero-slide-actions .btn { width: 100%; justify-content: center; }
}

/* Section titles & lede on tablets */
@media (max-width: 980px) and (min-width: 541px) {
  .section-title { font-size: clamp(28px, 4.4vw, 40px); }
}

/* Pillars: ensure cards have comfortable padding on mobile */
@media (max-width: 540px) {
  .pillar { padding: 28px 24px; }
  .pillar h3 { font-size: 22px; }
  .quick-item { padding: 28px 24px; }
  .juris-detail { padding: 28px 20px !important; }
  .juris-tab { padding: 20px 16px; }
  .stat-cell { padding: 32px 16px; }
  .stat-num { font-size: clamp(40px, 12vw, 56px) !important; }
  .featured-body { padding: 32px 20px !important; }
  .insight-card { padding: 24px 20px; }
  .form-card { padding: 28px 20px !important; }
  .contact-info { padding: 32px 24px !important; }
  .contact-info h2 { font-size: clamp(24px, 7vw, 32px) !important; }
  .form-card h3 { font-size: 20px; }
  .footer { padding: 32px 0 16px; }
  .footer-top { padding-bottom: 24px; }
}

/* Process steps — make the long horizontal flow stack cleanly on mobile */
@media (max-width: 540px) {
  .process-step { padding: 24px 0 !important; border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.12); }
  .process-step:last-child { border-bottom: none; }
}

/* Stat band — 1 column on phones for breathing room */
@media (max-width: 480px) {
  .stats-grid { grid-template-columns: 1fr !important; }
  .stat-cell { border-right: none !important; border-bottom: 1px solid rgba(255,255,255,0.12); padding: 28px 16px; }
  .stat-cell:last-child { border-bottom: none; }
}

/* Tap target floor: any link/button at least 44px tall on mobile */
@media (max-width: 720px) {
  .btn, .btn-primary, .btn-primary-dark, .btn-ghost, .nav-cta {
    min-height: 44px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
  }
}

/* Responsive images */
img { max-width: 100%; height: auto; }

/* Form fields: prevent iOS zoom on focus by ensuring 16px minimum */
@media (max-width: 720px) {
  .form-field input, .form-field select, .form-field textarea {
    font-size: 16px;
  }
}

/* Hero rail dots: hide on mobile (already hidden via .hero-rail-left/right but ensure) */
@media (max-width: 900px) {
  .hero-rail-left, .hero-rail-right { display: none !important; }
}

/* iPad portrait safety — switch from desktop two-column to stacking earlier where needed */
@media (max-width: 900px) {
  .hero-slide-grid { grid-template-columns: 1fr; gap: 32px; }
  .hero-content { padding: 48px 32px 40px !important; min-height: auto !important; }
  .hero { min-height: auto !important; }
  .hero-carousel { height: auto !important; max-height: none !important; }
}

/* Featured story — mobile stacking already present, tighten min-height */
@media (max-width: 720px) {
  .featured { min-height: auto; }
  .featured-img { min-height: 220px; }
}

/* FAQ on mobile */
@media (max-width: 540px) {
  .faq-q { font-size: 15px; }
  .faq-a { font-size: 14px; line-height: 1.55; }
}

/* Footer columns on phones */
@media (max-width: 540px) {
  .footer-blurb { max-width: 100%; }
  .footer-col-h { font-size: 11px; }
  .footer-list a { font-size: 13px; }
  .footer-bottom { flex-direction: column; align-items: flex-start; gap: 8px; }
}


/* ============================================================
   CREAM HERO — text & button contrast fixes
   ============================================================ */
/* Body copy on cream needs petroleum, not white */
.hero-cream .hero-sub {
  color: rgba(2, 48, 89, 0.82);
}
.hero-cream .hero-eyebrow {
  color: var(--tv-petroleum-blue);
}
.hero-cream .hero-eyebrow::before {
  background: var(--tv-petroleum-blue);
}
.hero-cream .hero-meta {
  color: rgba(2, 48, 89, 0.7);
}
.hero-cream .hero-meta strong { color: var(--tv-petroleum-blue); }

/* Secondary CTA on cream — dark text + dark border, not white-on-cream */
.hero-cream .btn-ghost-light {
  color: var(--tv-petroleum-blue);
  border-color: rgba(2, 48, 89, 0.32);
}
.hero-cream .btn-ghost-light:hover {
  background: rgba(2, 48, 89, 0.06);
  border-color: var(--tv-petroleum-blue);
}

/* Primary CTA on cream — switch to petroleum solid for stronger contrast vs cyan-on-cream */
.hero-cream .btn-primary {
  background: var(--tv-petroleum-blue);
  color: var(--tv-white);
}
.hero-cream .btn-primary:hover {
  background: #012544;
  color: var(--tv-white);
}

/* Trust pills on cream — readable dot + text */
.hero-cream .hero-trust-pill {
  border-color: rgba(2, 48, 89, 0.18);
  color: rgba(2, 48, 89, 0.78);
}
.hero-cream .hero-trust-pill .dot {
  background: var(--tv-deep-emerald);
  box-shadow: 0 0 0 3px rgba(13, 122, 86, 0.18);
}


/* Belt-and-braces: cream-hero readability across all viewports */
.hero-cream .hero-sub,
.hero-cream .hero-slide-sub {
  color: rgba(2, 48, 89, 0.85) !important;
}
.hero-cream .hero-eyebrow,
.hero-cream .hero-pretitle,
.hero-cream .hero-title-xl,
.hero-cream .hero-title {
  color: var(--tv-petroleum-blue) !important;
}
.hero-cream .hero-meta { color: rgba(2, 48, 89, 0.72) !important; }
.hero-cream .hero-meta strong { color: var(--tv-petroleum-blue) !important; }
.hero-cream .hero-trust-pill {
  border-color: rgba(2, 48, 89, 0.20) !important;
  color: rgba(2, 48, 89, 0.80) !important;
  background: rgba(255, 255, 255, 0.4);
}
.hero-cream .btn-ghost-light,
.hero-cream .btn-ghost {
  color: var(--tv-petroleum-blue) !important;
  border-color: rgba(2, 48, 89, 0.32) !important;
}
.hero-cream .btn-primary {
  background: var(--tv-petroleum-blue) !important;
  color: var(--tv-white) !important;
}


/* ============================================================
   MOBILE HERO — simplify for small screens (≤540px)
   ============================================================ */
@media (max-width: 540px) {
  /* Hide secondary clutter on mobile to focus on title + sub + CTA */
  .hero-trust-inline { display: none; }
  .hero-meta { margin-top: 16px; gap: 8px; font-size: 11px; }
  .hero-meta-btn { display: none; }
  .hero-meta-sep { width: 16px; }

  /* Hero content tighter padding & vertical rhythm */
  .hero-content { padding: 24px 16px 32px !important; }
  .hero { min-height: auto !important; }
  .hero-pretitle { font-size: 11px; margin: 12px 0 8px; letter-spacing: 0.14em; }
  .hero-eyebrow { margin-bottom: 16px; font-size: 11px; }
  .hero-title-xl { font-size: clamp(30px, 8.5vw, 40px) !important; margin: 0 0 14px !important; line-height: 1.05; }
  .hero-sub { font-size: 14.5px !important; line-height: 1.5; margin: 0 0 20px; }

  /* Stack CTA buttons full width */
  .hero-ctas { flex-direction: column; align-items: stretch; gap: 10px; }
  .hero-ctas .btn { width: 100%; justify-content: center; padding: 14px 16px; font-size: 13px; }

  /* Remove secondary editorial card on mobile (right column on slide 3) */
  .hero-editorial-card { padding: 24px 20px; max-width: none; }
}

/* Tablet portrait — still keep things compact */
@media (max-width: 720px) and (min-width: 541px) {
  .hero-trust-inline { gap: 8px 12px; margin-top: 16px; }
  .hero-trust-pill { font-size: 11px; padding: 5px 10px; }
}
