* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --text: #1d1f23;
  --muted: #5b6470;
  --accent: #2f5cff;
  --accent-dark: #2042c3;
  --bg: #f6f7fb;
  --card: #ffffff;
  --line: #e4e7ee;
  --shadow: 0 20px 45px rgba(23, 33, 53, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--text);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 40px 24px 80px;
}

.top-nav {
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.top-nav .nav-wrap {
  max-width: 1200px;
  margin: 0 auto;
  padding: 18px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.02em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.nav-links a {
  font-size: 0.95rem;
  color: var(--muted);
}

.ad-label {
  font-size: 0.85rem;
  color: #b54747;
  border: 1px solid #f0c1c1;
  padding: 4px 10px;
  border-radius: 999px;
  background: #fff5f5;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .copy {
  flex: 1 1 320px;
}

.split .media {
  flex: 1 1 320px;
}

.media-frame {
  background: #dfe6ff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.section {
  margin: 56px 0;
}

.section-title {
  font-size: 2.1rem;
  margin-bottom: 16px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
  margin-bottom: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.secondary {
  background: #ffffff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn:hover,
.btn:focus {
  background: var(--accent-dark);
  color: #fff;
}

.cards {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  background: var(--card);
  border-radius: 18px;
  padding: 20px;
  border: 1px solid var(--line);
  flex: 1 1 250px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.card .price {
  font-weight: 700;
  color: var(--accent);
}

.card .card-image {
  background: #f0f4ff;
  border-radius: 12px;
  overflow: hidden;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cta-row {
  margin-top: 24px;
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.pill {
  background: #ffffff;
  border: 1px solid var(--line);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.9rem;
  color: var(--muted);
}

.highlight {
  background: #111827;
  color: #ffffff;
  border-radius: 24px;
  padding: 34px;
}

.highlight a {
  color: #ffffff;
  text-decoration: underline;
}

.highlight .highlight-lead {
  color: #d7dbe7;
}

.form-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

.footer {
  background: #0f172a;
  color: #d5d9e1;
  padding: 40px 24px;
}

.footer .footer-wrap {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer a {
  color: #d5d9e1;
  text-decoration: underline;
}

.footer .disclaimer {
  max-width: 500px;
  font-size: 0.9rem;
  color: #b7bdc9;
}

.sticky-cta {
  position: sticky;
  bottom: 16px;
  display: flex;
  justify-content: center;
  margin-top: 24px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px 20px;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 999;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-banner p {
  flex: 1 1 260px;
  color: var(--muted);
  font-size: 0.95rem;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tagline {
  font-size: 1.05rem;
  color: var(--muted);
}

.notice {
  background: #eef4ff;
  padding: 18px 20px;
  border-radius: 14px;
  border: 1px solid #dbe6ff;
  color: #2b3c66;
}

.legal-text {
  background: #ffffff;
  padding: 26px;
  border-radius: 18px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

@media (max-width: 860px) {
  .split {
    flex-direction: column;
  }

  .sticky-cta {
    position: static;
  }
}
