/* ============================================================
   PatData Design System v2.0
   Full-width. Premium B2B. Purposeful restraint.
   ============================================================ */

/* --- Fonts (Self-hosted Inter) --- */
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 400;
  font-display: swap;
  src: url('/assets/fonts/inter/inter-regular.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 500;
  font-display: swap;
  src: url('/assets/fonts/inter/inter-medium.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 600;
  font-display: swap;
  src: url('/assets/fonts/inter/inter-semibold.woff2') format('woff2');
}
@font-face {
  font-family: 'Inter';
  font-style: normal;
  font-weight: 700;
  font-display: swap;
  src: url('/assets/fonts/inter/inter-bold.woff2') format('woff2');
}

/* --- CSS Custom Properties --- */
:root {
  /* Colors */
  --navy: #0B1437;
  --navy-light: #111C44;
  --navy-mid: #0F1B3D;
  --blue: #2563EB;
  --blue-hover: #1D4ED8;
  --blue-light: #3B82F6;
  --white: #FFFFFF;
  --light: #F8FAFC;
  --light-alt: #F1F5F9;
  --slate: #64748B;
  --slate-light: #94A3B8;
  --slate-dark: #475569;
  --border: #E2E8F0;
  --border-light: #F1F5F9;
  --green: #059669;
  --green-light: #D1FAE5;

  /* Typography — bigger, bolder */
  --font: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', sans-serif;
  --h1: 4rem;        /* 64px */
  --h2: 2.75rem;     /* 44px */
  --h3: 1.5rem;      /* 24px */
  --h4: 1.25rem;     /* 20px */
  --body: 1.0625rem; /* 17px */
  --body-lg: 1.25rem;/* 20px */
  --small: 0.875rem; /* 14px */
  --tiny: 0.75rem;   /* 12px */
  --xs: 0.6875rem;   /* 11px */

  /* Spacing */
  --s-xs: 0.5rem;
  --s-sm: 1rem;
  --s-md: 1.5rem;
  --s-lg: 2rem;
  --s-xl: 3rem;
  --s-2xl: 4rem;
  --s-3xl: 5rem;
  --s-4xl: 6rem;
  --s-section: 8rem;
  --s-hero: 10rem;

  /* Layout — wider */
  --max-w: 1440px;
  --max-w-narrow: 900px;
  --max-w-text: 720px;
  --gutter: 2rem;
  --radius: 0.5rem;
  --radius-lg: 0.75rem;
  --radius-xl: 1rem;
  --radius-2xl: 1.5rem;
}

/* --- Reset --- */
*, *::before, *::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0;
}

html {
  scroll-behavior: smooth;
  -webkit-text-size-adjust: 100%;
}

body {
  font-family: var(--font);
  font-size: var(--body);
  line-height: 1.65;
  color: var(--slate-dark);
  background: var(--white);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

img, svg {
  display: block;
  max-width: 100%;
  height: auto;
}

a {
  color: var(--blue);
  text-decoration: none;
  transition: color 0.15s ease;
}

a:hover {
  color: var(--blue-hover);
}

ul, ol {
  list-style: none;
}

/* --- Typography --- */
h1, h2, h3, h4, h5, h6 {
  color: var(--navy);
  font-weight: 700;
  line-height: 1.12;
  letter-spacing: -0.025em;
}

h1 {
  font-size: var(--h1);
  letter-spacing: -0.03em;
}

h2 {
  font-size: var(--h2);
  margin-bottom: var(--s-md);
}

h3 {
  font-size: var(--h3);
  font-weight: 600;
  margin-bottom: var(--s-sm);
  letter-spacing: -0.01em;
}

h4 {
  font-size: var(--h4);
  font-weight: 600;
}

p {
  margin-bottom: var(--s-sm);
}

p:last-child {
  margin-bottom: 0;
}

.text-muted { color: var(--slate-light); }
.text-center { text-align: center; }
.text-lg { font-size: var(--body-lg); line-height: 1.6; }
.text-sm { font-size: var(--small); }

/* Label/Overline */
.overline {
  font-size: var(--xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: var(--s-sm);
  display: block;
}

.section-dark .overline {
  color: var(--blue-light);
}

/* --- Layout: Full-width backgrounds, contained content --- */
.container {
  width: 100%;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container-narrow {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.container-text {
  max-width: var(--max-w-text);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

section {
  padding: var(--s-section) 0;
}

.section-light {
  background: var(--light);
}

.section-alt {
  background: var(--light-alt);
}

.section-dark {
  background: var(--navy);
  color: rgba(255,255,255,0.85);
}

.section-dark h1,
.section-dark h2,
.section-dark h3,
.section-dark h4 {
  color: var(--white);
}

.section-dark p {
  color: rgba(255,255,255,0.7);
}

.section-header {
  text-align: center;
  max-width: var(--max-w-text);
  margin: 0 auto var(--s-3xl);
}

.section-header p {
  font-size: var(--body-lg);
  color: var(--slate);
  margin-top: var(--s-sm);
  line-height: 1.6;
}

.section-dark .section-header p {
  color: rgba(255,255,255,0.65);
}

/* --- Grid --- */
.grid {
  display: grid;
  gap: var(--s-md);
}

.grid-2 { grid-template-columns: repeat(2, 1fr); }
.grid-3 { grid-template-columns: repeat(3, 1fr); }
.grid-4 { grid-template-columns: repeat(4, 1fr); }
.grid-2-1 { grid-template-columns: 2fr 1fr; }
.grid-1-1 { grid-template-columns: 1fr 1fr; gap: var(--s-3xl); }
.grid-5-7 { grid-template-columns: 5fr 7fr; gap: var(--s-3xl); }
.grid-7-5 { grid-template-columns: 7fr 5fr; gap: var(--s-3xl); }

.grid-align-center { align-items: center; }

/* --- Buttons --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 52px;
  padding: 0 2rem;
  font-family: var(--font);
  font-size: var(--small);
  font-weight: 600;
  border-radius: var(--radius-lg);
  border: 2px solid transparent;
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
  white-space: nowrap;
  gap: 0.5rem;
}

.btn-primary {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.btn-primary:hover {
  background: var(--blue-hover);
  border-color: var(--blue-hover);
  color: var(--white);
  transform: translateY(-1px);
  box-shadow: 0 4px 12px rgba(37, 99, 235, 0.3);
}

.btn-ghost {
  background: transparent;
  color: var(--navy);
  border-color: var(--border);
}

.btn-ghost:hover {
  border-color: var(--navy);
  color: var(--navy);
}

.section-dark .btn-ghost {
  color: var(--white);
  border-color: rgba(255,255,255,0.25);
}

.section-dark .btn-ghost:hover {
  border-color: var(--white);
}

.btn-lg {
  height: 56px;
  padding: 0 2.25rem;
  font-size: 1rem;
  border-radius: var(--radius-lg);
}

.btn-arrow::after {
  content: '\2192';
  transition: transform 0.2s ease;
}

.btn-arrow:hover::after {
  transform: translateX(4px);
}

/* --- Cards --- */
.card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--s-lg);
  transition: box-shadow 0.25s ease, border-color 0.25s ease, transform 0.25s ease;
}

.card:hover {
  box-shadow: 0 8px 32px rgba(11, 20, 55, 0.08);
  border-color: var(--blue);
  transform: translateY(-2px);
}

.card-icon {
  width: 52px;
  height: 52px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: linear-gradient(135deg, rgba(37,99,235,0.08), rgba(37,99,235,0.04));
  border-radius: var(--radius-lg);
  margin-bottom: var(--s-md);
  color: var(--blue);
}

.card-icon svg {
  width: 24px;
  height: 24px;
}

.card h3 {
  font-size: var(--h4);
  margin-bottom: var(--s-xs);
}

.card p {
  font-size: var(--small);
  color: var(--slate);
  line-height: 1.7;
}

.card-link {
  display: inline-flex;
  align-items: center;
  gap: 0.375rem;
  font-size: var(--small);
  font-weight: 600;
  color: var(--blue);
  margin-top: var(--s-md);
  transition: gap 0.2s ease;
}

.card-link:hover {
  gap: 0.625rem;
  color: var(--blue-hover);
}

/* --- Navigation --- */
.nav {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  transition: background 0.3s ease, box-shadow 0.3s ease, backdrop-filter 0.3s ease;
}

.nav.transparent {
  background: transparent;
}

.nav.solid {
  background: rgba(255,255,255,0.97);
  box-shadow: 0 1px 3px rgba(11, 20, 55, 0.06);
  backdrop-filter: blur(12px);
  -webkit-backdrop-filter: blur(12px);
}

.nav-inner {
  display: flex;
  align-items: center;
  justify-content: space-between;
  height: 80px;
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.nav-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  text-decoration: none;
  letter-spacing: -0.02em;
  flex-shrink: 0;
  z-index: 10;
}

.nav.transparent .nav-logo {
  color: var(--white);
}

.nav.solid .nav-logo {
  color: var(--navy);
}

.nav-logo span {
  color: var(--blue);
}

.nav-links {
  display: flex;
  align-items: center;
  gap: var(--s-xl);
}

.nav-links a {
  font-size: var(--small);
  font-weight: 500;
  color: var(--slate-dark);
  text-decoration: none;
  transition: color 0.15s ease;
  position: relative;
}

.nav-links a::after {
  content: '';
  position: absolute;
  bottom: -4px;
  left: 0;
  width: 0;
  height: 2px;
  background: var(--blue);
  transition: width 0.2s ease;
}

.nav-links a:hover::after {
  width: 100%;
}

.nav.transparent .nav-links a {
  color: rgba(255,255,255,0.85);
}

.nav.transparent .nav-links a:hover {
  color: var(--white);
}

.nav.solid .nav-links a:hover {
  color: var(--navy);
}

.nav-cta {
  display: inline-flex;
  align-items: center;
  height: 42px;
  padding: 0 1.5rem;
  background: var(--blue);
  color: var(--white) !important;
  border-radius: var(--radius);
  font-size: var(--small);
  font-weight: 600;
  transition: background 0.15s ease, transform 0.15s ease;
}

.nav-cta::after {
  display: none !important;
}

.nav-cta:hover {
  background: var(--blue-hover);
  color: var(--white) !important;
  transform: translateY(-1px);
}

/* Mobile nav */
.nav-toggle {
  display: none;
  background: none;
  border: none;
  cursor: pointer;
  padding: 0.5rem;
  z-index: 10;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--navy);
  margin: 6px 0;
  transition: all 0.3s ease;
}

.nav.transparent .nav-toggle span {
  background: var(--white);
}

/* --- Waitlist Form --- */
.waitlist-inline {
  display: flex;
  gap: 0.75rem;
  max-width: 520px;
}

.waitlist-inline input[type="email"] {
  flex: 1;
  height: 56px;
  padding: 0 1.25rem;
  font-family: var(--font);
  font-size: 1rem;
  border: 2px solid rgba(255,255,255,0.2);
  border-radius: var(--radius-lg);
  background: rgba(255,255,255,0.08);
  color: var(--white);
  outline: none;
  transition: border-color 0.2s ease, background 0.2s ease;
}

.waitlist-inline input[type="email"]::placeholder {
  color: rgba(255,255,255,0.45);
}

.waitlist-inline input[type="email"]:focus {
  border-color: var(--blue);
  background: rgba(255,255,255,0.12);
}

/* Light variant */
.waitlist-light input[type="email"] {
  background: var(--white);
  border-color: var(--border);
  color: var(--navy);
}

.waitlist-light input[type="email"]::placeholder {
  color: var(--slate-light);
}

.waitlist-light input[type="email"]:focus {
  border-color: var(--blue);
}

.waitlist-note {
  font-size: var(--small);
  margin-top: var(--s-sm);
  opacity: 0.6;
}

.waitlist-success {
  display: none;
  padding: var(--s-md);
  background: rgba(5, 150, 105, 0.1);
  border: 1px solid rgba(5, 150, 105, 0.3);
  border-radius: var(--radius-lg);
  text-align: center;
}

.waitlist-success.show {
  display: block;
}

.hp-field {
  position: absolute;
  left: -9999px;
  opacity: 0;
  height: 0;
  width: 0;
  overflow: hidden;
}

/* --- Hero --- */
.hero {
  position: relative;
  background: var(--white);
  color: var(--navy);
  padding: calc(80px + var(--s-3xl)) 0 var(--s-3xl);
  overflow: hidden;
}

.hero-bg-accent {
  position: absolute;
  top: -40%;
  right: -15%;
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(37,99,235,0.07) 0%, transparent 70%);
  pointer-events: none;
}

.hero-split {
  position: relative;
  z-index: 2;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3xl);
  align-items: center;
}

