/* ============================================================
   Inevitable Media Co. — Site Stylesheet
   From Invisible to Inevitable.
   Palette: Deep Authority navy / Gravitas Gold / Parchment
   Type: Playfair Display (display) + Inter (body), matching the
   live sales page & webinar funnel. Georgia is the logo wordmark.
   ============================================================ */

:root {
  --primary: #0F1E35;
  --primary-soft: #1A2B47;
  --primary-deep: #07111F;
  --accent: #B89B5E;
  --accent-light: #D4B97A;
  --accent-quiet: rgba(184, 155, 94, 0.12);
  --cream: #FAF7F1;
  --cream-dark: #F0EBE0;
  --dark: #1A1A1A;
  --muted: #5A5A5A;
  --rule: rgba(15, 30, 53, 0.12);
  --rule-light: rgba(255, 255, 255, 0.18);
  --font-heading: 'Playfair Display', Georgia, 'Times New Roman', serif;
  --font-body: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --maxw: 1200px;
  --readw: 820px;
}

* { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; }
body {
  font-family: var(--font-body);
  font-size: 18px;
  line-height: 1.7;
  color: var(--dark);
  background: var(--cream);
  font-weight: 400;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
img { max-width: 100%; display: block; }
a { color: var(--primary); }

/* ---------- Typography ---------- */
h1, h2, h3, h4 {
  font-family: var(--font-heading);
  font-weight: 500;
  letter-spacing: -0.01em;
  line-height: 1.18;
  color: var(--primary);
}
h1 { font-size: clamp(36px, 5.5vw, 64px); margin-bottom: 28px; }
h2 { font-size: clamp(28px, 3.6vw, 42px); margin-bottom: 28px; }
h3 { font-size: clamp(21px, 2.4vw, 27px); margin-bottom: 14px; }
p { margin-bottom: 22px; font-size: 18px; line-height: 1.7; }
p.lead { font-size: 22px; line-height: 1.55; color: var(--dark); font-weight: 400; }
em { font-style: italic; }
strong { font-weight: 600; color: var(--primary); }

.eyebrow {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 24px;
}

/* ---------- Nav ---------- */
.nav {
  position: sticky;
  top: 0;
  z-index: 100;
  background: var(--primary);
  border-bottom: 1px solid var(--rule-light);
}
.nav-inner {
  max-width: var(--maxw);
  margin: 0 auto;
  padding: 14px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}
.nav-brand { text-decoration: none; display: block; line-height: 0; }
.nav-brand svg { height: 66px; width: auto; display: block; }
.nav-links {
  display: flex;
  align-items: center;
  gap: 30px;
  list-style: none;
  margin-left: auto;
}
.nav-links a {
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 500;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: rgba(250, 247, 241, 0.82);
  text-decoration: none;
  transition: color 0.2s ease;
  padding: 6px 0;
  border-bottom: 1px solid transparent;
}
.nav-links a:hover { color: var(--cream); }
.nav-links a.is-active { color: var(--accent-light); border-bottom-color: var(--accent); }
.nav-links a.nav-cta {
  background: var(--accent);
  color: var(--primary);
  padding: 15px 36px;
  margin-left: 8px;
  font-family: var(--font-body);
  font-size: 12.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  line-height: 1;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  transition: background 0.2s ease, transform 0.2s ease;
  white-space: nowrap;
}
.nav-links a.nav-cta:hover { background: var(--accent-light); color: var(--primary); transform: translateY(-1px); }
.nav-toggle { display: none; background: none; border: none; cursor: pointer; padding: 8px; }
.nav-toggle span { display: block; width: 24px; height: 2px; background: var(--cream); margin: 5px 0; transition: 0.2s; }

/* ---------- Buttons ---------- */
.btn {
  display: inline-block;
  font-family: var(--font-body);
  font-size: 14px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  text-decoration: none;
  border-radius: 2px;
  padding: 18px 38px;
  transition: background 0.2s ease, color 0.2s ease, transform 0.2s ease, border-color 0.2s ease;
  cursor: pointer;
  border: 1px solid transparent;
}
.btn-primary { background: var(--accent); color: var(--primary); border-color: var(--accent); }
.btn-primary:hover { background: var(--accent-light); border-color: var(--accent-light); transform: translateY(-1px); }
.btn-ghost { background: transparent; color: var(--cream); border-color: rgba(250, 247, 241, 0.45); }
.btn-ghost:hover { border-color: var(--accent); color: var(--accent-light); transform: translateY(-1px); }
/* Ghost on light surfaces */
.on-light .btn-ghost, .btn-ghost--dark { color: var(--primary); border-color: var(--rule); }
.on-light .btn-ghost:hover, .btn-ghost--dark:hover { border-color: var(--accent); color: var(--accent); }
.btn-row { display: flex; flex-wrap: wrap; gap: 16px; align-items: center; }
.btn-note { font-size: 14px; color: rgba(250, 247, 241, 0.7); font-style: italic; margin-top: 20px; max-width: 560px; }
.on-light .btn-note { color: var(--muted); }

/* ---------- Sections ---------- */
.section { padding: 96px 32px; }
.section-inner { max-width: var(--readw); margin: 0 auto; }
.section--wide .section-inner { max-width: 1080px; }
.section--dark { background: var(--primary); color: var(--cream); }
.section--dark h1, .section--dark h2, .section--dark h3 { color: var(--cream); }
.section--dark .eyebrow { color: var(--accent-light); }
.section--dark p, .section--dark p.lead { color: rgba(250, 247, 241, 0.9); }
.section--dark strong { color: var(--accent-light); }
.section--cream { background: var(--cream); }
.section--white { background: #FFFFFF; }
.section--cream-dark { background: var(--cream-dark); }

/* ---------- Hero ---------- */
.hero {
  background: var(--primary);
  color: var(--cream);
  padding: 82px 32px 68px;
  position: relative;
  overflow: hidden;
}
.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(circle at 18% 0%, rgba(184, 155, 94, 0.1), transparent 52%);
  pointer-events: none;
}
.hero-inner { max-width: 880px; margin: 0 auto; position: relative; }
.hero--center { text-align: center; }
.hero--center .hero-inner { max-width: 820px; }
.hero--center .btn-row { justify-content: center; }
.hero-prehead {
  font-family: var(--font-body);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.26em;
  text-transform: uppercase;
  color: var(--accent-light);
  margin-bottom: 22px;
}
.hero h1 { color: var(--cream); max-width: 880px; font-size: clamp(32px, 4.6vw, 54px); margin-bottom: 22px; }
.hero--center h1 { margin-left: auto; margin-right: auto; }
.hero-tagline {
  font-family: var(--font-heading);
  font-style: italic;
  font-size: clamp(18px, 2.2vw, 24px);
  color: var(--accent-light);
  margin-bottom: 26px;
  opacity: 0.9;
}
.hero-opener { max-width: 880px; margin: 26px 0 40px; }
.hero--center .hero-opener { margin-left: auto; margin-right: auto; }
.hero-opener p { font-size: 19px; line-height: 1.65; color: rgba(250, 247, 241, 0.85); font-weight: 300; margin-bottom: 16px; }
.hero-opener p:last-child { margin-bottom: 0; }
.hero-credential {
  font-size: 15px;
  color: var(--accent-light);
  margin: 56px auto 0;
  padding-top: 32px;
  border-top: 1px solid var(--rule-light);
  max-width: 880px;
  font-weight: 500;
}
.hero-scroll-cue {
  display: flex;
  justify-content: center;
  margin-top: 40px;
  animation: hero-scroll-bounce 2.2s ease-in-out infinite;
}
.hero--center .hero-scroll-cue { justify-content: center; }
@keyframes hero-scroll-bounce {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(8px); }
}
.hero--center .hero-credential { margin-left: auto; margin-right: auto; }

