*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2328;
  background: #f6f4f0;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
}

.page {
  position: relative;
  overflow-x: hidden;
}

.top-bar {
  padding: 18px 6vw;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  background: #f6f4f0;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  text-decoration: none;
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-color: #1f2328;
}

.hero-badge {
  font-size: 0.85rem;
  text-transform: uppercase;
  letter-spacing: 0.12em;
}

.split-section {
  display: flex;
  flex-direction: column;
  padding: 64px 6vw;
  gap: 28px;
}

.split-section.alt {
  background: #ffffff;
}

.split-section.deep {
  background: #10252e;
  color: #f5f2ec;
}

.split-section .split {
  display: flex;
  flex-direction: column;
  gap: 26px;
}

.split-section .split.reverse {
  flex-direction: column-reverse;
}

.split-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-content h1,
.split-content h2,
.split-content h3 {
  margin: 0;
  line-height: 1.2;
}

.split-content p {
  margin: 0;
  max-width: 560px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 8px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid #1f2328;
  text-decoration: none;
  font-size: 0.95rem;
  font-weight: 600;
  background: #1f2328;
  color: #f6f4f0;
  transition: transform 0.2s ease;
}

.btn.secondary {
  background: transparent;
  color: inherit;
}

.btn.light {
  background: #f5f2ec;
  color: #10252e;
  border-color: #f5f2ec;
}

.btn:hover {
  transform: translateY(-2px);
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.stat {
  background: rgba(255, 255, 255, 0.9);
  padding: 18px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.deep .stat {
  background: rgba(255, 255, 255, 0.12);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #ffffff;
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 24px rgba(16, 37, 46, 0.08);
}

.card img {
  border-radius: 14px;
}

.price-tag {
  font-weight: 700;
  font-size: 1.1rem;
}

.pill {
  display: inline-block;
  padding: 6px 12px;
  border-radius: 999px;
  background: #f6f4f0;
  font-size: 0.8rem;
}

.deep .pill {
  background: rgba(245, 242, 236, 0.15);
}

.inline-cta {
  font-weight: 600;
  text-decoration: underline;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  z-index: 20;
  padding: 12px 18px;
  border-radius: 999px;
  background: #2f5640;
  color: #f6f4f0;
  text-decoration: none;
  font-weight: 600;
  box-shadow: 0 16px 28px rgba(0, 0, 0, 0.2);
}

.form-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 12px 24px rgba(16, 37, 46, 0.1);
}

.form-card label {
  font-weight: 600;
  font-size: 0.85rem;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d7d2c8;
  font-size: 0.95rem;
  font-family: inherit;
}

.form-card button {
  border: none;
  cursor: pointer;
}

.footer {
  padding: 32px 6vw 64px;
  background: #0e1b22;
  color: #f6f4f0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.footer a {
  color: inherit;
  text-decoration: none;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  padding: 16px;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
  z-index: 30;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
}

.cookie-banner.visible {
  display: flex;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  border-radius: 999px;
  padding: 8px 12px;
  border: 1px solid #1f2328;
  background: #1f2328;
  color: #ffffff;
  cursor: pointer;
}

.cookie-actions button.secondary {
  background: transparent;
  color: #1f2328;
}

.contact-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section-note {
  font-size: 0.9rem;
  opacity: 0.8;
}

@media (min-width: 900px) {
  .split-section .split {
    flex-direction: row;
    align-items: center;
  }

  .split-section .split.reverse {
    flex-direction: row-reverse;
  }

  .split-section .split > * {
    flex: 1;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .stats {
    flex-direction: row;
  }

  .stat {
    flex: 1;
  }
}
