* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Helvetica", Arial, sans-serif;
  color: #1d1f24;
  background: #f6f4f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 14px;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 8%;
  background: #f6f4f1;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 80px 8%;
  background: linear-gradient(120deg, rgba(246, 244, 241, 0.88), rgba(246, 244, 241, 0.6)), url("https://images.unsplash.com/photo-1489515217757-5fd1be406fef?auto=format&fit=crop&w=1400&q=80") center/cover no-repeat;
}

.hero h1 {
  font-size: clamp(2.6rem, 4vw, 4rem);
  max-width: 720px;
}

.hero p {
  max-width: 520px;
  font-size: 1.1rem;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.primary-btn,
.secondary-btn,
.ghost-btn {
  padding: 12px 22px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.95rem;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.primary-btn {
  background: #1d1f24;
  color: #f6f4f1;
}

.secondary-btn {
  background: #e1d6c8;
  color: #1d1f24;
}

.ghost-btn {
  border: 1px solid #1d1f24;
  background: transparent;
  color: #1d1f24;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 70px 8%;
}

.section.alt {
  background: #ebe5dd;
}

.section.dark {
  background: #1d1f24;
  color: #f6f4f1;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.18em;
  color: #7a6e64;
}

.section h2 {
  font-size: clamp(2rem, 3vw, 3rem);
  max-width: 680px;
}

.section p {
  max-width: 640px;
  font-size: 1rem;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #ffffff;
  padding: 22px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 16px 40px rgba(28, 25, 23, 0.08);
}

.card h3 {
  font-size: 1.2rem;
}

.card .price {
  font-weight: 700;
  font-size: 1.1rem;
  color: #1d1f24;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f1ece5;
  font-size: 0.85rem;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list li {
  list-style: none;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}

.list span {
  font-weight: 600;
}

.inline-cta {
  text-decoration: underline;
  font-weight: 600;
}

.testimonial {
  padding: 18px;
  border-left: 3px solid #1d1f24;
  background: #f6f4f1;
  border-radius: 12px;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.lead-form {
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 14px 28px rgba(28, 25, 23, 0.12);
}

.lead-form label {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-weight: 600;
  font-size: 0.9rem;
}

.lead-form input,
.lead-form select {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c9c2ba;
  font-size: 0.95rem;
  background: #faf8f5;
}

.lead-form button {
  align-self: flex-start;
}

.sticky-cta {
  position: sticky;
  bottom: 18px;
  margin-left: auto;
  margin-right: auto;
  background: #1d1f24;
  color: #f6f4f1;
  padding: 14px 28px;
  border-radius: 999px;
  width: fit-content;
  font-weight: 600;
  display: flex;
  justify-content: center;
}

.footer {
  padding: 40px 8%;
  background: #1d1f24;
  color: #f6f4f1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 22px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  padding: 18px 22px;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(28, 25, 23, 0.18);
  display: flex;
  flex-direction: column;
  gap: 12px;
  max-width: 460px;
  width: calc(100% - 32px);
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.hero-note {
  display: flex;
  gap: 14px;
  align-items: center;
  background: #f1ece5;
  padding: 12px 16px;
  border-radius: 14px;
  max-width: 440px;
}

.hero-note span {
  font-weight: 600;
}

.meta-stack {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.95rem;
}

.table {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
  padding: 22px;
  border-radius: 16px;
}

.table-row {
  display: flex;
  justify-content: space-between;
  gap: 18px;
  font-size: 0.95rem;
}

.table-row span {
  font-weight: 600;
}

.note-box {
  background: #f1ece5;
  padding: 18px;
  border-radius: 16px;
}

.page-hero {
  padding: 80px 8% 50px;
  background: #ebe5dd;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.content-block {
  padding: 60px 8%;
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.divider {
  height: 1px;
  width: 100%;
  background: #d4ccc3;
}

@media (min-width: 880px) {
  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-row,
  .pricing-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 calc(50% - 18px);
  }

  .table-row {
    font-size: 1rem;
  }
}
