:root {
  --paper: #f8f4ee;
  --paper-deep: #f2ece3;
  --surface: #ffffff;
  --ink: #11100f;
  --muted: #6f6b68;
  --line: #e5ddd4;
  --accent: #ff654d;
  --accent-dark: #d83e2b;
  --apricot: #ffead0;
  --shadow: 0 30px 80px rgba(78, 53, 36, 0.14);
  --radius: 28px;
  --max: 1240px;
}

* { box-sizing: border-box; }

html { scroll-behavior: smooth; }

body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  font-size: 17px;
  line-height: 1.65;
  text-rendering: optimizeLegibility;
}

img { display: block; max-width: 100%; }
a { color: inherit; }
button, a { -webkit-tap-highlight-color: transparent; }

:focus-visible {
  outline: 3px solid var(--accent);
  outline-offset: 4px;
}

.skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 100;
  padding: 10px 16px;
  border-radius: 10px;
  background: var(--ink);
  color: #fff;
  transform: translateY(-150%);
}

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

.site-header {
  position: sticky;
  top: 0;
  z-index: 20;
  border-bottom: 1px solid rgba(229, 221, 212, 0.88);
  background: rgba(248, 244, 238, 0.9);
  backdrop-filter: blur(20px);
}

.header-inner,
.footer-inner,
.shell {
  width: min(calc(100% - 48px), var(--max));
  margin-inline: auto;
}

.header-inner {
  min-height: 82px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
}

.brand {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-size: 1.28rem;
  font-weight: 850;
  letter-spacing: -0.04em;
  text-decoration: none;
}

.brand img {
  width: 42px;
  height: 42px;
  border-radius: 10px;
}

.site-nav {
  display: flex;
  align-items: center;
  gap: clamp(18px, 3vw, 42px);
  color: #4f4b48;
  font-size: 0.94rem;
}

.site-nav a {
  position: relative;
  padding: 28px 0 25px;
  text-decoration: none;
}

.site-nav a::after {
  content: "";
  position: absolute;
  left: 0;
  right: 100%;
  bottom: 19px;
  height: 2px;
  background: var(--accent);
  transition: right 180ms ease;
}

.site-nav a:hover::after,
.site-nav a[aria-current="page"]::after { right: 0; }

.site-nav a[aria-current="page"] { color: var(--ink); }

h1, h2, h3 {
  margin: 0;
  font-weight: 850;
  line-height: 1.05;
  letter-spacing: -0.055em;
}

h1 { font-size: clamp(3.5rem, 7.7vw, 7.2rem); }
h2 { font-size: clamp(2.2rem, 4.6vw, 4.4rem); }
h3 { font-size: 1.18rem; letter-spacing: -0.025em; }

.hero {
  min-height: 790px;
  display: grid;
  grid-template-columns: minmax(0, 1.2fr) minmax(300px, 0.62fr);
  align-items: center;
  gap: clamp(48px, 8vw, 120px);
  padding: 86px 0 74px;
}

.hero-copy { align-self: center; }

.hero-copy h1 {
  font-size: clamp(3.5rem, 6.2vw, 5.7rem);
  white-space: nowrap;
}

.hero-copy p {
  max-width: 620px;
  margin: 28px 0 38px;
  color: var(--muted);
  font-size: clamp(1.15rem, 2vw, 1.55rem);
  line-height: 1.5;
}

.primary-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 58px;
  padding: 0 26px;
  border-radius: 16px;
  background: var(--accent);
  color: #fff;
  font-weight: 760;
  text-decoration: none;
  box-shadow: 0 14px 30px rgba(255, 101, 77, 0.22);
  transition: transform 180ms ease, background 180ms ease;
}

.primary-link:hover { transform: translateY(-2px); background: var(--accent-dark); }

.phone-wrap {
  position: relative;
  width: min(100%, 360px);
  justify-self: end;
  padding: 12px;
  border: 4px solid #171615;
  border-radius: 58px;
  background: #171615;
  box-shadow: var(--shadow);
  transform: rotate(1.2deg);
}

.phone-wrap::before {
  content: "";
  position: absolute;
  z-index: 2;
  top: 21px;
  left: 50%;
  width: 112px;
  height: 30px;
  border-radius: 18px;
  background: #0b0a0a;
  transform: translateX(-50%);
}

.phone-wrap img {
  width: 100%;
  border-radius: 43px;
}

.steps {
  padding: 48px 0 110px;
}

.steps h2 { margin-bottom: 50px; }

.step-list {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-block: 1px solid var(--line);
}

.step {
  padding: 38px 38px 44px 0;
}

.step + .step {
  padding-left: 38px;
  border-left: 1px solid var(--line);
}

.step-number {
  display: block;
  margin-bottom: 22px;
  color: var(--accent);
  font-size: 0.82rem;
  font-weight: 820;
  letter-spacing: 0.11em;
  text-transform: uppercase;
}

.step p, .content-section p, .content-section li { color: var(--muted); }

.privacy-feature {
  margin-bottom: 110px;
  display: grid;
  grid-template-columns: 1.15fr 0.85fr;
  gap: 48px;
  align-items: center;
  padding: clamp(38px, 6vw, 76px);
  border-radius: var(--radius);
  background: var(--apricot);
}

.privacy-feature p {
  max-width: 690px;
  margin: 22px 0 0;
  color: #5c5651;
  font-size: 1.08rem;
}

