* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1e2328;
  --muted: #5d6570;
  --accent: #2f5b88;
  --soft: #f3f4f6;
  --warm: #f8f1e7;
  --deep: #0f1a24;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

header {
  padding: 28px 6vw;
  background: #ffffff;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 320px;
}

.hero {
  display: flex;
  align-items: stretch;
  min-height: 70vh;
}

.hero-content {
  flex: 1;
  padding: 60px 6vw;
  background: var(--soft);
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 24px;
}

.hero-image {
  flex: 1;
  background: #cdd6df;
  display: flex;
  align-items: stretch;
}

.hero-image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  border: none;
}

.btn-outline {
  background: transparent;
  color: var(--accent);
  border: 2px solid var(--accent);
}

.section {
  padding: 70px 6vw;
}

.section.alt {
  background: var(--warm);
}

.section.deep {
  background: var(--deep);
  color: #ffffff;
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split .visual {
  flex: 1;
  background: #dfe6ec;
  padding: 16px;
}

.visual img {
  border-radius: 16px;
}

.cards {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 26, 36, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-media {
  background: #d2dbe4;
}

.card-body {
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.form-shell {
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 16px 40px rgba(15, 26, 36, 0.12);
  max-width: 520px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

select,
input,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9d2dc;
  font-size: 1rem;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.footer {
  padding: 40px 6vw 80px;
  background: #0b0f14;
  color: #d8dee6;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer a {
  color: #d8dee6;
}

.disclaimer {
  font-size: 0.9rem;
  color: #aeb6c2;
  margin-top: 18px;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #ffffff;
  border-radius: 999px;
  padding: 10px 16px;
  box-shadow: 0 12px 30px rgba(15, 26, 36, 0.2);
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 18px;
  box-shadow: 0 12px 40px rgba(15, 26, 36, 0.2);
  max-width: 360px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.hidden {
  display: none;
}

.legal-content {
  max-width: 860px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 18px;
}

@media (max-width: 960px) {
  .hero {
    flex-direction: column;
  }

  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    left: 16px;
    right: 16px;
    display: flex;
    justify-content: center;
  }
}
