* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1d1e1f;
  background: #f7f5f1;
  line-height: 1.55;
}

a {
  color: #1b4f72;
  text-decoration: none;
}

header {
  padding: 24px 6vw 12px;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
  font-size: 1.25rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.ad-label {
  background: #f2e6d6;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.hero {
  padding: 32px 6vw 48px;
}

.split {
  display: flex;
  gap: 36px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 50%;
}

.panel-content {
  padding: 32px;
  background: #fff;
  border-radius: 20px;
  box-shadow: 0 20px 45px rgba(20, 20, 20, 0.08);
}

.panel-content.light {
  background: #fdfbf7;
}

.panel-content.dark {
  background: #1b2631;
  color: #f6f1ea;
}

.panel-content.dark a {
  color: #f0c987;
}

.image-frame {
  background-color: #d7d2c8;
  border-radius: 20px;
  overflow: hidden;
  height: 100%;
  min-height: 280px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.section {
  padding: 24px 6vw;
}

.section.tight {
  padding-top: 8px;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 24px rgba(30, 30, 30, 0.08);
}

.card .image-frame {
  min-height: 180px;
  margin-bottom: 12px;
}

.price {
  font-weight: 700;
  color: #1b4f72;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.btn {
  border: none;
  background: #1b4f72;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-size: 0.95rem;
}

.btn.secondary {
  background: #f0c987;
  color: #1b2631;
}

.btn.ghost {
  background: transparent;
  border: 1px solid #1b4f72;
  color: #1b4f72;
}

.sticky-box {
  position: sticky;
  top: 24px;
  background: #fff;
  border-radius: 18px;
  padding: 18px;
  box-shadow: 0 12px 30px rgba(23, 23, 23, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #c9c5bc;
  font-size: 0.95rem;
  font-family: inherit;
}

footer {
  padding: 42px 6vw;
  background: #12161b;
  color: #f6f1ea;
}

footer a {
  color: #f0c987;
}

.footer-row {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 220px;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  right: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.18);
  display: none;
  z-index: 50;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.legal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.tagline {
  font-size: 1.1rem;
  color: #4a4d4f;
}

.muted {
  color: #6b6e70;
}

.notice {
  background: #f2e6d6;
  padding: 14px 18px;
  border-radius: 12px;
}

.center {
  text-align: center;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-box {
    position: static;
  }
}
