* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1b1b1b;
  --muted: #5a616b;
  --accent: #ff6b57;
  --accent-dark: #e05746;
  --sand: #f4efe9;
  --cloud: #f6f8fb;
  --steel: #222831;
  --leaf: #2e6f62;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.topbar {
  padding: 22px 0 10px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
  font-size: 1.2rem;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-label {
  font-size: 0.8rem;
  color: var(--muted);
  padding: 6px 10px;
  border: 1px solid #d7d7d7;
  border-radius: 999px;
}

.hero {
  padding: 46px 0 32px;
  background: var(--cloud);
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
}

.split .media {
  flex: 1 1 320px;
  border-radius: 18px;
  overflow: hidden;
  background: #dfe7f2;
}

.hero h1 {
  font-size: clamp(2rem, 3.3vw, 3.2rem);
  margin-bottom: 16px;
}

.lead {
  color: var(--muted);
  font-size: 1.05rem;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  border-color: var(--accent);
  color: var(--accent);
}

.btn.ghost {
  background: transparent;
  border-color: #cdd4df;
  color: var(--ink);
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: var(--sand);
}

.section.dark {
  background: var(--steel);
  color: #f6f6f6;
}

.section h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  margin-bottom: 14px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #e9eef6;
  color: var(--muted);
  font-size: 0.85rem;
  margin-bottom: 16px;
}

.cards {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  border: 1px solid #e3e6eb;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 12px;
  width: 100%;
  height: 170px;
  background-color: #dfe7f2;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.form-shell {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e1e3e6;
  padding: 24px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.field {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.field input,
.field select,
.field textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #cdd4df;
  font-size: 1rem;
  font-family: inherit;
}

.field textarea {
  min-height: 120px;
  resize: vertical;
}

.inline-cta {
  color: var(--accent);
  text-decoration: underline;
  cursor: pointer;
}

.note {
  font-size: 0.9rem;
  color: var(--muted);
}

.footer {
  padding: 34px 0 50px;
  background: #101418;
  color: #c9d0d9;
}

.footer a {
  color: inherit;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 10px;
}

.disclaimer {
  font-size: 0.85rem;
  color: #aeb7c3;
  margin-top: 18px;
}

.sticky-cta {
  position: sticky;
  bottom: 12px;
  margin-top: 24px;
  display: flex;
  justify-content: flex-end;
}

.sticky-cta button {
  box-shadow: 0 10px 30px rgba(255, 107, 87, 0.25);
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  width: min(360px, 92%);
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #dfe3ea;
  padding: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
  display: none;
  z-index: 50;
}

.cookie-banner.visible {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.highlight {
  background: #fff1ee;
  padding: 18px;
  border-radius: 16px;
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.badge {
  border-radius: 999px;
  padding: 6px 12px;
  background: #eaf4f2;
  color: var(--leaf);
  font-size: 0.85rem;
}

.list {
  padding-left: 18px;
}

.image-frame {
  border-radius: 18px;
  overflow: hidden;
  background: #dfe7f2;
}

.section.dark .btn.secondary {
  border-color: #fff;
  color: #fff;
}
