* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1f2430;
  background: #f7f4ef;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  height: auto;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 18px;
  background: #f7f4ef;
}

.nav-brand {
  font-size: 1.1rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.95rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: #1f2430;
}

.hero {
  position: relative;
  overflow: hidden;
  background: #1f2430;
  background-image: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?auto=format&fit=crop&w=1600&q=80");
  background-size: cover;
  background-position: center;
  color: #f7f4ef;
  padding: 56px 18px 72px;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(25, 30, 42, 0.9), rgba(25, 30, 42, 0.4));
}

.hero-inner {
  position: relative;
  z-index: 1;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.hero-small {
  padding: 60px 18px 70px;
}

.hero-eyebrow {
  font-size: 0.9rem;
  letter-spacing: 0.2em;
  text-transform: uppercase;
}

.hero-title {
  font-size: 2.4rem;
  line-height: 1.1;
}

.hero-lead {
  font-size: 1.1rem;
  max-width: 520px;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-primary {
  background: #f4c95d;
  color: #1f2430;
  box-shadow: 0 10px 24px rgba(244, 201, 93, 0.3);
}

.btn-secondary {
  background: transparent;
  border: 1px solid #f7f4ef;
  color: #f7f4ef;
}

.btn-outline-dark {
  border: 1px solid #1f2430;
  color: #1f2430;
}

.btn:hover {
  transform: translateY(-2px);
}

.section {
  padding: 56px 18px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section-light {
  background: #f7f4ef;
}

.section-accent {
  background: #ffffff;
}

.section-dark {
  background: #1f2430;
  color: #f7f4ef;
}

.section-title {
  font-size: 1.8rem;
  line-height: 1.2;
}

.section-kicker {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 0.8rem;
  font-weight: 600;
}

.section-text {
  max-width: 720px;
  font-size: 1rem;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.split-panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.image-card {
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 16px 32px rgba(15, 20, 30, 0.18);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #ffffff;
  border-radius: 18px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  box-shadow: 0 12px 26px rgba(23, 25, 32, 0.08);
}

.card img {
  border-radius: 12px;
}

.metrics {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.metric {
  background: rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 18px;
}

.metric strong {
  font-size: 1.8rem;
}

.quote {
  background: #f4c95d;
  color: #1f2430;
  border-radius: 18px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cta-panel {
  background: #1f2430;
  color: #f7f4ef;
  border-radius: 20px;
  padding: 26px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.list {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 18px;
}

.list li {
  list-style: disc;
}

.pricing {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.price-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 22px;
  box-shadow: 0 12px 28px rgba(20, 20, 30, 0.12);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.price {
  font-size: 2rem;
  font-weight: 700;
}

.form-wrapper {
  background: #ffffff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 18px 30px rgba(20, 20, 30, 0.12);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-wrapper label {
  font-weight: 600;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.form-wrapper input,
.form-wrapper select,
.form-wrapper textarea {
  padding: 12px;
  border-radius: 12px;
  border: 1px solid #cfd3d8;
  font-size: 1rem;
}

.form-actions {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-error {
  color: #b32112;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  right: 16px;
  bottom: 18px;
  z-index: 20;
  display: inline-flex;
}

.sticky-cta .btn {
  background: #1f2430;
  color: #f7f4ef;
}

.footer {
  margin-top: auto;
  padding: 32px 18px 40px;
  background: #ece7df;
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #1f2430;
  color: #f7f4ef;
  padding: 18px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
  box-shadow: 0 14px 28px rgba(20, 20, 30, 0.2);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-actions button {
  border: none;
  cursor: pointer;
}

.inline-cta {
  font-weight: 600;
  text-decoration: underline;
}

.storyline {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding-left: 18px;
  border-left: 3px solid #f4c95d;
}

.location-card {
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

@media (min-width: 768px) {
  .nav {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    padding: 26px 60px;
  }

  .hero {
    padding: 90px 60px 110px;
  }

  .hero-title {
    font-size: 3.4rem;
  }

  .section {
    padding: 80px 60px;
  }

  .split {
    flex-direction: row;
    align-items: stretch;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .cards {
    flex-direction: row;
  }

  .card,
  .price-card {
    flex: 1;
  }

  .metrics {
    flex-direction: row;
  }

  .form-actions {
    flex-direction: row;
    align-items: center;
  }

  .cookie-banner {
    left: auto;
    right: 24px;
    max-width: 420px;
  }

  .footer {
    padding: 40px 60px 50px;
  }
}
