/* =============================================================
   UTP Training — Design System
   Bold · Warm · Modern · Award-worthy
   ============================================================= */

/* ── FONTS ── */
@import url('https://fonts.googleapis.com/css2?family=Fraunces:ital,opsz,wght@0,9..144,300;0,9..144,400;0,9..144,600;0,9..144,700;0,9..144,900;1,9..144,400;1,9..144,700&family=Manrope:wght@300;400;500;600;700;800&display=swap');

/* ── TOKENS ── */
:root {
  --ink:        #0e1b35;
  --ink-90:     rgba(14,27,53,0.9);
  --cobalt:     #2249e0;
  --cobalt-lt:  #4a6df5;
  --citrus:     #d8f53c;
  --apricot:    #ff7a50;
  --rose:       #ff4d78;
  --teal:       #1ec8a8;
  --cream:      #faf9f4;
  --slate:      #f2f3f7;

  --text:       #0e1b35;
  --text-muted: #5a6580;
  --text-light: #8e9ab5;

  --radius-xl:  40px;
  --radius-lg:  28px;
  --radius-md:  18px;
  --radius-sm:  12px;
  --radius-xs:  8px;

  --container:  1200px;
  --gutter:     clamp(20px, 4vw, 48px);
  --nav-h:      80px;

  --shadow-sm: 0 2px 12px rgba(14,27,53,0.08);
  --shadow-md: 0 8px 32px rgba(14,27,53,0.12);
  --shadow-lg: 0 20px 60px rgba(14,27,53,0.16);

  --ease-out:  cubic-bezier(0.22,1,0.36,1);
  --dur:       0.35s;
}

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

html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }

body {
  font-family: 'Manrope', system-ui, sans-serif;
  font-size: clamp(15px, 1.1vw, 17px);
  line-height: 1.7;
  color: var(--text);
  background: var(--cream);
  overflow-x: hidden;
}

img, video, svg { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul, ol { list-style: none; }
button, input, textarea, select { font: inherit; }

/* ── SKIP LINK ── */
.skip-link {
  position: absolute; top: -100%; left: 1rem;
  background: var(--cobalt); color: #fff;
  padding: 0.5rem 1rem; border-radius: var(--radius-xs);
  z-index: 9999; font-weight: 700;
  transition: top 0.2s;
}
.skip-link:focus { top: 1rem; }

/* ── CONTAINER ── */
.container {
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

/* ── HEADER / NAV ── */
.site-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--nav-h);
  display: flex; align-items: center;
  background: rgba(14,27,53,0.96);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid rgba(255,255,255,0.07);
}

.nav-inner {
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 2rem;
  width: 100%;
  max-width: var(--container);
  margin-inline: auto;
  padding-inline: var(--gutter);
}

.brand {
  font-family: 'Fraunces', serif;
  font-size: 1.4rem;
  font-weight: 700;
  color: #fff;
  letter-spacing: -0.02em;
  display: flex; align-items: center; gap: 0.4rem;
  flex-shrink: 0;
}
.brand-dot { color: var(--citrus); }

.nav-links {
  display: flex; align-items: center; gap: 0.25rem;
  list-style: none;
}
.nav-links a {
  color: rgba(255,255,255,0.75);
  font-size: 0.9rem; font-weight: 600;
  letter-spacing: 0.01em;
  padding: 0.5rem 0.85rem;
  border-radius: var(--radius-xs);
  transition: color var(--dur), background var(--dur);
}
.nav-links a:hover,
.nav-links a.active {
  color: #fff;
  background: rgba(255,255,255,0.09);
}

.nav-cta {
  flex-shrink: 0;
}

