/* =============================================================
   cms-pages.css  —  Merged stylesheet for all 7 CMS pages
   ============================================================= */

/* ── CSS CUSTOM PROPERTIES ──────────────────────────────────── */
:root {
  /* Backgrounds */
  --bg:             #111318;
  --bg2:            #16191f;
  --bg3:            #1c2029;

  /* Cards */
  --card:           #1a1d24;
  --card2:          #1f2330;
  --card-hover:     #1f2330;

  /* Borders */
  --border:         #2a2f3d;
  --border2:        #333848;
  --border-light:   #333848;

  /* Accent / Yellow */
  --accent:         #f5c518;
  --accent2:        #ffd740;
  --accent-dim:     #e6b800;
  --accent-glow:    rgba(245,197,24,0.12);
  --accent-glow2:   rgba(245,197,24,0.06);
  --glow:           rgba(245,197,24,0.12);
  --glow2:          rgba(245,197,24,0.05);

  /* Typography */
  --text:           #dde2ee;
  --muted:          #7a8299;
  --muted2:         #555f7a;
  --white:          #ffffff;

  /* Status colours */
  --green:          #4ade80;
  --green-bg:       rgba(74,222,128,0.07);
  --green-bdr:      rgba(74,222,128,0.22);
  --red:            #f87171;
  --red-bg:         rgba(248,113,113,0.07);
  --red-bdr:        rgba(248,113,113,0.2);
  --red-border:     rgba(248,113,113,0.2);
  --blue:           #60a5fa;
  --blue-bg:        rgba(96,165,250,0.07);
  --blue-bdr:       rgba(96,165,250,0.22);

  /* Alt palette (page 5 / Syne variant) */
  --yellow:         #FFD600;
  --yellow-deep:    #F5C400;
  --yellow-glow:    rgba(255,214,0,0.18);
  --yellow-soft:    rgba(255,214,0,0.08);
  --dark:           #0D0D0D;
  --dark2:          #141414;
  --dark3:          #1C1C1C;
  --dark4:          #232323;
  --text-muted:     #888;

  /* Border-radius */
  --radius:         12px;
  --radius-lg:      18px;
}


/* ── RESET ──────────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }


/* ── BASE BODY ──────────────────────────────────────────────── */
body {
  font-family: 'DM Sans', sans-serif;
  background: var(--bg);
  color: var(--text);
  min-height: 100vh;
  overflow-x: hidden;
  line-height: 1.75;
}

/* Optional ambient BG glow (page 5 style – opt-in via class) */
body.has-bg-glow::before {
  content: '';
  position: fixed;
  inset: 0;
  background-image:
    radial-gradient(circle at 15% 20%, rgba(255,214,0,0.06) 0%, transparent 40%),
    radial-gradient(circle at 85% 75%, rgba(255,214,0,0.04) 0%, transparent 35%);
  pointer-events: none;
  z-index: 0;
}


/* ── HEADER / NAV ───────────────────────────────────────────── */
header {
  position: sticky; top: 0; z-index: 100;
  background: rgba(17,19,24,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
  height: 60px;
  display: flex; align-items: center;
  padding: 0 2rem;
  justify-content: space-between;
}

/* Standalone <nav> (page 5 variant) */
nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(13,13,13,0.92);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid var(--border);
  padding: 0 40px;
  display: flex; align-items: center;
  justify-content: space-between;
  height: 64px;
}

/* Nav links (header-embedded) */
header nav {
  position: static;
  background: none;
  border: none;
  padding: 0;
  height: auto;
  display: flex;
  gap: 0.15rem;
}
header nav a {
  color: var(--muted); text-decoration: none;
  font-size: 0.84rem; font-weight: 500;
  padding: 0.38rem 0.7rem; border-radius: 7px;
  transition: color .2s, background .2s;
}
header nav a:hover { color: var(--accent); background: var(--glow2); }
header nav a.cur,
header nav a.active { color: var(--accent); }

/* Logo wrappers */
.logo-link,
.logo-wrap {
  display: flex; align-items: center; text-decoration: none;
}
.logo-link img,
.logo-wrap img { height: 34px; width: auto; }

/* Page-5 nav brand */
.nav-brand {
  font-family: 'Syne', sans-serif;
  font-weight: 800; font-size: 22px;
  color: var(--yellow); text-decoration: none;
  letter-spacing: -0.5px;
}
.nav-brand span { color: var(--text); }

.nav-badge {
  font-size: 11px;
  background: var(--yellow-soft);
  border: 1px solid var(--border);
  color: var(--yellow);
  padding: 4px 12px; border-radius: 20px;
  font-weight: 500; letter-spacing: 0.5px;
  text-transform: uppercase;
}


/* ── HERO ───────────────────────────────────────────────────── */
.hero {
  position: relative; overflow: hidden;
  background: var(--bg2);
  border-bottom: 1px solid var(--border);
  padding: 5rem 2rem 4.5rem;
  text-align: center;
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    repeating-linear-gradient(0deg, transparent, transparent 47px, rgba(42,47,61,0.45) 48px),
    repeating-linear-gradient(90deg, transparent, transparent 47px, rgba(42,47,61,0.45) 48px);
  pointer-events: none;
}
.hero::after {
  content: '';
  position: absolute; top: -80px; left: 50%; transform: translateX(-50%);
  width: 700px; height: 300px;
  background: radial-gradient(ellipse, rgba(245,197,24,0.11) 0%, transparent 70%);
  pointer-events: none;
}
.hero-inner { position: relative; z-index: 1; }

/* Hero – page 5 variant (Syne-based) */
.hero.hero--alt {
  padding: 80px 40px 60px;
  max-width: 900px;
  margin: 0 auto;
  background: none;
  border: none;
}

/* Pill / badge */
.hero-badge,
.hero-pill,
.hero-tag {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--glow); border: 1px solid rgba(245,197,24,0.3);
  color: var(--accent);
  font-family: 'Exo 2', sans-serif; font-size: 0.68rem;
  font-weight: 700; letter-spacing: 0.15em; text-transform: uppercase;
  padding: 0.28rem 0.85rem; border-radius: 100px;
  margin-bottom: 1.4rem;
}
.hero-badge::before,
.hero-pill::before { content: '●'; font-size: 0.45rem; }

