:root {
  --bg: #f3f6f2;
  --ink: #18201d;
  --line: #cbd6cf;
  --accent: #6f7f67;
  --paper: color-mix(in srgb, var(--bg) 82%, white);
  --paper-strong: color-mix(in srgb, var(--bg) 94%, var(--ink));
  --muted: var(--ink);
  --shadow: 0 14px 28px color-mix(in srgb, var(--ink) 12%, transparent);
  --rule: 2px solid var(--line);
  --radius: 8px;
  --max: 1080px;
}

* {
  box-sizing: border-box;
}

html {
  scroll-behavior: smooth;
  scroll-padding-top: 25px;
}

body {
  margin: 0;
  background: var(--bg);
  color: var(--ink);
  font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Arial, sans-serif;
  line-height: 1.55;
  font-size: 17px;
}

.privacy-page {
  min-height: 100vh;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: inherit;
}

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--accent);
  outline-offset: 3px;
}

.site-header {
  position: sticky;
  top: 0;
  z-index: 10;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 18px;
  width: 100%;
  margin: 0;
  padding: 11px max(18px, calc((100% - var(--max)) / 2));
  border-bottom: var(--rule);
  background: color-mix(in srgb, var(--bg) 92%, transparent);
  backdrop-filter: blur(16px);
}

.brand,
.site-nav,
.hero-actions,
.site-footer div {
  display: flex;
  align-items: center;
}

.brand {
  width: 190px;
  text-decoration: none;
}

.brand picture {
  display: block;
  width: 100%;
  aspect-ratio: 1000 / 320;
}

.brand img {
  width: 100%;
  height: auto;
  object-fit: contain;
}

.site-nav {
  gap: 2px;
}

.site-nav a {
  padding: 6px 9px;
  border-radius: 6px;
  color: var(--ink);
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.45;
  text-decoration: none;
}

.site-nav a:hover {
  background: color-mix(in srgb, var(--accent) 14%, transparent);
  color: var(--ink);
}

.nav-toggle {
  display: none;
  width: 38px;
  height: 36px;
  padding: 0;
  border: 1px solid var(--line);
  border-radius: 7px;
  background: transparent;
}

.nav-toggle span {
  display: block;
  width: 18px;
  height: 2px;
  margin: 5px auto;
  background: var(--ink);
}

.section,
.section-band {
  width: min(var(--max), calc(100% - 28px));
  margin: 0 auto;
  scroll-margin-top: 25px;
}

.hero {
  display: grid;
  grid-template-columns: minmax(0, 640px) 430px;
  justify-content: space-between;
  gap: 56px;
  align-items: center;
  min-height: calc(100vh - 58px);
  padding: 18px 0 66px;
}

.hero-copy {
  max-width: 640px;
  transform: translateY(-24px);
}

.eyebrow {
  margin: 0 0 10px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

h1,
h2,
h3,
p {
  margin-top: 0;
}

h1,
h2 {
  letter-spacing: 0;
}

h1 {
  max-width: 680px;
  margin-bottom: 16px;
  font-size: clamp(3rem, 7vw, 5.55rem);
  font-weight: 920;
  line-height: 0.96;
}

h2 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4.2vw, 3.45rem);
  font-weight: 900;
  line-height: 1;
}

h3 {
  margin-bottom: 7px;
  font-size: 1.08rem;
  font-weight: 850;
  line-height: 1.25;
}

.lead {
  max-width: 660px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 620;
  line-height: 1.55;
}

.lead + .lead {
  margin-top: -6px;
}

.hero-actions {
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 20px;
}

.button,
.text-button {
  min-height: 44px;
  border-radius: 7px;
  font-weight: 850;
  text-decoration: none;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 11px 16px;
  border: 1px solid transparent;
}

.button.primary {
  background: var(--ink);
  color: var(--bg);
}

.button.primary:hover {
  background: var(--accent);
}

.button.secondary {
  border-color: var(--line);
  background: transparent;
}

.button.secondary:hover {
  border-color: var(--accent);
  color: var(--ink);
}

.hero-side {
  align-self: center;
  display: grid;
  justify-items: center;
  gap: 0;
  transform: translateY(-24px);
}

.hero-badge {
  display: block;
  width: min(92%, 340px);
  aspect-ratio: 800 / 700;
  border-radius: var(--radius);
}

