:root {
  color-scheme: light;
  --ink: #14181d;
  --ink-soft: #26313b;
  --muted: #606d79;
  --muted-strong: #46525e;
  --line: #dde3e8;
  --line-strong: #c7d0d8;
  --panel: #ffffff;
  --paper: #f5f6f3;
  --paper-warm: #efede6;
  --steel: #17242d;
  --steel-soft: #22323c;
  --accent: #b95730;
  --accent-dark: #8d3e24;
  --amber: #d29535;
  --teal: #147c72;
  --blue: #2e647d;
  --success: #2f7350;
  --shadow-sm: 0 8px 24px rgba(20, 24, 29, 0.08);
  --shadow-md: 0 22px 60px rgba(20, 24, 29, 0.13);
  --max: 1180px;
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  margin: 0;
  background: var(--paper);
  color: var(--ink);
  line-height: 1.58;
  text-rendering: optimizeLegibility;
  overflow-x: hidden;
}

body::before {
  content: "";
  position: fixed;
  inset: 0;
  z-index: -1;
  pointer-events: none;
  background:
    linear-gradient(90deg, rgba(20, 24, 29, 0.035) 1px, transparent 1px),
    linear-gradient(180deg, rgba(20, 24, 29, 0.025) 1px, transparent 1px);
  background-size: 80px 80px;
  -webkit-mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 48%);
  mask-image: linear-gradient(180deg, rgba(0, 0, 0, 0.72), transparent 48%);
}

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

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

::selection {
  background: rgba(185, 87, 48, 0.2);
}

.skip-link {
  position: absolute;
  left: -999px;
  top: 16px;
  z-index: 100;
  background: var(--panel);
  color: var(--ink);
  padding: 10px 14px;
  border: 1px solid var(--line);
  border-radius: 6px;
}

.skip-link:focus {
  left: 16px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(247, 248, 245, 0.94);
  border-bottom: 1px solid rgba(199, 208, 216, 0.74);
  backdrop-filter: blur(18px);
}

.nav {
  max-width: var(--max);
  width: 100%;
  min-height: 74px;
  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: 11px;
  min-width: 0;
  font-weight: 830;
  letter-spacing: 0;
}

.brand-mark {
  position: relative;
  width: 36px;
  height: 36px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  overflow: hidden;
  background: linear-gradient(135deg, #101820, #2b3b45);
  box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-size: 0.78rem;
  font-weight: 900;
}

.brand-mark::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 0;
  height: 4px;
  background: linear-gradient(90deg, var(--accent), var(--teal));
}

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

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  color: var(--muted-strong);
  font-size: 0.93rem;
  font-weight: 700;
}

.nav-links a {
  position: relative;
  padding: 9px 0;
}

.nav-links a:not(.btn)::after {
  content: "";
  position: absolute;
  left: 0;
  right: 0;
  bottom: 4px;
  height: 2px;
  transform: scaleX(0);
  transform-origin: left;
  background: var(--accent);
  transition: transform 0.18s ease;
}

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

.nav-links a:hover::after,
.nav-links a:focus::after {
  transform: scaleX(1);
}

.nav-toggle {
  display: none;
  flex: 0 0 auto;
  width: 42px;
  height: 42px;
  border: 1px solid var(--line-strong);
  border-radius: 7px;
  background: var(--panel);
  box-shadow: 0 1px 6px rgba(20, 24, 29, 0.08);
  cursor: pointer;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 4px auto;
  background: var(--ink);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  min-height: 44px;
  padding: 11px 18px;
  border: 1px solid transparent;
  border-radius: 7px;
  font-weight: 790;
  line-height: 1.2;
  min-width: 0;
  text-align: center;
  white-space: normal;
  cursor: pointer;
  transition: transform 0.18s ease, border-color 0.18s ease, background 0.18s ease, color 0.18s ease, box-shadow 0.18s ease;
}

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