.hero-tag {
  font-size: 12px; letter-spacing: 0.8px;
  background: var(--yellow-soft);
  border-color: rgba(255,214,0,0.25);
  color: var(--yellow);
  padding: 5px 14px;
}
.hero-tag::before {
  content: '';
  width: 6px; height: 6px;
  background: var(--yellow); border-radius: 50%;
  animation: pulse 2s infinite;
}

/* Headings */
.hero h1 {
  font-family: 'Exo 2', sans-serif; font-weight: 900;
  font-size: clamp(2.2rem, 5.5vw, 3.5rem);
  line-height: 1.1; letter-spacing: -1px;
  color: var(--white);
}
.hero h1 span,
.hero h1 .hl { color: var(--accent); }

.hero h1 .hl {
  position: relative; display: inline-block;
}
.hero h1 .hl::after {
  content: '';
  position: absolute; bottom: 2px; left: 0; right: 0;
  height: 3px; background: var(--accent);
  border-radius: 2px; opacity: 0.35;
}

/* Alt h1 (Syne) */
.hero--alt h1 {
  font-family: 'Syne', sans-serif;
  font-size: clamp(36px, 6vw, 64px);
  letter-spacing: -2px; margin-bottom: 20px;
}
.hero--alt h1 .accent { color: var(--yellow); position: relative; }

/* Sub / description */
.hero-sub {
  margin: 1.1rem auto 0; max-width: 540px;
  color: var(--muted); font-size: 1.02rem; line-height: 1.7; margin: 0 auto !important;
}
.hero--alt .hero-sub {
  font-size: 17px; max-width: 560px;
  margin-bottom: 32px;
}

/* Meta row */
.hero-meta {
  display: flex; align-items: center; justify-content: center;
  flex-wrap: wrap; gap: 0.6rem;
  font-size: 0.82rem; color: var(--muted);
  margin-bottom: 1.4rem;
}
.hero-meta span { display: flex; align-items: center; gap: 0.35rem; }
.hero-meta strong { color: var(--text); }
.hero-meta .dot { color: var(--border2); }

/* Meta chips (page 5) */
.meta-chip {
  display: flex; align-items: center; gap: 7px;
  font-size: 13px; color: var(--text-muted);
}
.meta-chip .dot {
  width: 8px; height: 8px;
  background: var(--yellow); border-radius: 2px;
  transform: rotate(45deg);
}

/* Trust badges */
.trust-row {
  display: inline-flex; flex-wrap: wrap;
  justify-content: center; gap: 0.5rem;
}
.trust-badge {
  display: flex; align-items: center; gap: 0.4rem;
  background: var(--green-bg);
  border: 1px solid rgba(34,197,94,0.25);
  color: var(--green);
  font-size: 0.76rem; font-weight: 600;
  padding: 0.28rem 0.75rem; border-radius: 100px;
}
.trust-badge::before { content: '✓'; font-weight: 700; }

/* Hero search bar */
.search-wrap {
  margin: 2rem auto 0;
  display: flex; align-items: center;
  max-width: 400px;
  background: var(--card);
  border: 1.5px solid var(--border);
  border-radius: 100px;
  padding: 5px 5px 5px 18px;
  transition: border-color .2s, box-shadow .2s;
}
.search-wrap:focus-within {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--accent-glow);
}
.search-wrap input {
  flex: 1; background: none; border: none; outline: none;
  color: var(--text); font-size: 0.88rem;
  font-family: 'DM Sans', sans-serif;
}
.search-wrap input::placeholder { color: var(--muted2); }
.search-wrap button {
  background: var(--accent); color: #111;
  border: none; border-radius: 100px;
  padding: 0.48rem 1.1rem;
  font-size: 0.82rem; font-weight: 700;
  font-family: 'Exo 2', sans-serif;
  letter-spacing: 0.03em; cursor: pointer;
  transition: background .2s, transform .15s;
}
.search-wrap button:hover { background: var(--accent2); transform: scale(1.03); }


/* ── DIVIDER (page 5) ───────────────────────────────────────── */
.divider {
  max-width: 900px; margin: 0 auto;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
  opacity: 0.25;
  position: relative; z-index: 1;
}


/* ── STATS / STATS BAR ──────────────────────────────────────── */
.stats,
.stats-row {
  display: flex; justify-content: center;
  border-bottom: 1px solid var(--border);
  background: var(--bg);
  width: 100%;
}
.stat {
  flex: 1; max-width: 200px;
  text-align: center; padding: 1.3rem 1rem;
  border-right: 1px solid var(--border);
}
.stat:last-child { border-right: none; }
.stat-n,
.stat-num {
  font-family: 'Exo 2', sans-serif; font-weight: 900;
  font-size: 1.6rem; color: var(--accent); line-height: 1;
}
.stat-l,
.stat-label {
  color: var(--muted); font-size: 0.72rem;
  margin-top: 0.25rem; letter-spacing: 0.04em;
}


/* ── PAGE WRAP ──────────────────────────────────────────────── */
.page-wrap {
  max-width: 860px; margin: 0 auto;
  padding: 3.5rem 1.5rem 5rem;
  display: flex; flex-direction: column; gap: 3rem;
}

main {
  position: relative; z-index: 1;
  max-width: 900px; margin: 0 auto;
  padding: 56px 40px 100px;
}


/* ── NOTICE / BANNER ────────────────────────────────────────── */
.notice-banner {
  max-width: 860px; margin: 2rem auto 0;
  background: var(--card);
  border: 1px solid var(--border2);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 1rem 1.4rem;
  font-size: 0.88rem; color: var(--muted); line-height: 1.7;
}
.notice-banner strong { color: var(--text); }

.notice-card {
  background: var(--card);
  border: 1px solid var(--border2);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.1rem 1.4rem;
  font-size: 0.88rem; color: var(--muted);
  line-height: 1.75; margin-top: 1rem;
}
.notice-card strong { color: var(--text); }
.notice-card a { color: var(--accent); text-decoration: none; font-weight: 600; }
.notice-card a:hover { text-decoration: underline; }