.hero-badge img {
  width: 100%;
  height: 100%;
  object-fit: contain;
}

.hero-summary {
  display: grid;
  gap: 14px;
  width: 100%;
  margin-top: 10px;
}

.hero-summary div {
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 4px 16px;
  align-items: baseline;
}

.hero-summary span {
  color: var(--ink);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-summary strong {
  color: var(--ink);
  font-size: 1rem;
  font-weight: 930;
  line-height: 1;
  white-space: nowrap;
}

.hero-summary p {
  grid-column: 1 / -1;
  margin-bottom: 0;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 620;
  line-height: 1.45;
}

.section {
  padding: 50px 0;
}

.section-heading {
  max-width: 760px;
  margin-bottom: 20px;
}

.section-heading.narrow {
  max-width: var(--max);
}

.section-heading p,
.feature-card p,
.demo-card p,
.price-box p,
.offer-list p,
.local-copy p,
.contact-card p,
.faq-list p,
.site-footer p {
  color: var(--muted);
  font-size: 1rem;
  font-weight: 620;
  line-height: 1.55;
}

.intro-section {
  border-top: var(--rule);
}

.feature-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}

.ownership-list {
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 18px;
  text-align: left;
}

.ownership-list span {
  display: inline-block;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--accent);
  font-size: 1rem;
  font-weight: 800;
  line-height: 1.55;
  white-space: nowrap;
}

.feature-card,
.demo-card,
.price-box,
.contact-card,
.local-note,
.faq-list details {
  border: 1px solid var(--line);
  border-radius: var(--radius);
  background: var(--paper);
}

.feature-card,
.demo-card {
  padding: 15px 16px;
}

.demo-card {
  padding: 12px 13px;
}

.feature-card {
  border-top: 3px solid var(--accent);
}

