* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --bg: #f6f3ee;
  --ink: #1e1a18;
  --muted: #6b5f58;
  --accent: #6b3bf5;
  --accent-dark: #4a27c9;
  --surface: #ffffff;
  --sand: #efe6db;
  --line: #e2d7cb;
}

body {
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.page {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 240px;
  padding: 32px 24px;
  background: var(--surface);
  border-right: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  font-size: 0.9rem;
}

.nav {
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 0.95rem;
}

.nav a {
  color: var(--muted);
}

.nav a:hover,
.nav a:focus {
  color: var(--accent);
}

.sticky-cta {
  margin-top: auto;
  background: var(--accent);
  color: #fff;
  padding: 14px 16px;
  text-align: center;
  border-radius: 999px;
  font-weight: 600;
  position: sticky;
  top: 16px;
}

.main {
  flex: 1;
  padding: 40px 5vw 80px;
  display: flex;
  flex-direction: column;
  gap: 56px;
}

.section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero {
  background: var(--sand);
  padding: 32px;
  border-radius: 28px;
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-content {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-title {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.2;
}

.hero-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  border: 1px solid var(--accent);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
}

.button.primary {
  background: var(--accent);
  color: #fff;
}

.button.secondary {
  background: transparent;
  color: var(--accent);
}

.split {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split-card {
  background: var(--surface);
  border-radius: 22px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  border: 1px solid var(--line);
}

.metrics {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.metric-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.metric {
  flex: 1;
  min-width: 160px;
  background: var(--surface);
  border-radius: 18px;
  padding: 18px;
  border: 1px solid var(--line);
}

.cards {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 20px;
  border-radius: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
}

.service-meta {
  color: var(--muted);
  font-size: 0.9rem;
}

.service-price {
  font-weight: 700;
  font-size: 1.2rem;
}

.quote {
  display: flex;
  flex-direction: column;
  gap: 12px;
  padding: 24px;
  background: #101018;
  color: #f5f5f6;
  border-radius: 22px;
}

.quote strong {
  color: #fff;
}

.timeline {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.timeline-step {
  display: flex;
  gap: 16px;
  align-items: flex-start;
}

.step-index {
  background: var(--accent);
  color: #fff;
  font-weight: 700;
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
}

.case-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.case-item {
  background: var(--surface);
  border-radius: 20px;
  padding: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
  border: 1px solid var(--line);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 18px;
  background: var(--sand);
  padding: 28px;
  border-radius: 24px;
}

.form-grid {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 14px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 1rem;
}

.cta-inline {
  color: var(--accent);
  font-weight: 600;
}

.faq {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.faq-item {
  background: var(--surface);
  border-radius: 16px;
  padding: 18px;
  border: 1px solid var(--line);
}

.footer {
  padding-top: 20px;
  border-top: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 0.9rem;
  color: var(--muted);
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  bottom: 16px;
  right: 16px;
  left: 16px;
  background: #111018;
  color: #f5f5f6;
  padding: 18px;
  border-radius: 18px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.cookie-actions button {
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #fff;
  background: transparent;
  color: #fff;
  cursor: pointer;
}

.cookie-actions button.primary {
  background: #fff;
  color: #111018;
}

.page-title {
  font-size: clamp(2rem, 3vw, 2.8rem);
}

.simple-section {
  background: var(--surface);
  border-radius: 22px;
  padding: 26px;
  border: 1px solid var(--line);
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.address-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.image-band {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.legal-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (min-width: 860px) {
  .hero {
    flex-direction: row;
    align-items: center;
  }

  .hero-content {
    flex: 1;
  }

  .hero-visual {
    flex: 1;
  }

  .split {
    flex-direction: row;
  }

  .split-card {
    flex: 1;
  }

  .cards {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .service-card {
    flex: 1;
    min-width: 230px;
  }

  .case-grid {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .case-item {
    flex: 1;
    min-width: 240px;
  }

  .form-wrap {
    flex-direction: row;
    align-items: flex-start;
  }

  .form-grid {
    flex: 1;
  }

  .form-aside {
    width: 40%;
  }

  .metric-row {
    flex-wrap: nowrap;
  }
}

@media (max-width: 880px) {
  .page {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    align-items: center;
    flex-wrap: wrap;
    gap: 16px;
  }

  .nav {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .sticky-cta {
    position: static;
    width: 100%;
  }
}