.btn-primary {
  background: var(--accent);
  color: #ffffff;
  box-shadow: 0 12px 26px rgba(185, 87, 48, 0.24);
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--accent-dark);
}

.btn-secondary {
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  border-color: rgba(255, 255, 255, 0.38);
}

.btn-secondary:hover,
.btn-secondary:focus {
  background: rgba(255, 255, 255, 0.18);
}

.btn-dark {
  background: var(--ink);
  color: #ffffff;
}

.btn-dark:hover,
.btn-dark:focus {
  background: #000000;
}

.btn-outline {
  background: var(--panel);
  color: var(--ink);
  border-color: var(--line-strong);
}

.hero {
  position: relative;
  isolation: isolate;
  min-height: min(780px, calc(100svh - 74px));
  display: grid;
  align-items: end;
  color: #ffffff;
  background-image:
    linear-gradient(90deg, rgba(12, 18, 21, 0.95), rgba(12, 18, 21, 0.8) 46%, rgba(12, 18, 21, 0.35)),
    linear-gradient(180deg, rgba(12, 18, 21, 0.2), rgba(12, 18, 21, 0.56)),
    var(--hero-image);
  background-position: center;
  background-size: cover;
}

.hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.05) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
  background-size: 96px 96px;
  opacity: 0.34;
}

.hero::after {
  content: "";
  position: absolute;
  inset: auto 0 0 0;
  z-index: -1;
  height: 170px;
  background: linear-gradient(0deg, rgba(12, 18, 21, 0.72), rgba(12, 18, 21, 0));
}

.hero-inner {
  width: 100%;
  max-width: var(--max);
  min-width: 0;
  margin: 0 auto;
  padding: 88px 24px 46px;
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  max-width: 100%;
  flex-wrap: wrap;
  margin: 0 0 18px;
  color: #f3c6ac;
  font-size: 0.76rem;
  font-weight: 820;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.eyebrow::before {
  content: "";
  flex: 0 0 auto;
  width: 28px;
  height: 2px;
  background: currentColor;
}

.hero h1 {
  max-width: 760px;
  overflow-wrap: normal;
  margin: 0;
  font-size: 5.9rem;
  line-height: 0.94;
  letter-spacing: 0;
}

.hero-copy {
  max-width: 770px;
  margin: 24px 0 0;
  color: #e8edf1;
  font-size: 1.16rem;
}

.trust-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 9px;
  margin-top: 22px;
}

.trust-badges span {
  display: inline-flex;
  align-items: center;
  min-height: 34px;
  padding: 6px 11px;
  border: 1px solid rgba(255, 255, 255, 0.24);
  border-radius: 999px;
  background: rgba(255, 255, 255, 0.1);
  color: #edf3f6;
  font-size: 0.82rem;
  font-weight: 780;
}

.trust-badges span::before {
  content: "";
  width: 7px;
  height: 7px;
  margin-right: 8px;
  border-radius: 50%;
  background: var(--teal);
  box-shadow: 0 0 0 3px rgba(20, 124, 114, 0.22);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 13px;
  margin-top: 30px;
}

.hero-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 0;
  max-width: 1040px;
  margin-top: 54px;
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  background: rgba(12, 18, 21, 0.45);
  box-shadow: 0 22px 70px rgba(0, 0, 0, 0.24);
  backdrop-filter: blur(12px);
}

.proof-item {
  min-height: 122px;
  padding: 18px;
  border-right: 1px solid rgba(255, 255, 255, 0.16);
}

.proof-item:last-child {
  border-right: 0;
}

.proof-value {
  display: block;
  color: #ffffff;
  font-size: 1.55rem;
  font-weight: 850;
  line-height: 1.04;
}

.proof-label {
  display: block;
  margin-top: 8px;
  color: #cfd8df;
  font-size: 0.88rem;
  overflow-wrap: anywhere;
}

.section {
  padding: 86px 24px;
  background: var(--panel);
}

