* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1a1f2b;
  background: #f6f7fb;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
}

a {
  color: #2f5fd0;
  text-decoration: none;
}

.page {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.site-header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
  padding: 18px 0;
}

.nav-wrap {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}

.ad-label {
  font-size: 12px;
  color: #4b5563;
  max-width: 220px;
  text-align: right;
}

main {
  padding-bottom: 80px;
}

section {
  padding: 56px 0;
}

.section-muted {
  background: #eef1f7;
}

.section-contrast {
  background: #111827;
  color: #f9fafb;
}

.section-contrast a {
  color: #c7d2fe;
}

.split {
  display: flex;
  gap: 36px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text {
  flex: 1 1 320px;
}

.split .visual {
  flex: 1 1 320px;
}

.image-frame {
  background-color: #dbe2ef;
  border-radius: 18px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.hero h1 {
  font-size: clamp(32px, 4vw, 44px);
  margin-bottom: 16px;
}

.hero .cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 24px;
}

.button {
  border: none;
  background: #2f5fd0;
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 999px;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: #ffffff;
  color: #2f5fd0;
  border: 1px solid #cbd5f5;
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 18px;
}

.tag {
  background: #eef2ff;
  color: #3730a3;
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 13px;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid #e5e7eb;
  padding: 18px;
  flex: 1 1 220px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card .price {
  font-weight: 700;
  color: #111827;
}

.form-panel {
  background: #ffffff;
  border-radius: 18px;
  padding: 24px;
  border: 1px solid #e5e7eb;
}

.form-panel label {
  display: block;
  font-weight: 600;
  margin-top: 12px;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  margin-top: 6px;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #d1d5db;
}

.radio-row {
  display: flex;
  flex-direction: column;
  gap: 8px;
  margin-top: 10px;
}

.form-status {
  margin-top: 12px;
  color: #1f2937;
  font-size: 14px;
}

.sticky-cta {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 20;
}

.sticky-cta button {
  background: #111827;
  color: #ffffff;
  border-radius: 999px;
  padding: 12px 18px;
}

.site-footer {
  background: #0f172a;
  color: #d1d5db;
  padding: 32px 0;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  justify-content: space-between;
}

.footer-grid a {
  color: #e0e7ff;
}

.legal-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: #ffffff;
  border: 1px solid #d1d5db;
  border-radius: 16px;
  padding: 16px;
  display: none;
  gap: 12px;
  align-items: center;
  justify-content: space-between;
  z-index: 30;
}

.cookie-banner.active {
  display: flex;
  flex-wrap: wrap;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.section-bg {
  position: relative;
  overflow: hidden;
  border-radius: 20px;
}

.section-bg img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  opacity: 0.88;
}

.overlay-text {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column;
  justify-content: center;
  padding: 24px;
  color: #ffffff;
  background: rgba(15, 23, 42, 0.45);
}

.inline-note {
  font-size: 14px;
  color: #4b5563;
}

.list {
  padding-left: 18px;
}
