/* ============================================================
   AN EDGE CONSULTING — PREMIUM DESIGN SYSTEM
   World-class training and consulting website
   ============================================================ */

@import url("https://fonts.googleapis.com/css2?family=Plus+Jakarta+Sans:ital,wght@0,400;0,500;0,600;0,700;0,800;1,400&family=Instrument+Serif:ital@0;1&display=swap");

/* ── Tokens ─────────────────────────────────────────────── */
:root {
  --ink:       #060f1c;
  --navy:      #0a2240;
  --blue:      #0d4a83;
  --sky:       #2196c8;
  --gold:      #c9901c;
  --gold-lt:   #f0c04a;
  --cream:     #fdf8f0;
  --mist:      #f1f6fa;
  --surface:   #ffffff;
  --muted:     #566370;
  --muted-lt:  #8594a0;
  --line:      #dfe7ef;
  --line-dk:   rgba(10,34,64,.12);
  --shadow-sm: 0 4px 16px rgba(6,15,28,.07);
  --shadow:    0 12px 40px rgba(6,15,28,.10);
  --shadow-lg: 0 28px 80px rgba(6,15,28,.14);
  --r-sm:  12px;
  --r-md:  20px;
  --r-lg:  28px;
  --r-xl:  36px;
}

/* ── Reset ──────────────────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; -webkit-font-smoothing: antialiased; }
body {
  font-family: "Plus Jakarta Sans", system-ui, sans-serif;
  font-size: 16px;
  line-height: 1.65;
  color: var(--ink);
  background: var(--surface);
  overflow-x: hidden;
}
a { color: inherit; text-decoration: none; }
img, svg { display: block; max-width: 100%; }

/* ── Layout ─────────────────────────────────────────────── */
.container  { max-width: 1160px; margin: 0 auto; padding: 0 28px; }
.container--wide { max-width: 1320px; margin: 0 auto; padding: 0 28px; }

/* ── Typography ─────────────────────────────────────────── */
.display {
  font-family: "Instrument Serif", Georgia, serif;
  font-size: clamp(48px, 7vw, 84px);
  line-height: 1.01;
  letter-spacing: -0.03em;
  color: var(--ink);
}
h1 { font-size: clamp(36px, 5vw, 62px); font-weight: 800; line-height: 1.06; letter-spacing: -0.03em; color: var(--ink); }
h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 800; line-height: 1.1; letter-spacing: -0.03em; color: var(--ink); }
h3 { font-size: 20px; font-weight: 700; line-height: 1.3; letter-spacing: -0.02em; color: var(--ink); }
h4 { font-size: 15px; font-weight: 700; text-transform: uppercase; letter-spacing: .1em; color: var(--blue); }
.lead  { font-size: 18px; line-height: 1.75; color: var(--muted); max-width: 640px; }
.kicker { font-size: 12px; font-weight: 800; letter-spacing: .14em; text-transform: uppercase; color: var(--sky); margin-bottom: 12px; }
p { color: var(--muted); line-height: 1.72; }
.em-serif { font-family: "Instrument Serif", serif; font-style: italic; font-weight: 400; color: var(--blue); }

/* ── Announcement bar ───────────────────────────────────── */
.announcement {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 14px;
  padding: 10px 20px;
  background: var(--navy);
  font-size: 13px;
  font-weight: 600;
  color: rgba(255,255,255,.7);
  letter-spacing: .03em;
}
.announcement a {
  color: var(--gold-lt);
  font-weight: 700;
  display: inline-flex;
  align-items: center;
  gap: 4px;
}
.announcement a::after { content: "→"; }

