:root {
  color-scheme: light;
  --ink: #10232b;
  --muted: #60717a;
  --line: #dbe5e9;
  --paper: #f6fafb;
  --surface: #ffffff;
  --brand: #136f63;
  --brand-dark: #0d4f47;
  --accent: #c85f2a;
  --soft: #e7f3f1;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: Inter, Arial, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.5;
}

a {
  color: inherit;
}

.page {
  min-height: 100vh;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  max-width: 1120px;
  margin: 0 auto;
  padding: 20px 24px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  text-decoration: none;
  font-weight: 800;
}

.brand-mark {
  display: grid;
  width: 38px;
  height: 38px;
  place-items: center;
  border-radius: 8px;
  background: var(--ink);
  color: #ffffff;
  font-size: 14px;
}

.topbar-actions {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 14px;
}

.phone {
  text-decoration: none;
  color: var(--brand-dark);
  font-weight: 700;
}

.hero {
  background: linear-gradient(180deg, #ffffff 0%, #eef7f6 100%);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}

.hero-inner,
.section-inner {
  max-width: 1120px;
  margin: 0 auto;
  padding: 72px 24px;
}

.hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1.1fr) minmax(320px, 0.9fr);
  gap: 48px;
  align-items: center;
}

.kicker {
  margin: 0 0 16px;
  color: var(--brand-dark);
  font-size: 13px;
  font-weight: 800;
  letter-spacing: 0;
  text-transform: uppercase;
}

h1 {
  max-width: 780px;
  margin: 0;
  font-size: clamp(38px, 5vw, 64px);
  line-height: 1.02;
  letter-spacing: 0;
}

.lead {
  max-width: 680px;
  margin: 22px 0 0;
  color: #364a53;
  font-size: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 32px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 48px;
  padding: 13px 18px;
  border-radius: 8px;
  border: 1px solid var(--ink);
  text-decoration: none;
  font-weight: 800;
}

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

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

.proof-panel {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  box-shadow: 0 18px 40px rgba(16, 35, 43, 0.1);
  overflow: hidden;
}

.proof-header {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 16px 18px;
  background: var(--ink);
  color: #ffffff;
  font-size: 13px;
  font-weight: 800;
}

.proof-body {
  padding: 20px;
}

.metric {
  display: flex;
  justify-content: space-between;
  gap: 16px;
  padding: 14px 0;
  border-bottom: 1px solid var(--line);
}

.metric:last-child {
  border-bottom: 0;
}

.metric span {
  color: var(--muted);
}

.metric strong {
  text-align: right;
}

.section-title {
  max-width: 760px;
  margin: 0 0 24px;
  font-size: 34px;
  line-height: 1.12;
  letter-spacing: 0;
}

.cards {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}

.card {
  border: 1px solid var(--line);
  border-radius: 8px;
  background: var(--surface);
  padding: 22px;
}

.card strong {
  display: block;
  margin-bottom: 8px;
  font-size: 18px;
}

.card p {
  margin: 0;
  color: var(--muted);
}

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

.band .section-title,
.band p {
  color: #ffffff;
}

.checklist {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.checklist li {
  border: 1px solid rgba(255, 255, 255, 0.22);
  border-radius: 8px;
  padding: 16px;
}

.bottom-cta {
  background: #ffffff;
}

.bottom-cta .section-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.bottom-cta p {
  max-width: 680px;
  margin: 8px 0 0;
  color: var(--muted);
}

.footer {
  max-width: 1120px;
  margin: 0 auto;
  padding: 28px 24px 44px;
  color: var(--muted);
  font-size: 14px;
}

.cookie-consent {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  display: grid;
  grid-template-columns: minmax(0, 1fr) auto;
  gap: 18px;
  align-items: center;
  max-width: 720px;
  padding: 18px;
  border: 1px solid var(--line);
  border-radius: 8px;
  background: #ffffff;
  box-shadow: 0 18px 40px rgba(16, 35, 43, 0.18);
}

.cookie-consent[hidden] {
  display: none;
}

.cookie-consent strong {
  display: block;
  margin-bottom: 4px;
}

.cookie-consent p {
  margin: 0;
  color: var(--muted);
  font-size: 14px;
}

.cookie-consent a {
  display: inline-block;
  margin-top: 6px;
  color: var(--brand-dark);
  font-size: 14px;
  font-weight: 700;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

@media (max-width: 840px) {
  .topbar,
  .topbar-actions,
  .bottom-cta .section-inner,
  .cookie-consent {
    align-items: stretch;
    flex-direction: column;
  }

  .hero-inner,
  .section-inner {
    padding: 48px 18px;
  }

  .hero-grid,
  .cards,
  .checklist {
    grid-template-columns: 1fr;
  }

  h1 {
    font-size: 40px;
  }

  .lead {
    font-size: 18px;
  }

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

  .cookie-consent {
    right: 12px;
    bottom: 12px;
    left: 12px;
    grid-template-columns: 1fr;
  }
}
