:root {
  --burgundy: #7f0e00;
  --burgundy-dark: #5d0a00;
  --ink: #171717;
  --muted: #5d6065;
  --paper: #ffffff;
  --soft: #f4f1ef;
  --line: #ded9d6;
  --success: #235b3a;
  --shadow: 0 18px 50px rgba(25, 17, 14, 0.12);
  --radius: 20px;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--paper);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
}
img, svg { display: block; max-width: 100%; }
a { color: inherit; }
button, input, textarea, select { font: inherit; }

.skip-link {
  position: absolute;
  left: -9999px;
  top: 0;
  z-index: 9999;
  padding: .8rem 1rem;
  background: var(--ink);
  color: white;
}
.skip-link:focus { left: 1rem; top: 1rem; }

.container { width: min(calc(100% - 2rem), var(--max)); margin-inline: auto; }
.narrow { width: min(calc(100% - 2rem), 780px); margin-inline: auto; }

.topbar {
  background: var(--ink);
  color: white;
  font-size: .92rem;
}
.topbar .container {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  align-items: center;
  padding-block: .55rem;
}
.topbar a { text-decoration: none; font-weight: 700; }
.topbar a:hover { text-decoration: underline; }

.site-header {
  position: sticky;
  top: 0;
  z-index: 1000;
  background: rgba(255,255,255,.96);
  backdrop-filter: blur(12px);
  border-bottom: 1px solid rgba(127,14,0,.1);
}
.nav-wrap {
  min-height: 78px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1.5rem;
}
.brand {
  display: inline-flex;
  align-items: center;
  gap: .8rem;
  text-decoration: none;
  min-width: 0;
}
.brand-mark {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  background: var(--burgundy);
  color: white;
  font-weight: 900;
  letter-spacing: -.05em;
  box-shadow: inset 0 0 0 2px rgba(255,255,255,.18);
}
.brand-text { display: flex; flex-direction: column; line-height: 1.1; }
.brand-text strong { font-size: 1.02rem; letter-spacing: -.02em; }
.brand-text span { color: var(--muted); font-size: .78rem; margin-top: .2rem; }

.site-nav { display: flex; align-items: center; gap: 1.35rem; }
.site-nav a { text-decoration: none; font-weight: 750; font-size: .96rem; }
.site-nav a:hover, .site-nav a[aria-current="page"] { color: var(--burgundy); }
.nav-toggle {
  display: none;
  border: 1px solid var(--line);
  border-radius: 10px;
  background: white;
  width: 44px;
  height: 44px;
  cursor: pointer;
}
.nav-toggle span,
.nav-toggle::before,
.nav-toggle::after {
  content: "";
  display: block;
  width: 22px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
  transition: .2s ease;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: .5rem;
  min-height: 48px;
  padding: .78rem 1.1rem;
  border: 0;
  border-radius: 12px;
  background: var(--burgundy);
  color: white;
  font-weight: 800;
  text-decoration: none;
  cursor: pointer;
  box-shadow: 0 8px 24px rgba(127,14,0,.18);
  transition: transform .15s ease, background .15s ease;
}
.button:hover { background: var(--burgundy-dark); transform: translateY(-1px); }
.button.secondary { background: white; color: var(--ink); border: 1px solid var(--line); box-shadow: none; }
.button.secondary:hover { border-color: var(--burgundy); color: var(--burgundy); }
.button.small { min-height: 42px; padding: .62rem .9rem; }

.hero {
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(circle at 85% 22%, rgba(127,14,0,.16), transparent 27rem),
    linear-gradient(135deg, #fff 0%, #f7f2ef 60%, #efe4df 100%);
}
.hero::after {
  content: "";
  position: absolute;
  inset: auto -8rem -13rem auto;
  width: 34rem;
  height: 34rem;
  border: 5rem solid rgba(127,14,0,.08);
  border-radius: 50%;
}
.hero-grid {
  position: relative;
  z-index: 1;
  min-height: 660px;
  display: grid;
  grid-template-columns: 1.15fr .85fr;
  gap: clamp(2rem, 6vw, 6rem);
  align-items: center;
  padding-block: 4.5rem;
}
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: .45rem;
  color: var(--burgundy);
  text-transform: uppercase;
  letter-spacing: .12em;
  font-size: .78rem;
  font-weight: 900;
}
.eyebrow::before { content: ""; width: 28px; height: 3px; background: currentColor; }
h1, h2, h3 { line-height: 1.12; margin: 0; letter-spacing: -.035em; }
h1 { font-size: clamp(2.75rem, 6vw, 5.5rem); max-width: 12ch; margin-top: 1rem; }
h2 { font-size: clamp(2rem, 4vw, 3.25rem); }
h3 { font-size: 1.28rem; }
.lead { font-size: clamp(1.08rem, 2vw, 1.3rem); color: #414348; max-width: 62ch; }
.hero .lead { max-width: 56ch; margin: 1.4rem 0 0; }
.cta-row { display: flex; gap: .85rem; flex-wrap: wrap; margin-top: 1.7rem; }
.microcopy { color: var(--muted); font-size: .9rem; margin-top: 1rem; }

.hero-card {
  position: relative;
  background: rgba(255,255,255,.94);
  border: 1px solid rgba(127,14,0,.12);
  border-radius: 28px;
  padding: clamp(1.4rem, 4vw, 2.4rem);
  box-shadow: var(--shadow);
}
.hero-card::before {
  content: "";
  position: absolute;
  inset: 0 auto 0 0;
  width: 7px;
  border-radius: 28px 0 0 28px;
  background: var(--burgundy);
}
.checklist { list-style: none; padding: 0; margin: 1.3rem 0 0; display: grid; gap: .8rem; }
.checklist li { position: relative; padding-left: 1.8rem; }
.checklist li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: .05rem;
  width: 1.25rem;
  height: 1.25rem;
  border-radius: 50%;
  display: grid;
  place-items: center;
  background: rgba(35,91,58,.12);
  color: var(--success);
  font-size: .78rem;
  font-weight: 900;
}

