:root {
  --background: #f4f0df;
  --background-deep: #ebe6d4;
  --foreground: #16211f;
  --surface: #ffffff;
  --surface-2: #f7f4ea;
  --surface-3: #ebe6d4;
  --border: rgba(22, 33, 31, 0.12);
  --muted: #4a5c55;
  --muted-2: #6a7a72;
  --primary: #2d7a4f;
  --primary-strong: #1f5c3a;
  --primary-foreground: #ffffff;
  --accent-soft: rgba(45, 122, 79, 0.08);
  --cream: #f4f0df;
  --shadow: 0 12px 40px rgba(22, 33, 31, 0.08);
  --shadow-soft: 0 4px 20px rgba(22, 33, 31, 0.06);
  --radius: 8px;
  --font-display: Georgia, "Times New Roman", serif;
  --font-body: "Avenir Next", "Segoe UI", system-ui, -apple-system, BlinkMacSystemFont, sans-serif;
  --font-mono: ui-monospace, "SFMono-Regular", "Roboto Mono", Menlo, monospace;
}

html {
  scroll-behavior: smooth;
  background: var(--background-deep);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: var(--font-body);
  background: var(--background);
  color: var(--foreground);
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

body::selection {
  background: var(--primary);
  color: var(--primary-foreground);
}

a {
  color: inherit;
}

p,
h1,
h2,
h3,
figure,
blockquote {
  margin-top: 0;
}

p {
  color: var(--muted);
  font-size: 1.04rem;
  line-height: 1.72;
}

h1,
h2,
h3 {
  font-family: var(--font-display);
  font-weight: 650;
  letter-spacing: 0;
  color: var(--foreground);
}

h1 {
  max-width: 11ch;
  margin-bottom: 1.25rem;
  font-size: clamp(3.55rem, 8vw, 6.8rem);
  line-height: 0.98;
}

h1 span,
h2 span {
  color: var(--primary-strong);
}

h2 {
  max-width: 14ch;
  margin-bottom: 1rem;
  font-size: clamp(2.25rem, 4.6vw, 4.55rem);
  line-height: 1.02;
}

h3 {
  margin-bottom: 0.65rem;
  font-size: 1.45rem;
  line-height: 1.22;
}

.container {
  width: min(1200px, calc(100% - 3rem));
  margin: 0 auto;
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 1rem;
  z-index: 100;
  padding: 0.75rem 1rem;
  border-radius: var(--radius);
  background: var(--primary);
  color: var(--primary-foreground);
  font-weight: 800;
}

.skip-link:focus {
  left: 1rem;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  border-bottom: 1px solid var(--border);
  background: rgba(244, 240, 223, 0.92);
  backdrop-filter: blur(12px);
}

.header-inner {
  min-height: 84px;
  display: grid;
  grid-template-columns: auto minmax(0, 1fr) auto;
  align-items: center;
  gap: 2rem;
}

.footer-brand-mark {
  width: 168px;
  height: 43px;
  margin-bottom: 0.55rem;
  overflow: visible;
}

.footer-tagline {
  margin: 0;
}

.brand {
  display: inline-flex;
  align-items: center;
  justify-content: flex-start;
  width: auto;
  min-height: 58px;
  color: var(--foreground);
  text-decoration: none;
}

.brand-mark {
  display: block;
  width: 196px;
  height: 50px;
  overflow: visible;
}

.brand-line,
.brand-node-circle,
.brand-node-square,
.brand-check {
  fill: none;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.brand-line {
  stroke: var(--primary-strong);
  stroke-width: 2;
  opacity: 0.72;
}

.brand-node-circle,
.brand-node-square {
  stroke: var(--primary);
  stroke-width: 2.3;
}

.brand-check {
  stroke: var(--primary);
  stroke-width: 2.5;
}

.brand-wordmark,
.brand-mark text {
  fill: var(--foreground);
  font-family: var(--font-body);
  font-size: 17px;
  font-weight: 700;
  letter-spacing: 0.015em;
}

.brand-text {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.site-nav {
  display: flex;
  justify-content: center;
  gap: 1.8rem;
}

.site-nav a {
  color: var(--muted);
  font-size: 0.94rem;
  font-weight: 700;
  text-decoration: none;
}

.site-nav a:hover,
.site-nav a:focus-visible {
  color: var(--foreground);
}

.header-actions {
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.nav-toggle {
  display: none;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  padding: 0;
  border: 1px solid var(--border);
  border-radius: 12px;
  background: var(--surface);
  color: var(--foreground);
  cursor: pointer;
  transition: border-color 160ms ease, background-color 160ms ease;
}

.nav-toggle:hover,
.nav-toggle:focus-visible {
  border-color: rgba(45, 122, 79, 0.35);
  background: var(--surface-2);
}

.nav-toggle-label {
  position: absolute;
  width: 1px;
  height: 1px;
  overflow: hidden;
  clip: rect(0 0 0 0);
  white-space: nowrap;
}

.nav-toggle-icon {
  display: grid;
  gap: 5px;
}

.nav-toggle-icon span {
  display: block;
  width: 18px;
  height: 2px;
  border-radius: 999px;
  background: currentColor;
  transition: transform 160ms ease, opacity 160ms ease;
}

.site-header.is-nav-open .nav-toggle-icon span:nth-child(1) {
  transform: translateY(7px) rotate(45deg);
}

.site-header.is-nav-open .nav-toggle-icon span:nth-child(2) {
  opacity: 0;
}

.site-header.is-nav-open .nav-toggle-icon span:nth-child(3) {
  transform: translateY(-7px) rotate(-45deg);
}

.site-nav .nav-panel-cta {
  display: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 0.55rem;
  min-height: 52px;
  padding: 0.95rem 1.35rem;
  border: 1px solid var(--primary);
  border-radius: var(--radius);
  background: var(--primary);
  color: var(--primary-foreground);
  font-weight: 750;
  line-height: 1.1;
  text-decoration: none;
  transition: background-color 160ms ease, border-color 160ms ease;
}

.button:hover,
.button:focus-visible {
  background: var(--primary-strong);
  border-color: var(--primary-strong);
}

.button-secondary {
  background: var(--surface);
  color: var(--foreground);
  border-color: var(--border);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  background: var(--surface-2);
  border-color: rgba(45, 122, 79, 0.35);
}

.button-small {
  min-height: 42px;
  padding: 0.72rem 1.05rem;
  font-size: 0.88rem;
}

.button:focus-visible,
.brand:focus-visible,
.site-nav a:focus-visible,
.nav-toggle:focus-visible,
summary:focus-visible {
  outline: 3px solid rgba(45, 122, 79, 0.28);
  outline-offset: 4px;
}

.hero-section {
  position: relative;
  padding: 5rem 0 5.5rem;
  background: var(--background);
  border-bottom: 1px solid var(--border);
}

.hero-section .hero-copy {
  max-width: 42rem;
}

.hero-grid {
  position: relative;
  z-index: 1;
  display: grid;
  grid-template-columns: minmax(0, 1.02fr) minmax(300px, 0.88fr);
  gap: 3.5rem;
  align-items: center;
}

.hero-copy h1 {
  max-width: none;
  margin-bottom: 1rem;
  font-size: clamp(2.8rem, 6vw, 5rem);
  line-height: 1.02;
}

.hero-copy h1 .hero-line {
  display: block;
  color: var(--foreground);
}

.hero-copy h1 .hero-line-accent {
  color: var(--primary-strong);
}

@media (min-width: 681px) {
  .hero-copy h1 .hero-line {
    white-space: nowrap;
  }
}

.hero-visual {
  display: flex;
  justify-content: center;
  align-items: center;
}

.hero-diagram {
  display: block;
  width: 100%;
  max-width: 400px;
  height: auto;
  overflow: visible;
}

.hero-diagram-frame {
  fill: url(#hero-diagram-glow);
  stroke: var(--border);
  stroke-width: 1;
}

.hero-diagram-label {
  fill: var(--primary-strong);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 700;
}

.hero-diagram-caption {
  fill: var(--muted-2);
  font-family: var(--font-body);
  font-size: 13px;
  font-weight: 650;
}

.hero-diagram-caption-centered {
  font-size: 12px;
}

.hero-diagram-split-line {
  stroke: var(--border);
  stroke-width: 1;
}

.hero-diagram-label-right {
  fill: var(--primary-strong);
}

.hero-diagram-line-messy {
  fill: none;
  stroke: rgba(22, 33, 31, 0.22);
  stroke-width: 1.5;
  stroke-dasharray: 4 5;
  stroke-linecap: round;
}

.hero-diagram-node-messy {
  fill: var(--surface-2);
  stroke: rgba(22, 33, 31, 0.28);
  stroke-width: 1.5;
}

.hero-diagram-messy-caption {
  fill: var(--muted-2);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 650;
}

.hero-diagram-line {
  fill: none;
  stroke: var(--primary);
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.hero-diagram-node {
  fill: var(--surface);
}

.hero-diagram-check {
  stroke-width: 2.2;
}

.hero-diagram-node-label {
  fill: var(--foreground);
  font-family: var(--font-body);
  font-size: 11px;
  font-weight: 750;
  text-anchor: middle;
}

.hero-diagram-node-label-inside {
  fill: var(--foreground);
}

.hero-diagram-node-label-outside {
  fill: var(--muted);
  font-size: 12px;
  font-weight: 700;
}

.hero-kicker {
  margin: 0 0 1.1rem;
  color: var(--muted-2);
  font-size: 0.95rem;
  font-weight: 650;
  line-height: 1.5;
}

.hero-services-link {
  color: var(--primary-strong);
  font-weight: 700;
  text-decoration-color: rgba(45, 122, 79, 0.35);
  text-underline-offset: 3px;
}

.hero-services-link:hover,
.hero-services-link:focus-visible {
  color: var(--primary);
}

.lead {
  max-width: 58ch;
  margin-bottom: 1.75rem;
  font-size: 1.24rem;
  line-height: 1.62;
}

.lead strong {
  color: var(--foreground);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.9rem;
  margin-bottom: 1rem;
}

.micro-trust {
  margin: 0;
  color: var(--muted-2);
  font-size: 0.95rem;
}

.eyebrow,
.section-kicker {
  margin-bottom: 0.75rem;
  color: var(--muted-2);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.5;
}

.centered {
  text-align: center;
}

.service-card,
.step-grid article,
.founder-mark,
.case-study-card,
.review-card,
.pricing-card,
.contact-card,
.breakdown-panel,
details {
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
  box-shadow: var(--shadow-soft);
}

.tools-section,
.why-section,
.breakdown-section,
.services-section,
.how-section,
.about-section,
.case-study-section,
.review-section,
.pricing-section,
.faq-section,
.contact-section {
  padding: 5.8rem 0;
  border-top: 1px solid var(--border);
}

.breakdown-section,
.how-section,
.review-section,
.faq-section {
  background: var(--surface-2);
}

.tools-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: center;
  gap: 1rem 2rem;
}

.tools-list span {
  color: var(--muted);
  font-size: 1.1rem;
  font-weight: 850;
}

.two-column,
.breakdown-grid,
.review-grid,
.faq-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 4rem;
  align-items: start;
}

.accent-copy {
  padding-left: 1.5rem;
  border-left: 2px solid var(--primary);
  font-size: 1.17rem;
}

.breakdown-panel {
  overflow: hidden;
  padding: 0.35rem 0;
}

.breakdown-panel p {
  margin: 0;
  padding: 1rem 1.35rem;
  border-bottom: 1px solid var(--border);
}

.breakdown-panel p:last-child {
  border-bottom: 0;
}

.step-grid span {
  color: var(--primary-strong);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 850;
  letter-spacing: 0.14em;
  text-transform: uppercase;
}

.pricing-card > span {
  display: block;
  margin-bottom: 0.35rem;
  color: var(--muted-2);
  font-size: 0.92rem;
  font-weight: 650;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 2.25rem;
}

.section-heading h2 {
  max-width: 13ch;
}

.section-heading p:not(.section-kicker) {
  max-width: 62ch;
}

.card-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem;
}

.service-card {
  padding: 1.55rem;
  transition: border-color 160ms ease;
}

.service-card:hover {
  border-color: rgba(45, 122, 79, 0.35);
}

.service-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 1.25rem;
}

.service-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.75rem;
  height: 2.75rem;
  border-radius: 10px;
  background: var(--accent-soft);
  color: var(--primary-strong);
  font-size: 1.2rem;
  font-weight: 900;
}

.service-card small {
  display: block;
  margin-top: 1.35rem;
  color: var(--muted-2);
  font-size: 0.88rem;
  font-weight: 650;
  line-height: 1.5;
}

.step-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1rem;
}

