/*
Theme Name: Apollo AI
Theme URI: https://apollogroupai.com/
Author: Apollo AI Services LLC
Author URI: https://apollogroupai.com/
Description: Custom theme for Apollo AI Services LLC — AI-powered SEO & digital marketing agency site. Warm-ivory, gold-accented editorial design built on vanilla CSS3, converted from the agency's original static build.
Version: 1.0.0
License: Proprietary
Text Domain: apollo-ai
*/

/* =========================================================
   Apollo AI Services LLC — Design System & Stylesheet
   Vanilla CSS3. No framework. Organized by layer:
   1. Tokens  2. Reset  3. Type  4. Layout  5. Components
   6. Sections  7. Utilities  8. Motion  9. Responsive
   ========================================================= */

/* ---------- 1. Design tokens ---------- */
:root {
  /* Color: warm ivory paper + ink + burnished gold (Apollo/sun) */
  --paper:        #FBF9F3;
  --paper-alt:     #F3EEE1;
  --paper-raised:  #FFFFFF;
  --ink:          #17160F;
  --ink-soft:      #55523F;
  --ink-faint:     #8C876E;
  --line:         #E5DFCB;
  --line-strong:   #D8CFAF;

  --gold:         #B27E1F;
  --gold-deep:     #8C6116;
  --gold-soft:     #F1E3BC;
  --gold-wash:     #FBF3DE;
  --sun:          #E7B24E;

  --ink-rgb: 23, 22, 15;

  --shadow-sm: 0 1px 2px rgba(23,22,15,.06);
  --shadow-md: 0 8px 24px -8px rgba(23,22,15,.16);
  --shadow-lg: 0 24px 60px -20px rgba(23,22,15,.28);

  --radius-sm: 6px;
  --radius-md: 12px;
  --radius-lg: 20px;
  --radius-pill: 999px;

  --font-display: 'Fraunces', 'Iowan Old Style', Georgia, 'Times New Roman', serif;
  --font-body: 'Manrope', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;

  --container: 1200px;
  --container-narrow: 800px;
  --gutter: clamp(1.25rem, 4vw, 2.5rem);

  --space-1: .25rem;
  --space-2: .5rem;
  --space-3: .75rem;
  --space-4: 1rem;
  --space-5: 1.5rem;
  --space-6: 2rem;
  --space-7: 3rem;
  --space-8: 4rem;
  --space-9: 6rem;

  --nav-h: 84px;
  --ease: cubic-bezier(.22,1,.36,1);
}

/* ---------- 2. Reset ---------- */
*, *::before, *::after { box-sizing: border-box; }
html { scroll-behavior: smooth; -webkit-text-size-adjust: 100%; }
body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  font-family: var(--font-body);
  font-size: 16px;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul, ol { margin: 0; padding: 0; list-style: none; }
h1, h2, h3, h4, p, figure { margin: 0; }
address { font-style: normal; }
input, textarea, select { font: inherit; color: inherit; }
:focus-visible { outline: 2px solid var(--gold); outline-offset: 3px; }

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { animation-duration: .01ms !important; animation-iteration-count: 1 !important; transition-duration: .01ms !important; }
}

/* ---------- 3. Typography ---------- */
h1, h2, h3, .font-display { font-family: var(--font-display); font-weight: 600; letter-spacing: -.01em; color: var(--ink); }
h1 { font-size: clamp(2.4rem, 4.4vw, 4rem); line-height: 1.06; }
h2 { font-size: clamp(1.9rem, 3vw, 2.75rem); line-height: 1.12; }
h3 { font-size: 1.25rem; line-height: 1.3; }
.italic { font-style: italic; font-weight: 500; }

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .5rem;
  font-family: var(--font-body);
  font-size: .72rem;
  font-weight: 700;
  letter-spacing: .16em;
  text-transform: uppercase;
  color: var(--gold-deep);
}
.eyebrow::before {
  content: '';
  width: 16px; height: 1px;
  background: var(--gold);
}

.lede { font-size: 1.125rem; color: var(--ink-soft); max-width: 42ch; line-height: 1.65; }
.text-soft { color: var(--ink-soft); }
.text-faint { color: var(--ink-faint); }

