* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #0e1b2b;
  --muted: #5a6b7a;
  --surface: #f4f6f8;
  --surface-dark: #0f2235;
  --accent: #1d6b8a;
  --accent-soft: #e2eef3;
  --panel: #e8edf1;
  --shadow: 0 18px 45px rgba(12, 28, 45, 0.08);
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.topbar {
  padding: 22px 0;
  border-bottom: 1px solid #e3e6ea;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: #4a5564;
  background: var(--accent-soft);
  padding: 6px 12px;
  border-radius: 999px;
}

.logo {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.section {
  padding: 70px 0;
}

.section.compact {
  padding: 50px 0;
}

.section-title {
  font-size: 2.1rem;
  margin-bottom: 18px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.split {
  display: flex;
  gap: 38px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split .media {
  flex: 1;
  border-radius: 24px;
  overflow: hidden;
  background: var(--panel);
  min-height: 320px;
  box-shadow: var(--shadow);
}

.split .card-stack {
  flex: 1;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--accent);
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
  min-width: 160px;
}

.btn.secondary {
  background: #ffffff;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn.ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid transparent;
}

.split-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-list .item {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  box-shadow: var(--shadow);
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #ffffff;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
}

.card-media {
  height: 180px;
  background: var(--panel);
}

.card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.bg-panel {
  background: var(--surface);
  position: relative;
}

.bg-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: url("https://images.unsplash.com/photo-1719992807597-142cdca47542?w=1400&q=80") center/cover no-repeat;
  opacity: 0.2;
}

.bg-panel .container {
  position: relative;
}

.cta-inline {
  color: var(--accent);
  font-weight: 600;
}

.form-card {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  border: 1px solid #d2d8df;
  border-radius: 10px;
  padding: 10px 12px;
  font-size: 1rem;
  width: 100%;
}

.form-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.form-row > div {
  flex: 1;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #ffffff;
  border-radius: 999px;
  box-shadow: var(--shadow);
  padding: 8px;
  z-index: 20;
}

.footer {
  margin-top: auto;
  padding: 50px 0 70px;
  background: var(--surface-dark);
  color: #e7edf4;
}

.footer .cols {
  display: flex;
  gap: 30px;
  flex-wrap: wrap;
}

.footer .col {
  flex: 1;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer a {
  color: #e7edf4;
}

.notice {
  background: #f6f3ea;
  border-left: 4px solid #d5b676;
  padding: 16px 18px;
  border-radius: 12px;
  color: #4b3f2c;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.legal {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hero-title {
  font-size: 2.7rem;
  line-height: 1.2;
}

.kicker {
  font-size: 0.9rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  color: var(--muted);
}

@media (max-width: 920px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
  }
}
