*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #121212;
  --muted: #5b5b5b;
  --paper: #f7f4ef;
  --accent: #0f5d6b;
  --accent-soft: #d9eef2;
  --accent-warm: #e8d8c8;
  --line: #ded7cc;
  --shadow: 0 16px 40px rgba(12, 18, 20, 0.12);
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 6vw;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.hero {
  display: flex;
  flex-direction: column;
  padding: 40px 6vw 60px;
  gap: 28px;
  background: #fff;
}

.hero-top {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-title {
  font-size: clamp(2.1rem, 4vw, 3.6rem);
  line-height: 1.1;
  margin: 0;
}

.hero-sub {
  color: var(--muted);
  max-width: 640px;
}

.hero-media {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.hero-card {
  flex: 1 1 240px;
  background: var(--accent-soft);
  padding: 18px;
  border-radius: 18px;
  box-shadow: var(--shadow);
}

.hero-cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--accent);
  color: #fff;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: none;
}

.mag-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 50px 6vw;
}

.mag-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.mag-panel {
  flex: 1;
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  border: 1px solid var(--line);
}

.mag-panel.accent {
  background: var(--accent-warm);
}

.mag-panel h3 {
  margin-top: 0;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.split-feature {
  display: flex;
  flex-direction: column;
  gap: 20px;
  padding: 40px 6vw;
  background: #fff;
}

.split-feature .col {
  flex: 1;
}

.metrics {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.metric {
  display: flex;
  justify-content: space-between;
  padding: 14px 18px;
  background: var(--paper);
  border-radius: 14px;
}

.service-deck {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 50px 6vw;
  background: var(--accent-soft);
}

.service-card {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.ghost-cta {
  border: 1px solid var(--accent);
  color: var(--accent);
  padding: 10px 18px;
  border-radius: 999px;
  font-weight: 600;
  background: transparent;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 50px 6vw;
  background: #fff;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 1rem;
  background: #fff;
}

.submit-btn {
  align-self: flex-start;
  background: #111;
  color: #fff;
  padding: 12px 24px;
  border-radius: 10px;
  border: none;
}

.footer {
  padding: 36px 6vw 60px;
  background: #0c1012;
  color: #fff;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 24px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
  z-index: 50;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  box-shadow: var(--shadow);
  display: none;
  z-index: 60;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 10px;
}

.cookie-actions button {
  border: none;
  padding: 8px 14px;
  border-radius: 999px;
  font-weight: 600;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: #e7e7e7;
  color: #111;
}

.page-header {
  padding: 40px 6vw 20px;
  background: #fff;
  border-bottom: 1px solid var(--line);
}

.page-section {
  padding: 30px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.info-box {
  background: var(--accent-soft);
  padding: 20px;
  border-radius: 16px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding-left: 18px;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-top {
    flex: 1.1;
  }

  .hero-media {
    flex: 1;
    flex-direction: column;
  }

  .mag-row {
    flex-direction: row;
  }

  .split-feature {
    flex-direction: row;
  }

  .service-deck {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 260px;
  }

  .form-wrap {
    flex-direction: row;
    align-items: flex-start;
  }

  .form-grid {
    min-width: 320px;
  }
}