.hero-content {
  max-width: 520px;
}

/* Badge */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 16px 6px 12px;
  background: var(--light);
  border: 1px solid var(--border-light);
  border-radius: 100px;
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--slate);
  letter-spacing: 0.01em;
  margin-bottom: var(--s-lg);
}

.hero-badge-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: #10b981;
  box-shadow: 0 0 8px rgba(16,185,129,0.5);
  animation: dotPulse 2s ease-in-out infinite;
}

@keyframes dotPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.4; }
}

/* Headline */
.hero h1 {
  color: var(--navy);
  font-size: clamp(2.5rem, 5.5vw, 4rem);
  margin-bottom: var(--s-md);
  line-height: 1.08;
  letter-spacing: -0.03em;
  font-weight: 700;
}

.hero-accent {
  color: var(--blue);
}

.hero-subtitle {
  font-size: 1.125rem;
  color: var(--slate);
  margin-bottom: var(--s-xl);
  line-height: 1.7;
  font-weight: 400;
}

.hero-actions {
  display: flex;
  gap: var(--s-sm);
  margin-bottom: var(--s-xl);
}

.btn-outline {
  background: transparent;
  color: var(--navy);
  border: 2px solid var(--border);
  padding: 0 1.75rem;
  height: 48px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius);
  font-weight: 600;
  font-size: 0.9375rem;
  font-family: var(--font);
  cursor: pointer;
  transition: all 0.2s;
  text-decoration: none;
}

.btn-outline:hover {
  border-color: var(--blue);
  color: var(--blue);
}

/* Trust line */
.hero-trust {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 0.8125rem;
  color: var(--slate-light);
  font-weight: 500;
  letter-spacing: 0.02em;
}

/* Visual side */
.hero-visual {
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.hero-card {
  position: relative;
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 20px 60px rgba(11, 20, 55, 0.12),
    0 4px 20px rgba(11, 20, 55, 0.08);
  border: 1px solid rgba(0,0,0,0.06);
}

.hero-card img {
  display: block;
  width: 100%;
  max-width: 460px;
  height: auto;
  object-fit: cover;
}

/* Floating stat cards */
.hero-float {
  position: absolute;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  background: var(--white);
  border-radius: 12px;
  box-shadow:
    0 8px 32px rgba(11, 20, 55, 0.1),
    0 2px 8px rgba(11, 20, 55, 0.06);
  border: 1px solid rgba(0,0,0,0.05);
  font-size: 0.8125rem;
  font-weight: 600;
  color: var(--navy);
  white-space: nowrap;
  z-index: 3;
  animation: floatUp 3s ease-in-out infinite;
}

.hero-float svg {
  flex-shrink: 0;
}

.hero-float-1 {
  top: 8%;
  right: -10%;
  animation-delay: 0s;
}

.hero-float-2 {
  bottom: 15%;
  left: -12%;
  animation-delay: 1s;
}

.hero-float-3 {
  bottom: 5%;
  right: -5%;
  animation-delay: 2s;
}

@keyframes floatUp {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

/* --- Trust Strip --- */
.trust-strip {
  background: var(--light);
  border-top: 1px solid var(--border-light);
  border-bottom: 1px solid var(--border-light);
  padding: var(--s-md) 0;
}

.trust-items {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-xl);
  flex-wrap: wrap;
}

.trust-item {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  font-size: var(--small);
  font-weight: 600;
  color: var(--slate-dark);
}

.trust-item svg {
  width: 20px;
  height: 20px;
  color: var(--green);
  flex-shrink: 0;
}

/* --- KPI / Stats Section --- */
.kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-lg);
}

