.root {
  --ink: #1a1a1a;
  --muted: #5b5b5b;
  --accent: #2d6cdf;
  --accent-dark: #1f4da3;
  --bg: #f5f3f0;
  --bg-alt: #eef2f7;
  --panel: #ffffff;
  --warm: #f7efe6;
}

* {
  box-sizing: border-box;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

img {
  max-width: 100%;
  display: block;
  object-fit: cover;
}

a {
  color: var(--accent);
  text-decoration: none;
}

a:hover,
a:focus {
  text-decoration: underline;
}

.page {
  min-height: 100vh;
  display: flex;
  flex-direction: column;
}

.container {
  width: min(1200px, 92%);
  margin: 0 auto;
}

header {
  background: var(--panel);
  border-bottom: 1px solid #e5e5e5;
}

.nav-wrap {
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  padding: 20px 0;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 6px;
}

.brand strong {
  font-size: 1.2rem;
  letter-spacing: 0.02em;
}

.ad-label {
  font-size: 0.78rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.hero {
  background: var(--bg-alt);
}

.section {
  padding: 70px 0;
}

.split {
  display: flex;
  flex-wrap: wrap;
  gap: 36px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split > div {
  flex: 1 1 320px;
}

.eyebrow {
  text-transform: uppercase;
  font-size: 0.8rem;
  letter-spacing: 0.2em;
  color: var(--muted);
}

.headline {
  font-size: clamp(2rem, 4vw, 3rem);
  margin: 10px 0 16px;
}

.lead {
  font-size: 1.1rem;
  color: var(--muted);
}

.image-frame {
  background: #d8dde4;
  padding: 10px;
  border-radius: 18px;
}

.image-frame img {
  border-radius: 14px;
}

.pill-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.pill {
  background: var(--panel);
  padding: 10px 16px;
  border-radius: 999px;
  border: 1px solid #e3e3e3;
  font-size: 0.9rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  margin-top: 24px;
}

.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 12px 22px;
  background: var(--accent);
  color: #ffffff;
  border-radius: 8px;
  border: none;
  font-weight: 600;
  cursor: pointer;
}

.btn.secondary {
  background: transparent;
  color: var(--accent-dark);
  border: 1px solid var(--accent-dark);
}

.btn:focus,
.btn:hover {
  background: var(--accent-dark);
  color: #ffffff;
}

.panel {
  background: var(--panel);
  padding: 26px;
  border-radius: 18px;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.06);
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 22px;
}

.card {
  background: var(--panel);
  border-radius: 16px;
  overflow: hidden;
  flex: 1 1 240px;
  display: flex;
  flex-direction: column;
}

.card img {
  width: 100%;
  height: 180px;
}

.card-body {
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  flex: 1;
}

.price {
  font-weight: 700;
  color: var(--accent-dark);
}

.split-table {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.split-table div {
  display: flex;
  justify-content: space-between;
  border-bottom: 1px dashed #d8d8d8;
  padding-bottom: 10px;
}

.form-panel {
  background: var(--warm);
  padding: 28px;
  border-radius: 18px;
}

form {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 12px 14px;
  border: 1px solid #d0d0d0;
  border-radius: 8px;
  font-size: 1rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

footer {
  background: #111827;
  color: #e5e7eb;
  margin-top: auto;
  padding: 40px 0;
}

footer a {
  color: #93c5fd;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 30px;
  justify-content: space-between;
}

.footer-col {
  flex: 1 1 220px;
}

.sticky-cta {
  position: fixed;
  right: 20px;
  bottom: 96px;
  background: var(--accent);
  color: #ffffff;
  padding: 12px 18px;
  border-radius: 999px;
  font-weight: 600;
  z-index: 20;
}

.cookie-banner {
  position: fixed;
  left: 20px;
  right: 20px;
  bottom: 20px;
  background: #ffffff;
  border-radius: 14px;
  padding: 18px;
  box-shadow: 0 16px 40px rgba(0, 0, 0, 0.18);
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  align-items: center;
  z-index: 30;
}

.cookie-banner p {
  margin: 0;
  flex: 1 1 240px;
}

.cookie-actions {
  display: flex;
  gap: 12px;
}

.subtle {
  color: var(--muted);
  font-size: 0.95rem;
}

.notice {
  background: #ffffff;
  border-left: 4px solid var(--accent);
  padding: 16px 18px;
}

.section-dark {
  background: #1f2937;
  color: #f9fafb;
}

.section-dark a {
  color: #bfdbfe;
}

.hero-badge {
  background: #ffffff;
  border-radius: 12px;
  padding: 14px 16px;
  box-shadow: 0 10px 25px rgba(0, 0, 0, 0.08);
  margin-top: 16px;
}

.list-clean {
  padding-left: 18px;
}

.list-clean li {
  margin-bottom: 8px;
}

@media (max-width: 768px) {
  .nav-wrap {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    bottom: 120px;
  }
}
