@import url("https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap");

:root {
  --ink: #1e2430;
  --muted: #5c677a;
  --soft: #f5f6f8;
  --accent: #2f6fed;
  --accent-dark: #2456b8;
  --warm: #f0ede8;
  --sage: #e3ece8;
  --sand: #f4f0ea;
  --border: #d7dde6;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 8vw;
  border-bottom: 1px solid var(--border);
  background: #ffffff;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.nav {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.nav a {
  text-decoration: none;
  color: var(--ink);
  font-weight: 500;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--soft);
  padding: 6px 10px;
  border-radius: 999px;
}

.section {
  display: flex;
  gap: 48px;
  align-items: center;
  padding: 72px 8vw;
}

.section.reverse {
  flex-direction: row-reverse;
}

.section.layered {
  background: linear-gradient(120deg, var(--sand), #ffffff);
}

.section.sage {
  background: var(--sage);
}

.section.warm {
  background: var(--warm);
}

.content {
  flex: 1;
  min-width: 0;
}

.visual {
  flex: 1;
  min-width: 0;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  color: var(--muted);
}

.display {
  font-size: clamp(2rem, 3vw, 3.2rem);
  line-height: 1.2;
  margin: 12px 0 16px;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #ffffff;
  cursor: pointer;
  font-weight: 600;
  text-decoration: none;
}

.btn:hover {
  background: var(--accent-dark);
}

.btn-outline {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
  text-decoration: none;
}

.image-frame {
  background: #e7ecf2;
  border-radius: 20px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  display: flex;
  gap: 16px;
  padding: 18px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(30, 36, 48, 0.08);
  align-items: center;
}

.card .card-text {
  flex: 1;
}

.card-title {
  font-weight: 600;
  margin-bottom: 4px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.split-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 0;
  margin: 18px 0;
  list-style: none;
}

.split-list li {
  padding: 12px 16px;
  border-radius: 14px;
  background: #ffffff;
  border: 1px solid var(--border);
}

.form-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 22px;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-card label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-card input,
.form-card select,
.form-card textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-family: inherit;
}

.form-card button {
  margin-top: 8px;
}

.details {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.95rem;
  color: var(--muted);
}

.footer {
  margin-top: auto;
  padding: 40px 8vw;
  background: #1f2532;
  color: #e9edf5;
}

.footer a {
  color: #e9edf5;
  text-decoration: none;
}

.footer .footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.disclaimer {
  font-size: 0.85rem;
  color: #cdd3dd;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 18px;
  padding: 18px 20px;
  box-shadow: 0 20px 40px rgba(30, 36, 48, 0.12);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.tiny-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.page-hero {
  padding: 60px 8vw 0;
}

.page-hero h1 {
  margin: 0 0 18px;
}

.legal-content {
  padding: 30px 8vw 70px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.legal-content .image-frame {
  max-width: 520px;
}

.notice {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  border: 1px solid var(--border);
}

@media (max-width: 960px) {
  .section {
    flex-direction: column;
  }

  .section.reverse {
    flex-direction: column;
  }

  .topbar {
    align-items: flex-start;
    flex-direction: column;
    gap: 12px;
  }

  .nav {
    justify-content: flex-start;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
