* {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

:root {
  --ink: #1b1b1b;
  --muted: #5f6b73;
  --accent: #1d4ed8;
  --accent-soft: #e0e7ff;
  --sand: #f8f5f0;
  --slate: #eef1f4;
  --charcoal: #111827;
}

body {
  font-family: "Segoe UI", Tahoma, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

img {
  display: block;
  max-width: 100%;
  height: auto;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

button {
  font-family: inherit;
}

.page {
  display: flex;
  flex-direction: column;
  min-height: 100vh;
}

.container {
  width: min(1120px, 92%);
  margin: 0 auto;
}

.top-bar {
  background: var(--charcoal);
  color: #ffffff;
  font-size: 0.9rem;
  padding: 0.5rem 0;
}

.top-bar .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  flex-wrap: wrap;
}

.disclosure {
  font-weight: 600;
}

.header {
  background: #ffffff;
  border-bottom: 1px solid #e5e7eb;
}

.header .container {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.25rem 0;
  gap: 1.5rem;
  flex-wrap: wrap;
}

.brand {
  font-size: 1.6rem;
  font-weight: 700;
  color: var(--ink);
}

.nav {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.nav a {
  color: var(--ink);
  font-weight: 500;
}

.nav a:hover,
.btn:hover,
.btn-outline:hover {
  cursor: pointer;
}

.hero {
  background: var(--sand);
  padding: 3.5rem 0;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 2rem;
  align-items: stretch;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .copy,
.split .media {
  flex: 1 1 320px;
}

.copy {
  display: flex;
  flex-direction: column;
  gap: 1.25rem;
  justify-content: center;
}

.media {
  background: #dde5ec;
  padding: 0.75rem;
  border-radius: 16px;
}

.media img {
  border-radius: 12px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.75rem 1.4rem;
  background: var(--accent);
  color: #ffffff;
  border: none;
  border-radius: 999px;
  font-weight: 600;
}

.btn-outline {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 0.7rem 1.3rem;
  border-radius: 999px;
  border: 1px solid var(--accent);
  background: #ffffff;
  color: var(--accent);
  font-weight: 600;
}

.section {
  padding: 3rem 0;
}

.section.alt {
  background: var(--slate);
}

.section .intro {
  max-width: 560px;
  margin-bottom: 2rem;
}

.card-list {
  display: flex;
  flex-wrap: wrap;
  gap: 1.5rem;
}

.card {
  flex: 1 1 280px;
  background: #ffffff;
  border-radius: 16px;
  box-shadow: 0 10px 20px rgba(15, 23, 42, 0.08);
  overflow: hidden;
  display: flex;
  flex-direction: column;
}

.card .media {
  border-radius: 0;
  padding: 0;
}

.card .content {
  padding: 1.5rem;
  display: flex;
  flex-direction: column;
  gap: 0.75rem;
}

.price {
  font-weight: 700;
  color: var(--accent);
}

.cta-row {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cta-row.spaced {
  margin-top: 1.5rem;
}

.form-box {
  background: #ffffff;
  padding: 2rem;
  border-radius: 18px;
  box-shadow: 0 10px 24px rgba(15, 23, 42, 0.08);
}

form {
  display: flex;
  flex-direction: column;
  gap: 1rem;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 0.75rem;
  border-radius: 10px;
  border: 1px solid #cbd5f5;
  font-size: 1rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.sticky-cta {
  position: fixed;
  right: 22px;
  bottom: 22px;
  z-index: 20;
}

.sticky-cta button {
  box-shadow: 0 10px 18px rgba(15, 23, 42, 0.25);
}

.footer {
  background: #0f172a;
  color: #e2e8f0;
  padding: 2.5rem 0;
  margin-top: auto;
}

.footer .container {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}

.footer a {
  color: #93c5fd;
}

.legal-links {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 14px;
  box-shadow: 0 12px 20px rgba(15, 23, 42, 0.2);
  padding: 1rem 1.2rem;
  max-width: 320px;
  z-index: 30;
  display: none;
  flex-direction: column;
  gap: 0.75rem;
}

.cookie-actions {
  display: flex;
  gap: 0.75rem;
  flex-wrap: wrap;
}

.cookie-actions button {
  border: none;
  border-radius: 999px;
  padding: 0.5rem 1rem;
  font-weight: 600;
}

.cookie-accept {
  background: var(--accent);
  color: #ffffff;
}

.cookie-reject {
  background: #e5e7eb;
  color: var(--ink);
}

.aside-note {
  padding: 1.2rem;
  background: var(--accent-soft);
  border-radius: 14px;
  color: #1e3a8a;
}

.reference-list {
  display: flex;
  flex-direction: column;
  gap: 0.35rem;
  font-size: 0.9rem;
}