/* ---------- 4. Layout ---------- */
.wrap { max-width: var(--container); margin: 0 auto; padding-inline: var(--gutter); }
.wrap-narrow { max-width: var(--container-narrow); margin: 0 auto; padding-inline: var(--gutter); }
.section { padding-block: var(--space-9); }
.section-alt { background: var(--paper-alt); }
.section-head { max-width: 640px; }
.section-head.center { max-width: 640px; margin-inline: auto; text-align: center; }

.grid { display: grid; gap: var(--space-6); }
.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-6 { grid-template-columns: repeat(6, 1fr); }

.stack { display: flex; flex-direction: column; }
.row { display: flex; align-items: center; }
.gap-2 { gap: var(--space-2); }
.gap-3 { gap: var(--space-3); }
.gap-4 { gap: var(--space-4); }
.gap-5 { gap: var(--space-5); }
.wrap-buttons { display: flex; flex-wrap: wrap; gap: var(--space-4); align-items: center; }

/* ---------- 5. Components ---------- */

/* Buttons */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  padding: .9rem 1.6rem;
  font-size: .92rem;
  font-weight: 700;
  border-radius: var(--radius-sm);
  border: 1px solid transparent;
  transition: transform .25s var(--ease), box-shadow .25s var(--ease), background-color .25s var(--ease), color .25s var(--ease), border-color .25s var(--ease);
  white-space: nowrap;
}
.btn-primary {
  background: var(--ink);
  color: var(--paper);
}
.btn-primary:hover { background: var(--gold-deep); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-ghost {
  background: transparent;
  color: var(--ink);
  border-color: var(--line-strong);
}
.btn-ghost:hover { border-color: var(--ink); background: var(--paper-raised); }
.btn-gold {
  background: var(--gold);
  color: var(--ink);
}
.btn-gold:hover { background: var(--sun); transform: translateY(-2px); box-shadow: var(--shadow-md); }
.btn-sm { padding: .65rem 1.2rem; font-size: .82rem; }
.btn-block { width: 100%; }
.btn[disabled] { opacity: .5; cursor: not-allowed; }

/* Logo */
.brand { display: inline-flex; align-items: center; gap: .65rem; }
.brand-mark { width: 38px; height: 38px; flex-shrink: 0; }
.brand-word {
  font-family: var(--font-display);
  font-size: 1.25rem;
  font-weight: 600;
  letter-spacing: -.01em;
  color: var(--ink);
  line-height: 1;
}
.brand-word em { font-style: italic; color: var(--gold-deep); }
.brand-sub {
  display: block;
  font-family: var(--font-body);
  font-size: .58rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--ink-faint);
  margin-top: 1px;
}

/* Header / Nav */
.site-header {
  position: fixed;
  inset-block-start: 0;
  inset-inline: 0;
  z-index: 100;
  height: var(--nav-h);
  display: flex;
  align-items: center;
  background: rgba(251, 249, 243, 0);
  border-bottom: 1px solid transparent;
  transition: background-color .35s var(--ease), border-color .35s var(--ease), height .35s var(--ease), box-shadow .35s var(--ease);
}
.site-header.is-scrolled {
  background: rgba(251, 249, 243, .92);
  backdrop-filter: blur(10px);
  border-color: var(--line);
  height: 68px;
  box-shadow: var(--shadow-sm);
}
.site-header .wrap { display: flex; align-items: center; justify-content: space-between; width: 100%; }
.nav-links { display: flex; align-items: center; gap: var(--space-6); }
.nav-links a {
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink-soft);
  position: relative;
  padding-block: .3rem;
  transition: color .2s var(--ease);
}
.nav-links a::after {
  content: '';
  position: absolute;
  left: 0; right: 100%; bottom: -2px;
  height: 1.5px;
  background: var(--gold);
  transition: right .3s var(--ease);
}
.nav-links a:hover, .nav-links a[aria-current="page"] { color: var(--ink); }
.nav-links a:hover::after, .nav-links a[aria-current="page"]::after { right: 0; }
.nav-actions { display: flex; align-items: center; gap: var(--space-5); }
.nav-phone { font-size: .85rem; font-weight: 600; color: var(--ink-soft); }
.nav-phone:hover { color: var(--ink); }

