*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: #1b1b1b;
  background: #f6f4f0;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.site-header {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2.5rem 6vw 1.5rem;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.brand strong {
  font-size: 1.4rem;
  letter-spacing: 0.04em;
}

.brand span {
  font-size: 0.9rem;
  color: #5c5c5c;
}

.nav-row {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.nav-row a {
  font-weight: 500;
}

.nav-row .nav-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.65rem 1.4rem;
  border-radius: 999px;
  background: #d62828;
  color: #fff;
  width: fit-content;
}

.split-section {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 3.5rem 6vw;
  position: relative;
  overflow: hidden;
}

.split-section.alt {
  background: #ffffff;
}

.split-section.dark {
  background: #111111;
  color: #f7f3ee;
}

.split-content,
.split-visual {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  justify-content: center;
}

.split-visual .badge {
  align-self: flex-start;
  padding: 0.35rem 0.9rem;
  border-radius: 999px;
  background: #f0a500;
  color: #1b1b1b;
  font-weight: 600;
  font-size: 0.85rem;
}

.split-visual img {
  border-radius: 1.25rem;
  box-shadow: 0 18px 50px rgba(0, 0, 0, 0.15);
}

.section-title {
  font-size: 2rem;
  margin: 0;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.2em;
  font-size: 0.75rem;
  font-weight: 600;
}

.inline-link {
  font-weight: 600;
  color: #d62828;
  text-decoration: underline;
}

.pill {
  display: inline-flex;
  padding: 0.4rem 1rem;
  border-radius: 999px;
  background: #1b1b1b;
  color: #fff;
  font-size: 0.85rem;
}

.cta-group {
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  margin-top: 1rem;
}

.cta-primary,
.cta-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.85rem 1.6rem;
  border-radius: 999px;
  font-weight: 600;
  width: fit-content;
}

.cta-primary {
  background: #1b1b1b;
  color: #fff;
}

.cta-secondary {
  border: 1px solid #1b1b1b;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  background: rgba(255, 255, 255, 0.9);
  padding: 1.5rem;
  border-radius: 1rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.08);
}

.card img {
  width: 64px;
  height: 64px;
}

.price {
  font-weight: 700;
  font-size: 1.1rem;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 1rem;
  border-left: 2px solid rgba(0, 0, 0, 0.1);
  padding-left: 1.5rem;
}

.timeline span {
  font-weight: 600;
}

.form-panel {
  background: #fff;
  padding: 2rem;
  border-radius: 1.25rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.12);
}

.form-panel label {
  font-weight: 600;
  font-size: 0.9rem;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 0.75rem 0.9rem;
  border-radius: 0.75rem;
  border: 1px solid #d4d4d4;
  font-family: inherit;
}

.form-panel button {
  padding: 0.85rem 1.4rem;
  border-radius: 999px;
  border: none;
  background: #d62828;
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.site-footer {
  padding: 3rem 6vw;
  background: #0d0d0d;
  color: #d5d5d5;
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
}

.footer-links {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.footer-links a {
  color: #d5d5d5;
}

.cookie-banner {
  position: fixed;
  left: 1.5rem;
  right: 1.5rem;
  bottom: 1.5rem;
  background: #ffffff;
  color: #1b1b1b;
  padding: 1rem 1.5rem;
  border-radius: 1rem;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
}

.cookie-actions button {
  padding: 0.6rem 1.1rem;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: #1b1b1b;
  color: #fff;
}

.cookie-reject {
  background: #d9d9d9;
}

.sticky-cta {
  position: fixed;
  right: 1.5rem;
  bottom: 6.5rem;
  background: #f0a500;
  color: #1b1b1b;
  padding: 0.8rem 1.2rem;
  border-radius: 999px;
  font-weight: 700;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  z-index: 9;
}

.hero-image {
  background: url("hero.svg") center/cover no-repeat;
  min-height: 260px;
  border-radius: 1.5rem;
  padding: 2rem;
  display: flex;
  align-items: flex-end;
}

.hero-image span {
  background: rgba(17, 17, 17, 0.75);
  color: #fff;
  padding: 0.5rem 0.9rem;
  border-radius: 999px;
  font-size: 0.85rem;
}

.list-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 0.6rem;
}

.list-tags span {
  padding: 0.35rem 0.8rem;
  border-radius: 999px;
  background: #efe9e1;
  font-size: 0.85rem;
}

@media (min-width: 900px) {
  .site-header {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .nav-row {
    flex-direction: row;
    align-items: center;
    gap: 1.5rem;
  }

  .split-section {
    flex-direction: row;
    align-items: stretch;
  }

  .split-section.reverse {
    flex-direction: row-reverse;
  }

  .cta-group {
    flex-direction: row;
    align-items: center;
  }

  .card-row {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card {
    flex: 1 1 240px;
  }

  .cookie-banner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .cookie-actions {
    flex-direction: row;
  }
}
