* {
  box-sizing: border-box;
}

:root {
  --bg: #f7f6f3;
  --ink: #1c1c1c;
  --muted: #4e4e4e;
  --accent: #2b59c3;
  --accent-soft: #e6ecff;
  --card: #ffffff;
  --line: #d9d5cf;
  --shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

header {
  padding: 24px 6vw 8px 6vw;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-size: 22px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  border: 1px solid var(--line);
  background: #fff7e8;
  border-radius: 999px;
  color: #7a4b00;
}

.wrap {
  width: min(1200px, 92vw);
  margin: 0 auto;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 48px 0;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1 1 320px;
  min-width: 280px;
}

.panel h1,
.panel h2,
.panel h3 {
  line-height: 1.2;
}

.panel h1 {
  font-size: clamp(32px, 4vw, 48px);
}

.panel h2 {
  font-size: clamp(26px, 3vw, 36px);
}

.panel h3 {
  font-size: 20px;
}

.meta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  color: var(--muted);
  font-size: 14px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: var(--accent-soft);
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn.ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.image-frame {
  background: #dfe6f1;
  border-radius: 18px;
  overflow: hidden;
  box-shadow: var(--shadow);
}

.bg-a {
  background: #ccd5e6;
}

.bg-b {
  background: #dbe7f3;
}

.bg-c {
  background: #d5dee9;
}

.bg-d {
  background: #cfd7df;
}

.bg-e {
  background: #cfe3df;
}

.bg-f {
  background: #e7e0f2;
}

.bg-g {
  background: #e6efe7;
}

.bg-h {
  background: #efe7e1;
}

.bg-i {
  background: #e6edf0;
}

.bg-j {
  background: #e8eaf6;
}

.image-frame img {
  width: 100%;
  height: 100%;
  display: block;
  object-fit: cover;
}

.card {
  background: var(--card);
  border-radius: 18px;
  padding: 20px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding: 16px;
  border-radius: 16px;
  background: #f2f4f8;
}

.price {
  font-weight: 700;
  color: #17326b;
}

.tag {
  display: inline-block;
  background: #eff8f3;
  border: 1px solid #b7e4c7;
  color: #2d6a4f;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
}

.divider {
  height: 1px;
  background: var(--line);
  margin: 24px 0;
}

.form-card {
  background: #ffffff;
  border-radius: 20px;
  padding: 22px;
  box-shadow: var(--shadow);
  border: 1px solid var(--line);
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  font-size: 15px;
  font-family: inherit;
}

.footer {
  background: #0f172a;
  color: #f8fafc;
  padding: 40px 6vw;
  margin-top: 60px;
}

.footer a {
  color: #c7d2fe;
}

.footer .split {
  padding: 0;
}

.legal {
  font-size: 13px;
  color: #cbd5f5;
}

.cta-bar {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: var(--shadow);
  border-radius: 999px;
  padding: 10px 16px;
  display: flex;
  align-items: center;
  gap: 12px;
  z-index: 40;
}

.cta-bar span {
  font-size: 14px;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid var(--line);
  padding: 16px 6vw;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 50;
}

.cookie-banner.hidden {
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.section-tint {
  background: #eef2ff;
  border-radius: 24px;
  padding: 12px 22px;
}

.section-contrast {
  background: #fff;
  border-radius: 24px;
  padding: 12px 22px;
  border: 1px solid var(--line);
}

.section-bg {
  position: relative;
  border-radius: 24px;
  overflow: hidden;
  color: #0f172a;
}

.section-bg .bg-media {
  position: absolute;
  inset: 0;
  z-index: 0;
  width: 100%;
  height: 100%;
  background: #d9e2ef;
}

.section-bg .bg-media img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section-bg .bg-overlay {
  position: absolute;
  inset: 0;
  background: rgba(255, 255, 255, 0.85);
  z-index: 1;
}

.section-bg .bg-content {
  position: relative;
  z-index: 2;
}

.mini {
  font-size: 14px;
  color: var(--muted);
}

.inline-quote {
  padding: 14px 16px;
  border-left: 3px solid var(--accent);
  background: #f2f6ff;
  border-radius: 10px;
  color: #26304a;
}

.kpis {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.kpi {
  background: #fff;
  border-radius: 16px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  min-width: 160px;
}

.kpi strong {
  display: block;
  font-size: 20px;
}

.note {
  background: #fff1f2;
  border: 1px solid #fecdd3;
  color: #9f1239;
  padding: 12px 14px;
  border-radius: 12px;
}

.map-card {
  background: #f8fafc;
  border-radius: 18px;
  padding: 12px;
  border: 1px solid var(--line);
}

.list-inline {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.list-inline span {
  background: #f1f5f9;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 13px;
}

.link-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}