.trust-strip {
  padding: 42px 24px;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.trust-panel {
  display: grid;
  grid-template-columns: minmax(260px, 0.8fr) minmax(0, 1.2fr);
  gap: 34px;
  align-items: start;
}

.trust-intro h2 {
  font-size: 2.2rem;
}

.trust-intro p:not(.section-kicker) {
  margin-top: 14px;
  color: var(--muted);
}

.trust-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  border: 1px solid var(--line);
  border-radius: 8px;
  overflow: hidden;
  background: var(--paper);
}

.trust-grid article {
  min-height: 190px;
  padding: 22px;
  background: #ffffff;
  border-right: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.trust-grid article:nth-child(2n) {
  border-right: 0;
}

.trust-grid article:nth-last-child(-n + 2) {
  border-bottom: 0;
}

.trust-value {
  display: inline-flex;
  margin-bottom: 14px;
  color: var(--accent-dark);
  font-size: 0.74rem;
  font-weight: 850;
  letter-spacing: 0.09em;
  text-transform: uppercase;
}

.trust-grid h3 {
  margin-bottom: 8px;
}

.trust-grid p {
  color: var(--muted);
}

.section-tight {
  padding: 52px 24px;
}

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

.section-ink {
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px),
    var(--steel);
  background-size: 84px 84px;
  color: #ffffff;
}

.section-steel {
  background: var(--steel-soft);
  color: #ffffff;
}

.container {
  max-width: var(--max);
  min-width: 0;
  margin: 0 auto;
}

.section-head {
  max-width: 760px;
  margin-bottom: 34px;
}

.section-head.center {
  margin-left: auto;
  margin-right: auto;
  text-align: center;
}

.section-kicker {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.75rem;
  font-weight: 850;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

h2,
h3,
h4 {
  margin: 0;
  line-height: 1.1;
  letter-spacing: 0;
}

h2 {
  font-size: 2.7rem;
}

h3 {
  font-size: 1.28rem;
}

h4 {
  font-size: 1rem;
}

.thank-title {
  margin: 0;
  font-size: 5rem;
  line-height: 0.96;
}

p {
  margin: 0;
}

.lead {
  margin-top: 16px;
  color: var(--muted);
  font-size: 1.06rem;
}

.section-ink .lead,
.section-steel .lead {
  color: #d2dbe2;
}

.grid {
  display: grid;
  gap: 18px;
}

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

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

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

.card {
  position: relative;
  overflow: hidden;
  min-width: 0;
  background: var(--panel);
  border: 1px solid var(--line);
  border-radius: 8px;
  padding: 24px;
  box-shadow: 0 1px 0 rgba(20, 24, 29, 0.03);
}

a.card {
  transition: transform 0.18s ease, border-color 0.18s ease, box-shadow 0.18s ease;
}

a.card:hover,
a.card:focus {
  transform: translateY(-2px);
  border-color: rgba(185, 87, 48, 0.36);
  box-shadow: var(--shadow-sm);
}

.card::before {
  content: "";
  position: absolute;
  left: 0;
  top: 0;
  width: 100%;
  height: 3px;
  background: linear-gradient(90deg, var(--accent), var(--teal));
  opacity: 0;
}

.card:hover::before,
.card:focus-within::before {
  opacity: 1;
}

.card-dark {
  background: rgba(255, 255, 255, 0.07);
  border-color: rgba(255, 255, 255, 0.14);
}

.card h3,
.card h4 {
  margin-bottom: 10px;
}

.card p,
.card li {
  color: var(--muted);
}

.card-dark p,
.card-dark li {
  color: #d8dee8;
}

.icon {
  width: 38px;
  height: 38px;
  margin-bottom: 18px;
  display: grid;
  place-items: center;
  border: 1px solid rgba(185, 87, 48, 0.24);
  border-radius: 7px;
  background: #fbf3ed;
  color: var(--accent-dark);
  font-size: 0.86rem;
  font-weight: 900;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}

.tag {
  display: inline-flex;
  align-items: center;
  min-height: 28px;
  padding: 5px 9px;
  border: 1px solid #d8dee4;
  border-radius: 999px;
  background: #f5f7f8;
  color: #39444f;
  font-size: 0.79rem;
  font-weight: 760;
}

.section-ink .tag,
.section-steel .tag {
  border-color: rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.1);
  color: #edf3f6;
}

