* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #111217;
  --muted: #5b5f6a;
  --accent: #b46a53;
  --accent-dark: #8c4d3c;
  --surface: #f5f1ee;
  --surface-strong: #ede4de;
  --line: #ded2cc;
  --soft: #fbfaf9;
}

body {
  font-family: "Inter", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fdfcfa;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
  border-radius: 18px;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  background: var(--surface);
  padding: 2.5rem 2rem;
  width: 260px;
  display: flex;
  flex-direction: column;
  gap: 2rem;
  border-right: 1px solid var(--line);
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
}

.brand span {
  font-size: 0.78rem;
  text-transform: uppercase;
  letter-spacing: 0.18rem;
  color: var(--muted);
}

.brand strong {
  font-size: 1.4rem;
  letter-spacing: 0.03rem;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
  font-weight: 600;
}

.nav a {
  padding: 0.4rem 0.6rem;
  border-radius: 14px;
  background: transparent;
}

.nav a:hover {
  background: var(--surface-strong);
}

.sidebar-cta {
  margin-top: auto;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.cta-button {
  background: var(--accent);
  color: #fff;
  padding: 0.75rem 1.2rem;
  border-radius: 18px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border: none;
}

.cta-outline {
  border: 1px solid var(--accent);
  color: var(--accent-dark);
  background: transparent;
  padding: 0.7rem 1.2rem;
  border-radius: 18px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.main {
  flex: 1;
  padding: 3rem 4vw 5rem;
  display: flex;
  flex-direction: column;
  gap: 4rem;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
  padding: 2.5rem;
  border-radius: 28px;
  background: var(--soft);
  border: 1px solid var(--line);
}

.section.alt {
  background: var(--surface);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 2rem;
  padding: 3rem;
  background: linear-gradient(135deg, #f8f1ec 0%, #f0e6df 100%);
  border-radius: 32px;
  border: 1px solid var(--line);
}

.hero-grid {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.hero h1 {
  font-size: clamp(2.2rem, 4vw, 3.4rem);
  line-height: 1.1;
}

.hero p {
  font-size: 1.05rem;
  color: var(--muted);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 0.2rem;
  font-size: 0.75rem;
  color: var(--muted);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.metrics {
  display: flex;
  flex-direction: column;
  gap: 1.2rem;
}

.metric-card {
  display: flex;
  flex-direction: column;
  gap: 0.5rem;
  padding: 1.2rem;
  border-radius: 18px;
  background: #fff;
  border: 1px solid var(--line);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.card {
  display: flex;
  flex-direction: column;
  gap: 0.9rem;
  padding: 1.5rem;
  border-radius: 22px;
  background: #fff;
  border: 1px solid var(--line);
}

.card img {
  border-radius: 16px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.service-item {
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
  padding: 1.4rem;
  border-radius: 20px;
  background: #fff;
  border: 1px solid var(--line);
}

.service-item h3 {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  font-size: 1.1rem;
}

.price {
  color: var(--accent-dark);
  font-weight: 700;
  white-space: nowrap;
}

.highlight {
  background: var(--surface-strong);
  padding: 0.3rem 0.6rem;
  border-radius: 10px;
  font-size: 0.85rem;
  display: inline-flex;
  align-items: center;
  gap: 0.4rem;
}

.inline-link {
  color: var(--accent-dark);
  text-decoration: underline;
  font-weight: 600;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 0.7rem 0.9rem;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 1rem;
  font-family: inherit;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: sticky;
  top: 1.5rem;
  align-self: flex-start;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 22px;
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.footer {
  padding: 2rem 0;
  color: var(--muted);
  font-size: 0.9rem;
  display: flex;
  flex-direction: column;
  gap: 0.6rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 1rem;
}

.cookie-banner {
  position: fixed;
  bottom: 1.2rem;
  right: 1.2rem;
  background: #fff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 1.2rem;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 0.8rem;
  box-shadow: 0 10px 30px rgba(17, 18, 23, 0.12);
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 0.6rem;
}

.cookie-actions button {
  flex: 1;
}

.simple-header {
  display: flex;
  flex-direction: column;
  gap: 0.8rem;
}

.section-row {
  display: flex;
  flex-direction: column;
  gap: 2rem;
}

.table-like {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

.table-line {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  padding: 0.8rem 0;
  border-bottom: 1px solid var(--line);
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.8rem;
}

.notice {
  font-size: 0.85rem;
  color: var(--muted);
}

.image-strip {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

@media (min-width: 900px) {
  .hero-grid {
    flex-direction: row;
    align-items: center;
  }

  .hero-grid > div,
  .hero-grid > img {
    flex: 1;
  }

  .split {
    flex-direction: row;
  }

  .split > div,
  .split > img {
    flex: 1;
  }

  .cards {
    flex-direction: row;
  }

  .card {
    flex: 1;
  }

  .metrics {
    flex-direction: row;
  }

  .metric-card {
    flex: 1;
  }

  .section-row {
    flex-direction: row;
  }

  .image-strip {
    flex-direction: row;
  }
}

@media (max-width: 900px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
  }

  .sidebar-cta {
    flex-direction: row;
  }

  .main {
    padding: 2rem 6vw 4rem;
  }
}
