/* Base */
* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2430;
  background: #f6f7fb;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: #1d4ed8;
  text-decoration: none;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

header {
  padding: 20px 5%;
  background: #ffffff;
  border-bottom: 1px solid #e3e6ef;
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.ad-label {
  padding: 6px 10px;
  background: #fef3c7;
  color: #92400e;
  font-size: 12px;
  border-radius: 999px;
}

main {
  flex: 1;
}

.split-section {
  display: flex;
  gap: 32px;
  padding: 60px 5%;
  align-items: center;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-section.dense {
  padding: 40px 5%;
}

.split-content {
  flex: 1;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.split-image {
  flex: 1;
  background-color: #dfe6f5;
  border-radius: 18px;
  overflow: hidden;
  min-height: 320px;
  display: flex;
}

.split-image img {
  width: 100%;
  height: 100%;
}

.pill {
  display: inline-flex;
  padding: 6px 12px;
  border-radius: 999px;
  background: #e0e7ff;
  color: #3730a3;
  font-size: 12px;
  font-weight: 600;
  width: fit-content;
}

.primary-btn,
.secondary-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.primary-btn {
  background: #1d4ed8;
  color: #ffffff;
}

.secondary-btn {
  background: #ffffff;
  color: #1d4ed8;
  border: 1px solid #c7d2fe;
}

.cta-row {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.metrics {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.metric {
  background: #ffffff;
  border-radius: 16px;
  padding: 16px 18px;
  min-width: 180px;
  border: 1px solid #e5e7eb;
}

.service-list {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.service-card {
  display: flex;
  gap: 16px;
  padding: 18px;
  background: #ffffff;
  border-radius: 16px;
  border: 1px solid #e5e7eb;
}

.service-card img {
  width: 110px;
  height: 90px;
  border-radius: 12px;
}

.service-info {
  display: flex;
  flex-direction: column;
  gap: 8px;
  flex: 1;
}

.price {
  font-weight: 700;
  color: #0f172a;
}

.highlight-panel {
  background: #0f172a;
  color: #f8fafc;
  padding: 40px 5%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.highlight-panel a {
  color: #fcd34d;
}

.form-section {
  background: #ffffff;
  padding: 50px 5%;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
  max-width: 520px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px;
  border-radius: 10px;
  border: 1px solid #cbd5f5;
  font-size: 15px;
  font-family: inherit;
}

.inline-note {
  font-size: 14px;
  color: #475569;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #1d4ed8;
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  box-shadow: 0 8px 24px rgba(15, 23, 42, 0.18);
  z-index: 10;
}

footer {
  background: #0f172a;
  color: #e2e8f0;
  padding: 40px 5%;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

footer a {
  color: #e2e8f0;
}

.footer-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  bottom: 0;
  left: 0;
  right: 0;
  background: #ffffff;
  border-top: 1px solid #e2e8f0;
  padding: 16px 5%;
  display: none;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.legal-block {
  background: #ffffff;
  padding: 50px 5%;
}

.legal-block h2 {
  margin-top: 28px;
}

@media (max-width: 900px) {
  .split-section,
  .split-section.reverse {
    flex-direction: column;
  }

  .sticky-cta {
    left: 18px;
    right: 18px;
    text-align: center;
  }
}