.kpi-card {
  text-align: center;
  padding: var(--s-xl) var(--s-md);
}

.kpi-number {
  font-size: 3.5rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  margin-bottom: var(--s-xs);
  letter-spacing: -0.03em;
}

.section-dark .kpi-number {
  color: var(--white);
}

.kpi-label {
  font-size: var(--body);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.25rem;
}

.section-dark .kpi-label {
  color: rgba(255,255,255,0.9);
}

.kpi-source {
  font-size: var(--xs);
  color: var(--slate-light);
  margin-top: 0.25rem;
}

.section-dark .kpi-source {
  color: rgba(255,255,255,0.4);
}

/* --- Stats Row (compact) --- */
.stat-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: var(--s-lg);
  text-align: center;
}

.stat-number {
  font-size: 2.75rem;
  font-weight: 700;
  color: var(--blue);
  line-height: 1;
  margin-bottom: var(--s-xs);
  letter-spacing: -0.02em;
}

.section-dark .stat-number {
  color: var(--white);
}

.stat-label {
  font-size: var(--small);
  color: var(--slate);
}

.section-dark .stat-label {
  color: rgba(255,255,255,0.55);
}

/* --- Feature Highlight (split layout) --- */
.feature-split {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3xl);
  align-items: center;
}

.feature-split.reverse {
  direction: rtl;
}

.feature-split.reverse > * {
  direction: ltr;
}

.feature-visual {
  position: relative;
}

.feature-visual img {
  border-radius: var(--radius-xl);
  box-shadow: 0 16px 48px rgba(11,20,55,0.1);
}

.feature-list {
  display: flex;
  flex-direction: column;
  gap: var(--s-md);
  margin-top: var(--s-lg);
}

.feature-list-item {
  display: flex;
  gap: var(--s-sm);
  align-items: flex-start;
}

.feature-list-icon {
  width: 28px;
  height: 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--green-light);
  border-radius: 50%;
  flex-shrink: 0;
  margin-top: 2px;
  color: var(--green);
}

.feature-list-icon svg {
  width: 14px;
  height: 14px;
}

/* --- Audience / Target Cards --- */
.audience-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--s-xl);
  transition: all 0.25s ease;
  position: relative;
  overflow: hidden;
}

.audience-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--blue);
  opacity: 0;
  transition: opacity 0.25s ease;
}

.audience-card:hover {
  box-shadow: 0 12px 40px rgba(11, 20, 55, 0.1);
  transform: translateY(-3px);
}

.audience-card:hover::before {
  opacity: 1;
}

.audience-icon {
  width: 56px;
  height: 56px;
  display: flex;
  align-items: center;
  justify-content: center;
  background: var(--light);
  border-radius: var(--radius-lg);
  margin-bottom: var(--s-md);
  font-size: 1.5rem;
}

.audience-card h3 {
  font-size: var(--h3);
  margin-bottom: var(--s-sm);
  color: var(--navy);
}

.audience-card p {
  color: var(--slate);
  line-height: 1.7;
}

/* Cards inside dark sections need explicit colors */
.section-dark .card h3,
.section-dark .audience-card h3,
.section-dark .pricing-card h3 {
  color: var(--navy);
}

.section-dark .card p,
.section-dark .audience-card p,
.section-dark .pricing-card p {
  color: var(--slate);
}

/* --- Comparison (subtle, no competitor names) --- */
.compare-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-lg);
}

.compare-col {
  padding: var(--s-xl);
  border-radius: var(--radius-xl);
}

.compare-old {
  background: var(--light);
  border: 1px solid var(--border);
}

.compare-new {
  background: rgba(37,99,235,0.05);
  border: 1px solid rgba(37,99,235,0.2);
}

.compare-col h4 {
  margin-bottom: var(--s-md);
  font-size: var(--small);
  text-transform: uppercase;
  letter-spacing: 0.08em;
  font-weight: 700;
}

.compare-old h4 {
  color: var(--slate);
}

.compare-new h4 {
  color: var(--blue);
}

.compare-col ul li {
  padding: 0.625rem 0;
  font-size: var(--small);
  display: flex;
  align-items: center;
  gap: 0.75rem;
  line-height: 1.5;
}

.section-dark .compare-old {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
}

.section-dark .compare-new {
  background: rgba(37,99,235,0.15);
  border: 1px solid rgba(37,99,235,0.3);
}

.section-dark .compare-old h4 {
  color: var(--slate-light);
}

.section-dark .compare-new h4 {
  color: var(--blue-light);
}

/* --- Badges --- */
.badge-row {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: var(--s-md);
  flex-wrap: wrap;
}

.badge {
  display: flex;
  align-items: center;
  gap: 0.5rem;
  padding: 0.75rem 1.25rem;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  font-size: var(--small);
  font-weight: 600;
  color: var(--navy);
}

.badge svg {
  width: 20px;
  height: 20px;
  color: var(--green);
}

/* --- Integration Diagram --- */
.integration-visual {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  flex-wrap: nowrap;
  padding: var(--s-md) 0;
}

.integration-node {
  padding: var(--s-sm) var(--s-lg);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  font-size: var(--small);
  font-weight: 600;
  color: var(--navy);
  text-align: center;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.2s ease;
}

.integration-node:hover {
  border-color: var(--blue);
  box-shadow: 0 4px 16px rgba(37,99,235,0.1);
}

.integration-node.highlight {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
  padding: var(--s-sm) var(--s-xl);
  font-size: var(--body);
  font-weight: 700;
}

.integration-connector {
  width: 48px;
  height: 2px;
  background: var(--border);
  position: relative;
  flex-shrink: 0;
}

.integration-connector::before,
.integration-connector::after {
  content: '';
  position: absolute;
  top: -3px;
  width: 8px;
  height: 8px;
  border: 2px solid var(--border);
  border-radius: 50%;
  background: var(--light);
}

.integration-connector::before { left: -4px; }
.integration-connector::after { right: -4px; }

/* --- Feature Hero (Module pages) --- */
.feature-hero {
  padding: calc(80px + var(--s-2xl)) 0 var(--s-2xl);
  background: var(--white);
}

.feature-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3xl);
  align-items: center;
}

.feature-hero-content {
  max-width: 520px;
}

.feature-hero-content .overline {
  display: inline-block;
  font-size: var(--xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: var(--s-sm);
}

.feature-hero-content h1 {
  color: var(--navy);
  font-size: clamp(2rem, 4vw, 3rem);
  margin-bottom: var(--s-md);
  line-height: 1.12;
  letter-spacing: -0.02em;
  font-weight: 700;
}

.feature-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.feature-preview-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--s-md);
  box-shadow:
    0 12px 40px rgba(11, 20, 55, 0.08),
    0 2px 8px rgba(11, 20, 55, 0.04);
  width: 100%;
  max-width: 420px;
}

.feature-preview-header {
  display: flex;
  align-items: center;
  gap: 8px;
  padding-bottom: var(--s-sm);
  margin-bottom: var(--s-sm);
  border-bottom: 1px solid var(--border-light);
  font-size: var(--small);
  font-weight: 600;
  color: var(--navy);
}

.feature-preview-row {
  padding: 10px 12px;
  background: var(--light);
  border-radius: var(--radius);
  margin-bottom: 8px;
  font-size: var(--small);
  color: var(--navy);
}

.feature-preview-row:last-child {
  margin-bottom: 0;
}

.feature-preview-label {
  font-size: var(--xs);
  color: var(--slate-light);
  font-weight: 500;
}