/* ── SECTION LABELS / HEADINGS ──────────────────────────────── */
.sec-head,
.sec-label,
.group-label {
  display: flex; align-items: center; gap: 0.75rem;
  margin-bottom: 1.4rem;
  font-weight: 700;
  font-size: 10.88px;
  text-transform: uppercase;
  color: #f5c518;
}
.sec-icon,
.sec-label-icon,
.group-icon {
  width: 34px; height: 34px; border-radius: 9px;
  background: var(--glow); border: 1px solid rgba(245,197,24,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.sec-label .sec-label-text,
.sec-label-text,
.group-title,
.sec-title {
  font-family: 'Exo 2', sans-serif; font-weight: 700;
  font-size: 0.68rem; letter-spacing: 0.16em;
  text-transform: uppercase; color: var(--accent);
}
/* Legacy alias */
.sec-label-line,
.group-line,
.sec-line { flex: 1; height: 1px; background: var(--border); }


/* ── CONTENT CARD ───────────────────────────────────────────── */
.content-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2.4rem;
  position: relative; overflow: hidden;
  animation: fadeUp 0.45s ease both;
}
.content-card::before {
  content: '';
  position: absolute; top: 0; left: 0;
  width: 3px; height: 100%;
  background: linear-gradient(180deg, var(--accent) 0%, transparent 100%);
  border-radius: 2px 0 0 2px;
}
.content-card h2 {
  font-family: 'Exo 2', sans-serif; font-weight: 800;
  font-size: 1.3rem; color: var(--white);
  margin-bottom: 1rem; letter-spacing: -0.3px;
}
.content-card p {
  color: var(--muted); font-size: 0.95rem;
  line-height: 1.8; margin-bottom: 0.9rem;
}
.content-card p:last-child { margin-bottom: 0; }
.content-card p strong { color: var(--text); font-weight: 600; }
.content-card strong { color: var(--text); font-weight: 600; }
.content-card a { color: var(--accent); text-decoration: none; font-weight: 500; }
/*.content-card a:hover { text-decoration: underline; }*/


/* ── INTRO CARD ─────────────────────────────────────────────── */
.intro-card {
  background: linear-gradient(135deg, var(--bg3) 0%, #0f1520 100%);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 2.5rem 2.4rem;
  position: relative; overflow: hidden;
  animation: fadeUp 0.5s ease both;
}
.intro-card::after {
  content: '';
  position: absolute; top: -40px; right: -40px;
  width: 200px; height: 200px;
  background: radial-gradient(circle, rgba(245,197,24,0.07) 0%, transparent 70%);
  pointer-events: none;
}
.intro-card h2 {
  font-family: 'Exo 2', sans-serif; font-weight: 900;
  font-size: 1.55rem; color: var(--white);
  margin-bottom: 1rem; letter-spacing: -0.5px;
}
.intro-card p {
  color: var(--muted); font-size: 0.97rem;
  line-height: 1.82; margin-bottom: 0.9rem;
}
.intro-card p:last-child { margin-bottom: 0; }


/* ── SECTION CARD (page 2) ──────────────────────────────────── */
.sec-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  display: flex; flex-direction: column;
}
.sec-card .sec-head {
  display: flex; align-items: flex-start; gap: 1rem;
  padding: 1.4rem 1.6rem 0; margin-bottom: 0;
}
.sec-num {
  font-family: 'Exo 2', sans-serif; font-weight: 800;
  font-size: 0.7rem; letter-spacing: 0.08em;
  color: #111; background: var(--accent);
  border-radius: 6px; padding: 0.18rem 0.5rem;
  flex-shrink: 0; margin-top: 0.15rem;
  min-width: 34px; text-align: center;
}
.sec-titles { flex: 1; }
.sec-titles h3 {
  font-family: 'Exo 2', sans-serif; font-weight: 700;
  font-size: 0.72rem; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 0.3rem;
}
.sec-titles h2 {
  font-family: 'Exo 2', sans-serif; font-weight: 800;
  font-size: 1.1rem; color: var(--white);
  line-height: 1.35; letter-spacing: -0.2px;
}
.sec-body {
  padding: 1rem 1.6rem 1.4rem;
  color: var(--muted); font-size: 0.9rem; line-height: 1.8;
}
.sec-body p { margin-bottom: 0.75rem; }
.sec-body p:last-child { margin-bottom: 0; }
.sec-body a { color: var(--accent); text-decoration: none; font-weight: 500; }
.sec-body a:hover { text-decoration: underline; }
.sec-footer {
  background: var(--card2);
  border-top: 1px solid var(--border);
  padding: 0.65rem 1.6rem;
  font-size: 0.8rem; color: var(--muted2);
  display: flex; align-items: center; gap: 0.5rem;
}
.sec-footer::before { content: '↳'; color: var(--accent); font-weight: 700; font-size: 0.85rem; }


/* ── SECTION CARDS (page 5 / Syne) ─────────────────────────── */
.section-card {
  background: var(--dark2);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 36px 40px;
  margin-bottom: 24px;
  position: relative; overflow: hidden;
  transition: border-color .3s;
  animation: fadeUp 0.5s ease both;
}
.section-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 2px;
  background: linear-gradient(90deg, transparent, var(--yellow), transparent);
  opacity: 0; transition: opacity .3s;
}
.section-card:hover { border-color: rgba(255,214,0,0.25); }
.section-card:hover::before { opacity: 1; }

.section-card:nth-child(1) { animation-delay:.05s }
.section-card:nth-child(2) { animation-delay:.10s }
.section-card:nth-child(3) { animation-delay:.15s }
.section-card:nth-child(4) { animation-delay:.20s }
.section-card:nth-child(5) { animation-delay:.25s }
.section-card:nth-child(6) { animation-delay:.30s }
.section-card:nth-child(7) { animation-delay:.35s }
.section-card:nth-child(8) { animation-delay:.40s }
.section-card:nth-child(9) { animation-delay:.45s }

.section-number {
  font-family: 'Syne', sans-serif;
  font-size: 11px; font-weight: 700;
  color: var(--yellow); letter-spacing: 2px;
  text-transform: uppercase; margin-bottom: 8px; opacity: 0.7;
}
.section-card h2 {
  font-family: 'Syne', sans-serif; font-weight: 700;
  font-size: 22px; color: var(--text);
  margin-bottom: 18px; letter-spacing: -0.3px;
}
.section-card h3 {
  font-family: 'Syne', sans-serif; font-weight: 600;
  font-size: 16px; color: var(--yellow);
  margin: 24px 0 10px; letter-spacing: -0.2px;
}
.section-card h3:first-of-type { margin-top: 16px; }
.section-card p {
  color: #BEBEBE; font-size: 15px;
  line-height: 1.8; margin-bottom: 14px;
}
.section-card p:last-child { margin-bottom: 0; }


