* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --bg: #f5f6f7;
  --ink: #1b1f24;
  --muted: #5b6672;
  --accent: #1f6feb;
  --accent-2: #0f2d4f;
  --panel: #ffffff;
  --soft: #e7edf3;
  --highlight: #fef4d6;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

img {
  width: 100%;
  display: block;
  border-radius: 18px;
  background-color: #d8e1ea;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

header {
  background: var(--panel);
  border-bottom: 1px solid var(--soft);
}

.nav-wrap {
  max-width: 1120px;
  margin: 0 auto;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.3px;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.ad-label {
  padding: 6px 10px;
  border-radius: 999px;
  background: var(--highlight);
  color: #5c4300;
  font-weight: 600;
  font-size: 0.8rem;
}

.cta-button,
.ghost-button,
button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: white;
  cursor: pointer;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cta-button:hover,
.ghost-button:hover,
button:hover {
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(31, 111, 235, 0.2);
}

.ghost-button {
  background: transparent;
  border: 1px solid var(--accent);
  color: var(--accent);
}

main {
  max-width: 1120px;
  margin: 0 auto;
  padding: 40px 28px 80px;
}

.split-section {
  display: flex;
  gap: 32px;
  align-items: stretch;
  margin-bottom: 64px;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-content,
.split-media {
  flex: 1 1 0;
  min-width: 280px;
}

.split-content {
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 18px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 2px;
  font-size: 0.75rem;
  color: var(--muted);
}

.lead {
  font-size: 1.15rem;
  color: var(--muted);
}

.panel {
  background: var(--panel);
  border-radius: 24px;
  padding: 28px;
  box-shadow: 0 16px 40px rgba(15, 45, 79, 0.08);
}

.image-frame {
  background: #d8e1ea;
  padding: 12px;
  border-radius: 22px;
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--panel);
  border-radius: 18px;
  padding: 20px;
  display: flex;
  gap: 16px;
  align-items: center;
  box-shadow: 0 10px 26px rgba(27, 31, 36, 0.08);
}

.card img {
  width: 120px;
  height: 120px;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item {
  padding: 18px;
  border-radius: 16px;
  background: var(--soft);
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
}

.price {
  font-weight: 700;
  color: var(--accent-2);
}

.background-split {
  border-radius: 28px;
  padding: 32px;
  color: white;
  background-color: #1f2d3a;
  background-image: url("https://images.unsplash.com/photo-1474631245212-32dc3c8310c6?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.background-split .panel {
  background: rgba(255, 255, 255, 0.92);
  color: var(--ink);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid #c8d0d8;
  font-size: 1rem;
  width: 100%;
}

.inline-cta {
  font-weight: 600;
  color: var(--accent-2);
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 10;
  background: var(--accent-2);
}

footer {
  background: #0f2d4f;
  color: #e2e8f0;
  padding: 40px 28px;
}

footer .footer-wrap {
  max-width: 1120px;
  margin: 0 auto;
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: space-between;
}

.footer-links {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer-links a {
  color: #dce4ee;
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: var(--panel);
  border-radius: 16px;
  padding: 18px;
  max-width: 360px;
  box-shadow: 0 16px 40px rgba(15, 45, 79, 0.18);
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1 1 0;
  font-size: 0.9rem;
}

.muted {
  color: var(--muted);
}

@media (max-width: 900px) {
  .split-section {
    flex-direction: column;
  }

  .split-section.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    right: 16px;
    bottom: 16px;
  }
}