/* ── Navigation ─────────────────────────────────────────── */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.9);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--line);
}
.site-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 76px;
  gap: 16px;
}
.brand {
  display: flex;
  align-items: center;
  gap: 11px;
  font-size: 17px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.02em;
  flex-shrink: 0;
}
.brand-mark {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: linear-gradient(145deg, #0f3d73, var(--sky));
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  box-shadow: 0 8px 20px rgba(13,74,131,.3);
}
.nav-links {
  display: flex;
  gap: 4px;
}
.nav-links a {
  padding: 8px 14px;
  border-radius: 8px;
  font-size: 14px;
  font-weight: 600;
  color: var(--muted);
  transition: background 150ms, color 150ms;
}
.nav-links a:hover { background: var(--mist); color: var(--navy); }

/* ── Buttons ────────────────────────────────────────────── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border-radius: 999px;
  padding: 13px 22px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  border: none;
  transition: transform 180ms ease, box-shadow 180ms ease, filter 180ms ease;
  white-space: nowrap;
}
.btn:hover { transform: translateY(-2px); }
.btn-primary {
  background: linear-gradient(135deg, #0f3d73, var(--blue));
  color: #fff;
  box-shadow: 0 10px 28px rgba(13,74,131,.32);
}
.btn-primary:hover { box-shadow: 0 16px 38px rgba(13,74,131,.40); }
.btn-gold {
  background: linear-gradient(135deg, var(--gold-lt), var(--gold));
  color: #1a0f00;
  box-shadow: 0 10px 28px rgba(201,144,28,.28);
}
.btn-gold:hover { box-shadow: 0 16px 38px rgba(201,144,28,.38); }
.btn-outline {
  background: rgba(255,255,255,.92);
  color: var(--navy);
  border: 1.5px solid var(--line);
  box-shadow: var(--shadow-sm);
}
.btn-outline:hover { border-color: rgba(13,74,131,.3); }
.btn-sm { padding: 9px 16px; font-size: 13px; }
.btn-lg { padding: 16px 28px; font-size: 16px; }

.btn-row { display: flex; flex-wrap: wrap; gap: 10px; }

/* ── Hero ───────────────────────────────────────────────── */
.hero {
  position: relative;
  padding: 80px 0 64px;
  overflow: hidden;
  background: linear-gradient(165deg, #f7fbff 0%, #edf5fc 55%, #fdf8f0 100%);
}
/* Dotted grid overlay */
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(13,74,131,.12) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}
/* Gold glow top-right */
.hero::after {
  content: "";
  position: absolute;
  top: -180px; right: -180px;
  width: 560px; height: 560px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(201,144,28,.18), transparent 68%);
  pointer-events: none;
}
.hero-inner {
  position: relative;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 48px;
  align-items: center;
}
.hero-copy { position: relative; z-index: 2; }
.hero-copy h1 { margin-bottom: 18px; }
.hero-copy .lead { margin-bottom: 28px; }
.hero-visual { position: relative; z-index: 2; }

/* Hero stats row */
.stat-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  margin-top: 32px;
}
.stat-box {
  background: rgba(255,255,255,.85);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 16px 14px;
  box-shadow: var(--shadow-sm);
  transition: transform 200ms, box-shadow 200ms;
}
.stat-box:hover { transform: translateY(-3px); box-shadow: var(--shadow); }
.stat-box strong { display: block; font-size: 22px; font-weight: 900; color: var(--navy); line-height: 1; letter-spacing: -0.04em; margin-bottom: 4px; }
.stat-box span { font-size: 12px; font-weight: 600; color: var(--muted-lt); }

/* Trust pills */
.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 24px;
}
.trust-pill {
  padding: 7px 14px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 700;
  color: var(--navy);
  background: rgba(255,255,255,.86);
  border: 1px solid var(--line-dk);
  letter-spacing: .04em;
  box-shadow: var(--shadow-sm);
}

