* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #1b1c1f;
  --muted: #5a6069;
  --bg: #f6f7f9;
  --accent: #2f6fed;
  --accent-dark: #2456b8;
  --soft: #eef2ff;
  --layer: #ffffff;
  --warm: #fff5ec;
  --shadow: 0 18px 40px rgba(17, 24, 39, 0.12);
  --radius: 20px;
}

body {
  font-family: "Segoe UI", Tahoma, Geneva, Verdana, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  display: block;
  width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus {
  color: var(--accent-dark);
}

button {
  font-family: inherit;
  border: none;
  cursor: pointer;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 24px 90px;
}

.top-bar {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  margin-bottom: 32px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand h1,
.brand h2 {
  font-size: 22px;
  text-transform: uppercase;
  letter-spacing: 2px;
}

.ad-label {
  font-size: 12px;
  color: var(--muted);
  max-width: 260px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  justify-content: flex-end;
  font-size: 14px;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  background: transparent;
}

.nav-links a:hover,
.nav-links a:focus {
  background: var(--soft);
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  margin-bottom: 44px;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.split .visual {
  flex: 1;
  display: flex;
  justify-content: center;
}

.image-frame {
  width: 100%;
  border-radius: var(--radius);
  overflow: hidden;
  background: #dce4f7;
  box-shadow: var(--shadow);
}

.image-frame.bg-hero,
.image-frame.bg-trust,
.image-frame.bg-process {
  min-height: 320px;
  background-size: cover;
  background-position: center;
}

.image-frame.bg-hero {
  background-image: url("https://images.unsplash.com/photo-1519389950473-47ba0277781c?w=1400&q=80");
}

.image-frame.bg-trust {
  background-image: url("https://images.unsplash.com/photo-1454165804606-c3d57bc86b40?w=1400&q=80");
}

.image-frame.bg-process {
  background-image: url("https://images.unsplash.com/photo-1517248135467-4c7edcad34c4?w=1400&q=80");
}

.image-frame.warm {
  background: #f6e7da;
}

.section-title {
  font-size: 32px;
  line-height: 1.2;
}

.lead {
  font-size: 18px;
  color: var(--muted);
}

.cta-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.btn-primary,
.btn-secondary,
.btn-light {
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  display: inline-flex;
  align-items: center;
  justify-content: center;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
}

.btn-primary:hover,
.btn-primary:focus {
  background: var(--accent-dark);
}

.btn-secondary {
  background: var(--layer);
  color: var(--ink);
  border: 1px solid #d5d9e3;
}

.btn-secondary:hover,
.btn-secondary:focus {
  border-color: var(--accent);
}

.btn-light {
  background: var(--soft);
  color: var(--accent-dark);
}

.btn-light:hover,
.btn-light:focus {
  background: #dbe6ff;
}

.card-stack {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.card {
  flex: 1;
  min-width: 220px;
  background: var(--layer);
  border-radius: var(--radius);
  padding: 18px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  font-size: 20px;
}

.card p {
  color: var(--muted);
  font-size: 15px;
}

.price-tag {
  font-weight: 700;
  font-size: 18px;
  color: var(--accent-dark);
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  padding: 12px 14px;
  background: var(--layer);
  border-radius: 14px;
  box-shadow: var(--shadow);
  flex-wrap: wrap;
}

.service-row span {
  font-weight: 600;
}

.badge {
  background: var(--soft);
  color: var(--accent-dark);
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
}

.highlight {
  background: var(--warm);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
}

.form-card {
  background: var(--layer);
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-card label {
  font-weight: 600;
  font-size: 14px;
}

.form-card input,
.form-card select,
.form-card textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #d4d7e0;
  font-size: 15px;
}

.form-row {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.form-row > div {
  flex: 1;
  min-width: 220px;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 24px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  padding: 12px 18px;
  box-shadow: var(--shadow);
  z-index: 40;
}

.sticky-cta:hover,
.sticky-cta:focus {
  background: var(--accent-dark);
}

.footer {
  margin-top: 60px;
  padding-top: 24px;
  border-top: 1px solid #d9dce6;
  display: flex;
  flex-direction: column;
  gap: 10px;
  color: var(--muted);
  font-size: 14px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 18px;
  background: var(--layer);
  border-radius: 18px;
  padding: 16px;
  box-shadow: var(--shadow);
  max-width: 360px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 50;
}

.cookie-banner p {
  font-size: 14px;
  color: var(--muted);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.inline-link {
  font-weight: 600;
}

.layered {
  position: relative;
}

.layered::before {
  content: "";
  position: absolute;
  inset: -20px;
  background: rgba(47, 111, 237, 0.08);
  border-radius: var(--radius);
  z-index: -1;
}

.note {
  font-size: 13px;
  color: var(--muted);
}

.legal-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.legal-section h2 {
  font-size: 26px;
}

.legal-section p {
  color: var(--muted);
}

.contact-box {
  background: var(--layer);
  border-radius: var(--radius);
  padding: 20px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.muted {
  color: var(--muted);
}

.two-col {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.two-col > div {
  flex: 1;
  min-width: 240px;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 14px;
    left: 14px;
    text-align: center;
  }

  .top-bar {
    flex-direction: column;
    align-items: flex-start;
  }

  .nav-links {
    justify-content: flex-start;
  }
}
