* {
  box-sizing: border-box;
}

:root {
  --ink: #1a1f2b;
  --muted: #4d5666;
  --accent: #3a5ad9;
  --accent-dark: #2e47aa;
  --soft: #f3f5f9;
  --soft-2: #eef1f6;
  --line: #d8dde8;
  --card: #ffffff;
}

body {
  margin: 0;
  font-family: "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: var(--accent-dark);
  text-decoration: none;
}

header {
  padding: 24px 6vw;
  background: #ffffff;
  border-bottom: 1px solid var(--line);
}

.nav-wrap {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.2px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
}

.ad-label {
  font-size: 13px;
  color: var(--muted);
  background: var(--soft);
  padding: 6px 10px;
  border-radius: 999px;
}

.page-intro {
  padding: 48px 6vw 10px;
}

.page-intro h1 {
  margin: 0 0 12px;
  font-size: 34px;
}

.page-intro p {
  max-width: 720px;
  margin: 0;
  color: var(--muted);
}

.hero {
  padding: 60px 6vw;
  background-color: #e7ecf5;
  background-image: url("https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #0f1422;
}

.hero-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 32px;
  background: rgba(255, 255, 255, 0.88);
  padding: 32px;
  border-radius: 24px;
}

.hero-text {
  max-width: 560px;
}

.hero-title {
  margin: 0 0 12px;
  font-size: 36px;
}

.hero-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 20px;
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.btn.ghost {
  background: #ffffff;
  border-color: var(--line);
  color: var(--ink);
}

.section {
  padding: 56px 6vw;
}

.section.soft {
  background: var(--soft);
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
}

.split--reverse {
  flex-direction: row-reverse;
}

.split__content {
  flex: 1 1 320px;
  min-width: 280px;
}

.split__media {
  flex: 1 1 320px;
  min-width: 280px;
}

.media-box {
  background-color: #dde3ef;
  border-radius: 18px;
  overflow: hidden;
}

.media-box img {
  width: 100%;
  height: 320px;
  object-fit: cover;
  display: block;
}

.card-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  margin-top: 18px;
}

.card {
  background: var(--card);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 18px;
  flex: 1 1 220px;
  min-width: 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 14px;
  background-color: #e2e7f1;
}

.price-tag {
  font-weight: 700;
  color: var(--accent-dark);
}

.form-wrap {
  border: 1px solid var(--line);
  padding: 24px;
  border-radius: 18px;
  background: #ffffff;
}

form {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-size: 15px;
}

.inline-cta {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  bottom: 22px;
  right: 24px;
  z-index: 10;
  border-radius: 999px;
  padding: 12px 16px;
  background: var(--accent-dark);
  color: #ffffff;
  border: none;
  cursor: pointer;
}

.info-list {
  display: flex;
  flex-direction: column;
  gap: 8px;
  color: var(--muted);
}

.legal {
  max-width: 860px;
}

footer {
  padding: 40px 6vw;
  background: #101522;
  color: #c9d2ea;
}

footer a {
  color: #dbe4ff;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.disclaimer {
  max-width: 620px;
  font-size: 14px;
  color: #b3bdd5;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.12);
  z-index: 20;
  display: none;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.note {
  font-size: 14px;
  color: var(--muted);
}

.badge {
  display: inline-block;
  padding: 6px 10px;
  border-radius: 12px;
  background: var(--soft-2);
  color: var(--muted);
  font-size: 13px;
}

.service-highlight {
  border-left: 3px solid var(--accent);
  padding-left: 14px;
}

.background-band {
  background-color: #e8edf7;
  background-image: url("https://images.unsplash.com/photo-1520607162513-77705c0f0d4a?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #0f1522;
}

.background-overlay {
  background: rgba(255, 255, 255, 0.9);
  padding: 32px;
  border-radius: 18px;
}

.image-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.image-row img {
  width: 100%;
  max-width: 340px;
  height: 220px;
  object-fit: cover;
  border-radius: 14px;
  background-color: #e0e6f2;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 12px;
}

.cta-strip {
  padding: 20px;
  border-radius: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.service-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.service-tile {
  flex: 1 1 240px;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  background: #ffffff;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.service-tile img {
  width: 100%;
  height: 150px;
  object-fit: cover;
  border-radius: 12px;
  background-color: #e0e6f2;
}

.spacer {
  height: 12px;
}

@media (max-width: 900px) {
  .hero-inner {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 16px;
    left: 16px;
    width: calc(100% - 32px);
  }
}
