* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --bg: #f6f3ef;
  --ink: #1c1b1a;
  --muted: #5c5a57;
  --accent: #3f63d6;
  --accent-dark: #233a8a;
  --surface: #ffffff;
  --highlight: #f2e2cc;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  padding: 28px 6vw 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.brand {
  display: flex;
  align-items: center;
  gap: 12px;
  font-weight: 700;
  font-size: 1.3rem;
  letter-spacing: 0.02em;
}

.brand span {
  color: var(--accent);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px 22px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: var(--accent);
}

.section {
  padding: 64px 6vw;
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.section--offset-left {
  padding-left: 12vw;
  background: var(--surface);
}

.section--offset-right {
  padding-right: 12vw;
  background: var(--highlight);
}

.section--tight {
  padding-top: 40px;
  padding-bottom: 40px;
}

.section--hero {
  padding-top: 36px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split > * {
  flex: 1;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--muted);
}

h1,
h2,
h3 {
  line-height: 1.2;
}

h1 {
  font-size: 2.4rem;
}

h2 {
  font-size: 1.8rem;
}

h3 {
  font-size: 1.15rem;
}

p {
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  color: var(--surface);
  background: var(--accent);
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
}

.button:hover {
  transform: translateY(-2px);
  box-shadow: 0 8px 18px rgba(46, 63, 132, 0.18);
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border-radius: 18px;
  background: var(--surface);
  box-shadow: 0 10px 30px rgba(20, 20, 20, 0.08);
}

.card img {
  border-radius: 12px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(63, 99, 214, 0.12);
  color: var(--accent-dark);
  font-size: 0.8rem;
}

.form-panel {
  background: var(--surface);
  padding: 22px;
  border-radius: 22px;
  box-shadow: 0 18px 40px rgba(17, 17, 17, 0.12);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.85rem;
  color: var(--muted);
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d4d1cd;
  font-size: 1rem;
  font-family: inherit;
  background: #fff;
}

textarea {
  min-height: 110px;
  resize: vertical;
}

.inline-link {
  font-weight: 600;
  color: var(--accent-dark);
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.pill {
  padding: 8px 14px;
  border-radius: 999px;
  border: 1px dashed #c2c0bc;
  font-size: 0.85rem;
  color: var(--muted);
}

.footer {
  margin-top: auto;
  padding: 28px 6vw 50px;
  background: #1a1a1a;
  color: #f5f3ef;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer a {
  color: #f5f3ef;
}

.footer-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 12px 18px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  z-index: 20;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 16px;
  border-radius: 14px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(35, 58, 138, 0.4);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #111;
  color: #fff;
  padding: 16px 6vw;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border-radius: 999px;
  padding: 10px 16px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: #444;
  color: #fff;
}

.inline-image {
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(15, 15, 15, 0.12);
}

.list-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.contact-card {
  padding: 18px;
  border-radius: 16px;
  background: var(--surface);
}

.muted {
  color: var(--muted);
}

@media (min-width: 768px) {
  .site-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .section {
    padding-left: 10vw;
    padding-right: 10vw;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .card-row {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .contact-grid {
    flex-direction: row;
  }

  .contact-card {
    flex: 1;
  }
}
