*,
*::before,
*::after {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", system-ui, -apple-system, sans-serif;
  color: #1b1b1b;
  background: #f5f4f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: #1c2d2a;
  color: #f5f4f1;
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.brand span {
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #a6b7b0;
}

.brand h1,
.brand h2 {
  margin: 0;
  font-size: 22px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.nav a {
  padding: 8px 10px;
  border-radius: 6px;
  transition: background 0.2s ease;
}

.nav a:hover,
.nav a:focus {
  background: rgba(245, 244, 241, 0.12);
}

.sidebar .cta-mini {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  background: #f2b15f;
  color: #1c2d2a;
  font-weight: 600;
  cursor: pointer;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn:hover,
.btn:focus {
  transform: translateY(-1px);
  box-shadow: 0 8px 18px rgba(0, 0, 0, 0.18);
}

.btn-outline {
  background: transparent;
  border: 1px solid #f2b15f;
  color: #f2b15f;
}

.main {
  flex: 1;
  padding: 36px 6vw 80px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #ffffff;
  padding: 32px;
  border-radius: 22px;
  box-shadow: 0 14px 30px rgba(29, 28, 26, 0.08);
}

.section.alt {
  background: #f0ede6;
}

.section.compact {
  padding: 24px;
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero .hero-split {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero h2 {
  font-size: 36px;
  margin: 0;
}

.hero p {
  margin: 0;
  font-size: 18px;
}

.hero-visual {
  border-radius: 20px;
  overflow: hidden;
}

.tag {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 12px;
  background: #e9f0ee;
  border-radius: 999px;
  font-size: 12px;
  text-transform: uppercase;
  letter-spacing: 0.08em;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split .panel {
  flex: 1;
}

.metrics {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.metric {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 20px;
  border-radius: 16px;
  background: #1c2d2a;
  color: #f5f4f1;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border-radius: 18px;
  background: #f9f7f2;
  border: 1px solid #e2ded4;
}

.card img {
  border-radius: 14px;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 18px;
  border-radius: 16px;
  background: #ffffff;
  border: 1px solid #e0dbcf;
}

.price {
  font-size: 20px;
  font-weight: 700;
  color: #1c2d2a;
}

.inline-link {
  text-decoration: underline;
  color: #1c2d2a;
  font-weight: 600;
}

.testimonial {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 16px;
  border-left: 4px solid #f2b15f;
  background: #f7f3ea;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-grid label {
  font-size: 14px;
  font-weight: 600;
}

.form-grid input,
.form-grid select,
.form-grid textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d6d1c7;
  font-size: 15px;
  font-family: inherit;
}

.form-grid textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  right: 20px;
  background: #1c2d2a;
  color: #f5f4f1;
  padding: 16px;
  border-radius: 16px;
  display: none;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  z-index: 30;
}

.cookie-banner button {
  border-radius: 999px;
  padding: 8px 16px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.cookie-accept {
  background: #f2b15f;
  color: #1c2d2a;
}

.cookie-reject {
  background: transparent;
  color: #f5f4f1;
  border: 1px solid #f5f4f1;
}

.footer {
  font-size: 13px;
  color: #6a6660;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

@media (min-width: 860px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero .hero-split {
    flex: 1;
  }

  .hero-visual {
    flex: 1;
  }

  .split {
    flex-direction: row;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .services {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-item {
    width: calc(50% - 8px);
  }

  .form-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .form-grid .field {
    flex: 1 1 calc(50% - 12px);
  }

  .form-grid .field.full {
    flex: 1 1 100%;
  }
}

@media (max-width: 920px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .sidebar .cta-mini {
    flex-direction: row;
    margin-top: 0;
  }
}