/* ── CATEGORIES GRID ────────────────────────────────────────── */
.cat-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: 0.75rem;
  animation: fadeUp 0.5s ease both;
}
.cat-item {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1rem 1.15rem;
  display: flex; align-items: flex-start; gap: 0.75rem;
  transition: border-color .2s, background .2s;
  text-decoration: none;
}
.cat-item:hover {
  border-color: rgba(245,197,24,0.4);
  background: var(--card);
}
.cat-bullet {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0; margin-top: 0.52rem;
}
.cat-text strong {
  display: block;
  font-family: 'Exo 2', sans-serif; font-weight: 700;
  font-size: 0.88rem; color: var(--white); margin-bottom: 0.2rem;
}
.cat-text span { font-size: 0.78rem; color: var(--muted); line-height: 1.5; }


/* ── QUALITY CHECKS ─────────────────────────────────────────── */
.checks { display: flex; flex-direction: column; gap: 0.75rem; animation: fadeUp 0.5s ease both; }
.check-item {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.3rem;
  display: flex; align-items: flex-start; gap: 1rem;
}
.check-num {
  font-family: 'Exo 2', sans-serif; font-weight: 800;
  font-size: 1.1rem; color: var(--accent);
  line-height: 1; flex-shrink: 0; min-width: 24px; margin-top: 0.1rem;
}
.check-body strong {
  display: block; font-family: 'Exo 2', sans-serif;
  font-weight: 700; font-size: 0.92rem;
  color: var(--white); margin-bottom: 0.3rem;
}
.check-body p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }


/* ── AUDIENCE GRID ──────────────────────────────────────────── */
.audience-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.75rem; margin-top: 1.2rem;
  animation: fadeUp 0.5s ease both;
}
.aud-card {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem; text-align: center;
}
.aud-icon { font-size: 1.8rem; margin-bottom: 0.5rem; }
.aud-title {
  font-family: 'Exo 2', sans-serif; font-weight: 700;
  font-size: 0.84rem; color: var(--white); margin-bottom: 0.3rem;
}
.aud-desc { font-size: 0.78rem; color: var(--muted); line-height: 1.55; }


/* ── BULLET / DO / DONT LISTS ───────────────────────────────── */
/* Neutral bullets */
.bullet-list,
.blist { display: flex; flex-direction: column; gap: 0.55rem; margin: 0.6rem 0; }

.bullet-item,
.blist-item {
  display: flex; align-items: flex-start; gap: 0.75rem;
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 0.75rem 1rem;
  font-size: 0.88rem; color: var(--muted); line-height: 1.6;
}
.bullet-item .bi-dot,
.blist-item .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0; margin-top: 0.42rem;
}
.bullet-item strong,
.blist-item strong { color: var(--text); font-weight: 600; }

/* Don't (red) */
.donot-list,
.dlist { display: flex; flex-direction: column; gap: 0.5rem; margin: 0.6rem 0; }

.donot-item,
.dlist-item {
  display: flex; align-items: flex-start; gap: 0.75rem;
  background: var(--red-bg);
  border: 1px solid var(--red-bdr);
  border-radius: var(--radius);
  padding: 0.7rem 1rem;
  font-size: 0.88rem; color: var(--muted); line-height: 1.6;
}
.donot-item::before,
.dlist-item::before {
  content: '✕'; color: var(--red); font-weight: 700;
  font-size: 0.78rem; flex-shrink: 0; margin-top: 0.18rem;
}

/* Do (green) */
.do-list,
.glist { display: flex; flex-direction: column; gap: 0.5rem; margin: 0.6rem 0; }

.do-item,
.glist-item {
  display: flex; align-items: flex-start; gap: 0.75rem;
  background: var(--green-bg);
  border: 1px solid var(--green-bdr);
  border-radius: var(--radius);
  padding: 0.7rem 1rem;
  font-size: 0.88rem; color: var(--muted); line-height: 1.6;
}
.do-item::before,
.glist-item::before {
  content: '✓'; color: var(--green); font-weight: 700;
  font-size: 0.82rem; flex-shrink: 0; margin-top: 0.14rem;
}


/* ── DATA ITEMS (page 5) ────────────────────────────────────── */
.data-grid { display: grid; gap: 10px; margin-top: 4px; }
.data-item {
  display: flex; align-items: flex-start; gap: 14px;
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 10px; padding: 14px 16px;
  transition: background .2s, border-color .2s;
}
.data-item:hover { background: var(--dark4); border-color: rgba(255,214,0,0.1); }
.item-icon {
  width: 32px; height: 32px;
  background: var(--yellow-soft);
  border: 1px solid rgba(255,214,0,0.2);
  border-radius: 8px;
  display: flex; align-items: center; justify-content: center;
  flex-shrink: 0; font-size: 14px;
}
.item-text strong {
  display: block; font-size: 14px; font-weight: 500;
  color: var(--text); margin-bottom: 3px;
}
.item-text span { font-size: 13px; color: var(--text-muted); line-height: 1.5; }


/* ── RIGHTS GRID (page 5) ───────────────────────────────────── */
.rights-grid {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: 12px; margin-top: 8px;
}
.right-card {
  background: var(--dark3);
  border: 1px solid rgba(255,255,255,0.04);
  border-radius: 10px; padding: 16px;
  transition: border-color .2s, background .2s;
}
.right-card:hover { border-color: rgba(255,214,0,0.15); background: var(--dark4); }
.right-card .right-label {
  font-size: 13px; font-weight: 600;
  color: var(--yellow); margin-bottom: 5px;
  font-family: 'Syne', sans-serif;
}
.right-card p { font-size: 13px; color: var(--text-muted); margin-bottom: 0; line-height: 1.6; }


