:root {
  --bg: #f6f7f9;
  --bg-soft: #eef0f4;
  --surface: #ffffff;
  --surface-strong: #ffffff;
  --border: rgba(11, 31, 58, 0.12);
  --text: #0b1f3a;
  --muted: #5b6778;
  --navy: #0b1f3a;
  --navy-soft: #14304f;
  --primary: #b08d57;
  --primary-strong: #7d6136;
  --primary-soft: #c4a46e;
  --shadow: 0 24px 60px rgba(11, 31, 58, 0.1);
  --radius-lg: 20px;
  --radius-md: 14px;
  --radius-sm: 8px;
  --max-width: 1120px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: "Outfit", "Avenir Next", sans-serif;
  color: var(--text);
  background:
    radial-gradient(ellipse 80% 50% at 0% -10%, rgba(176, 141, 87, 0.12), transparent 55%),
    radial-gradient(ellipse 55% 40% at 100% 0%, rgba(11, 31, 58, 0.05), transparent 50%),
    linear-gradient(180deg, #fafbfc 0%, var(--bg) 42%, #eef0f4 100%);
  line-height: 1.55;
  -webkit-font-smoothing: antialiased;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
  text-decoration: none;
}

button,
input,
textarea {
  font: inherit;
}

.page-shell {
  overflow-x: hidden;
}

.container {
  width: min(calc(100% - 1.5rem), var(--max-width));
  margin: 0 auto;
}

.topbar {
  position: sticky;
  top: 0;
  z-index: 50;
  backdrop-filter: blur(18px);
  background: rgba(246, 247, 249, 0.92);
  border-bottom: 1px solid var(--border);
}

.topbar-inner {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  min-height: 72px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 0.55rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  min-width: 0;
}

.brand-logo {
  width: 1.7rem;
  height: 1.7rem;
  display: block;
  border-radius: 0.36rem;
  flex-shrink: 0;
  box-shadow: 0 1px 2px rgba(11, 31, 58, 0.1);
}

.brand-name {
  color: var(--navy);
  font-size: 1.28rem;
  font-weight: 700;
  letter-spacing: -0.04em;
  line-height: 1;
  padding-top: 0.04em;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin-left: auto;
}

.topnav-links {
  display: none;
  align-items: center;
  gap: 1.15rem;
}

.topnav-links a {
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 500;
  transition: color 160ms ease;
}

.topnav-links a:hover {
  color: var(--navy);
}

.menu-cta {
  display: none;
}

.menu-toggle {
  width: 2.7rem;
  height: 2.7rem;
  border-radius: 8px;
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.7);
  display: inline-grid;
  place-content: center;
  gap: 0.28rem;
  padding: 0;
  cursor: pointer;
}

.menu-toggle span {
  display: block;
  width: 1.1rem;
  height: 2px;
  background: var(--navy);
  border-radius: 999px;
  transition: transform 160ms ease, opacity 160ms ease;
}

.topbar.is-open .menu-toggle span:nth-child(1) {
  transform: translateY(6px) rotate(45deg);
}

.topbar.is-open .menu-toggle span:nth-child(2) {
  opacity: 0;
}

.topbar.is-open .menu-toggle span:nth-child(3) {
  transform: translateY(-6px) rotate(-45deg);
}

.topbar.is-open .topnav-links {
  display: flex;
  position: absolute;
  top: calc(100% + 0.35rem);
  left: 0;
  right: 0;
  flex-direction: column;
  align-items: stretch;
  gap: 0.35rem;
  padding: 0.9rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: rgba(255, 255, 255, 0.98);
  box-shadow: var(--shadow);
}

.topbar.is-open .topnav-links a {
  padding: 0.85rem 0.9rem;
  border-radius: 10px;
  color: var(--text);
}

.topbar.is-open .menu-cta {
  display: inline-flex;
  margin-top: 0.35rem;
}

.lang-switch {
  display: inline-flex;
  align-items: center;
  gap: 0.25rem;
  padding: 0.25rem;
  border: 1px solid var(--border);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.75);
}

