/* ============================================================
   WorldIDP — "Countries" page styles
   Built on global tokens from styles.css. Hero reuses faq.css
   (.fq-hero*). Page-scoped with the co- prefix. Motion is
   GPU-friendly and respects prefers-reduced-motion.
   ============================================================ */

.co-page {
  --co-card: #ffffff;
  --co-soft: #f4f8ff;
  --co-line: rgba(16, 26, 51, 0.1);
  --co-green: #1bbf73;
  --co-amber: #e8a83b;
  --co-radius: 22px;
  --co-shadow: 0 26px 70px rgba(10, 27, 61, 0.14);
  --co-shadow-sm: 0 14px 36px rgba(10, 27, 61, 0.09);
  background:
    radial-gradient(1100px 580px at 86% 4%, rgba(79, 134, 255, 0.14), transparent 60%),
    radial-gradient(820px 480px at -6% 18%, rgba(126, 192, 255, 0.14), transparent 55%),
    var(--white);
  color: var(--ink);
  overflow-x: clip;
}
.co-shell { width: var(--container); margin: 0 auto; }

/* ---------- hero: shorter + punchier (overrides faq .fq-hero*) ---------- */
.co-page .fq-hero {
  min-height: 0;
  align-items: center;
}
.co-page .fq-hero-img { object-position: 70% center; }
.co-page .fq-hero-inner { padding: clamp(6.6rem, 8vw, 7.8rem) 0 clamp(3.4rem, 4.5vw, 4.4rem); }
.co-page .fq-hero h1 { font-size: clamp(2.05rem, 1.4rem + 2.6vw, 3.15rem); margin-bottom: 0.7rem; }
.co-page .fq-hero-sub { margin-bottom: 1.15rem; max-width: 35rem; font-size: clamp(0.98rem, 0.95rem + 0.25vw, 1.12rem); }
/* a distinctive aurora sweep across the hero */
.co-page .fq-hero::after {
  content: "";
  position: absolute;
  inset: -30% -10% auto auto;
  width: 60%; height: 130%;
  background: radial-gradient(closest-side, rgba(33, 120, 255, 0.28), transparent 70%);
  z-index: -1; pointer-events: none;
  animation: co-aurora 12s ease-in-out infinite;
}
@media (max-width: 760px) {
  .co-page .fq-hero-inner { padding: 6.2rem 0 3.2rem; }
}

/* ---------- hero copy tweaks (reuses faq .fq-hero*) ---------- */
.co-page .fq-search-go { white-space: nowrap; }
.co-hero-flags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin: 18px 0 0;
  opacity: 0;
  animation: fq-rise 0.7s var(--fq-ease, cubic-bezier(.2,.7,.2,1)) 0.35s forwards;
}
.co-hero-flags a { text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.14);
  border: 1px solid rgba(255, 255, 255, 0.22);
  color: #eaf3ff;
  font-size: 0.82rem;
  font-weight: 800;
  backdrop-filter: blur(6px);
  cursor: pointer;
  transition: transform 160ms ease, background 160ms ease;
}
.co-hero-flags a:hover { transform: translateY(-2px); background: rgba(255, 255, 255, 0.24); }
.co-hero-flags .co-fl { font-size: 1.05rem; line-height: 1; }

/* ============================================================
   STATS — alive: icon, accent, float, glow
   ============================================================ */
