*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1a1a;
  background: #f7f4f0;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 28px 6vw 10px;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
}

.brand {
  font-size: 1.2rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-color: #1b1a1a;
}

.hero {
  background: linear-gradient(rgba(15, 12, 10, 0.4), rgba(15, 12, 10, 0.4)),
    url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?auto=format&fit=crop&w=1600&q=80")
      center/cover no-repeat;
  color: #fff;
  padding: 90px 6vw 120px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  font-size: clamp(2.2rem, 3vw, 3.6rem);
  max-width: 720px;
  margin: 0;
}

.hero p {
  max-width: 540px;
  font-size: 1.1rem;
  margin: 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: 0.2s ease;
}

.btn.primary {
  background: #f1c27b;
  color: #1b1a1a;
}

.btn.secondary {
  border-color: #fff;
  color: #fff;
}

.btn.dark {
  background: #1b1a1a;
  color: #fff;
}

.section {
  padding: 80px 6vw;
}

.section.compact {
  padding: 60px 6vw;
}

.section.light {
  background: #fff;
}

.section.accent {
  background: #fdf1e1;
}

.section.dark {
  background: #1b1a1a;
  color: #f9f7f4;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 30px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.card-row,
.list-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.card img {
  border-radius: 12px;
  height: 180px;
  object-fit: cover;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 6px 14px;
  border-radius: 999px;
  background: rgba(241, 194, 123, 0.25);
  font-size: 0.85rem;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.stat {
  background: #fff;
  border-radius: 16px;
  padding: 18px 20px;
  display: flex;
  flex-direction: column;
  gap: 8px;
  border: 1px solid #f1e6d8;
}

.stat strong {
  font-size: 1.6rem;
}

.inline-cta {
  font-weight: 600;
  text-decoration: underline;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.timeline-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-left: 16px;
  border-left: 2px solid #1b1a1a;
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.price-card {
  background: #1b1a1a;
  color: #fff;
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.price-card p {
  margin: 0;
}

.price {
  font-size: 1.8rem;
  font-weight: 700;
}

.form-wrap {
  background: #fff;
  border-radius: 24px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d9d2c8;
  font-size: 1rem;
}

footer {
  padding: 50px 6vw;
  background: #161512;
  color: #f6f3ee;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 16px;
  background: #f1c27b;
  color: #1b1a1a;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  font-weight: 600;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #e4dacf;
  padding: 16px 6vw;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hidden {
  display: none;
}

@media (min-width: 768px) {
  .split,
  .card-row,
  .list-row,
  .pricing-grid {
    flex-direction: row;
    align-items: stretch;
  }

  .split > * {
    flex: 1;
  }

  .card-row .card,
  .pricing-grid .price-card,
  .list-row .stat {
    flex: 1;
  }

  .nav-links {
    gap: 26px;
  }

  .hero {
    padding: 120px 10vw 140px;
  }

  .section {
    padding: 90px 10vw;
  }
}