.step-grid article {
  padding: 1.4rem;
  border-top: 2px solid var(--primary);
}

.about-grid {
  display: grid;
  grid-template-columns: minmax(280px, 0.72fr) minmax(0, 1.28fr);
  gap: 4rem;
  align-items: center;
}

.founder-mark {
  min-height: 360px;
  overflow: hidden;
  background: var(--surface-2);
}

.founder-mark img {
  width: 100%;
  height: 100%;
  min-height: 360px;
  display: block;
  object-fit: cover;
  object-position: center;
}

.case-study-card {
  padding: 1.75rem 1.85rem;
  max-width: 48rem;
}

.case-study-context {
  margin-bottom: 1.25rem;
  color: var(--muted);
  font-size: 1rem;
}

.case-study-findings {
  display: grid;
  gap: 0.85rem;
  margin: 0 0 1.35rem;
  padding-left: 1.25rem;
  color: var(--muted);
}

.case-study-findings li {
  line-height: 1.6;
}

.case-study-outcome {
  margin: 0;
  padding-top: 1.15rem;
  border-top: 1px solid var(--border);
  color: var(--foreground);
  font-weight: 650;
}

.review-card,
.pricing-card {
  padding: 1.55rem;
}

.review-card ul {
  display: grid;
  gap: 0.65rem;
  margin: 1.25rem 0 1.55rem;
  padding: 0;
  list-style: none;
}

