
:root {
  --ink: #13231f;
  --muted: #63726d;
  --soft: #f5f8f2;
  --surface: #fffdf7;
  --line: #dce6dc;
  --teal: #0b7f6b;
  --teal-dark: #075f52;
  --blue: #2f6f8f;
  --amber: #f0b23d;
  --green: #2f7d52;
  --rose: #c64a34;
  --signal: #f3ba45;
  --signal-dark: #dfa334;
  --clay: #d8663f;
  --shadow: 0 18px 48px rgba(19, 35, 31, 0.14);
  --max: 1160px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
}

body {
  margin: 0;
  font-family: Inter, -apple-system, BlinkMacSystemFont, "Segoe UI", "Noto Sans SC", sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body.nav-open {
  overflow: hidden;
}

img,
svg,
video,
iframe {
  max-width: 100%;
}

a {
  color: inherit;
}

button,
input,
textarea,
select {
  font: inherit;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 1000;
  transform: translateY(-140%);
  border-radius: 6px;
  background: var(--ink);
  color: #fff;
  padding: 8px 12px;
  text-decoration: none;
}

.skip-link:focus {
  transform: translateY(0);
}

.site-header {
  position: fixed;
  inset: 0 0 auto;
  z-index: 100;
  height: 72px;
  background: rgba(255, 253, 247, 0.94);
  border-bottom: 1px solid rgba(220, 230, 220, 0.9);
  backdrop-filter: blur(16px);
  transition: box-shadow 180ms ease, background 180ms ease;
}

.site-header.is-scrolled {
  box-shadow: 0 10px 30px rgba(16, 32, 51, 0.08);
}

.header-inner {
  max-width: var(--max);
  height: 100%;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  min-width: 0;
  text-decoration: none;
}

.brand-mark {
  width: 34px;
  height: 34px;
  display: block;
  flex: 0 0 auto;
}

.brand-text {
  font-size: 18px;
  font-weight: 760;
  line-height: 1;
}

.desktop-nav {
  display: flex;
  align-items: center;
  gap: 22px;
  font-size: 14px;
  color: #425164;
}

.desktop-nav a {
  text-decoration: none;
  white-space: nowrap;
}

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

.nav-cta {
  display: inline-flex;
  min-height: 38px;
  align-items: center;
  justify-content: center;
  border-radius: 8px;
  padding: 8px 14px;
  background: var(--signal);
  color: var(--ink) !important;
  font-weight: 700;
}

.nav-cta:hover,
.nav-cta:focus-visible {
  background: var(--signal-dark);
}

.language-link {
  color: #64748b !important;
  font-size: 13px;
}

.menu-toggle {
  display: none;
  width: 42px;
  height: 42px;
  align-items: center;
  justify-content: center;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  color: var(--ink);
  cursor: pointer;
}

.menu-toggle svg {
  width: 20px;
  height: 20px;
}

.mobile-nav {
  display: none;
  position: fixed;
  top: 72px;
  left: 0;
  right: 0;
  z-index: 95;
  background: var(--surface);
  border-bottom: 1px solid var(--line);
  box-shadow: 0 20px 40px rgba(16, 32, 51, 0.1);
  padding: 18px 24px 24px;
}

.mobile-nav a {
  display: flex;
  align-items: center;
  min-height: 42px;
  border-bottom: 1px solid #eef2f7;
  text-decoration: none;
  color: #334155;
  font-size: 15px;
}

.mobile-nav a:last-child {
  border-bottom: 0;
}

.mobile-nav .nav-cta {
  margin-top: 12px;
  border: 0;
}

.section,
.hero,
.footer,
.contact-main,
.thankyou-main,
.legal-main {
  position: relative;
}

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

.hero {
  min-height: 88svh;
  padding: 150px 0 80px;
  display: flex;
  align-items: center;
  overflow: hidden;
  background: var(--soft);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-bg img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
}

.hero-bg::after {
  content: "";
  position: absolute;
  inset: 0;
  background:
    linear-gradient(90deg, rgba(255,253,247,0.98) 0%, rgba(255,253,247,0.9) 34%, rgba(255,253,247,0.55) 58%, rgba(255,253,247,0.16) 100%),
    linear-gradient(180deg, rgba(255,253,247,0.58) 0%, rgba(255,253,247,0.18) 70%, rgba(255,253,247,1) 100%);
}

.hero .container {
  z-index: 1;
}

.hero-content {
  max-width: 720px;
}

.eyebrow {
  margin: 0 0 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  color: var(--teal-dark);
  font-weight: 750;
  font-size: 14px;
}

.eyebrow::before {
  content: "";
  width: 28px;
  height: 2px;
  background: var(--teal);
}

.hero h1,
.section-heading,
.contact-title,
.thankyou-title {
  margin: 0;
  line-height: 1.06;
  font-weight: 820;
  letter-spacing: 0;
  color: var(--ink);
}

.hero h1 {
  max-width: 700px;
  font-size: 58px;
}

.hero-copy {
  margin: 24px 0 0;
  max-width: 590px;
  color: #425164;
  font-size: 20px;
  line-height: 1.55;
}

.hero-actions,
.section-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 34px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 46px;
  border-radius: 8px;
  border: 1px solid transparent;
  padding: 11px 18px;
  text-decoration: none;
  font-weight: 760;
  font-size: 15px;
  transition: background 160ms ease, border-color 160ms ease, transform 160ms ease;
}

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

