* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1b1f24;
  --muted: #5a6672;
  --accent: #2b6de2;
  --accent-dark: #1f4fa7;
  --soft: #f2f5f9;
  --warm: #f7f2ee;
  --deep: #111827;
  --panel: #ffffff;
  --shadow: 0 18px 40px rgba(15, 23, 42, 0.12);
}

body {
  font-family: "Inter", "Segoe UI", "Helvetica Neue", Arial, sans-serif;
  color: var(--ink);
  background: #fbfcfe;
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:focus,
button:focus,
input:focus,
select:focus,
textarea:focus {
  outline: 2px solid rgba(43, 109, 226, 0.35);
  outline-offset: 2px;
}

img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  border-radius: 18px;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.site-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 24px 8vw 16px;
  background: #ffffff;
  border-bottom: 1px solid #edf0f4;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.8px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.nav-links a {
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 280px;
}

main {
  display: flex;
  flex-direction: column;
  gap: 72px;
  padding: 48px 8vw 64px;
}

section {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.split {
  display: flex;
  gap: 40px;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.panel {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 18px;
  padding: 32px;
  background: var(--panel);
  border-radius: 22px;
  box-shadow: var(--shadow);
}

.panel.no-shadow {
  box-shadow: none;
  background: transparent;
  padding: 0;
}

.panel.dark {
  background: var(--deep);
  color: #f8fafc;
}

.panel.dark p,
.panel.dark li {
  color: #dbe2ea;
}

.image-box {
  background: #dde4ee;
  border-radius: 22px;
  overflow: hidden;
  min-height: 320px;
}

.image-box.tall {
  min-height: 380px;
}

.bg-panel {
  color: #f8fafc;
  background-size: cover;
  background-position: center;
  border-radius: 22px;
  padding: 40px;
  min-height: 360px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
  gap: 16px;
  position: relative;
}

.bg-panel::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(17, 24, 39, 0.2), rgba(17, 24, 39, 0.72));
  border-radius: 22px;
}

.bg-panel > * {
  position: relative;
}

.bg-panel-a {
  background-image: url("https://images.unsplash.com/photo-1475721027785-f74eccf877e2?w=1400&q=80");
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--soft);
  color: var(--muted);
  font-size: 0.9rem;
  width: fit-content;
}

.cta-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.button {
  background: var(--accent);
  color: #ffffff;
  border: none;
  border-radius: 999px;
  padding: 12px 22px;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: #ffffff;
  color: var(--accent);
  border: 1px solid rgba(43, 109, 226, 0.4);
}

.button.ghost {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid rgba(31, 79, 167, 0.4);
}

.list {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.list li {
  list-style: none;
  padding-left: 0;
}

.metric-row {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.metric {
  background: var(--warm);
  border-radius: 18px;
  padding: 16px 20px;
  min-width: 160px;
}

.metric strong {
  font-size: 1.4rem;
  display: block;
}

.services {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-item {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 0;
  border-bottom: 1px solid #e6ebf2;
}

.service-item:last-child {
  border-bottom: none;
}

.service-item span {
  color: var(--muted);
  font-size: 0.95rem;
}

.service-item strong {
  font-size: 1.05rem;
}

.service-price {
  font-weight: 700;
  color: var(--accent-dark);
  white-space: nowrap;
}

.form-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.95rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #dbe2ea;
  font-size: 0.95rem;
  width: 100%;
  background: #ffffff;
}

fieldset {
  border: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  padding: 0;
}

.radio-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.radio-pill {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 10px 14px;
  border-radius: 999px;
  border: 1px solid #dbe2ea;
  background: #ffffff;
}

.radio-pill input {
  width: auto;
}

.form-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.status {
  font-size: 0.95rem;
  color: var(--accent-dark);
  min-height: 22px;
}

.split-services {
  display: flex;
  gap: 28px;
  flex-wrap: wrap;
}

.service-card {
  flex: 1 1 220px;
  background: var(--panel);
  border-radius: 20px;
  padding: 16px;
  box-shadow: var(--shadow);
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.service-card .image-box {
  min-height: 160px;
}

.service-card h3 {
  margin-top: 6px;
}

.legal-block {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer {
  margin-top: auto;
  padding: 32px 8vw 40px;
  background: #0b1220;
  color: #d2d8e0;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.footer a {
  color: #9db7ff;
}

.disclaimer {
  font-size: 0.9rem;
  color: #c6ced8;
}

.cta-bar {
  position: fixed;
  bottom: 20px;
  right: 24px;
  background: #ffffff;
  border-radius: 999px;
  box-shadow: var(--shadow);
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 10px 14px;
  z-index: 5;
}

.cta-bar span {
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 24px;
  bottom: 24px;
  background: #ffffff;
  border-radius: 18px;
  box-shadow: var(--shadow);
  padding: 16px;
  max-width: 320px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  z-index: 6;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.hidden {
  display: none;
}

.contact-grid {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.contact-card {
  flex: 1 1 200px;
  background: var(--soft);
  padding: 18px;
  border-radius: 16px;
}

@media (max-width: 900px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .site-header {
    align-items: flex-start;
  }

  .cta-bar {
    left: 24px;
    right: 24px;
    justify-content: space-between;
  }
}
