* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: #1c1d1f;
  background: #f7f5f2;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 0;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
  text-transform: lowercase;
  font-size: 20px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 14px;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: #1c1d1f;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 24px 0 48px;
}

.hero-top {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero h1 {
  font-size: clamp(2.4rem, 3vw, 3.4rem);
  margin: 0;
}

.hero p {
  max-width: 620px;
  font-size: 18px;
}

.hero-media {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: flex-end;
  background: #dfe3e7;
}

.hero-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero-tag {
  position: absolute;
  bottom: 20px;
  left: 20px;
  background: rgba(255, 255, 255, 0.92);
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  font-weight: 600;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid #1c1d1f;
  background: #1c1d1f;
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, background 0.2s ease;
}

.btn-secondary {
  background: transparent;
  color: #1c1d1f;
}

.btn:hover {
  transform: translateY(-2px);
}

.section {
  padding: 56px 0;
}

.section-alt {
  background: #ffffff;
}

.section-dark {
  background: #101214;
  color: #f7f5f2;
}

.section h2 {
  margin: 0 0 16px;
  font-size: clamp(1.8rem, 2.4vw, 2.6rem);
}

.section p {
  margin: 0 0 18px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-media {
  flex: 1;
  border-radius: 22px;
  overflow: hidden;
  background: #e2e6ea;
}

.split-content {
  flex: 1;
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
  border-bottom: 2px solid currentColor;
  padding-bottom: 4px;
}

.story-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.story-card {
  padding: 18px;
  background: #f1eee9;
  border-radius: 16px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  background: #f1eee9;
  border-radius: 999px;
  padding: 10px 18px;
  font-size: 14px;
}

.trust-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.trust-item {
  padding: 16px 20px;
  border-radius: 14px;
  background: #ffffff;
  box-shadow: 0 10px 24px rgba(16, 18, 20, 0.08);
  font-size: 14px;
}

.quote-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.quote {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px 22px;
  border-left: 4px solid #1c1d1f;
}

.benefit-cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.benefit-card {
  display: flex;
  gap: 18px;
  align-items: flex-start;
  padding: 18px;
  border-radius: 16px;
  background: #f7f5f2;
  border: 1px solid #e3ded7;
}

.benefit-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: #1c1d1f;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
}

.step span {
  font-weight: 700;
  font-size: 20px;
}

.pricing-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 22px;
  border: 1px solid #e5e0da;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price {
  font-size: 24px;
  font-weight: 700;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #1c1d1f;
  color: #fff;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.8px;
}

.form-wrap {
  background: #ffffff;
  border-radius: 24px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 20px;
  box-shadow: 0 18px 30px rgba(16, 18, 20, 0.12);
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d3d0cb;
  font-size: 14px;
  background: #fbfaf8;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.form-note {
  font-size: 13px;
  color: #4e4f52;
}

.cta-panel {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px;
  border-radius: 20px;
  background: #1c1d1f;
  color: #fff;
}

.cta-panel a {
  color: #fff;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 5;
  background: #f26f3c;
  color: #fff;
  border-radius: 999px;
  padding: 12px 20px;
  font-size: 14px;
  font-weight: 600;
  box-shadow: 0 12px 20px rgba(242, 111, 60, 0.3);
}

.footer {
  padding: 40px 0 60px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 20px;
  padding: 18px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 16px 30px rgba(16, 18, 20, 0.15);
  display: none;
  z-index: 6;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.page-hero {
  padding: 32px 0 8px;
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: clamp(2rem, 2.6vw, 3rem);
}

.media-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.media-card {
  border-radius: 18px;
  overflow: hidden;
  background: #e7eaee;
}

.legal {
  padding: 20px 0 60px;
}

.legal h2 {
  margin-top: 32px;
}

@media (min-width: 840px) {
  .hero {
    padding: 48px 0 72px;
  }

  .hero-top {
    flex-direction: row;
    align-items: flex-end;
  }

  .split {
    flex-direction: row;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .story-grid {
    flex-direction: row;
  }

  .story-card {
    flex: 1;
  }

  .trust-row {
    justify-content: space-between;
  }

  .benefit-cards {
    flex-direction: row;
  }

  .benefit-card {
    flex: 1;
  }

  .steps {
    flex-direction: row;
  }

  .step {
    flex: 1;
  }

  .pricing-wrap {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .pricing-card {
    flex: 1 1 220px;
  }

  .media-row {
    flex-direction: row;
  }
}
