* {
  box-sizing: border-box;
}

:root {
  color-scheme: light;
  --ink: #111827;
  --muted: #4b5563;
  --accent: #1f6feb;
  --accent-soft: #e0ecff;
  --sand: #f7f3ed;
  --slate: #0f172a;
  --paper: #ffffff;
  --leaf: #0f766e;
}

body {
  margin: 0;
  font-family: "Inter", "Segoe UI", system-ui, -apple-system, sans-serif;
  color: var(--ink);
  background: var(--paper);
  line-height: 1.6;
}

img {
  max-width: 100%;
  height: auto;
  display: block;
  object-fit: cover;
}

a {
  color: inherit;
  text-decoration: none;
}

header {
  padding: 28px 6vw 10px;
}

.nav-wrap {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 24px;
}

.brand {
  display: flex;
  flex-direction: column;
  gap: 4px;
  font-weight: 600;
  letter-spacing: 0.02em;
}

.ad-label {
  font-size: 0.85rem;
  color: var(--muted);
}

.nav-links {
  display: flex;
  flex-wrap: wrap;
  gap: 18px;
  font-size: 0.95rem;
}

.nav-links a {
  padding: 6px 10px;
  border-radius: 18px;
  background: var(--accent-soft);
}

.hero {
  display: flex;
  gap: 28px;
  align-items: stretch;
  padding: 26px 6vw 40px;
}

.hero-copy {
  flex: 1.2;
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.hero-title {
  font-size: clamp(2.2rem, 3.2vw, 3.1rem);
  line-height: 1.15;
  margin: 0;
}

.hero-card {
  flex: 0.9;
  background: var(--sand);
  padding: 18px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}

.pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px;
  border-radius: 999px;
  background: var(--accent-soft);
  font-size: 0.85rem;
}

.cta-row {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
}

.button {
  padding: 12px 18px;
  border-radius: 999px;
  border: none;
  background: var(--accent);
  color: #fff;
  font-weight: 600;
  cursor: pointer;
}

.button.secondary {
  background: var(--slate);
}

.inline-link {
  color: var(--accent);
  font-weight: 600;
}

.section {
  padding: 40px 6vw;
}

.section.alt {
  background: var(--sand);
}

.section.dark {
  background: var(--slate);
  color: #f8fafc;
}

.insight-bg {
  background-image: url("https://images.unsplash.com/photo-1485217988980-11786ced9454?w=1400&q=80");
  background-size: cover;
  background-position: center;
}

.split {
  display: flex;
  gap: 26px;
  align-items: center;
}

.split.reverse {
  flex-direction: row-reverse;
}

.card-stack {
  display: flex;
  flex-direction: column;
  gap: 18px;
}

.card {
  background: var(--paper);
  border-radius: 20px;
  padding: 18px;
  display: flex;
  flex-direction: column;
  gap: 10px;
  box-shadow: 0 10px 28px rgba(15, 23, 42, 0.08);
}

.card.dark {
  background: #111827;
  color: #f8fafc;
}

.cards-row {
  display: flex;
  gap: 18px;
  flex-wrap: wrap;
}

.cards-row .card {
  flex: 1 1 220px;
}

.image-frame {
  background: #dbeafe;
  border-radius: 18px;
  overflow: hidden;
}

.floating-note {
  background: var(--accent-soft);
  border-radius: 16px;
  padding: 14px 18px;
  max-width: 320px;
  margin-left: auto;
  margin-top: -18px;
}

.pricing-table {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.pricing-row {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  background: var(--paper);
  border-radius: 18px;
  padding: 18px;
  align-items: center;
}

.price-tag {
  font-weight: 700;
  color: var(--leaf);
  font-size: 1.2rem;
  min-width: 120px;
}

.form-wrap {
  display: flex;
  gap: 22px;
  flex-wrap: wrap;
}

form {
  background: var(--paper);
  padding: 20px;
  border-radius: 22px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  min-width: min(360px, 100%);
}

label {
  font-weight: 600;
  font-size: 0.92rem;
}

input,
select,
textarea {
  padding: 10px 12px;
  border-radius: 12px;
  border: 1px solid #cbd5f5;
  font-family: inherit;
  font-size: 1rem;
}

.footer {
  padding: 30px 6vw 50px;
  background: #0b1020;
  color: #e2e8f0;
}

.footer-columns {
  display: flex;
  flex-wrap: wrap;
  gap: 24px;
}

.footer a {
  color: #e2e8f0;
}

.sticky-cta {
  position: sticky;
  bottom: 18px;
  margin: 0 6vw 18px;
  background: #111827;
  color: #f8fafc;
  border-radius: 18px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 12px;
}

.cookie-banner {
  position: fixed;
  bottom: 18px;
  right: 18px;
  background: #111827;
  color: #f8fafc;
  padding: 16px;
  border-radius: 16px;
  max-width: 320px;
  display: none;
  flex-direction: column;
  gap: 10px;
  z-index: 50;
}

.cookie-actions {
  display: flex;
  gap: 10px;
}

.cookie-actions button {
  flex: 1;
}

.legal-note {
  font-size: 0.9rem;
  color: var(--muted);
}

.tag-list {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}

.tag {
  background: var(--accent-soft);
  color: var(--ink);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 0.85rem;
}

.page-title {
  font-size: clamp(1.8rem, 2.6vw, 2.4rem);
  margin-bottom: 12px;
}

.centered {
  text-align: center;
}

.notice {
  border-left: 4px solid var(--accent);
  padding-left: 14px;
}

.no-break {
  white-space: nowrap;
}

@media (max-width: 900px) {
  .hero,
  .split {
    flex-direction: column;
  }

  .sticky-cta {
    flex-direction: column;
    align-items: flex-start;
  }
}
