/* Berkeley Growth Partners — Design System Stylesheet
   See DESIGN.md for the source palette, type, and component rules. */

:root {
  /* Color */
  --blue: #004195;
  --blue-dark: #00306e;
  --gold: #dca41f;
  --ink: #0a0a0c;
  --ink-900: #15151a;
  --white: #ffffff;
  --surface: #f5f6f8;
  --line: #e4e7ec;
  --line-2: #cbd0da;
  --muted: #6b7280;
  --muted-2: #9ca3af;
  --success: #22c55e;
  --gold-soft: rgba(220, 164, 31, 0.12);
  --blue-soft: rgba(0, 65, 149, 0.08);

  /* Type */
  --font-sans: "Geist", "Inter", -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  --font-mono: "Geist Mono", "SF Mono", "JetBrains Mono", Menlo, monospace;

  /* Layout */
  --shell-max: 1180px;
  --radius-sm: 10px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  font-family: var(--font-sans);
  color: var(--ink);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  line-height: 1.5;
}
img { max-width: 100%; display: block; }
a { color: inherit; text-decoration: none; }
ul { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4 { margin: 0; font-weight: 600; letter-spacing: -0.02em; }
p { margin: 0; }

.shell {
  max-width: var(--shell-max);
  margin: 0 auto;
  padding: 0 24px;
}

.section { padding: 96px 0; }
.section.tight { padding: 64px 0; }
.bg-surface { background: var(--surface); }
.bg-ink { background: var(--ink); color: var(--white); }

.text-center { text-align: center; }

/* Eyebrow + numbered tags */
.eyebrow {
  display: inline-block;
  font-family: var(--font-mono);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--blue);
}
.bg-ink .eyebrow { color: var(--gold); }
.section-tag {
  display: flex;
  align-items: center;
  gap: 12px;
  margin-bottom: 18px;
}
.section-tag .num {
  font-family: var(--font-mono);
  font-size: 0.8rem;
  font-weight: 600;
  letter-spacing: 0.2em;
  color: var(--gold);
}
.section-tag .rule { height: 1px; width: 32px; background: var(--line-2); }
.bg-ink .section-tag .rule { background: rgba(255,255,255,0.18); }

h2.section-title {
  font-size: clamp(2rem, 1.4rem + 2.6vw, 3.4rem);
  line-height: 1.05;
  margin-top: 16px;
  max-width: 760px;
}
h2.section-title .accent { color: var(--blue); }
.bg-ink h2.section-title .accent { color: var(--gold); }

.lead {
  font-size: clamp(1rem, 0.9rem + 0.3vw, 1.1rem);
  line-height: 1.6;
  color: var(--muted);
  max-width: 620px;
  margin-top: 20px;
}
.bg-ink .lead { color: rgba(255,255,255,0.62); }

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.95rem;
  font-weight: 500;
  padding: 12px 22px;
  border-radius: var(--radius-pill);
  border: 1px solid transparent;
  cursor: pointer;
  transition: transform 0.15s ease, background 0.15s ease, border-color 0.15s ease;
  white-space: nowrap;
}
.btn svg { transition: transform 0.15s ease; }
.btn:hover svg { transform: translateX(2px); }
.btn-primary { background: var(--blue); color: var(--white); }
.btn-primary:hover { background: var(--blue-dark); }
.btn-dark { background: var(--ink); color: var(--white); }
.btn-dark:hover { background: #000; }
.btn-outline { background: transparent; color: var(--ink); border-color: var(--line-2); }
.btn-outline:hover { border-color: var(--blue); color: var(--blue); }
.btn-outline-light { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.3); }
.btn-outline-light:hover { border-color: var(--gold); color: var(--gold); }
.btn-light { background: var(--white); color: var(--ink); }
.btn-light:hover { background: var(--surface); }
.btn-sm { padding: 9px 16px; font-size: 0.86rem; }
.btn-block { width: 100%; justify-content: center; }