.split {
  display: grid;
  grid-template-columns: minmax(0, 0.9fr) minmax(0, 1.1fr);
  gap: 42px;
  align-items: start;
}

.image-frame {
  min-height: 430px;
  overflow: hidden;
  border: 1px solid var(--line-strong);
  border-radius: 8px;
  background: #d8dde5;
  box-shadow: var(--shadow-md);
}

.image-frame img {
  width: 100%;
  height: 100%;
  min-height: 430px;
  object-fit: cover;
}

.feature-list {
  display: grid;
  gap: 14px;
  margin: 24px 0 0;
  padding: 0;
  list-style: none;
}

.feature-list li {
  display: grid;
  grid-template-columns: 26px 1fr;
  gap: 12px;
  align-items: start;
  color: #303a43;
}

.section-ink .feature-list li,
.section-steel .feature-list li {
  color: #d8dee8;
}

.check {
  position: relative;
  width: 22px;
  height: 22px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: #e5f0e9;
  color: transparent;
  font-size: 0;
}

.check::after {
  content: "";
  width: 6px;
  height: 11px;
  margin-top: -2px;
  border-right: 2px solid var(--success);
  border-bottom: 2px solid var(--success);
  transform: rotate(42deg);
}

.process {
  counter-reset: step;
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.14);
  border-radius: 8px;
  background: rgba(255, 255, 255, 0.06);
}

.process-step {
  counter-increment: step;
  position: relative;
  min-height: 270px;
  padding: 24px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.14);
}

.process-step:last-child {
  border-right: 0;
}

.process-step::before {
  content: counter(step, decimal-leading-zero);
  display: inline-flex;
  width: 44px;
  height: 44px;
  margin-bottom: 18px;
  align-items: center;
  justify-content: center;
  border: 1px solid rgba(255, 255, 255, 0.18);
  border-radius: 7px;
  background: rgba(255, 255, 255, 0.1);
  color: #ffffff;
  font-weight: 850;
}

.process-step p {
  color: #d8dee8;
}

.table-wrap {
  overflow-x: auto;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: var(--shadow-sm);
}

table {
  width: 100%;
  min-width: 760px;
  border-collapse: collapse;
}

th,
td {
  padding: 18px;
  border-bottom: 1px solid var(--line);
  text-align: left;
  vertical-align: top;
}

th {
  background: #eef2f4;
  color: #33404b;
  font-size: 0.8rem;
  font-weight: 850;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

td {
  color: var(--muted);
}

td:first-child {
  color: var(--ink);
  font-weight: 760;
}

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

.quote-band {
  padding: 60px 24px;
  background: #ffffff;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  color: var(--ink);
}

.quote-band blockquote {
  max-width: 980px;
  margin: 0 auto;
  padding-left: 24px;
  border-left: 4px solid var(--accent);
  color: var(--ink-soft);
  font-size: 1.9rem;
  font-weight: 780;
  line-height: 1.2;
}

.quote-band cite {
  display: block;
  max-width: 980px;
  margin: 18px auto 0;
  padding-left: 28px;
  color: var(--muted);
  font-style: normal;
}

.faq {
  display: grid;
  gap: 10px;
}

.faq details {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--panel);
  box-shadow: 0 1px 0 rgba(20, 24, 29, 0.03);
}

.faq summary {
  padding: 18px 20px;
  cursor: pointer;
  color: var(--ink-soft);
  font-weight: 820;
}

.faq p {
  margin: 0;
  padding: 0 20px 20px;
  color: var(--muted);
}

.contact-panel {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: 36px;
  align-items: start;
}