/* ── WARNING CARD ───────────────────────────────────────────── */
.warning-card {
  background: var(--red-bg);
  border: 1px solid var(--red-border);
  border-radius: var(--radius-lg);
  padding: 1.6rem 2rem;
  display: flex; align-items: flex-start; gap: 1rem;
}
.warning-icon { font-size: 1.6rem; flex-shrink: 0; line-height: 1; margin-top: 0.1rem; }
.warning-card h3 {
  font-family: 'Exo 2', sans-serif; font-weight: 700;
  font-size: 1rem; color: var(--red); margin-bottom: 0.4rem;
}
.warning-card p { font-size: 0.88rem; color: var(--muted); line-height: 1.75; }


/* ── EMAIL BOX ──────────────────────────────────────────────── */
.email-box {
  display: inline-flex; align-items: center; gap: 0.5rem;
  background: var(--glow); border: 1px solid rgba(245,197,24,0.3);
  border-radius: 8px; padding: 0.5rem 1rem;
  font-size: 0.9rem; font-weight: 600;
  color: var(--accent); text-decoration: none;
  margin-top: 0.75rem; transition: background .2s;
}
.email-box:hover { background: rgba(245,197,24,0.18); }


/* ── PILL ROW (blue info) ───────────────────────────────────── */
.pill-row { display: flex; flex-wrap: wrap; gap: 0.6rem; margin-top: 0.75rem; }
.pill {
  display: flex; align-items: center; gap: 0.4rem;
  background: var(--blue-bg); border: 1px solid var(--blue-bdr);
  color: var(--blue);
  font-size: 0.8rem; font-weight: 600;
  padding: 0.3rem 0.85rem; border-radius: 100px;
}


/* ── RELATED LINKS ──────────────────────────────────────────── */
.related-grid { display: flex; flex-wrap: wrap; gap: 0.75rem; margin-top: 0.75rem; }
.related-link {
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--card2);
  border: 1px solid var(--border2);
  border-radius: 9px; padding: 0.65rem 1.1rem;
  font-size: 0.86rem; font-weight: 600;
  color: var(--accent); text-decoration: none;
  transition: background .2s, border-color .2s;
}
.related-link:hover { background: var(--glow); border-color: rgba(245,197,24,0.35); }
.related-link::before { content: '→'; font-size: 0.78rem; }


/* ── TOC (page 6) ───────────────────────────────────────────── */
.toc-wrap { max-width: 860px; margin: 2.5rem auto 0; padding: 0 1.5rem; }
.toc-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-left: 3px solid var(--accent);
  border-radius: var(--radius);
  padding: 1.3rem 1.6rem;
}
.toc-card h3 {
  font-family: 'Exo 2', sans-serif; font-weight: 700;
  font-size: 0.72rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 0.9rem;
}
.toc-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 0.35rem 1.5rem;
}
.toc-grid a {
  color: var(--muted); text-decoration: none;
  font-size: 0.82rem; line-height: 1.6;
  display: flex; align-items: center; gap: 0.4rem;
  transition: color .2s;
}
.toc-grid a::before { content: '→'; color: var(--accent); font-size: 0.7rem; }
.toc-grid a:hover { color: var(--accent); }


/* ── FAQ (pages 4 & 7) ──────────────────────────────────────── */
.faq-list { display: flex; flex-direction: column; gap: 6px; }
.faq-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  overflow: hidden;
  transition: border-color .22s, box-shadow .22s, background .22s;
  animation: fadeUp 0.4s ease both;
}
.faq-item:nth-child(1)  { animation-delay:.04s }
.faq-item:nth-child(2)  { animation-delay:.08s }
.faq-item:nth-child(3)  { animation-delay:.12s }
.faq-item:nth-child(4)  { animation-delay:.16s }
.faq-item:nth-child(5)  { animation-delay:.20s }
.faq-item:nth-child(6)  { animation-delay:.24s }
.faq-item:nth-child(7)  { animation-delay:.28s }
.faq-item:nth-child(8)  { animation-delay:.32s }
.faq-item:nth-child(9)  { animation-delay:.36s }
.faq-item:nth-child(10) { animation-delay:.40s }
.faq-item:nth-child(11) { animation-delay:.44s }
.faq-item:nth-child(12) { animation-delay:.48s }

.faq-item.open {
  border-color: rgba(245,197,24,0.4);
  background: var(--card-hover);
  box-shadow: 0 4px 24px rgba(0,0,0,0.3), 0 0 0 1px rgba(245,197,24,0.06);
}
.faq-item.hidden { display: none; }

.faq-btn {
  width: 100%; background: none; border: none; cursor: pointer;
  display: flex; align-items: center;
  justify-content: space-between; gap: 1rem;
  padding: 1.1rem 1.25rem; text-align: left;
  transition: background .15s;
}
.faq-btn:hover { background: rgba(245,197,24,0.03); }
.faq-left { display: flex; align-items: center; gap: 0.9rem; }