.button-primary {
  background: var(--signal);
  color: var(--ink);
}

.button-primary:hover,
.button-primary:focus-visible {
  background: var(--signal-dark);
}

.button-secondary {
  background: rgba(255,253,247,0.86);
  border-color: #cbd5e1;
  color: var(--ink);
}

.button-secondary:hover,
.button-secondary:focus-visible {
  border-color: var(--teal);
  background: var(--surface);
}

.hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 18px;
  margin-top: 30px;
  padding: 0;
  list-style: none;
}

.hero-proof li {
  display: inline-flex;
  align-items: center;
  gap: 4px;
  color: #53645f;
  font-size: 13px;
  font-weight: 650;
  line-height: 1.35;
}

.hero-proof li::before {
  content: "";
  width: 12px;
  height: 12px;
  flex: 0 0 12px;
  border-radius: 50%;
  background: var(--teal);
  background-clip: padding-box;
  border: 3px solid rgba(11, 127, 107, 0.12);
}

.hero-next {
  position: absolute;
  left: 50%;
  bottom: 52px;
  z-index: 2;
  transform: translateX(-50%);
  color: #64748b;
  font-size: 12px;
  text-decoration: none;
}

.section {
  padding: 92px 0;
}

.section-tight {
  padding: 72px 0;
}

.section-soft {
  background: var(--soft);
}

.section-dark {
  background: var(--ink);
  color: #e5edf5;
}

.section-kicker {
  margin: 0 0 12px;
  color: var(--teal-dark);
  font-weight: 800;
  font-size: 13px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.section-dark .section-kicker {
  color: var(--signal);
}

.section-heading {
  max-width: 760px;
  font-size: 42px;
}

.section-intro {
  max-width: 720px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.section-dark .section-heading,
.section-dark .section-intro {
  color: #fff;
}

.section-dark .section-intro {
  color: #c5d0dd;
}

.header-row {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 36px;
  margin-bottom: 36px;
}

.header-row .section-intro {
  max-width: 420px;
  margin: 0;
}

.stats-strip {
  position: relative;
  z-index: 3;
  margin-top: -28px;
}

.stats-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1px;
  overflow: hidden;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--line);
  box-shadow: 0 14px 34px rgba(16, 32, 51, 0.08);
}

.stat {
  background: var(--surface);
  padding: 22px;
}

.stat strong {
  display: block;
  color: var(--ink);
  font-size: 24px;
  line-height: 1.1;
}

.stat span {
  display: block;
  margin-top: 6px;
  color: var(--muted);
  font-size: 14px;
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
}

.feature-card,
.role-card,
.contact-panel,
.form-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
}

.feature-card {
  padding: 24px;
}

.feature-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 8px;
  background: #fff1d2;
  color: var(--ink);
  font-weight: 850;
  font-size: 14px;
}

.feature-card:nth-child(2n) .feature-icon {
  background: #e8f6f3;
  color: var(--teal-dark);
}

.feature-card:nth-child(3n) .feature-icon {
  background: #ffe8dc;
  color: var(--clay);
}

.feature-card h3,
.role-card h3,
.timeline-item h3,
.visual-copy h3,
.contact-panel h2,
.form-panel h2 {
  margin: 18px 0 8px;
  color: var(--ink);
  font-size: 20px;
  line-height: 1.25;
  letter-spacing: 0;
}

.feature-card p,
.role-card p,
.timeline-item p,
.visual-copy p {
  margin: 0;
  color: var(--muted);
  font-size: 15px;
}

.visual-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(340px, 0.82fr);
  gap: 40px;
  align-items: center;
}

.product-window {
  overflow: hidden;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  background: var(--surface);
  box-shadow: var(--shadow);
}

