* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #0f1b2b;
  --ink-soft: #1f3046;
  --sand: #f5f1ea;
  --mist: #e6edf4;
  --accent: #2b66d9;
  --accent-dark: #1f4fa8;
  --leaf: #2a7c6f;
  --sun: #e1a940;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 24px 6vw 16px;
  background: #ffffff;
  border-bottom: 1px solid #e8edf3;
}

.top-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.ad-label {
  font-size: 0.9rem;
  color: #5a6678;
}

nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

nav a {
  padding: 6px 10px;
  border-radius: 18px;
  background: var(--mist);
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding-bottom: 80px;
}

.hero {
  min-height: 72vh;
  background-color: #0f1b2b;
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
  display: flex;
  align-items: stretch;
}

.hero .hero-inner {
  display: flex;
  flex: 1;
  padding: 80px 6vw;
  backdrop-filter: blur(0px);
  background: rgba(15, 27, 43, 0.6);
}

.hero-left,
.hero-right {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  justify-content: center;
}

.hero-right {
  align-items: flex-start;
  gap: 28px;
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.75rem;
  color: #d6e1f4;
}

h1 {
  font-size: clamp(2rem, 3vw + 1rem, 3.3rem);
  line-height: 1.15;
}

.hero p {
  max-width: 520px;
  color: #dfe7f3;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  padding: 12px 20px;
  border-radius: 28px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: var(--accent);
  color: #ffffff;
}

.btn.secondary {
  background: #ffffff;
  color: var(--ink);
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  width: 100%;
  background: #ffffff;
  border-top: 1px solid #e6edf4;
  padding: 14px 6vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 5;
}

.section {
  padding: 0 6vw;
}

.split-section {
  display: flex;
  gap: 32px;
  align-items: center;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-text,
.split-media {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-frame {
  background: #dde4ee;
  border-radius: 18px;
  overflow: hidden;
  display: flex;
}

.bg-slate {
  background-color: #d9e3ef;
}

.bg-mint {
  background-color: #e7efe8;
}

.bg-sand {
  background-color: #efe5d9;
}

.bg-blue {
  background-color: #dbe7f4;
}

.bg-lilac {
  background-color: #efe8f4;
}

.bg-ice {
  background-color: #e7edf4;
}

.bg-cream {
  background-color: #efe6df;
}

.bg-sky {
  background-color: #e2ecf1;
}

.bg-wheat {
  background-color: #f1ebe1;
}

.bg-soft {
  background-color: #e2e8f1;
}

.bg-paper {
  background-color: #f2ede4;
}

.bg-aqua {
  background-color: #e7f0ec;
}

.bg-cloud {
  background-color: #e6edf4;
}

.bg-frost {
  background-color: #e9eef4;
}

.bg-ice2 {
  background-color: #e8f0f2;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-grid {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: var(--sand);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .price {
  font-weight: 700;
  color: var(--leaf);
}

.pill-list {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.pill {
  background: var(--mist);
  padding: 6px 12px;
  border-radius: 16px;
  font-size: 0.85rem;
}

.form-panel {
  background: #f4f7fb;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-panel label {
  font-size: 0.85rem;
  font-weight: 600;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #ccd6e4;
  font-family: inherit;
}

.note {
  font-size: 0.9rem;
  color: #4f5f75;
}

.divider {
  height: 1px;
  background: #e3e8f0;
  margin: 12px 0;
}

.legal-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.legal-box {
  flex: 1 1 260px;
  background: #ffffff;
  border: 1px solid #e8edf3;
  border-radius: 16px;
  padding: 18px;
}

footer {
  background: var(--ink);
  color: #ffffff;
  padding: 32px 6vw;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  flex-wrap: wrap;
}

.footer-links {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.disclaimer {
  font-size: 0.85rem;
  color: #cbd6e6;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  max-width: 320px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 8px 30px rgba(0, 0, 0, 0.15);
  display: none;
  z-index: 10;
}

.cookie-banner p {
  font-size: 0.9rem;
  color: #45556a;
  margin-bottom: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.ghost {
  background: #eef2f6;
  color: var(--ink);
}

.center-text {
  text-align: center;
}

.muted {
  color: #56677b;
}

@media (max-width: 900px) {
  .split-section,
  .hero-inner {
    flex-direction: column;
  }
  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