.co-stats {
  width: var(--container);
  margin: clamp(-58px, -5vw, -42px) auto 0;
  position: relative;
  z-index: 3;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
}
.co-stat {
  position: relative;
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 8px;
  padding: 24px 18px 22px;
  border-radius: 22px;
  background: linear-gradient(180deg, #ffffff, #f3f8ff);
  border: 1px solid var(--co-line);
  box-shadow: var(--co-shadow);
  text-align: center;
  overflow: hidden;
  transition: transform 300ms cubic-bezier(.2,.7,.2,1), box-shadow 300ms ease;
  animation: co-stat-float 7s ease-in-out infinite;
}
.co-stat-2 { animation-delay: -1.4s; }
.co-stat-3 { animation-delay: -2.8s; }
.co-stat-4 { animation-delay: -4.2s; }
/* top accent line */
.co-stat::before {
  content: "";
  position: absolute;
  top: 0; left: 18%; right: 18%;
  height: 3px; border-radius: 3px;
  background: linear-gradient(90deg, var(--blue-500), var(--cyan-300));
  opacity: 0.9;
}
/* hover glow */
.co-stat::after {
  content: "";
  position: absolute;
  inset: auto -20% -70% -20%;
  height: 120px;
  background: radial-gradient(closest-side, rgba(79, 134, 255, 0.28), transparent 70%);
  opacity: 0; transition: opacity 320ms ease;
  pointer-events: none;
}
.co-stat:hover { transform: translateY(-6px); box-shadow: 0 34px 80px rgba(10, 27, 61, 0.2); }
.co-stat:hover::after { opacity: 1; }
.co-stat-ico {
  width: 44px; height: 44px;
  display: grid; place-items: center;
  border-radius: 13px;
  color: #fff;
  background: linear-gradient(135deg, var(--blue-800), var(--blue-500));
  box-shadow: 0 12px 24px rgba(7, 88, 216, 0.28);
  transition: transform 300ms cubic-bezier(.2,.7,.2,1);
}
.co-stat:hover .co-stat-ico { transform: scale(1.08) rotate(-4deg); }
.co-stat-ico svg { width: 23px; height: 23px; }
.co-stat b {
  display: block;
  font-size: clamp(1.9rem, 2.8vw, 2.6rem);
  font-weight: 900;
  letter-spacing: -0.03em;
  line-height: 1;
  background: linear-gradient(135deg, var(--blue-800), var(--blue-500));
  -webkit-background-clip: text;
  background-clip: text;
  color: transparent;
}
.co-stat-lbl { display: block; color: var(--muted); font-size: 0.84rem; font-weight: 800; }

/* ============================================================
   EXPLORER
   ============================================================ */
.co-explorer { padding: clamp(48px, 7vw, 84px) 0 0; }

.co-toolbar {
  position: sticky;
  top: 12px;
  z-index: 20;
  width: var(--container);
  margin: 0 auto 26px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 12px;
  padding: 12px;
  border-radius: 20px;
  background: rgba(255, 255, 255, 0.86);
  border: 1px solid var(--co-line);
  box-shadow: var(--co-shadow-sm);
  backdrop-filter: blur(14px) saturate(1.2);
}
.co-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 4px;
  padding: 4px;
  border-radius: 14px;
  background: var(--co-soft);
}
.co-tab {
  appearance: none;
  border: 0;
  background: transparent;
  padding: 9px 15px;
  border-radius: 11px;
  color: var(--muted);
  font-size: 0.86rem;
  font-weight: 800;
  cursor: pointer;
  white-space: nowrap;
  transition: color 180ms ease, background 220ms ease, box-shadow 220ms ease, transform 180ms ease;
}
.co-tab:hover { color: var(--blue-800); }
.co-tab.is-active {
  color: var(--white);
  background: linear-gradient(135deg, var(--blue-800), var(--blue-500));
  box-shadow: 0 10px 22px rgba(7, 88, 216, 0.26);
  transform: translateY(-1px);
}
.co-toolbar-spacer { flex: 1 1 auto; }

