*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1e1e1e;
  background: #f9f6f2;
  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;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 7%;
  background: #f2ece6;
}

.nav .logo {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.9rem;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #1e1e1e;
  color: #fff;
  font-weight: 600;
  transition: transform 0.2s ease;
}

.cta-btn:hover {
  transform: translateY(-2px);
}

.outline-btn {
  border: 1px solid #1e1e1e;
  background: transparent;
  color: #1e1e1e;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 20px;
  z-index: 20;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 32px;
  padding: 40px 7% 70px;
  background: linear-gradient(120deg, #f5efe9, #f8f1ea);
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-title {
  font-size: clamp(2.2rem, 4vw, 3.3rem);
  line-height: 1.1;
  margin: 0;
}

.hero-media {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.hero-card {
  display: flex;
  gap: 16px;
  padding: 18px;
  background: #fff;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(30, 30, 30, 0.08);
}

.section {
  display: flex;
  flex-direction: column;
  padding: 60px 7%;
  gap: 24px;
}

.section-alt {
  background: #ffffff;
}

.section-highlight {
  background: #1e1e1e;
  color: #fef9f4;
}

.two-col {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.card-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: #fff;
  padding: 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 30px rgba(30, 30, 30, 0.08);
}

.card img {
  border-radius: 14px;
}

.quote {
  font-style: italic;
  border-left: 3px solid #f2b88b;
  padding-left: 16px;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.pricing-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  background: #fef9f4;
  border-radius: 16px;
  border: 1px solid #f0e2d4;
}

.form-wrap {
  background: #fff;
  padding: 28px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 12px 30px rgba(30, 30, 30, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #cfc7bf;
  font-size: 1rem;
  font-family: inherit;
}

.inline-cta {
  color: #b4581b;
  text-decoration: underline;
  font-weight: 600;
}

.footer {
  padding: 40px 7%;
  background: #f2ece6;
  display: flex;
  flex-direction: column;
  gap: 16px;
  margin-top: auto;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  right: 16px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 12px 35px rgba(30, 30, 30, 0.18);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.page-hero {
  padding: 50px 7% 30px;
  background: #f5efe9;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f0e2d4;
  font-size: 0.85rem;
  font-weight: 600;
}

@media (min-width: 768px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-content,
  .hero-media {
    flex: 1;
  }

  .two-col,
  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .card-grid {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .pricing {
    flex-direction: row;
  }

  .pricing-item {
    flex: 1;
  }
}
