* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1a1b1f;
  --muted: #5b6270;
  --accent: #b5402a;
  --accent-soft: #f7e7e3;
  --sand: #f4f1ec;
  --stone: #e3ded6;
  --night: #0f1116;
}

body {
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--sand);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  display: flex;
  flex-direction: column;
  gap: 24px;
  width: 260px;
  padding: 32px 24px;
  background: #ffffff;
  border-right: 1px solid var(--stone);
  position: relative;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 14px;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.nav a {
  padding: 6px 0;
  color: var(--muted);
}

.nav a:hover {
  color: var(--ink);
}

.sidebar-cta {
  margin-top: auto;
  background: var(--accent);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  text-align: center;
  font-size: 14px;
}

main {
  flex: 1;
  padding: 36px 6vw 72px 6vw;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 20px;
  background: #ffffff;
  padding: 32px;
  border-radius: 18px;
  box-shadow: 0 18px 40px rgba(20, 20, 20, 0.06);
}

.section.soft {
  background: var(--accent-soft);
}

.section.dark {
  background: var(--night);
  color: #f6f7fb;
}

.section.dark a {
  color: #fff;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.18em;
  font-size: 12px;
  color: var(--muted);
}

h1 {
  font-size: clamp(2.2rem, 3.6vw, 3.4rem);
  line-height: 1.1;
}

h2 {
  font-size: clamp(1.6rem, 2.4vw, 2.4rem);
  line-height: 1.2;
}

h3 {
  font-size: 1.2rem;
}

.muted {
  color: var(--muted);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid var(--ink);
  font-size: 14px;
  background: #fff;
}

.btn.primary {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

.btn.light {
  background: transparent;
  color: inherit;
  border-color: #fff;
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split.reverse {
  flex-direction: column-reverse;
}

.chip-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.chip {
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--stone);
  font-size: 12px;
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border-radius: 14px;
  background: #fff;
  border: 1px solid var(--stone);
}

.card img {
  width: 48px;
  height: 48px;
}

.services-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border-radius: 16px;
  background: #fff;
  border: 1px solid var(--stone);
}

.service-price {
  font-size: 1.2rem;
  font-weight: 600;
  color: var(--accent);
}

.service button {
  align-self: flex-start;
}

.stat-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.stat {
  display: flex;
  align-items: center;
  gap: 16px;
  padding: 12px 0;
  border-bottom: 1px solid rgba(255, 255, 255, 0.2);
}

.stat strong {
  font-size: 1.6rem;
}

.testimonial {
  padding: 16px 20px;
  border-left: 3px solid var(--accent);
  background: #fff;
  border-radius: 10px;
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  display: flex;
  flex-direction: column;
  gap: 6px;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--stone);
  font-size: 14px;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent);
  color: #fff;
  padding: 12px 18px;
  border-radius: 999px;
  font-size: 14px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
  z-index: 10;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 14px;
  padding-top: 18px;
  border-top: 1px solid var(--stone);
  font-size: 13px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  max-width: 320px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--stone);
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 26px rgba(0, 0, 0, 0.12);
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--stone);
  background: #fff;
  font-size: 13px;
}

.cookie-actions .accept {
  background: var(--accent);
  color: #fff;
  border-color: var(--accent);
}

@media (min-width: 860px) {
  .hero {
    flex-direction: row;
    align-items: center;
    justify-content: space-between;
  }

  .hero img {
    width: 45%;
  }

  .split {
    flex-direction: row;
    align-items: center;
  }

  .split.reverse {
    flex-direction: row-reverse;
  }

  .cards,
  .services-grid,
  .stat-row {
    flex-direction: row;
  }

  .card,
  .service,
  .stat {
    flex: 1;
  }
}
