* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #12171f;
  --muted: #5b6675;
  --accent: #2f6bff;
  --accent-2: #0d3b66;
  --surface: #f5f6f8;
  --surface-2: #eef2f6;
  --border: #d6dbe2;
  --highlight: #fff3d9;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:focus,
button:focus,
select:focus,
input:focus,
textarea:focus {
  outline: 2px solid var(--accent);
  outline-offset: 2px;
}

.container {
  width: min(1120px, 92vw);
  margin: 0 auto;
}

.top-nav {
  padding: 18px 0;
  border-bottom: 1px solid var(--border);
}

.nav-row {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.brand {
  font-weight: 700;
  letter-spacing: 0.3px;
  text-transform: uppercase;
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  align-items: center;
}

.nav-links a {
  color: var(--ink);
  font-size: 0.95rem;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
  max-width: 360px;
}

.hero {
  padding: 64px 0 40px;
}

.split {
  display: flex;
  gap: 32px;
  align-items: center;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.hero-card {
  background: var(--surface);
  padding: 28px;
  border-radius: 20px;
  border: 1px solid var(--border);
}

.hero-card h1 {
  margin-top: 0;
  font-size: clamp(2rem, 3vw, 3rem);
  line-height: 1.1;
}

.hero-actions {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  margin-top: 24px;
}

.btn {
  background: var(--accent);
  color: #ffffff;
  padding: 12px 20px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  font-weight: 600;
}

.btn.secondary {
  background: var(--accent-2);
}

.btn.ghost {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.section {
  padding: 56px 0;
}

.section.alt {
  background: var(--surface-2);
}

.section.highlight {
  background: var(--highlight);
}

.section-title {
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
}

.section-title h2 {
  margin: 0;
  font-size: clamp(1.6rem, 2.5vw, 2.3rem);
}

.eyebrow {
  text-transform: uppercase;
  letter-spacing: 1.4px;
  color: var(--muted);
  font-size: 0.78rem;
}

.cards {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.card {
  flex: 1 1 240px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 20px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.card img {
  border-radius: 12px;
  width: 100%;
  height: 180px;
}

.price {
  font-weight: 700;
  font-size: 1.05rem;
}

.inline-cta {
  font-weight: 600;
}

.list {
  padding: 0;
  margin: 0;
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.list li {
  display: flex;
  gap: 12px;
  align-items: flex-start;
}

.pill {
  background: var(--surface-2);
  color: var(--accent-2);
  padding: 8px 14px;
  border-radius: 999px;
  font-size: 0.85rem;
  font-weight: 600;
}

.form-panel {
  background: #ffffff;
  border-radius: 18px;
  border: 1px solid var(--border);
  padding: 24px;
}

.form-panel form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.form-panel label {
  font-weight: 600;
  font-size: 0.95rem;
}

.form-panel input,
.form-panel select,
.form-panel textarea {
  width: 100%;
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid var(--border);
  font-size: 1rem;
}

.sticky-cta {
  position: sticky;
  top: 12px;
  background: #ffffff;
  padding: 16px;
  border: 1px solid var(--border);
  border-radius: 16px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.footer {
  padding: 40px 0;
  border-top: 1px solid var(--border);
  background: #ffffff;
}

.footer-columns {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.footer small {
  color: var(--muted);
}

.legal-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffffff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 18px;
  width: min(320px, 90vw);
  box-shadow: 0 10px 30px rgba(18, 23, 31, 0.12);
  display: none;
  z-index: 10;
}

.cookie-actions {
  display: flex;
  gap: 12px;
  margin-top: 12px;
}

.page-hero {
  padding: 40px 0 24px;
}

.page-hero h1 {
  margin: 0;
}

.two-column {
  display: flex;
  gap: 32px;
  flex-wrap: wrap;
}

.two-column > div {
  flex: 1 1 320px;
}

.bg-panel {
  background: #0f1a2b;
  color: #ffffff;
  border-radius: 20px;
  padding: 32px;
}

.bg-panel a {
  color: #ffffff;
  text-decoration: underline;
}

.image-wrap {
  background: #dfe6ee;
  border-radius: 18px;
  overflow: hidden;
}

.image-wrap img {
  width: 100%;
  height: 100%;
}

.bg-hero {
  background-color: #dfe6ee;
}

.bg-soft-1 {
  background-color: #e2e9f2;
}

.bg-soft-2 {
  background-color: #e6ecf5;
}

.bg-soft-3 {
  background-color: #e8edf4;
}

.bg-soft-4 {
  background-color: #e3e9f1;
}

.muted {
  color: var(--muted);
}

.references {
  padding-left: 18px;
}

.disclaimer {
  font-size: 0.9rem;
  color: var(--muted);
}
