* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

body {
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1b1b1b;
  background: #f6f4f1;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.sidebar {
  background: #101010;
  color: #f4f2ee;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-size: 1.4rem;
  letter-spacing: 0.2rem;
  text-transform: uppercase;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
}

.nav a {
  opacity: 0.85;
}

.nav a:hover {
  opacity: 1;
}

.sidebar-cta {
  border: 1px solid #f4f2ee;
  padding: 16px;
  font-size: 0.9rem;
}

.sidebar-cta .btn {
  margin-top: 12px;
}

.content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 32px 22px 80px;
}

section {
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  box-shadow: 0 18px 45px rgba(0, 0, 0, 0.08);
}

.hero {
  background: #f0e9df;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.section-title {
  font-size: 1.8rem;
  line-height: 1.2;
}

.subtle {
  color: #4a4a4a;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  background: #101010;
  color: #f4f2ee;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn.light {
  background: #f4f2ee;
  color: #101010;
  border: 1px solid #101010;
}

.btn.inline {
  background: transparent;
  color: #101010;
  border-bottom: 2px solid #101010;
  border-radius: 0;
  padding: 4px 0;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  background: #f7f2ea;
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.highlight {
  background: #0c2d48;
  color: #eef4f8;
}

.metrics {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.metric {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px solid rgba(0, 0, 0, 0.08);
  padding-bottom: 8px;
}

.testimonials {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.testimonial {
  background: #fff;
  border: 1px solid #e6e2db;
  padding: 16px;
  border-radius: 14px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 6px;
  background: #fdf9f3;
  border: 1px solid #ece5d8;
  padding: 16px;
  border-radius: 12px;
}

.service-item strong {
  font-size: 1.1rem;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 0.9rem;
}

input,
select,
textarea {
  border: 1px solid #d7d2c7;
  padding: 10px 12px;
  border-radius: 8px;
  font-size: 1rem;
  background: #fff;
}

.service-select {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-option {
  border: 1px solid #d7d2c7;
  border-radius: 10px;
  padding: 12px;
  display: flex;
  gap: 12px;
  align-items: flex-start;
  background: #fff;
}

.service-option input {
  margin-top: 4px;
}

.form-alert {
  color: #a33b2e;
  font-size: 0.9rem;
}

.footer {
  padding: 32px 24px;
  background: #101010;
  color: #f4f2ee;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.85rem;
}

.footer a {
  opacity: 0.8;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  background: #0c2d48;
  color: #eef4f8;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 0.9rem;
  z-index: 10;
  display: flex;
  gap: 8px;
  align-items: center;
}

.cookie-banner {
  position: fixed;
  left: 18px;
  bottom: 18px;
  background: #ffffff;
  border: 1px solid #e0d9cd;
  padding: 16px;
  border-radius: 12px;
  max-width: 320px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 11;
}

.cookie-actions {
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}

.pill {
  background: #f4f2ee;
  color: #101010;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.8rem;
  border: 1px solid #101010;
}

.wide {
  padding: 24px 32px;
}

@media (min-width: 900px) {
  .layout {
    flex-direction: row;
  }

  .sidebar {
    width: 260px;
    min-height: 100vh;
  }

  .content {
    padding: 48px 48px 100px;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .service-list {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-item {
    flex: 1 1 calc(50% - 12px);
  }

  .form-grid {
    flex-direction: row;
  }

  .form-grid label {
    flex: 1;
  }
}
