* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  color-scheme: light;
  --ink: #0f172a;
  --muted: #475569;
  --line: #d8dee6;
  --accent: #1e4fd8;
  --accent-2: #0e7490;
  --bg: #f8fafc;
  --surface: #ffffff;
  --soft: #eef2f7;
}

body {
  font-family: "Inter", "Segoe UI", sans-serif;
  background: var(--bg);
  color: var(--ink);
  line-height: 1.6;
}

a {
  color: var(--accent);
  text-decoration: none;
}

main {
  display: flex;
  flex-direction: column;
  gap: 48px;
  padding: 32px 20px 80px;
}

header {
  padding: 20px;
  border-bottom: 1px solid var(--line);
  background: var(--surface);
}

.nav-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.nav-top {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.4px;
  font-size: 20px;
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  font-size: 14px;
}

.ad-label {
  background: #fff2c6;
  color: #7a4b00;
  padding: 6px 10px;
  border-radius: 999px;
  font-size: 12px;
}

.split-section {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
  align-items: center;
}

.split-section.reverse {
  flex-direction: row-reverse;
}

.split-text,
.split-media {
  flex: 1 1 320px;
}

.split-text h1,
.split-text h2,
.split-text h3 {
  margin-bottom: 14px;
}

.split-text p {
  margin-bottom: 12px;
  color: var(--muted);
}

.image-frame {
  background-color: #dfe7f0;
  border-radius: 18px;
  overflow: hidden;
  min-height: 240px;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
}

.section {
  padding: 28px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 24px;
}

.section.soft {
  background: var(--soft);
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 18px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 18px;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
}

.btn.ghost {
  border-color: var(--accent-2);
  color: var(--accent-2);
  background: transparent;
}

.inline-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-weight: 600;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.card {
  flex: 1 1 220px;
  border-radius: 20px;
  border: 1px solid var(--line);
  background: var(--surface);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.price {
  font-weight: 700;
  font-size: 18px;
  color: var(--ink);
}

.form-wrap {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 14px;
}

input,
select,
textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid var(--line);
  background: #fff;
  font-size: 14px;
}

.divider {
  height: 1px;
  background: var(--line);
  margin: 12px 0;
}

.badge {
  display: inline-flex;
  align-items: center;
  padding: 6px 10px;
  border-radius: 12px;
  background: #e2ecff;
  color: #1e3a8a;
  font-size: 12px;
  font-weight: 600;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #0f172a;
  color: #fff;
  padding: 10px 14px;
  border-radius: 999px;
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 40;
}

.sticky-cta a {
  color: #fff;
  font-weight: 600;
}

footer {
  border-top: 1px solid var(--line);
  background: var(--surface);
  padding: 24px 20px 40px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  font-size: 14px;
  color: var(--muted);
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: var(--surface);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 16px;
  display: none;
  z-index: 50;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.12);
}

.cookie-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 12px;
}

.note {
  font-size: 13px;
  color: var(--muted);
}

.two-col {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
}

.two-col > div {
  flex: 1 1 280px;
}

@media (max-width: 860px) {
  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: space-between;
  }
}
