* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1d2430;
  background-color: #f4f6f9;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
}

.page {
  max-width: 1200px;
  margin: 0 auto;
  padding: 32px 20px 80px;
}

.topbar {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 24px 20px;
  background: #0f172a;
  color: #f8fafc;
}

.topbar-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-size: 20px;
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 14px;
}

.ad-label {
  font-size: 12px;
  padding: 6px 10px;
  border-radius: 999px;
  background: rgba(248, 250, 252, 0.15);
}

.split {
  display: flex;
  gap: 28px;
  align-items: stretch;
  margin: 48px 0;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-col {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
  justify-content: center;
}

.section-title {
  font-size: 32px;
  margin: 0;
}

.section-subtitle {
  font-size: 18px;
  line-height: 1.6;
  margin: 0;
}

.image-frame {
  background-color: #dbe3f0;
  border-radius: 16px;
  overflow: hidden;
  min-height: 280px;
  display: flex;
  align-items: stretch;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.tag-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  padding: 6px 12px;
  border-radius: 999px;
  background: #e2e8f0;
  font-size: 12px;
  font-weight: 600;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  align-items: center;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 10px;
  background: #1d4ed8;
  color: #ffffff;
  font-weight: 600;
  border: none;
  cursor: pointer;
}

.btn-secondary {
  background: #0f172a;
}

.btn-ghost {
  background: #e2e8f0;
  color: #0f172a;
}

.panel {
  padding: 28px;
  border-radius: 18px;
  background: #ffffff;
  box-shadow: 0 12px 30px rgba(15, 23, 42, 0.08);
}

.layered {
  position: relative;
  overflow: hidden;
}

.layered::before {
  content: "";
  position: absolute;
  top: -40%;
  right: -20%;
  width: 60%;
  height: 140%;
  background: rgba(59, 130, 246, 0.08);
  transform: rotate(12deg);
}

.layered > * {
  position: relative;
  z-index: 1;
}

.service-grid {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.service-card {
  display: flex;
  gap: 16px;
  padding: 18px;
  border-radius: 16px;
  background: #f8fafc;
}

.service-card img {
  width: 160px;
  height: 120px;
  border-radius: 12px;
  object-fit: cover;
  background-color: #cbd5f5;
}

.price {
  font-weight: 700;
  color: #0f172a;
}

.metrics {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.metric {
  padding: 12px 16px;
  border-radius: 12px;
  background: #eef2ff;
  font-weight: 600;
}

.form-section {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.field-group {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.field-group input,
.field-group select,
.field-group textarea {
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid #cbd5f5;
  font-size: 14px;
}

.radio-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.radio-item {
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px;
  border-radius: 12px;
  background: #f1f5f9;
}

.footer {
  background: #0f172a;
  color: #e2e8f0;
  padding: 28px 20px;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer a {
  color: #e2e8f0;
}

.disclaimer {
  font-size: 12px;
  line-height: 1.6;
  opacity: 0.85;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.2);
  padding: 20px;
  display: none;
  gap: 16px;
  align-items: center;
  justify-content: space-between;
  z-index: 20;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 120px;
  background: #1d4ed8;
  color: #ffffff;
  padding: 12px 16px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 10;
}

.simple-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.contact-card {
  padding: 20px;
  border-radius: 16px;
  background: #f8fafc;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.two-column {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.two-column > div {
  flex: 1;
  min-width: 240px;
}

.note {
  font-size: 13px;
  color: #475569;
}

@media (max-width: 860px) {
  .split,
  .split.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    left: 20px;
    right: 20px;
    text-align: center;
  }
}
