* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1b1d21;
  background: #f7f5f1;
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  padding: 24px 20px 0;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  background: #ece7dd;
}

.hero {
  margin-top: 24px;
  padding: 34px 20px 40px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 24px 50px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-card h1 {
  margin: 0;
  font-size: 2.1rem;
  line-height: 1.2;
}

.hero-visual {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  background: #1b1d21;
  color: #f7f5f1;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
}

.section {
  padding: 38px 20px;
}

.section.light {
  background: #ffffff;
}

.section.dark {
  background: #1b1d21;
  color: #f7f5f1;
}

.section-title {
  font-size: 1.6rem;
  margin-bottom: 12px;
}

.offset-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.offset-card {
  background: #ffffff;
  padding: 22px;
  border-radius: 20px;
  box-shadow: 0 18px 36px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.offset-card.alt {
  background: #f0ebe2;
  align-self: flex-end;
}

.split-block {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.split-block .panel {
  background: #ffffff;
  padding: 22px;
  border-radius: 20px;
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  border-bottom: 2px solid #1b1d21;
}

.button {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 12px 18px;
  border-radius: 999px;
  background: #ff6b4a;
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button.secondary {
  background: transparent;
  color: inherit;
  border: 1px solid currentColor;
}

.pricing-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cta-row {
  margin-top: 18px;
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.price-card {
  background: #ffffff;
  padding: 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  border: 1px solid #ded7ca;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
}

.form-wrap {
  background: #ffffff;
  padding: 24px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #cfc7bb;
  font-family: inherit;
}

.testimonial {
  padding: 16px;
  border-left: 4px solid #ff6b4a;
  background: rgba(255, 255, 255, 0.15);
}

.footer {
  padding: 32px 20px;
  background: #111216;
  color: #f7f5f1;
  margin-top: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
}

.sticky-cta {
  position: fixed;
  bottom: 16px;
  right: 16px;
  background: #1b1d21;
  color: #f7f5f1;
  padding: 10px 14px;
  border-radius: 999px;
  display: flex;
  gap: 8px;
  align-items: center;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  padding: 16px 20px;
  border-top: 1px solid #d5cec0;
  display: none;
  z-index: 9;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.highlight-box {
  background: #ffefe9;
  padding: 18px;
  border-radius: 18px;
}

@media (min-width: 860px) {
  header {
    padding: 32px 60px 0;
  }

  .hero {
    flex-direction: row;
    align-items: stretch;
    padding: 44px 60px 60px;
  }

  .hero-card {
    flex: 1.2;
  }

  .hero-visual {
    flex: 1;
  }

  .section {
    padding: 52px 60px;
  }

  .offset-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .offset-card {
    flex: 1;
    min-width: 240px;
  }

  .split-block {
    flex-direction: row;
  }

  .split-block .panel {
    flex: 1;
  }

  .pricing-row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .price-card {
    flex: 1;
    min-width: 220px;
  }

  .two-col {
    flex-direction: row;
  }
}
