/* =====================================================================
   MISxL marketing site — styles
   Palette: Deep Blue #1A237E · Bright Blue #0071CE · Solar Gold #EF9F27
            Lunar Pearl #F0F4FF
   Design feel: editorial / magazine, not SaaS-template. Asymmetric,
   typography-led, gold used sparingly as a single horizontal rule.
   ===================================================================== */

* { margin: 0; padding: 0; box-sizing: border-box; }

:root {
  --deep-blue: #1A237E;
  --bright-blue: #0071CE;
  --solar-gold: #EF9F27;
  --pearl: #F0F4FF;
  --pearl-deep: #DDE5FA;
  --ink: #0F172A;
  --ink-soft: #3F4A78;          /* tinted to lean blue, not gray */
  --ink-mute: #8893BD;          /* same — blue-leaning mute */
  --white: #FFFFFF;
  /* Page background is white so the Pearl + Deep-Blue bands have real
     contrast.  Pearl is reserved for the highlight sections. */
  --paper: #FFFFFF;
  --line: rgba(26, 35, 126, 0.16);
  --line-mute: rgba(26, 35, 126, 0.09);
  --container: 1100px;
  --rail: 1240px;
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}
body {
  font-family: 'Inter', -apple-system, 'Segoe UI', Roboto, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}
.serif { font-family: 'Fraunces', 'Georgia', serif; font-weight: 400; }
img { max-width: 100%; height: auto; display: block; }
a { color: var(--deep-blue); text-decoration: none; }
button { font-family: inherit; cursor: pointer; border: none; background: none; }
::selection { background: var(--solar-gold); color: var(--white); }

.wrap   { max-width: var(--container); margin: 0 auto; padding: 0 32px; }
.wrap-w { max-width: var(--rail);      margin: 0 auto; padding: 0 32px; }

/* =====================================================================
   NAV — minimal: logo on left, two text links, single CTA pill
   ===================================================================== */
