* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1f2a23;
  background: #f6f4f1;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

a {
  color: inherit;
  text-decoration: none;
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

.top-nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 22px 0;
}

.top-nav .brand {
  font-weight: 700;
  letter-spacing: 1px;
}

.top-nav .nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 28px;
  padding: 64px 0;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split-visual {
  flex: 1;
}

.highlight {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: #d6e2d9;
  font-size: 0.82rem;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.hero-title {
  font-size: clamp(2.4rem, 4vw, 3.4rem);
  line-height: 1.1;
  margin: 0;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.button {
  padding: 12px 22px;
  border-radius: 999px;
  background: #1f2a23;
  color: #fff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.button.secondary {
  background: #f6f4f1;
  color: #1f2a23;
  border: 1px solid #1f2a23;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #fff;
  padding: 18px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 0.85rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 1px;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
}

.section-alt {
  background: #ffffff;
}

.metrics {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.metric {
  display: flex;
  justify-content: space-between;
  padding: 10px 0;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  font-weight: 600;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.timeline-item {
  padding: 14px 16px;
  border-left: 3px solid #1f2a23;
  background: #fff;
  border-radius: 12px;
}

.form-card {
  background: #fff;
  padding: 24px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.9rem;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid rgba(0, 0, 0, 0.2);
  font-size: 1rem;
  font-family: inherit;
}

footer {
  padding: 40px 0 80px;
  background: #1f2a23;
  color: #f6f4f1;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  padding: 12px 18px;
  background: #ffb562;
  color: #1f2a23;
  font-weight: 700;
  border-radius: 999px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #1f2a23;
  color: #f6f4f1;
  padding: 16px 20px;
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.pill {
  padding: 8px 16px;
  border-radius: 999px;
  border: 1px solid #f6f4f1;
  background: transparent;
  color: #f6f4f1;
  cursor: pointer;
  font-weight: 600;
}

.page-hero {
  padding: 70px 0 40px;
}

.list-clean {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-block {
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(0, 0, 0, 0.06);
}

@media (min-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: row;
    align-items: center;
  }

  .metrics {
    flex-direction: row;
    gap: 24px;
  }

  .metric {
    border-bottom: none;
    border-right: 1px solid rgba(0, 0, 0, 0.08);
    padding-right: 18px;
  }

  .metric:last-child {
    border-right: none;
  }
}