.menu-toggle {
  display: none;
  width: 40px; height: 40px;
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-sm);
  align-items: center;
  justify-content: center;
}
.menu-toggle svg { width: 18px; height: 18px; }

.mobile-menu {
  position: fixed;
  inset: var(--nav-h) 0 0 0;
  z-index: 99;
  background: var(--paper);
  padding: var(--space-6) var(--gutter);
  transform: translateY(-8px);
  opacity: 0;
  pointer-events: none;
  transition: opacity .25s var(--ease), transform .25s var(--ease);
  overflow-y: auto;
}
.mobile-menu.is-open { opacity: 1; transform: translateY(0); pointer-events: auto; }
.mobile-menu a {
  display: block;
  padding: var(--space-4) 0;
  border-bottom: 1px solid var(--line);
  font-size: 1.1rem;
  font-weight: 600;
  font-family: var(--font-display);
}
.mobile-menu .btn { margin-top: var(--space-5); }

/* Cards */
.card {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--space-6);
  transition: transform .3s var(--ease), box-shadow .3s var(--ease), border-color .3s var(--ease);
}
.card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); border-color: var(--line-strong); }
.card-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.5rem; height: 2.5rem;
  border-radius: var(--radius-sm);
  background: var(--gold-wash);
  color: var(--gold-deep);
  font-family: var(--font-display);
  font-weight: 600;
  font-size: 1rem;
}
.card h3 { margin-top: var(--space-5); }
.card p { margin-top: var(--space-3); font-size: .93rem; color: var(--ink-soft); }
.card ul { margin-top: var(--space-4); display: flex; flex-direction: column; gap: .55rem; }
.card ul li { font-size: .88rem; color: var(--ink-soft); padding-left: 1.3rem; position: relative; }
.card ul li::before {
  content: '';
  position: absolute; left: 0; top: .5em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--gold);
}

/* Icon badge */
.icon-badge {
  width: 3rem; height: 3rem;
  border-radius: var(--radius-sm);
  display: inline-flex; align-items: center; justify-content: center;
  background: var(--gold-wash);
  color: var(--gold-deep);
}
.icon-badge svg { width: 22px; height: 22px; }

/* Stat rows */
.stat dt { font-family: var(--font-display); font-size: 2rem; font-weight: 600; color: var(--ink); }
.stat dd { margin-top: .35rem; font-size: .78rem; color: var(--ink-faint); }

/* Pricing */
.price-card {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  display: flex;
  flex-direction: column;
  position: relative;
  transition: transform .3s var(--ease), box-shadow .3s var(--ease);
}
.price-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-md); }
.price-card--featured {
  background: var(--ink);
  color: var(--paper);
  border-color: var(--ink);
}
.price-card--featured .text-soft { color: rgba(251,249,243,.65); }
.price-card--featured h3 { color: var(--paper); }
.price-badge {
  position: absolute; top: -13px; left: 50%; transform: translateX(-50%);
  background: var(--gold);
  color: var(--ink);
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .06em;
  text-transform: uppercase;
  padding: .4rem .9rem;
  border-radius: var(--radius-pill);
}
.price-amount { display: flex; align-items: baseline; gap: .3rem; margin-top: var(--space-5); }
.price-amount .num { font-family: var(--font-display); font-size: 2.5rem; font-weight: 600; }
.price-card ul { margin-top: var(--space-5); display: flex; flex-direction: column; gap: .65rem; flex: 1; }
.price-card ul li { font-size: .86rem; padding-left: 1.4rem; position: relative; }
.price-card ul li::before { content: '✓'; position: absolute; left: 0; color: var(--gold); font-weight: 700; }
.price-card--featured ul li::before { color: var(--sun); }

/* Testimonials */
.quote-card {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--space-6);
}
.quote-card p.quote { font-family: var(--font-display); font-size: 1.15rem; font-style: italic; line-height: 1.5; color: var(--ink); }
.quote-attrib { display: flex; align-items: center; gap: .75rem; margin-top: var(--space-5); }
.quote-avatar {
  width: 2.75rem; height: 2.75rem; border-radius: 50%;
  background: var(--gold-wash);
  color: var(--gold-deep);
  display: flex; align-items: center; justify-content: center;
  font-weight: 700; font-size: .85rem;
}
.quote-name { font-size: .88rem; font-weight: 700; }
.quote-role { font-size: .78rem; color: var(--ink-faint); }

