* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2330;
  background: #f6f4f1;
  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;
}

.site-header {
  padding: 24px 6vw 12px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
}

.nav {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav a:hover {
  border-bottom: 1px solid #1f2330;
}

.section {
  padding: 56px 6vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.section.alt {
  background: #ffffff;
}

.section.accent {
  background: #192739;
  color: #f7f4ee;
}

.section.accent a {
  color: #f7f4ee;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .content,
.split .media {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.eyebrow {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.16em;
  color: #4b596e;
}

.section.accent .eyebrow {
  color: #b4c3d4;
}

h1,
h2,
h3 {
  margin: 0;
  font-weight: 700;
  line-height: 1.15;
}

h1 {
  font-size: 2.4rem;
}

h2 {
  font-size: 2rem;
}

h3 {
  font-size: 1.3rem;
}

p {
  margin: 0;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #f2b541;
  color: #1f2330;
  font-weight: 600;
  border: none;
  cursor: pointer;
  gap: 8px;
}

.button.secondary {
  background: transparent;
  border: 1px solid currentColor;
}

.button.dark {
  background: #1f2330;
  color: #f6f4f1;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  padding: 18px;
  border-radius: 16px;
  background: #f7f4ee;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #e5e0d7;
}

.card strong {
  font-size: 1.05rem;
}

.price {
  font-weight: 700;
  color: #1f2330;
}

.tagline {
  font-size: 1.1rem;
  font-weight: 500;
}

.inline-link {
  font-weight: 600;
  text-decoration: underline;
}

.metrics {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.metric {
  display: flex;
  flex-direction: column;
  gap: 4px;
  padding: 12px 16px;
  border-left: 3px solid #f2b541;
}

.form-block {
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid #e5e0d7;
}

.form-block label {
  font-size: 0.85rem;
  font-weight: 600;
}

.form-block input,
.form-block select,
.form-block textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfd6df;
  font-family: inherit;
}

.form-block textarea {
  resize: vertical;
  min-height: 120px;
}

.form-note {
  font-size: 0.85rem;
  color: #5c6a7b;
}

.footer {
  padding: 40px 6vw;
  background: #111827;
  color: #f6f4f1;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer a {
  color: #f6f4f1;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: #1f2330;
  color: #f6f4f1;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.18);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  max-width: 380px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.18);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-image {
  border-radius: 24px;
  overflow: hidden;
  border: 1px solid #d7d7df;
}

.media-layer {
  position: relative;
  padding: 16px;
  border-radius: 24px;
  background: linear-gradient(135deg, #f2b541, #f7f4ee);
}

.media-layer img {
  border-radius: 18px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin: 0;
  padding: 0;
  list-style: none;
}

.list li {
  display: flex;
  gap: 10px;
  align-items: flex-start;
}

.list span {
  font-weight: 700;
  color: #f2b541;
}

@media (min-width: 900px) {
  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  h1 {
    font-size: 3.1rem;
  }

  h2 {
    font-size: 2.4rem;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 210px;
  }

  .metrics {
    flex-direction: row;
  }

  .metric {
    flex: 1;
  }
}