/* ---------- Page header (interior pages) ---------- */
.page-head { background: var(--primary); color: var(--cream); padding: 96px 32px 32px; text-align: center; position: relative; overflow: hidden; }
.page-head::before { content: ""; position: absolute; inset: 0; background: radial-gradient(circle at 50% 0%, rgba(184,155,94,0.09), transparent 55%); pointer-events: none; }
.page-head-inner { max-width: 780px; margin: 0 auto; position: relative; }
.page-head h1 { color: var(--cream); }
.page-head p { color: rgba(250, 247, 241, 0.85); font-size: 20px; max-width: 640px; margin: 0 auto; }
.page-head strong { color: var(--accent-light); }
/* Standing rule: the gap below the main header block (pre-header +
   headline + sub-headline) is 32px page-head bottom + 12px next-section
   top = 44px total, regardless of what section/color follows. */
.page-head + .section { padding-top: 12px; }

/* ---------- Pullquote ---------- */
.pullquote {
  border-left: 3px solid var(--accent);
  padding: 8px 0 8px 28px;
  margin: 36px 0;
  font-family: var(--font-heading);
  font-style: italic;
  font-size: 22px;
  line-height: 1.5;
  color: var(--primary);
}
.section--dark .pullquote { color: var(--cream); }
.pullquote-attr {
  display: block;
  font-family: var(--font-body);
  font-style: normal;
  font-size: 14px;
  color: var(--muted);
  margin-top: 10px;
  letter-spacing: 0.02em;
}
.section--dark .pullquote-attr { color: rgba(250, 247, 241, 0.6); }