/* FAQ */
.faq-item { border-bottom: 1px solid var(--line); }
.faq-q {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: var(--space-4);
  padding: var(--space-5) 0;
  text-align: left;
  font-family: var(--font-display);
  font-size: 1.05rem;
  font-weight: 500;
}
.faq-q .plus { flex-shrink: 0; width: 1.4rem; height: 1.4rem; position: relative; }
.faq-q .plus::before, .faq-q .plus::after {
  content: ''; position: absolute; background: var(--ink);
  transition: transform .3s var(--ease), opacity .3s var(--ease);
}
.faq-q .plus::before { left: 0; top: 50%; width: 100%; height: 1.5px; transform: translateY(-50%); }
.faq-q .plus::after { top: 0; left: 50%; height: 100%; width: 1.5px; transform: translateX(-50%); }
.faq-item.is-open .plus::after { transform: translateX(-50%) rotate(90deg); opacity: 0; }
.faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s var(--ease);
}
.faq-item.is-open .faq-a { max-height: 400px; }
.faq-a p { padding-bottom: var(--space-5); font-size: .93rem; color: var(--ink-soft); max-width: 62ch; }

/* Forms */
.field { display: flex; flex-direction: column; gap: .45rem; }
.field label { font-size: .8rem; font-weight: 700; color: var(--ink-soft); }
.field input, .field textarea, .field select {
  padding: .85rem 1rem;
  border-radius: var(--radius-sm);
  border: 1px solid var(--line-strong);
  background: var(--paper-raised);
  font-size: .92rem;
  transition: border-color .2s var(--ease), box-shadow .2s var(--ease);
}
.field input:focus, .field textarea:focus, .field select:focus {
  outline: none;
  border-color: var(--gold);
  box-shadow: 0 0 0 3px var(--gold-wash);
}
.field textarea { resize: vertical; min-height: 120px; }
.field-hint { font-size: .74rem; color: var(--ink-faint); }
.form-note { font-size: .78rem; color: var(--ink-faint); }
.form-status { font-size: .85rem; font-weight: 600; padding: .75rem 1rem; border-radius: var(--radius-sm); }
.form-status.is-success { background: var(--gold-wash); color: var(--gold-deep); }
.form-status.is-hidden { display: none; }

/* Sunburst motif */
.sunburst { position: absolute; pointer-events: none; }
.sunburst svg { animation: spin 90s linear infinite; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Reveal-on-scroll */
.reveal { opacity: 0; transform: translateY(18px); transition: opacity .7s var(--ease), transform .7s var(--ease); }
.reveal.is-visible { opacity: 1; transform: translateY(0); }

/* ---------- 6. Sections ---------- */

/* Hero */
.hero {
  position: relative;
  overflow: hidden;
  padding-top: calc(var(--nav-h) + var(--space-8));
  padding-bottom: var(--space-9);
}
.hero-grid { display: grid; grid-template-columns: 1.05fr .95fr; gap: var(--space-8); align-items: center; }
.hero h1 { margin-top: var(--space-5); }
.hero .lede { margin-top: var(--space-5); font-size: 1.2rem; }
.hero-stats { margin-top: var(--space-7); display: grid; grid-template-columns: repeat(4, auto); gap: var(--space-6); }

.hero-panel {
  background: var(--paper-raised);
  border: 1px solid var(--line);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-lg);
  position: relative;
  z-index: 1;
}
.hero-panel-head { display: flex; align-items: center; justify-content: space-between; }
.hero-panel-head .tag { font-size: .72rem; font-weight: 700; padding: .3rem .7rem; border-radius: var(--radius-pill); background: var(--gold-wash); color: var(--gold-deep); }
.metric-grid { margin-top: var(--space-5); display: grid; grid-template-columns: 1fr 1fr; gap: var(--space-5); }
.metric { display: flex; align-items: center; gap: var(--space-4); }
.ring {
  --pct: 50; --ring-color: var(--gold);
  width: 64px; height: 64px; border-radius: 50%;
  display: grid; place-items: center;
  background: conic-gradient(var(--ring-color) calc(var(--pct)*1%), var(--paper-alt) 0);
}
.ring-inner { width: 50px; height: 50px; border-radius: 50%; background: var(--paper-raised); display: grid; place-items: center; font-weight: 700; font-size: .9rem; }
.metric-label { font-size: .78rem; font-weight: 700; }
.metric-sub { font-size: .72rem; color: var(--ink-faint); }
.hero-panel-foot { margin-top: var(--space-5); padding-top: var(--space-5); border-top: 1px solid var(--line); display: flex; justify-content: space-between; align-items: center; font-size: .74rem; color: var(--ink-faint); }