.nav {
  position: sticky; top: 0; z-index: 100;
  background: rgba(250, 251, 254, 0.85);
  backdrop-filter: saturate(160%) blur(14px);
  -webkit-backdrop-filter: saturate(160%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color 0.2s;
}
.nav.scrolled { border-bottom-color: var(--line-mute); }
.nav-row {
  max-width: var(--rail); margin: 0 auto; padding: 14px 32px;
  display: flex; align-items: center; justify-content: space-between;
  gap: 28px;
}
.nav-logo img { height: 80px; width: auto; }
.nav-mid { display: flex; gap: 6px; flex: 1; justify-content: flex-end; padding-right: 12px; }
.nav-mid a {
  color: var(--ink-soft); font-size: 13.5px; font-weight: 500;
  padding: 8px 14px; border-radius: 6px; letter-spacing: 0.1px;
}
.nav-mid a:hover { color: var(--deep-blue); }
.nav-cta {
  background: var(--deep-blue); color: var(--white);
  padding: 10px 20px; border-radius: 999px;
  font-size: 13px; font-weight: 600; letter-spacing: 0.2px;
  transition: background 0.15s;
  white-space: nowrap;
}
.nav-cta:hover { background: #2A3496; color: var(--white); }
.nav-toggle { display: none; font-size: 22px; padding: 4px; color: var(--ink); }

/* =====================================================================
   HERO — editorial, massive serif headline, asymmetric grid
   ===================================================================== */
.hero {
  padding: 100px 0 80px;
  background:
    radial-gradient(ellipse at 85% 25%, rgba(239,159,39,0.18) 0%, transparent 55%),
    radial-gradient(ellipse at 15% 75%, rgba(0,113,206,0.18) 0%, transparent 55%),
    var(--paper);
  position: relative;
}
.hero::after {
  content: ''; position: absolute; left: 0; right: 0; bottom: 0;
  height: 4px;
  background: linear-gradient(90deg,
    var(--bright-blue) 0%, var(--bright-blue) 60%,
    var(--solar-gold) 60%, var(--solar-gold) 100%);
}
.hero-grid {
  display: grid; grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.55fr);
  gap: 48px; align-items: center;
}
.hero-eyebrow {
  display: inline-flex; align-items: center; gap: 10px;
  font-size: 11.5px; font-weight: 600; letter-spacing: 1.6px;
  text-transform: uppercase; color: var(--ink-soft);
}
.hero-eyebrow::before {
  content: ''; width: 36px; height: 3px; background: var(--solar-gold);
}
.hero h1 {
  margin-top: 24px;
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: 78px; line-height: 0.96; letter-spacing: -0.04em;
  color: var(--deep-blue);
}
.hero h1 .gold { color: var(--solar-gold); font-style: italic; font-weight: 500; }
.hero .lede {
  margin-top: 32px;
  font-size: 19px; line-height: 1.55; color: var(--ink-soft);
  max-width: 460px;
}
.hero .lede b { color: var(--ink); font-weight: 600; }
.hero-actions {
  margin-top: 36px;
  display: flex; align-items: center; gap: 24px;
}
.btn-primary {
  display: inline-flex; align-items: center; gap: 10px;
  background: var(--deep-blue); color: var(--white);
  padding: 14px 24px; border-radius: 999px;
  font-size: 14.5px; font-weight: 600; letter-spacing: 0.2px;
  transition: transform 0.15s, background 0.15s, box-shadow 0.15s;
}
.btn-primary:hover {
  background: #2A3496; color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 12px 24px rgba(26, 35, 126, 0.25);
}
.btn-primary .arrow { transition: transform 0.2s; }
.btn-primary:hover .arrow { transform: translateX(3px); }
.btn-text {
  color: var(--ink-soft); font-size: 13.5px; font-weight: 500;
  border-bottom: 1px solid var(--ink-mute);
  padding-bottom: 2px;
}
.btn-text:hover { color: var(--deep-blue); border-bottom-color: var(--deep-blue); }

/* Hero card — a stylised report.  Top "header band" is deep blue with a
   gold corner stamp so the brand palette is the focal point, not the text. */
.hero-shot {
  background: var(--white);
  border-radius: 10px;
  padding: 8px;
  box-shadow: 0 30px 60px rgba(26, 35, 126, 0.22);
  border: 1px solid rgba(26, 35, 126, 0.08);
  position: relative;
  overflow: hidden;
}
.hero-shot img {
  display: block;
  width: 100%;
  height: auto;
  border-radius: 6px;
}

/* ── Sliding carousel — JS-driven, 4 screenshots + duplicate, 3s auto ── */
.carousel {
  position: relative;
  width: 100%;
  aspect-ratio: 1918 / 869;
  border-radius: 6px;
  overflow: hidden;
  background: #f5f7ff;
}
.carousel .track {
  display: flex;
  width: 500%;                          /* 5 slides side-by-side */
  height: 100%;
  transform: translateX(0);             /* JS overrides this on tick / click */
  transition: transform 0.6s cubic-bezier(.45, .05, .55, .95);
  will-change: transform;
}
.carousel .track img {
  width: 20%;                           /* 1/5 of track width = 100% of viewport */
  height: 100%;
  object-fit: cover;
  flex-shrink: 0;
  display: block;
}

/* Indicator dots — now real <button> elements, clickable, with a clear
   active state.  JS toggles the .active class. */
.carousel-dots {
  position: absolute;
  bottom: 16px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  gap: 10px;
  z-index: 2;
}
.carousel-dots button {
  width: 11px;
  height: 11px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.7);
  border: 1.5px solid rgba(26, 35, 126, 0.5);
  padding: 0;
  cursor: pointer;
  transition: background 0.2s, border-color 0.2s, transform 0.2s;
  font-size: 0;                         /* swallow any text content */
}
.carousel-dots button:hover {
  background: var(--white);
  border-color: var(--deep-blue);
  transform: scale(1.15);
}
.carousel-dots button.active {
  background: var(--solar-gold);
  border-color: var(--solar-gold);
  transform: scale(1.25);
}
.carousel-dots button:focus-visible {
  outline: 2px solid var(--solar-gold);
  outline-offset: 2px;
}