.review-card li {
  position: relative;
  padding-left: 1.45rem;
  color: var(--muted);
  line-height: 1.55;
}

.review-card li::before {
  content: "";
  position: absolute;
  top: 0.65rem;
  left: 0;
  width: 0.45rem;
  height: 0.45rem;
  border-radius: 999px;
  background: var(--primary);
}

.pricing-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(240px, 0.8fr) minmax(240px, 0.8fr);
  gap: 1rem;
  align-items: stretch;
}

.pricing-card strong {
  display: block;
  margin: 1rem 0;
  color: var(--foreground);
  font-size: 1.6rem;
  line-height: 1.1;
}

.pricing-card.featured {
  border-color: rgba(45, 122, 79, 0.35);
  background: var(--surface-2);
}

.faq-list {
  display: grid;
  gap: 0.8rem;
}

details {
  padding: 0;
}

summary {
  cursor: pointer;
  padding: 1.25rem 1.35rem;
  color: var(--foreground);
  font-weight: 850;
}

details p {
  margin: 0;
  padding: 0 1.35rem 1.25rem;
}

.contact-section {
  padding-bottom: 6.8rem;
  background: var(--background-deep);
}

.contact-card {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 2rem;
  align-items: center;
  padding: 2rem;
}

.contact-card h2 {
  max-width: 15ch;
}