/* Capability strip */
.strip { border-top: 1px solid var(--line); border-bottom: 1px solid var(--line); }
.strip-inner { display: grid; grid-template-columns: repeat(4, 1fr); }
.strip-item {
  display: flex; align-items: center; gap: var(--space-3);
  padding: var(--space-5) var(--space-4);
  border-left: 1px solid var(--line);
}
.strip-item:first-child { border-left: none; }
.strip-item span { font-size: .82rem; font-weight: 700; }

/* Process */
.process-list { counter-reset: step; }
.process-item {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: var(--space-5);
  padding-block: var(--space-6);
  border-top: 1px solid var(--line);
}
.process-item:last-child { border-bottom: 1px solid var(--line); }
.process-index { font-family: var(--font-display); font-size: 2.75rem; font-weight: 600; color: var(--line-strong); line-height: 1; }

/* Final CTA */
.cta-band {
  background: var(--ink);
  color: var(--paper);
  border-radius: var(--radius-lg);
  padding: var(--space-8) var(--space-6);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-band h2 { color: var(--paper); }
.cta-band .lede { color: rgba(251,249,243,.68); margin-inline: auto; }

/* Footer */
.site-footer { border-top: 1px solid var(--line); background: var(--paper-alt); }
.footer-grid { padding-block: var(--space-8); display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: var(--space-7); }
.footer-col h4 { font-size: .78rem; font-weight: 700; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-faint); }
.footer-col ul { margin-top: var(--space-4); display: flex; flex-direction: column; gap: .65rem; }
.footer-col a, .footer-col button { font-size: .88rem; color: var(--ink-soft); }
.footer-col a:hover, .footer-col button:hover { color: var(--ink); }
.footer-brand p { margin-top: var(--space-4); font-size: .88rem; color: var(--ink-soft); }
.footer-bottom { border-top: 1px solid var(--line); padding-block: var(--space-5); display: flex; flex-wrap: wrap; gap: var(--space-3); justify-content: space-between; font-size: .76rem; color: var(--ink-faint); }

/* Cookie banner + modal */
#cookie-consent-banner {
  position: fixed; bottom: 0; inset-inline: 0; z-index: 200;
  padding: var(--space-5);
  transform: translateY(120%);
  transition: transform .5s var(--ease);
}
#cookie-consent-banner.is-visible { transform: translateY(0); }
.cookie-panel {
  max-width: 960px; margin-inline: auto;
  background: var(--paper-raised);
  border: 1px solid var(--line-strong);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-lg);
  display: flex; flex-wrap: wrap; align-items: center; gap: var(--space-5);
}
.cookie-panel p { flex: 1; min-width: 240px; font-size: .86rem; color: var(--ink-soft); }
.cookie-panel a { color: var(--gold-deep); text-decoration: underline; }
.cookie-actions { display: flex; flex-wrap: wrap; gap: var(--space-3); }

#cookie-preferences-modal {
  position: fixed; inset: 0; z-index: 210;
  display: flex; align-items: center; justify-content: center;
  padding: var(--space-5);
  background: rgba(23,22,15,.55);
  opacity: 0; pointer-events: none;
  transition: opacity .25s var(--ease);
}
#cookie-preferences-modal.is-open { opacity: 1; pointer-events: auto; }
.modal-panel {
  max-width: 480px; width: 100%;
  background: var(--paper-raised);
  border-radius: var(--radius-lg);
  padding: var(--space-6);
  box-shadow: var(--shadow-lg);
}
.modal-head { display: flex; align-items: center; justify-content: space-between; }
.modal-close { width: 2rem; height: 2rem; display: flex; align-items: center; justify-content: center; border-radius: 50%; }
.modal-close:hover { background: var(--paper-alt); }
.consent-row { display: flex; align-items: flex-start; justify-content: space-between; gap: var(--space-4); padding-block: var(--space-4); border-top: 1px solid var(--line); }
.consent-row:first-of-type { border-top: none; }
.consent-row-title { font-size: .9rem; font-weight: 700; }
.consent-row-desc { margin-top: .25rem; font-size: .78rem; color: var(--ink-faint); }

