* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Tahoma, sans-serif;
  color: #1c222c;
  background: #f7f6f4;
  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;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 18px 7%;
  background: #f7f6f4;
  border-bottom: 1px solid #e3ded7;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus {
  border-bottom-color: #2f4f4f;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.hero {
  background: linear-gradient(120deg, rgba(18, 24, 33, 0.72), rgba(18, 24, 33, 0.2)),
    url("https://images.unsplash.com/photo-1521737604893-d14cc237f11d?auto=format&fit=crop&w=1600&q=80")
      center/cover no-repeat;
  color: #f8f6f1;
  padding: 110px 7% 90px;
}

.hero-content {
  max-width: 640px;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.6rem);
  margin-bottom: 18px;
  line-height: 1.1;
}

.hero p {
  margin-bottom: 26px;
  font-size: 1.1rem;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #f4b860;
  color: #1c222c;
  font-weight: 600;
  border: 1px solid #f4b860;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button.secondary {
  background: transparent;
  border-color: #f8f6f1;
  color: #f8f6f1;
}

.button:hover,
.button:focus {
  transform: translateY(-2px);
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.15);
}

.section {
  padding: 70px 7%;
}

.section-title {
  font-size: clamp(1.6rem, 3vw, 2.4rem);
  margin-bottom: 18px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
  align-items: center;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-content {
  flex: 1;
  min-width: 0;
}

.split-media {
  flex: 1;
  min-width: 0;
}

.split-media img {
  border-radius: 16px;
  box-shadow: 0 20px 50px rgba(22, 28, 39, 0.2);
}

.tag {
  display: inline-block;
  padding: 6px 14px;
  border-radius: 999px;
  background: #1c222c;
  color: #f8f6f1;
  font-size: 0.85rem;
  margin-bottom: 12px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: #ffffff;
  padding: 22px;
  border-radius: 16px;
  box-shadow: 0 18px 40px rgba(30, 32, 36, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 12px;
}

.price {
  font-weight: 700;
  color: #2f4f4f;
}

.inline-cta {
  color: #2f4f4f;
  font-weight: 600;
  text-decoration: underline;
  text-decoration-thickness: 2px;
}

.form-wrapper {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  box-shadow: 0 24px 55px rgba(24, 28, 32, 0.18);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #cfd6de;
  font-size: 1rem;
  font-family: inherit;
}

.cta-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.section-contrast {
  background: #1c222c;
  color: #f8f6f1;
}

.section-contrast .card {
  background: #2b3341;
  color: #f8f6f1;
}

.section-contrast .price {
  color: #f4b860;
}

.section-soft {
  background: #ebe8e2;
}

.section-image {
  background: linear-gradient(120deg, rgba(244, 184, 96, 0.12), rgba(28, 34, 44, 0.12)),
    url("https://images.unsplash.com/photo-1522075469751-3a6694fb2f61?auto=format&fit=crop&w=1600&q=80")
      center/cover no-repeat;
  color: #1c222c;
}

.quote {
  font-size: 1.1rem;
  font-style: italic;
  border-left: 4px solid #f4b860;
  padding-left: 18px;
}

.footer {
  margin-top: auto;
  padding: 35px 7%;
  background: #15181f;
  color: #f8f6f1;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer a {
  color: #f4b860;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #2f4f4f;
  color: #f8f6f1;
  padding: 12px 18px;
  border-radius: 999px;
  z-index: 10;
  box-shadow: 0 14px 24px rgba(0, 0, 0, 0.2);
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  max-width: 360px;
  background: #ffffff;
  padding: 16px;
  border-radius: 14px;
  box-shadow: 0 14px 30px rgba(0, 0, 0, 0.2);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  padding: 8px 14px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions .accept {
  background: #2f4f4f;
  color: #f8f6f1;
}

.cookie-actions .reject {
  background: #e4e1db;
  color: #1c222c;
}

.hidden {
  display: none;
}

@media (min-width: 900px) {
  .split {
    flex-direction: row;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1;
    min-width: 240px;
  }

  .cta-row {
    flex-direction: row;
    align-items: center;
  }
}