@media (prefers-reduced-motion: reduce) {
  .carousel .track { transition: none; transform: translateX(0); }
  .carousel-dots button { transition: none; }
}

/* =====================================================================
   PULL — single big statement, magazine style
   ===================================================================== */
.pull {
  padding: 120px 0;
  text-align: center;
  background: var(--pearl);
}
.pull-text {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: 48px; line-height: 1.15; letter-spacing: -0.02em;
  color: var(--deep-blue);
  max-width: 900px; margin: 0 auto;
}
.pull-text .em { color: var(--solar-gold); font-style: italic; }
.pull-text .arrow { color: var(--solar-gold); font-weight: 300; }
.pull-rule {
  width: 64px; height: 2px; background: var(--solar-gold);
  margin: 36px auto 0;
}
.pull-attr {
  margin-top: 20px;
  font-size: 12.5px; font-weight: 600; letter-spacing: 1.6px;
  text-transform: uppercase; color: var(--ink-soft);
}

/* =====================================================================
   NUMBERS — three statements, each with a huge number
   ===================================================================== */
.numbers { padding: 0; background: var(--white); }
.numbers .row {
  display: grid; grid-template-columns: minmax(0, 0.85fr) minmax(0, 1fr);
  gap: 60px; align-items: center;
  padding: 80px 0;
  border-bottom: 1px solid var(--line);
}
.numbers .row.dark {
  background: var(--deep-blue); color: var(--white);
  border-bottom: 0;
  padding-left: 32px; padding-right: 32px;
  margin: 0 -32px;
}
.numbers .row.dark .big { color: var(--white); }
.numbers .row.dark .big .unit { color: var(--solar-gold); }
.numbers .row.dark .body h3 { color: var(--white); }
.numbers .row.dark .body p { color: rgba(255,255,255,0.78); }
.numbers .row.dark .body p b { color: var(--solar-gold); }
.numbers .big {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: 144px; line-height: 0.85; letter-spacing: -0.06em;
  color: var(--deep-blue);
}
.numbers .big .unit { color: var(--solar-gold); font-style: italic; font-size: 64px; vertical-align: super; margin-left: 6px; }
.numbers .big.arrow-style {
  font-size: 92px;
}
.numbers .body h3 {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: 28px; color: var(--deep-blue); letter-spacing: -0.01em;
  margin-bottom: 16px;
}
.numbers .body p {
  font-size: 16px; line-height: 1.7; color: var(--ink-soft);
  max-width: 480px;
}
.numbers .body p b { color: var(--deep-blue); font-weight: 600; }

/* =====================================================================
   WHAT'S INSIDE — vertical list (not a grid of cards), magazine style
   ===================================================================== */
.inside { padding: 110px 0 80px; background: var(--white); }
.inside-head { max-width: 720px; margin-bottom: 60px; }
.inside-head .kicker {
  font-size: 11.5px; font-weight: 600; letter-spacing: 1.6px;
  text-transform: uppercase; color: var(--ink-soft);
  margin-bottom: 16px; display: flex; align-items: center; gap: 12px;
}
.inside-head .kicker::before {
  content: ''; width: 36px; height: 3px; background: var(--solar-gold);
}
.inside-head h2 {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: 56px; line-height: 1.05; letter-spacing: -0.025em;
  color: var(--deep-blue);
}
.inside-head h2 .em { color: var(--solar-gold); font-style: italic; }

