*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #121216;
  background: #f7f5f2;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  color: #1c3f72;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav-wrap {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px 6vw 0;
}

.nav-top {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.hero {
  padding: 40px 6vw 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-card {
  background: #111827;
  color: #f4f3f1;
  padding: 28px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-title {
  font-size: clamp(32px, 6vw, 56px);
  line-height: 1.1;
  margin: 0;
}

.hero-subtitle {
  margin: 0;
  font-size: 16px;
  color: #e1dfda;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn-primary,
.btn-secondary,
.btn-outline {
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
  border: none;
  cursor: pointer;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: #f4b740;
  color: #111827;
  box-shadow: 0 10px 20px rgba(244, 183, 64, 0.25);
}

.btn-secondary {
  background: #ffffff;
  color: #1c3f72;
}

.btn-outline {
  background: transparent;
  color: #f4b740;
  border: 1px solid #f4b740;
}

.section {
  padding: 48px 6vw;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section-light {
  background: #ffffff;
}

.section-dark {
  background: #1f2937;
  color: #f9fafb;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  font-weight: 600;
  color: #a98932;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #f4f1ec;
  padding: 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card.highlight {
  background: #fef4d6;
}

.badge {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: #e2e8f0;
  font-size: 12px;
  width: fit-content;
}

.quote {
  font-style: italic;
  border-left: 3px solid #f4b740;
  padding-left: 12px;
}

.media-strip {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-card {
  background: #111827;
  color: #f9fafb;
  padding: 22px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-size: 22px;
  font-weight: 700;
  color: #f4b740;
}

.form-section {
  background: #ffffff;
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 20px 40px rgba(17, 24, 39, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d1d5db;
  font-size: 14px;
  font-family: inherit;
}

.form-hint {
  font-size: 12px;
  color: #6b7280;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 16px;
  background: #1c3f72;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 10;
  box-shadow: 0 10px 20px rgba(28, 63, 114, 0.3);
}

.footer {
  padding: 32px 6vw 40px;
  background: #0f172a;
  color: #d1d5db;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #111827;
  color: #f9fafb;
  padding: 16px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hidden {
  display: none;
}

@media (min-width: 768px) {
  .nav-wrap {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-end;
  }

  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-card {
    flex: 1.2;
  }

  .hero-media {
    flex: 1;
    display: flex;
    align-items: stretch;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 240px;
  }

  .media-strip {
    flex-direction: row;
  }

  .pricing {
    flex-direction: row;
  }

  .price-card {
    flex: 1 1 260px;
  }

  .footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: flex-start;
  }
}
