/* Base */
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1f1f1f;
  background: #f7f4f0;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: #2c3f66;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 6%;
  background: #f7f4f0;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 40px 6% 10px;
  position: relative;
}

.hero-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 16px 40px rgba(25, 25, 25, 0.08);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.14em;
  font-size: 0.75rem;
  color: #7c6f63;
}

.hero-title {
  font-size: 2.2rem;
  line-height: 1.2;
  margin: 0;
}

.hero-sub {
  font-size: 1.05rem;
  color: #3a342f;
}

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.btn {
  background: #2c3f66;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.alt {
  background: transparent;
  color: #2c3f66;
  border: 1px solid #2c3f66;
}

.section {
  padding: 50px 6%;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.section.light {
  background: #ffffff;
}

.section.dark {
  background: #1f2736;
  color: #f7f4f0;
}

.section.dark a {
  color: #f3d9b0;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.pill {
  background: #efe7dd;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 8px;
}

.card-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #ffffff;
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.06);
}

.card h3,
.card h4 {
  margin: 0;
}

.price {
  font-weight: 700;
  color: #2c3f66;
}

.testimonial {
  background: #fdf6ec;
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #f0e4d8;
}

.note {
  font-size: 0.95rem;
  color: #4b453f;
}

.form-wrap {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 16px 32px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d1c8be;
  font-size: 1rem;
  font-family: inherit;
}

.footer {
  background: #0e1218;
  color: #d8d0c4;
  padding: 30px 6%;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.9rem;
}

.footer a {
  color: #f3d9b0;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #ffffff;
  border-radius: 16px;
  padding: 14px 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  display: none;
  z-index: 20;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 20px;
  background: #2c3f66;
  color: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  z-index: 15;
}

@media (min-width: 860px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-card {
    flex: 1.1;
  }

  .hero-visual {
    flex: 0.9;
  }

  .cta-row {
    flex-direction: row;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-list {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .nav-links {
    gap: 22px;
  }

  .cookie-banner {
    left: auto;
    right: 24px;
    max-width: 360px;
  }
}
