* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Roboto", "Helvetica", "Arial", sans-serif;
  color: #0f1c2e;
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 22px 6vw;
  background: #f8fafc;
}

.nav ul {
  list-style: none;
  display: flex;
  gap: 18px;
  margin: 0;
  padding: 0;
}

.nav a {
  font-weight: 600;
  font-size: 0.95rem;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.02em;
  text-transform: uppercase;
  font-size: 0.95rem;
}

.section {
  padding: 70px 6vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: #f2f5f9;
}

.section.dark {
  background: #0f1c2e;
  color: #ffffff;
}

.section.soft {
  background: #fff6eb;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid #0f1c2e;
  font-weight: 600;
  background: #0f1c2e;
  color: #ffffff;
}

.button.secondary {
  background: transparent;
  color: #0f1c2e;
}

.button.light {
  background: #ffffff;
  color: #0f1c2e;
  border-color: #ffffff;
}

.button.inline {
  padding: 0;
  border: none;
  background: transparent;
  color: #f2b35a;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 22px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(15, 28, 46, 0.08);
}

.card.highlight {
  background: #0f1c2e;
  color: #ffffff;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.storyline {
  display: flex;
  flex-direction: column;
  gap: 16px;
  border-left: 3px solid #f2b35a;
  padding-left: 20px;
}

.metrics {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 10px 25px rgba(15, 28, 46, 0.06);
}

.quote {
  font-style: italic;
  border-left: 3px solid #2a4b7c;
  padding-left: 16px;
}

.cta-band {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 26px;
  border-radius: 20px;
  background: #1d3354;
  color: #ffffff;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border-radius: 20px;
  background: #ffffff;
  box-shadow: 0 20px 35px rgba(15, 28, 46, 0.12);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d6deea;
  font-size: 1rem;
}

.sticky-cta {
  position: sticky;
  bottom: 18px;
  align-self: center;
  margin: 20px 0;
  z-index: 3;
  display: inline-flex;
}

.footer {
  margin-top: auto;
  padding: 30px 6vw;
  background: #0f1c2e;
  color: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 20px 40px rgba(15, 28, 46, 0.2);
  display: flex;
  flex-direction: column;
  gap: 14px;
  z-index: 5;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f2b35a;
  color: #0f1c2e;
  font-weight: 600;
  font-size: 0.85rem;
}

.columns {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.soft-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 15px 30px rgba(15, 28, 46, 0.08);
}

.note {
  font-size: 0.95rem;
  color: #38475f;
}

@media (min-width: 860px) {
  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-content {
    max-width: 520px;
  }

  .split,
  .split.reverse,
  .columns,
  .cards,
  .card-row,
  .metrics {
    flex-direction: row;
  }

  .card,
  .panel,
  .metric,
  .soft-card {
    flex: 1;
  }

  .storyline {
    max-width: 520px;
  }

  .form-wrap {
    max-width: 520px;
  }
}
