* {
  box-sizing: border-box;
}

html,
body {
  margin: 0;
  padding: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: #1f2a37;
  background-color: #f7f9fc;
}

a {
  color: #1b5bd6;
  text-decoration: none;
}

a:hover,
button:hover {
  opacity: 0.9;
}

main {
  display: flex;
  flex-direction: column;
  gap: 56px;
  padding: 32px 6vw 80px;
}

header {
  padding: 24px 6vw;
  background: #ffffff;
  border-bottom: 1px solid #e3e9f0;
}

.nav-bar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  font-size: 1.2rem;
  letter-spacing: 0.04em;
  text-transform: lowercase;
}

.ad-label {
  font-size: 0.95rem;
  color: #8a4b00;
  background: #fff2dc;
  padding: 6px 12px;
  border-radius: 999px;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 6px;
  background: #edf3ff;
}

.split-section {
  display: flex;
  gap: 32px;
  align-items: stretch;
  flex-wrap: wrap;
  background: #ffffff;
  border-radius: 20px;
  padding: 32px;
  box-shadow: 0 16px 40px rgba(15, 23, 42, 0.08);
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-text,
.split-media {
  flex: 1 1 320px;
  min-width: 280px;
}

.section-title {
  font-size: 2rem;
  margin: 0 0 12px;
}

.section-kicker {
  text-transform: uppercase;
  font-size: 0.85rem;
  letter-spacing: 0.15em;
  color: #5b6b7f;
  margin-bottom: 12px;
}

.section-body {
  font-size: 1.05rem;
  line-height: 1.6;
}

.image-frame {
  background-color: #dfe7ef;
  border-radius: 18px;
  overflow: hidden;
  height: 100%;
  min-height: 260px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.card-row {
  display: flex;
  gap: 20px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 220px;
  background: #f2f6fb;
  padding: 20px;
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: 210px;
}

.card img {
  width: 100%;
  height: 160px;
  object-fit: cover;
  border-radius: 12px;
  background-color: #dfe7ef;
}

.price {
  font-weight: 700;
  color: #0b3b8c;
}

.cta-button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 18px;
  border-radius: 10px;
  border: none;
  background: #1b5bd6;
  color: #ffffff;
  font-weight: 600;
  cursor: pointer;
  width: fit-content;
}

.cta-outline {
  background: #ffffff;
  color: #1b5bd6;
  border: 1px solid #1b5bd6;
}

.inline-cta {
  font-weight: 600;
  border-bottom: 2px solid #1b5bd6;
}

.bg-context {
  background-image: url("https://images.unsplash.com/photo-1504384308090-c894fdcc538d?w=1400&q=80");
  background-size: cover;
  background-position: center;
  color: #ffffff;
}

.bg-overlay {
  background: rgba(12, 18, 30, 0.72);
  padding: 32px;
  border-radius: 18px;
}

.form-panel {
  display: flex;
  flex-direction: column;
  gap: 14px;
  background: #ffffff;
  padding: 24px;
  border-radius: 18px;
  box-shadow: inset 0 0 0 1px #e2e8f0;
}

.form-panel label {
  font-weight: 600;
  font-size: 0.95rem;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  padding: 10px 12px;
  border: 1px solid #d0d7e2;
  border-radius: 10px;
  font-size: 0.95rem;
  font-family: inherit;
}

.form-panel textarea {
  min-height: 120px;
  resize: vertical;
}

.form-actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}

.sticky-cta {
  position: fixed;
  right: 24px;
  bottom: 24px;
  z-index: 9;
}

.sticky-cta button {
  box-shadow: 0 12px 24px rgba(27, 91, 214, 0.35);
}

.testimonial {
  font-style: italic;
  border-left: 3px solid #1b5bd6;
  padding-left: 12px;
}

footer {
  padding: 40px 6vw 60px;
  background: #0c1220;
  color: #d3d9e3;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.footer-links a {
  color: #d3d9e3;
  background: rgba(255, 255, 255, 0.1);
  padding: 6px 10px;
  border-radius: 8px;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  left: 50%;
  transform: translateX(-50%);
  background: #ffffff;
  padding: 18px 22px;
  border-radius: 14px;
  box-shadow: 0 10px 26px rgba(15, 23, 42, 0.18);
  display: none;
  max-width: 520px;
  z-index: 10;
}

.cookie-banner p {
  margin: 0 0 12px;
  font-size: 0.95rem;
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.muted {
  color: #607187;
}

.legal-block {
  background: #ffffff;
  padding: 28px;
  border-radius: 18px;
  box-shadow: 0 12px 26px rgba(15, 23, 42, 0.08);
}

.legal-block h1 {
  margin-top: 0;
}

.note {
  background: #eef5ff;
  padding: 16px;
  border-radius: 12px;
  font-size: 0.95rem;
}

@media (max-width: 720px) {
  .section-title {
    font-size: 1.7rem;
  }

  .sticky-cta {
    right: 14px;
    bottom: 14px;
  }
}
