/* Base */
* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: #1f2a24;
  background: #f7f5f1;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  flex: 0 0 240px;
  background: #0f2a1d;
  color: #f7f5f1;
  padding: 28px 20px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 22px;
  letter-spacing: 1px;
  text-transform: uppercase;
  font-weight: 600;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 15px;
}

.nav a {
  opacity: 0.85;
}

.nav a:hover {
  opacity: 1;
}

.cta-sidebar {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid #f7f5f1;
  color: #f7f5f1;
  font-weight: 600;
  transition: all 0.2s ease;
}

.button.dark {
  background: #0f2a1d;
  border-color: #0f2a1d;
}

.button.light {
  background: #f7f5f1;
  color: #0f2a1d;
}

.button:hover {
  transform: translateY(-1px);
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section {
  padding: 64px 8vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero {
  background: url("https://images.unsplash.com/photo-1469474968028-56623f02e42e?q=80&w=1800&auto=format&fit=crop") center/cover no-repeat;
  color: #f7f5f1;
  position: relative;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: rgba(15, 42, 29, 0.55);
}

.hero-content {
  position: relative;
  max-width: 640px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h1 {
  font-size: 46px;
  line-height: 1.1;
  margin: 0;
}

.hero p {
  font-size: 18px;
}

.inline-link {
  color: #f7f5f1;
  border-bottom: 1px solid rgba(247, 245, 241, 0.6);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.highlight {
  background: #e6efe6;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 18px 30px rgba(15, 42, 29, 0.08);
}

.card img {
  border-radius: 14px;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 18px;
  border-radius: 16px;
  background: #fff4e0;
}

.price-tag {
  font-weight: 700;
  color: #a04a00;
}

.form-wrap {
  background: #ffffff;
  border-radius: 18px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 14px 24px rgba(15, 42, 29, 0.08);
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c7d3c7;
  font-size: 15px;
}

.sticky-cta {
  position: sticky;
  bottom: 0;
  background: #0f2a1d;
  color: #f7f5f1;
  padding: 12px 8vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.sticky-cta a {
  border: 1px solid #f7f5f1;
  border-radius: 999px;
  padding: 10px 16px;
  font-weight: 600;
}

.footer {
  padding: 40px 8vw 60px;
  background: #0f2a1d;
  color: #f7f5f1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  max-width: 320px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 18px 30px rgba(15, 42, 29, 0.15);
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid #0f2a1d;
  background: #ffffff;
  cursor: pointer;
}

.cookie-actions .accept {
  background: #0f2a1d;
  color: #ffffff;
}

@media (min-width: 900px) {
  .split {
    flex-direction: row;
    align-items: center;
  }

  .split-row {
    flex-direction: row;
    align-items: flex-start;
  }

  .card-row {
    flex-direction: row;
  }

  .pricing {
    flex-direction: row;
  }

  .price-item {
    flex: 1;
  }

  .form-grid {
    flex-direction: row;
  }

  .form-grid > div {
    flex: 1;
  }
}

@media (max-width: 900px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 12px;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .cta-sidebar {
    flex-direction: row;
    width: 100%;
  }

  .sticky-cta {
    position: static;
  }
}