.form {
  display: grid;
  gap: 14px;
}

.form.card {
  border-color: rgba(255, 255, 255, 0.1);
  box-shadow: 0 22px 60px rgba(0, 0, 0, 0.22);
}

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

label {
  display: grid;
  gap: 6px;
  color: #2d3842;
  font-size: 0.87rem;
  font-weight: 760;
}

input,
select,
textarea {
  width: 100%;
  min-height: 46px;
  padding: 12px 13px;
  border: 1px solid #c8d1d9;
  border-radius: 7px;
  background: #ffffff;
  color: var(--ink);
  font: inherit;
}

textarea {
  min-height: 144px;
  resize: vertical;
}

input:focus,
select:focus,
textarea:focus {
  outline: 3px solid rgba(185, 87, 48, 0.17);
  border-color: var(--accent);
}

.hidden-field {
  position: absolute;
  left: -10000px;
  width: 1px;
  height: 1px;
  overflow: hidden;
}

.site-footer {
  padding: 48px 24px;
  background: #10161b;
  color: #c4ccd3;
}

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

.footer-grid h3,
.footer-grid h4 {
  color: #ffffff;
}

.footer-grid p,
.footer-grid a {
  color: #c4ccd3;
}

.footer-grid a:hover,
.footer-grid a:focus {
  color: #ffffff;
}

.footer-links {
  display: grid;
  gap: 8px;
  margin-top: 12px;
}

.footer-bottom {
  max-width: var(--max);
  margin: 34px auto 0;
  padding-top: 20px;
  border-top: 1px solid rgba(255, 255, 255, 0.12);
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 12px;
  font-size: 0.87rem;
}

.subhero {
  position: relative;
  isolation: isolate;
  padding: 104px 24px 70px;
  color: #ffffff;
  background-image:
    linear-gradient(90deg, rgba(12, 18, 21, 0.94), rgba(12, 18, 21, 0.78) 54%, rgba(12, 18, 21, 0.38)),
    var(--hero-image);
  background-position: center;
  background-size: cover;
}

.subhero::after {
  content: "";
  position: absolute;
  inset: 0;
  z-index: -1;
  background:
    linear-gradient(90deg, rgba(255, 255, 255, 0.045) 1px, transparent 1px),
    linear-gradient(180deg, rgba(255, 255, 255, 0.035) 1px, transparent 1px);
  background-size: 96px 96px;
  opacity: 0.35;
}

.subhero .container {
  max-width: 960px;
  min-width: 0;
  margin-left: auto;
  margin-right: auto;
}

.subhero h1 {
  max-width: 820px;
  overflow-wrap: normal;
  margin: 0;
  font-size: 4.35rem;
  line-height: 0.99;
  letter-spacing: 0;
}

.subhero p {
  max-width: 760px;
  margin: 22px 0 0;
  color: #e8edf1;
  font-size: 1.12rem;
}

.toc {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.toc a {
  padding: 8px 11px;
  border: 1px solid var(--line);
  border-radius: 999px;
  background: #ffffff;
  color: #303844;
  font-weight: 760;
}

.toc a:hover,
.toc a:focus {
  border-color: rgba(185, 87, 48, 0.44);
  color: var(--accent-dark);
}

.article-grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.76fr) minmax(0, 1.24fr);
  gap: 36px;
}

.article-body {
  display: grid;
  gap: 30px;
}

.article-body section {
  scroll-margin-top: 96px;
}

.article-body h2 {
  font-size: 2.25rem;
}

.article-body p + p {
  margin-top: 12px;
}

.article-body p,
.article-body li {
  color: var(--muted);
}

.article-body a {
  color: var(--accent-dark);
  font-weight: 760;
}

.article-body ul {
  margin: 14px 0 0;
  padding-left: 20px;
}

.article-body li {
  margin: 8px 0;
}

.sticky-note {
  position: sticky;
  top: 96px;
  align-self: start;
}