.lang-switch a {
  padding: 0.38rem 0.65rem;
  border-radius: 6px;
  color: var(--muted);
  font-weight: 600;
  font-size: 0.82rem;
}

.lang-switch a.active {
  color: #ffffff;
  background: var(--navy);
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  height: 3.15rem;
  min-height: 3.15rem;
  padding: 0 1.35rem;
  border-radius: 6px;
  border: 1px solid transparent;
  font-weight: 700;
  letter-spacing: -0.01em;
  font-size: 0.95rem;
  line-height: 1;
  transition: transform 160ms ease, box-shadow 160ms ease, background 160ms ease, border-color 160ms ease;
  white-space: nowrap;
  cursor: pointer;
}

.button:hover {
  transform: translateY(-1px);
}

.button-primary {
  color: #ffffff;
  background: var(--navy);
  box-shadow: 0 14px 36px rgba(11, 31, 58, 0.22);
}

.button-primary:hover {
  background: var(--navy-soft);
}

.button-secondary {
  color: var(--navy);
  border-color: var(--border);
  background: rgba(255, 255, 255, 0.7);
}

.button-secondary:hover {
  border-color: rgba(11, 31, 58, 0.22);
  background: #ffffff;
}

.hero {
  position: relative;
  padding: 3.25rem 0 1.5rem;
}

.hero-grid {
  display: grid;
  gap: 2rem;
  align-items: center;
}

