* {
  box-sizing: border-box;
}

:root {
  --ink: #0f1a1f;
  --muted: #5b6770;
  --accent: #167ac6;
  --accent-soft: #e3f1fb;
  --sand: #f6f3ee;
  --fog: #eef2f5;
  --night: #0c2331;
  --panel: #ffffff;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

header {
  padding: 24px 6vw;
  background: var(--panel);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  padding: 6px 12px;
  background: var(--accent-soft);
  border-radius: 999px;
  font-size: 0.85rem;
}

.hero {
  padding: 24px 6vw 60px;
  background: var(--sand);
}

.split {
  display: flex;
  align-items: stretch;
  gap: 32px;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 320px;
  min-width: 280px;
}

.panel-card {
  background: var(--panel);
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(15, 26, 31, 0.08);
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.button {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 999px;
  font-weight: 600;
}

.text-link {
  color: var(--accent);
  font-weight: 600;
}

.section {
  padding: 56px 6vw;
}

.section.alt {
  background: var(--fog);
}

.section.dark {
  background: var(--night);
  color: #ffffff;
}

.layered {
  position: relative;
}

.layered .layer {
  position: absolute;
  inset: 12% 12% auto auto;
  width: 180px;
  height: 180px;
  border-radius: 24px;
  background: rgba(22, 122, 198, 0.12);
  z-index: 0;
}

.layered .panel-card {
  position: relative;
  z-index: 1;
}

.stats {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.stat {
  background: #ffffff;
  padding: 18px 22px;
  border-radius: 18px;
  min-width: 180px;
  flex: 1 1 160px;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  background: #ffffff;
  border-radius: 20px;
  padding: 18px;
  align-items: center;
}

.service-card img {
  width: 180px;
  height: 140px;
  border-radius: 16px;
  background: var(--fog);
}

.service-info {
  flex: 1 1 220px;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.form-wrap {
  background: #ffffff;
  padding: 28px;
  border-radius: 22px;
  box-shadow: 0 12px 30px rgba(15, 26, 31, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

select,
input,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #d1d9de;
  font-size: 1rem;
}

button {
  border: none;
  cursor: pointer;
}

.inline-quote {
  font-style: italic;
  color: var(--muted);
}

.footer {
  padding: 32px 6vw;
  background: var(--sand);
  margin-top: auto;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
}

.footer-block {
  flex: 1 1 220px;
}

.disclaimer {
  font-size: 0.9rem;
  color: var(--muted);
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 18px;
  background: #ffffff;
  border-radius: 999px;
  box-shadow: 0 12px 30px rgba(15, 26, 31, 0.15);
  padding: 8px;
  z-index: 10;
}

.sticky-cta a {
  padding: 10px 16px;
  border-radius: 999px;
  background: var(--accent);
  color: #ffffff;
  display: inline-flex;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(15, 26, 31, 0.2);
  padding: 18px;
  max-width: 320px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
  flex-wrap: wrap;
}

.button.secondary {
  background: #e0e6ea;
  color: var(--ink);
}

.plain-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
  margin: 0;
  list-style: none;
}

.image-frame {
  background: var(--fog);
  border-radius: 22px;
  overflow: hidden;
}

.meta-line {
  font-size: 0.85rem;
  color: var(--muted);
}

.spacer-sm {
  height: 10px;
}

.spacer-md {
  height: 18px;
}
