*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Manrope", "Segoe UI", sans-serif;
  color: #1e1e22;
  background: #f6f4f1;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 1.5rem 6vw;
  background: #f0ede8;
}

.brand {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
}

.brand h1 {
  margin: 0;
  font-size: 1.4rem;
  letter-spacing: 0.08em;
  text-transform: uppercase;
}

.brand span {
  font-size: 0.9rem;
  color: #6a6a72;
}

.nav {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.95rem;
}

.nav a {
  padding-bottom: 0.2rem;
  border-bottom: 2px solid transparent;
}

.nav a:hover {
  border-bottom-color: #d18b74;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 2.5rem 6vw 3rem;
  background: linear-gradient(120deg, #fff1e6, #f7f2ed);
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.hero h2 {
  font-size: 2.4rem;
  margin: 0;
}

.hero p {
  margin: 0;
  max-width: 42rem;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.8rem;
  border-radius: 999px;
  border: 1px solid #1e1e22;
  font-weight: 600;
  background: #1e1e22;
  color: #fff;
}

.button.secondary {
  background: transparent;
  color: #1e1e22;
}

.section {
  padding: 2.8rem 6vw;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.section.light {
  background: #fff;
}

.section.dark {
  background: #1e1e22;
  color: #f8f4ef;
}

.section.accent {
  background: #efe2d6;
}

.section-title {
  font-size: 1.8rem;
  margin: 0;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split .text {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.metrics {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.metric {
  padding: 1rem;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 1rem;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  padding: 1.5rem;
  border-radius: 1.2rem;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border: 1px solid #e4ddd3;
}

.card img {
  border-radius: 1rem;
}

.card .price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #c1654a;
}

.testimonial {
  padding: 1.2rem;
  border-left: 3px solid #c1654a;
  background: #faf7f3;
}

.inline-cta {
  font-weight: 600;
  color: #c1654a;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  background: #fff;
  padding: 2rem;
  border-radius: 1.5rem;
  border: 1px solid #e4ddd3;
}

.form-field {
  display: flex;
  flex-direction: column;
  gap: 0.4rem;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 0.85rem 1rem;
  border-radius: 0.8rem;
  border: 1px solid #d5c9bc;
  font-family: inherit;
  font-size: 1rem;
}

.footer {
  margin-top: auto;
  padding: 2rem 6vw 3rem;
  background: #1c1c20;
  color: #efe9e1;
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
  font-size: 0.95rem;
}

.sticky-cta {
  position: sticky;
  bottom: 1rem;
  margin: 0 6vw 1.5rem;
  align-self: flex-end;
  padding: 0.7rem 1.6rem;
  background: #c1654a;
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.18);
}

.cookie-banner {
  position: fixed;
  inset: auto 1rem 1rem 1rem;
  background: #1e1e22;
  color: #f6f4f1;
  padding: 1.2rem 1.4rem;
  border-radius: 1rem;
  display: none;
  flex-direction: column;
  gap: 0.8rem;
  z-index: 20;
}

.cookie-banner.visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 0.8rem;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 0.6rem 1.2rem;
  border-radius: 999px;
  border: 1px solid #f6f4f1;
  background: transparent;
  color: #f6f4f1;
  font-weight: 600;
  cursor: pointer;
}

.cookie-actions button.primary {
  background: #f6f4f1;
  color: #1e1e22;
}

.page-header {
  padding: 2rem 6vw 1.5rem;
  background: #efe2d6;
}

.page-header h2 {
  margin: 0;
  font-size: 2rem;
}

.content {
  max-width: 70rem;
}

.content p {
  margin-top: 0;
}

@media (min-width: 860px) {
  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero-content {
    flex: 1.2;
  }

  .hero-image {
    flex: 0.9;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .metrics {
    flex-direction: row;
  }
}
