* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1a1b1f;
  --muted: #5b616b;
  --soft: #f5f4f1;
  --accent: #2f7a78;
  --accent-dark: #1e5857;
  --sand: #efe7dd;
  --mist: #e7f1f1;
  --sun: #f7d9b7;
  --border: #d7d2c8;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Noto Sans", system-ui, sans-serif;
  color: var(--ink);
  background: #fffdf9;
}

img {
  max-width: 100%;
  display: block;
}

a {
  color: inherit;
  text-decoration: none;
}

.layout {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.sidebar {
  background: var(--sand);
  padding: 24px;
  border-bottom: 1px solid var(--border);
}

.sidebar-top {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.brand {
  font-size: 20px;
  text-transform: uppercase;
  letter-spacing: 0.12em;
  font-weight: 700;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 15px;
}

.nav a {
  color: var(--muted);
}

.sidebar-cta {
  background: #fff;
  border: 1px solid var(--border);
  padding: 16px;
  border-radius: 12px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sticky-cta {
  position: sticky;
  top: 18px;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  font-size: 14px;
}

.button-outline {
  background: transparent;
  color: var(--accent);
}

.content {
  display: flex;
  flex-direction: column;
}

.panel {
  padding: 38px 24px;
  border-bottom: 1px solid var(--border);
}

.panel--hero {
  background: var(--mist);
}

.panel--contrast {
  background: var(--soft);
}

.panel--warm {
  background: var(--sun);
}

.panel--overlay {
  background: linear-gradient(120deg, #fffdf9 0%, #f4efe7 40%, #e1ecec 100%);
}

.panel-inner {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.panel-split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.panel-split.reverse {
  flex-direction: column-reverse;
}

.eyebrow {
  font-size: 13px;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--muted);
}

h1,
h2,
h3 {
  margin: 0;
}

h1 {
  font-size: 34px;
  line-height: 1.15;
}

h2 {
  font-size: 26px;
}

p {
  margin: 0;
  line-height: 1.6;
  color: var(--muted);
}

.metric-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.metric {
  padding: 16px;
  background: #fff;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  border-radius: 16px;
  padding: 18px;
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card img {
  border-radius: 12px;
}

.price {
  font-size: 22px;
  font-weight: 700;
  color: var(--accent-dark);
}

.step-row {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.step {
  padding: 16px;
  background: #fff;
  border-left: 4px solid var(--accent);
  border-radius: 8px;
}

.quotes {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.quote {
  padding: 18px;
  background: #fff;
  border-radius: 14px;
  border: 1px solid var(--border);
}

.form-card {
  border-radius: 16px;
  padding: 22px;
  background: #fff;
  border: 1px solid var(--border);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-size: 14px;
  color: var(--muted);
}

input,
select {
  width: 100%;
  padding: 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 14px;
}

.input-row {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
}

.footer {
  padding: 28px 24px;
  background: #151616;
  color: #f6f1ea;
}

.footer a {
  color: #f6f1ea;
  opacity: 0.85;
}

.footer-row {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 14px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.page-hero {
  background: var(--mist);
  padding: 32px 24px;
  border-bottom: 1px solid var(--border);
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: var(--sand);
  font-size: 12px;
  letter-spacing: 0.12em;
  text-transform: uppercase;
}

@media (min-width: 900px) {
  .layout {
    flex-direction: row;
  }

  .sidebar {
    width: 260px;
    border-right: 1px solid var(--border);
    border-bottom: none;
    min-height: 100vh;
  }

  .content {
    flex: 1;
  }

  .panel {
    padding: 54px 60px;
  }

  .panel-split,
  .panel-split.reverse {
    flex-direction: row;
    align-items: center;
    gap: 40px;
  }

  .panel-inner {
    gap: 28px;
  }

  h1 {
    font-size: 42px;
  }

  .metric-row {
    flex-direction: row;
  }

  .service-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1 1 220px;
  }

  .step-row {
    flex-direction: row;
  }

  .step {
    flex: 1;
  }

  .quotes {
    flex-direction: row;
  }

  .quote {
    flex: 1;
  }

  .input-row {
    flex-direction: row;
  }

  .cookie-banner {
    left: auto;
    right: 24px;
    width: 340px;
  }

  .cookie-actions {
    flex-direction: row;
  }

  .footer-row {
    flex-direction: row;
    justify-content: space-between;
  }
}