/* ---------- Big quote band ---------- */
.quote-section { background: var(--primary); color: var(--cream); padding: 100px 32px 84px; text-align: center; position: relative; }
.quote-section::before, .quote-section::after { content: ""; position: absolute; left: 50%; transform: translateX(-50%); width: 60px; height: 1px; background: var(--accent); }
.quote-section::before { top: 56px; }
.quote-section::after { bottom: 46px; }
.quote-big { font-family: var(--font-heading); font-style: italic; font-size: clamp(26px, 4vw, 52px); line-height: 1.28; color: var(--cream); max-width: 880px; margin: 0 auto 34px; }
.quote-attr-big { font-family: var(--font-body); font-style: italic; font-size: 17px; color: var(--accent-light); max-width: 640px; margin: 0 auto 14px; }
.quote-footnote { font-size: 13px; color: rgba(250, 247, 241, 0.5); max-width: 480px; margin: 0 auto; }

/* ---------- Feature grid (Home) ---------- */
.feature-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; margin-top: 52px; }
.feature-grid--4 { grid-template-columns: repeat(4, 1fr); }
.feature-card { background: #FFFFFF; border: 1px solid var(--rule); border-radius: 4px; padding: 34px 30px; }
.section--dark .feature-card { background: var(--primary-soft); border-color: rgba(255,255,255,0.08); }
.feature-num { font-family: var(--font-heading); font-style: italic; font-size: 20px; color: var(--accent); margin-bottom: 14px; }
.feature-card h3 { margin-bottom: 10px; }
.section--dark .feature-card h3 { color: var(--cream); }
.feature-card p { font-size: 16px; line-height: 1.6; margin-bottom: 0; color: var(--muted); }
.section--dark .feature-card p { color: rgba(250, 247, 241, 0.72); }

/* ---------- Cost list ---------- */
.cost-item { padding: 22px 0; border-bottom: 1px solid var(--rule); display: grid; grid-template-columns: 130px 1fr; gap: 24px; align-items: baseline; }
.cost-item:last-child { border-bottom: none; }
.cost-label { font-family: var(--font-body); font-weight: 700; color: var(--accent); font-size: 11px; letter-spacing: 0.2em; text-transform: uppercase; padding-top: 3px; }
.cost-text { font-size: 17px; line-height: 1.6; color: var(--dark); }

/* ---------- CEO examples ---------- */
.ceo-example { padding: 26px 0; border-bottom: 1px solid var(--rule); font-size: 17px; line-height: 1.68; color: var(--dark); }
.ceo-example:last-child { border-bottom: none; }
.ceo-example strong { color: var(--primary); }

/* ---------- Process Arc / SVG wrap ---------- */
.arc-svg-wrap { margin: 48px 0 8px; padding: 0 8px; overflow: visible; }
.arc-svg-wrap svg { width: 100%; max-width: 800px; display: block; margin: 0 auto; overflow: visible; }

/* ---------- Suite table ---------- */
.suite-table { width: 100%; border-collapse: collapse; margin: 36px 0; border-top: 1px solid var(--rule); }
.suite-table tr { border-bottom: 1px solid var(--rule); }
.suite-table td { padding: 22px 0; vertical-align: top; font-size: 16px; line-height: 1.55; }
.suite-num { font-family: var(--font-heading); font-size: 18px; color: var(--accent); width: 52px; padding-right: 16px; }
.suite-asset { font-family: var(--font-body); font-weight: 600; color: var(--primary); width: 36%; padding-right: 24px; }
.suite-desc { color: var(--dark); }

/* ---------- Stat row (skills page) ---------- */
.stat-row { display: flex; margin-top: 40px; border-radius: 4px; overflow: hidden; background: var(--primary-soft); }
.stat-item { flex: 1; text-align: center; padding: 30px 16px; border-right: 1px solid rgba(255,255,255,0.1); }
.stat-item:last-child { border-right: none; }
.stat-num { font-family: var(--font-heading); font-size: 34px; color: var(--accent-light); }
.stat-lbl { font-family: var(--font-body); font-size: 11px; letter-spacing: 0.14em; color: rgba(250,247,241,0.65); text-transform: uppercase; margin-top: 6px; }
.stat-footnote { text-align: center; font-size: 14px; color: rgba(250,247,241,0.7); margin-top: 18px; font-style: italic; }

/* ---------- Skill family grid (light background) ---------- */
.skill-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 32px; margin-top: 44px; }
.skill-cat { border-left: 2px solid var(--accent); padding: 4px 0 4px 18px; margin-bottom: 20px; }
.skill-cat h3 { font-size: 17px; color: var(--primary); font-weight: 500; display: flex; justify-content: space-between; align-items: baseline; gap: 10px; margin-bottom: 6px; }
.skill-cat .count { font-family: var(--font-body); font-size: 12px; color: var(--accent); letter-spacing: 0.05em; white-space: nowrap; font-weight: 600; }
.skill-cat p { font-size: 15px; line-height: 1.55; color: var(--muted); margin-bottom: 0; }