.module-row {
  display: grid;
  grid-template-columns: minmax(0, 0.32fr) minmax(0, 1.3fr) minmax(0, 0.7fr);
  gap: 36px; align-items: center;
  padding: 28px 0;
  border-top: 1px solid var(--line);
  transition: padding 0.2s;
}
.module-row:last-child { border-bottom: 1px solid var(--line); }
.module-row:hover { padding-left: 14px; }
.module-row .num {
  font-family: 'Fraunces', serif;
  font-size: 22px; color: var(--ink-mute); font-weight: 500;
  letter-spacing: 0.5px;
}
.module-row .meat h3 {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: 28px; color: var(--deep-blue); letter-spacing: -0.01em;
  margin-bottom: 6px;
}
.module-row .meat p {
  font-size: 14.5px; line-height: 1.6; color: var(--ink-soft);
  max-width: 520px;
}
.module-row .vis {
  display: flex; justify-content: flex-end;
  font-size: 11.5px; color: var(--ink-soft);
  text-align: right;
}
.vis-bars {
  display: flex; align-items: end; gap: 4px; height: 36px;
}
.vis-bars .bar {
  width: 8px; background: var(--bright-blue); border-radius: 1px;
  opacity: 0.55;
}
.vis-bars .bar.gold { background: var(--solar-gold); opacity: 1; }
.vis-pct {
  font-family: 'Fraunces', serif; font-size: 28px;
  color: var(--deep-blue); letter-spacing: -0.5px;
}
.vis-pct.gold { color: var(--solar-gold); }
.vis-stack {
  display: flex; flex-direction: column; align-items: flex-end; gap: 4px;
}
.vis-stack .l {
  font-size: 11px; font-weight: 600; letter-spacing: 0.6px;
  text-transform: uppercase; color: var(--ink-mute);
}
.vis-stack .v {
  font-family: 'Fraunces', serif; font-size: 26px;
  color: var(--deep-blue); letter-spacing: -0.5px;
}
.vis-tag {
  background: var(--white); padding: 5px 10px;
  border: 1px solid var(--line); border-radius: 999px;
  font-size: 11.5px; font-weight: 600; color: var(--deep-blue);
}

/* =====================================================================
   TESTIMONIAL / PULL QUOTE
   ===================================================================== */
.quote-section {
  padding: 130px 0;
  background: var(--deep-blue); color: var(--white);
  position: relative;
}
.quote-section::before {
  content: '"';
  position: absolute;
  top: 50px; left: 50%;
  transform: translateX(-50%);
  font-family: 'Fraunces', serif; font-style: italic;
  font-size: 160px; line-height: 1;
  color: var(--solar-gold); opacity: 0.5;
}
.quote-body {
  max-width: 820px; margin: 60px auto 0; text-align: center;
}
.quote-body p {
  font-family: 'Fraunces', serif; font-style: italic; font-weight: 400;
  font-size: 32px; line-height: 1.35; letter-spacing: -0.01em;
  color: var(--white);
}
.quote-body p .em { color: var(--solar-gold); font-style: italic; }
.quote-attr {
  margin-top: 36px;
  display: flex; align-items: center; justify-content: center; gap: 18px;
  font-size: 13px; color: rgba(255,255,255,0.7); letter-spacing: 0.4px;
}
.quote-attr .who { color: var(--white); font-weight: 600; }
.quote-attr .role::before { content: '· '; color: var(--solar-gold); }

/* =====================================================================
   FROM TB TO REPORT — horizontal timeline
   ===================================================================== */
.flow { padding: 110px 0; }
.flow-head { max-width: 800px; margin-bottom: 70px; }
.flow-head .kicker {
  font-size: 11.5px; font-weight: 600; letter-spacing: 1.6px;
  text-transform: uppercase; color: var(--ink-soft);
  margin-bottom: 16px; display: flex; align-items: center; gap: 12px;
}
.flow-head .kicker::before {
  content: ''; width: 36px; height: 3px; background: var(--solar-gold);
}
.flow-head h2 {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: 52px; line-height: 1.06; letter-spacing: -0.025em;
  color: var(--deep-blue);
}
.flow-head h2 .em { color: var(--solar-gold); font-style: italic; }
.flow-head p {
  margin-top: 18px; font-size: 16px; color: var(--ink-soft);
  max-width: 600px; line-height: 1.65;
}
.flow-track {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 0;
  position: relative;
  padding: 0 16px;
}
.flow-track::before {
  content: ''; position: absolute;
  top: 35px; left: 16px; right: 16px;
  height: 1px; background: var(--line);
  z-index: 0;
}
.flow-step { text-align: center; position: relative; padding: 0 14px; }
.flow-step .dot {
  width: 14px; height: 14px; border-radius: 50%;
  background: var(--solar-gold);
  margin: 0 auto;
  position: relative; z-index: 1;
  border: 3px solid var(--paper);
  box-shadow: 0 0 0 1px var(--solar-gold);
}
.flow-step .dot.blue { background: var(--deep-blue); box-shadow: 0 0 0 1px var(--deep-blue); }
.flow-step .lbl {
  margin-top: 22px;
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: 20px; color: var(--deep-blue); letter-spacing: -0.01em;
}
.flow-step .d {
  margin-top: 6px;
  font-size: 13px; color: var(--ink-soft); line-height: 1.5;
}