.source-note {
  margin-top: 12px;
  color: var(--muted);
  font-size: 0.9rem;
}

.source-note a {
  color: var(--accent-dark);
  font-weight: 760;
}

@media (max-width: 1080px) {
  .grid-4 {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

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

  .process-step {
    min-height: 230px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.14);
  }
}

@media (max-width: 920px) {
  .nav-toggle {
    display: block;
    background: var(--ink);
    border-color: var(--ink);
  }

  .nav-toggle span {
    background: #ffffff;
  }

  .nav-links {
    position: absolute;
    left: 0;
    right: 0;
    top: 74px;
    display: none;
    flex-direction: column;
    align-items: flex-start;
    gap: 0;
    padding: 12px 24px 18px;
    border-bottom: 1px solid var(--line);
    background: rgba(247, 248, 245, 0.98);
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    width: 100%;
    padding: 12px 0;
  }

  .nav-links a.btn {
    width: auto;
    margin-top: 8px;
    padding: 11px 18px;
  }

  .hero {
    min-height: auto;
  }

  .hero-inner {
    padding-top: 112px;
  }

  .hero h1 {
    font-size: 4.8rem;
  }

  h2 {
    font-size: 2.25rem;
  }

  .subhero h1 {
    font-size: 3.75rem;
  }

  .thank-title {
    font-size: 4.2rem;
  }

  .hero-proof,
  .grid-3,
  .grid-2,
  .trust-panel,
  .split,
  .contact-panel,
  .footer-grid,
  .article-grid {
    grid-template-columns: 1fr;
  }

  .hero-proof {
    margin-top: 38px;
  }

  .proof-item {
    min-height: auto;
    border-right: 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.16);
  }

  .proof-item:last-child {
    border-bottom: 0;
  }

  .image-frame,
  .image-frame img {
    min-height: 330px;
  }

  .sticky-note {
    position: static;
  }
}

@media (max-width: 640px) {
  .nav {
    min-height: 68px;
    padding: 0 18px;
  }

  .nav-links {
    top: 68px;
    padding-left: 18px;
    padding-right: 18px;
  }

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

  .section,
  .section-tight {
    padding: 62px 18px;
  }

  .hero-inner {
    padding: 96px 18px 34px;
  }

  .hero h1 {
    max-width: 100%;
    font-size: 2.75rem;
  }

  .hero-copy {
    font-size: 1rem;
  }

  .eyebrow {
    display: block;
    font-size: 0.68rem;
    line-height: 1.45;
  }

  .eyebrow::before {
    display: block;
    width: 20px;
    margin-bottom: 10px;
  }

  .hero-actions .btn {
    padding-left: 12px;
    padding-right: 12px;
    font-size: 0.94rem;
  }

  .hero-actions {
    display: grid;
  }

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

  .trust-badges {
    display: grid;
  }

  .trust-badges span {
    width: 100%;
  }

  .hero-proof,
  .grid-4,
  .trust-grid,
  .process {
    grid-template-columns: 1fr;
  }

  .trust-grid article,
  .trust-grid article:nth-child(2n),
  .trust-grid article:nth-last-child(-n + 2) {
    border-right: 0;
    border-bottom: 1px solid var(--line);
  }

  .trust-grid article:last-child {
    border-bottom: 0;
  }

  .process-step {
    min-height: auto;
    border-right: 0;
  }

  .subhero {
    padding: 82px 18px 56px;
  }

  .subhero h1 {
    font-size: 3rem;
  }

  h2 {
    font-size: 2rem;
  }

  h3 {
    font-size: 1.18rem;
  }

  .thank-title {
    font-size: 3.3rem;
  }

  .quote-band blockquote {
    font-size: 1.45rem;
  }

  .article-body h2 {
    font-size: 1.85rem;
  }

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

  .card {
    padding: 20px;
  }

  .quote-band blockquote,
  .quote-band cite {
    padding-left: 18px;
  }

  .footer-bottom {
    display: grid;
  }
}
