@font-face {
  font-family: "Inter";
  font-style: normal;
  font-weight: 400;
  src: local("Inter"), local("Inter Regular");
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", Arial, sans-serif;
  color: #11151c;
  background: #f6f6f4;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 28px 8vw;
  background: #f6f6f4;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-cta {
  padding: 10px 18px;
  border-radius: 999px;
  background: #11151c;
  color: #fff;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 24px 8vw 60px;
}

.hero-top {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-title {
  font-size: clamp(2.2rem, 5vw, 3.6rem);
  line-height: 1.1;
}

.hero-sub {
  max-width: 640px;
  font-size: 1.05rem;
}

.hero-media {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.18);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.button {
  padding: 14px 22px;
  border-radius: 999px;
  border: 1px solid #11151c;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-weight: 600;
}

.button.primary {
  background: #11151c;
  color: #fff;
}

.button.light {
  background: #fff;
}

.section {
  padding: 70px 8vw;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.section.alt {
  background: #11151c;
  color: #f6f6f4;
}

.section.soft {
  background: #e7e3de;
}

.section-title {
  font-size: clamp(1.6rem, 4vw, 2.4rem);
  margin: 0;
}

.offset-wrap {
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.card {
  padding: 24px;
  border-radius: 22px;
  background: #fff;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.08);
}

.card.dark {
  background: #1c2f4a;
  color: #f6f6f4;
}

.quote {
  padding: 22px 26px;
  border-left: 4px solid #ef6c2c;
  background: #fff;
  border-radius: 14px;
}

.price-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.price-item {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 22px;
  border-radius: 20px;
  background: #fff;
  border: 1px solid #d9dee7;
}

.price {
  font-size: 1.4rem;
  font-weight: 700;
  color: #ef6c2c;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: #11151c;
  color: #f6f6f4;
  padding: 30px;
  border-radius: 26px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c8cdd6;
  font-size: 1rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.footer {
  padding: 50px 8vw 70px;
  background: #0c1016;
  color: #f6f6f4;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.sticky-cta {
  position: fixed;
  bottom: 22px;
  right: 22px;
  background: #ef6c2c;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.25);
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #11151c;
  color: #f6f6f4;
  display: none;
  padding: 18px 8vw;
  z-index: 9;
}

.cookie-inner {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.badge {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #ef6c2c;
  color: #fff;
  font-size: 0.85rem;
  font-weight: 600;
}

.inline-link {
  text-decoration: underline;
  font-weight: 600;
}

.asym-media {
  border-radius: 26px;
  overflow: hidden;
  box-shadow: 0 18px 48px rgba(0, 0, 0, 0.15);
}

.stacked {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.legal {
  max-width: 820px;
}

@media (min-width: 900px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-top {
    flex: 1.1;
  }

  .hero-media {
    flex: 1;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-row {
    flex-direction: row;
  }

  .price-grid {
    flex-direction: row;
  }

  .price-item {
    flex: 1;
  }

  .offset-wrap {
    flex-direction: row;
    align-items: flex-start;
  }

  .offset-wrap > div:first-child {
    flex: 1.1;
    margin-right: -40px;
  }

  .offset-wrap > div:last-child {
    flex: 0.9;
  }

  .cookie-inner {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .contact-grid {
    flex-direction: row;
  }
}