/* =====================================================================
   INDUSTRIES — text band
   ===================================================================== */
.industries {
  padding: 80px 0;
  background: var(--deep-blue); color: var(--white);
  position: relative;
}
.industries-grid {
  display: grid; grid-template-columns: minmax(0, 0.4fr) minmax(0, 1fr);
  gap: 40px; align-items: center;
}
.industries-label {
  font-size: 11.5px; font-weight: 600; letter-spacing: 1.6px;
  text-transform: uppercase; color: var(--solar-gold);
  display: flex; align-items: center; gap: 12px;
}
.industries-label::before {
  content: ''; width: 36px; height: 3px; background: var(--solar-gold);
}
.industries-list {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: 24px; line-height: 1.45; color: var(--white);
  letter-spacing: -0.01em;
}
.industries-list span { color: rgba(255,255,255,0.55); }

/* =====================================================================
   FINAL CTA — quiet, confident
   ===================================================================== */
.final {
  padding: 130px 0 110px;
  text-align: center;
  background: var(--pearl);
}
.final h2 {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: 64px; line-height: 1.0; letter-spacing: -0.03em;
  color: var(--deep-blue);
  max-width: 760px; margin: 0 auto;
}
.final h2 .em { color: var(--solar-gold); font-style: italic; }
.final p {
  margin-top: 26px; font-size: 17px; color: var(--ink-soft);
  max-width: 540px; margin-left: auto; margin-right: auto; line-height: 1.65;
}
.final-actions {
  margin-top: 40px;
  display: flex; align-items: center; justify-content: center; gap: 22px;
}

/* =====================================================================
   ALSO FROM LABHYANSH — sister-product band
   ===================================================================== */
.also {
  padding: 60px 0;
  background: var(--pearl);
  border-top: 1px solid var(--line);
}
.also-row {
  display: grid; grid-template-columns: minmax(0, 0.45fr) minmax(0, 1fr);
  gap: 40px; align-items: center;
}
.also-label { display: flex; flex-direction: column; gap: 8px; }
.also-kicker {
  font-size: 11.5px; font-weight: 700; letter-spacing: 1.6px;
  text-transform: uppercase; color: var(--solar-gold);
  display: flex; align-items: center; gap: 12px;
}
.also-kicker::before {
  content: ''; width: 36px; height: 3px; background: var(--solar-gold);
}
.also-sub {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: 20px; line-height: 1.3; color: var(--deep-blue);
  letter-spacing: -0.01em;
}
.sibling-card {
  display: grid; grid-template-columns: auto 1fr;
  gap: 28px; align-items: center;
  background: var(--white);
  padding: 22px 26px;
  border-radius: 4px;
  border-left: 4px solid var(--solar-gold);
  text-decoration: none; color: inherit;
  transition: transform 0.15s, box-shadow 0.15s;
}
.sibling-card:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 32px rgba(26, 35, 126, 0.16);
  color: inherit;
}
.sibling-mark {
  padding-right: 24px; border-right: 1px solid var(--line);
}
.sib-name {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: 30px; letter-spacing: -0.02em;
  color: var(--deep-blue);
}
.sib-name .sib-360 {
  color: var(--solar-gold); font-style: italic; font-weight: 600;
}
.sib-tag {
  font-size: 14px; line-height: 1.55; color: var(--ink-soft);
  margin-bottom: 8px;
}
.sib-link {
  font-size: 13px; font-weight: 600; color: var(--bright-blue);
  letter-spacing: 0.2px;
  display: inline-flex; align-items: center; gap: 6px;
}
.sib-link .arrow { transition: transform 0.2s; }
.sibling-card:hover .sib-link .arrow { transform: translateX(3px); }