/* Header / Nav */
header.site-header {
  position: fixed;
  inset: 0 0 auto 0;
  z-index: 50;
  border-bottom: 1px solid transparent;
  transition: background 0.25s ease, border-color 0.25s ease;
}
header.site-header.scrolled {
  background: rgba(255,255,255,0.92);
  backdrop-filter: blur(10px);
  border-bottom-color: var(--line);
}
.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  height: 76px;
}
.brand { display: flex; align-items: center; }
.brand img { height: 34px; width: auto; }

nav.primary-nav { display: none; }
@media (min-width: 1024px) { nav.primary-nav { display: block; } }

.primary-nav > ul { display: flex; align-items: center; gap: 2px; }
.nav-item { position: relative; }
.nav-link {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 10px 16px;
  border-radius: var(--radius-pill);
  font-size: 0.94rem;
  color: rgba(10,10,12,0.78);
  transition: background 0.15s ease;
}
.nav-link:hover { background: rgba(10,10,12,0.05); }
.nav-link .chev { transition: transform 0.2s ease; opacity: 0.5; }
.nav-item:hover .nav-link .chev { transform: rotate(180deg); }

.dropdown {
  position: absolute;
  top: 100%;
  left: 0;
  padding-top: 12px;
  visibility: hidden;
  opacity: 0;
  transform: translateY(4px);
  transition: all 0.18s ease;
}
.nav-item:hover .dropdown,
.nav-item:focus-within .dropdown { visibility: visible; opacity: 1; transform: translateY(0); }
.dropdown-panel {
  background: rgba(255,255,255,0.98);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  box-shadow: 0 28px 70px -32px rgba(10,10,12,0.25);
  padding: 8px;
  min-width: 280px;
}
.dropdown-panel.grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 2px; width: 560px; }
.dropdown-link {
  display: flex;
  flex-direction: column;
  gap: 2px;
  padding: 10px 14px;
  border-radius: 10px;
  transition: background 0.15s ease;
}
.dropdown-link:hover { background: rgba(0,65,149,0.06); }
.dropdown-link .title { font-size: 0.92rem; font-weight: 500; }
.dropdown-link .desc { font-size: 0.8rem; color: var(--muted); line-height: 1.4; }

.nav-actions { display: flex; align-items: center; gap: 10px; }
.menu-toggle {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  border: 1px solid var(--line-2);
  background: var(--white);
}
@media (min-width: 1024px) { .menu-toggle { display: none; } }
.cta-desktop { display: none; }
@media (min-width: 1024px) { .cta-desktop { display: inline-flex; } }

.mobile-menu {
  display: none;
  border-top: 1px solid var(--line);
  background: rgba(255,255,255,0.97);
  backdrop-filter: blur(10px);
}
.mobile-menu.open { display: block; }
.mobile-menu .shell { padding-top: 16px; padding-bottom: 16px; }
.mobile-group { border-bottom: 1px solid var(--line); }
.mobile-group summary {
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 14px 4px;
  font-size: 1.02rem;
  cursor: pointer;
}
.mobile-group summary::-webkit-details-marker { display: none; }
.mobile-group .sub-links { display: flex; flex-direction: column; gap: 2px; padding: 0 4px 14px; }
.mobile-group .sub-links a { padding: 8px 6px; font-size: 0.92rem; color: var(--muted); }
.mobile-group .sub-links a:hover { color: var(--ink); }

/* Hero */
.hero {
  position: relative;
  padding-top: 150px;
  overflow: hidden;
  border-bottom: 1px solid var(--line);
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(0,65,149,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,65,149,0.05) 1px, transparent 1px);
  background-size: 36px 36px;
  mask-image: radial-gradient(ellipse at top, black, transparent 70%);
  pointer-events: none;
}
.hero::after {
  content: "";
  position: absolute;
  top: -160px;
  left: 50%;
  transform: translateX(-50%);
  width: 720px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--gold), transparent 70%);
  opacity: 0.14;
  filter: blur(50px);
  pointer-events: none;
}
.hero-inner { position: relative; padding: 40px 0 96px; text-align: center; }
.pill-badge {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  padding: 6px 6px 6px 20px;
  border: 1px solid var(--line-2);
  border-radius: var(--radius-pill);
  background: rgba(255,255,255,0.8);
  font-size: 0.78rem;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}
