* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1b1b;
  background: #f7f3ef;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  overflow: hidden;
}

.nav-shell {
  padding: 24px 7vw;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-size: 1.4rem;
  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: 2px;
  border-bottom: 1px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: #1b1b1b;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 48px 7vw 64px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  right: -10vw;
  top: 40px;
  width: 60vw;
  height: 60vw;
  background: #e8ded4;
  border-radius: 50%;
  z-index: 0;
}

.hero-content,
.hero-visual {
  position: relative;
  z-index: 1;
}

.hero-title {
  font-size: clamp(2.5rem, 5vw, 4rem);
  line-height: 1.1;
  margin-bottom: 20px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 24px;
}

.btn {
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid #1b1b1b;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  font-weight: 600;
  transition: all 0.2s ease;
}

.btn.primary {
  background: #1b1b1b;
  color: #fefefe;
}

.btn.secondary {
  background: transparent;
}

.btn:hover {
  transform: translateY(-2px);
}

.section {
  padding: 64px 7vw;
  position: relative;
}

.section.light {
  background: #fff;
}

.section.dark {
  background: #1b1b1b;
  color: #fefefe;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.offset-card {
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  margin-left: -4vw;
}

.floating-image {
  margin-right: -6vw;
  border-radius: 20px;
  overflow: hidden;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 20px;
}

.badge {
  padding: 8px 14px;
  border-radius: 999px;
  background: #f0e5da;
  font-size: 0.85rem;
}

.inline-cta {
  font-weight: 600;
  border-bottom: 1px solid currentColor;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
  margin-top: 28px;
}

.card {
  background: #fff;
  border-radius: 16px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid #efe3d6;
}

.card img {
  border-radius: 12px;
  height: 180px;
  object-fit: cover;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-left: 3px solid #1b1b1b;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 24px;
}

.price-item {
  padding: 20px;
  background: #fff;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 6px;
  border: 1px solid #e9ddd1;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
}

.form-wrap {
  background: #fff;
  padding: 30px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 18px 34px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #d9cfc3;
  font-size: 1rem;
  font-family: inherit;
}

.footer {
  padding: 40px 7vw;
  background: #141414;
  color: #fefefe;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ff7849;
  color: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  font-weight: 700;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 28px rgba(0, 0, 0, 0.15);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.meta-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 16px;
}

.info-line {
  display: flex;
  gap: 10px;
  align-items: baseline;
}

.info-line span {
  font-weight: 600;
}

.hero-visual img,
.split img {
  border-radius: 20px;
  object-fit: cover;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-content {
    flex: 1;
    padding-right: 4vw;
  }

  .hero-visual {
    flex: 1;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .pricing {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .price-item {
    flex: 1 1 260px;
  }

  .footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }

  .cookie-banner {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