/* Hamburger */
.nav-toggle {
  display: none;
  flex-direction: column; gap: 5px;
  width: 36px; height: 36px;
  align-items: center; justify-content: center;
  background: transparent; border: none; cursor: pointer;
  padding: 4px;
}
.nav-toggle span {
  display: block; width: 22px; height: 2px;
  background: #fff; border-radius: 2px;
  transition: transform 0.3s, opacity 0.3s;
}
.nav-toggle[aria-expanded="true"] span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.nav-toggle[aria-expanded="true"] span:nth-child(2) { opacity: 0; }
.nav-toggle[aria-expanded="true"] span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ── BUTTONS ── */
.btn {
  display: inline-flex; align-items: center; gap: 0.5rem;
  padding: 0.8rem 1.75rem;
  border-radius: 100px;
  font-weight: 700; font-size: 0.92rem; letter-spacing: 0.01em;
  border: 2px solid transparent;
  cursor: pointer; transition: all var(--dur) var(--ease-out);
  white-space: nowrap; text-align: center;
}
.btn-primary {
  background: var(--citrus);
  color: var(--ink);
  border-color: var(--citrus);
}
.btn-primary:hover {
  background: #c8e030;
  border-color: #c8e030;
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(216,245,60,0.35);
}
.btn-secondary {
  background: transparent;
  color: #fff;
  border-color: rgba(255,255,255,0.35);
}
.btn-secondary:hover {
  border-color: #fff;
  background: rgba(255,255,255,0.08);
  transform: translateY(-2px);
}
.btn-outline {
  background: transparent;
  color: var(--cobalt);
  border-color: var(--cobalt);
}
.btn-outline:hover {
  background: var(--cobalt);
  color: #fff;
  transform: translateY(-2px);
}
.btn-lg {
  padding: 1rem 2.25rem;
  font-size: 1rem;
}
.btn-sm {
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem;
}

/* ── BADGES / TAGS ── */
.badge {
  display: inline-block;
  padding: 0.3rem 0.9rem;
  border-radius: 100px;
  font-size: 0.75rem; font-weight: 700; letter-spacing: 0.06em;
  text-transform: uppercase;
}
.badge-citrus { background: var(--citrus); color: var(--ink); }
.badge-cobalt { background: var(--cobalt); color: #fff; }
.badge-teal   { background: var(--teal);   color: var(--ink); }
.badge-apricot{ background: var(--apricot); color: #fff; }
.badge-outline {
  background: transparent;
  border: 1.5px solid rgba(255,255,255,0.3);
  color: rgba(255,255,255,0.8);
}

/* ── TYPOGRAPHY ── */
.display {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.8rem, 6vw, 5.5rem);
  font-weight: 700;
  line-height: 1.05;
  letter-spacing: -0.03em;
}
h1 {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.2rem, 4.5vw, 4rem);
  font-weight: 700;
  line-height: 1.1;
  letter-spacing: -0.025em;
}
h2 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.7rem, 3vw, 2.8rem);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}
h3 {
  font-family: 'Fraunces', serif;
  font-size: clamp(1.2rem, 2vw, 1.7rem);
  font-weight: 600;
  line-height: 1.25;
  letter-spacing: -0.015em;
}
h4 {
  font-family: 'Manrope', sans-serif;
  font-size: 1.05rem;
  font-weight: 700;
  line-height: 1.35;
}
.lead {
  font-size: clamp(1.05rem, 1.5vw, 1.25rem);
  font-weight: 400;
  line-height: 1.65;
  color: var(--text-muted);
}
.kicker {
  font-size: 0.75rem; font-weight: 700;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: var(--cobalt);
}
.text-white   { color: #fff; }
.text-muted   { color: var(--text-muted); }
.text-citrus  { color: var(--citrus); }
.text-cobalt  { color: var(--cobalt); }
.text-center  { text-align: center; }

/* ── SECTIONS ── */
.section { padding-block: clamp(5rem, 9vw, 9rem); }
.section-sm { padding-block: clamp(3rem, 5vw, 5rem); }

/* ── GRID UTILITIES ── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 2rem; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 2rem; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; }

/* ── CARDS ── */
.card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem 2rem 2.25rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(14,27,53,0.06);
  transition: transform var(--dur) var(--ease-out), box-shadow var(--dur);
}
.card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-md);
}
.card-dark {
  background: var(--ink);
  border-color: rgba(255,255,255,0.06);
  color: #fff;
}
.card-citrus {
  background: var(--citrus);
  border-color: transparent;
  color: var(--ink);
}
.card-icon {
  width: 52px; height: 52px;
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  margin-bottom: 1.25rem;
  font-size: 1.5rem;
}
.icon-bg-cobalt  { background: rgba(34,73,224,0.1); color: var(--cobalt); }
.icon-bg-citrus  { background: rgba(216,245,60,0.2); color: #6b7c00; }
.icon-bg-teal    { background: rgba(30,200,168,0.12); color: var(--teal); }
.icon-bg-apricot { background: rgba(255,122,80,0.12); color: var(--apricot); }

/* ── STAT CARD ── */
.stat-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.12);
  border-radius: var(--radius-md);
  padding: 1.5rem 1.75rem;
  text-align: center;
}
.stat-number {
  font-family: 'Fraunces', serif;
  font-size: clamp(2.5rem, 4vw, 3.75rem);
  font-weight: 700;
  line-height: 1;
  color: var(--citrus);
  letter-spacing: -0.03em;
  display: block;
}
.stat-label {
  font-size: 0.85rem; font-weight: 600;
  color: rgba(255,255,255,0.65);
  margin-top: 0.4rem;
  text-transform: uppercase; letter-spacing: 0.06em;
}