.pill-badge .arrow {
  width: 28px; height: 28px; border-radius: 50%;
  background: var(--ink); color: var(--white);
  display: flex; align-items: center; justify-content: center;
}
h1.hero-title {
  max-width: 880px;
  margin: 32px auto 0;
  font-size: clamp(2.6rem, 1.8rem + 4vw, 5.2rem);
  line-height: 0.98;
  letter-spacing: -0.03em;
}
h1.hero-title .accent { color: var(--blue); }
.hero-lead {
  max-width: 580px;
  margin: 28px auto 0;
  font-size: 1.1rem;
  line-height: 1.6;
  color: var(--muted);
}
.hero-ctas {
  margin-top: 36px;
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 12px;
}

/* Dashboard mock */
.dash-wrap { margin-top: 64px; }
.dash-card {
  max-width: 720px;
  margin: 0 auto;
  border-radius: var(--radius-lg);
  border: 1px solid var(--line-2);
  background: var(--white);
  box-shadow: 0 40px 90px -50px rgba(10,10,12,0.35);
  overflow: hidden;
  text-align: left;
}
.dash-titlebar {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}
.dash-dot { width: 8px; height: 8px; border-radius: 2px; background: var(--gold); }
.dash-titlebar .label { font-family: var(--font-mono); font-size: 0.74rem; letter-spacing: 0.14em; text-transform: uppercase; color: var(--muted); }
.dash-live {
  margin-left: auto;
  display: inline-flex; align-items: center; gap: 6px;
  background: rgba(34,197,94,0.1); color: #0a9d44;
  font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.12em; text-transform: uppercase;
  padding: 4px 10px; border-radius: 6px;
}
.dash-live .dot { width: 6px; height: 6px; border-radius: 50%; background: var(--success); }
.dash-body { padding: 20px; }
.dash-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 12px; }
.dash-stat {
  border: 1px solid var(--line);
  border-radius: 12px;
  padding: 14px 16px;
  background: var(--surface);
}
.dash-stat .k { font-family: var(--font-mono); font-size: 0.66rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.dash-stat .v { margin-top: 6px; font-size: 1.9rem; font-weight: 600; letter-spacing: -0.02em; }
.dash-stat .v.gold { color: var(--gold); }
.dash-progress { margin-top: 14px; border: 1px solid var(--line); border-radius: 12px; padding: 14px 16px; background: var(--surface); }
.dash-progress .row { display: flex; justify-content: space-between; font-family: var(--font-mono); font-size: 0.64rem; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.dash-bar { margin-top: 8px; height: 6px; border-radius: 4px; background: var(--line); display: flex; overflow: hidden; gap: 2px; }
.dash-bar span { display: block; height: 100%; }
.dash-bar .b1 { width: 33%; background: var(--blue); }
.dash-bar .b2 { width: 33%; background: rgba(0,65,149,0.35); }
.dash-bar .b3 { width: 33%; background: var(--line-2); }
.dash-table { margin-top: 14px; border: 1px solid var(--line); border-radius: 12px; overflow: hidden; }
.dash-row { display: flex; align-items: center; gap: 12px; padding: 12px 16px; border-bottom: 1px solid var(--line); background: var(--white); }
.dash-row:last-child { border-bottom: none; }
.dash-avatar { width: 30px; height: 30px; border-radius: 50%; background: var(--ink); color: var(--white); display: flex; align-items: center; justify-content: center; font-size: 0.78rem; font-weight: 600; flex-shrink: 0; }
.dash-row .who { flex: 1; min-width: 0; }
.dash-row .who .name { font-size: 0.92rem; font-weight: 500; }
.dash-row .who .seg { font-size: 0.8rem; color: var(--muted); }
.dash-row .status { display: flex; align-items: center; gap: 6px; font-family: var(--font-mono); font-size: 0.7rem; color: rgba(10,10,12,0.7); flex-shrink: 0; }
.dash-row .status .dot { width: 7px; height: 7px; border-radius: 50%; }

/* Quote banner (replaces photography) */
.quote-banner {
  border-radius: var(--radius-lg);
  border: 1px solid var(--line);
  background: linear-gradient(135deg, var(--ink) 0%, var(--blue-dark) 130%);
  padding: 56px 40px;
  position: relative;
  overflow: hidden;
}
.quote-banner::after {
  content: "";
  position: absolute; inset: 0;
  background: radial-gradient(120% 130% at 85% 0%, rgba(220,164,31,0.25), transparent 60%);
}
.quote-banner p {
  position: relative;
  max-width: 640px;
  color: var(--white);
  font-size: clamp(1.4rem, 1.1rem + 1.2vw, 2rem);
  line-height: 1.35;
  font-weight: 500;
}

/* Logo strip */
.stack-strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); background: var(--surface); }
.stack-strip .label { text-align: center; font-size: 0.8rem; font-weight: 500; letter-spacing: 0.16em; text-transform: uppercase; color: var(--muted); }
.stack-row { margin-top: 32px; display: flex; flex-wrap: wrap; justify-content: center; align-items: center; gap: 32px 44px; }
.stack-item { display: flex; align-items: center; gap: 8px; color: rgba(10,10,12,0.4); font-weight: 600; font-size: 1.1rem; transition: color 0.2s ease; }
.stack-item:hover { color: rgba(10,10,12,0.8); }
.stack-item .chip { width: 18px; height: 18px; border-radius: 4px; background: currentColor; opacity: 0.5; flex-shrink: 0; }

