:root {
  --ink: #0c1b2a;
  --muted: #4b5b6a;
  --surface: #f4f7f9;
  --accent: #1d6fa5;
  --accent-dark: #14527a;
  --warm: #eef2f4;
  --line: #d8e2e8;
  --shadow: rgba(12, 27, 42, 0.12);
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: 100%;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:focus,
button:focus,
select:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

header {
  padding: 24px 6vw 12px;
}

.nav {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.5px;
  font-size: 20px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  background: var(--surface);
  padding: 6px 10px;
  border-radius: 16px;
}

main {
  padding-bottom: 80px;
}

.section {
  padding: 60px 6vw;
}

.section.tint {
  background: var(--surface);
}

.section.warm {
  background: var(--warm);
}

.split {
  display: flex;
  gap: 40px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content,
.split-media {
  flex: 1;
  min-width: 280px;
}

.split-media {
  background: #dfe7ec;
  border-radius: 18px;
  overflow: hidden;
  min-height: 320px;
  box-shadow: 0 16px 30px var(--shadow);
}

.hero h1 {
  font-size: 40px;
  line-height: 1.15;
  margin: 0 0 16px;
}

.hero p {
  color: var(--muted);
  margin: 0 0 22px;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  border: none;
  padding: 12px 18px;
  border-radius: 24px;
  background: var(--accent);
  color: #ffffff;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.inline-link {
  font-weight: 600;
}

.stat-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.stat {
  flex: 1;
  min-width: 180px;
  padding: 16px;
  border: 1px solid var(--line);
  border-radius: 14px;
  background: #fff;
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.card-grid.spaced {
  margin-top: 24px;
}

.card {
  flex: 1;
  min-width: 230px;
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--line);
  background: #fff;
  display: flex;
  flex-direction: column;
}

.card-media {
  height: 180px;
  background: #dfe7ec;
}

.card-body {
  padding: 16px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.list {
  padding-left: 18px;
  margin: 12px 0 0;
}

.lead-panel {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 22px;
  box-shadow: 0 10px 24px var(--shadow);
}

.lead-form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 14px;
}

.two-col {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.two-col > div {
  flex: 1;
  min-width: 200px;
}

.note {
  font-size: 13px;
  color: var(--muted);
}

.overlay-card {
  background: #ffffff;
  padding: 18px;
  border-radius: 16px;
  box-shadow: 0 12px 24px var(--shadow);
  border: 1px solid var(--line);
  margin-top: -30px;
  position: relative;
  z-index: 2;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 24px;
  border: 1px solid var(--line);
  box-shadow: 0 16px 30px var(--shadow);
  padding: 12px;
  z-index: 5;
}

.sticky-cta button {
  width: 100%;
}

.footer {
  background: #0c1b2a;
  color: #eef2f4;
  padding: 32px 6vw;
}

.footer a {
  color: #eef2f4;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.footer-col {
  flex: 1;
  min-width: 200px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  box-shadow: 0 16px 30px var(--shadow);
  display: none;
  z-index: 6;
}

.cookie-banner.visible {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.page-hero {
  padding: 40px 6vw 20px;
}

.page-hero h1 {
  margin: 0 0 12px;
  font-size: 34px;
}

.content-block {
  max-width: 760px;
}

@media (max-width: 980px) {
  .split {
    flex-direction: column;
  }

  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    left: 20px;
    right: 20px;
  }
}
