* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1d1b1a;
  background: #faf7f4;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

header {
  padding: 24px 0 12px;
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.6px;
  font-size: 20px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: #1d1b1a;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 40px 0 60px;
}

.hero-card {
  background: linear-gradient(135deg, rgba(255, 255, 255, 0.9), rgba(246, 235, 224, 0.9));
  border-radius: 32px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-image {
  min-height: 320px;
  background: url("https://images.unsplash.com/photo-1521572163474-6864f9cf17ab?auto=format&fit=crop&w=1200&q=80")
    center/cover no-repeat;
  border-radius: 32px;
  position: relative;
  overflow: hidden;
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(29, 27, 26, 0.25);
}

.hero-image .hero-overlay {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: flex-end;
  padding: 26px;
  color: #fff;
  z-index: 1;
  font-size: 18px;
}

.section {
  padding: 60px 0;
}

.section.alt {
  background: #f1ebe6;
}

.section.dark {
  background: #1d1b1a;
  color: #f7f1ec;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #1d1b1a;
  color: #fff;
  font-size: 12px;
  letter-spacing: 0.4px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 24px;
  border-radius: 999px;
  background: #1d1b1a;
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.btn.light {
  background: #fff;
  color: #1d1b1a;
}

.btn.outline {
  background: transparent;
  border: 1px solid #1d1b1a;
  color: #1d1b1a;
}

.btn:hover {
  transform: translateY(-2px);
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: #fff;
  border-radius: 24px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 14px 40px rgba(29, 27, 26, 0.08);
}

.card img {
  border-radius: 16px;
}

.accent {
  font-size: 28px;
  font-weight: 700;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.timeline-item {
  background: #fff;
  padding: 20px;
  border-left: 4px solid #1d1b1a;
  border-radius: 12px;
}

.testimonial {
  background: rgba(255, 255, 255, 0.2);
  border-radius: 18px;
  padding: 18px;
  margin-top: 16px;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.price-card {
  background: #fff;
  border-radius: 20px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid #e7dcd2;
}

.price {
  font-size: 26px;
  font-weight: 700;
}

.form-box {
  background: #fff;
  border-radius: 28px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 16px 40px rgba(29, 27, 26, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d9cfc7;
  font-size: 15px;
  background: #fff;
}

.notice {
  font-size: 13px;
  color: #5f524b;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #ff6b48;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(255, 107, 72, 0.35);
  z-index: 999;
}

.footer {
  padding: 40px 0 60px;
  background: #1d1b1a;
  color: #f7f1ec;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 20px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  color: #1d1b1a;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 40px rgba(29, 27, 26, 0.2);
  z-index: 1000;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-hidden {
  display: none;
}

@media (min-width: 768px) {
  .hero {
    flex-direction: row;
    align-items: stretch;
  }

  .hero-card,
  .hero-image {
    flex: 1;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-grid {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .pricing {
    flex-direction: row;
  }

  .price-card {
    flex: 1;
  }

  .footer-links {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }
}