/* ── Carousel panel ─────────────────────────────────────── */
.carousel-panel {
  position: relative;
  min-height: 520px;
  border-radius: var(--r-xl);
  overflow: hidden;
  background: linear-gradient(155deg, #0a2240 0%, #0d4a83 60%, #1068b5 100%);
  box-shadow: var(--shadow-lg);
  padding: 36px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
/* Decorative circles inside panel */
.carousel-panel::before {
  content: "";
  position: absolute;
  top: -90px; right: -90px;
  width: 280px; height: 280px;
  border-radius: 50%;
  border: 1px solid rgba(255,255,255,.1);
  pointer-events: none;
}
.carousel-panel::after {
  content: "";
  position: absolute;
  top: -40px; right: -40px;
  width: 160px; height: 160px;
  border-radius: 50%;
  background: rgba(240,192,74,.12);
  pointer-events: none;
}
/* Image slot at top of carousel panel */
.carousel-img-slot {
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 210px;
  overflow: hidden;
}
.carousel-copy { position: relative; z-index: 2; }
.carousel-copy .kicker { color: rgba(255,255,255,.6); }
.carousel-copy h2 { color: #fff; font-size: clamp(22px, 3vw, 32px); margin-bottom: 10px; }
.carousel-copy p { color: rgba(255,255,255,.72); font-size: 15px; margin-bottom: 0; }
.event-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 7px 13px;
  border-radius: 999px;
  background: rgba(255,255,255,.13);
  color: rgba(255,255,255,.8);
  font-size: 12px;
  font-weight: 700;
  letter-spacing: .04em;
  margin-bottom: 14px;
}
.carousel-dots {
  display: flex;
  gap: 6px;
  margin-top: 18px;
}
.cdot {
  width: 28px; height: 5px;
  border-radius: 999px;
  border: 0;
  background: rgba(255,255,255,.28);
  cursor: pointer;
  transition: background 200ms, width 200ms;
}
.cdot.active { background: var(--gold-lt); width: 44px; }

/* ── Image placeholder SVG component ───────────────────── */
.img-placeholder {
  position: relative;
  overflow: hidden;
  border-radius: inherit;
  background: linear-gradient(135deg, #e8f2fa, #d4e8f5);
  display: flex;
  align-items: center;
  justify-content: center;
}
.img-placeholder--dark {
  background: linear-gradient(135deg, #0d2a48, #1058a0);
}
.img-placeholder--warm {
  background: linear-gradient(135deg, #fdf3e3, #f5ddb2);
}
.img-placeholder--muted {
  background: linear-gradient(135deg, #eef4f8, #dbe8f2);
}
.img-placeholder svg { opacity: .32; }
.img-placeholder--dark svg { opacity: .22; }
.img-ph-label {
  position: absolute;
  bottom: 14px; left: 50%;
  transform: translateX(-50%);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .1em;
  text-transform: uppercase;
  color: rgba(0,0,0,.35);
  white-space: nowrap;
}
.img-placeholder--dark .img-ph-label { color: rgba(255,255,255,.3); }

/* ── Sections ───────────────────────────────────────────── */
.section        { padding: 80px 0; }
.section--lg    { padding: 100px 0; }
.section--sm    { padding: 52px 0; }
.section--navy  { background: var(--navy); }
.section--mist  { background: var(--mist); }
.section--cream { background: var(--cream); }
.section--dark  { background: #060f1c; }

.section-head { max-width: 680px; margin-bottom: 44px; }
.section-head .kicker { margin-bottom: 8px; }
.section-head h2 { margin-bottom: 14px; }
.section-head.centered { margin: 0 auto 44px; text-align: center; }
.section-head.centered .lead { margin: 0 auto; }
.section-row { display: flex; justify-content: space-between; align-items: flex-end; gap: 24px; margin-bottom: 44px; }

/* ── Grid layouts ───────────────────────────────────────── */
.grid-2 { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.grid-4 { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; }
.split-6040 { display: grid; grid-template-columns: 1.15fr .85fr; gap: 48px; align-items: start; }
.split-5050 { display: grid; grid-template-columns: 1fr 1fr; gap: 48px; align-items: center; }

/* ── Cards ──────────────────────────────────────────────── */
.card {
  position: relative;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 220ms ease, box-shadow 220ms ease, border-color 220ms ease;
}
.card:hover {
  transform: translateY(-5px);
  border-color: rgba(13,74,131,.2);
  box-shadow: var(--shadow);
}
.card-body { padding: 28px; }
.card-accent-bar { height: 4px; background: linear-gradient(90deg, var(--sky), var(--gold-lt)); }
.card-img { width: 100%; }
.card-tag {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 6px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--blue);
  background: rgba(33,150,200,.1);
  margin-bottom: 12px;
}

/* Feature cards */
.feature-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px;
  box-shadow: var(--shadow-sm);
  transition: transform 220ms, box-shadow 220ms;
}
.feature-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.feature-icon {
  width: 52px; height: 52px;
  border-radius: 14px;
  background: linear-gradient(135deg, var(--mist), #d4e9f7);
  display: grid;
  place-items: center;
  margin-bottom: 18px;
}
.feature-icon svg { color: var(--blue); }
.feature-card h3 { margin-bottom: 10px; }
.feature-card p { font-size: 15px; margin-bottom: 0; }

/* ── Dark panel ─────────────────────────────────────────── */
.dark-panel {
  background: linear-gradient(145deg, #060f1c, var(--navy) 60%, #0d4a83);
  border-radius: var(--r-xl);
  padding: 52px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.dark-panel::before {
  content: "";
  position: absolute;
  top: -100px; right: -100px;
  width: 340px; height: 340px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(240,192,74,.15), transparent 65%);
  pointer-events: none;
}
.dark-panel h2, .dark-panel h3 { color: #fff; }
.dark-panel p, .dark-panel .kicker { color: rgba(255,255,255,.6); }
.dark-panel .kicker { color: var(--gold-lt); }

/* ── Callout band ───────────────────────────────────────── */
.callout-band {
  background: linear-gradient(135deg, var(--cream), #fff9f0);
  border: 1px solid rgba(201,144,28,.22);
  border-radius: var(--r-xl);
  padding: 56px;
  position: relative;
  overflow: hidden;
  box-shadow: var(--shadow);
}
.callout-band::before {
  content: "";
  position: absolute;
  bottom: -60px; right: -60px;
  width: 260px; height: 260px;
  border-radius: 50%;
  border: 1px solid rgba(201,144,28,.15);
  pointer-events: none;
}
.callout-band::after {
  content: "";
  position: absolute;
  bottom: -20px; right: -20px;
  width: 140px; height: 140px;
  border-radius: 50%;
  background: rgba(240,192,74,.08);
  pointer-events: none;
}

/* ── Timeline ───────────────────────────────────────────── */
.process-list { display: grid; gap: 16px; }
.process-item {
  display: grid;
  grid-template-columns: 56px 1fr;
  gap: 18px;
  align-items: start;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  transition: transform 200ms, box-shadow 200ms;
}
.process-item:hover { transform: translateX(5px); box-shadow: var(--shadow); }
.process-num {
  width: 48px; height: 48px;
  border-radius: 14px;
  background: linear-gradient(135deg, #0a2240, var(--blue));
  color: #fff;
  font-size: 14px;
  font-weight: 900;
  display: grid;
  place-items: center;
  flex-shrink: 0;
}
.process-item h3 { font-size: 16px; margin-bottom: 4px; }
.process-item p  { font-size: 14px; margin-bottom: 0; }

/* ── Testimonials ───────────────────────────────────────── */
.testimonial-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 34px;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  gap: 20px;
}
.testimonial-quote {
  font-family: "Instrument Serif", serif;
  font-size: 22px;
  line-height: 1.45;
  color: var(--ink);
}
.testimonial-quote::before { content: "\201C"; }
.testimonial-quote::after  { content: "\201D"; }
.testimonial-meta {
  display: flex;
  align-items: center;
  gap: 14px;
  margin-top: auto;
}
.testimonial-avatar {
  width: 48px; height: 48px;
  border-radius: 50%;
  overflow: hidden;
  flex-shrink: 0;
  border: 2px solid var(--line);
}
.testimonial-name { font-weight: 700; font-size: 15px; color: var(--ink); }
.testimonial-role { font-size: 13px; color: var(--muted-lt); font-weight: 600; }

/* ── Capability tags ────────────────────────────────────── */
.capability-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 28px;
}
.capability-tag {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  padding: 11px 16px;
  border-radius: 12px;
  background: rgba(255,255,255,.1);
  border: 1px solid rgba(255,255,255,.15);
  color: rgba(255,255,255,.88);
  font-size: 14px;
  font-weight: 600;
  transition: background 180ms, border-color 180ms;
}
.capability-tag:hover { background: rgba(255,255,255,.16); border-color: rgba(255,255,255,.28); }
.capability-tag-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--gold-lt); flex-shrink: 0; }

/* ── Audience cards ─────────────────────────────────────── */
.audience-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  transition: transform 220ms, box-shadow 220ms;
}
.audience-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.audience-img { height: 180px; }
.audience-body { padding: 26px; }
.audience-body h3 { margin-bottom: 8px; }
.audience-body p  { font-size: 15px; margin-bottom: 14px; }

/* ── Event cards ────────────────────────────────────────── */
.event-card {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow-sm);
  display: flex;
  flex-direction: column;
  transition: transform 220ms, box-shadow 220ms;
}
.event-card:hover { transform: translateY(-5px); box-shadow: var(--shadow); }
.event-card-img { height: 180px; }
.event-card-body { padding: 26px; flex: 1; display: flex; flex-direction: column; }
.event-card-meta { font-size: 13px; font-weight: 700; color: var(--sky); margin-bottom: 8px; }
.event-card h3   { margin-bottom: 10px; }
.event-card p    { font-size: 15px; margin-bottom: 18px; flex: 1; }
.event-card .btn { margin-top: auto; align-self: flex-start; }

/* ── FAQ ────────────────────────────────────────────────── */
.faq-list { display: grid; gap: 12px; }
.faq-item {
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px;
  box-shadow: var(--shadow-sm);
}
.faq-item h3 { font-size: 17px; margin-bottom: 8px; color: var(--navy); }
.faq-item p  { font-size: 15px; margin-bottom: 0; }

/* ── Page hero ──────────────────────────────────────────── */
.page-hero {
  padding: 72px 0 56px;
  background: linear-gradient(165deg, #f7fbff, #edf5fc 60%, #fdf8f0 100%);
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(13,74,131,.09) 1px, transparent 1px);
  background-size: 36px 36px;
  pointer-events: none;
}
.page-hero .kicker { margin-bottom: 12px; }
.page-hero h1     { margin-bottom: 18px; }
.page-hero .lead  { margin-bottom: 28px; }
.page-hero-inner  { position: relative; z-index: 2; }

/* ── About page ─────────────────────────────────────────── */
.about-hero-img {
  width: 100%; height: 480px;
  border-radius: var(--r-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
}
.about-pillar {
  display: flex;
  gap: 14px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
}
.about-pillar-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--mist), #c8e3f4);
  display: grid; place-items: center;
  flex-shrink: 0;
}
.pillar-list { display: grid; gap: 14px; }

/* ── Contact page ───────────────────────────────────────── */
.contact-grid { display: grid; grid-template-columns: 1.1fr .9fr; gap: 40px; align-items: start; }
.contact-details { display: grid; gap: 14px; }
.contact-item {
  display: flex;
  gap: 16px;
  padding: 22px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
}
.contact-icon {
  width: 44px; height: 44px;
  border-radius: 12px;
  background: linear-gradient(135deg, var(--navy), var(--blue));
  display: grid; place-items: center;
  flex-shrink: 0;
}
.contact-icon svg { color: #fff; }
.contact-item-body h3 { font-size: 15px; margin-bottom: 3px; }
.contact-item-body p  { font-size: 14px; margin-bottom: 0; color: var(--muted-lt); }
.contact-map {
  width: 100%; height: 300px;
  border-radius: var(--r-lg);
  overflow: hidden;
  box-shadow: var(--shadow);
}

/* ── Footer ─────────────────────────────────────────────── */
.site-footer {
  background: var(--ink);
  padding: 64px 0 40px;
  margin-top: 0;
}
.footer-grid {
  display: grid;
  grid-template-columns: 1.5fr 1fr 1fr 1fr;
  gap: 40px;
  padding-bottom: 48px;
  border-bottom: 1px solid rgba(255,255,255,.1);
}
.footer-brand .brand {
  color: #fff;
  margin-bottom: 14px;
  display: inline-flex;
}
.footer-brand p  { color: rgba(255,255,255,.45); font-size: 14px; line-height: 1.7; }
.footer-col h4   { color: rgba(255,255,255,.5); font-size: 11px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; margin-bottom: 16px; }
.footer-col a    { display: block; color: rgba(255,255,255,.55); font-size: 14px; margin-bottom: 10px; transition: color 150ms; }
.footer-col a:hover { color: rgba(255,255,255,.9); }
.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: 28px;
  font-size: 13px;
  color: rgba(255,255,255,.35);
}
.footer-bottom a { color: rgba(255,255,255,.35); }
.footer-bottom a:hover { color: rgba(255,255,255,.6); }

/* ── Divider ─────────────────────────────────────────────── */
.divider { border: none; height: 1px; background: var(--line); margin: 0; }

/* ── Responsive ─────────────────────────────────────────── */
@media (max-width: 1080px) {
  .footer-grid { grid-template-columns: 1fr 1fr; }
}
@media (max-width: 940px) {
  .hero-inner, .split-6040, .split-5050, .contact-grid { grid-template-columns: 1fr; }
  .hero-inner { gap: 40px; }
  .carousel-panel { min-height: 400px; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .section-row { flex-direction: column; align-items: flex-start; gap: 16px; }
  .dark-panel, .callout-band { padding: 40px; }
  .nav-links { display: none; }
}
@media (max-width: 640px) {
  .container { padding: 0 20px; }
  .site-nav { height: 66px; }
  .site-nav .btn-primary { display: none; }
  .hero { padding: 56px 0 44px; }
  .section { padding: 56px 0; }
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .stat-row { grid-template-columns: repeat(2, 1fr); }
  .dark-panel, .callout-band { padding: 28px; border-radius: var(--r-lg); }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
  h1 { font-size: 38px; }
  h2 { font-size: 30px; }
}
