*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", sans-serif;
  color: #1b1c20;
  background: #f7f4f0;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  overflow-x: hidden;
}

.container {
  width: min(1120px, 90%);
  margin: 0 auto;
}

.split-nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 20px 0;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.9rem;
}

.nav-links a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav-links a:hover,
.nav-links a:focus {
  border-color: #1b1c20;
}

.hero {
  position: relative;
  padding: 60px 0 80px;
}

.hero-inner {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.hero-text {
  background: #ffffff;
  padding: 36px;
  border-radius: 18px;
  box-shadow: 0 22px 48px rgba(19, 23, 35, 0.12);
  position: relative;
  z-index: 2;
}

.hero-visual {
  position: relative;
  margin-left: auto;
  max-width: 560px;
  border-radius: 24px;
  overflow: hidden;
  box-shadow: -30px 30px 0 rgba(246, 182, 90, 0.35);
}

.hero-visual img {
  height: 320px;
  object-fit: cover;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.badge {
  background: #1b1c20;
  color: #ffffff;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 0.8rem;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  background: #f45b5b;
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-btn.secondary {
  background: #1b1c20;
}

.cta-btn.light {
  background: #ffffff;
  color: #1b1c20;
  border: 1px solid #d5d5d5;
}

.cta-btn:hover,
.cta-btn:focus {
  transform: translateY(-2px);
  box-shadow: 0 10px 18px rgba(0, 0, 0, 0.12);
}

.section {
  padding: 70px 0;
}

.section-title {
  font-size: 2rem;
  margin: 0 0 16px;
}

.offset-panel {
  display: flex;
  flex-direction: column;
  gap: 28px;
  background: #ffffff;
  padding: 36px;
  border-radius: 20px;
  position: relative;
  box-shadow: 0 24px 50px rgba(19, 23, 35, 0.1);
}

.offset-panel::before {
  content: "";
  position: absolute;
  top: -20px;
  left: -20px;
  width: 120px;
  height: 120px;
  background: #f6b65a;
  border-radius: 18px;
  z-index: -1;
}

.two-column {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.stacked-images {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.stacked-images img {
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(19, 23, 35, 0.12);
}

.quote-strip {
  background: #1b1c20;
  color: #ffffff;
  padding: 30px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 22px;
}

.service-card {
  background: #ffffff;
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 20px 36px rgba(19, 23, 35, 0.08);
  display: flex;
  flex-direction: column;
  gap: 12px;
  position: relative;
}

.service-card img {
  border-radius: 14px;
  height: 160px;
  object-fit: cover;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #f45b5b;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 16px;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.timeline-item {
  background: #ffffff;
  padding: 20px;
  border-left: 4px solid #1b1c20;
  border-radius: 12px;
}

.testimonial {
  background: #fff7ec;
  padding: 20px;
  border-radius: 16px;
  margin-bottom: 16px;
}

.form-section {
  background: #1b1c20;
  color: #ffffff;
  border-radius: 24px;
  padding: 36px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.form-section form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.form-section label {
  font-size: 0.9rem;
}

.form-section input,
.form-section select,
.form-section textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: none;
  font-family: inherit;
}

.form-section textarea {
  min-height: 110px;
}

.sticky-cta {
  position: sticky;
  top: 16px;
  align-self: flex-start;
  background: #ffffff;
  padding: 18px;
  border-radius: 18px;
  box-shadow: 0 18px 32px rgba(19, 23, 35, 0.12);
}

.footer {
  padding: 40px 0 60px;
  background: #1b1c20;
  color: #ffffff;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: #ffffff;
  border-radius: 16px;
  padding: 16px;
  box-shadow: 0 18px 36px rgba(19, 23, 35, 0.2);
  display: none;
  z-index: 10;
}

.cookie-banner.show {
  display: block;
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 12px;
}

@media (min-width: 820px) {
  .hero-inner {
    flex-direction: row;
    align-items: center;
  }

  .hero-text {
    max-width: 520px;
  }

  .two-column {
    flex-direction: row;
    align-items: flex-start;
  }

  .two-column.reverse {
    flex-direction: row-reverse;
  }

  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 calc(50% - 22px);
  }

  .stacked-images {
    flex-direction: row;
  }

  .stacked-images img {
    flex: 1;
  }

  .timeline {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .timeline-item {
    flex: 1 1 calc(50% - 18px);
  }

  .form-layout {
    display: flex;
    gap: 24px;
    align-items: flex-start;
  }

  .form-section {
    flex: 1;
  }
}