/* Full FAQ (page 4) */
.faq-num {
  font-family: 'Exo 2', sans-serif; font-weight: 700;
  font-size: 0.68rem; letter-spacing: 0.06em;
  color: var(--accent); background: var(--accent-glow);
  border: 1px solid rgba(245,197,24,0.22);
  border-radius: 5px; padding: 0.15rem 0.45rem;
  min-width: 34px; text-align: center;
  flex-shrink: 0; transition: background .2s;
}
.faq-item.open .faq-num { background: var(--accent); color: #111; border-color: var(--accent); }

.faq-title {
  font-family: 'Exo 2', sans-serif; font-weight: 600;
  font-size: 0.94rem; color: var(--text);
  line-height: 1.4; transition: color .2s;
}
.faq-item.open .faq-title { color: var(--white); }

/* Mini FAQ question label (page 7) */
.faq-q {
  font-family: 'Exo 2', sans-serif; font-weight: 600;
  font-size: 0.9rem; color: var(--text); line-height: 1.4;
}

.faq-arrow {
  flex-shrink: 0; width: 28px; height: 28px;
  border-radius: 50%;
  border: 1px solid var(--border-light);
  display: flex; align-items: center; justify-content: center;
  color: var(--muted); font-size: 1rem; line-height: 1;
  transition: background .2s, border-color .2s, color .2s, transform .3s;
}
.faq-item.open .faq-arrow {
  background: var(--accent); border-color: var(--accent);
  color: #111; transform: rotate(45deg);
}

.faq-body {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 0.3s ease;
}
.faq-item.open .faq-body { grid-template-rows: 1fr; }
.faq-body-inner { overflow: hidden; }
.faq-body-content {
  padding: 0 1.25rem 1.2rem 3.8rem;
  border-top: 1px solid var(--border);
  padding-top: 1rem;
  color: var(--muted); font-size: 0.9rem; line-height: 1.78;
}
.faq-body-content a { color: var(--accent); text-decoration: none; font-weight: 500; }
.faq-body-content a:hover { text-decoration: underline; }
.faq-body-content ul { margin: 0.6rem 0 0; display: flex; flex-direction: column; gap: 0.3rem; list-style: none; }
.faq-body-content ul li { display: flex; align-items: flex-start; gap: 0.5rem; }
.faq-body-content ul li::before { content: '▸'; color: var(--accent); font-size: 0.7rem; margin-top: 0.35rem; flex-shrink: 0; }

.no-results { display: none; text-align: center; padding: 3rem 1rem; color: var(--muted); }
.no-results .nr-icon { font-size: 2.8rem; margin-bottom: 0.6rem; }
.no-results p { font-size: 0.9rem; }
.no-results a { color: var(--accent); text-decoration: none; }


/* ── CONTACT SECTIONS ───────────────────────────────────────── */
.contact-section,
.contact-card {
  background: var(--bg3);
  border: 1px solid var(--border2);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2rem;
  position: relative; overflow: hidden;
  animation: fadeUp 0.5s ease both;
}
.contact-section::after,
.contact-card::after {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(245,197,24,0.06) 0%, transparent 70%);
  pointer-events: none;
}
.contact-section h2,
.contact-card h2 {
  font-family: 'Exo 2', sans-serif; font-weight: 800;
  font-size: 1.25rem; color: var(--white); margin-bottom: 0.5rem;
}
.contact-section > p,
.contact-card > p {
  color: var(--muted); font-size: 0.9rem;
  margin-bottom: 1.6rem; line-height: 1.7;
}
.contact-grid {
  display: grid; grid-template-columns: repeat(3,1fr); gap: 1rem;
}

/* contact-grid-3 — page 7 dedicated contact grid */
.contact-grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1rem;
}

/* Shared contact item */
.contact-item,
.c-item {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
  display: flex; align-items: flex-start; gap: 0.8rem;
}
.contact-ico,
.c-ico {
  width: 36px; height: 36px; border-radius: 9px;
  background: var(--glow); border: 1px solid rgba(245,197,24,0.22);
  display: flex; align-items: center; justify-content: center;
  font-size: 1rem; flex-shrink: 0;
}
.contact-info label,
.c-info label {
  display: block;
  font-family: 'Exo 2', sans-serif; font-weight: 700;
  font-size: 0.66rem; letter-spacing: 0.12em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 0.3rem;
}
/*.contact-info span, .contact-info a,
.c-info span, .c-info a {
  font-size: 0.83rem; color: var(--text);
  text-decoration: none; display: block; line-height: 1.6;
}*/
.contact-info a:hover,
.c-info a:hover { color: var(--accent); }

/* cc-icon / cc-body — page 7 vertical contact card internals */
.cc-icon {
  width: 46px; height: 46px; border-radius: 12px;
  background: var(--glow); border: 1px solid rgba(245,197,24,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.3rem; flex-shrink: 0;
}
.cc-body label {
  display: block;
  font-family: 'Exo 2', sans-serif; font-weight: 700;
  font-size: 0.68rem; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 0.35rem;
}
.cc-body h3 {
  font-family: 'Exo 2', sans-serif; font-weight: 700;
  font-size: 0.95rem; color: var(--white); margin-bottom: 0.4rem;
}
.cc-body p,
.cc-body a {
  font-size: 0.86rem; color: var(--muted);
  text-decoration: none; display: block;
  line-height: 1.65; transition: color .2s;
}
.cc-body a:hover { color: var(--accent); }

/* FAQ contact card variant */
.contact-card.faq-contact {
  display: flex; align-items: center;
  gap: 1.5rem; flex-wrap: wrap;
  background: var(--bg3);
}
.contact-card.faq-contact::after { content: '?'; font-family: 'Exo 2', sans-serif; font-weight: 900; font-size: 8rem; line-height: 1; color: rgba(245,197,24,0.04); right: 2rem; top: 50%; transform: translateY(-50%); pointer-events: none; user-select: none; }
.contact-card.faq-contact::before { content: ''; position: absolute; inset: 0; background: radial-gradient(ellipse 60% 80% at 0% 50%, rgba(245,197,24,0.04) 0%, transparent 60%); pointer-events: none; }

/*.contact-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--accent-glow);
  border: 1px solid rgba(245,197,24,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; flex-shrink: 0;
  position: relative; z-index: 1;
}*/
.contact-text { flex: 1; position: relative; z-index: 1; }
.contact-text h3 {
  font-family: 'Exo 2', sans-serif; font-weight: 700;
  font-size: 1.1rem; color: var(--white); margin-bottom: 0.3rem;
}
.contact-text p { color: var(--muted); font-size: 0.88rem; line-height: 1.65; }
.contact-text p a { color: var(--accent); text-decoration: none; font-weight: 500; }
.contact-text p a:hover { text-decoration: underline; }
.contact-btn {
  position: relative; z-index: 1;
  background: var(--accent); color: #111;
  text-decoration: none;
  font-family: 'Exo 2', sans-serif; font-weight: 700;
  font-size: 0.88rem; letter-spacing: 0.03em;
  padding: 0.68rem 1.5rem; border-radius: 100px;
  white-space: nowrap; transition: background .2s, transform .15s;
}
.contact-btn:hover { background: var(--accent2); transform: translateY(-1px); }

/* Page-5 contact card */
.contact-card.alt {
  background: linear-gradient(135deg, rgba(255,214,0,0.1) 0%, rgba(255,214,0,0.04) 100%);
  border-color: rgba(255,214,0,0.3);
}
.contact-card.alt h2 { color: var(--yellow); font-size: 22px; }
.contact-row {
  display: flex; align-items: center; gap: 14px;
  padding: 12px 0; border-bottom: 1px solid rgba(255,214,0,0.1);
}
.contact-row:last-child { border-bottom: none; }
.contact-label { font-size: 12px; color: var(--text-muted); text-transform: uppercase; letter-spacing: 0.5px; margin-bottom: 2px; }
.contact-value { font-size: 14px; color: var(--text); font-weight: 500; }
.contact-value a { color: var(--yellow); text-decoration: none; }
.contact-value a:hover { text-decoration: underline; }


/* ── ADDRESS CARD (page 7) ──────────────────────────────────── */
.address-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 1.8rem 2rem;
  display: flex; align-items: flex-start;
  gap: 1.5rem; flex-wrap: wrap;
  position: relative; overflow: hidden;
}
.address-card::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 50% 80% at 0% 50%, rgba(245,197,24,0.04) 0%, transparent 60%);
  pointer-events: none;
}
.addr-icon {
  width: 52px; height: 52px; border-radius: 14px;
  background: var(--glow); border: 1px solid rgba(245,197,24,0.25);
  display: flex; align-items: center; justify-content: center;
  font-size: 1.5rem; flex-shrink: 0;
}
.addr-body { flex: 1; position: relative; z-index: 1; }
.addr-body label {
  display: block;
  font-family: 'Exo 2', sans-serif; font-weight: 700;
  font-size: 0.68rem; letter-spacing: 0.13em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 0.4rem;
}
.addr-body h3 {
  font-family: 'Exo 2', sans-serif; font-weight: 700;
  font-size: 1rem; color: var(--white); margin-bottom: 0.4rem;
}
.addr-body p { font-size: 0.88rem; color: var(--muted); line-height: 1.7; }
.addr-map-btn {
  display: inline-flex; align-items: center; gap: 0.4rem;
  background: var(--glow); border: 1px solid rgba(245,197,24,0.3);
  color: var(--accent);
  font-family: 'Exo 2', sans-serif; font-size: 0.78rem; font-weight: 700;
  padding: 0.45rem 1rem; border-radius: 100px;
  text-decoration: none; margin-top: 0.85rem;
  transition: background .2s;
}
.addr-map-btn:hover { background: rgba(245,197,24,0.2); }