.hero-copy,
.hero-visual,
.step-card,
.package-card,
.outcome-card,
.faq-item,
.cta-panel,
.footer-card,
.fit-card {
  min-width: 0;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  max-width: 100%;
  color: var(--primary-strong);
  font-size: 0.78rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.hero-copy h1,
.section-head h2,
.cta-panel h2,
.fit-card h2 {
  font-family: "Fraunces", "Iowan Old Style", Georgia, serif;
  font-weight: 600;
  overflow-wrap: break-word;
  color: var(--navy);
}

.hero-copy h1 {
  margin: 0.55rem 0 0.85rem;
  max-width: 11ch;
  font-size: clamp(2.2rem, 7.2vw, 4.15rem);
  line-height: 1.02;
  letter-spacing: -0.035em;
}

.hero-lead {
  max-width: 34rem;
  margin: 0;
  color: var(--muted);
  font-size: clamp(1.05rem, 2.3vw, 1.22rem);
  line-height: 1.45;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.75rem;
  margin: 1.45rem 0 0.7rem;
}

.hero-trust {
  margin: 0 0 1.05rem;
  color: var(--muted);
  font-size: 0.88rem;
}

.guarantee {
  margin: 0;
  padding: 1rem 1.1rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(176, 141, 87, 0.4);
  background:
    linear-gradient(135deg, rgba(176, 141, 87, 0.14), rgba(176, 141, 87, 0.04)),
    #ffffff;
}

.guarantee-label {
  display: inline-block;
  margin-bottom: 0.3rem;
  color: var(--primary-strong);
  font-size: 0.74rem;
  font-weight: 800;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.guarantee p {
  margin: 0;
  color: var(--navy);
  font-size: clamp(0.98rem, 2.2vw, 1.06rem);
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.35;
}

.hero-visual {
  position: relative;
}

.hero-visual::before {
  content: "";
  position: absolute;
  inset: -8% 8% 40% -8%;
  background: radial-gradient(circle, rgba(176, 141, 87, 0.2), transparent 68%);
  filter: blur(28px);
  pointer-events: none;
  animation: glow-pulse 5.5s ease-in-out infinite;
}

.growth-panel {
  position: relative;
  padding: 1.35rem 1.3rem 1.25rem;
  border-radius: var(--radius-lg);
  background:
    radial-gradient(ellipse 80% 55% at 85% 0%, rgba(176, 141, 87, 0.22), transparent 55%),
    linear-gradient(165deg, #14304f 0%, #0b1f3a 72%, #091828 100%);
  border: 1px solid rgba(176, 141, 87, 0.28);
  box-shadow: 0 28px 70px rgba(11, 31, 58, 0.28);
  overflow: hidden;
}

.growth-head {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 1.2rem;
}

.growth-head h3 {
  margin: 0 0 0.3rem;
  font-size: 1.3rem;
  letter-spacing: -0.03em;
  color: #f6f7f9;
}

.growth-head p {
  margin: 0;
  color: rgba(246, 247, 249, 0.68);
  font-size: 0.92rem;
}

.growth-result {
  flex: 0 0 auto;
  padding: 0.65rem 0.8rem;
  border-radius: 10px;
  border: 1px solid rgba(176, 141, 87, 0.45);
  background: rgba(176, 141, 87, 0.16);
}

.growth-result span {
  display: block;
  margin-bottom: 0.15rem;
  color: var(--primary-soft);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}

.growth-result strong {
  font-size: 0.98rem;
  color: #f6f7f9;
}

.growth-chart {
  display: grid;
  grid-template-columns: repeat(6, minmax(0, 1fr));
  gap: 0.65rem;
  align-items: end;
  min-height: 13.5rem;
  padding: 0.35rem 0.15rem 1.85rem;
}

.growth-chart span {
  position: relative;
  display: block;
  height: var(--h);
  border-radius: 14px 14px 4px 4px;
  background: linear-gradient(180deg, #d4b87a 0%, #b08d57 55%, rgba(176, 141, 87, 0.55) 100%);
  transform-origin: bottom;
  animation: bar-rise 900ms cubic-bezier(0.22, 1, 0.36, 1) both;
  box-shadow: 0 8px 20px rgba(0, 0, 0, 0.18);
}

.growth-chart span i {
  position: absolute;
  left: 50%;
  bottom: -1.35rem;
  transform: translateX(-50%);
  font-style: normal;
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  color: rgba(246, 247, 249, 0.55);
}

.growth-chart span:nth-child(1) { animation-delay: 80ms; }
.growth-chart span:nth-child(2) { animation-delay: 150ms; }
.growth-chart span:nth-child(3) { animation-delay: 220ms; }
.growth-chart span:nth-child(4) { animation-delay: 290ms; }
.growth-chart span:nth-child(5) { animation-delay: 360ms; }
.growth-chart span:nth-child(6) { animation-delay: 430ms; }

.growth-caption {
  color: rgba(246, 247, 249, 0.72);
  font-size: 0.9rem;
  border-top: 1px solid rgba(246, 247, 249, 0.12);
  padding-top: 0.85rem;
}

.section {
  padding: 3.75rem 0;
}

.section-tight {
  padding: 0.5rem 0 1.25rem;
}

.section-head {
  max-width: 40rem;
  margin-bottom: 1.75rem;
}

.section-head h2,
.fit-card h2 {
  margin: 0.55rem 0 0.75rem;
  font-size: clamp(1.75rem, 4.8vw, 3rem);
  line-height: 1.08;
  letter-spacing: -0.03em;
}

.section-head p {
  margin: 0;
  color: var(--muted);
  font-size: 1.05rem;
}

.audience-bar {
  display: flex;
  flex-wrap: wrap;
  gap: 0.65rem 1.35rem;
  padding: 1rem 0;
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.92rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.audience-bar span:not(:last-child)::after {
  content: "";
}

.problem-grid,
.steps-grid,
.packages-grid,
.outcome-grid,
.faq-grid,
.footer-grid,
.quotes-grid,
.fit-grid {
  display: grid;
  gap: 1rem;
}

.problem-row {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem 1.15rem;
  padding: 1.25rem 0;
  border-bottom: 1px solid var(--border);
  background: transparent;
}

.problem-row:first-child {
  border-top: 1px solid var(--border);
}

.problem-row h3 {
  margin: 0 0 0.4rem;
  font-size: 1.12rem;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.problem-row p {
  margin: 0;
  color: var(--muted);
}

.problem-tag {
  color: var(--primary-strong);
  font-size: 0.8rem;
  font-weight: 800;
  letter-spacing: 0.06em;
  padding-top: 0.2rem;
}

.step-card,
.package-card,
.outcome-card,
.faq-item,
.cta-panel,
.footer-card,
.quote-card,
.fit-card {
  padding: 1.45rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(11, 31, 58, 0.04);
}

.step-card h3,
.package-card h3,
.outcome-card h3,
.faq-question,
.cta-panel h2,
.footer-card h3,
.fit-card h2 {
  margin: 0 0 0.65rem;
  letter-spacing: -0.03em;
}

.step-card p,
.package-card p,
.outcome-card p,
.faq-answer p,
.cta-panel p,
.footer-card p,
.list {
  margin: 0;
  color: var(--muted);
}

.step-number {
  width: 2.25rem;
  height: 2.25rem;
  margin-bottom: 1rem;
  border-radius: 8px;
  display: grid;
  place-items: center;
  background: rgba(176, 141, 87, 0.12);
  color: var(--primary-strong);
  font-weight: 800;
}

.list {
  padding-left: 1.05rem;
}

.package-card .list {
  max-width: 24ch;
  margin-bottom: 1.35rem;
  margin-left: auto;
  margin-right: auto;
  text-align: left;
}

.list li + li {
  margin-top: 0.5rem;
}

.package-card {
  display: flex;
  flex-direction: column;
  text-align: center;
}

.package-card.featured {
  background:
    linear-gradient(180deg, rgba(176, 141, 87, 0.1), transparent 48%),
    #ffffff;
  border-color: rgba(176, 141, 87, 0.4);
  box-shadow: 0 24px 50px rgba(176, 141, 87, 0.12);
}

.package-tag {
  display: inline-block;
  margin-bottom: 0.75rem;
  color: var(--primary-strong);
  font-size: 0.78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.06em;
}

.package-price {
  display: block;
  margin-bottom: 1rem;
  color: var(--navy);
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.25;
}

.package-cta {
  margin-top: auto;
  width: 100%;
  padding: 0 1.35rem;
  height: 3.15rem;
}

.outcome-metric {
  display: block;
  margin-bottom: 0.55rem;
  font-size: 1.2rem;
  font-weight: 800;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.leadmagnet-card {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
  padding: 1.6rem 1.7rem;
  border-radius: var(--radius-md);
  border: 1px solid rgba(176, 141, 87, 0.4);
  background:
    linear-gradient(135deg, rgba(176, 141, 87, 0.12), rgba(176, 141, 87, 0.03)),
    #ffffff;
}

.leadmagnet-card h3 {
  margin: 0 0 0.45rem;
  font-family: "Fraunces", "Iowan Old Style", Georgia, serif;
  font-weight: 600;
  font-size: 1.35rem;
  letter-spacing: -0.02em;
  color: var(--navy);
}

.leadmagnet-card p {
  margin: 0;
  max-width: 34rem;
  color: var(--muted);
}

.leadmagnet-card .button {
  flex-shrink: 0;
}

.quote-card {
  display: flex;
  flex-direction: column;
  gap: 0.85rem;
}

.quote-metric {
  display: block;
  font-family: "Fraunces", "Iowan Old Style", Georgia, serif;
  font-size: 1.7rem;
  font-weight: 700;
  letter-spacing: -0.03em;
  color: var(--primary-strong);
}

.quote-card blockquote {
  margin: 0;
  color: var(--text);
  font-size: 0.98rem;
  line-height: 1.5;
}

.quote-card figcaption {
  margin-top: auto;
  color: var(--muted);
  font-size: 0.88rem;
  font-weight: 600;
}

.fit-grid {
  gap: 1rem;
}

.fit-card h2 {
  font-size: clamp(1.45rem, 3.5vw, 2rem);
}

.fit-yes {
  border-color: rgba(176, 141, 87, 0.35);
  background:
    linear-gradient(180deg, rgba(176, 141, 87, 0.1), transparent 42%),
    #ffffff;
}

.fit-no {
  background: var(--bg-soft);
}

.fit-list {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--muted);
}

.fit-list li + li {
  margin-top: 0.65rem;
}

.call-grid {
  display: grid;
  gap: 1rem;
}

.call-step {
  padding: 1.35rem 1.4rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(11, 31, 58, 0.04);
}

.call-num {
  display: inline-grid;
  place-items: center;
  width: 2rem;
  height: 2rem;
  margin-bottom: 0.85rem;
  border-radius: 8px;
  background: rgba(176, 141, 87, 0.14);
  color: var(--primary-strong);
  font-size: 0.85rem;
  font-weight: 800;
}

.call-step h3 {
  margin: 0 0 0.45rem;
  color: var(--navy);
  letter-spacing: -0.02em;
}

.call-step p {
  margin: 0;
  color: var(--muted);
}

.founder-line {
  display: flex;
  align-items: center;
  gap: 0.65rem;
  margin: 1.1rem 0 0;
}

.founder-dot {
  width: 0.65rem;
  height: 0.65rem;
  border-radius: 50%;
  background: var(--primary);
  box-shadow: 0 0 0 4px rgba(176, 141, 87, 0.18);
  flex-shrink: 0;
}

.founder-line p {
  margin: 0;
  color: rgba(246, 247, 249, 0.78);
  font-size: 0.92rem;
  font-weight: 600;
}

.faq-question {
  margin: 0 0 0.7rem;
  color: var(--navy);
  font-size: 1.05rem;
  font-weight: 700;
  letter-spacing: -0.02em;
  line-height: 1.3;
}

.faq-answer p {
  margin: 0;
}

.cta-panel {
  position: relative;
  overflow: hidden;
  color: #f6f7f9;
  background:
    radial-gradient(circle at top right, rgba(176, 141, 87, 0.28), transparent 36%),
    linear-gradient(180deg, var(--navy-soft) 0%, var(--navy) 100%);
  border-color: transparent;
  box-shadow: 0 28px 70px rgba(11, 31, 58, 0.22);
}

.cta-panel h2,
.cta-panel .eyebrow {
  color: #f6f7f9;
}

.cta-panel .eyebrow {
  color: var(--primary-soft);
}

.cta-panel p {
  color: rgba(246, 247, 249, 0.76);
}

.cta-panel .section-head {
  margin-bottom: 0;
}

.cta-panel .hero-actions {
  margin-top: 1.4rem;
}

.cta-panel .guarantee {
  margin-top: 1.15rem;
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(176, 141, 87, 0.45);
}

.cta-panel .guarantee p {
  color: #f6f7f9;
}

.cta-panel .guarantee-label {
  color: var(--primary-soft);
}

.cta-panel .button-primary {
  color: var(--navy);
  background: #f6f7f9;
  box-shadow: 0 14px 36px rgba(0, 0, 0, 0.22);
}

.cta-panel .button-primary:hover {
  background: #ffffff;
}

.cta-panel .button-secondary {
  color: #f6f7f9;
  border-color: rgba(246, 247, 249, 0.28);
  background: rgba(255, 255, 255, 0.04);
}

.cta-fineprint {
  margin: 0.9rem 0 0;
  color: var(--muted);
  font-size: 0.87rem;
}

.cta-panel .cta-fineprint {
  color: rgba(246, 247, 249, 0.64);
}

.footer {
  padding: 2.5rem 0 3.5rem;
}

.footer-card {
  background: rgba(255, 255, 255, 0.72);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem 1rem;
  margin-top: 1rem;
  color: var(--muted);
}

.footer-links a:hover {
  color: var(--navy);
}

.divider {
  width: 100%;
  height: 1px;
  margin: 0 0 2rem;
  background: linear-gradient(90deg, transparent, rgba(11, 31, 58, 0.14), transparent);
}

/* Scroll-reveal only applies when JS has confirmed it can run (html.js);
   without JS all content stays visible. */
html.js .reveal {
  opacity: 0;
  transform: translateY(18px);
  transition: opacity 650ms ease, transform 650ms cubic-bezier(0.22, 1, 0.36, 1);
}

html.js .reveal.is-visible {
  opacity: 1;
  transform: none;
}

.reveal[data-reveal-delay="1"] { transition-delay: 80ms; }
.reveal[data-reveal-delay="2"] { transition-delay: 140ms; }
.reveal[data-reveal-delay="3"] { transition-delay: 200ms; }

@keyframes bar-rise {
  from {
    transform: scaleY(0.25);
    opacity: 0.35;
  }
  to {
    transform: scaleY(1);
    opacity: 1;
  }
}

@keyframes glow-pulse {
  0%, 100% { opacity: 0.55; }
  50% { opacity: 0.9; }
}

@media (prefers-reduced-motion: reduce) {
  .reveal,
  .growth-chart span,
  .hero-visual::before {
    animation: none !important;
    transition: none !important;
    opacity: 1 !important;
    transform: none !important;
  }
}

@media (max-width: 479px) {
  .topbar-cta {
    display: none;
  }

  .hero-actions .button {
    width: 100%;
  }

  .brand-logo {
    width: 1.55rem;
    height: 1.55rem;
    border-radius: 0.32rem;
  }

  .brand-name {
    font-size: 1.15rem;
  }

  .hero-copy h1 {
    max-width: none;
  }
}

@media (min-width: 640px) {
  .container {
    width: min(calc(100% - 2rem), var(--max-width));
  }

  .steps-grid,
  .packages-grid,
  .outcome-grid,
  .faq-grid,
  .footer-grid,
  .fit-grid,
  .quotes-grid,
  .call-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .audience-bar {
    justify-content: space-between;
  }
}

@media (min-width: 900px) {
  .menu-toggle {
    display: none;
  }

  .topbar-inner {
    min-height: 76px;
  }

  .topnav-links {
    display: flex;
    order: 2;
    margin-left: auto;
  }

  .brand-logo {
    width: 1.8rem;
    height: 1.8rem;
    border-radius: 0.38rem;
  }

  .brand-name {
    font-size: 1.35rem;
  }

  .topbar-actions {
    order: 3;
    margin-left: 0;
  }

  .menu-cta {
    display: none !important;
  }

  .hero {
    padding: 4.75rem 0 2rem;
  }

  .hero-grid {
    grid-template-columns: minmax(0, 1.05fr) minmax(340px, 0.95fr);
    gap: 2.75rem;
    align-items: center;
  }

  .section {
    padding: 4.75rem 0;
  }

  .problem-row {
    grid-template-columns: 3rem 1fr;
    gap: 1.25rem;
    padding: 1.4rem 0;
  }
}

@media (min-width: 1100px) {
  .hero-grid {
    grid-template-columns: minmax(0, 1.12fr) minmax(400px, 0.88fr);
    gap: 3.25rem;
  }

  .steps-grid,
  .outcome-grid,
  .packages-grid,
  .quotes-grid,
  .call-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }

  .fit-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .faq-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

.legal-page {
  padding: 3.5rem 0 4rem;
}

.legal-page .section-head {
  max-width: 48rem;
}

.legal-content {
  max-width: 48rem;
  display: grid;
  gap: 1.25rem;
}

.legal-content h2 {
  margin: 1.5rem 0 0.5rem;
  font-size: 1.35rem;
  letter-spacing: -0.03em;
  color: var(--navy);
}

.legal-content h3 {
  margin: 1rem 0 0.4rem;
  font-size: 1.05rem;
  color: var(--navy);
}

.legal-content p,
.legal-content li {
  color: var(--muted);
  line-height: 1.65;
}

.legal-content ul {
  margin: 0;
  padding-left: 1.2rem;
}

.legal-content a {
  color: var(--primary-strong);
  text-decoration: underline;
  text-underline-offset: 0.15em;
}

.legal-card {
  padding: 1.25rem 1.35rem;
  border-radius: var(--radius-md);
  border: 1px solid var(--border);
  background: var(--surface);
}