/* Grid lines decorative section */
.grid-panel {
  position: relative;
  margin-top: 56px;
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  background: var(--surface);
  padding: 40px;
  overflow: hidden;
}
.grid-panel::before {
  content: "";
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(0,65,149,0.06) 1px, transparent 1px),
    linear-gradient(90deg, rgba(0,65,149,0.06) 1px, transparent 1px);
  background-size: 32px 32px;
  mask-image: radial-gradient(ellipse at center, black, transparent 85%);
}

/* Cards */
.grid { display: grid; gap: 20px; }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-5 { grid-template-columns: repeat(5, 1fr); }
@media (max-width: 900px) { .grid-3, .grid-5 { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .grid-2, .grid-3, .grid-5 { grid-template-columns: 1fr; } }

.card {
  position: relative;
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  background: var(--white);
  padding: 28px;
  transition: border-color 0.2s ease, transform 0.2s ease;
}
.card-hover:hover { border-color: var(--blue); transform: translateY(-2px); }
.card.sm { padding: 20px; }
.card h3 { font-size: 1.1rem; line-height: 1.3; }
.card p.desc { margin-top: 10px; font-size: 0.92rem; line-height: 1.5; color: var(--muted); }
.card .kicker { font-size: 0.74rem; font-weight: 500; letter-spacing: 0.1em; text-transform: uppercase; color: var(--muted); }
.card .icon-badge {
  display: inline-flex; align-items: center; justify-content: center;
  width: 48px; height: 48px; border-radius: 14px;
  background: var(--gold-soft); color: var(--blue);
}
.card .link-cta {
  margin-top: 16px;
  display: inline-flex; align-items: center; gap: 6px;
  font-size: 0.85rem; font-weight: 500; color: var(--blue);
}
.card-row { display: flex; gap: 16px; align-items: flex-start; }
.card-row .icon-badge { flex-shrink: 0; }

/* Engine diagram */
.engine-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1fr auto 1.15fr auto 0.9fr;
  align-items: center;
  gap: 16px;
}
@media (max-width: 900px) { .engine-grid { grid-template-columns: 1fr; } }
.engine-col .mono-label { font-family: var(--font-mono); font-size: 0.64rem; letter-spacing: 0.12em; text-transform: uppercase; color: var(--muted); margin-bottom: 12px; }
.engine-signal {
  display: flex; align-items: center; gap: 10px;
  border: 1px solid var(--line); border-radius: 10px;
  background: var(--white); padding: 10px 14px; margin-bottom: 10px;
  font-size: 0.9rem; font-weight: 500;
}
.engine-signal .dot { width: 8px; height: 8px; border-radius: 2px; background: var(--blue); flex-shrink: 0; }
.engine-arrow { display: flex; align-items: center; justify-content: center; color: rgba(0,65,149,0.5); }
.engine-mid { background: var(--ink); color: var(--white); border-radius: 16px; padding: 20px; }
.engine-mid .mono-label { color: rgba(255,255,255,0.5); }
.engine-step { display: flex; gap: 10px; border: 1px solid rgba(255,255,255,0.1); background: rgba(255,255,255,0.05); border-radius: 10px; padding: 10px 12px; margin-top: 8px; }
.engine-step .n { font-family: var(--font-mono); font-size: 0.7rem; font-weight: 600; color: var(--gold); }
.engine-step .t { display: block; font-size: 0.9rem; font-weight: 500; }
.engine-step .d { display: block; font-size: 0.76rem; color: rgba(255,255,255,0.5); }
.engine-outcome { border: 1px solid rgba(0,65,149,0.25); background: var(--blue-soft); border-radius: 14px; padding: 20px; }
.engine-outcome .v { font-size: 2.4rem; font-weight: 600; color: var(--blue); letter-spacing: -0.02em; }
.engine-outcome .t { margin-top: 6px; font-size: 0.9rem; font-weight: 500; }
.engine-foot { margin-top: 12px; display: flex; align-items: center; gap: 8px; font-size: 0.82rem; color: var(--muted); }