/* --- Branch Hero (Audience pages) --- */
.branch-hero {
  padding: calc(80px + var(--s-2xl)) 0 var(--s-2xl);
  background: var(--white);
}

.branch-hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: var(--s-3xl);
  align-items: center;
}

.branch-hero-content {
  max-width: 560px;
}

.branch-hero-content .overline {
  display: inline-block;
  font-size: var(--xs);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--blue);
  margin-bottom: var(--s-sm);
}

.branch-hero-content h1 {
  color: var(--navy);
  font-size: clamp(2rem, 4.5vw, 3.25rem);
  margin-bottom: var(--s-md);
  line-height: 1.1;
  letter-spacing: -0.025em;
  font-weight: 700;
}

.branch-hero-visual {
  display: flex;
  align-items: center;
  justify-content: center;
}

.branch-hero-visual img {
  display: block;
  width: 100%;
  max-width: 520px;
  height: auto;
  border-radius: var(--radius-xl);
  box-shadow: 0 16px 48px rgba(11, 20, 55, 0.12);
}

/* Feature list for branch pages */
.feature-checklist {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  padding: 0;
}

.feature-checklist li {
  display: flex;
  align-items: flex-start;
  gap: 0.75rem;
}

.feature-checklist svg {
  width: 20px;
  height: 20px;
  color: var(--blue);
  flex-shrink: 0;
  margin-top: 2px;
}

/* --- Steps / How it works --- */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-xl);
  counter-reset: step;
}

.step-card {
  position: relative;
  padding: var(--s-xl) var(--s-lg);
  text-align: center;
  counter-increment: step;
}

.step-card::before {
  content: counter(step);
  display: flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  font-size: var(--body-lg);
  font-weight: 700;
  margin: 0 auto var(--s-md);
}

.step-card h3 {
  text-align: center;
}

.step-card p {
  color: var(--slate);
  font-size: var(--small);
  line-height: 1.7;
}

/* --- Source Citations --- */
.source-list {
  padding-top: var(--s-xl);
  border-top: 1px solid var(--border);
  margin-top: var(--s-xl);
}

.section-dark .source-list {
  border-top-color: rgba(255,255,255,0.1);
}

.source-item {
  font-size: var(--xs);
  color: var(--slate-light);
  margin-bottom: 0.25rem;
  padding-left: 1rem;
  position: relative;
}

.section-dark .source-item {
  color: rgba(255,255,255,0.35);
}

.source-item::before {
  content: attr(data-num);
  position: absolute;
  left: 0;
  font-weight: 600;
}

sup.source-ref {
  font-size: 0.65em;
  color: var(--blue);
  font-weight: 600;
  cursor: help;
}

.section-dark sup.source-ref {
  color: var(--blue-light);
}

/* --- Footer --- */
.footer {
  background: var(--navy);
  color: rgba(255,255,255,0.7);
  padding: var(--s-3xl) 0 var(--s-lg);
}

.footer-grid {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: var(--s-2xl);
  margin-bottom: var(--s-2xl);
}

.footer-brand {
  padding-right: var(--s-lg);
}

.footer-logo {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--white);
  margin-bottom: var(--s-sm);
  letter-spacing: -0.02em;
}

.footer-logo span {
  color: var(--blue);
}

.footer-brand p {
  font-size: var(--small);
  color: rgba(255,255,255,0.45);
  line-height: 1.7;
}

.footer-col h4 {
  color: var(--white);
  font-size: var(--tiny);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: var(--s-sm);
}

.footer-col a {
  display: block;
  font-size: var(--small);
  color: rgba(255,255,255,0.5);
  padding: 0.3rem 0;
  transition: color 0.15s ease;
}

.footer-col a:hover {
  color: var(--white);
}

.footer-bottom {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding-top: var(--s-lg);
  border-top: 1px solid rgba(255,255,255,0.08);
  font-size: var(--tiny);
  color: rgba(255,255,255,0.35);
}

.footer-legal a {
  color: rgba(255,255,255,0.35);
  margin-left: var(--s-sm);
}

.footer-legal a:hover {
  color: rgba(255,255,255,0.8);
}

/* --- Breadcrumbs --- */
.breadcrumb {
  padding: var(--s-sm) 0;
  font-size: var(--small);
  padding-top: 96px;
}

.breadcrumb a {
  color: var(--slate-light);
}

.breadcrumb a:hover {
  color: var(--blue);
}

.breadcrumb span {
  color: var(--slate-light);
  margin: 0 0.5rem;
}

.breadcrumb strong {
  color: var(--slate);
  font-weight: 500;
}

/* --- Cookie Banner --- */
.cookie-banner {
  display: none;
  position: fixed;
  bottom: var(--s-md);
  left: var(--s-md);
  right: var(--s-md);
  max-width: 480px;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--s-md) var(--s-lg);
  box-shadow: 0 8px 40px rgba(11, 20, 55, 0.15);
  z-index: 9999;
}

.cookie-banner.show {
  display: block;
}

.cookie-banner p {
  font-size: var(--small);
  color: var(--slate);
  margin-bottom: var(--s-sm);
}

.cookie-banner a {
  color: var(--blue);
}

.cookie-actions {
  display: flex;
  gap: var(--s-xs);
}

.cookie-actions button {
  font-family: var(--font);
  font-size: var(--tiny);
  font-weight: 600;
  padding: 0.5rem 1rem;
  border-radius: var(--radius);
  cursor: pointer;
  border: 1px solid var(--border);
  transition: all 0.15s ease;
}

.cookie-accept {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.cookie-accept:hover {
  background: var(--blue-hover);
}

.cookie-decline {
  background: transparent;
  color: var(--slate);
}

.cookie-decline:hover {
  background: var(--light);
}

/* --- FAQ Accordion --- */
.faq-item {
  border-bottom: 1px solid var(--border);
}

.faq-question {
  width: 100%;
  background: none;
  border: none;
  padding: var(--s-md) 0;
  font-family: var(--font);
  font-size: var(--body);
  font-weight: 600;
  color: var(--navy);
  text-align: left;
  cursor: pointer;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: var(--s-sm);
}

.faq-question::after {
  content: '+';
  font-size: 1.5rem;
  font-weight: 400;
  color: var(--slate-light);
  transition: transform 0.2s ease;
  flex-shrink: 0;
}

.faq-item.open .faq-question::after {
  content: '\2212';
}

.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.3s ease;
}

.faq-item.open .faq-answer {
  max-height: 500px;
}

.faq-answer p {
  padding-bottom: var(--s-md);
  color: var(--slate);
  font-size: var(--small);
  line-height: 1.7;
}

/* --- Pricing --- */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-md);
  align-items: start;
}

.pricing-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--s-xl);
  text-align: center;
  transition: all 0.25s ease;
}

.pricing-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 16px 48px rgba(11, 20, 55, 0.1);
}

.pricing-card.featured {
  border-color: var(--blue);
  box-shadow: 0 8px 32px rgba(37, 99, 235, 0.12);
  position: relative;
}

.pricing-badge {
  position: absolute;
  top: -14px;
  left: 50%;
  transform: translateX(-50%);
  background: var(--blue);
  color: var(--white);
  font-size: var(--tiny);
  font-weight: 700;
  padding: 0.375rem 1.25rem;
  border-radius: 20px;
  white-space: nowrap;
}

.pricing-name {
  font-size: var(--h4);
  font-weight: 700;
  color: var(--navy);
  margin-bottom: var(--s-xs);
}

.pricing-desc {
  font-size: var(--small);
  color: var(--slate);
  margin-bottom: var(--s-md);
}

.pricing-price {
  font-size: 3rem;
  font-weight: 700;
  color: var(--navy);
  margin: var(--s-sm) 0;
  letter-spacing: -0.03em;
}

.pricing-price span {
  font-size: var(--small);
  font-weight: 400;
  color: var(--slate);
}

