* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1c1f24;
  background: #f8f6f3;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.header {
  padding: 28px 6vw 10px;
  position: relative;
  z-index: 2;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.85rem;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 10px;
  align-items: flex-end;
  text-transform: uppercase;
  font-size: 0.75rem;
  letter-spacing: 0.12em;
}

.nav a {
  padding: 4px 0;
  border-bottom: 1px solid transparent;
}

.nav a:hover {
  border-color: #1c1f24;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 20px 6vw 60px;
  position: relative;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-visual {
  position: relative;
  margin-left: auto;
  width: min(520px, 90%);
}

.hero-visual img {
  border-radius: 20px;
  box-shadow: 0 24px 60px rgba(0, 0, 0, 0.2);
}

.hero-visual .badge {
  position: absolute;
  bottom: -18px;
  left: -18px;
  background: #f26c4f;
  color: #fff;
  padding: 10px 16px;
  border-radius: 12px;
  font-size: 0.85rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  padding: 12px 22px;
  border-radius: 999px;
  background: #1c1f24;
  color: #fff;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn.alt {
  background: #fff;
  color: #1c1f24;
  border: 1px solid #1c1f24;
}

.inline-link {
  font-weight: 600;
  border-bottom: 1px solid #1c1f24;
  padding-bottom: 2px;
}

.section {
  padding: 60px 6vw;
  position: relative;
}

.section.light {
  background: #fff;
}

.section.tint {
  background: #f1efe9;
}

.section .section-inner {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.panel {
  background: #fff;
  border-radius: 20px;
  padding: 24px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.08);
}

.offset-card {
  background: #fff;
  border-radius: 18px;
  padding: 20px;
  box-shadow: 0 16px 30px rgba(0, 0, 0, 0.08);
  transform: translateY(10px);
}

.step-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #111318;
  color: #fff;
  border-radius: 20px;
  padding: 22px;
}

.service-card .price {
  font-size: 1.4rem;
  font-weight: 700;
}

.service-card img {
  border-radius: 16px;
  height: 160px;
  object-fit: cover;
}

.metrics {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.metric {
  background: #fef3e5;
  padding: 18px;
  border-radius: 16px;
  font-weight: 600;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form label {
  font-weight: 600;
}

.form input,
.form select,
.form textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c8c3bc;
  font-size: 1rem;
  font-family: inherit;
}

.form button {
  border: none;
  cursor: pointer;
}

.aside-note {
  background: #1c1f24;
  color: #fff;
  padding: 18px;
  border-radius: 16px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #f26c4f;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.footer {
  padding: 40px 6vw 60px;
  background: #111318;
  color: #d9d9d9;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.footer-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  bottom: 16px;
  right: 16px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  padding: 10px 16px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.cookie-actions .accept {
  background: #1c1f24;
  color: #fff;
}

.cookie-actions .reject {
  background: #f1efe9;
}

@media (min-width: 900px) {
  .header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
  }

  .nav {
    flex-direction: row;
    align-items: center;
    gap: 20px;
  }

  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }

  .hero-inner {
    max-width: 46%;
  }

  .split {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
    gap: 40px;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .step-list {
    flex-direction: row;
  }

  .services {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 240px;
  }

  .metrics {
    flex-direction: row;
  }

  .metric {
    flex: 1 1 200px;
  }

  .footer {
    flex-direction: row;
    justify-content: space-between;
  }

  .footer-nav {
    flex-direction: row;
    flex-wrap: wrap;
    gap: 14px;
  }

  .cookie-banner {
    max-width: 520px;
    left: auto;
  }
}
