*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: #1a1d23;
  background: #f6f4f1;
  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;
}

.sidebar {
  background: #141b2b;
  color: #f7f2ec;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 28px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand span {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 12px;
  color: #9fb2d1;
}

.brand h1 {
  margin: 0;
  font-size: 26px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-size: 14px;
}

.nav a {
  padding-bottom: 6px;
  border-bottom: 1px solid rgba(159, 178, 209, 0.2);
}

.sidebar-cta {
  display: flex;
  flex-direction: column;
  gap: 10px;
  background: #1e2a44;
  padding: 18px;
  border-radius: 16px;
}

.sidebar-cta a {
  display: inline-flex;
  justify-content: center;
  align-items: center;
  padding: 10px 14px;
  border-radius: 999px;
  background: #f6c66b;
  color: #1a1d23;
  font-weight: 600;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 40px;
  padding: 34px 20px 80px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 24px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 14px 28px rgba(23, 31, 52, 0.08);
}

.section--muted {
  background: #efe9e2;
}

.section--dark {
  background: #101728;
  color: #f6f4f1;
}

.section--layered {
  position: relative;
  overflow: hidden;
}

.section--layered::before {
  content: "";
  position: absolute;
  inset: -30% 40% 40% -30%;
  background: rgba(246, 198, 107, 0.2);
  border-radius: 50%;
}

.section--layered > * {
  position: relative;
  z-index: 1;
}

.hero {
  background: linear-gradient(120deg, rgba(20, 27, 43, 0.75), rgba(20, 27, 43, 0.3)),
    url("https://images.unsplash.com/photo-1522071901873-411886a10004?auto=format&fit=crop&w=1400&q=80")
      center/cover no-repeat;
  color: #f6f4f1;
  padding: 36px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h2 {
  font-size: 34px;
  margin: 0;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 10px 18px;
  border-radius: 999px;
  background: #f6c66b;
  color: #1a1d23;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn--ghost {
  background: transparent;
  border: 1px solid #f6c66b;
  color: #f6c66b;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split img {
  border-radius: 18px;
}

.card-row {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #ffffff;
  border-radius: 16px;
  padding: 18px;
  box-shadow: 0 10px 24px rgba(23, 31, 52, 0.1);
}

.card img {
  border-radius: 12px;
}

.stats {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.stats div {
  padding: 14px;
  border-radius: 14px;
  background: rgba(246, 198, 107, 0.15);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-radius: 14px;
  background: #f8f6f3;
}

.service-item strong {
  font-size: 18px;
}

.service-price {
  font-weight: 600;
  color: #1e2a44;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.timeline-step {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 14px;
  border-left: 3px solid #f6c66b;
  background: #fdfaf4;
}

.form-card {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #ffffff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 12px 24px rgba(23, 31, 52, 0.12);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-size: 14px;
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d8d3cc;
  font: inherit;
  background: #fff;
}

.inline-link {
  color: #1e2a44;
  font-weight: 600;
  border-bottom: 1px solid currentColor;
  align-self: flex-start;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #1e2a44;
  color: #f6f4f1;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 12px 28px rgba(15, 22, 37, 0.35);
  font-weight: 600;
  z-index: 10;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 28px rgba(15, 22, 37, 0.2);
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 11;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  flex: 1;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
  color: #5a6475;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.badge {
  padding: 6px 12px;
  border-radius: 999px;
  background: rgba(30, 42, 68, 0.1);
  font-size: 13px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.policy {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 900px) {
  .page {
    flex-direction: row;
  }

  .sidebar {
    width: 260px;
    min-height: 100vh;
  }

  .content {
    padding: 40px 40px 120px;
  }

  .split {
    flex-direction: row;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .card-row {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .stats {
    flex-direction: row;
  }

  .timeline {
    flex-direction: row;
  }

  .timeline-step {
    flex: 1;
  }

  .contact-grid {
    flex-direction: row;
  }
}