/* ── DARK BAND ── */
.band-dark {
  background: var(--ink);
  color: #fff;
}
.band-cobalt {
  background: var(--cobalt);
  color: #fff;
}
.band-citrus {
  background: var(--citrus);
  color: var(--ink);
}
.band-slate {
  background: var(--slate);
}

.hero {
  min-height: calc(100svh - var(--nav-h));
  display: flex; align-items: center;
  background: var(--ink);
  background-image: url('/assets/images/mav5.jpg');  /* ADD */
  background-size: cover;                             /* ADD */
  background-position: center;                        /* ADD */
  color: #fff;
  position: relative;
  overflow: hidden;
  padding-block: clamp(5rem, 10vw, 10rem);
}
.hero::before {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(
    to right,
    rgba(14,27,53,0.88) 0%,
    rgba(14,27,53,0.78) 55%,
    rgba(14,27,53,0.55) 100%
  );
  pointer-events: none;
}
.hero-content {
  position: relative; z-index: 1;
  max-width: 780px;
}
.hero-kicker {
  display: inline-flex; align-items: center; gap: 0.6rem;
  background: rgba(216,245,60,0.12);
  border: 1px solid rgba(216,245,60,0.25);
  border-radius: 100px;
  padding: 0.45rem 1rem;
  font-size: 0.78rem; font-weight: 700;
  letter-spacing: 0.08em; text-transform: uppercase;
  color: var(--citrus);
  margin-bottom: 1.75rem;
}
.hero h1 { color: #fff; margin-bottom: 1.25rem; }
.hero h1 em { color: var(--citrus); font-style: italic; }
.hero .lead { color: rgba(255,255,255,0.7); margin-bottom: 2.5rem; max-width: 580px; }
.hero-actions { display: flex; gap: 1rem; flex-wrap: wrap; margin-bottom: 3.5rem; }
.hero-stats {
  display: flex; gap: 2rem; flex-wrap: wrap;
  padding-top: 2.5rem;
  border-top: 1px solid rgba(255,255,255,0.12);
}
.hero-stat strong {
  display: block;
  font-family: 'Fraunces', serif;
  font-size: 2rem; font-weight: 700;
  color: var(--citrus);
  line-height: 1;
}
.hero-stat span { font-size: 0.8rem; color: rgba(255,255,255,0.6); font-weight: 600; }

/* Page hero (non-home) */
.page-hero {
  background: var(--ink);
  color: #fff;
  padding-block: clamp(4rem, 8vw, 8rem);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 70% at 75% 50%, rgba(34,73,224,0.2) 0%, transparent 70%);
  pointer-events: none;
}
.page-hero-img {
  background-size: cover;
  background-position: center;
}

