* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color: #1e1e1e;
  background-color: #f7f5f2;
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  line-height: 1.5;
}

body {
  min-height: 100vh;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  padding: 32px 24px;
  background: #111318;
  color: #f5f5f5;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 1.4rem;
  font-weight: 700;
  letter-spacing: 0.03em;
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 14px;
  font-weight: 500;
}

.nav-links a {
  opacity: 0.85;
}

.nav-links a:hover {
  opacity: 1;
}

.sidebar-note {
  font-size: 0.9rem;
  opacity: 0.7;
}

.main {
  flex: 1;
  display: flex;
  flex-direction: column;
}

.section {
  padding: 64px 8vw;
  position: relative;
}

.section.tight {
  padding: 48px 8vw;
}

.section.alt {
  background: #f0ede8;
}

.hero {
  background: url("https://images.unsplash.com/photo-1454165205744-3b78555e5572?auto=format&fit=crop&w=1600&q=80")
    center/cover no-repeat;
  color: #ffffff;
  min-height: 70vh;
  display: flex;
  align-items: center;
}

.hero::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(120deg, rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.2));
}

.hero-content {
  position: relative;
  max-width: 620px;
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.hero h1 {
  font-size: 2.8rem;
  line-height: 1.1;
}

.hero p {
  font-size: 1.1rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin-top: 16px;
}

.btn {
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: #f6c34a;
  color: #111318;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  border: 1px solid rgba(255, 255, 255, 0.6);
  color: #ffffff;
}

.btn.dark {
  background: #111318;
  color: #ffffff;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.split-row {
  display: flex;
  flex-direction: column;
  gap: 32px;
}

.panel {
  background: #ffffff;
  padding: 28px;
  border-radius: 20px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
}

.highlight {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.overlap {
  margin-top: -40px;
  border-radius: 24px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 0;
}

.overlap .image-block {
  min-height: 240px;
  background: url("https://images.unsplash.com/photo-1521791136064-7986c2920216?auto=format&fit=crop&w=1400&q=80")
    center/cover no-repeat;
}

.overlap .image-block.alt {
  background: url("https://images.unsplash.com/photo-1517245386807-bb43f82c33c4?auto=format&fit=crop&w=1400&q=80")
    center/cover no-repeat;
}

.overlap .content-block {
  background: #ffffff;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.service-card {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid #e4dfd7;
}

.service-card img {
  width: 64px;
}

.price {
  font-size: 1.2rem;
  font-weight: 700;
  color: #0d4634;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.step {
  display: flex;
  gap: 16px;
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  align-items: flex-start;
}

.step-number {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  background: #f6c34a;
  color: #111318;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 18px;
  border-left: 3px solid #111318;
}

.badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  padding: 8px 14px;
  border-radius: 999px;
  background: #111318;
  color: #ffffff;
  font-size: 0.9rem;
}

.form-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.input-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d8d2c7;
  font-size: 1rem;
}

.inline-cta {
  color: #0d4634;
  font-weight: 600;
  text-decoration: underline;
}

.sticky-cta {
  position: sticky;
  top: 20px;
  align-self: flex-start;
  background: #111318;
  color: #ffffff;
  padding: 20px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer {
  background: #111318;
  color: #ffffff;
  padding: 32px 8vw;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 0.9rem;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  max-width: 360px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
  padding: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.cookie-actions button {
  flex: 1;
  border-radius: 999px;
  border: none;
  padding: 10px 12px;
  cursor: pointer;
  font-weight: 600;
}

.cookie-actions .accept {
  background: #111318;
  color: #ffffff;
}

.cookie-actions .reject {
  background: #e7e1d7;
  color: #111318;
}

@media (min-width: 900px) {
  .split-row {
    flex-direction: row;
    align-items: center;
  }

  .split-row.reverse {
    flex-direction: row-reverse;
  }

  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 calc(33% - 20px);
  }

  .steps {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .step {
    flex: 1 1 calc(33% - 16px);
  }

  .form-grid {
    flex-direction: row;
  }

  .form-grid .input-group {
    flex: 1;
  }
}

@media (max-width: 860px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
  }

  .nav-links {
    flex-direction: row;
    flex-wrap: wrap;
  }
}
