:root {
  color-scheme: light;
  --ink: #1a1f2b;
  --muted: #5a667d;
  --accent: #1d4ed8;
  --accent-soft: #e0e7ff;
  --surface: #f8f7f4;
  --surface-strong: #ffffff;
  --warm: #f1ede7;
  --border: #d8dbe2;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--surface);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover {
  text-decoration: underline;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.topbar {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 24px 6vw 12px;
  background: var(--surface-strong);
  border-bottom: 1px solid var(--border);
}

.brand {
  font-weight: 700;
  letter-spacing: 0.3px;
}

.main-nav {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  background: var(--warm);
  padding: 6px 12px;
  border-radius: 999px;
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  gap: 32px;
  padding: 64px 6vw;
  align-items: center;
  background: var(--surface);
}

.split-section.alt {
  background: var(--surface-strong);
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-col {
  flex: 1 1 360px;
  min-width: 280px;
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.5px;
  font-size: 0.75rem;
  color: var(--muted);
}

.hero-title {
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.15;
  margin: 12px 0 16px;
}

.lead {
  font-size: 1.05rem;
  color: var(--muted);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.btn {
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.btn:hover {
  background: #153a9a;
  border-color: #153a9a;
}

.btn-secondary {
  background: transparent;
  color: var(--accent);
}

.btn-secondary:hover {
  background: var(--accent-soft);
}

.image-frame {
  background: #e6e9f2;
  padding: 8px;
  border-radius: 20px;
}

.image-frame img {
  width: 100%;
  height: 340px;
  border-radius: 16px;
  background-color: #e6e9f2;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  gap: 16px;
  padding: 16px;
  border-radius: 16px;
  background: var(--surface-strong);
  border: 1px solid var(--border);
}

.service-card img {
  width: 120px;
  height: 90px;
  border-radius: 12px;
  background-color: #e6e9f2;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.selection-panel {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.selection-panel button {
  border: 1px solid var(--border);
  background: #ffffff;
  padding: 12px 16px;
  border-radius: 12px;
  text-align: left;
  cursor: pointer;
  font-weight: 600;
}

.selection-panel button.active {
  border-color: var(--accent);
  color: var(--accent);
  background: var(--accent-soft);
}

.form-wrapper {
  background: var(--warm);
  padding: 32px;
  border-radius: 20px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  padding: 12px 14px;
  border-radius: 12px;
  border: 1px solid var(--border);
  font-size: 1rem;
  font-family: inherit;
}

.inline-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.background-panel {
  background-color: #1f2937;
  background-image: url("https://images.unsplash.com/photo-1474631245212-32dc3c8310c6?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.background-panel .split-col {
  background: rgba(18, 24, 38, 0.7);
  padding: 28px;
  border-radius: 16px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 20px;
  z-index: 10;
  border: none;
  background: #0f172a;
  color: #ffffff;
  padding: 14px 20px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.sticky-cta:hover {
  background: #111827;
}

.footer {
  margin-top: auto;
  padding: 32px 6vw 40px;
  background: var(--surface-strong);
  border-top: 1px solid var(--border);
  color: var(--muted);
  font-size: 0.9rem;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  margin: 16px 0;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 16px;
  max-width: 320px;
  display: none;
  box-shadow: 0 10px 20px rgba(0, 0, 0, 0.08);
}

.cookie-actions {
  display: flex;
  gap: 8px;
  margin-top: 12px;
}

.cookie-actions button {
  flex: 1;
  border-radius: 10px;
}

.simple-page {
  padding: 48px 6vw 80px;
  max-width: 960px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: var(--surface-strong);
  border-radius: 16px;
  padding: 24px;
  border: 1px solid var(--border);
}

@media (max-width: 720px) {
  .topbar {
    padding-bottom: 24px;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
    padding: 12px 16px;
  }

  .image-frame img {
    height: 260px;
  }
}