.trust-strip { border-block: 1px solid var(--line); background: white; }
.trust-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.trust-item { padding: 1.3rem; border-right: 1px solid var(--line); text-align: center; }
.trust-item:last-child { border-right: 0; }
.trust-item strong { display: block; }
.trust-item span { display: block; color: var(--muted); font-size: .88rem; }

.section { padding-block: clamp(4.25rem, 8vw, 7rem); }
.section.soft { background: var(--soft); }
.section.dark { background: var(--ink); color: white; }
.section-head { display: flex; justify-content: space-between; align-items: end; gap: 2rem; margin-bottom: 2.25rem; }
.section-head p { margin: 0; color: var(--muted); max-width: 58ch; }
.section.dark .section-head p { color: #c6c6c6; }

.cards { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem; }
.card {
  background: white;
  border: 1px solid var(--line);
  border-radius: var(--radius);
  padding: 1.45rem;
  box-shadow: 0 10px 24px rgba(26,20,18,.05);
}
.card p { color: var(--muted); margin-bottom: 0; }
.icon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  display: grid;
  place-items: center;
  margin-bottom: 1rem;
  background: rgba(127,14,0,.09);
  color: var(--burgundy);
  font-size: 1.35rem;
  font-weight: 900;
}
.card-link { display: inline-flex; margin-top: 1rem; color: var(--burgundy); font-weight: 800; text-decoration: none; }
.card-link:hover { text-decoration: underline; }