.toggle {
  width: 42px; height: 24px; border-radius: var(--radius-pill);
  position: relative; flex-shrink: 0;
  background: var(--line-strong);
  transition: background-color .2s var(--ease);
}
.toggle::after {
  content: ''; position: absolute; top: 3px; left: 3px;
  width: 18px; height: 18px; border-radius: 50%;
  background: #fff; box-shadow: var(--shadow-sm);
  transition: transform .2s var(--ease);
}
.toggle[data-on="true"] { background: var(--gold); }
.toggle[data-on="true"]::after { transform: translateX(18px); }
.toggle[data-disabled="true"] { background: var(--ink-faint); cursor: not-allowed; opacity: .6; }

/* ---------- 7. Utilities ---------- */
.mt-2 { margin-top: var(--space-2); } .mt-3 { margin-top: var(--space-3); } .mt-4 { margin-top: var(--space-4); }
.mt-5 { margin-top: var(--space-5); } .mt-6 { margin-top: var(--space-6); } .mt-7 { margin-top: var(--space-7); } .mt-8 { margin-top: var(--space-8); }
.center { text-align: center; }
.sr-only { position: absolute; width: 1px; height: 1px; padding: 0; margin: -1px; overflow: hidden; clip: rect(0,0,0,0); white-space: nowrap; border: 0; }
.hidden { display: none !important; }
.hairline { border-top: 1px solid var(--line); }
.pill-tag { display: inline-block; font-size: .72rem; font-weight: 700; padding: .35rem .8rem; border-radius: var(--radius-pill); background: var(--gold-wash); color: var(--gold-deep); }

/* ---------- 8. Legal page prose ---------- */
.prose { max-width: 720px; }
.prose h1 { margin-top: var(--space-5); }
.prose .meta { margin-top: var(--space-3); font-size: .85rem; color: var(--ink-faint); }
.prose section { margin-top: var(--space-7); }
.prose h2 { font-size: 1.3rem; font-weight: 600; }
.prose p, .prose li { font-size: .95rem; color: var(--ink-soft); line-height: 1.75; }
.prose p { margin-top: var(--space-3); }
.prose ul { margin-top: var(--space-3); display: flex; flex-direction: column; gap: .6rem; }
.prose li { padding-left: 1.3rem; position: relative; }
.prose li::before { content: ''; position: absolute; left: 0; top: .65em; width: 5px; height: 5px; border-radius: 50%; background: var(--gold); }
.prose a { color: var(--gold-deep); text-decoration: underline; }
.prose strong { color: var(--ink); }
.contact-block {
  margin-top: var(--space-4);
  border: 1px solid var(--line);
  border-radius: var(--radius-md);
  padding: var(--space-5);
  font-size: .9rem;
  color: var(--ink-soft);
}
.contact-block p { margin-top: .3rem; }
.contact-block .company { font-weight: 700; color: var(--ink); }

/* ---------- 9. Responsive ---------- */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .hero-grid { grid-template-columns: 1fr; }
  .hero-panel { max-width: 480px; }
  .strip-inner { grid-template-columns: repeat(2, 1fr); }
  .strip-item:nth-child(3) { border-left: none; }
}

@media (max-width: 860px) {
  .nav-links, .nav-actions .nav-phone { display: none; }
  .menu-toggle { display: inline-flex; }
  .hero-stats { grid-template-columns: repeat(2, auto); row-gap: var(--space-5); }
}

@media (max-width: 640px) {
  .grid-2, .grid-3, .grid-4 { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: var(--space-6); }
  .process-item { grid-template-columns: 1fr; gap: var(--space-2); }
  .price-card--featured { order: -1; }
  .section { padding-block: var(--space-8); }
  .strip-inner { grid-template-columns: 1fr; }
  .strip-item { border-left: none; border-top: 1px solid var(--line); }
  .strip-item:first-child { border-top: none; }
}
