* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: #1a1a1a;
  background: #f7f4ef;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

header {
  padding: 24px 0 8px;
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 20px;
}

.brand {
  font-size: 1.6rem;
  font-weight: 700;
  letter-spacing: 0.04em;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.hero {
  position: relative;
  padding: 64px 0 90px;
}

.hero-layout {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-card {
  background: #ffffff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 22px 50px rgba(0, 0, 0, 0.08);
}

.hero-card h1 {
  font-size: 2.6rem;
  line-height: 1.1;
  margin-bottom: 16px;
}

.hero-image {
  position: relative;
  border-radius: 28px;
  overflow: hidden;
  transform: translateX(10px);
}

.hero-image::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(42, 72, 62, 0.05), rgba(42, 72, 62, 0.3));
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #e6efe6;
  font-size: 0.8rem;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 12px;
}

.section {
  padding: 70px 0;
}

.section.alt {
  background: #ffffff;
}

.section.dark {
  background: #1f2a26;
  color: #fdfbf5;
}

.section h2 {
  font-size: 2rem;
  margin-bottom: 18px;
}

.section p {
  max-width: 680px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.offset-panel {
  background: #fef2da;
  padding: 24px;
  border-radius: 20px;
  align-self: flex-start;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: #ffffff;
  padding: 22px;
  border-radius: 18px;
  box-shadow: 0 16px 35px rgba(0, 0, 0, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  border-radius: 14px;
}

.price {
  font-weight: 700;
  font-size: 1.2rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  background: #2a483e;
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease;
}

.btn.light {
  background: #f4d5a6;
  color: #1f2a26;
}

.btn.outline {
  background: transparent;
  border: 1px solid #1f2a26;
  color: #1f2a26;
}

.btn:hover {
  transform: translateY(-2px);
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.media-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.media-stack img {
  border-radius: 20px;
}

.form-wrap {
  background: #ffffff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.1);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  display: block;
  margin-bottom: 6px;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d6d1c7;
  font-family: inherit;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
}

.sticky-cta a {
  background: #2a483e;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 14px 28px rgba(0, 0, 0, 0.12);
  display: none;
  z-index: 30;
}

.cookie-banner.active {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

footer {
  padding: 40px 0 60px;
  background: #1f2a26;
  color: #fdfbf5;
}

.footer-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

@media (min-width: 800px) {
  .hero-layout {
    flex-direction: row;
    align-items: center;
  }

  .hero-card {
    flex: 1;
    transform: translateY(20px);
  }

  .hero-image {
    flex: 1;
    transform: translateY(-10px);
  }

  .split {
    flex-direction: row;
    align-items: flex-start;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .media-stack {
    flex-direction: row;
  }

  .footer-grid {
    flex-direction: row;
    justify-content: space-between;
  }
}