@media (max-width: 720px) {
  .also-row { grid-template-columns: 1fr; gap: 24px; }
  .sibling-card { grid-template-columns: 1fr; gap: 16px; }
  .sibling-mark { padding-right: 0; padding-bottom: 14px; border-right: none; border-bottom: 1px solid var(--line); }
}

/* =====================================================================
   LEGAL PAGES (privacy, terms, refund, disclaimer)
   ===================================================================== */
.legal {
  background: var(--white);
  padding: 80px 0 100px;
  min-height: 70vh;
}
.legal-head {
  border-bottom: 1px solid var(--line);
  padding-bottom: 28px; margin-bottom: 40px;
}
.legal-head .kicker {
  font-size: 11.5px; font-weight: 700; letter-spacing: 1.6px;
  text-transform: uppercase; color: var(--solar-gold);
  display: flex; align-items: center; gap: 12px;
  margin-bottom: 16px;
}
.legal-head .kicker::before {
  content: ''; width: 36px; height: 3px; background: var(--solar-gold);
}
.legal-head h1 {
  font-family: 'Fraunces', serif; font-weight: 400;
  font-size: 52px; line-height: 1.06; letter-spacing: -0.03em;
  color: var(--deep-blue);
}
.legal-head .legal-meta {
  margin-top: 16px;
  font-size: 13px; color: var(--ink-soft);
}
.legal-head .legal-meta b { color: var(--deep-blue); font-weight: 600; }

.legal-body { max-width: 760px; }
.legal-body h2 {
  font-family: 'Fraunces', serif; font-weight: 500;
  font-size: 26px; color: var(--deep-blue); letter-spacing: -0.01em;
  margin: 48px 0 14px;
}
.legal-body h2 .n {
  color: var(--solar-gold); font-style: italic;
  margin-right: 8px; font-weight: 500;
}
.legal-body h3 {
  font-size: 16px; font-weight: 700;
  color: var(--deep-blue); margin: 24px 0 10px;
}
.legal-body p {
  font-size: 15px; line-height: 1.75; color: var(--ink);
  margin-bottom: 14px;
}
.legal-body p.lede {
  font-size: 17px; line-height: 1.7; color: var(--ink-soft);
  margin-bottom: 18px;
}
.legal-body ul, .legal-body ol {
  margin: 10px 0 18px 22px;
  font-size: 15px; line-height: 1.75; color: var(--ink);
}
.legal-body li { margin-bottom: 8px; }
.legal-body strong, .legal-body b { color: var(--deep-blue); font-weight: 600; }
.legal-body a { color: var(--bright-blue); border-bottom: 1px solid rgba(0,113,206,0.25); }
.legal-body a:hover { border-bottom-color: var(--bright-blue); }
.legal-body .callout {
  background: var(--pearl); border-left: 4px solid var(--solar-gold);
  padding: 16px 20px; margin: 22px 0; border-radius: 0 4px 4px 0;
  font-size: 14px; line-height: 1.6;
}
.legal-body .callout b { color: var(--deep-blue); }
.legal-body table {
  width: 100%; border-collapse: collapse; margin: 18px 0;
  font-size: 14px;
}
.legal-body table th, .legal-body table td {
  padding: 10px 14px; text-align: left;
  border-bottom: 1px solid var(--line);
}
.legal-body table th {
  background: var(--pearl); color: var(--deep-blue);
  font-weight: 700; font-size: 12px; letter-spacing: 0.4px;
  text-transform: uppercase;
}
.legal-contact {
  margin-top: 60px; padding-top: 28px;
  border-top: 1px solid var(--line);
  font-size: 14px; color: var(--ink-soft); line-height: 1.7;
}
.legal-contact b { color: var(--deep-blue); font-weight: 600; }

@media (max-width: 720px) {
  .legal { padding: 60px 0 80px; }
  .legal-head h1 { font-size: 36px; }
  .legal-body h2 { font-size: 22px; margin-top: 36px; }
  .legal-body p, .legal-body ul, .legal-body ol { font-size: 14.5px; }
}