.card-number,
.demo-label,
.price-label {
  display: inline-block;
  margin-bottom: 10px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.section-heading .demo-label {
  color: var(--accent);
}

.privacy-section {
  display: flex;
  align-items: center;
  min-height: calc(100vh - 154px);
  padding-top: 24px;
  padding-bottom: 24px;
}

.privacy-section .section-heading {
  margin-right: auto;
  margin-left: auto;
}

.process-section,
.contact-section {
  width: 100%;
  max-width: none;
  padding-right: 0;
  padding-left: 0;
  background: color-mix(in srgb, var(--bg) 88%, var(--line));
}

.process-section > *,
.contact-section > * {
  width: min(var(--max), calc(100% - 28px));
  margin-right: auto;
  margin-left: auto;
}

.process-section .section-heading {
  max-width: none;
}

.process-section .section-heading h2 {
  max-width: 860px;
}

.faq-section .section-heading h2 {
  max-width: 920px;
}

.faq-section {
  background: var(--bg);
}

.process-list {
  display: grid;
  gap: 16px;
  width: min(var(--max), calc(100% - 28px));
  max-width: var(--max);
  counter-reset: process;
  padding: 0;
  margin: 0 auto;
  list-style: none;
}

.process-list li {
  display: grid;
  grid-template-columns: 38px 1fr;
  gap: 14px;
  align-items: start;
  padding-bottom: 16px;
  border-bottom: var(--rule);
}

.process-list li:last-child {
  padding-bottom: 0;
  border-bottom: 0;
}

.process-list h3 {
  font-size: 1.08rem;
  font-weight: 850;
  line-height: 1.25;
}

.process-list span {
  display: grid;
  place-items: center;
  width: 32px;
  height: 32px;
  color: var(--accent);
  font-size: 1.35rem;
  font-weight: 900;
  line-height: 1;
}

.process-list p {
  margin-bottom: 0;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 620;
  line-height: 1.55;
}

.offer-section {
  padding-top: 52px;
}

.offer-layout {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 10px;
  align-items: stretch;
}

.contact-card {
  display: grid;
  grid-template-columns: 330px minmax(0, 1fr);
  gap: 12px;
  align-items: stretch;
}

.contact-card {
  grid-template-columns: minmax(0, 1fr) minmax(320px, 0.9fr);
  align-items: center;
}

.local-section {
  border-top: var(--rule);
  border-bottom: var(--rule);
}

.price-box {
  display: flex;
  min-height: 308px;
  flex-direction: column;
  justify-content: flex-start;
  align-items: stretch;
  padding: 18px;
  border-radius: var(--radius);
  background: var(--ink);
  color: var(--bg);
  text-align: left;
  box-shadow: var(--shadow);
}

.price-box .price-label {
  align-self: center;
  text-align: center;
}

.free-box {
  background: var(--ink);
  color: var(--bg);
}

.free-box p,
.free-box .price-label {
  color: var(--bg);
}

.free-box strong {
  color: var(--bg);
}

.setup-price {
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  background: var(--paper);
  color: var(--ink);
  box-shadow: none;
}

.price-box strong {
  display: block;
  align-self: center;
  margin-bottom: 12px;
  color: var(--bg);
  font-size: clamp(2.8rem, 4.6vw, 4rem);
  font-weight: 930;
  line-height: 0.95;
  text-align: center;
  white-space: nowrap;
}

.setup-price strong {
  color: var(--accent);
}

.price-box p {
  margin-bottom: 0;
}

.price-box p,
.price-box .price-label {
  color: var(--bg);
}

.setup-price p,
.setup-price .price-label {
  color: var(--ink);
}

.offer-list {
  grid-column: 1 / -1;
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 10px;
}

.offer-list div {
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  padding: 8px 10px;
  border: 1px solid var(--line);
  border-left: 4px solid var(--accent);
  border-radius: var(--radius);
  background: var(--paper);
}

.offer-list h3 {
  margin-bottom: 10px;
  font-size: 1.08rem;
  font-weight: 850;
  line-height: 1.25;
  text-align: center;
}

.offer-list p {
  margin-bottom: 0;
  font-size: 0.9rem;
  line-height: 1.45;
}

.offer-list h3 + p {
  margin-top: auto;
}

.support-checks {
  display: grid;
  gap: 5px;
  margin: 0;
  padding: 0;
  color: var(--ink);
  font-size: 0.9rem;
  font-weight: 620;
  line-height: 1.45;
  list-style: none;
}

.offer-list .support-checks {
  margin-bottom: auto;
}

.support-checks li::before {
  content: "✓ ";
  color: var(--accent);
  font-weight: 900;
}

.price-checks {
  display: grid;
  gap: 4px;
  margin: 12px 0 0;
  padding: 0;
  color: currentColor;
  font-size: 0.9rem;
  font-weight: 620;
  line-height: 1.45;
  list-style: none;
  text-align: left;
}

.free-box .price-checks {
  color: var(--bg);
}

.setup-price .price-checks {
  color: var(--ink);
}

.local-copy {
  max-width: 880px;
}

.local-note {
  align-self: center;
  display: flex;
  gap: 14px;
  align-items: center;
  padding: 16px;
  border-left: 4px solid var(--accent);
  background: var(--paper-strong);
  color: var(--ink);
}

.local-note img {
  width: 58px;
  height: 58px;
  border-radius: 7px;
  object-fit: cover;
}

.local-note-mark {
  display: block;
  margin-bottom: 8px;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.local-note p {
  margin-bottom: 0;
  color: var(--ink);
  font-size: 1.1rem;
  font-weight: 900;
}

.demo-grid {
  display: grid;
  grid-template-columns: repeat(5, minmax(0, 1fr));
  gap: 10px;
}

.demo-card {
  display: flex;
  min-height: 104px;
  flex-direction: column;
  background: var(--paper);
}

.demo-card h3 {
  flex: 1;
  font-size: 1.08rem;
  font-weight: 850;
  line-height: 1.25;
}

.text-button {
  display: inline-flex;
  align-items: center;
  align-self: center;
  color: var(--accent);
  font-size: 0.76rem;
  font-weight: 900;
  line-height: 1.2;
  letter-spacing: 0.04em;
  text-align: center;
  text-transform: uppercase;
}

.text-button:hover {
  color: var(--accent);
}

.faq-list {
  display: grid;
  gap: 8px;
  max-width: var(--max);
}

.faq-list details {
  overflow: hidden;
  background: var(--paper);
}

.faq-list summary {
  cursor: pointer;
  padding: 15px 18px;
  font-weight: 850;
}

.faq-list p {
  margin: 0;
  padding: 0 18px 18px;
}

.faq-checks {
  display: grid;
  gap: 4px;
  margin: -8px 0 0;
  padding: 0 18px 18px;
  color: var(--muted);
  font-size: 1rem;
  font-weight: 620;
  line-height: 1.55;
  list-style: none;
}

.contact-section {
  padding-bottom: 44px;
}

.contact-card {
  padding: 0;
  border: 0;
  background: transparent;
  box-shadow: none;
}

address {
  display: grid;
  gap: 8px;
  align-content: center;
  justify-items: start;
  justify-self: start;
  padding-top: 8px;
  font-style: normal;
}

address a,
address span {
  display: block;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--accent);
  font-size: clamp(1.35rem, 2.1vw, 1.75rem);
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
}

address a:hover {
  border-color: var(--accent);
  color: var(--ink);
}

.privacy-mail {
  display: inline-block;
  padding: 0;
  border: 0;
  border-radius: 0;
  background: transparent;
  color: var(--accent);
  font-weight: 800;
  line-height: 1.35;
  text-decoration: none;
}

.privacy-mail:hover {
  color: var(--ink);
}

.site-footer {
  display: grid;
  grid-template-columns: 1fr auto 1fr;
  align-items: center;
  gap: 24px;
  width: min(var(--max), calc(100% - 28px));
  margin: 0 auto;
  padding: 18px 0 22px;
  border-top: var(--rule);
}

.site-footer div {
  gap: 10px;
  flex-wrap: wrap;
}

.footer-brand {
  justify-self: start;
}

.footer-policy {
  justify-self: center;
}

.site-footer img {
  width: 14px;
  height: 14px;
  border-radius: 0;
  object-fit: contain;
}

.site-footer span {
  color: var(--muted);
  font-weight: 650;
  line-height: 1.45;
}

.site-footer strong {
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.45;
}

.site-footer a {
  color: var(--accent);
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.45;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.site-footer a:hover {
  color: var(--ink);
}

.site-footer p {
  margin-bottom: 0;
  font-size: 0.86rem;
  font-weight: 650;
  line-height: 1.45;
  justify-self: end;
}

@media (max-width: 1040px) {
  .demo-grid {
    grid-template-columns: repeat(3, minmax(0, 1fr));
  }
}

@media (max-width: 900px) {
  .hero,
  .offer-layout,
  .contact-card {
    grid-template-columns: 1fr;
  }

  .hero {
    min-height: auto;
    padding-top: 44px;
  }

  .hero-side {
    max-width: 430px;
  }
}

@media (max-width: 720px) {
  .site-header {
    flex-wrap: wrap;
  }

  .nav-toggle {
    display: block;
    margin-left: auto;
  }

  .site-nav {
    display: none;
    width: 100%;
    flex-direction: column;
    align-items: stretch;
    gap: 6px;
    padding: 8px 0 3px;
  }

  .site-nav.is-open {
    display: flex;
  }

  .site-nav a {
    padding: 10px 8px;
    border-bottom: var(--rule);
    border-radius: 0;
  }

  .hero {
    gap: 24px;
    padding-bottom: 42px;
  }

  .hero-badge {
    width: min(86%, 280px);
  }

  .section {
    padding: 48px 0;
  }

  .process-section,
  .faq-section {
    padding-top: 48px;
    padding-bottom: 48px;
  }

  .feature-grid,
  .process-list,
  .offer-list,
  .demo-grid {
    grid-template-columns: 1fr;
  }

  .feature-card,
  .demo-card,
  .offer-list div {
    padding: 16px;
  }

  .demo-card {
    min-height: 0;
  }

  .contact-card {
    padding: 0;
  }

  address {
    justify-self: start;
    padding-top: 0;
  }

  .site-footer {
    grid-template-columns: 1fr;
    justify-items: start;
  }

  .footer-policy,
  .site-footer p {
    justify-self: start;
  }
}

@media (min-width: 721px) {
  .privacy-page {
    display: grid;
    grid-template-rows: auto minmax(0, 1fr) auto;
  }

  .privacy-page .privacy-main {
    display: grid;
    align-items: center;
  }

  .privacy-page .privacy-section {
    min-height: 0;
    padding-top: 22px;
    padding-bottom: 22px;
  }

  .privacy-page .section-heading h1 {
    margin-bottom: 12px;
  }

  .privacy-page .section-heading p {
    margin-bottom: 12px;
  }
}
