*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1b1b;
  background-color: #f7f6f2;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 8vw;
  gap: 24px;
}

.nav__brand {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav__links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.nav__links a {
  padding: 6px 10px;
  border-radius: 999px;
  background: #ece9e1;
}

.section {
  padding: 72px 8vw;
  display: flex;
  flex-direction: column;
  gap: 28px;
  position: relative;
}

.section--contrast {
  background: #111;
  color: #f5f2eb;
}

.section--soft {
  background: #efece5;
}

.section--wave {
  background-image: url("wave-bg.svg");
  background-size: cover;
  background-position: center;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 36px;
}

.hero__top {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero__kicker {
  font-size: 0.95rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: #6b6357;
}

.hero__title {
  font-size: clamp(2.5rem, 6vw, 4rem);
  line-height: 1.1;
  margin: 0;
}

.hero__copy {
  font-size: 1.1rem;
  max-width: 540px;
}

.hero__actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #1b1b1b;
  color: #fff;
  font-weight: 600;
}

.btn--ghost {
  background: transparent;
  border: 1px solid #1b1b1b;
  color: #1b1b1b;
}

.btn--light {
  background: #f5f2eb;
  color: #1b1b1b;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split__media {
  flex: 1;
}

.split__content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.card img {
  max-width: 120px;
}

.quote {
  padding: 28px;
  border-left: 4px solid #f0c24c;
  background: #fff4da;
  border-radius: 14px;
}

.metrics {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.metric {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: rgba(255, 255, 255, 0.12);
  padding: 18px;
  border-radius: 12px;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing__item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 20px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e3dfd7;
}

.pricing__price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #1b1b1b;
}

.cta-strip {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 26px;
  background: #1b1b1b;
  color: #fff;
  border-radius: 20px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.12);
}

.form label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-weight: 600;
  font-size: 0.95rem;
}

.form input,
.form select,
.form textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d8d2c8;
  font-size: 1rem;
  font-family: inherit;
}

.form textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  padding: 36px 8vw 48px;
  background: #0d0d0d;
  color: #e6e1d8;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer__links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.sticky-cta {
  position: fixed;
  bottom: 24px;
  right: 20px;
  z-index: 8;
  padding: 12px 18px;
  background: #f0c24c;
  color: #1b1b1b;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.22);
}

.inline-link {
  color: #2b5fa0;
  font-weight: 600;
  text-decoration: underline;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.cookie-actions button {
  border: none;
  cursor: pointer;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
}

.cookie-accept {
  background: #1b1b1b;
  color: #fff;
}

.cookie-reject {
  background: #efece5;
  color: #1b1b1b;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: center;
    gap: 60px;
  }

  .hero__top,
  .hero__media {
    flex: 1;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split--reverse {
    flex-direction: row-reverse;
  }

  .cards {
    flex-direction: row;
  }

  .metrics {
    flex-direction: row;
  }

  .pricing {
    flex-direction: row;
  }
}
