* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1b1f;
  background: #f7f5f2;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.top-bar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 6vw;
  background: #ffffff;
  border-bottom: 1px solid #e4e1db;
}

.brand {
  font-weight: 600;
  letter-spacing: 0.04em;
}

.ad-label {
  font-size: 0.85rem;
  color: #4a4a52;
}

.nav-links {
  display: flex;
  gap: 18px;
  align-items: center;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 20px;
  background: #f0ede7;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  padding: 40px 6vw 10px;
  gap: 30px;
}

.split {
  display: flex;
  flex-wrap: wrap;
  align-items: stretch;
  gap: 30px;
  padding: 40px 6vw;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .col {
  flex: 1 1 320px;
  min-width: 280px;
}

.split .panel {
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 18px 30px rgba(12, 20, 40, 0.06);
}

.image-box {
  background: #d8d1c6;
  border-radius: 18px;
  overflow: hidden;
}

.image-box.tall img {
  height: 420px;
}

.image-box.medium img {
  height: 320px;
}

.image-box.short img {
  height: 240px;
}

.section-title {
  font-size: 2rem;
  margin: 0 0 14px;
}

.lead {
  font-size: 1.05rem;
  color: #3d3d45;
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 22px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  background: #1f4d45;
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn.light {
  background: #f0ede7;
  color: #1b1b1f;
}

.btn.outline {
  background: transparent;
  border: 1px solid #1f4d45;
  color: #1f4d45;
}

.pricing-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
  margin-top: 18px;
}

.price-card {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 18px;
  border-radius: 16px;
  background: #f0ede7;
}

.price-card strong {
  font-size: 1.05rem;
}

.price-card span {
  font-weight: 600;
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.mini-card {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 14px;
  border-radius: 16px;
  background: #ffffff;
  box-shadow: 0 12px 20px rgba(12, 20, 40, 0.06);
}

.mini-card .image-box {
  flex: 0 0 120px;
}

.image-box.card img {
  height: 90px;
}

.bg-panel {
  background-color: #1f4d45;
  background-image: url("https://images.unsplash.com/photo-1506765515384-028b60a970df?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.bg-panel .lead {
  color: #f5f4f0;
}

.inline-cta {
  text-decoration: underline;
  font-weight: 600;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-wrap label {
  font-weight: 600;
}

.form-wrap input,
.form-wrap select,
.form-wrap textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #d0cbc2;
  font-size: 1rem;
  background: #ffffff;
}

.footer {
  margin-top: auto;
  padding: 36px 6vw;
  background: #1b1b1f;
  color: #f7f5f2;
}

.footer .split {
  padding: 0;
}

.footer a {
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #1f4d45;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.12);
  max-width: 340px;
  display: none;
  z-index: 30;
}

.cookie-banner.active {
  display: block;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.legal-text {
  font-size: 0.9rem;
  color: #5a5a62;
}

.ref-list a {
  color: #ffffff;
  text-decoration: underline;
}

@media (max-width: 860px) {
  .top-bar {
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
  }

  .nav-links {
    flex-wrap: wrap;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    text-align: center;
  }
}
