* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #1c1f22;
  --muted: #5a646f;
  --brand: #21409a;
  --accent: #d94f3b;
  --soft: #f5f3ef;
  --mist: #eef2f6;
  --line: #d9dee6;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: #ffffff;
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
}

.page {
  display: flex;
  flex-direction: column;
  gap: 48px;
}

.topbar {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 24px 6vw 8px;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  font-weight: 700;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  font-size: 0.92rem;
}

.brand span {
  font-weight: 500;
  letter-spacing: 0.2px;
  text-transform: none;
  color: var(--muted);
  font-size: 0.85rem;
}

.nav {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
  font-size: 0.95rem;
}

.nav a {
  padding-bottom: 4px;
  border-bottom: 2px solid transparent;
}

.nav a:hover {
  border-color: var(--brand);
}

.hero {
  display: flex;
  flex-direction: column;
  gap: 24px;
  padding: 0 6vw;
}

.hero .split {
  align-items: center;
}

.eyebrow {
  font-size: 0.9rem;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent);
}

.hero h1 {
  font-size: clamp(2rem, 3vw, 3.2rem);
  margin: 0 0 12px;
}

.hero p {
  margin: 0 0 18px;
  color: var(--muted);
  font-size: 1.05rem;
}

.cta-row {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  padding: 12px 20px;
  border-radius: 999px;
  border: 1px solid transparent;
  background: var(--brand);
  color: #ffffff;
  font-weight: 600;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.button.secondary {
  background: transparent;
  border-color: var(--brand);
  color: var(--brand);
}

.button.light {
  background: #ffffff;
  color: var(--brand);
  border-color: #ffffff;
}

.button:hover {
  transform: translateY(-1px);
  box-shadow: 0 10px 18px rgba(17, 33, 74, 0.12);
}

.split {
  display: flex;
  gap: 32px;
  padding: 0 6vw;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split .text,
.split .media {
  flex: 1 1 320px;
  min-width: 280px;
}

.split .panel {
  background: var(--mist);
  padding: 28px;
  border-radius: 18px;
}

.section {
  padding: 32px 0;
}

.section.tint {
  background: var(--soft);
}

.section.dark {
  background: #1c1f22;
  color: #ffffff;
}

.section.dark a {
  color: #ffffff;
}

.section .label {
  font-weight: 600;
  color: var(--accent);
  text-transform: uppercase;
  letter-spacing: 1.6px;
  font-size: 0.8rem;
  margin-bottom: 8px;
}

.section h2 {
  margin: 0 0 12px;
  font-size: clamp(1.5rem, 2vw, 2.2rem);
}

.section p {
  margin: 0 0 16px;
  color: var(--muted);
}

.section.dark p {
  color: rgba(255, 255, 255, 0.8);
}

.badge-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.badge {
  border: 1px solid var(--line);
  border-radius: 999px;
  padding: 8px 14px;
  font-size: 0.9rem;
  background: #ffffff;
}

.card-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.card {
  flex: 1 1 220px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card h3 {
  margin: 0;
  font-size: 1.1rem;
}

.card small {
  color: var(--muted);
}

.price {
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--brand);
}

.inline-cta {
  color: var(--accent);
  font-weight: 600;
  text-decoration: underline;
}

.form-wrap {
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 20px;
  padding: 24px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
  font-size: 0.9rem;
}

input,
select,
textarea {
  width: 100%;
  padding: 12px 14px;
  border-radius: 10px;
  border: 1px solid var(--line);
  font-family: inherit;
  font-size: 1rem;
}

textarea {
  min-height: 120px;
  resize: vertical;
}

.divider {
  height: 1px;
  background: var(--line);
  margin: 16px 0;
}

.footer {
  display: flex;
  flex-direction: column;
  gap: 16px;
  padding: 32px 6vw 40px;
  background: #101215;
  color: #ffffff;
}

.footer a {
  color: #ffffff;
  text-decoration: underline;
}

.footer-links {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  font-size: 0.9rem;
}

.sticky-cta {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.15);
  border-radius: 999px;
  padding: 8px 10px;
  display: flex;
  gap: 10px;
  align-items: center;
  z-index: 20;
}

.sticky-cta span {
  font-size: 0.9rem;
  color: var(--muted);
}

.cookie-banner {
  position: fixed;
  left: 18px;
  right: 18px;
  bottom: 18px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 16px;
  padding: 16px;
  display: none;
  flex-direction: column;
  gap: 12px;
  z-index: 30;
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.18);
}

.cookie-actions {
  display: flex;
  gap: 10px;
  flex-wrap: wrap;
}

.floating-note {
  background: var(--brand);
  color: #ffffff;
  padding: 14px 20px;
  border-radius: 18px;
  display: inline-flex;
  gap: 12px;
  align-items: center;
}

.list-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}

.list-columns ul {
  margin: 0;
  padding-left: 18px;
  flex: 1 1 220px;
}

.split .media img,
.split .media .panel {
  border-radius: 18px;
}

.hero-image {
  border-radius: 24px;
  overflow: hidden;
  position: relative;
}

.hero-image img {
  width: 100%;
}

.hero-image .overlay {
  position: absolute;
  bottom: 16px;
  left: 16px;
  right: 16px;
  background: rgba(255, 255, 255, 0.9);
  padding: 12px 16px;
  border-radius: 14px;
}

@media (max-width: 820px) {
  .topbar {
    flex-direction: column;
    align-items: flex-start;
  }

  .sticky-cta {
    right: 12px;
    left: 12px;
    justify-content: space-between;
  }
}
