*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: #1f1f1f;
  background: #f6f4f1;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  overflow: hidden;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 6%;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: #1f1f1f;
}

.hero {
  position: relative;
  padding: 24px 6% 72px;
}

.hero-panel {
  display: flex;
  flex-direction: column;
  gap: 22px;
  background: #f0ebe5;
  padding: 32px;
  border-radius: 18px;
  box-shadow: 0 24px 60px rgba(31, 31, 31, 0.12);
}

.hero-panel h1 {
  margin: 0;
  font-size: clamp(2.2rem, 4vw, 3.6rem);
}

.hero-panel p {
  margin: 0;
  max-width: 520px;
}

.hero-cta {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #1f1f1f;
  font-weight: 600;
  background: #1f1f1f;
  color: #fff;
}

.btn.secondary {
  background: transparent;
  color: #1f1f1f;
}

.btn.ghost {
  background: #fff;
  color: #1f1f1f;
  border-color: #fff;
}

.floating-card {
  position: relative;
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  margin-top: -28px;
  width: fit-content;
  box-shadow: 0 14px 32px rgba(0, 0, 0, 0.12);
}

.section {
  padding: 64px 6%;
}

.section.alt {
  background: #1f1f1f;
  color: #f6f4f1;
}

.offset-block {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.offset-block .offset-text {
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.1);
  position: relative;
  z-index: 1;
}

.offset-block .offset-media {
  margin-left: 12%;
  border-radius: 22px;
  overflow: hidden;
}

.card-strip {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.08);
}

.card.dark {
  background: #2c2b2b;
  color: #f6f4f1;
}

.split-band {
  display: flex;
  flex-direction: column;
  gap: 24px;
  align-items: flex-start;
}

.split-band .band-image {
  border-radius: 18px;
  overflow: hidden;
}

.tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #e5ded6;
  font-size: 0.8rem;
  font-weight: 600;
}

.inline-link {
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.price-card {
  background: #fff;
  padding: 24px;
  border-radius: 16px;
  border: 1px solid #ded8d1;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
}

.form-wrap {
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 12px 34px rgba(0, 0, 0, 0.12);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #c9c2bb;
  font-size: 1rem;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: #ff5f2e;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 28px rgba(255, 95, 46, 0.4);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  background: #fff;
  padding: 16px;
  border-radius: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.18);
  max-width: 320px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.footer {
  padding: 48px 6%;
  background: #131313;
  color: #f6f4f1;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
  font-size: 0.9rem;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.highlight {
  background: #ffd86c;
  padding: 2px 6px;
  border-radius: 6px;
}

.note {
  font-size: 0.9rem;
  opacity: 0.8;
}

@media (min-width: 768px) {
  .hero-panel {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-panel .text {
    flex: 1;
  }

  .hero-panel .media {
    flex: 0 0 40%;
  }

  .offset-block {
    flex-direction: row;
    align-items: center;
  }

  .offset-block .offset-text {
    flex: 1;
  }

  .offset-block .offset-media {
    flex: 1;
  }

  .card-strip {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .split-band {
    flex-direction: row;
    align-items: center;
  }

  .split-band .band-image {
    flex: 1;
  }

  .split-band .band-content {
    flex: 1;
  }

  .pricing-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .price-card {
    flex: 1 1 30%;
  }

  .two-col {
    flex-direction: row;
  }
}
