* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Segoe UI", Arial, sans-serif;
  color: #1f2937;
  background: #f5f2ee;
  line-height: 1.6;
}

a {
  color: #1d4ed8;
  text-decoration: none;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 24px;
}

.topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 16px 24px;
  background: #111827;
  color: #f9fafb;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  align-items: center;
}

.ad-label {
  font-size: 0.9rem;
  color: #fcd34d;
  max-width: 420px;
}

.cta-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  background: #2563eb;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
}

.cta-outline {
  background: transparent;
  border: 1px solid #2563eb;
  color: #2563eb;
}

.split {
  display: flex;
  align-items: stretch;
  gap: 32px;
  margin: 48px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  justify-content: center;
  gap: 16px;
}

.split-media {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
}

.img-frame {
  background-color: #e2e8f0;
  padding: 8px;
  border-radius: 20px;
  width: 100%;
}

.img-frame img {
  width: 100%;
  height: 100%;
  border-radius: 14px;
  object-fit: cover;
  display: block;
}

.section-card {
  background: #ffffff;
  padding: 24px;
  border-radius: 20px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  box-shadow: 0 12px 24px rgba(15, 23, 42, 0.08);
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card-row .section-card {
  flex: 1;
  min-width: 240px;
}

.card-price {
  font-weight: 700;
  color: #0f172a;
}

.soft-panel {
  background: #fef3c7;
  padding: 24px;
  border-radius: 24px;
}

.light-panel {
  background: #e0f2fe;
  padding: 24px;
  border-radius: 24px;
}

.form-block {
  background: #ffffff;
  padding: 28px;
  border-radius: 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.form-block label {
  font-weight: 600;
}

.form-block input,
.form-block select,
.form-block textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cbd5f5;
  font-size: 1rem;
  font-family: inherit;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.footer {
  background: #111827;
  color: #e5e7eb;
  padding: 32px 24px;
  margin-top: 48px;
}

.footer a {
  color: #93c5fd;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 12px;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 0;
  right: 0;
  bottom: 0;
  background: #1f2937;
  color: #f9fafb;
  padding: 16px 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  z-index: 30;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.stacked {
  display: flex;
  flex-direction: column;
  gap: 24px;
}

.hero-bg {
  background-color: #0f172a;
  color: #f9fafb;
  padding: 48px;
  border-radius: 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.hero-bg p {
  max-width: 520px;
}

.stat-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.stat-box {
  background: #f1f5f9;
  padding: 16px 20px;
  border-radius: 16px;
  min-width: 160px;
}

.contact-grid {
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.muted {
  color: #475569;
}

@media (max-width: 860px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    bottom: 12px;
  }
}