/* =====================================================================
   FOOTER — minimal, single row
   ===================================================================== */
footer {
  padding: 50px 0;
  background: var(--paper);
  border-top: 1px solid var(--line);
}
.foot-row {
  display: flex; align-items: center; justify-content: space-between;
  flex-wrap: wrap; gap: 24px;
}
.foot-row img { height: 75px; width: auto; opacity: 0.95; }
.foot-row .contact {
  display: flex; gap: 28px; font-size: 13px; color: var(--ink-soft);
}
.foot-row .contact a { color: var(--ink-soft); }
.foot-row .contact a:hover { color: var(--deep-blue); }
.foot-row .copy {
  font-size: 12px; color: var(--ink-mute); letter-spacing: 0.2px;
}
.foot-legal {
  margin-top: 24px; padding-top: 18px;
  border-top: 1px solid var(--line);
  display: flex; justify-content: center;
  flex-wrap: wrap; gap: 8px 0;
  font-size: 12.5px; color: var(--ink-soft);
}
.foot-legal a {
  color: var(--ink-soft); padding: 4px 14px;
  border-right: 1px solid var(--line);
}
.foot-legal a:last-child { border-right: none; }
.foot-legal a:hover { color: var(--deep-blue); }
@media (max-width: 540px) {
  .foot-legal { flex-direction: column; gap: 4px; padding-top: 14px; }
  .foot-legal a { border-right: none; padding: 6px 0; text-align: center; }
}

/* =====================================================================
   RESPONSIVE
   ===================================================================== */
@media (max-width: 980px) {
  .nav-mid { display: none; }
  .nav-toggle { display: inline-flex; }
  .hero { padding: 72px 0 60px; }
  .hero-grid { grid-template-columns: 1fr; gap: 56px; }
  .hero h1 { font-size: 56px; }
  .pull-text { font-size: 34px; }
  .numbers .row { grid-template-columns: 1fr; gap: 24px; padding: 40px 0; }
  .numbers .big { font-size: 96px; }
  .numbers .big.arrow-style { font-size: 56px; }
  .numbers .body h3 { font-size: 22px; }
  .inside-head h2, .flow-head h2 { font-size: 38px; }
  .module-row { grid-template-columns: 32px 1fr; gap: 20px; }
  .module-row .vis { grid-column: 1 / -1; justify-content: flex-start; }
  .module-row:hover { padding-left: 0; }
  .quote-body p { font-size: 22px; }
  .quote-section::before { font-size: 110px; top: 30px; }
  .flow-track { grid-template-columns: 1fr 1fr; gap: 30px 14px; }
  .flow-track::before { display: none; }
  .industries-grid { grid-template-columns: 1fr; gap: 16px; }
  .industries-list { font-size: 18px; }
  .final h2 { font-size: 42px; }
}

@media (max-width: 540px) {
  .nav-logo img { height: 60px; }
  .foot-row img { height: 55px; }
  .hero h1 { font-size: 44px; }
  .pull-text { font-size: 26px; }
  .numbers .big { font-size: 72px; }
  .inside-head h2, .flow-head h2 { font-size: 30px; }
  .module-row .meat h3 { font-size: 22px; }
  .flow-track { grid-template-columns: 1fr; }
  .final h2 { font-size: 32px; }
  .foot-row .contact { flex-direction: column; gap: 8px; }
}

/* Mobile menu */
.mobile-menu {
  position: fixed; inset: 0; background: var(--paper);
  z-index: 200; padding: 80px 32px 40px;
  transform: translateX(100%); transition: transform 0.25s;
  overflow-y: auto;
}
.mobile-menu.open { transform: translateX(0); }
.mobile-menu .close {
  position: absolute; top: 18px; right: 18px;
  font-size: 28px; padding: 8px 12px; color: var(--ink);
}
.mobile-menu a {
  display: block; padding: 16px 0;
  font-size: 18px; font-weight: 500; color: var(--deep-blue);
  border-bottom: 1px solid var(--line);
  font-family: 'Fraunces', serif;
}
.mobile-menu .nav-cta { display: inline-block; margin-top: 28px; }
