* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Segoe UI", "Roboto", "Arial", sans-serif;
  line-height: 1.6;
  color: #1f2430;
  background: #f6f4f1;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

main {
  overflow: hidden;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
}

.top-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 16px 24px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 14px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.brand {
  font-weight: 700;
  font-size: 20px;
  letter-spacing: 0.03em;
}

.cta-button,
.cta-outline,
.cta-link {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  border-radius: 999px;
  border: 1px solid transparent;
  font-weight: 600;
  transition: transform 0.2s ease, background 0.2s ease;
}

.cta-button {
  background: #cf6f42;
  color: #fff;
}

.cta-outline {
  border-color: #1f2430;
  color: #1f2430;
}

.cta-link {
  padding: 0;
  border: none;
  font-weight: 700;
  color: #cf6f42;
}

.cta-button:hover,
.cta-outline:hover,
.cta-link:hover {
  transform: translateY(-2px);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  position: relative;
  background: #fff;
  padding: 32px;
  border-radius: 32px;
  margin: 20px 0 40px;
}

.hero::after {
  content: "";
  position: absolute;
  right: -40px;
  top: 40px;
  width: 160px;
  height: 160px;
  background: #cf6f42;
  border-radius: 40px;
  opacity: 0.15;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-title {
  font-size: 36px;
  line-height: 1.15;
}

.hero-subtitle {
  font-size: 18px;
  color: #4b515d;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.hero-media {
  position: relative;
}

.hero-badge {
  position: absolute;
  left: -12px;
  bottom: -16px;
  background: #1f2430;
  color: #fff;
  padding: 10px 16px;
  border-radius: 16px;
  font-size: 13px;
}

.section {
  margin: 36px 0;
  background: #fff;
  padding: 28px;
  border-radius: 28px;
  position: relative;
}

.section.soft {
  background: #ede6dc;
}

.section.dark {
  background: #1f2430;
  color: #fff;
}

.section.split {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.section.split.reverse {
  flex-direction: column-reverse;
}

.section-header {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.section-title {
  font-size: 28px;
}

.section-lead {
  color: #4b515d;
}

.section.dark .section-lead {
  color: #cfd3dc;
}

.floating-card {
  background: #fff;
  padding: 20px;
  border-radius: 18px;
  box-shadow: 0 16px 30px rgba(31, 36, 48, 0.12);
}

.dark .floating-card {
  background: #2c3342;
  color: #fff;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  background: #faf7f3;
  padding: 20px;
  border-radius: 18px;
}

.card strong {
  font-size: 18px;
}

.metrics {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.metric {
  display: flex;
  align-items: baseline;
  gap: 12px;
}

.metric span {
  font-size: 28px;
  font-weight: 700;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-item {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.timeline-step {
  background: #cf6f42;
  color: #fff;
  font-weight: 700;
  padding: 8px 14px;
  border-radius: 14px;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item {
  background: #f7f1e9;
  padding: 18px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-price {
  font-weight: 700;
  font-size: 18px;
}

.quote {
  border-left: 3px solid #cf6f42;
  padding-left: 16px;
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.lead-form label {
  font-weight: 600;
}

.lead-form input,
.lead-form select,
.lead-form textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c8cdd6;
  background: #fff;
  font-size: 15px;
}

.form-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.sticky-cta {
  position: sticky;
  bottom: 20px;
  display: flex;
  justify-content: flex-end;
  margin: 20px 0;
}

.sticky-cta a {
  background: #1f2430;
  color: #fff;
  padding: 12px 20px;
  border-radius: 999px;
}

.footer {
  padding: 36px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #fff;
  border-radius: 18px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 10px 24px rgba(31, 36, 48, 0.2);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hidden {
  display: none;
}

.offset-block {
  position: relative;
  left: 18px;
}

.layered {
  position: relative;
}

.layered::before {
  content: "";
  position: absolute;
  top: -18px;
  left: 12px;
  width: 90%;
  height: 100%;
  background: rgba(207, 111, 66, 0.1);
  border-radius: 26px;
  z-index: -1;
}

.image-stack {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

@media (min-width: 768px) {
  .hero {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  .hero-content,
  .hero-media {
    flex: 1;
  }

  .section.split,
  .section.split.reverse {
    flex-direction: row;
    align-items: center;
  }

  .cards,
  .services-grid,
  .metrics {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .card,
  .service-item,
  .metric {
    flex: 1 1 220px;
  }

  .timeline {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .timeline-item {
    flex: 1 1 240px;
  }

  .form-row {
    flex-direction: row;
    gap: 16px;
  }

  .form-row > div {
    flex: 1;
  }

  .footer {
    flex-direction: row;
    justify-content: space-between;
    align-items: center;
  }
}