.pricing-features {
  text-align: left;
  margin: var(--s-lg) 0;
}

.pricing-features li {
  padding: 0.5rem 0;
  font-size: var(--small);
  display: flex;
  align-items: center;
  gap: 0.75rem;
}

.pricing-features li svg {
  width: 18px;
  height: 18px;
  color: var(--green);
  flex-shrink: 0;
}

/* --- Scroll Reveal --- */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

.reveal.visible {
  opacity: 1;
  transform: translateY(0);
}

/* --- Responsive --- */
@media (max-width: 1200px) {
  :root {
    --h1: 3.25rem;
    --h2: 2.25rem;
    --gutter: 1.5rem;
  }
}

@media (max-width: 1024px) {
  :root {
    --h1: 2.75rem;
    --h2: 2rem;
    --s-section: 5rem;
  }

  .hero {
    padding: calc(80px + var(--s-xl)) 0 var(--s-xl);
  }

  .hero-split {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--s-xl);
  }

  .hero-content {
    max-width: 600px;
    margin: 0 auto;
  }

  .hero-actions {
    justify-content: center;
  }

  .hero-trust {
    justify-content: center;
  }

  .hero-visual {
    max-width: 400px;
    margin: 0 auto;
  }

  .hero-float {
    display: none;
  }

  .waitlist-inline {
    margin: 0 auto;
  }

  .feature-hero-inner,
  .branch-hero-inner {
    grid-template-columns: 1fr;
    text-align: center;
    gap: var(--s-xl);
  }

  .feature-hero-content,
  .branch-hero-content {
    max-width: 600px;
    margin: 0 auto;
  }

  .feature-preview-card {
    margin: 0 auto;
  }

  .branch-hero-visual img {
    max-width: 400px;
  }

  .feature-split,
  .feature-split.reverse {
    grid-template-columns: 1fr;
    gap: var(--s-xl);
    direction: ltr;
  }

  .grid-5-7, .grid-7-5, .grid-1-1 {
    grid-template-columns: 1fr;
    gap: var(--s-lg);
  }

  .footer-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--s-lg);
  }

  .kpi-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .stat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  :root {
    --h1: 2.25rem;
    --h2: 1.75rem;
    --h3: 1.25rem;
    --s-section: 3.5rem;
    --gutter: 1rem;
  }

  .hero {
    padding: calc(80px + var(--s-lg)) 0 var(--s-lg);
  }

  .grid-2, .grid-3, .grid-4 {
    grid-template-columns: 1fr;
  }

  .grid-2-1 {
    grid-template-columns: 1fr;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 80px;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--white);
    flex-direction: column;
    padding: var(--s-lg) var(--gutter);
    gap: 0;
    overflow-y: auto;
  }

  .nav-links.open {
    display: flex;
  }

  .nav-links a {
    color: var(--navy) !important;
    padding: 1rem 0;
    border-bottom: 1px solid var(--border-light);
    font-size: var(--body) !important;
  }

  .nav-links a::after {
    display: none;
  }

  .nav-toggle {
    display: block;
  }

  .waitlist-inline {
    flex-direction: column;
    max-width: 100%;
  }

  .footer-grid {
    grid-template-columns: 1fr;
    gap: var(--s-md);
  }

  .footer-bottom {
    flex-direction: column;
    gap: var(--s-sm);
    text-align: center;
  }

  .trust-items {
    gap: var(--s-sm) var(--s-md);
  }

  .compare-grid {
    grid-template-columns: 1fr;
  }

  .pricing-grid {
    grid-template-columns: 1fr;
    max-width: 420px;
    margin: 0 auto;
  }

  .badge-row {
    gap: var(--s-xs);
  }

  .kpi-grid {
    grid-template-columns: 1fr 1fr;
    gap: var(--s-sm);
  }

  .kpi-number {
    font-size: 2.5rem;
  }

  .steps-grid {
    grid-template-columns: 1fr;
    gap: var(--s-lg);
  }

  .cookie-banner {
    left: var(--s-xs);
    right: var(--s-xs);
    bottom: var(--s-xs);
  }

  .section-header {
    margin-bottom: var(--s-xl);
  }
}

@media (max-width: 480px) {
  :root {
    --h1: 2rem;
    --h2: 1.5rem;
  }

  .kpi-grid {
    grid-template-columns: 1fr;
  }

  .stat-grid {
    grid-template-columns: 1fr;
  }

  .hero h1 br {
    display: none;
  }

  .hero-actions {
    flex-direction: column;
  }

  .hero-actions .btn {
    width: 100%;
    text-align: center;
  }
}

