* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2933;
  background: #f6f5f2;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px 6vw;
  background: #ffffff;
  border-bottom: 1px solid #e0e5ea;
}

.nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.82rem;
  padding: 6px 10px;
  border-radius: 999px;
  background: #f0f4f8;
  color: #3e4c59;
}

.hero-tagline {
  font-size: 0.92rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: #6b7886;
}

.split {
  display: flex;
  gap: 36px;
  padding: 56px 6vw;
  align-items: center;
  justify-content: space-between;
}

.split--reverse {
  flex-direction: row-reverse;
}

.split--center {
  align-items: flex-start;
}

.split__text {
  flex: 1 1 48%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split__media {
  flex: 1 1 48%;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.media-box {
  background: #d7e1ea;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 18px 40px rgba(31, 41, 51, 0.12);
}

.media-hero {
  height: 380px;
}

.media-large {
  height: 420px;
}

.media-medium {
  height: 360px;
}

.media-small {
  height: 320px;
}

.media-card {
  height: 140px;
}

.media-box img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.card {
  flex: 1 1 180px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

.card img {
  border-radius: 12px;
  height: 100%;
  width: 100%;
  object-fit: cover;
  background: #d9e6ef;
}

.section-title {
  font-size: 2.1rem;
  line-height: 1.2;
  margin: 0;
}

.section-subtitle {
  font-size: 1.1rem;
  color: #4a5568;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  align-items: center;
}

.cta-button {
  padding: 12px 20px;
  border-radius: 999px;
  background: #1b4b5a;
  color: #ffffff;
  border: none;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button.secondary {
  background: #ffffff;
  color: #1b4b5a;
  border: 1px solid #1b4b5a;
}

.cta-button:hover,
.cta-button:focus {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(27, 75, 90, 0.2);
}

.inline-link {
  color: #1b4b5a;
  text-decoration: underline;
}

.list {
  margin: 0;
  padding-left: 18px;
}

.price-tag {
  font-size: 1.2rem;
  font-weight: 700;
  color: #1b4b5a;
}

.highlight {
  background: #fdf2d9;
  padding: 18px;
  border-radius: 16px;
}

.form-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 14px 32px rgba(15, 23, 42, 0.1);
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cbd2d9;
  font-size: 0.95rem;
  font-family: inherit;
}

textarea {
  resize: vertical;
}

.footer {
  margin-top: auto;
  padding: 30px 6vw;
  background: #111827;
  color: #e2e8f0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer a {
  color: #e2e8f0;
}

.footer-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.disclaimer {
  font-size: 0.92rem;
  color: #cbd5e1;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
}

.sticky-cta button {
  background: #f8b94f;
  color: #1f2933;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  padding: 16px 6vw;
  background: #ffffff;
  border-top: 1px solid #d7dde3;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hidden {
  display: none;
}

.muted {
  color: #6b7886;
}

.divider {
  height: 1px;
  width: 100%;
  background: #e0e5ea;
  margin: 12px 0;
}

@media (max-width: 920px) {
  .split,
  .split--reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
