* {
  box-sizing: border-box;
}

:root {
  --bg: #f6f3ef;
  --ink: #1b1c1f;
  --muted: #5a616b;
  --accent: #1f5b99;
  --accent-dark: #164370;
  --panel: #ffffff;
  --soft: #ece7e0;
  --highlight: #f0efe9;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", Arial, sans-serif;
  color: var(--ink);
  background: var(--bg);
  line-height: 1.6;
}

a {
  color: inherit;
  text-decoration: none;
}

img {
  display: block;
}

.site-header {
  background: var(--panel);
  border-bottom: 1px solid var(--soft);
}

.nav {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  padding: 18px 6%;
  flex-wrap: wrap;
}

.logo {
  font-weight: 700;
  letter-spacing: 0.6px;
}

.nav-links {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 999px;
  transition: background 0.2s ease;
}

.nav-links a:hover,
.nav-links a:focus {
  background: var(--soft);
}

.ad-label {
  flex-basis: 100%;
  font-size: 0.9rem;
  color: var(--muted);
}

.hero {
  padding: 48px 6% 28px;
}

.split {
  display: flex;
  align-items: center;
  gap: 36px;
  flex-wrap: wrap;
}

.split.reverse {
  flex-direction: row-reverse;
}

.split-content {
  flex: 1 1 320px;
  min-width: 280px;
}

.split-media {
  flex: 1 1 320px;
  min-width: 280px;
}

.image-frame {
  background: #dfe3e6;
  border-radius: 18px;
  overflow: hidden;
}

.image-frame img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.section {
  padding: 48px 6%;
}

.section.alt {
  background: var(--highlight);
}

.section.soft {
  background: var(--panel);
}

.kicker {
  text-transform: uppercase;
  letter-spacing: 1.4px;
  font-size: 0.8rem;
  color: var(--muted);
}

.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 12px 20px;
  background: var(--accent);
  color: #fff;
  border-radius: 999px;
  font-weight: 600;
  transition: background 0.2s ease;
}

.btn:hover,
.btn:focus {
  background: var(--accent-dark);
}

.btn.secondary {
  background: transparent;
  color: var(--accent);
  border: 1px solid var(--accent);
}

.btn.secondary:hover,
.btn.secondary:focus {
  background: rgba(31, 91, 153, 0.08);
}

.card-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
}

.card {
  flex: 1 1 220px;
  background: var(--panel);
  border-radius: 16px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  border: 1px solid var(--soft);
}

.card .price {
  font-weight: 700;
  color: var(--accent);
}

.stack {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.inline-link {
  color: var(--accent);
  text-decoration: underline;
}

.form-panel {
  background: var(--panel);
  border-radius: 18px;
  padding: 22px;
  border: 1px solid var(--soft);
}

form {
  display: flex;
  flex-direction: column;
  gap: 14px;
}

label {
  font-weight: 600;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 10px;
  border: 1px solid #cfd5da;
  font-size: 1rem;
  font-family: inherit;
}

.form-note {
  color: var(--muted);
  font-size: 0.9rem;
}

.cta-bar {
  position: fixed;
  right: 18px;
  bottom: 18px;
  z-index: 10;
  background: var(--panel);
  padding: 10px 12px;
  border-radius: 999px;
  border: 1px solid var(--soft);
}

.cta-bar a {
  font-weight: 600;
  color: var(--accent);
}

.cookie-banner {
  position: fixed;
  left: 16px;
  right: 16px;
  bottom: 16px;
  background: var(--panel);
  border: 1px solid var(--soft);
  border-radius: 16px;
  padding: 16px;
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  justify-content: space-between;
  z-index: 12;
}

.cookie-actions {
  display: flex;
  gap: 8px;
}

.site-footer {
  padding: 36px 6%;
  background: #111216;
  color: #f5f6f8;
}

.site-footer a {
  color: #f5f6f8;
  text-decoration: underline;
}

.footer-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer-grid > div {
  flex: 1 1 220px;
}

.legal-list {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.page-hero {
  padding: 48px 6% 18px;
}

.spacer {
  height: 12px;
}

@media (max-width: 900px) {
  .nav {
    flex-direction: column;
    align-items: flex-start;
  }

  .cta-bar {
    right: 12px;
    bottom: 12px;
  }
}