/* Stat scoreboard (dark) */
.scoreboard { border-radius: var(--radius-lg); background: var(--ink); color: var(--white); overflow: hidden; }
.scoreboard-head { display: flex; align-items: center; gap: 10px; padding: 16px 28px; border-bottom: 1px solid rgba(255,255,255,0.1); }
.scoreboard-head .dot { width: 6px; height: 6px; border-radius: 2px; background: var(--gold); }
.scoreboard-head .label { font-family: var(--font-mono); font-size: 0.72rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.55); }
.scoreboard-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
@media (max-width: 900px) { .scoreboard-grid { grid-template-columns: repeat(2, 1fr); } }
.scoreboard-cell { padding: 36px 30px; border-right: 1px solid rgba(255,255,255,0.1); border-bottom: 1px solid rgba(255,255,255,0.1); }
.scoreboard-cell .v { font-size: clamp(1.8rem, 1.4rem + 1.4vw, 2.6rem); font-weight: 600; letter-spacing: -0.02em; color: var(--gold); }
.scoreboard-cell p { margin-top: 14px; font-size: 0.9rem; line-height: 1.5; color: rgba(255,255,255,0.55); }

/* Numbered steps */
.steps { display: grid; grid-template-columns: repeat(4, 1fr); gap: 28px; position: relative; }
@media (max-width: 900px) { .steps { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .steps { grid-template-columns: 1fr; } }
.step-num {
  width: 56px; height: 56px; border-radius: 14px;
  border: 1px solid var(--line); background: var(--white);
  display: flex; align-items: center; justify-content: center;
  font-family: var(--font-mono); font-size: 1.1rem; font-weight: 600; color: var(--blue);
}
.step h3 { margin-top: 22px; font-size: 1.2rem; }
.step p { margin-top: 8px; font-size: 0.92rem; color: var(--muted); line-height: 1.5; }

/* 90-day clock (dark) */
.clock-wrap { position: relative; }
.clock-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 36px; margin-top: 56px; }
@media (max-width: 800px) { .clock-grid { grid-template-columns: 1fr; } }
.clock-item { text-align: center; }
.clock-badge {
  width: 64px; height: 64px; border-radius: 50%;
  display: flex; align-items: center; justify-content: center;
  margin: 0 auto;
  font-family: var(--font-mono); font-size: 1.15rem; font-weight: 600;
  border: 1px solid var(--gold);
}
.clock-badge.fill { background: var(--gold); color: var(--ink); }
.clock-badge.dim { background: var(--ink-900); color: rgba(255,255,255,0.8); border-color: rgba(255,255,255,0.2); }
.clock-item .day-label { margin-top: 12px; font-family: var(--font-mono); font-size: 0.64rem; letter-spacing: 0.16em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.clock-item h3 { margin-top: 10px; font-size: 1.25rem; color: var(--white); }
.clock-item p { margin-top: 8px; font-size: 0.92rem; color: rgba(255,255,255,0.55); line-height: 1.5; max-width: 280px; margin-left: auto; margin-right: auto; }

/* FAQ */
.faq-layout { display: grid; grid-template-columns: 0.8fr 1.2fr; gap: 56px; }
@media (max-width: 800px) { .faq-layout { grid-template-columns: 1fr; } }
.faq-list { border-top: 1px solid var(--line); }
.faq-item { border-bottom: 1px solid var(--line); }
.faq-item summary {
  list-style: none;
  display: flex; justify-content: space-between; align-items: center; gap: 16px;
  padding: 20px 0;
  font-size: 1.05rem; font-weight: 500;
  cursor: pointer;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary .plus { flex-shrink: 0; color: var(--muted); transition: transform 0.2s ease; }
.faq-item[open] summary .plus { transform: rotate(45deg); color: var(--blue); }
.faq-item p { padding-bottom: 22px; padding-right: 32px; font-size: 0.96rem; line-height: 1.6; color: var(--muted); }

/* Final CTA */
.final-cta {
  position: relative;
  border-radius: var(--radius-lg);
  background: var(--ink);
  color: var(--white);
  padding: 80px 24px;
  text-align: center;
  overflow: hidden;
}
.final-cta::before {
  content: "";
  position: absolute; top: -100px; right: -100px;
  width: 320px; height: 320px; border-radius: 50%;
  background: radial-gradient(circle, var(--gold), transparent 70%);
  opacity: 0.3; filter: blur(50px);
}
.final-cta .inner { position: relative; max-width: 640px; margin: 0 auto; }
.final-cta h2 { font-size: clamp(1.9rem, 1.4rem + 2vw, 3rem); line-height: 1.1; color: var(--white); margin-top: 16px; }
.final-cta p { margin-top: 18px; font-size: 1.05rem; color: rgba(255,255,255,0.7); line-height: 1.6; }
.final-cta .hero-ctas { margin-top: 32px; }

/* Footer */
footer.site-footer { background: var(--ink); color: var(--white); }
.footer-top { display: grid; grid-template-columns: 1fr 3fr; gap: 56px; padding: 72px 0 56px; }
@media (max-width: 900px) { .footer-top { grid-template-columns: 1fr; } }
.footer-brand img { height: 32px; }
.footer-brand p { margin-top: 18px; font-size: 0.95rem; line-height: 1.5; color: rgba(255,255,255,0.6); }
.footer-brand .btn { margin-top: 24px; }
.footer-cols { display: grid; grid-template-columns: repeat(4, 1fr); gap: 32px; }
@media (max-width: 700px) { .footer-cols { grid-template-columns: repeat(2, 1fr); } }
.footer-col h4 { font-size: 0.78rem; font-weight: 500; letter-spacing: 0.14em; text-transform: uppercase; color: rgba(255,255,255,0.4); }
.footer-col ul { margin-top: 16px; display: flex; flex-direction: column; gap: 10px; }
.footer-col a { font-size: 0.9rem; color: rgba(255,255,255,0.7); }
.footer-col a:hover { color: var(--white); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,0.1);
  padding: 24px 0;
  display: flex; flex-wrap: wrap; gap: 12px; justify-content: space-between; align-items: center;
  font-size: 0.85rem; color: rgba(255,255,255,0.5);
}
.footer-bottom .right { display: flex; gap: 24px; align-items: center; }
.footer-bottom a:hover { color: var(--white); }

@media (max-width: 700px) {
  .footer-top { gap: 36px; }
}