.contact-card p {
  max-width: 56ch;
}

.contact-actions {
  display: grid;
  justify-items: start;
  gap: 1rem;
}

.contact-actions p {
  margin: 0;
  max-width: 28ch;
  font-size: 0.95rem;
}

.site-footer {
  padding: 2.2rem 0;
  border-top: 1px solid var(--border);
  background: var(--background-deep);
}

.footer-inner {
  display: flex;
  justify-content: space-between;
  gap: 2rem;
}

.footer-inner p {
  margin: 0.35rem 0 0;
  font-size: 0.92rem;
}

.footer-inner a {
  display: inline-block;
  margin-top: 0.7rem;
  color: var(--primary-strong);
  font-weight: 750;
}

.review-page .review-section {
  padding-top: 4.5rem;
}

.review-layout {
  display: grid;
  grid-template-columns: minmax(0, 0.96fr) minmax(0, 1.04fr);
  gap: 4rem;
  align-items: start;
}

.review-intro {
  position: sticky;
  top: 7rem;
  padding-top: 1rem;
}

.review-intro h1 {
  max-width: 13ch;
  font-size: clamp(2.8rem, 4.8vw, 3.75rem);
}

.review-points {
  display: grid;
  gap: 1rem;
  max-width: 34rem;
  margin-top: 2rem;
}

.review-points p {
  display: flex;
  align-items: flex-start;
  gap: 0.85rem;
  margin-bottom: 0;
  font-size: 1rem;
  line-height: 1.55;
}

.review-points span {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 1.5rem;
  height: 1.5rem;
  border-radius: 7px;
  background: var(--accent-soft);
  color: var(--primary-strong);
  font-weight: 800;
  flex-shrink: 0;
}