/* ── SOCIAL GRID (page 7) ───────────────────────────────────── */
.social-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0.75rem;
}
.social-card {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1rem;
  display: flex; flex-direction: column;
  align-items: center; gap: 0.6rem;
  text-decoration: none !important;
  transition: border-color .2s, background .2s, transform .15s;
}
.social-card:hover {
  border-color: rgba(245,197,24,0.4);
  background: var(--card);
  transform: translateY(-2px);
}
.social-card .s-icon { font-size: 1.6rem; }
.social-card .s-name {
  font-family: 'Exo 2', sans-serif; font-weight: 700;
  font-size: 0.78rem; color: var(--white); text-align: center;
}
.social-card .s-handle { font-size: 0.72rem; color: var(--muted); text-align: center; }


/* ── CONTACT FORM (page 7) ──────────────────────────────────── */
.form-card {
  background: var(--card);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 2.2rem 2.4rem;
  position: relative; overflow: hidden;
}
.form-card::after {
  content: '';
  position: absolute; top: -60px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, rgba(245,197,24,0.05) 0%, transparent 70%);
  pointer-events: none;
}
.form-card h2 {
  font-family: 'Exo 2', sans-serif; font-weight: 800;
  font-size: 1.3rem; color: var(--white); margin-bottom: 0.4rem;
}
.form-card > p {
  color: var(--muted); font-size: 0.88rem;
  margin-bottom: 1.8rem; line-height: 1.65;
}
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.45rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-family: 'Exo 2', sans-serif; font-weight: 700;
  font-size: 0.7rem; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--accent);
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--card2);
  border: 1px solid var(--border2);
  border-radius: 9px;
  padding: 0.7rem 1rem;
  color: var(--text);
  font-family: 'DM Sans', sans-serif;
  font-size: 0.9rem;
  outline: none;
  width: 100%;
  transition: border-color .2s, box-shadow .2s;
}
.form-group input::placeholder,
.form-group textarea::placeholder { color: var(--muted2); }
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  border-color: var(--accent);
  box-shadow: 0 0 0 3px var(--glow);
}
.form-group textarea { resize: vertical; min-height: 130px; }
.form-group select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8'%3E%3Cpath d='M1 1l5 5 5-5' stroke='%237a8299' stroke-width='1.5' fill='none' stroke-linecap='round'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  cursor: pointer;
}
.form-group select option { background: var(--card2); }

.form-notice {
  display: flex; align-items: flex-start; gap: 0.6rem;
  background: var(--green-bg);
  border: 1px solid var(--green-bdr);
  border-radius: 9px;
  padding: 0.75rem 1rem;
  font-size: 0.82rem; color: var(--muted);
  margin-top: 1rem; line-height: 1.6;
}
.form-notice::before { content: '✓'; color: var(--green); font-weight: 700; flex-shrink: 0; }

.submit-btn {
  margin-top: 1.4rem;
  display: flex; align-items: center; gap: 0.5rem;
  background: var(--accent); color: #111;
  border: none; cursor: pointer;
  font-family: 'Exo 2', sans-serif; font-weight: 700;
  font-size: 0.92rem; letter-spacing: 0.04em;
  padding: 0.8rem 2rem; border-radius: 100px;
  transition: background .2s, transform .15s;
}
.submit-btn:hover { background: var(--accent2); transform: translateY(-1px); }
.submit-btn span { font-size: 1rem; }


/* ── REASON CARDS (page 7) ──────────────────────────────────── */
.reason-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0.75rem;
}
.reason-card {
  background: var(--card2);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 1.1rem 1.2rem;
  display: flex; align-items: flex-start; gap: 0.8rem;
}
.r-dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--accent); flex-shrink: 0; margin-top: 0.5rem;
}
.r-body strong {
  display: block;
  font-family: 'Exo 2', sans-serif; font-weight: 700;
  font-size: 0.84rem; color: var(--white); margin-bottom: 0.25rem;
}
.r-body span { font-size: 0.78rem; color: var(--muted); line-height: 1.55; }


