:root {
  --bg: #f5f3f0;
  --ink: #1d1e1f;
  --muted: #5d6066;
  --accent: #2e6fd8;
  --accent-dark: #214f9a;
  --soft: #e8e2dc;
  --card: #ffffff;
  --highlight: #f1efe9;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

.image-shell {
  background: #d9dde5;
  border-radius: 16px;
  overflow: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.95rem;
}

.ad-label {
  padding: 6px 10px;
  background: var(--soft);
  border-radius: 999px;
  font-size: 0.78rem;
}

.hero {
  padding: 40px 0 70px;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1;
}

.split .media {
  flex: 1;
  display: flex;
  justify-content: center;
}

.hero-card {
  background: var(--card);
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.hero-image {
  width: 100%;
  border-radius: 16px;
  background: #d8dee7;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  color: var(--muted);
}

h1, h2, h3 {
  margin: 12px 0;
  line-height: 1.1;
}

p {
  line-height: 1.6;
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.button {
  padding: 12px 20px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.button.secondary {
  background: var(--highlight);
  color: var(--ink);
}

.button:hover,
.button:focus {
  background: var(--accent-dark);
}

.button.secondary:hover,
.button.secondary:focus {
  background: #e0ded7;
}

.section {
  padding: 70px 0;
}

.section.soft {
  background: var(--highlight);
}

.section.dark {
  background: #111418;
  color: #f9f7f3;
}

.section.dark p {
  color: #c5c8ce;
}

.panel {
  background: var(--card);
  padding: 28px;
  border-radius: 16px;
}

.card-row {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  min-width: 220px;
  background: var(--card);
  border-radius: 16px;
  overflow: hidden;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--ink);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.inline-link:hover,
.inline-link:focus {
  color: var(--accent-dark);
}

.quote {
  font-style: italic;
  border-left: 3px solid var(--accent);
  padding-left: 14px;
}

.form-wrap {
  background: var(--card);
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d8d4ce;
  font-family: inherit;
}

.footer {
  margin-top: auto;
  padding: 40px 0 60px;
  background: var(--soft);
}

.footer-columns {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
  font-size: 0.92rem;
}

.footer small {
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  display: flex;
  gap: 12px;
  align-items: center;
  z-index: 20;
}

.sticky-cta .button {
  padding: 10px 16px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #fff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 18px 30px rgba(0, 0, 0, 0.2);
  max-width: 340px;
  z-index: 30;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--soft);
  font-size: 0.8rem;
}

.simple-hero {
  padding: 50px 0;
}

.notice {
  background: #ffffff;
  padding: 18px;
  border-radius: 12px;
  border: 1px solid #e3ded7;
}

.reference-list {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 50%;
    transform: translateX(50%);
  }
}
