*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: #1d232b;
  background: #f7f4f1;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 16px;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.top-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 20px 24px;
  background: #f7f4f1;
}

.brand {
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.brand-mark {
  width: 36px;
  height: 36px;
  border-radius: 12px;
  background: #0f1720;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 0.75rem;
}

.nav-links {
  display: flex;
  gap: 18px;
  font-size: 0.9rem;
}

.nav-links a {
  padding: 6px 0;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover {
  border-bottom-color: #e07c57;
}

.hero {
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-content {
  background: #fff;
  padding: 28px;
  border-radius: 24px;
  box-shadow: 0 16px 40px rgba(16, 24, 40, 0.08);
  position: relative;
  overflow: hidden;
}

.hero-content::after {
  content: "";
  position: absolute;
  width: 140px;
  height: 140px;
  background: #f0cbb6;
  border-radius: 50%;
  right: -50px;
  top: -60px;
  opacity: 0.5;
}

.hero h1 {
  font-size: 2.2rem;
  margin: 0 0 12px;
}

.hero p {
  margin: 0 0 18px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cta-row.spaced {
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid transparent;
  transition: all 0.2s ease;
}

.btn.primary {
  background: #0f1720;
  color: #fff;
}

.btn.primary:hover {
  background: #1d2939;
}

.btn.outline {
  border-color: #0f1720;
  color: #0f1720;
}

.hero-image {
  position: relative;
}

.hero-image .overlay-card {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(15, 23, 32, 0.85);
  color: #fff;
  padding: 18px;
  border-radius: 18px;
}

.section {
  padding: 36px 24px;
}

.section.light {
  background: #fff;
}

.section.dark {
  background: #0f1720;
  color: #f7f4f1;
}

.section .section-title {
  font-size: 1.6rem;
  margin: 0 0 18px;
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.offset-card {
  background: #f0cbb6;
  padding: 20px;
  border-radius: 22px;
  transform: translateX(0);
}

.insight-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.insight-card {
  background: #fff;
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 12px 26px rgba(15, 23, 32, 0.08);
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-step {
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  border-left: 4px solid #e07c57;
}

.services-wrapper {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  background: #fff;
  padding: 20px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card .price {
  font-size: 1.1rem;
  font-weight: 700;
  color: #e07c57;
}

.form-panel {
  background: #fff;
  padding: 24px;
  border-radius: 22px;
  box-shadow: 0 16px 32px rgba(16, 24, 40, 0.1);
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-panel select,
.form-panel input,
.form-panel textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d0d6dd;
  font-size: 1rem;
  font-family: inherit;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  background: #f0cbb6;
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.testimonial {
  background: #fff;
  padding: 20px;
  border-radius: 18px;
}

.cta-banner {
  background: #e07c57;
  color: #fff;
  padding: 26px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  align-items: flex-start;
}

.footer {
  margin-top: auto;
  padding: 28px 24px;
  background: #0f1720;
  color: #f7f4f1;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  font-size: 0.85rem;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #0f1720;
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 20;
  box-shadow: 0 10px 20px rgba(15, 23, 32, 0.2);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 90px;
  background: #fff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 12px 26px rgba(15, 23, 32, 0.16);
  display: none;
  z-index: 25;
}

.cookie-banner.active {
  display: block;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

.floating-image {
  border-radius: 28px;
  box-shadow: 0 20px 40px rgba(15, 23, 32, 0.12);
}

.content-wide {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.fine-print {
  font-size: 0.85rem;
  opacity: 0.8;
}

@media (min-width: 800px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-content {
    flex: 1.1;
  }

  .hero-image {
    flex: 0.9;
  }

  .split-row {
    flex-direction: row;
  }

  .offset-card {
    transform: translateX(24px);
  }

  .insight-grid {
    flex-direction: row;
  }

  .insight-card {
    flex: 1;
  }

  .services-wrapper {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 calc(50% - 18px);
  }

  .content-wide {
    flex-direction: row;
    align-items: center;
  }

  .content-wide > * {
    flex: 1;
  }

  .cookie-banner {
    left: auto;
    right: 24px;
    max-width: 360px;
  }
}