/* ── RESPONSE STRIP (page 7) ────────────────────────────────── */
.response-strip {
  display: flex; justify-content: center;
  gap: 0; border-bottom: 1px solid var(--border);
  background: var(--bg);
}
.rs-item {
  flex: 1; max-width: 220px;
  text-align: center; padding: 1.2rem 1rem;
  border-right: 1px solid var(--border);
}
.rs-item:last-child { border-right: none; }
.rs-num {
  font-family: 'Exo 2', sans-serif; font-weight: 900;
  font-size: 1.5rem; color: var(--accent); line-height: 1;
}
.rs-label {
  color: var(--muted); font-size: 0.72rem;
  margin-top: 0.25rem; letter-spacing: 0.04em;
}


/* ── INLINE HELPERS ─────────────────────────────────────────── */
.highlight { color: var(--yellow); font-weight: 500; }
em { color: var(--yellow); font-style: normal; font-weight: 500; }


/* ── FOOTER ─────────────────────────────────────────────────── */
footer {
  background: var(--bg2);
  border-top: 1px solid var(--border);
  /*padding: 3rem 2rem 2rem;*/
}
.footer-top {
  max-width: 1100px; margin: 0 auto;
  display: grid; grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 2.5rem; margin-bottom: 2.5rem;
}
.footer-brand img { height: 30px; width: auto; margin-bottom: 1rem; }
.footer-brand p { color: var(--muted); font-size: 0.84rem; line-height: 1.7; }
.footer-brand .socials { display: flex; gap: 0.6rem; margin-top: 1rem; }
.footer-brand .socials a {
  width: 32px; height: 32px; border-radius: 8px;
  background: var(--card); border: 1px solid var(--border);
  display: flex; align-items: center; justify-content: center;
  font-size: 0.9rem; text-decoration: none;
  transition: border-color .2s, background .2s;
}
.footer-brand .socials a:hover { border-color: var(--accent); background: var(--glow); }

.footer-col h4 {
  font-family: 'Exo 2', sans-serif; font-weight: 700;
  font-size: 0.7rem; letter-spacing: 0.14em;
  text-transform: uppercase; color: var(--accent);
  margin-bottom: 0.9rem;
}
/*.footer-col a {
  display: block; color: var(--muted); text-decoration: none;
  font-size: 0.83rem; margin-bottom: 0.45rem; transition: color .2s;
}*/
/*.footer-col a:hover { color: var(--text); }*/

.footer-bottom {
  max-width: 1100px; margin: 0 auto;
  border-top: 1px solid var(--border); padding-top: 1.5rem;
  display: flex; align-items: center;
  justify-content: space-between; flex-wrap: wrap; gap: 0.75rem;
}
.footer-copy { color: var(--muted2); font-size: 0.78rem; }
.footer-copy a { color: var(--muted); text-decoration: none; }
.footer-copy a:hover { color: var(--accent); }

.footer-links-inline,
.footer-inline { display: flex; gap: 1rem; flex-wrap: wrap; }
.footer-links-inline a,
.footer-inline a {
  color: var(--muted2); text-decoration: none;
  font-size: 0.78rem; transition: color .2s;
}
.footer-links-inline a:hover,
.footer-inline a:hover { color: var(--accent); }

/* Simple centred footer (pages 4 & 5) */
footer.simple { text-align: center; padding: 2rem 1.5rem; }
footer.simple .footer-logo { margin-bottom: 1rem; }
footer.simple .footer-logo img { height: 28px; width: auto; opacity: 0.85; }
footer.simple .footer-links {
  display: flex; flex-wrap: wrap;
  justify-content: center; gap: 0.3rem 1.2rem; margin-bottom: 1.2rem;
}
footer.simple .footer-links a { color: var(--muted); text-decoration: none; font-size: 0.82rem; transition: color .2s; }
footer.simple .footer-links a:hover { color: var(--accent); }
footer.simple a { color: var(--yellow); text-decoration: none; }
footer.simple a:hover { text-decoration: underline; }


/* ── ANIMATIONS ─────────────────────────────────────────────── */
@keyframes fadeUp {
  from { opacity: 0; transform: translateY(16px); }
  to   { opacity: 1; transform: translateY(0); }
}
@keyframes pulse {
  0%, 100% { opacity: 1; transform: scale(1); }
  50%       { opacity: 0.5; transform: scale(0.8); }
}


/* ── RESPONSIVE ─────────────────────────────────────────────── */
@media (max-width: 700px) {
  header nav { display: none; }
  header { padding: 0 1rem; }
  .content-card,
  .intro-card,
  .section-card,
  .contact-card { padding: 1.5rem; }
  .contact-grid,
  .contact-grid-3 { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; }
  .footer-bottom { flex-direction: column; text-align: center; }
  .page-wrap { padding: 2rem 1rem 4rem; }
  .stats,
  .stats-row { flex-wrap: wrap; }
  .stat { min-width: 50%; border-right: none; border-bottom: 1px solid var(--border); }
  .stat-num { font-size: 1.2rem; }
  .notice-banner { margin: 1.5rem 1rem 0; }
  .sec-head,
  .sec-card .sec-head { padding: 1.2rem 1.2rem 0; }
  .sec-body { padding: 0.9rem 1.2rem 1.2rem; }
  .sec-footer { padding: 0.6rem 1.2rem; }
  .toc-wrap { padding: 0 1rem; }
  .faq-body-content { padding-left: 1.25rem; }
  .contact-btn { width: 100%; text-align: center; margin-top: 0.5rem; color: #000; }
  .contact-card.faq-contact::after { display: none; }
  nav { padding: 0 20px; }
  .hero--alt { padding: 48px 20px 60px; }
  main { padding: 2rem 20px 60px; }
  /* page 7 */
  .social-grid { grid-template-columns: repeat(2, 1fr); }
  .form-grid { grid-template-columns: 1fr; }
  .form-group.full { grid-column: auto; }
  .reason-grid { grid-template-columns: 1fr; }
  .response-strip { flex-wrap: wrap; }
  .rs-item { min-width: 50%; border-right: none; border-bottom: 1px solid var(--border); }
}

@media (max-width: 440px) {
  .footer-top { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr 1fr; }
  .trust-row { flex-direction: column; align-items: center; }
  .toc-grid { grid-template-columns: 1fr; }
  .rights-grid { grid-template-columns: 1fr; }
  .social-grid { grid-template-columns: repeat(2, 1fr); }
}