/* --- Animations --- */
@keyframes fadeInUp {
  from {
    opacity: 0;
    transform: translateY(24px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes fadeIn {
  from { opacity: 0; }
  to { opacity: 1; }
}

@keyframes slideInLeft {
  from {
    opacity: 0;
    transform: translateX(-32px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes slideInRight {
  from {
    opacity: 0;
    transform: translateX(32px);
  }
  to {
    opacity: 1;
    transform: translateX(0);
  }
}

@keyframes scaleIn {
  from {
    opacity: 0;
    transform: scale(0.92);
  }
  to {
    opacity: 1;
    transform: scale(1);
  }
}

@keyframes pulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.7; }
}

/* Nav hamburger animation */
.nav-toggle.active span:nth-child(1) {
  transform: rotate(45deg) translate(5px, 5px);
}

.nav-toggle.active span:nth-child(2) {
  opacity: 0;
}

.nav-toggle.active span:nth-child(3) {
  transform: rotate(-45deg) translate(5px, -5px);
}

/* Card hover lift */
.card, .audience-card, .pricing-card {
  will-change: transform;
}

/* Integration nodes pulse on hover */
.integration-node:hover {
  animation: pulse 1.5s ease-in-out infinite;
}

/* KPI number glow */
.kpi-number {
  transition: color 0.3s ease;
}

/* Step counter bounce */
.step-card::before {
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.step-card:hover::before {
  transform: scale(1.1);
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

/* Smooth gradient reveal for hero */
.hero .reveal {
  opacity: 0;
  animation: fadeInUp 0.8s ease forwards;
}

.hero .reveal:nth-child(2) {
  animation-delay: 0.3s;
}

/* Cookie banner slide in */
.cookie-banner.show {
  animation: slideInUp 0.4s ease;
}

@keyframes slideInUp {
  from {
    opacity: 0;
    transform: translateY(20px);
  }
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* --- Article / Content Pages --- */
.content-page {
  padding-top: calc(72px + var(--s-xl));
  padding-bottom: var(--s-2xl);
}

.article-hero {
  padding: calc(72px + var(--s-2xl)) 0 var(--s-xl);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
}

.article-hero .container {
  max-width: var(--max-w-narrow);
}

.article-hero .article-category {
  display: inline-block;
  padding: 0.375rem 0.875rem;
  background: rgba(37, 99, 235, 0.25);
  color: var(--white);
  font-size: var(--tiny);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border-radius: 100px;
  margin-bottom: var(--s-sm);
}

.article-hero h1 {
  font-size: clamp(1.75rem, 4vw, 2.5rem);
  color: var(--white);
  margin-bottom: var(--s-sm);
  line-height: 1.25;
}

.article-hero .article-meta {
  display: flex;
  flex-wrap: wrap;
  gap: var(--s-md);
  font-size: var(--small);
  color: rgba(255,255,255,0.7);
}

.article-body {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
  padding: var(--s-xl) var(--gutter);
}

.article-body .article-content {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--s-xl);
}

@media (min-width: 768px) {
  .article-body .article-content {
    padding: var(--s-2xl);
  }
}

.article-content h2 {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
  margin: var(--s-xl) 0 var(--s-sm);
  padding-bottom: 0.5rem;
  border-bottom: 2px solid var(--blue);
}

.article-content h2:first-child {
  margin-top: 0;
}

.article-content h3 {
  font-size: 1.25rem;
  font-weight: 600;
  color: var(--navy);
  margin: var(--s-lg) 0 var(--s-sm);
}

.article-content h4 {
  font-size: 1.0625rem;
  font-weight: 600;
  color: var(--navy);
  margin: var(--s-md) 0 var(--s-xs);
}

.article-content p {
  color: var(--slate-dark);
  line-height: 1.8;
  margin-bottom: 1.25rem;
}

.article-content p:first-of-type {
  font-size: 1.125rem;
  color: var(--navy);
}

.article-content ul,
.article-content ol {
  margin: var(--s-sm) 0 var(--s-md) 1.5rem;
  color: var(--slate-dark);
  list-style: revert;
}

.article-content li {
  margin-bottom: 0.5rem;
  line-height: 1.7;
}

.article-content strong {
  color: var(--navy);
  font-weight: 600;
}

.article-content a {
  color: var(--blue);
  text-decoration: underline;
}

.article-content a:hover {
  color: var(--blue-hover);
}

.article-content blockquote {
  margin: var(--s-md) 0;
  padding: var(--s-md) var(--s-lg);
  background: var(--light);
  border-left: 4px solid var(--blue);
  border-radius: 0 var(--radius) var(--radius) 0;
}

.article-content blockquote p {
  margin: 0;
  font-style: italic;
  color: var(--navy);
}

/* Info boxes for articles */
.info-box {
  padding: 1.25rem 1.5rem;
  border-radius: var(--radius);
  margin: var(--s-md) 0;
}

.info-box.tip {
  background: var(--green-light);
  border-left: 4px solid var(--green);
}

.info-box.warning {
  background: #FFFBEB;
  border-left: 4px solid #D97706;
}

.info-box.info {
  background: #EFF6FF;
  border-left: 4px solid var(--blue);
}

.info-box-title {
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.info-box p {
  margin: 0;
  color: var(--slate-dark);
}

/* Comparison grid */
.comparison-grid {
  display: grid;
  gap: var(--s-md);
  margin: var(--s-md) 0;
}

@media (min-width: 600px) {
  .comparison-grid {
    grid-template-columns: 1fr 1fr;
  }
}

.comparison-card {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: var(--s-md);
}

.comparison-card h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--s-sm);
  display: flex;
  align-items: center;
  gap: 0.5rem;
}

.comparison-card ul {
  margin: 0;
  padding-left: 1.25rem;
  list-style: revert;
}

/* Tables in articles */
.table-wrapper {
  overflow-x: auto;
  margin: var(--s-md) 0;
}

.article-content table {
  width: 100%;
  border-collapse: collapse;
}

.article-content th,
.article-content td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.article-content th {
  background: var(--light);
  font-weight: 600;
  color: var(--navy);
}

/* CTA box in articles */
.cta-box {
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  border-radius: var(--radius-xl);
  padding: var(--s-xl);
  margin: var(--s-xl) 0;
  text-align: center;
}

.cta-box h3 {
  color: var(--white);
  font-size: var(--h4);
  margin-bottom: 0.5rem;
}

.cta-box p {
  color: rgba(255,255,255,0.85);
  margin-bottom: var(--s-sm);
}

/* Highlight boxes (wissen articles) */
.highlight-box {
  background: var(--light);
  border-left: 4px solid var(--blue);
  padding: 1.25rem;
  border-radius: 0 var(--radius) var(--radius) 0;
  margin: var(--s-md) 0;
}

.highlight-box h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.highlight-box p {
  font-size: var(--small);
  margin: 0;
}

/* Step cards in articles */
.step-list {
  list-style: none;
  counter-reset: step;
  margin: var(--s-md) 0;
  padding: 0;
}

.step-list li {
  counter-increment: step;
  position: relative;
  padding-left: 3rem;
  margin-bottom: var(--s-md);
}

.step-list li::before {
  content: counter(step);
  position: absolute;
  left: 0;
  top: 0;
  width: 2rem;
  height: 2rem;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: var(--small);
}

/* Tool pages */
.tool-page {
  padding-top: calc(72px + var(--s-xl));
  padding-bottom: var(--s-2xl);
}

.tool-container {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
  padding: 0 var(--gutter);
}

.tool-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--s-xl);
}

@media (min-width: 768px) {
  .tool-card {
    padding: var(--s-2xl);
  }
}

/* Article cards grid (blog/wissen index) */
.article-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--s-lg);
}

@media (max-width: 1024px) {
  .article-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 768px) {
  .article-grid {
    grid-template-columns: 1fr;
  }
}

.article-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--s-lg);
  display: flex;
  flex-direction: column;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
  text-decoration: none;
  color: inherit;
}

.article-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 12px 32px rgba(0,0,0,0.08);
  color: inherit;
}

.article-card .article-category {
  display: inline-block;
  font-size: var(--tiny);
  font-weight: 600;
  color: var(--blue);
  background: rgba(37, 99, 235, 0.08);
  padding: 0.25rem 0.75rem;
  border-radius: 999px;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--s-sm);
  align-self: flex-start;
}

.article-card h3 {
  font-size: var(--h4);
  margin-bottom: var(--s-sm);
  line-height: 1.4;
}

.article-card p {
  color: var(--slate);
  font-size: var(--small);
  line-height: 1.6;
  flex: 1;
  display: -webkit-box;
  -webkit-line-clamp: 2;
  -webkit-box-orient: vertical;
  overflow: hidden;
}

.article-card-footer {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: var(--s-md);
  padding-top: var(--s-md);
  border-top: 1px solid var(--border);
}

.article-card-footer time {
  font-size: var(--tiny);
  color: var(--slate-light);
}

.article-card-footer .read-more {
  font-size: var(--small);
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}

/* Course item cards */
.course-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: var(--s-lg);
}

@media (max-width: 768px) {
  .course-grid {
    grid-template-columns: 1fr;
  }
}

/* Wissen category cards */
.wissen-category {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--s-xl);
}

.wissen-category h2 {
  font-size: var(--h3);
  margin-bottom: var(--s-md);
  display: flex;
  align-items: center;
  gap: var(--s-sm);
}

.wissen-category-icon {
  width: 48px;
  height: 48px;
  background: rgba(37, 99, 235, 0.08);
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.wissen-category ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: var(--s-xs);
}

.wissen-category li a {
  display: flex;
  align-items: center;
  gap: var(--s-xs);
  color: var(--navy);
  text-decoration: none;
  font-size: var(--small);
  padding: var(--s-xs) 0;
  transition: color 0.2s ease;
}

.wissen-category li a:hover {
  color: var(--blue);
}

.wissen-category li a .arrow {
  color: var(--blue);
}

/* Legal pages */
.legal-content {
  max-width: 800px;
  margin: 0 auto;
}

.legal-content h2 {
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--navy);
  margin-top: var(--s-xl);
  margin-bottom: var(--s-sm);
}

.legal-content h3 {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy);
  margin-top: var(--s-lg);
  margin-bottom: var(--s-xs);
}

.legal-content p {
  color: var(--slate-dark);
  line-height: 1.8;
  margin-bottom: var(--s-sm);
}

.legal-content ul,
.legal-content ol {
  margin: var(--s-sm) 0 var(--s-md) 1.5rem;
  list-style: revert;
}

.legal-content li {
  margin-bottom: 0.375rem;
  color: var(--slate-dark);
  line-height: 1.7;
}

/* --- Tools Index Page --- */
.tools-section {
  padding: var(--s-xl) 0;
}

.section-title {
  font-size: 1.5rem;
  font-weight: 700;
  color: var(--navy);
}

.section-badge {
  padding: 0.375rem 0.75rem;
  background: #F59E0B;
  color: var(--white);
  border-radius: 100px;
  font-size: var(--tiny);
  font-weight: 600;
}

.tools-grid {
  display: grid;
  gap: var(--s-md);
}