.co-tsearch {
  position: relative;
  display: flex;
  align-items: center;
  min-width: 190px;
  flex: 1 1 190px;
  max-width: 300px;
}
.co-tsearch svg { position: absolute; left: 12px; width: 16px; height: 16px; color: #8a99b5; pointer-events: none; }
.co-tsearch input {
  width: 100%;
  height: 42px;
  padding: 0 14px 0 36px;
  border-radius: 12px;
  border: 1px solid var(--co-line);
  background: #fff;
  font: inherit;
  font-size: 0.9rem;
  font-weight: 600;
  color: var(--ink);
  outline: none;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}
.co-tsearch input:focus { border-color: var(--blue-500); box-shadow: 0 0 0 4px rgba(79, 134, 255, 0.16); }

.co-view {
  display: inline-flex;
  padding: 4px;
  border-radius: 12px;
  background: var(--co-soft);
}
.co-view button {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  border: 0;
  background: transparent;
  padding: 8px 13px;
  border-radius: 9px;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 800;
  cursor: pointer;
  transition: color 160ms ease, background 200ms ease, box-shadow 200ms ease;
}
.co-view button svg { width: 16px; height: 16px; }
.co-view button.is-active { color: var(--blue-800); background: #fff; box-shadow: var(--co-shadow-sm); }

.co-count {
  width: var(--container);
  margin: 0 auto 18px;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 750;
}
.co-count b { color: var(--blue-800); }

/* ---------- region blocks + cards ---------- */
.co-regions { width: var(--container); margin: 0 auto; }
.co-region { margin: 0 0 clamp(34px, 5vw, 52px); }
.co-region.is-hidden { display: none; }
.co-region-head {
  display: flex;
  align-items: baseline;
  gap: 12px;
  margin: 0 0 18px;
  padding-bottom: 12px;
  border-bottom: 1px solid var(--co-line);
}
.co-region-head h2 {
  margin: 0;
  color: var(--blue-950);
  font-size: clamp(1.3rem, 2.2vw, 1.7rem);
  font-weight: 850;
  letter-spacing: -0.01em;
}
.co-region-head span { color: var(--muted); font-size: 0.86rem; font-weight: 750; }

.co-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(248px, 1fr));
  gap: 14px;
}
.co-card {
  position: relative;
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border-radius: var(--co-radius);
  background: var(--co-card);
  border: 1px solid var(--co-line);
  box-shadow: var(--co-shadow-sm);
  overflow: hidden;
  transition: transform 320ms cubic-bezier(.2,.7,.2,1), box-shadow 320ms ease, border-color 320ms ease;
}
.co-card.is-hidden { display: none; }
.co-card::after {
  content: "";
  position: absolute;
  top: 0; left: -70%;
  width: 50%; height: 100%;
  background: linear-gradient(105deg, transparent, rgba(255, 255, 255, 0.6), transparent);
  transform: skewX(-18deg);
  opacity: 0;
  pointer-events: none;
}
.co-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--co-shadow);
  border-color: rgba(79, 134, 255, 0.4);
}
.co-card:hover::after { animation: co-scan 1s ease; }

.co-card-top { display: flex; align-items: center; gap: 12px; }
.co-flag {
  flex: none;
  width: 46px; height: 46px;
  display: grid;
  place-items: center;
  border-radius: 13px;
  font-size: 1.55rem;
  line-height: 1;
  background: var(--co-soft);
  box-shadow: inset 0 0 0 1px var(--co-line);
  transition: transform 320ms cubic-bezier(.2,.7,.2,1);
}
.co-card:hover .co-flag { transform: scale(1.08) rotate(-3deg); }
.co-card-name { min-width: 0; }
.co-card-name h3 {
  margin: 0;
  color: var(--blue-950);
  font-size: 1.02rem;
  font-weight: 850;
  letter-spacing: -0.01em;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}
.co-card-name p { margin: 2px 0 0; color: var(--muted); font-size: 0.78rem; font-weight: 700; }