.page-hero-img::before {
  background: linear-gradient(
    to right,
    rgba(14,27,53,0.88) 0%,
    rgba(14,27,53,0.78) 55%,
    rgba(14,27,53,0.55) 100%
  );
}
.page-hero-content { position: relative; z-index: 1; max-width: 700px; }
.page-hero h1 { color: #fff; margin-bottom: 1rem; }
.page-hero h1 em { color: var(--citrus); font-style: italic; }
.page-hero .lead { color: rgba(255,255,255,0.7); }
.page-hero .hero-kicker { margin-bottom: 1.25rem; }

/* ── FEATURE STRIP / PILLS ── */
.feature-strip {
  display: flex; gap: 0.75rem; flex-wrap: wrap;
  margin-top: 1.5rem;
}
.feature-pill {
  display: inline-flex; align-items: center; gap: 0.45rem;
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: 100px;
  padding: 0.4rem 0.9rem;
  font-size: 0.82rem; font-weight: 600;
  color: rgba(255,255,255,0.85);
}
.feature-pill .dot {
  width: 7px; height: 7px; border-radius: 50%;
  background: var(--citrus); flex-shrink: 0;
}

/* ── CHECKLIST ── */
.checklist {
  display: flex; flex-direction: column; gap: 0.65rem;
  list-style: none;
}
.checklist li {
  display: flex; align-items: flex-start; gap: 0.75rem;
  font-size: 0.95rem;
}
.checklist li::before {
  content: '';
  width: 20px; height: 20px; flex-shrink: 0;
  margin-top: 2px;
  background: var(--citrus);
  border-radius: 50%;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 12 12'%3E%3Cpath d='M2 6l3 3 5-5' stroke='%230e1b35' stroke-width='1.8' fill='none' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E");
  background-size: 12px; background-repeat: no-repeat; background-position: center;
}

/* ── ACCORDION ── */
.accordion { display: flex; flex-direction: column; gap: 0.75rem; }

.accordion-item {
  background: #fff;
  border: 1.5px solid rgba(14,27,53,0.08);
  border-radius: var(--radius-md);
  overflow: hidden;
  transition: border-color var(--dur), box-shadow var(--dur);
}
.accordion-item.is-open {
  border-color: var(--cobalt);
  box-shadow: 0 4px 24px rgba(34,73,224,0.1);
}

.accordion-trigger {
  width: 100%;
  display: flex; align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1.35rem 1.75rem;
  background: transparent;
  border: none; cursor: pointer;
  text-align: left;
  font-size: 1rem; font-weight: 700;
  color: var(--text);
  transition: color var(--dur);
}
.accordion-trigger:hover { color: var(--cobalt); }
.accordion-item.is-open .accordion-trigger { color: var(--cobalt); }

.accordion-icon {
  width: 28px; height: 28px; flex-shrink: 0;
  border-radius: 50%;
  background: var(--slate);
  display: flex; align-items: center; justify-content: center;
  transition: background var(--dur), transform var(--dur) var(--ease-out);
}
.accordion-icon svg { width: 14px; height: 14px; }
.accordion-item.is-open .accordion-icon {
  background: var(--cobalt);
  transform: rotate(180deg);
}
.accordion-item.is-open .accordion-icon svg path { stroke: #fff; }

.accordion-body {
  display: grid; grid-template-rows: 0fr;
  transition: grid-template-rows 0.35s var(--ease-out);
}
.accordion-item.is-open .accordion-body { grid-template-rows: 1fr; }

.accordion-inner {
  overflow: hidden;
  padding: 0 1.75rem;
}
.accordion-inner-pad {
  padding-bottom: 1.5rem;
  color: var(--text-muted);
  line-height: 1.7;
}

/* ── TESTIMONIAL ── */
.testimonial-card {
  background: #fff;
  border-radius: var(--radius-lg);
  padding: 2rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(14,27,53,0.06);
  display: flex; flex-direction: column; gap: 1.25rem;
}
.testimonial-quote {
  font-size: 1.05rem;
  line-height: 1.65;
  font-style: italic;
  color: var(--text);
  position: relative;
}
.testimonial-quote::before {
  content: '\201C';
  font-family: 'Fraunces', serif;
  font-size: 4rem; line-height: 0.5;
  color: var(--citrus);
  display: block;
  margin-bottom: 0.5rem;
}
.testimonial-author {
  font-size: 0.85rem; font-weight: 700;
  color: var(--text-muted);
  text-transform: uppercase; letter-spacing: 0.05em;
}

/* ── PROCESS STEPS ── */
.process-grid { display: flex; flex-direction: column; gap: 0; }
.process-step {
  display: grid; grid-template-columns: 3rem 1fr;
  gap: 0 1.5rem;
  padding-bottom: 2.5rem;
  position: relative;
}
.process-step:last-child { padding-bottom: 0; }
.process-step:not(:last-child) .step-line::after {
  content: '';
  position: absolute;
  top: 3rem; left: 1.4rem;
  width: 2px; height: calc(100% - 1rem);
  background: linear-gradient(to bottom, var(--cobalt), transparent);
}
.step-num {
  width: 3rem; height: 3rem; flex-shrink: 0;
  border-radius: 50%;
  background: var(--cobalt);
  color: #fff;
  display: flex; align-items: center; justify-content: center;
  font-family: 'Fraunces', serif;
  font-size: 1.1rem; font-weight: 700;
  position: relative; z-index: 1;
}
.step-body h4 { margin-bottom: 0.5rem; }
.step-body p  { color: var(--text-muted); font-size: 0.95rem; }

/* ── SPLIT LAYOUT ── */
.split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 4rem;
  align-items: center;
}
.split.reverse { direction: rtl; }
.split.reverse > * { direction: ltr; }

/* ── VISUAL BLOCK (replaces image placeholders) ── */
.visual-block {
  border-radius: var(--radius-xl);
  overflow: hidden;
  aspect-ratio: 4/3;
  background: linear-gradient(135deg, var(--cobalt) 0%, #0f2878 100%);
  position: relative;
  display: flex; align-items: flex-end;
  padding: 2rem;
}
.visual-block-dark {
  background: linear-gradient(135deg, #0e1b35 0%, #1a2d5a 50%, #0e1b35 100%);
}
.visual-block-dark::before {
  background: linear-gradient(to top, rgba(14,27,53,0.85) 0%, rgba(14,27,53,0.2) 50%, transparent 100%);
}
.visual-block-img::before {
  background: linear-gradient(to top, rgba(14,27,53,0.85) 0%, rgba(14,27,53,0.2) 50%, transparent 100%);
}
.visual-block-citrus {
  background: linear-gradient(135deg, var(--citrus) 0%, #a8c428 100%);
}
.visual-block-inner {
  position: relative; z-index: 1;
  color: #fff;
}
.visual-block::before {
  content: '';
  position: absolute; inset: 0;
  background: 
    radial-gradient(circle at 30% 30%, rgba(255,255,255,0.12) 0%, transparent 50%),
    radial-gradient(circle at 75% 70%, rgba(34,73,224,0.3) 0%, transparent 50%);
}
.visual-icon-grid {
  position: absolute; inset: 0;
  display: grid; grid-template-columns: repeat(4,1fr); grid-template-rows: repeat(3,1fr);
  gap: 1px; opacity: 0.08; padding: 1.5rem;
}
.visual-icon-grid span {
  background: #fff; border-radius: 4px;
}
.visual-label {
  position: absolute; top: 1.5rem; left: 1.5rem;
  background: rgba(255,255,255,0.15);
  border: 1px solid rgba(255,255,255,0.2);
  border-radius: 100px;
  padding: 0.4rem 0.9rem;
  font-size: 0.75rem; font-weight: 700;
  color: rgba(255,255,255,0.9);
  letter-spacing: 0.06em; text-transform: uppercase;
}

/* ── STRIPE SECTION ── */
.stripe {
  background: var(--cobalt);
  color: #fff;
  padding-block: clamp(3.5rem, 6vw, 6rem);
}
.stripe h2 { color: #fff; }
.stripe p { color: rgba(255,255,255,0.75); }
.stripe-img {
  background-size: cover;
  background-position: center;
  position: relative;
  overflow: hidden;
}

.stripe-img::before {
  content: '';
  position: absolute; inset: 0;
  background: rgba(34,73,224,0.92);
  pointer-events: none;
}
/* ── FORM ── */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1.25rem;
}
.form-group { display: flex; flex-direction: column; gap: 0.4rem; }
.form-group.full { grid-column: 1 / -1; }
.form-group label {
  font-size: 0.83rem; font-weight: 700;
  color: var(--text); letter-spacing: 0.02em;
}
.form-group input,
.form-group select,
.form-group textarea {
  background: var(--slate);
  border: 1.5px solid rgba(14,27,53,0.12);
  border-radius: var(--radius-sm);
  padding: 0.85rem 1rem;
  font-size: 0.95rem;
  color: var(--text);
  width: 100%;
  transition: border-color var(--dur), box-shadow var(--dur);
}
.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
  outline: none;
  border-color: var(--cobalt);
  box-shadow: 0 0 0 3px rgba(34,73,224,0.1);
  background: #fff;
}
.form-group textarea { min-height: 140px; resize: vertical; }
.form-notice {
  font-size: 0.82rem; color: var(--text-muted);
  padding: 0.9rem 1.1rem;
  background: var(--slate);
  border-radius: var(--radius-xs);
  border-left: 3px solid var(--cobalt);
}
.honeypot { display: none !important; }

/* Contact info block */
.contact-info { display: flex; flex-direction: column; gap: 1.5rem; }
.contact-info-item { display: flex; gap: 1rem; align-items: flex-start; }
.contact-info-icon {
  width: 44px; height: 44px; flex-shrink: 0;
  background: rgba(34,73,224,0.1);
  border-radius: var(--radius-sm);
  display: flex; align-items: center; justify-content: center;
  color: var(--cobalt); font-size: 1.2rem;
}
.contact-info-text strong { display: block; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.05em; margin-bottom: 0.2rem; }
.contact-info-text a { color: var(--cobalt); font-weight: 600; }
.contact-info-text a:hover { text-decoration: underline; }

/* ── FOOTER ── */
.site-footer {
  background: var(--ink);
  color: rgba(255,255,255,0.7);
  padding-top: clamp(4rem, 7vw, 7rem);
  padding-bottom: 2rem;
}
.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 3rem;
  padding-bottom: 3rem;
  border-bottom: 1px solid rgba(255,255,255,0.08);
}
.footer-brand .brand { margin-bottom: 1rem; }
.footer-brand p {
  font-size: 0.875rem; line-height: 1.65;
  color: rgba(255,255,255,0.55);
  max-width: 300px;
}
.footer-badges {
  display: flex; gap: 0.5rem; flex-wrap: wrap; margin-top: 1.25rem;
}
.footer-badge {
  display: inline-block;
  padding: 0.3rem 0.75rem;
  border: 1px solid rgba(255,255,255,0.18);
  border-radius: 100px;
  font-size: 0.7rem; font-weight: 700; letter-spacing: 0.05em;
  color: rgba(255,255,255,0.6);
}
.footer-col h5 {
  font-size: 0.75rem; font-weight: 800;
  letter-spacing: 0.1em; text-transform: uppercase;
  color: rgba(255,255,255,0.4);
  margin-bottom: 1rem;
}
.footer-col ul { display: flex; flex-direction: column; gap: 0.5rem; }
.footer-col a {
  font-size: 0.875rem;
  color: rgba(255,255,255,0.6);
  transition: color var(--dur);
}
.footer-col a:hover { color: #fff; }
.subfooter {
  padding-top: 1.75rem;
  display: flex; align-items: center; justify-content: space-between; flex-wrap: wrap;
  gap: 1rem;
}
.subfooter p { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.subfooter-links { display: flex; gap: 1.25rem; flex-wrap: wrap; }
.subfooter-links a { font-size: 0.78rem; color: rgba(255,255,255,0.35); }
.subfooter-links a:hover { color: rgba(255,255,255,0.7); }

/* ── COOKIE BANNER ── */
.cookie-banner {
  position: fixed; bottom: 0; left: 0; right: 0;
  z-index: 9000;
  background: rgba(14,27,53,0.97);
  backdrop-filter: blur(12px);
  border-top: 1px solid rgba(255,255,255,0.1);
  transform: translateY(100%);
  transition: transform 0.4s var(--ease-out);
  padding: 1.25rem var(--gutter);
}
.cookie-banner.is-visible { transform: translateY(0); }
.cookie-inner {
  max-width: var(--container); margin-inline: auto;
  display: flex; align-items: center; justify-content: space-between; gap: 1.5rem;
  flex-wrap: wrap;
}
.cookie-inner p { font-size: 0.85rem; color: rgba(255,255,255,0.7); }
.cookie-inner a { color: var(--citrus); }
.cookie-actions { display: flex; gap: 0.75rem; flex-shrink: 0; }
.cookie-accept {
  background: var(--citrus); color: var(--ink);
  border: none; border-radius: 100px;
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem; font-weight: 700; cursor: pointer;
}
.cookie-reject {
  background: transparent; color: rgba(255,255,255,0.6);
  border: 1px solid rgba(255,255,255,0.2); border-radius: 100px;
  padding: 0.55rem 1.25rem;
  font-size: 0.85rem; font-weight: 600; cursor: pointer;
}

/* ── REVEAL ANIMATIONS ── */
.reveal {
  opacity: 0; transform: translateY(28px);
  transition: opacity 0.6s var(--ease-out), transform 0.6s var(--ease-out);
}
.reveal.in-view { opacity: 1; transform: none; }
.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }

/* ── LEGAL PAGES ── */
.legal-hero { padding-block: clamp(3rem, 6vw, 6rem); }
.legal-content {
  max-width: 780px; margin-inline: auto;
  padding-block: clamp(3rem, 5vw, 5rem);
}
.legal-section {
  background: #fff;
  border-radius: var(--radius-md);
  padding: 2rem;
  margin-bottom: 1.5rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(14,27,53,0.06);
}
.legal-section h2 {
  font-size: 1.2rem;
  margin-bottom: 0.85rem;
  color: var(--ink);
}
.legal-section p,
.legal-section li { font-size: 0.95rem; color: var(--text-muted); line-height: 1.7; }
.legal-section ul,
.legal-section ol { padding-left: 1.25rem; display: flex; flex-direction: column; gap: 0.4rem; margin-top: 0.5rem; }
.legal-section ul li { list-style: disc; }
.legal-section ol li { list-style: decimal; }

/* ── SITEMAP ── */
.sitemap-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 2rem; }
.sitemap-section h3 { margin-bottom: 1rem; font-size: 1rem; }
.sitemap-section ul { display: flex; flex-direction: column; gap: 0.5rem; }
.sitemap-section a { color: var(--cobalt); font-size: 0.9rem; }
.sitemap-section a:hover { text-decoration: underline; }

/* ── RIBBON LINKS ── */
.ribbon {
  background: rgba(216,245,60,0.1);
  border: 1px solid rgba(216,245,60,0.25);
  border-radius: var(--radius-md);
  padding: 1.25rem 1.75rem;
  display: flex; align-items: center; justify-content: space-between; gap: 1rem;
  flex-wrap: wrap;
}
.ribbon p { font-size: 0.9rem; color: var(--text); }
.ribbon strong { font-weight: 700; }

/* ── AUDIENCE TAGS ── */
.audience-grid { display: flex; flex-wrap: wrap; gap: 0.65rem; }
.audience-tag {
  background: var(--slate);
  border: 1px solid rgba(14,27,53,0.1);
  border-radius: 100px;
  padding: 0.45rem 1rem;
  font-size: 0.83rem; font-weight: 600;
  color: var(--text);
  transition: background var(--dur), border-color var(--dur);
}
.audience-tag:hover { background: var(--cobalt); color: #fff; border-color: var(--cobalt); }

/* ── DIVIDER ── */
.divider { height: 1px; background: rgba(14,27,53,0.08); margin-block: 0; }

/* ── UTILITY ── */
.visually-hidden {
  position: absolute; width: 1px; height: 1px;
  padding: 0; margin: -1px; overflow: hidden;
  clip: rect(0,0,0,0); white-space: nowrap; border: 0;
}
.gap-sm { gap: 0.75rem; }
.gap-md { gap: 1.5rem; }
.gap-lg { gap: 2.5rem; }
.mt-1  { margin-top: 0.5rem; }
.mt-2  { margin-top: 1rem; }
.mt-3  { margin-top: 1.5rem; }
.mt-4  { margin-top: 2rem; }
.mb-0  { margin-bottom: 0; }
.mb-1  { margin-bottom: 0.5rem; }
.mb-2  { margin-bottom: 1rem; }
.mb-3  { margin-bottom: 1.5rem; }
.mb-4  { margin-bottom: 2rem; }
.flex  { display: flex; }
.flex-center { display: flex; align-items: center; justify-content: center; }
.flex-between { display: flex; align-items: center; justify-content: space-between; }
.flex-col { display: flex; flex-direction: column; }

/* ── MOBILE NAV (hidden on desktop) ── */
.nav-mobile {
  display: none;
}

/* ══════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════ */

/* Tablet */
@media (max-width: 1024px) {
  .grid-4  { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; gap: 2rem; }
  .split { gap: 2.5rem; }
}

@media (max-width: 900px) {
  /* Nav */
  .nav-links,
  .nav-cta { display: none; }
  .nav-toggle { display: flex; }

  /* Mobile nav overlay */
  .nav-mobile {
    position: fixed; inset: var(--nav-h) 0 0 0;
    background: rgba(14,27,53,0.98);
    backdrop-filter: blur(16px);
    display: flex; flex-direction: column;
    padding: 2rem var(--gutter);
    gap: 0.5rem;
    transform: translateX(100%);
    transition: transform 0.35s var(--ease-out);
    z-index: 99;
    overflow-y: auto;
  }
  .nav-mobile.is-open { transform: translateX(0); }
  .nav-mobile a {
    color: rgba(255,255,255,0.8);
    font-size: 1.2rem; font-weight: 600;
    padding: 0.85rem 1rem;
    border-radius: var(--radius-sm);
    display: block;
  }
  .nav-mobile a:hover { background: rgba(255,255,255,0.08); color: #fff; }
  .nav-mobile .btn { width: 100%; justify-content: center; margin-top: 1rem; }

  .grid-2 { grid-template-columns: 1fr; }
  .grid-3 { grid-template-columns: 1fr; }
  .split  { grid-template-columns: 1fr; }
  .split.reverse { direction: ltr; }
  .form-grid { grid-template-columns: 1fr; }
  .sitemap-grid { grid-template-columns: 1fr 1fr; }
  .hero-stats { gap: 1.25rem; }
}

@media (max-width: 640px) {
  :root { --nav-h: 68px; }
  .display { font-size: clamp(2.2rem, 10vw, 3rem); }
  h1 { font-size: clamp(1.8rem, 8vw, 2.5rem); }
  h2 { font-size: clamp(1.4rem, 6vw, 2rem); }
  .hero-actions { flex-direction: column; align-items: flex-start; }
  .btn { width: 100%; justify-content: center; }
  .footer-grid { grid-template-columns: 1fr; gap: 2rem; }
  .sitemap-grid { grid-template-columns: 1fr; }
  .accordion-trigger { padding: 1rem 1.25rem; font-size: 0.9rem; }
  .accordion-inner { padding: 0 1.25rem; }
  .card { padding: 1.5rem; }
  .subfooter { flex-direction: column; align-items: flex-start; }
  .cookie-inner { flex-direction: column; align-items: flex-start; }
  .cookie-actions { width: 100%; }
  .cookie-accept, .cookie-reject { flex: 1; text-align: center; }
}
