*,
*::before,
*::after {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1b1d1f;
  --muted: #556068;
  --accent: #1e64ff;
  --accent-dark: #1041b8;
  --surface: #f7f8fa;
  --panel: #ffffff;
  --soft: #eef2f6;
  --warning: #ffe7cf;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

img {
  max-width: 100%;
  display: block;
}

.layout {
  display: flex;
  min-height: 100vh;
}

.sidebar {
  width: 260px;
  background: var(--panel);
  padding: 32px 24px;
  display: flex;
  flex-direction: column;
  gap: 24px;
  border-right: 1px solid #e5e9ee;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand h1 {
  margin: 0;
  font-size: 22px;
  letter-spacing: 0.3px;
}

.brand span {
  font-size: 13px;
  color: var(--muted);
}

.nav-links {
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-weight: 500;
}

.nav-links a {
  padding: 6px 0;
  color: var(--ink);
}

.nav-links a:hover {
  color: var(--accent);
}

.side-cta {
  background: var(--soft);
  padding: 16px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  font-size: 14px;
}

.side-cta button {
  border: none;
  padding: 10px 14px;
  border-radius: 999px;
  background: var(--accent);
  color: #fff;
  cursor: pointer;
}

.content {
  flex: 1;
  padding: 36px 6vw 80px;
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.hero {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
  background: linear-gradient(120deg, #dde9ff, #f6f7fb);
  padding: 32px;
  border-radius: 24px;
}

.hero-copy {
  flex: 1 1 320px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero h2 {
  font-size: 36px;
  margin: 0;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary {
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  text-decoration: none;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-secondary {
  background: #fff;
  border: 1px solid #cbd6e2;
  color: var(--ink);
}

.inline-link {
  font-weight: 600;
  color: var(--accent-dark);
}

.split-block {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.split-block > div {
  flex: 1 1 260px;
}

.highlight {
  background: #fff;
  padding: 24px;
  border-radius: 20px;
  box-shadow: 0 14px 30px rgba(22, 30, 45, 0.08);
}

.metric-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.metric {
  flex: 1 1 180px;
  background: var(--panel);
  padding: 16px;
  border-radius: 16px;
}

.services-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  background: var(--panel);
  padding: 18px;
  border-radius: 18px;
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.service-card img {
  width: 72px;
  height: 72px;
}

.service-details {
  flex: 1;
}

.service-price {
  font-weight: 700;
  color: var(--accent-dark);
}

.quote {
  background: var(--warning);
  padding: 20px;
  border-radius: 16px;
  font-style: italic;
}

.form-panel {
  background: #fff;
  padding: 24px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-panel label {
  font-weight: 600;
  font-size: 14px;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d2d9e3;
  width: 100%;
  font-size: 14px;
}

.form-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.form-row > div {
  flex: 1 1 200px;
}

.form-panel button {
  align-self: flex-start;
  background: var(--accent);
  color: #fff;
  border: none;
  padding: 12px 18px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  background: var(--accent-dark);
  color: #fff;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  z-index: 8;
}

.section-banner {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  background: #111827;
  color: #fff;
  padding: 24px;
  border-radius: 20px;
}

.section-banner a {
  color: #fff;
  text-decoration: underline;
}

.image-stack {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.image-stack img {
  width: 160px;
  border-radius: 16px;
}

.footer {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  padding-top: 24px;
  border-top: 1px solid #dde4ed;
  font-size: 13px;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #fff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 12px 24px rgba(27, 29, 31, 0.15);
  max-width: 320px;
  z-index: 9;
  display: none;
  gap: 12px;
  flex-direction: column;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.cookie-actions button {
  border: none;
  padding: 8px 12px;
  border-radius: 999px;
  cursor: pointer;
  font-weight: 600;
  font-size: 12px;
}

.cookie-accept {
  background: var(--accent);
  color: #fff;
}

.cookie-reject {
  background: #e0e6ee;
  color: #1a1f24;
}

.content-title {
  margin: 0 0 12px;
}

.narrow {
  max-width: 760px;
}

.page-hero {
  background: #fff;
  padding: 28px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.legal-block {
  background: #fff;
  padding: 22px;
  border-radius: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

@media (max-width: 900px) {
  .layout {
    flex-direction: column;
  }

  .sidebar {
    width: 100%;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    border-right: none;
    border-bottom: 1px solid #e5e9ee;
  }

  .nav-links {
    flex-direction: row;
    flex-wrap: wrap;
  }

  .side-cta {
    width: 100%;
  }
}

@media (max-width: 600px) {
  .sticky-cta {
    right: 16px;
    bottom: 90px;
  }

  .cookie-banner {
    left: 16px;
    right: 16px;
    max-width: none;
  }
}