.co-badges { display: flex; flex-wrap: wrap; gap: 7px; }
.co-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.01em;
}
.co-badge svg { width: 13px; height: 13px; }
.co-badge-req { color: #b23b3b; background: rgba(210, 75, 75, 0.1); }
.co-badge-rec { color: #1a8d59; background: rgba(27, 191, 115, 0.12); }
.co-badge-lim { color: #9a6a14; background: rgba(232, 168, 59, 0.14); }
.co-badge-side { color: var(--blue-800); background: rgba(79, 134, 255, 0.12); }
.co-badge-speed { color: #3a4a6b; background: var(--co-soft); }

.co-note {
  margin: 0;
  color: var(--muted);
  font-size: 0.84rem;
  font-weight: 600;
  line-height: 1.5;
}

/* lane indicator inside side badge */
.co-lane {
  position: relative;
  width: 16px; height: 11px;
  border-radius: 3px;
  background: #cfe0ff;
  overflow: hidden;
}
.co-lane::before {
  content: "";
  position: absolute;
  top: 50%; width: 5px; height: 2px;
  background: var(--blue-700);
  transform: translateY(-50%);
  animation: co-lane-r 1.6s linear infinite;
}
.co-lane.l::before { animation-name: co-lane-l; }

/* ---------- table view ---------- */
.co-table-wrap {
  width: var(--container);
  margin: 0 auto;
  border-radius: var(--co-radius);
  background: var(--co-card);
  border: 1px solid var(--co-line);
  box-shadow: var(--co-shadow-sm);
  overflow: hidden;
  display: none;
}
.co-table-wrap.is-on { display: block; }
.co-table-scroll { overflow-x: auto; }
.co-table { width: 100%; border-collapse: collapse; font-size: 0.92rem; min-width: 640px; }
.co-table thead th {
  position: sticky; top: 0;
  background: linear-gradient(135deg, var(--blue-900), var(--blue-700));
  color: #fff;
  font-weight: 850;
  font-size: 0.86rem;
  text-align: left;
  padding: 14px 16px;
  white-space: nowrap;
}
.co-table tbody td { padding: 13px 16px; border-top: 1px solid var(--co-line); vertical-align: middle; }
.co-table tbody tr:nth-child(even) { background: var(--co-soft); }
.co-table tbody tr.is-hidden { display: none; }
.co-table .co-tname { font-weight: 850; color: var(--blue-950); display: inline-flex; align-items: center; gap: 9px; }
.co-table .co-tname .co-fl { font-size: 1.15rem; }
.co-table .pill { display: inline-flex; align-items: center; gap: 5px; padding: 4px 9px; border-radius: 999px; font-size: 0.74rem; font-weight: 850; }

/* empty state */
.co-empty {
  width: var(--container);
  margin: 0 auto;
  display: none;
  padding: 50px 20px;
  text-align: center;
  color: var(--muted);
  font-weight: 700;
}
.co-empty.is-on { display: block; }
.co-empty svg { width: 40px; height: 40px; color: #b9c6dd; margin-bottom: 10px; }

.co-foot-note {
  width: var(--container);
  max-width: 880px;
  margin: 26px auto 0;
  color: var(--muted);
  font-size: 0.82rem;
  font-weight: 600;
  line-height: 1.55;
  text-align: center;
}

/* ============================================================
   SHARED HEADING (conventions / popular / faq)
   ============================================================ */
.co-section { padding: clamp(60px, 9vw, 104px) 0 0; }
.co-section-tint {
  margin-top: clamp(60px, 9vw, 100px);
  padding: clamp(56px, 8vw, 92px) 0;
  background: radial-gradient(900px 460px at 50% -10%, rgba(79, 134, 255, 0.08), transparent 60%), var(--co-soft);
}
.co-head { width: var(--container); max-width: 720px; margin: 0 auto 38px; text-align: center; }
.co-head .co-kicker {
  display: inline-flex; min-height: 34px; align-items: center; gap: 8px;
  padding: 0 15px; border-radius: 999px;
  border: 1px solid rgba(7, 88, 216, 0.16); color: var(--blue-800);
  background: rgba(255, 255, 255, 0.74); box-shadow: 0 10px 30px rgba(7, 88, 216, 0.08);
  font-size: 0.76rem; font-weight: 950; letter-spacing: 0.09em; text-transform: uppercase;
}
.co-head h2 {
  margin: 12px 0 0; color: var(--blue-950);
  font-size: clamp(1.8rem, 3vw, 2.7rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.08;
}
.co-head h2 em { color: var(--blue-700); font-family: Georgia, "Times New Roman", serif; font-size: 0.92em; font-style: italic; font-weight: 500; }
.co-head p { max-width: 600px; margin: 14px auto 0; color: var(--muted); font-size: 1rem; font-weight: 600; line-height: 1.62; }

/* conventions */
.co-conv-grid { width: var(--container); margin: 0 auto; display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
.co-conv {
  padding: 28px; border-radius: var(--co-radius); background: var(--co-card);
  border: 1px solid var(--co-line); box-shadow: var(--co-shadow-sm);
}
.co-conv-seal {
  width: 52px; height: 52px; display: grid; place-items: center; border-radius: 15px; margin-bottom: 14px;
  color: #fff; background: linear-gradient(135deg, var(--blue-800), var(--blue-500)); box-shadow: 0 12px 24px rgba(7,88,216,.24);
}
.co-conv-seal svg { width: 28px; height: 28px; animation: co-spin 18s linear infinite; }
.co-conv .yr { color: var(--blue-700); font-weight: 900; font-size: 0.8rem; letter-spacing: 0.04em; text-transform: uppercase; }
.co-conv h3 { margin: 4px 0 8px; color: var(--blue-950); font-size: 1.15rem; font-weight: 850; }
.co-conv p { margin: 0; color: var(--muted); font-size: 0.95rem; font-weight: 600; line-height: 1.6; }

/* popular destinations chips */
.co-pop { width: var(--container); margin: 0 auto; display: flex; flex-wrap: wrap; gap: 10px; justify-content: center; }
.co-pop a {
  display: inline-flex; align-items: center; gap: 9px;
  padding: 11px 16px; border-radius: 999px; text-decoration: none;
  background: var(--co-card); border: 1px solid var(--co-line); box-shadow: var(--co-shadow-sm);
  color: var(--blue-950); font-size: 0.92rem; font-weight: 800;
  transition: transform 160ms ease, box-shadow 160ms ease, border-color 160ms ease;
}
.co-pop a:hover { transform: translateY(-3px); box-shadow: var(--co-shadow); border-color: rgba(79,134,255,.4); }
.co-pop a .co-fl { font-size: 1.15rem; }

/* faq */
.co-faq { width: var(--container); max-width: 840px; margin: 0 auto; display: grid; gap: 12px; }
.co-faq details { border-radius: 18px; background: var(--co-card); border: 1px solid var(--co-line); box-shadow: var(--co-shadow-sm); overflow: hidden; }
.co-faq summary {
  display: flex; align-items: center; justify-content: space-between; gap: 14px;
  padding: 18px 22px; cursor: pointer; list-style: none;
  font-size: 1.0rem; font-weight: 800; color: var(--blue-950);
}
.co-faq summary::-webkit-details-marker { display: none; }
.co-faq .co-plus { flex: none; position: relative; width: 22px; height: 22px; border-radius: 7px; background: rgba(79,134,255,.12); transition: background .24s ease; }
.co-faq .co-plus::before, .co-faq .co-plus::after { content: ""; position: absolute; inset: 50% 5px auto 5px; height: 2px; border-radius: 2px; background: var(--blue-700); transform: translateY(-50%); }
.co-faq .co-plus::after { transform: translateY(-50%) rotate(90deg); transition: transform .24s ease; }
.co-faq details[open] .co-plus { background: var(--blue-700); }
.co-faq details[open] .co-plus::before, .co-faq details[open] .co-plus::after { background: #fff; }
.co-faq details[open] .co-plus::after { transform: translateY(-50%) rotate(0); }
.co-faq-body { padding: 0 22px 20px; color: var(--muted); font-size: 0.96rem; font-weight: 600; line-height: 1.65; }
.co-faq-body a { color: var(--blue-700); font-weight: 750; }
.co-faq details[open] .co-faq-body { animation: co-fade .32s ease; }

/* CTA */
.co-cta {
  position: relative; width: var(--container); margin: clamp(66px, 9vw, 108px) auto 0;
  padding: clamp(40px, 6vw, 70px) clamp(28px, 5vw, 62px); border-radius: 30px;
  background: linear-gradient(135deg, var(--blue-950), var(--blue-700)); color: #eaf2ff; text-align: center;
  overflow: hidden; box-shadow: var(--co-shadow);
}
.co-cta::before { content: ""; position: absolute; inset: auto -10% -60% -10%; height: 340px; background: radial-gradient(closest-side, rgba(126,192,255,.4), transparent 70%); pointer-events: none; }
.co-cta h2 { position: relative; margin: 0 auto 12px; max-width: 680px; color: #fff; font-size: clamp(1.7rem, 3.1vw, 2.6rem); font-weight: 800; letter-spacing: -0.02em; line-height: 1.1; }
.co-cta h2 em { font-family: Georgia, "Times New Roman", serif; font-style: italic; font-weight: 500; color: #bcd8ff; }
.co-cta p { position: relative; max-width: 560px; margin: 0 auto 24px; font-size: 1.04rem; font-weight: 550; line-height: 1.6; }
.co-btn {
  position: relative; display: inline-flex; align-items: center; justify-content: center; gap: 9px;
  min-height: 52px; padding: 0 26px; border-radius: 999px; text-decoration: none;
  font-size: 1rem; font-weight: 900; color: var(--blue-800); background: #fff; box-shadow: 0 18px 40px rgba(0,0,0,.25);
  transition: transform 180ms ease, box-shadow 180ms ease;
}
.co-btn:hover { transform: translateY(-2px); }
.co-btn svg { width: 18px; height: 18px; }
.co-cta-note { position: relative; margin: 16px 0 0; font-size: 0.82rem; font-weight: 650; color: #b9cdf0; }

.co-bottom-space { height: clamp(66px, 9vw, 104px); }

/* ============================================================
   REVEAL + COUNTERS
   ============================================================ */
[data-reveal] {
  opacity: 0; transform: translateY(24px);
  transition: opacity .7s cubic-bezier(.2,.7,.2,1), transform .7s cubic-bezier(.2,.7,.2,1);
  transition-delay: var(--d, 0ms); will-change: opacity, transform;
}
[data-reveal].co-in { opacity: 1; transform: none; }

/* card entrance stagger when its region becomes visible */
.co-grid .co-card { opacity: 0; transform: translateY(18px) scale(.98); }
.co-region.co-shown .co-grid .co-card {
  animation: co-pop-in .56s cubic-bezier(.2,.7,.2,1) forwards;
  animation-delay: calc(var(--i, 0) * 38ms);
}

/* ============================================================
   KEYFRAMES
   ============================================================ */
@keyframes co-pop-in { to { opacity: 1; transform: none; } }
@keyframes co-scan { from { opacity: 0; left: -70%; } 40% { opacity: 1; } to { opacity: 0; left: 130%; } }
@keyframes co-spin { to { transform: rotate(360deg); } }
@keyframes co-fade { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: none; } }
@keyframes co-lane-r { from { left: -6px; } to { left: 16px; } }
@keyframes co-lane-l { from { left: 16px; } to { left: -6px; } }
@keyframes co-aurora { 0%,100% { opacity: 0.7; transform: translate(0,0) scale(1); } 50% { opacity: 1; transform: translate(-4%, 3%) scale(1.08); } }
@keyframes co-stat-float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-7px); } }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 900px) {
  .co-stats { grid-template-columns: repeat(2, 1fr); margin-top: -22px; }
  .co-conv-grid { grid-template-columns: 1fr; }
  .co-toolbar { top: 8px; }
}
@media (max-width: 620px) {
  .co-toolbar { padding: 10px; }
  .co-tabs { width: 100%; overflow-x: auto; flex-wrap: nowrap; -webkit-overflow-scrolling: touch; }
  .co-tsearch { max-width: none; }
  .co-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  .co-conv-seal svg, .co-lane::before, .co-stat, .co-page .fq-hero::after { animation: none !important; }
  [data-reveal], .co-grid .co-card { opacity: 1 !important; transform: none !important; transition: none !important; animation: none !important; }
  .co-card:hover, .co-stat:hover { transform: none; }
}

.co-global-disclaimer{font-size:11.5px;line-height:1.5;color:#aeb7c9;max-width:60ch;margin:9px 0 0;opacity:.85}

/* ── Hero text legibility over the dark photo slider ── */
.co-page .fq-hero-stack{ position:relative; z-index:2; }
.co-page .fq-hero-stack::before{
  content:""; position:absolute; inset:-28px -30px -28px -44px; z-index:-1; pointer-events:none;
  background:radial-gradient(120% 135% at 22% 42%, rgba(6,12,30,.72), rgba(6,12,30,.30) 55%, transparent 82%);
  border-radius:26px;
}
/* Force hero text ALWAYS visible (don't depend on the reveal animation) */
.co-page .fq-hero .fq-kicker,
.co-page .fq-hero h1,
.co-page #co-title,
.co-page .fq-hero-sub{ opacity:1 !important; transform:none !important; animation:none !important; }
.co-page .fq-kicker{ color:#e6ecff; }
.co-page #co-title{ color:#ffffff; text-shadow:0 2px 16px rgba(0,0,0,.5); }
.co-page #co-title em{ color:#bcd2ff; font-style:italic; }
.co-page .fq-hero-sub{ color:#eef2ff; }
.co-page .co-global-disclaimer{ color:#d6deee; }
