*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Helvetica Neue", Arial, sans-serif;
  color: #1f1f1f;
  background: #fbf8f4;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 12px;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1100px, 92%);
  margin: 0 auto;
}

.top-bar {
  padding: 18px 0;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.logo {
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
}

.main-nav {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.main-nav a {
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.06);
}

.hero {
  background-image: url("https://images.unsplash.com/photo-1520342868574-5fa3804e551c?auto=format&fit=crop&w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #fff;
  padding: 90px 0 120px;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(0, 0, 0, 0.45);
}

.hero-content {
  position: relative;
  z-index: 1;
  max-width: 560px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  margin-bottom: 16px;
}

.hero p {
  margin-bottom: 24px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 28px;
  background: #f9a826;
  color: #1f1f1f;
  font-weight: 600;
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: #fff5ea;
}

.section.dark {
  background: #201b18;
  color: #f7f2ee;
}

.section-title {
  font-size: 2rem;
  margin-bottom: 18px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.tag {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(0, 0, 0, 0.08);
  font-size: 0.85rem;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.card.dark {
  background: #2f2723;
}

.inline-cta {
  color: #f9a826;
  font-weight: 600;
}

.quote {
  font-style: italic;
  background: rgba(255, 255, 255, 0.2);
  padding: 18px;
  border-radius: 14px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding: 0;
  list-style: none;
}

.list li {
  padding: 12px 16px;
  border-radius: 16px;
  background: rgba(0, 0, 0, 0.04);
}

.pricing-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.price-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  border: 1px solid rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-size: 1.6rem;
  font-weight: 700;
  color: #d46f1c;
}

.form-wrapper {
  background: #fff;
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 22px 40px rgba(0, 0, 0, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.15);
  font-family: inherit;
}

button {
  border: none;
  cursor: pointer;
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
  background: #1f1f1f;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.2);
}

.footer {
  padding: 40px 0;
  background: #151210;
  color: #d9d2c8;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-top: 16px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 16px;
  padding: 18px;
  display: none;
  z-index: 20;
  box-shadow: 0 20px 45px rgba(0, 0, 0, 0.2);
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.cookie-actions button {
  padding: 10px 16px;
  border-radius: 999px;
  background: #f1eee9;
}

.cookie-actions .accept {
  background: #f9a826;
}

.page-hero {
  padding: 80px 0 60px;
  background: #f2e8dc;
}

.page-hero h1 {
  margin-bottom: 12px;
  font-size: clamp(2rem, 4vw, 3rem);
}

.two-column {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.info-card {
  background: #fff;
  padding: 20px;
  border-radius: 14px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.08);
}

@media (min-width: 860px) {
  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-row {
    flex-direction: row;
  }

  .pricing-grid {
    flex-direction: row;
  }

  .two-column {
    flex-direction: row;
  }

  .footer-links {
    flex-direction: row;
    gap: 22px;
  }
}