/* ---------- Dividends ---------- */
.dividends-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; margin-top: 48px; align-items: center; }
.dividends-flywheel { display: flex; justify-content: center; }
.dividend-item { padding: 18px 0; border-bottom: 1px solid rgba(250, 247, 241, 0.1); }
.dividend-item:last-child { border-bottom: none; }
.dividend-name { font-family: var(--font-heading); font-size: 17px; color: var(--accent-light); margin-bottom: 5px; }
.dividend-stat { font-size: 14px; line-height: 1.6; color: rgba(250, 247, 241, 0.72); margin-bottom: 0; }
.dividends-compound { margin-top: 48px; padding: 24px 28px; background: rgba(184, 155, 94, 0.1); border-left: 3px solid var(--accent); font-family: var(--font-heading); font-style: italic; font-size: 18px; line-height: 1.55; color: var(--cream); }

/* ---------- Founders / bios ---------- */
.founder { margin-bottom: 76px; }
.founder:last-child { margin-bottom: 0; }
.founder-name { font-family: var(--font-heading); font-size: 32px; font-weight: 500; color: var(--primary); margin-bottom: 8px; }
.founder-role { font-family: var(--font-body); font-size: 13px; font-weight: 600; letter-spacing: 0.18em; text-transform: uppercase; color: var(--accent); margin-bottom: 24px; }
.founder-bio { font-size: 17px; line-height: 1.7; color: var(--dark); }
.partnership-close { text-align: center; max-width: 680px; margin: 60px auto 0; padding-top: 50px; border-top: 1px solid var(--rule); font-family: var(--font-heading); font-style: italic; font-size: 22px; line-height: 1.5; color: var(--primary); }
.partnership-close strong { font-style: normal; font-weight: 600; }

/* ---------- Pipeline ---------- */
.pipeline-phase { display: grid; grid-template-columns: 200px 1fr; gap: 32px; padding: 28px 0; border-bottom: 1px solid var(--rule); align-items: baseline; }
.pipeline-phase:last-child { border-bottom: none; }
.pipeline-days { font-family: var(--font-heading); font-style: italic; font-size: 18px; color: var(--accent); }
.pipeline-content { font-size: 16px; line-height: 1.65; }
.pipeline-title { font-family: var(--font-body); font-weight: 600; color: var(--primary); margin-bottom: 6px; font-size: 17px; }
.pipeline-note { margin-top: 32px; padding: 18px 24px; background: rgba(15, 30, 53, 0.05); border-left: 3px solid var(--accent); font-size: 15px; line-height: 1.6; color: var(--dark); }

/* ---------- Fit lists ---------- */
.fit-section { margin-bottom: 48px; }
.fit-heading { font-family: var(--font-body); font-size: 14px; font-weight: 600; letter-spacing: 0.14em; text-transform: uppercase; color: var(--primary); margin-bottom: 24px; }
.fit-heading.fit-not { color: var(--muted); }
.fit-list { list-style: none; padding: 0; }
.fit-list li { padding: 12px 0 12px 36px; position: relative; font-size: 17px; line-height: 1.55; border-bottom: 1px solid var(--rule); }
.fit-list li:last-child { border-bottom: none; }
.fit-list li::before { content: ""; position: absolute; left: 0; top: 18px; width: 16px; height: 16px; border-radius: 50%; background: var(--accent); }
.fit-list.fit-not-list li::before { background: transparent; border: 1px solid var(--muted); }