.split { display: grid; grid-template-columns: 1fr 1fr; gap: clamp(2rem, 7vw, 6rem); align-items: center; }
.feature-panel {
  position: relative;
  min-height: 430px;
  border-radius: 28px;
  overflow: hidden;
  background: linear-gradient(145deg, var(--burgundy), #280400);
  color: white;
  padding: clamp(1.5rem, 5vw, 3rem);
  display: flex;
  flex-direction: column;
  justify-content: end;
}
.feature-panel::before,
.feature-panel::after {
  content: "";
  position: absolute;
  border-radius: 50%;
  border: 3rem solid rgba(255,255,255,.08);
}
.feature-panel::before { width: 23rem; height: 23rem; top: -12rem; right: -8rem; }
.feature-panel::after { width: 12rem; height: 12rem; top: 4rem; right: 5rem; border-width: 1.5rem; }
.feature-panel > * { position: relative; z-index: 1; }
.feature-panel .big-number { font-size: clamp(4rem, 10vw, 8rem); line-height: .8; font-weight: 950; letter-spacing: -.09em; }
.feature-panel p { color: rgba(255,255,255,.82); max-width: 34ch; }

.steps { counter-reset: steps; display: grid; gap: 1rem; }
.step {
  counter-increment: steps;
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 1rem;
  padding: 1.2rem 0;
  border-bottom: 1px solid var(--line);
}
.step::before {
  content: counter(steps, decimal-leading-zero);
  color: var(--burgundy);
  font-weight: 950;
  font-size: 1.25rem;
}
.step p { color: var(--muted); margin: .35rem 0 0; }

.area-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1rem; }
.area-card {
  min-height: 245px;
  display: flex;
  flex-direction: column;
  justify-content: end;
  padding: 1.35rem;
  border-radius: 20px;
  background: linear-gradient(160deg, #fff, #eee6e2);
  border: 1px solid var(--line);
  text-decoration: none;
  transition: transform .15s ease, border-color .15s ease;
}
.area-card:hover { transform: translateY(-3px); border-color: var(--burgundy); }
.area-card small { color: var(--burgundy); text-transform: uppercase; letter-spacing: .1em; font-weight: 900; }
.area-card p { color: var(--muted); margin-bottom: 0; }

.callout {
  border-radius: 28px;
  background: var(--burgundy);
  color: white;
  padding: clamp(1.6rem, 5vw, 3.2rem);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 2rem;
}
.callout p { color: rgba(255,255,255,.84); max-width: 58ch; margin-bottom: 0; }
.callout .button { background: white; color: var(--burgundy); box-shadow: none; }
.callout .button:hover { background: #f8eded; }

.page-hero {
  background: var(--soft);
  border-bottom: 1px solid var(--line);
  padding-block: clamp(3.5rem, 8vw, 6rem);
}
.page-hero h1 { max-width: 16ch; font-size: clamp(2.6rem, 6vw, 4.8rem); }
.breadcrumbs { font-size: .88rem; color: var(--muted); margin-bottom: 1rem; }
.breadcrumbs a { color: var(--burgundy); }

.content-grid { display: grid; grid-template-columns: minmax(0, 1fr) 330px; gap: clamp(2rem, 6vw, 5rem); align-items: start; }
.prose h2 { margin-top: 2.2rem; font-size: clamp(1.8rem, 4vw, 2.5rem); }
.prose h3 { margin-top: 1.7rem; }
.prose p, .prose li { color: #484b50; }
.prose ul { padding-left: 1.25rem; }
.sidebar {
  position: sticky;
  top: 108px;
  background: var(--soft);
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 1.35rem;
}
.sidebar h3 { margin-bottom: .8rem; }
.sidebar .button { width: 100%; margin-top: .6rem; }

.faq { display: grid; gap: .75rem; }
details {
  border: 1px solid var(--line);
  border-radius: 14px;
  padding: 1rem 1.1rem;
  background: white;
}
summary { cursor: pointer; font-weight: 850; }
details p { color: var(--muted); margin-bottom: .2rem; }
.section.dark details { color: var(--ink); }

.form-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.field { display: grid; gap: .35rem; }
.field.full { grid-column: 1 / -1; }
label { font-weight: 800; font-size: .92rem; }
input, textarea, select {
  width: 100%;
  border: 1px solid #cfc8c4;
  border-radius: 11px;
  padding: .8rem .9rem;
  background: white;
  color: var(--ink);
}
input:focus, textarea:focus, select:focus { outline: 3px solid rgba(127,14,0,.12); border-color: var(--burgundy); }
textarea { min-height: 150px; resize: vertical; }
.form-note { font-size: .85rem; color: var(--muted); }
.status { margin-top: .85rem; font-weight: 750; }

.site-footer { background: #0e0e0e; color: white; padding-top: 3.5rem; }
.footer-grid { display: grid; grid-template-columns: 1.3fr .8fr .8fr; gap: 2rem; }
.site-footer p, .site-footer a { color: #b9b9b9; }
.site-footer a:hover { color: white; }
.footer-links { display: grid; gap: .55rem; }
.footer-links a { text-decoration: none; }
.footer-bottom { margin-top: 2.8rem; padding-block: 1rem; border-top: 1px solid #292929; display: flex; justify-content: space-between; gap: 1rem; font-size: .85rem; color: #aaa; }

.mobile-call { display: none; }

@media (max-width: 900px) {
  .topbar .container { justify-content: center; }
  .topbar span:first-child { display: none; }
  .nav-toggle { display: block; }
  .site-nav {
    display: none;
    position: absolute;
    top: 78px;
    left: 0;
    right: 0;
    flex-direction: column;
    align-items: stretch;
    gap: 0;
    padding: .75rem 1rem 1rem;
    background: white;
    border-bottom: 1px solid var(--line);
    box-shadow: 0 16px 30px rgba(0,0,0,.08);
  }
  .site-nav.open { display: flex; }
  .site-nav a { padding: .75rem .5rem; }
  .site-nav .button { margin-top: .4rem; }
  .hero-grid, .split, .content-grid { grid-template-columns: 1fr; }
  .hero-grid { min-height: auto; }
  .trust-grid { grid-template-columns: repeat(2, 1fr); }
  .trust-item:nth-child(2) { border-right: 0; }
  .trust-item:nth-child(-n+2) { border-bottom: 1px solid var(--line); }
  .cards { grid-template-columns: repeat(2, 1fr); }
  .area-grid { grid-template-columns: repeat(2, 1fr); }
  .sidebar { position: static; }
  .footer-grid { grid-template-columns: 1fr 1fr; }
  .footer-grid > :first-child { grid-column: 1 / -1; }
}

@media (max-width: 620px) {
  body { padding-bottom: 67px; }
  .brand-text span { display: none; }
  .hero-grid { padding-block: 3.3rem; }
  h1 { font-size: clamp(2.55rem, 14vw, 4rem); }
  .section-head { align-items: start; flex-direction: column; }
  .cards, .area-grid, .form-grid, .footer-grid { grid-template-columns: 1fr; }
  .field.full { grid-column: auto; }
  .callout { align-items: stretch; flex-direction: column; }
  .footer-grid > :first-child { grid-column: auto; }
  .footer-bottom { flex-direction: column; }
  .mobile-call {
    position: fixed;
    z-index: 1200;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1px;
    left: 0;
    right: 0;
    bottom: 0;
    background: white;
    border-top: 1px solid var(--line);
    box-shadow: 0 -8px 24px rgba(0,0,0,.09);
  }
  .mobile-call a { padding: .8rem; text-align: center; text-decoration: none; font-weight: 900; }
  .mobile-call a:first-child { background: var(--ink); color: white; }
  .mobile-call a:last-child { background: var(--burgundy); color: white; }
}