.window-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 16px;
  border-bottom: 1px solid var(--line);
  background: #fbfaf4;
}

.window-title {
  display: flex;
  flex-direction: column;
  gap: 2px;
  min-width: 0;
}

.window-title strong {
  font-size: 14px;
}

.window-title span {
  color: #64748b;
  font-size: 12px;
}

.status-pill {
  flex: 0 0 auto;
  border-radius: 999px;
  background: #fff1d2;
  color: var(--ink);
  padding: 5px 9px;
  font-size: 12px;
  font-weight: 800;
}

.product-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 13px;
}

.product-table th,
.product-table td {
  padding: 12px 14px;
  border-bottom: 1px solid var(--line);
  text-align: left;
}

.product-table th {
  background: #fffdf7;
  color: #64748b;
  font-size: 12px;
  font-weight: 800;
}

.product-table tr:last-child td {
  border-bottom: 0;
}

.row-warning td:first-child {
  border-left: 4px solid var(--amber);
}

.row-ok td:first-child {
  border-left: 4px solid var(--green);
}

.row-review td:first-child {
  border-left: 4px solid var(--blue);
}

.tag {
  display: inline-flex;
  align-items: center;
  border-radius: 999px;
  padding: 4px 8px;
  font-size: 12px;
  font-weight: 780;
  background: #eef2f7;
  color: #334155;
  white-space: nowrap;
}

.tag-green {
  background: #e9f8ef;
  color: var(--green);
}

.tag-amber {
  background: #ffe8dc;
  color: var(--clay);
}

.tag-blue {
  background: #e8f6f3;
  color: var(--teal-dark);
}

.window-footer {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  border-top: 1px solid var(--line);
  background: #fbfaf4;
}

.window-metric {
  padding: 14px 16px;
  border-right: 1px solid var(--line);
}

.window-metric:last-child {
  border-right: 0;
}

.window-metric strong {
  display: block;
  font-size: 18px;
}

.window-metric span {
  color: #64748b;
  font-size: 12px;
}

.visual-list {
  display: grid;
  gap: 16px;
  margin-top: 24px;
}

.visual-copy h3 {
  margin-top: 0;
}

.visual-copy {
  border-left: 3px solid var(--teal);
  padding-left: 16px;
}

.timeline {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 14px;
  margin-top: 40px;
}

.timeline-item {
  position: relative;
  min-height: 100%;
  border: 1px solid rgba(229, 237, 245, 0.22);
  border-radius: 8px;
  padding: 22px 18px;
  background: rgba(255,255,255,0.06);
}

.timeline-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 32px;
  height: 32px;
  border-radius: 8px;
  background: var(--signal);
  color: var(--ink);
  font-weight: 850;
}

.timeline-item h3 {
  color: #fff;
}

.timeline-item p {
  color: #c5d0dd;
}

.quote-layout {
  display: grid;
  grid-template-columns: 0.86fr 1.14fr;
  gap: 40px;
  align-items: center;
}

.quote-image {
  overflow: hidden;
  border-radius: 8px;
  border: 1px solid var(--line);
  background: var(--surface);
}

.quote-image img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 10;
  object-fit: cover;
}

.quote-points {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 14px;
  margin-top: 28px;
}

.quote-point {
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 16px;
  background: var(--surface);
}

.quote-point strong {
  display: block;
  margin-bottom: 6px;
  font-size: 15px;
}

.quote-point span {
  color: var(--muted);
  font-size: 14px;
}

.role-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 18px;
  margin-top: 38px;
}

.role-card {
  padding: 24px;
}

.role-card h3 {
  margin-top: 0;
}

.video-wrap {
  margin-top: 36px;
  overflow: hidden;
  border: 1px solid rgba(229, 237, 245, 0.18);
  border-radius: 8px;
  background: #07131f;
  box-shadow: 0 20px 52px rgba(0, 0, 0, 0.28);
}

.video-wrap iframe,
.video-wrap img {
  display: block;
  width: 100%;
  aspect-ratio: 16 / 9;
  border: 0;
}

.video-wrap img {
  object-fit: cover;
}

.cta-band {
  padding: 72px 0;
  background: #fff1d2;
}

.cta-content {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 36px;
}

.cta-content h2 {
  margin: 0;
  max-width: 700px;
  font-size: 36px;
  line-height: 1.12;
  letter-spacing: 0;
}

.cta-content p {
  margin: 12px 0 0;
  max-width: 660px;
  color: #4f4634;
  font-size: 17px;
}