.review-process {
  max-width: 34rem;
  margin-top: 2rem;
  padding-top: 1.4rem;
  border-top: 1px solid var(--border);
}

.review-process h2 {
  margin-bottom: 0.55rem;
  color: var(--muted-2);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 650;
  line-height: 1.4;
}

.review-process ol {
  display: grid;
  gap: 0;
  margin: 0;
  padding: 0;
  list-style: none;
}

.review-process li {
  display: grid;
  grid-template-columns: 2.25rem minmax(0, 1fr);
  gap: 0.95rem;
  padding: 0.85rem 0;
  border-bottom: 1px solid var(--border);
}

.review-process li:last-child {
  border-bottom: 0;
  padding-bottom: 0;
}

.review-process li > span {
  color: var(--primary-strong);
  font-family: var(--font-mono);
  font-size: 0.72rem;
  font-weight: 850;
  line-height: 1.55;
}

.review-process strong {
  display: block;
  margin-bottom: 0.18rem;
  color: var(--foreground);
  font-size: 0.98rem;
  line-height: 1.35;
}

.review-process p {
  margin-bottom: 0;
  font-size: 0.94rem;
  line-height: 1.5;
}

.review-layout .review-card {
  padding: 2rem;
}

.review-layout .review-card h2 {
  max-width: none;
  font-size: 1.65rem;
}

.review-form {
  display: grid;
  gap: 1.2rem;
}

.form-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 0.9rem;
}

.field {
  display: grid;
  gap: 0.45rem;
}

.field-full {
  grid-column: 1 / -1;
}

.field label,
.consent-label {
  color: var(--foreground);
  font-size: 0.85rem;
  font-weight: 700;
}

.field input,
.field select,
.field textarea {
  width: 100%;
  min-height: 46px;
  padding: 0.78rem 0.9rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--surface-2);
  color: var(--foreground);
  font: inherit;
  transition: border-color 160ms ease, box-shadow 160ms ease;
}

.field textarea {
  min-height: 118px;
  resize: vertical;
}

.field input::placeholder,
.field textarea::placeholder {
  color: var(--muted-2);
}

.field input:focus,
.field select:focus,
.field textarea:focus {
  outline: none;
  border-color: rgba(45, 122, 79, 0.45);
  box-shadow: 0 0 0 4px rgba(45, 122, 79, 0.1);
}

.consent-field {
  grid-template-columns: auto 1fr;
  align-items: start;
  gap: 0.75rem;
  padding: 0.95rem;
  border: 1px solid var(--border);
  border-radius: 10px;
  background: var(--accent-soft);
}

.consent-field input {
  width: 1.1rem;
  height: 1.1rem;
  min-height: 1.1rem;
  margin-top: 0.2rem;
  accent-color: var(--primary);
}

.consent-copy {
  margin-bottom: 0;
  font-size: 0.92rem;
}

.form-actions {
  display: grid;
  gap: 0.8rem;
}

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

.form-trust,
.form-footnote {
  margin-bottom: 0;
  font-size: 0.93rem;
}

.form-status {
  margin: 0;
  padding: 0.9rem 1rem;
  border-radius: 10px;
  border: 1px solid transparent;
  font-size: 0.95rem;
  line-height: 1.5;
}

.form-status[hidden] {
  display: none;
}

.form-status.is-success {
  color: var(--primary-strong);
  background: rgba(45, 122, 79, 0.08);
  border-color: rgba(45, 122, 79, 0.22);
}

.form-status.is-error {
  color: #ffb4b4;
  background: rgba(127, 29, 29, 0.22);
  border-color: rgba(255, 120, 120, 0.28);
}

@media (prefers-reduced-motion: reduce) {
  html {
    scroll-behavior: auto;
  }

  *,
  *::before,
  *::after {
    animation-duration: 0.001ms !important;
    animation-iteration-count: 1 !important;
    scroll-behavior: auto !important;
    transition-duration: 0.001ms !important;
  }
}