@media (min-width: 640px) {
  .tools-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .tools-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

a.tool-card {
  background: var(--white);
  border-radius: var(--radius-xl);
  border: 1px solid var(--border);
  padding: var(--s-md);
  transition: all 0.3s ease;
  display: block;
  text-decoration: none;
  color: inherit;
  position: relative;
}

a.tool-card:hover {
  border-color: var(--blue);
  box-shadow: 0 10px 15px -3px rgba(0,0,0,0.1);
  transform: translateY(-4px);
  color: inherit;
}

a.tool-card.premium::after {
  content: "Premium";
  position: absolute;
  top: 1rem;
  right: 1rem;
  background: #F59E0B;
  color: var(--white);
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: var(--xs);
  font-weight: 600;
}

.tool-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s-sm);
}

.tool-icon svg {
  width: 24px;
  height: 24px;
  color: var(--white);
}

.tool-icon.blue { background: linear-gradient(135deg, #3B82F6, #2563EB); }
.tool-icon.green { background: linear-gradient(135deg, #10B981, #059669); }
.tool-icon.purple { background: linear-gradient(135deg, #8B5CF6, #7C3AED); }
.tool-icon.orange { background: linear-gradient(135deg, #F97316, #EA580C); }
.tool-icon.pink { background: linear-gradient(135deg, #EC4899, #DB2777); }
.tool-icon.teal { background: linear-gradient(135deg, #14B8A6, #0D9488); }
.tool-icon.indigo { background: linear-gradient(135deg, #6366F1, #4F46E5); }

.tool-category {
  font-size: var(--xs);
  font-weight: 600;
  color: var(--blue);
  text-transform: uppercase;
  margin-bottom: 0.25rem;
}

.tool-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.tool-description {
  font-size: var(--small);
  color: var(--slate-dark);
  margin-bottom: var(--s-sm);
}

.tool-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--blue);
  font-weight: 600;
  font-size: var(--small);
}

.tool-link svg {
  width: 16px;
  height: 16px;
  transition: transform 0.2s ease;
}

a.tool-card:hover .tool-link svg {
  transform: translateX(4px);
}

/* --- Courses / Akademie Page --- */
.courses-grid {
  display: grid;
  gap: var(--s-md);
}

@media (min-width: 640px) {
  .courses-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .courses-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.course-image {
  height: 8px;
  border-radius: var(--radius-lg) var(--radius-lg) 0 0;
}

.course-image.blue { background: linear-gradient(135deg, #3B82F6, #2563EB); }
.course-image.green { background: linear-gradient(135deg, #10B981, #059669); }
.course-image.purple { background: linear-gradient(135deg, #8B5CF6, #7C3AED); }
.course-image.orange { background: linear-gradient(135deg, #F97316, #EA580C); }
.course-image.pink { background: linear-gradient(135deg, #EC4899, #DB2777); }

.course-body {
  padding: var(--s-md);
}

.course-badges {
  display: flex;
  gap: 0.375rem;
  flex-wrap: wrap;
  margin-bottom: var(--s-sm);
}

.course-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.course-desc {
  font-size: var(--small);
  color: var(--slate-dark);
  margin-bottom: var(--s-sm);
}

.course-meta {
  font-size: var(--tiny);
  color: var(--slate-light);
  margin-bottom: var(--s-sm);
}

.course-link {
  display: inline-flex;
  align-items: center;
  gap: 0.5rem;
  color: var(--blue);
  font-weight: 600;
  font-size: var(--small);
}

/* --- Badges --- */
.badge {
  display: inline-block;
  padding: 0.25rem 0.5rem;
  border-radius: 4px;
  font-size: var(--xs);
  font-weight: 600;
  line-height: 1;
}

.badge-free { background: #D1FAE5; color: #059669; }
.badge-premium { background: #FEF3C7; color: #D97706; }
.badge-new { background: #DBEAFE; color: #2563EB; }
.badge-category { background: var(--light); color: var(--slate-dark); }
.badge-complete { background: #D1FAE5; color: #059669; }
.badge-wip { background: #FEF3C7; color: #D97706; }
.badge-dpma { background: #DBEAFE; color: #2563EB; }
.badge-epa { background: #EDE9FE; color: #7C3AED; }
.badge-pct { background: #FCE7F3; color: #DB2777; }

/* --- Cost / Comparison Tables --- */
.cost-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--s-md) 0;
  font-size: var(--small);
}

.cost-table th,
.cost-table td {
  padding: 0.75rem;
  text-align: left;
  border: 1px solid var(--border);
}

.cost-table th {
  background: var(--light);
  font-weight: 600;
  color: var(--navy);
}

.comparison-table {
  width: 100%;
  border-collapse: collapse;
  margin: var(--s-md) 0;
}

.comparison-table th,
.comparison-table td {
  padding: 0.75rem 1rem;
  text-align: left;
  border-bottom: 1px solid var(--border);
}

.comparison-table th {
  background: var(--light);
  font-weight: 600;
  color: var(--navy);
}

/* --- Glossar --- */
.alphabet {
  display: flex;
  flex-wrap: wrap;
  gap: 0.375rem;
  margin-bottom: var(--s-lg);
}

.alphabet a,
.alphabet button {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2.25rem;
  height: 2.25rem;
  border-radius: var(--radius);
  border: 1px solid var(--border);
  background: var(--white);
  color: var(--navy);
  font-weight: 600;
  font-size: var(--small);
  text-decoration: none;
  cursor: pointer;
  transition: all 0.2s ease;
}

.alphabet a:hover,
.alphabet button:hover,
.alphabet a.active,
.alphabet button.active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.alphabet a.disabled,
.alphabet button.disabled {
  opacity: 0.3;
  pointer-events: none;
}

/* --- Features Grid (generic) --- */
.features-grid {
  display: grid;
  gap: var(--s-md);
}

@media (min-width: 640px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .features-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.feature-icon {
  width: 48px;
  height: 48px;
  border-radius: var(--radius);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: var(--s-sm);
  background: rgba(37, 99, 235, 0.08);
}

.feature-icon svg {
  width: 24px;
  height: 24px;
  color: var(--blue);
}

.feature-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.375rem;
}

.feature-text {
  font-size: var(--small);
  color: var(--slate-dark);
}

/* --- Contact Box --- */
.contact-box {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-xl);
  padding: var(--s-xl);
}

.contact-info {
  display: flex;
  flex-direction: column;
  gap: var(--s-sm);
}

.contact-item {
  display: flex;
  align-items: center;
  gap: var(--s-sm);
  font-size: var(--small);
}

/* --- Filter Tabs --- */
.filter-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 0.5rem;
  margin-bottom: var(--s-lg);
}

.filter-tabs button,
.filter-tabs a {
  padding: 0.5rem 1rem;
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 100px;
  font-family: var(--font);
  font-size: var(--small);
  font-weight: 500;
  color: var(--slate-dark);
  cursor: pointer;
  transition: all 0.2s ease;
  text-decoration: none;
}

.filter-tabs button:hover,
.filter-tabs a:hover,
.filter-tabs button.active,
.filter-tabs a.active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

/* --- Marken Types (wissen-markenrecht) --- */
.marken-types {
  display: grid;
  gap: var(--s-sm);
  margin: var(--s-md) 0;
}

@media (min-width: 640px) {
  .marken-types {
    grid-template-columns: repeat(2, 1fr);
  }
}

.marken-type {
  padding: var(--s-sm);
  background: var(--light);
  border-radius: var(--radius);
  border-left: 4px solid var(--blue);
}

.marken-type h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.5rem;
}

.marken-type p {
  font-size: var(--small);
  margin: 0;
}

/* --- Timeline (wissen articles) --- */
.timeline {
  position: relative;
  padding-left: 2rem;
  margin: var(--s-md) 0;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 0.5rem;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--border);
}

.timeline-item {
  position: relative;
  padding-bottom: var(--s-md);
  padding-left: var(--s-sm);
}

.timeline-item::before {
  content: '';
  position: absolute;
  left: -1.625rem;
  top: 0.375rem;
  width: 0.75rem;
  height: 0.75rem;
  border-radius: 50%;
  background: var(--blue);
  border: 2px solid var(--white);
}

/* --- Factors Grid (premium/monitoring pages) --- */
.factors-grid {
  display: grid;
  gap: var(--s-md);
}

@media (min-width: 640px) {
  .factors-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (min-width: 1024px) {
  .factors-grid {
    grid-template-columns: repeat(3, 1fr);
  }
}

.factor-icon {
  font-size: 2rem;
  margin-bottom: var(--s-xs);
}

.factor-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.375rem;
}

.factor-text {
  font-size: var(--small);
  color: var(--slate-dark);
}

/* --- Chart Section (statistiken) --- */
.chart-section {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--s-lg);
  margin-bottom: var(--s-lg);
}

.chart-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: var(--s-md);
  flex-wrap: wrap;
  gap: var(--s-sm);
}

.chart-title {
  font-size: 1.125rem;
  font-weight: 600;
  color: var(--navy);
}

.chart-tabs {
  display: flex;
  gap: 0.25rem;
}

.chart-tab {
  padding: 0.375rem 0.75rem;
  background: var(--light);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: var(--tiny);
  font-weight: 500;
  cursor: pointer;
  transition: all 0.2s ease;
}

.chart-tab:hover,
.chart-tab.active {
  background: var(--blue);
  color: var(--white);
  border-color: var(--blue);
}

.chart-placeholder {
  background: var(--light);
  border-radius: var(--radius);
  padding: var(--s-2xl);
  text-align: center;
  color: var(--slate-light);
}

/* --- Breakdown (anwaltskosten) --- */
.breakdown-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--s-sm) 0;
  border-bottom: 2px solid var(--navy);
  margin-bottom: var(--s-sm);
}

.breakdown-title {
  font-weight: 600;
  color: var(--navy);
}

.breakdown-body {
  display: flex;
  flex-direction: column;
  gap: 0.375rem;
}

.breakdown-row {
  display: flex;
  justify-content: space-between;
  padding: 0.375rem 0;
  border-bottom: 1px solid var(--border);
}

.breakdown-label {
  color: var(--slate-dark);
  font-size: var(--small);
}

.breakdown-value {
  font-weight: 600;
  color: var(--navy);
  font-size: var(--small);
}

.breakdown-total {
  display: flex;
  justify-content: space-between;
  padding: var(--s-sm) 0;
  border-top: 2px solid var(--navy);
  margin-top: var(--s-xs);
  font-weight: 700;
  color: var(--navy);
}

/* --- Form / Formular-Assistent --- */
.form-badges {
  display: flex;
  gap: 0.375rem;
  flex-wrap: wrap;
  margin-bottom: var(--s-sm);
}

.form-body {
  padding: var(--s-md);
}

.form-desc {
  font-size: var(--small);
  color: var(--slate-dark);
  margin-bottom: var(--s-sm);
}

/* --- Demo Section --- */
.demo-section {
  background: var(--light);
  border-radius: var(--radius-lg);
  padding: var(--s-xl);
  margin: var(--s-lg) 0;
}

/* --- Cost Section --- */
.cost-section {
  margin: var(--s-lg) 0;
}

/* --- Check mark utility --- */
.check {
  color: var(--green);
}

/* --- Disabled state --- */
.disabled {
  opacity: 0.5;
  pointer-events: none;
}

/* --- Tool Page Internals --- */
.tool-header {
  padding: calc(72px + var(--s-xl)) 0 var(--s-lg);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  text-align: center;
  color: var(--white);
}

.tool-header-content {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
}

.tool-header h1 {
  color: var(--white);
  margin-bottom: var(--s-sm);
}

.tool-header p {
  color: rgba(255,255,255,0.8);
  font-size: var(--body-lg);
  max-width: 600px;
  margin: 0 auto;
}

.tool-badge {
  display: inline-block;
  padding: 0.375rem 0.75rem;
  background: rgba(37, 99, 235, 0.25);
  color: var(--white);
  border-radius: 100px;
  font-size: var(--tiny);
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  margin-bottom: var(--s-sm);
}

.tool-grid {
  display: grid;
  gap: var(--s-lg);
  margin-top: var(--s-lg);
}

@media (min-width: 768px) {
  .tool-grid {
    grid-template-columns: 1fr 320px;
  }
}

.tool-main {
  min-width: 0;
}

.tool-card-title {
  font-size: var(--h4);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--s-md);
}

.sidebar-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--s-lg);
}

.sidebar-title {
  font-size: 1rem;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: var(--s-sm);
}

/* --- Forms --- */
.form-group {
  margin-bottom: var(--s-md);
}

.form-label {
  display: block;
  font-size: var(--small);
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 0.375rem;
}

.form-input,
.form-select {
  width: 100%;
  padding: 0.75rem 1rem;
  border: 1px solid var(--border);
  border-radius: var(--radius);
  font-family: var(--font);
  font-size: var(--small);
  color: var(--navy);
  background: var(--white);
  transition: border-color 0.2s ease;
}

.form-input:focus,
.form-select:focus {
  outline: none;
  border-color: var(--blue);
  box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.form-hint {
  font-size: var(--tiny);
  color: var(--slate-light);
  margin-top: 0.25rem;
}

.form-select {
  appearance: none;
  background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='12' viewBox='0 0 12 12'%3E%3Cpath d='M3 5l3 3 3-3' fill='none' stroke='%2364748B' stroke-width='1.5'/%3E%3C/svg%3E");
  background-repeat: no-repeat;
  background-position: right 1rem center;
  padding-right: 2.5rem;
}

textarea.form-input {
  resize: vertical;
  min-height: 100px;
}

/* --- Results Section --- */
.results-section {
  margin: var(--s-lg) 0;
}

.result-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: var(--s-sm);
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  margin-bottom: var(--s-xs);
}

.result-item.success {
  border-color: var(--green);
  background: #F0FDF4;
}

.result-label {
  font-size: var(--small);
  color: var(--slate-dark);
}

.result-value {
  font-weight: 600;
  color: var(--navy);
}

.result-days {
  font-size: var(--tiny);
  color: var(--slate-light);
  margin-left: var(--s-xs);
}

.result-detail {
  font-size: var(--tiny);
  color: var(--slate);
  margin-top: 0.25rem;
}

/* --- Export Buttons --- */
.export-buttons {
  display: flex;
  gap: var(--s-xs);
  flex-wrap: wrap;
  margin-top: var(--s-sm);
}

/* --- Deadline List --- */
.deadline-list {
  display: flex;
  flex-direction: column;
  gap: var(--s-xs);
}

/* --- Kurs (Course) Page Internals --- */
.kurs-header {
  padding: calc(72px + var(--s-xl)) 0 var(--s-lg);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  color: var(--white);
}

.kurs-content {
  max-width: var(--max-w-narrow);
  margin: 0 auto;
  padding: var(--s-xl) var(--gutter);
}

.lesson-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: var(--s-lg);
  margin-bottom: var(--s-md);
}

.lesson-number {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 2rem;
  height: 2rem;
  background: var(--blue);
  color: var(--white);
  border-radius: 50%;
  font-weight: 700;
  font-size: var(--small);
  margin-right: var(--s-xs);
}

/* --- Hero (generic, used in tools/akademie pages) --- */
section.hero,
div.hero {
  padding: calc(72px + var(--s-xl)) var(--gutter) var(--s-lg);
  background: linear-gradient(135deg, var(--navy) 0%, var(--navy-light) 100%);
  text-align: center;
  color: var(--white);
}

section.hero h1,
div.hero h1 {
  font-size: clamp(2rem, 5vw, 3rem);
  color: var(--white);
  margin-bottom: var(--s-sm);
}

section.hero p,
div.hero p {
  font-size: 1.125rem;
  color: rgba(255,255,255,0.8);
  max-width: 600px;
  margin: 0 auto;
}

/* Prefers reduced motion */
@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }

  .reveal {
    opacity: 1;
    transform: none;
  }

}
