:root {
  --bg: #faf9f6;
  --surface: #ffffff;
  --soft: #f1f0ed;
  --ink: #111111;
  --muted: #554f50;
  --line: #d8d2d2;
  --max: 1180px;
}

* { box-sizing: border-box; }
html { scroll-behavior: smooth; }
body {
  margin: 0;
  color: var(--ink);
  background: var(--bg);
  font-family: "Hanken Grotesk", Arial, sans-serif;
  line-height: 1.65;
}
img { display: block; max-width: 100%; }
a { color: inherit; }
.wrap { width: min(calc(100% - 40px), var(--max)); margin-inline: auto; }
.site-header { border-bottom: 1px solid var(--line); background: rgba(250, 249, 246, .96); }
.nav { min-height: 96px; display: flex; align-items: center; justify-content: space-between; gap: 24px; }
.logo img { width: 42px; height: auto; }
.nav-links { display: flex; align-items: center; gap: 28px; font-size: 13px; font-weight: 700; text-transform: uppercase; letter-spacing: .14em; }
.nav-links a { text-decoration: none; border-bottom: 1px solid transparent; }
.nav-links a:hover, .nav-links a:focus-visible { border-color: var(--ink); }
.button { display: inline-flex; min-height: 48px; align-items: center; justify-content: center; padding: 12px 22px; border: 1px solid var(--ink); background: var(--ink); color: #fff; text-decoration: none; font-size: 13px; font-weight: 700; letter-spacing: .12em; text-transform: uppercase; transition: transform .2s ease, background .2s ease; }
.button:hover { transform: translateY(-2px); background: #2a2a2a; }
.button.secondary { background: transparent; color: var(--ink); }
.hero { padding: 92px 0 76px; border-bottom: 1px solid var(--line); }
.eyebrow { margin: 0 0 18px; color: var(--muted); font-size: 13px; font-weight: 800; letter-spacing: .16em; text-transform: uppercase; }
h1, h2 { font-family: "Bodoni Moda", Georgia, serif; font-weight: 500; letter-spacing: 0; line-height: 1.04; overflow-wrap: anywhere; }
h1 { max-width: 900px; margin: 0; font-size: clamp(48px, 7vw, 88px); }
h2 { margin: 0 0 24px; font-size: clamp(38px, 5vw, 62px); }
h3 { margin: 0 0 14px; font-size: 25px; line-height: 1.2; }
.lead { max-width: 760px; margin: 28px 0 0; color: var(--muted); font-size: clamp(18px, 2vw, 22px); }
.hero-actions { display: flex; flex-wrap: wrap; gap: 12px; margin-top: 34px; }
.section { padding: 78px 0; }
.section.soft { background: var(--soft); }
.section-head { max-width: 760px; margin-bottom: 38px; }
.section-head p { margin: 0; color: var(--muted); font-size: 18px; }
.grid { display: grid; grid-template-columns: repeat(3, minmax(0, 1fr)); gap: 22px; }
.grid.two { grid-template-columns: repeat(2, minmax(0, 1fr)); }
.pricing-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.pricing-grid .card { padding: 26px; }
.pricing-grid .card h2 { font-size: clamp(28px, 2.4vw, 36px); line-height: 1.12; }
.pricing-grid .price { font-size: 23px; }
.terms-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
.terms-grid .card h3, .support-grid .card h3 { font-size: 24px; font-weight: 750; }
.support-grid { grid-template-columns: repeat(4, minmax(0, 1fr)); }
.support-grid .card { padding: 26px; }
.support-grid .card p { font-size: 15px; }
.support-grid .price { font-size: 21px; line-height: 1.3; }
.support-note { margin-top: 30px; padding: 22px 24px; border-left: 4px solid var(--ink); background: var(--surface); color: var(--muted); }
.support-note strong { color: var(--ink); }
.card { display: flex; flex-direction: column; padding: 30px; border: 2px solid var(--ink); background: var(--surface); box-shadow: 5px 5px 0 var(--ink); }
.card.dark { background: var(--ink); color: #fff; box-shadow: 5px 5px 0 #cfc4c5; }
.card p { margin: 0 0 22px; color: var(--muted); }
.card.dark p { color: #d6d2d2; }
.card .price { margin-top: auto; padding-top: 10px; font-size: 26px; font-weight: 750; }
.text-link { display: inline-flex; width: fit-content; margin-top: 18px; padding-bottom: 3px; border-bottom: 1px solid currentColor; text-decoration: none; font-size: 13px; font-weight: 800; letter-spacing: .12em; text-transform: uppercase; }
.case-image { width: 100%; aspect-ratio: 16 / 10; object-fit: cover; border-bottom: 1px solid var(--line); }
.facts { display: grid; grid-template-columns: repeat(2, minmax(0, 1fr)); gap: 14px; margin: 28px 0 0; padding: 0; list-style: none; }
.facts li { padding: 18px; border: 1px solid var(--line); background: var(--surface); }
.faq { border-top: 1px solid var(--line); }
.faq details { padding: 22px 0; border-bottom: 1px solid var(--line); }
.faq summary { cursor: pointer; font-size: 20px; font-weight: 700; }
.faq p { max-width: 760px; margin: 14px 0 0; color: var(--muted); }
.contact-list { display: grid; gap: 14px; padding: 0; list-style: none; }
.contact-list a { display: block; padding: 20px; border: 1px solid var(--line); background: var(--surface); text-decoration: none; font-weight: 700; }
.site-footer { padding: 36px 0; border-top: 1px solid var(--line); color: var(--muted); }
.site-footer .wrap { display: flex; justify-content: space-between; gap: 20px; }

@media (max-width: 820px) {
  .nav { min-height: 78px; }
  .nav-links a:not(.button) { display: none; }
  .hero { padding: 68px 0 58px; }
  .section { padding: 62px 0; }
  .grid, .grid.two, .pricing-grid, .terms-grid, .support-grid { grid-template-columns: 1fr; }
  .facts { grid-template-columns: 1fr; }
  .site-footer .wrap { flex-direction: column; }
}

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