.assurances {
  display: grid;
  gap: 15px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.assurances li {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
}

.assurances li::before {
  content: "✓";
  width: 26px;
  height: 26px;
  display: grid;
  place-items: center;
  border-radius: 50%;
  background: var(--accent);
  color: #fff;
  font-size: 0.8rem;
}

.link-band {
  display: grid;
  grid-template-columns: 1fr 1fr;
  margin-bottom: 110px;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.link-band a {
  min-height: 190px;
  padding: 38px 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  text-decoration: none;
}

.link-band a + a {
  padding-left: 48px;
  border-left: 1px solid var(--line);
}

.link-band strong { font-size: clamp(1.7rem, 3vw, 2.7rem); letter-spacing: -0.045em; }
.link-band span { color: var(--accent-dark); font-weight: 750; }

.site-footer { border-top: 1px solid var(--line); }

.footer-inner {
  min-height: 110px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  color: var(--muted);
  font-size: 0.86rem;
}

.footer-links { display: flex; gap: 26px; }
.footer-links a { text-underline-offset: 4px; }

.page-hero {
  padding: 88px 0 58px;
  border-bottom: 1px solid var(--line);
}

.page-hero h1 { font-size: clamp(3.8rem, 7vw, 6.6rem); }
.page-hero p { max-width: 760px; margin: 24px 0 0; color: var(--muted); font-size: 1.2rem; }
.updated { display: block; margin-top: 16px; color: var(--muted); font-size: 0.9rem; }

.content-layout {
  display: grid;
  grid-template-columns: 230px minmax(0, 1fr);
  gap: clamp(48px, 8vw, 110px);
  padding: 66px 0 120px;
}

.section-index {
  position: sticky;
  top: 120px;
  align-self: start;
  padding-right: 28px;
  border-right: 1px solid var(--line);
}

.section-index strong { display: block; margin-bottom: 18px; font-size: 0.88rem; }
.section-index a { display: block; padding: 7px 0; color: var(--muted); font-size: 0.86rem; text-decoration: none; }
.section-index a:hover { color: var(--accent-dark); }

.content { max-width: 850px; }
.content-section { scroll-margin-top: 115px; padding: 0 0 50px; }
.content-section + .content-section { padding-top: 50px; border-top: 1px solid var(--line); }
.content-section h2 { margin-bottom: 22px; font-size: clamp(1.75rem, 3vw, 2.55rem); }
.content-section h3 { margin: 30px 0 10px; }
.content-section p { margin: 0 0 18px; }
.content-section ul, .content-section ol { margin: 16px 0 0; padding-left: 24px; }
.content-section li + li { margin-top: 9px; }

.callout {
  margin: 8px 0 60px;
  padding: 34px;
  border-radius: 22px;
  background: var(--apricot);
}

.callout strong { display: block; margin-bottom: 8px; font-size: 1.45rem; letter-spacing: -0.035em; }
.callout p { margin: 0; color: #5c5651; }

.support-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1px;
  margin: 36px 0 0;
  border: 1px solid var(--line);
  background: var(--line);
}

.support-item { padding: 30px; background: var(--paper); }
.support-item h3 { margin-bottom: 12px; }
.support-item p { margin: 0; }

details { padding: 24px 0; border-top: 1px solid var(--line); }
details:last-child { border-bottom: 1px solid var(--line); }
summary { cursor: pointer; font-weight: 800; letter-spacing: -0.02em; }
details p { margin: 14px 0 0; }

.contact-note {
  padding: 26px;
  border-left: 4px solid var(--accent);
  background: var(--surface);
}

@media (max-width: 900px) {
  .hero { grid-template-columns: 1fr 0.72fr; gap: 38px; }
  .hero-copy h1 { font-size: clamp(3.5rem, 8vw, 5rem); white-space: normal; }
  .content-layout { grid-template-columns: 1fr; }
  .section-index { position: static; display: none; }
}

@media (max-width: 700px) {
  body { font-size: 16px; }
  .header-inner, .footer-inner, .shell { width: min(calc(100% - 32px), var(--max)); }
  .header-inner { min-height: 116px; flex-wrap: wrap; align-items: center; padding: 12px 0 0; gap: 6px; }
  .brand img { width: 40px; height: 40px; }
  .site-nav { order: 2; width: 100%; justify-content: space-between; gap: 10px; font-size: 0.78rem; }
  .site-nav a { padding: 11px 0 17px; }
  .site-nav a::after { bottom: 10px; }
  .hero { min-height: auto; grid-template-columns: 1fr; padding: 64px 0 80px; }
  .hero-copy p { margin: 22px 0 30px; }
  .phone-wrap { width: min(88vw, 390px); justify-self: center; margin-top: 24px; transform: rotate(0); }
  .step-list { grid-template-columns: 1fr; }
  .step, .step + .step { padding: 28px 0; border-left: 0; }
  .step + .step { border-top: 1px solid var(--line); }
  .privacy-feature { grid-template-columns: 1fr; padding: 34px 26px; }
  .link-band { grid-template-columns: 1fr; }
  .link-band a + a { padding-left: 0; border-left: 0; border-top: 1px solid var(--line); }
  .footer-inner { min-height: 150px; flex-direction: column; justify-content: center; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; }
  .page-hero { padding: 64px 0 42px; }
  .content-layout { padding: 48px 0 84px; }
  .support-grid { grid-template-columns: 1fr; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  *, *::before, *::after { transition-duration: 0.01ms !important; animation-duration: 0.01ms !important; }
}