@media (max-width: 980px) {
  .header-inner {
    grid-template-columns: 1fr auto;
    grid-template-rows: auto auto;
    align-items: center;
    row-gap: 0;
  }

  .nav-toggle {
    display: inline-flex;
  }

  .site-nav {
    grid-column: 1 / -1;
    grid-row: 2;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    max-height: 0;
    overflow: hidden;
    opacity: 0;
    pointer-events: none;
    border-top: 1px solid transparent;
    transition: max-height 220ms ease, opacity 180ms ease, border-color 180ms ease;
  }

  .site-nav a {
    padding: 0.95rem 0;
    border-bottom: 1px solid var(--border);
    font-size: 1rem;
  }

  .site-nav a:last-of-type {
    border-bottom: 0;
  }

  .site-header.is-nav-open .site-nav {
    max-height: 24rem;
    opacity: 1;
    pointer-events: auto;
    margin-top: 0.35rem;
    padding-top: 0.35rem;
    border-top-color: var(--border);
  }

  .hero-grid,
  .two-column,
  .breakdown-grid,
  .review-grid,
  .review-layout,
  .faq-grid,
  .about-grid,
  .pricing-grid,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero-grid {
    gap: 3rem;
  }

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

  .contact-actions {
    justify-items: start;
  }

  .review-intro {
    position: static;
  }
}

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

  .site-header .header-cta {
    display: none;
  }

  .site-nav .nav-panel-cta {
    display: inline-flex;
    width: 100%;
    margin-top: 0.85rem;
  }

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

  .brand {
    min-height: 50px;
  }

  .brand-mark {
    width: 168px;
    height: 44px;
  }

  .hero-section {
    padding: 3.75rem 0 4.25rem;
  }

  .tools-section,
  .why-section,
  .breakdown-section,
  .services-section,
  .how-section,
  .about-section,
  .case-study-section,
  .review-section,
  .pricing-section,
  .faq-section,
  .contact-section {
    padding: 4.2rem 0;
  }

  .hero-copy h1 {
    font-size: clamp(2.55rem, 12vw, 3.65rem);
  }

  h2 {
    font-size: clamp(2.1rem, 11vw, 3rem);
  }

  .founder-mark,
  .founder-mark img {
    min-height: 320px;
  }

  .card-grid,
  .step-grid {
    grid-template-columns: 1fr;
  }

  .form-grid {
    grid-template-columns: 1fr;
  }

  .contact-card {
    padding: 1.35rem;
  }

  .footer-inner {
    display: grid;
  }
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 0.55rem 1.1rem;
  margin-top: 0.85rem;
}

.footer-links a {
  margin-top: 0;
  color: var(--muted);
  font-size: 0.9rem;
  font-weight: 650;
}

.footer-links a:hover,
.footer-links a:focus-visible {
  color: var(--primary-strong);
}

.contact-email {
  color: var(--primary-strong);
  font-weight: 750;
  text-decoration: none;
}

.contact-email:hover,
.contact-email:focus-visible {
  text-decoration: underline;
}

.schedule-card {
  margin-top: 2rem;
  padding: 1.35rem 1.4rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  background: var(--surface);
}

.schedule-card-kicker {
  margin: 0 0 0.45rem;
  color: var(--muted-2);
  font-family: var(--font-body);
  font-size: 0.92rem;
  font-weight: 650;
}

.schedule-card h3 {
  margin-bottom: 0.65rem;
  font-size: 1.35rem;
  max-width: 18ch;
}

.schedule-card p {
  margin-bottom: 1rem;
  font-size: 0.98rem;
}

.form-intro {
  margin: -0.35rem 0 1.1rem;
  max-width: 42ch;
  font-size: 0.98rem;
}

.consent-copy a {
  color: var(--primary-strong);
  font-weight: 700;
}

.legal-page .legal-section {
  padding: 4.5rem 0 6rem;
}

.legal-content {
  max-width: 46rem;
}

.legal-content h1 {
  max-width: none;
  margin-bottom: 0.5rem;
  font-size: clamp(2.4rem, 5vw, 3.4rem);
}

.legal-updated {
  margin-bottom: 1.5rem;
  color: var(--muted-2);
  font-size: 0.95rem;
}

.legal-content h2 {
  margin-top: 2rem;
  margin-bottom: 0.75rem;
  font-size: 1.45rem;
}

.legal-content ul {
  margin: 0 0 1rem;
  padding-left: 1.2rem;
  color: var(--muted);
}

.legal-content li + li {
  margin-top: 0.45rem;
}

.legal-content a {
  color: var(--primary-strong);
  font-weight: 700;
}