/* ---------- Callout notes ---------- */
.founding-note { margin: 36px 0; padding: 28px 32px; background: var(--accent-quiet); border-left: 3px solid var(--accent); font-size: 17px; line-height: 1.65; color: var(--dark); }
.guarantee-note { margin: 24px 0 36px; padding: 20px 28px; background: rgba(15, 30, 53, 0.04); border: 1px solid var(--rule); font-size: 15px; line-height: 1.65; color: var(--muted); font-style: italic; }

/* ---------- Lead magnet band ---------- */
.leadmagnet { background: var(--cream-dark); }
.leadmagnet-grid { display: grid; grid-template-columns: 0.85fr 1.15fr; gap: 56px; align-items: center; }
.leadmagnet-cover { display: flex; justify-content: center; }
.leadmagnet-cover .book { width: 100%; max-width: 300px; aspect-ratio: 3 / 4; background: linear-gradient(150deg, var(--primary) 0%, var(--primary-soft) 100%); border-radius: 4px 8px 8px 4px; box-shadow: 0 24px 60px rgba(15,30,53,0.32), inset 8px 0 0 rgba(0,0,0,0.22); display: flex; flex-direction: column; align-items: center; justify-content: center; padding: 40px 30px; text-align: center; position: relative; }
.book-rings { margin-bottom: 26px; }
.book-title { font-family: var(--font-heading); font-size: 26px; color: var(--cream); line-height: 1.2; margin-bottom: 12px; }
.book-sub { font-family: var(--font-body); font-size: 10px; letter-spacing: 0.24em; text-transform: uppercase; color: var(--accent-light); }
.book-tm { position: absolute; bottom: 24px; font-family: var(--font-heading); font-style: italic; font-size: 13px; color: rgba(250,247,241,0.6); }
.leadmagnet-form { max-width: 460px; }
.form-field { margin-bottom: 14px; }
.form-field input { width: 100%; padding: 15px 18px; font-family: var(--font-body); font-size: 16px; color: var(--primary); background: #FFFFFF; border: 1px solid var(--rule); border-radius: 2px; }
.form-field input:focus { outline: none; border-color: var(--accent); }
.form-fine { font-size: 13px; color: var(--muted); margin-top: 12px; }

/* ---------- Contact ---------- */
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; }
.contact-panel { background: #FFFFFF; border: 1px solid var(--rule); border-radius: 4px; padding: 40px 36px; }
.contact-panel h3 { margin-bottom: 14px; }
.phone-cta-frame { font-family: var(--font-heading); font-style: italic; font-size: 17px; line-height: 1.55; color: var(--muted); margin-bottom: 22px; }
.phone-cta-number { font-family: var(--font-heading); font-size: clamp(26px, 3.5vw, 34px); margin-bottom: 10px; }
.phone-cta-number a { color: var(--primary); text-decoration: none; border-bottom: 2px solid var(--accent); padding-bottom: 4px; }
.phone-cta-number a:hover { color: var(--accent); }
.phone-cta-label { font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: 0.22em; text-transform: uppercase; color: var(--accent); }
.calendar-embed { width: 100%; min-height: 620px; border: 0; }

/* ---------- Legal pages ---------- */
.legal { max-width: 800px; margin: 0 auto; padding: 80px 32px 96px; }
.legal h1 { font-size: clamp(32px, 4.4vw, 46px); }
.legal .updated { font-size: 14px; color: var(--muted); letter-spacing: 0.04em; margin-bottom: 40px; text-transform: uppercase; }
.legal h2 { font-size: 24px; margin: 44px 0 16px; }
.legal h3 { font-size: 19px; margin: 28px 0 10px; }
.legal p, .legal li { font-size: 16px; line-height: 1.72; color: #33383F; }
.legal ul { margin: 0 0 22px 22px; }
.legal li { margin-bottom: 8px; }
.legal a { color: var(--primary); text-decoration: underline; text-decoration-color: var(--accent); }

/* ============================================================
   SUPER FOOTER
   ============================================================ */
.superfooter { background: var(--primary-deep); color: rgba(250, 247, 241, 0.62); }
.superfooter-cta { text-align: center; padding: 72px 32px 64px; border-bottom: 1px solid rgba(250, 247, 241, 0.1); }
.superfooter-cta .eyebrow { color: var(--accent-light); }
.superfooter-cta h2 { color: var(--cream); max-width: 640px; margin: 0 auto 30px; }
.superfooter-cta .btn-row { justify-content: center; }
.superfooter-main { max-width: var(--maxw); margin: 0 auto; padding: 64px 32px 40px; display: grid; grid-template-columns: 1.4fr 1fr 1fr 1fr; gap: 40px; }
.footer-brand-block { max-width: 300px; }
.footer-logo-mark { margin-bottom: 22px; }
.footer-logo-mark svg { height: 100px; width: auto; opacity: 0.9; }
.footer-tagline { font-family: var(--font-heading); font-style: italic; font-size: 17px; color: var(--accent-light); margin-bottom: 16px; }
.footer-brand-block p { font-size: 14px; line-height: 1.65; color: rgba(250, 247, 241, 0.55); margin-bottom: 0; }
.footer-col h4 { font-family: var(--font-body); font-size: 12px; font-weight: 600; letter-spacing: 0.16em; text-transform: uppercase; color: var(--accent); margin-bottom: 20px; }
.footer-col ul { list-style: none; padding: 0; }
.footer-col li { margin-bottom: 12px; }
.footer-col a { font-size: 15px; color: rgba(250, 247, 241, 0.7); text-decoration: none; transition: color 0.2s ease; }
.footer-col a:hover { color: var(--accent-light); }
.footer-contact-line { font-size: 15px; color: rgba(250, 247, 241, 0.7); margin-bottom: 12px; }
.footer-contact-line a { color: rgba(250, 247, 241, 0.7); text-decoration: none; }
.footer-contact-line a:hover { color: var(--accent-light); }
.superfooter-bottom { border-top: 1px solid rgba(250, 247, 241, 0.1); }
.superfooter-bottom-inner { max-width: var(--maxw); margin: 0 auto; padding: 26px 32px; display: flex; flex-wrap: wrap; align-items: center; justify-content: space-between; gap: 14px; }
.footer-program-line { font-family: var(--font-heading); font-style: italic; font-size: 16px; color: rgba(212, 185, 122, 0.82); }
.footer-legal-links { display: flex; gap: 22px; flex-wrap: wrap; }
.footer-legal-links a { font-size: 13px; color: rgba(250, 247, 241, 0.5); text-decoration: none; }
.footer-legal-links a:hover { color: var(--accent-light); }
.footer-copyright { font-size: 13px; color: rgba(250, 247, 241, 0.4); }

/* ---------- Responsive ---------- */
@media (max-width: 960px) {
  .superfooter-main { grid-template-columns: 1fr 1fr; gap: 36px 24px; }
  .footer-brand-block { grid-column: 1 / -1; max-width: none; }
  .feature-grid { grid-template-columns: 1fr; }
  .dividends-grid, .leadmagnet-grid, .contact-grid { grid-template-columns: 1fr; gap: 40px; }
  .skill-grid { grid-template-columns: 1fr; }
  .stat-row { flex-wrap: wrap; }
  .stat-item { flex: 1 1 50%; border-bottom: 1px solid rgba(255,255,255,0.1); }
}
@media (max-width: 768px) {
  .nav-links { display: none; }
  .nav-links.is-open { display: flex; flex-direction: column; position: absolute; top: 100%; left: 0; right: 0; background: var(--primary); padding: 18px 32px 26px; gap: 14px; border-bottom: 1px solid var(--rule-light); align-items: flex-start; }
  .nav-links.is-open .nav-cta { margin-top: 6px; }
  .nav-toggle { display: block; }
  .nav { position: relative; }
}
@media (max-width: 720px) {
  .section { padding: 72px 24px; }
  .hero { padding: 72px 24px 60px; }
  .page-head { padding: 76px 24px 56px; }
  .quote-section { padding: 72px 24px 60px; }
  .pipeline-phase { grid-template-columns: 1fr; gap: 6px; }
  .cost-item { grid-template-columns: 1fr; gap: 4px; }
  .suite-asset { width: 42%; }
  .superfooter-main { grid-template-columns: 1fr; }
  .superfooter-bottom-inner { flex-direction: column; align-items: flex-start; }
  p.lead { font-size: 19px; }
}