.footer {
  background: #13231f;
  color: #d7e0eb;
  padding: 52px 0 28px;
}

.footer-grid {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: 36px;
}

.footer-brand {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #fff;
  font-weight: 800;
}

.footer p {
  margin: 14px 0 0;
  color: #a8b6c7;
  font-size: 14px;
}

.footer h3 {
  margin: 0 0 14px;
  color: #fff;
  font-size: 14px;
}

.footer a {
  display: block;
  margin: 9px 0;
  color: #a8b6c7;
  text-decoration: none;
  font-size: 14px;
}

.footer a:hover,
.footer a:focus-visible {
  color: #fff;
}

.footer-bottom {
  margin-top: 38px;
  padding-top: 20px;
  border-top: 1px solid rgba(229, 237, 245, 0.14);
  color: #8fa0b3;
  font-size: 13px;
}

.contact-main,
.thankyou-main,
.legal-main {
  padding: 132px 0 76px;
  background: linear-gradient(180deg, #f5f8f2 0%, #fffdf7 46%);
  min-height: calc(100svh - 280px);
}

.contact-title,
.thankyou-title {
  font-size: 46px;
}

.contact-intro,
.thankyou-copy {
  max-width: 670px;
  margin: 16px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.contact-grid {
  display: grid;
  grid-template-columns: 0.78fr 1.22fr;
  gap: 30px;
  margin-top: 38px;
  align-items: start;
}

.contact-panel,
.form-panel {
  padding: 26px;
}

.contact-panel h2,
.form-panel h2 {
  margin-top: 0;
}

.contact-method {
  padding: 16px 0;
  border-top: 1px solid var(--line);
}

.contact-method:first-of-type {
  border-top: 0;
  padding-top: 0;
}

.contact-method strong {
  display: block;
  margin-bottom: 4px;
  color: var(--ink);
}

.contact-method a,
.contact-method span {
  color: var(--muted);
  font-size: 15px;
}

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

.form-field {
  display: flex;
  flex-direction: column;
  gap: 7px;
}

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

.form-field label {
  color: #334155;
  font-size: 14px;
  font-weight: 760;
}

.form-field input,
.form-field textarea {
  width: 100%;
  border: 1px solid #cbd5e1;
  border-radius: 8px;
  padding: 11px 12px;
  color: var(--ink);
  background: var(--surface);
  outline: none;
}

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

.form-field input:focus,
.form-field textarea:focus {
  border-color: var(--teal);
  box-shadow: 0 0 0 3px rgba(15, 118, 110, 0.12);
}

.form-note {
  margin: 14px 0 0;
  color: var(--muted);
  font-size: 13px;
}

.thankyou-card {
  max-width: 720px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 38px;
  box-shadow: 0 18px 48px rgba(16, 32, 51, 0.08);
}

.checkmark {
  width: 44px;
  height: 44px;
  border-radius: 8px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #e9f8ef;
  color: var(--green);
  font-weight: 900;
  font-size: 24px;
  margin-bottom: 20px;
}

.legal-hero {
  max-width: 820px;
}

.legal-title {
  margin: 0;
  color: var(--ink);
  font-size: 48px;
  font-weight: 820;
  line-height: 1.08;
  letter-spacing: -0.02em;
}

.legal-summary {
  max-width: 760px;
  margin: 18px 0 0;
  color: var(--muted);
  font-size: 18px;
}

.legal-meta {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 22px;
  margin: 22px 0 0;
  color: #53645f;
  font-size: 14px;
}

.legal-meta strong {
  color: var(--ink);
}

.legal-layout {
  display: grid;
  grid-template-columns: 240px minmax(0, 1fr);
  gap: 34px;
  align-items: start;
  margin-top: 42px;
}

.legal-nav {
  position: sticky;
  top: 96px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: rgba(255, 253, 247, 0.94);
  padding: 20px;
}

.legal-nav strong {
  display: block;
  margin-bottom: 10px;
  font-size: 14px;
}

.legal-nav a {
  display: block;
  padding: 5px 0;
  color: var(--muted);
  font-size: 13px;
  line-height: 1.35;
  text-decoration: none;
}

.legal-nav a:hover,
.legal-nav a:focus-visible {
  color: var(--teal-dark);
}

.legal-document {
  min-width: 0;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 38px clamp(24px, 5vw, 58px);
  box-shadow: 0 18px 48px rgba(16, 32, 51, 0.06);
}

.legal-notice {
  margin: 0 0 34px;
  border-left: 4px solid var(--teal);
  border-radius: 0 8px 8px 0;
  background: #edf7f4;
  padding: 16px 18px;
  color: #29443d;
  font-size: 14px;
}

.legal-document section {
  scroll-margin-top: 102px;
}

.legal-document section + section {
  margin-top: 38px;
  padding-top: 34px;
  border-top: 1px solid var(--line);
}

.legal-document h2 {
  margin: 0 0 18px;
  color: var(--ink);
  font-size: 25px;
  line-height: 1.25;
}

.legal-document h3 {
  margin: 24px 0 8px;
  color: var(--ink);
  font-size: 17px;
  line-height: 1.35;
}

.legal-document p,
.legal-document li {
  color: #42514d;
  font-size: 15px;
  line-height: 1.72;
}

.legal-document p {
  margin: 0 0 14px;
}

.legal-notice p:last-child {
  margin-bottom: 0;
}

.legal-document ul,
.legal-document ol {
  margin: 10px 0 16px;
  padding-left: 24px;
}

.legal-document li + li {
  margin-top: 7px;
}

.legal-document .legal-alpha-list {
  list-style: none;
  padding-left: 0;
}

.legal-alpha-list li {
  display: grid;
  grid-template-columns: 32px minmax(0, 1fr);
  gap: 4px;
}

.legal-document a {
  color: var(--teal-dark);
  text-underline-offset: 3px;
}

.legal-caps {
  color: var(--ink) !important;
  font-weight: 700;
}

.legal-contact {
  margin-top: 34px;
  border-radius: 8px;
  background: #fff1d2;
  padding: 20px;
}

.legal-contact p:last-child {
  margin-bottom: 0;
}

@media (max-width: 980px) {
  .desktop-nav {
    display: none;
  }

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

  .mobile-nav.is-open {
    display: block;
  }

  .hero h1 {
    font-size: 46px;
  }

  .hero-copy {
    font-size: 18px;
  }

  .stats-grid,
  .feature-grid,
  .timeline,
  .role-grid,
  .footer-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .visual-grid,
  .quote-layout,
  .contact-grid,
  .legal-layout {
    grid-template-columns: 1fr;
  }

  .legal-nav {
    position: static;
    columns: 2;
  }

  .legal-nav strong {
    column-span: all;
  }

  .header-row,
  .cta-content {
    align-items: start;
    flex-direction: column;
  }

  .header-row .section-intro {
    max-width: 720px;
  }
}

@media (max-width: 700px) {
  .header-inner,
  .container {
    width: auto;
    padding-left: 18px;
    padding-right: 18px;
  }

  .header-inner {
    padding-left: 18px;
    padding-right: 18px;
  }

  .hero {
    min-height: 86svh;
    padding: 118px 0 58px;
  }

  .hero-bg::after {
    background:
      linear-gradient(90deg, rgba(255,253,247,0.98) 0%, rgba(255,253,247,0.92) 64%, rgba(255,253,247,0.5) 100%),
      linear-gradient(180deg, rgba(255,253,247,0.34) 0%, rgba(255,253,247,1) 100%);
  }

  .hero-content {
    max-width: 100%;
    min-width: 0;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 34px;
    line-height: 1.1;
    overflow-wrap: break-word;
  }

  .hero-copy,
  .section-intro,
  .contact-intro,
  .thankyou-copy,
  .legal-summary {
    max-width: 100%;
    font-size: 16px;
    overflow-wrap: break-word;
  }

  .section,
  .section-tight {
    padding: 60px 0;
  }

  .section-heading,
  .contact-title,
  .thankyou-title,
  .legal-title {
    font-size: 32px;
  }

  .stats-grid,
  .feature-grid,
  .timeline,
  .quote-points,
  .role-grid,
  .footer-grid,
  .form-grid {
    grid-template-columns: 1fr;
  }

  .window-footer {
    grid-template-columns: 1fr;
  }

  .window-metric {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .window-metric:last-child {
    border-bottom: 0;
  }

  .product-table {
    font-size: 12px;
  }

  .product-table th,
  .product-table td {
    padding: 10px 9px;
  }

  .hero-actions,
  .section-actions {
    flex-direction: column;
    align-items: stretch;
  }

  .button {
    width: 100%;
    max-width: 100%;
  }

  .hero-proof {
    max-width: 100%;
  }

  .footer-grid {
    gap: 24px;
  }

  .contact-main,
  .thankyou-main,
  .legal-main {
    padding-top: 116px;
  }

  .contact-panel,
  .form-panel,
  .thankyou-card,
  .legal-document {
    padding: 22px;
  }

  .legal-nav {
    columns: 1;
  }
}
