* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1f2327;
  --muted: #55606b;
  --accent: #1f6feb;
  --accent-soft: #e6f0ff;
  --sand: #f4f1ec;
  --forest: #1e2a24;
  --cream: #fff7ed;
  --line: #e1e5ea;
  --shadow: 0 18px 40px rgba(18, 22, 28, 0.12);
  --radius: 18px;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Inter", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:focus,
button:focus,
select:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  padding: 24px 6vw 12px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.nav-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--ink);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.ad-label {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--accent-soft);
  color: var(--accent);
  font-size: 0.85rem;
}

.hero {
  padding: 32px 6vw 48px;
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: stretch;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.hero-card {
  background: var(--cream);
  padding: 32px;
  border-radius: var(--radius);
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-card h1 {
  font-size: 2.4rem;
  margin: 0;
}

.hero-card p {
  color: var(--muted);
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.btn {
  border: none;
  padding: 12px 22px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  box-shadow: var(--shadow);
}

.btn-secondary {
  background: #fff;
  color: var(--ink);
  border: 1px solid var(--line);
}

.btn:hover {
  transform: translateY(-1px);
  box-shadow: 0 12px 26px rgba(31, 111, 235, 0.2);
}

.image-frame {
  border-radius: var(--radius);
  overflow: hidden;
  background-color: #d8e1eb;
  min-height: 280px;
}

.section {
  padding: 48px 6vw;
}

.section.alt {
  background: var(--sand);
}

.section.deep {
  background: var(--forest);
  color: #fefbf7;
}

.section.deep p {
  color: #e6e2dd;
}

.section-title {
  margin: 0 0 20px;
  font-size: 2rem;
}

.content-card {
  background: #fff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 240px;
  background: #fff;
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.split-note {
  font-size: 0.95rem;
  color: var(--muted);
}

.form-shell {
  background: #ffffff;
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

select,
input,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 1rem;
}

.cta-band {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border-radius: var(--radius);
  background: var(--accent-soft);
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 5;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: var(--shadow);
}

.footer {
  padding: 32px 6vw 40px;
  background: #111417;
  color: #e5e7eb;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #c9d7ff;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-grid > div {
  flex: 1 1 220px;
}

.disclaimer {
  font-size: 0.9rem;
  color: #c4c9d0;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 360px;
  background: #fff;
  border-radius: 16px;
  box-shadow: var(--shadow);
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.mini-nav {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.section-callout {
  border-left: 4px solid var(--accent);
  padding-left: 16px;
  color: var(--muted);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.tag {
  display: inline-flex;
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--cream);
  color: var(--forest);
  font-size: 0.85rem;
}

.legal-block {
  background: var(--sand);
  padding: 20px;
  border-radius: var(--radius);
}

.centered {
  text-align: center;
}

@media (max-width: 800px) {
  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }

  .hero-card h1 {
    font-size: 2rem;
  }
}
