/* ════════════════════════════════════════════════════════════════════
   OGS-FLOW · Editorial Care-Tech
   Pastel paper aesthetic · DM Serif Display italics · Manrope body
   ════════════════════════════════════════════════════════════════════ */

:root {
  /* ── PASTEL CHAPTER PALETTE ── */
  --mint-cyan: #BFFCF7;
  --mint:      #C0FCE3;
  --sky:       #C0EEFC;
  --leaf:      #C0FCCE;
  --lavender:  #C0DBFC;

  /* Saturated companions */
  --mint-cyan-ink: #2C7A72;
  --mint-ink:      #1E7A52;
  --sky-ink:       #1E5F8A;
  --leaf-ink:      #2D7A3E;
  --lavender-ink: #3A4A8C;

  /* ── INK & PAPER ── */
  --ink:       #0E1A2B;
  --ink-2:     #1F2D40;
  --mid:       #58677B;
  --mid-2:     #8694A6;
  --line:      #E6EBF1;
  --line-2:    #D5DCE5;
  --paper:     #FBFCFE;
  --paper-warm:#F7F4EC;
  --white:     #FFFFFF;

  /* ── ACCENT (sparing) ── */
  --indigo:        #1B1D52;
  --indigo-bright: #4F46E5;
  --rust:          #B5562C;

  /* ── RADII ── */
  --r-xs: 6px;
  --r-sm: 12px;
  --r-md: 18px;
  --r-lg: 28px;
  --r-xl: 42px;

  /* ── TYPE ── */
  --serif: 'DM Serif Display', 'Times New Roman', serif;
  --sans:  'Manrope', system-ui, -apple-system, sans-serif;
  --mono:  'JetBrains Mono', ui-monospace, monospace;

  /* ── SHADOWS ── */
  --sh-1:  0 1px 0 rgba(14,26,43,0.04), 0 1px 2px rgba(14,26,43,0.06);
  --sh-2:  0 8px 24px -8px rgba(14,26,43,0.12), 0 2px 6px rgba(14,26,43,0.05);
  --sh-3:  0 24px 60px -16px rgba(14,26,43,0.18), 0 8px 20px -6px rgba(14,26,43,0.08);
  --sh-sticker: 0 14px 30px -10px rgba(14,26,43,0.22), 0 2px 4px rgba(14,26,43,0.06);

  /* ── GRAIN ── */
  --grain: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='220' height='220'><filter id='n'><feTurbulence type='fractalNoise' baseFrequency='0.85' numOctaves='2' stitchTiles='stitch'/><feColorMatrix values='0 0 0 0 0   0 0 0 0 0   0 0 0 0 0   0 0 0 0.42 0'/></filter><rect width='100%' height='100%' filter='url(%23n)'/></svg>");
}

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

html { scroll-behavior: smooth; }

body {
  font-family: var(--sans);
  font-weight: 400;
  background: var(--paper);
  color: var(--ink);
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
  font-feature-settings: 'ss01', 'cv11';
}

::selection { background: var(--lavender); color: var(--ink); }

a { color: inherit; }

/* Subtle paper grain on entire site */
body::before {
  content: '';
  position: fixed; inset: 0;
  background-image: var(--grain);
  background-size: 220px 220px;
  opacity: 0.22;
  pointer-events: none;
  mix-blend-mode: multiply;
  z-index: 1000;
}

/* ════════════════════════════════════════════════════════════════════
   TYPOGRAPHY
   ════════════════════════════════════════════════════════════════════ */

h1 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2.8rem, 5.6vw, 4.6rem);
  line-height: 0.98;
  letter-spacing: -0.018em;
  color: var(--ink);
  outline: none;
}
h1:focus, h1:focus-visible { outline: none; }

h2 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: clamp(2rem, 4vw, 3.1rem);
  line-height: 1.03;
  letter-spacing: -0.015em;
  color: var(--ink);
}

/* Highlighted word: italic serif with hand-drawn pastel underline */
h1 em, h2 em {
  font-style: italic;
  font-family: var(--serif);
  color: var(--ink);
  display: inline-block;
  position: relative;
  padding: 0 0.04em;
  isolation: isolate;
}
h1 em::before, h2 em::before {
  content: '';
  position: absolute;
  left: -3%;
  right: -3%;
  bottom: 0.04em;
  height: 0.36em;
  background: radial-gradient(ellipse at 50% 50%, var(--em-underline, var(--mint-cyan)) 60%, transparent 78%);
  z-index: -1;
  transform: skewX(-4deg);
  pointer-events: none;
}

h3, h4, h5 { font-family: var(--sans); }

.section-lead {
  font-size: clamp(1rem, 1.15vw, 1.13rem);
  line-height: 1.65;
  color: var(--mid);
  max-width: 56ch;
  font-weight: 400;
}

/* ── Legal / prose pages (Impressum, Datenschutz) ── */
.legal {
  max-width: 820px;
  margin: 0 auto;
}
.legal h2 {
  font-size: clamp(1.25rem, 2.2vw, 1.6rem);
  margin: 42px 0 14px;
}
.legal h3 {
  font-family: var(--sans);
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--ink);
  margin: 24px 0 6px;
}
.legal p,
.legal li {
  font-size: 1rem;
  line-height: 1.72;
  color: var(--mid);
}
.legal p { margin-bottom: 12px; }
.legal ul { margin: 0 0 14px 20px; }
.legal li { margin-bottom: 6px; }
.legal address {
  font-style: normal;
  color: var(--ink);
  line-height: 1.75;
}
.legal a {
  color: var(--sky-ink);
  text-decoration: underline;
  text-underline-offset: 3px;
}
.legal strong { color: var(--ink); }
.legal-back {
  margin-top: 44px;
  padding-top: 22px;
  border-top: 1px solid var(--line);
}

/* ════════════════════════════════════════════════════════════════════
   SECTION FRAME · NUMBERED TAG
   ════════════════════════════════════════════════════════════════════ */

section {
  padding: clamp(70px, 9vw, 130px) clamp(20px, 6vw, 96px);
  position: relative;
}

.section-tag {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-2);
  background: var(--white);
  padding: 7px 14px 7px 10px;
  border: 1px solid var(--line);
  border-radius: 50px;
  margin-bottom: 24px;
  box-shadow: var(--sh-1);
}
.section-tag::before {
  content: '';
  width: 7px; height: 7px;
  border-radius: 50%;
  background: var(--indigo);
  flex-shrink: 0;
}

/* ════════════════════════════════════════════════════════════════════
   BUTTONS
   ════════════════════════════════════════════════════════════════════ */

.btn-primary,
.btn-outline {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-family: var(--sans);
  font-size: 0.95rem;
  font-weight: 600;
  padding: 15px 24px 15px 26px;
  border-radius: 50px;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform .22s cubic-bezier(.4,0,.2,1),
              box-shadow .22s,
              background .22s,
              color .22s;
  letter-spacing: -0.005em;
}

.btn-primary {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 8px 22px -6px rgba(14,26,43,0.45),
              inset 0 1px 0 rgba(255,255,255,0.08);
  position: relative;
}
.btn-primary::after {
  content: '';
  position: absolute; inset: 0;
  border-radius: inherit;
  background: linear-gradient(135deg, transparent 40%, rgba(192,219,252,0.18));
  pointer-events: none;
}
.btn-primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 14px 32px -8px rgba(14,26,43,0.55),
              inset 0 1px 0 rgba(255,255,255,0.12);
}
.btn-primary span:last-child {
  transition: transform .22s;
}
.btn-primary:hover span:last-child { transform: translateX(3px); }

.btn-outline {
  background: var(--white);
  color: var(--ink);
  border: 1.5px solid var(--ink);
  padding: 13.5px 22px;
}
.btn-outline:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-2px);
}

/* ════════════════════════════════════════════════════════════════════
   NAV
   ════════════════════════════════════════════════════════════════════ */

nav {
  position: fixed; top: 0; left: 0; right: 0;
  z-index: 100;
  display: flex; align-items: center; justify-content: space-between;
  padding: 14px clamp(20px, 6vw, 96px);
  background: rgba(251,252,254,0.78);
  backdrop-filter: blur(16px) saturate(140%);
  -webkit-backdrop-filter: blur(16px) saturate(140%);
  border-bottom: 1px solid rgba(229,235,241,0.6);
  transition: box-shadow .25s, background .25s;
}

.nav-logo {
  display: inline-flex; align-items: center; gap: 10px;
  font-family: var(--serif);
  font-size: 1.4rem;
  color: var(--ink);
  text-decoration: none;
  letter-spacing: -0.01em;
}
.nav-logo .logo-mark {
  width: 44px;
  height: 44px;
  display: block;
  object-fit: contain;
  flex-shrink: 0;
  transition: transform .25s cubic-bezier(.4,0,.2,1);
}
.nav-logo:hover .logo-mark {
  transform: rotate(-4deg) scale(1.04);
}
.nav-logo .logo-word { line-height: 1; }

.nav-links { display: flex; gap: 8px; align-items: center; }
.nav-links a {
  text-decoration: none;
  color: var(--ink-2);
  font-size: 0.875rem;
  font-weight: 500;
  letter-spacing: -0.005em;
  padding: 9px 14px;
  border-radius: 50px;
  transition: background .2s, color .2s;
}
.nav-links a:hover { background: var(--paper-warm); color: var(--ink); }

.nav-cta {
  background: var(--ink) !important;
  color: var(--white) !important;
  padding: 10px 20px !important;
  margin-left: 6px;
  box-shadow: 0 6px 16px -6px rgba(14,26,43,0.45);
}
.nav-cta:hover {
  background: var(--indigo) !important;
  color: var(--white) !important;
  transform: translateY(-1px);
}

/* ════════════════════════════════════════════════════════════════════
   HERO
   ════════════════════════════════════════════════════════════════════ */

.hero {
  min-height: 100vh;
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  align-items: center;
  gap: clamp(40px, 5vw, 80px);
  padding: 130px clamp(20px, 6vw, 96px) 90px;
  position: relative;
  overflow: hidden;
  background:
    radial-gradient(ellipse 70% 60% at 8% 18%, var(--mint-cyan) 0%, transparent 55%),
    radial-gradient(ellipse 60% 50% at 92% 75%, var(--lavender) 0%, transparent 50%),
    radial-gradient(ellipse 45% 38% at 65% 12%, var(--leaf) 0%, transparent 55%),
    var(--paper);
}

.hero::before {
  /* Dotted blueprint grid */
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(14,26,43,0.07) 1px, transparent 1.2px);
  background-size: 26px 26px;
  background-position: 0 0;
  mask-image: radial-gradient(ellipse 70% 55% at 50% 45%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 55% at 50% 45%, black 30%, transparent 80%);
  pointer-events: none;
  z-index: 0;
}

.hero::after {
  /* Floating "stamp" — top right ornament */
  content: '';
  position: absolute;
  top: 130px;
  right: 5%;
  width: 110px; height: 110px;
  background: var(--mint-cyan);
  border: 1.5px dashed rgba(14,26,43,0.25);
  border-radius: 50%;
  background-image:
    radial-gradient(circle, rgba(14,26,43,0.15) 1px, transparent 1.2px);
  background-size: 8px 8px;
  background-blend-mode: multiply;
  pointer-events: none;
  z-index: 0;
  animation: spin 60s linear infinite;
  opacity: 0.4;
  display: none; /* shown via .hero-stamp on layout md+ via media query if wanted */
}

.hero-text { position: relative; z-index: 2; }

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  background: var(--white);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  padding: 8px 16px 8px 12px;
  border-radius: 50px;
  margin-bottom: 30px;
  border: 1px solid var(--line);
  box-shadow: var(--sh-sticker);
  transform: rotate(-1.5deg);
  position: relative;
}
.hero-badge::before {
  content: '';
  width: 8px; height: 8px;
  background: var(--mint-cyan);
  border: 1.5px solid var(--mint-cyan-ink);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-dot 2.4s ease-in-out infinite;
}

@keyframes pulse-dot {
  0%, 100% { box-shadow: 0 0 0 0 rgba(107,206,196,0.6); }
  50%      { box-shadow: 0 0 0 6px rgba(107,206,196,0); }
}

.hero h1 {
  margin-bottom: 26px;
  font-size: clamp(2.6rem, 5.4vw, 4.4rem);
}

/* Per-section underline color — picks a pastel that contrasts the section background */
.hero { --em-underline: var(--mint-cyan); }
.page-hero { --em-underline: var(--lavender); }
.features { --em-underline: var(--mint-cyan); }
.module-index { --em-underline: var(--leaf); }
.how { --em-underline: var(--lavender); }            /* sky bg → lavender pops */
.audience { --em-underline: var(--mint-cyan); }
.compliance { --em-underline: var(--mint-cyan); }    /* lavender bg → mint-cyan pops */
.scenarios { --em-underline: var(--lavender); }      /* mint bg → lavender pops */
.faq { --em-underline: var(--mint-cyan); }
.cta-section { --em-underline: var(--lavender); }

.hero-sub {
  font-size: 1.125rem;
  line-height: 1.6;
  color: var(--mid);
  max-width: 520px;
  margin-bottom: 40px;
}

.hero-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

.hero-stats {
  display: flex;
  gap: clamp(20px, 3vw, 44px);
  margin-top: 56px;
  padding-top: 32px;
  border-top: 1px solid var(--line-2);
  position: relative;
}
.hero-stats::before {
  content: '';
  position: absolute;
  top: -1px; left: 0;
  width: 80px; height: 2px;
  background: var(--ink);
}

.stat { display: flex; flex-direction: column; }
.stat-num {
  font-family: var(--serif);
  font-size: clamp(1.5rem, 2.1vw, 1.95rem);
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.01em;
}
.stat-label {
  font-family: var(--sans);
  font-size: 0.78rem;
  color: var(--mid);
  font-weight: 500;
  letter-spacing: 0;
  margin-top: 8px;
}

/* ── HERO MOCKUP — soft pastel paper edition ── */
.hero-visual { position: relative; z-index: 2; }

.mockup-shell {
  background: var(--white);
  border-radius: 20px;
  overflow: hidden;
  box-shadow:
    0 50px 100px -30px rgba(14,26,43,0.28),
    0 16px 40px -12px rgba(14,26,43,0.14),
    0 0 0 1px var(--line);
  transform: perspective(1600px) rotateY(-6deg) rotateX(3deg) rotate(0.5deg);
  transition: transform .6s cubic-bezier(.4,0,.2,1);
}
.mockup-shell:hover {
  transform: perspective(1600px) rotateY(-2deg) rotateX(1deg) rotate(0deg) translateY(-4px);
}

.mockup-bar {
  background: var(--paper-warm);
  padding: 12px 16px;
  display: flex; align-items: center; gap: 7px;
  border-bottom: 1px solid var(--line);
}
.dot { width: 11px; height: 11px; border-radius: 50%; flex-shrink: 0; }
.dot-r { background: #FF6B6B; box-shadow: inset 0 0 0 1px rgba(0,0,0,0.06); }
.dot-y { background: #FFCB45; box-shadow: inset 0 0 0 1px rgba(0,0,0,0.06); }
.dot-g { background: #6BCE7E; box-shadow: inset 0 0 0 1px rgba(0,0,0,0.06); }
.mockup-title {
  margin-left: auto; margin-right: auto;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--mid-2);
  font-weight: 500;
  letter-spacing: 0.02em;
}

.mockup-body {
  display: grid;
  grid-template-columns: 178px 1fr;
  min-height: 380px;
  background: var(--white);
}

/* Real product screenshot inside the browser frame */
.mockup-screenshot {
  width: 100%;
  display: block;
  background: var(--paper-warm);
}

/* Real screenshot inside a feature spotlight card */
.sp-card.sp-shot { padding: 0; }
.sp-card.sp-shot img {
  width: 100%;
  height: 100%;
  min-height: 240px;
  object-fit: cover;
  object-position: top left;
  display: block;
}

.mock-sidebar {
  background: linear-gradient(180deg, #F5FBF8 0%, #FFFFFF 100%);
  padding: 18px 12px;
  border-right: 1px solid var(--line);
}
.mock-nav-item {
  padding: 9px 12px;
  font-size: 0.78rem;
  color: var(--mid);
  font-weight: 500;
  display: flex; align-items: center; gap: 9px;
  border-radius: 9px;
  margin-bottom: 2px;
  cursor: default;
}
.mock-nav-item.active {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 6px 14px -6px rgba(14,26,43,0.4);
}

.mock-main { padding: 22px 22px 20px; background: var(--white); }
.mock-header {
  font-family: var(--serif);
  color: var(--ink);
  font-size: 1.18rem;
  margin-bottom: 18px;
  letter-spacing: -0.01em;
}
.mock-cards {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
  margin-bottom: 16px;
}
.mock-card {
  border-radius: 14px;
  padding: 14px 16px;
  border: 1px solid var(--line);
  background: var(--white);
  position: relative;
  overflow: hidden;
}
.mock-card:nth-child(1) {
  background: linear-gradient(135deg, var(--mint-cyan) 0%, #E9FBF9 100%);
  border-color: transparent;
}
.mock-card:nth-child(2) {
  background: linear-gradient(135deg, var(--lavender) 0%, #ECF1FC 100%);
  border-color: transparent;
}
.mock-card-label {
  font-family: var(--mono);
  font-size: 0.62rem;
  color: var(--ink-2);
  letter-spacing: 0.06em;
  font-weight: 500;
  text-transform: uppercase;
}
.mock-card-val {
  font-family: var(--serif);
  font-size: 1.7rem;
  color: var(--ink);
  margin-top: 4px;
  line-height: 1;
  letter-spacing: -0.02em;
}
.mock-card-val span { font-style: italic; color: var(--indigo); }
.mock-card-sub {
  font-size: 0.7rem;
  color: var(--ink-2);
  margin-top: 6px;
  opacity: 0.7;
}

.mock-table-row {
  display: flex; gap: 10px; align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 11px;
  padding: 9px 11px;
  margin-bottom: 7px;
  transition: transform .2s;
}
.mock-table-row:hover { transform: translateX(2px); }

.mock-avatar {
  width: 26px; height: 26px;
  border-radius: 50%;
  flex-shrink: 0;
  font-family: var(--sans);
  font-size: 0.62rem;
  color: var(--ink);
  font-weight: 700;
  display: grid; place-items: center;
}
.mock-table .mock-table-row:nth-child(1) .mock-avatar { background: var(--mint); }
.mock-table .mock-table-row:nth-child(2) .mock-avatar { background: var(--sky); }
.mock-table .mock-table-row:nth-child(3) .mock-avatar { background: var(--leaf); }

.mock-name {
  font-size: 0.78rem;
  color: var(--ink);
  flex: 1;
  font-weight: 500;
}
.mock-badge {
  font-family: var(--mono);
  font-size: 0.6rem;
  font-weight: 500;
  padding: 3px 9px;
  border-radius: 50px;
  background: var(--mint);
  color: var(--mint-ink);
  letter-spacing: 0.04em;
}
.mock-badge.orange {
  background: var(--lavender);
  color: var(--lavender-ink);
}

/* ── HERO STICKER LABELS ── */
.float-label {
  position: absolute;
  background: var(--white);
  border-radius: 14px;
  padding: 12px 16px;
  box-shadow: var(--sh-sticker);
  display: flex; align-items: center; gap: 11px;
  font-size: 0.84rem;
  font-weight: 600;
  border: 1px solid var(--line);
  z-index: 3;
}
.float-label-icon {
  font-size: 1.35rem;
  width: 34px; height: 34px;
  display: grid; place-items: center;
  background: var(--mint);
  border-radius: 10px;
}
.float-label-text { color: var(--ink); font-weight: 600; }
.float-label-sub { color: var(--mid); font-weight: 400; font-size: 0.74rem; margin-top: 1px; }

.fl-1 {
  bottom: -28px;
  left: -36px;
  transform: rotate(-3deg);
  animation: fl1 6s ease-in-out infinite;
}
.fl-1 .float-label-icon { background: var(--leaf); }

.fl-2 {
  top: 24px;
  right: -28px;
  transform: rotate(3deg);
  animation: fl2 5.2s ease-in-out infinite;
}
.fl-2 .float-label-icon { background: var(--sky); }

@keyframes fl1 {
  0%, 100% { transform: rotate(-3deg) translateY(0); }
  50%      { transform: rotate(-2deg) translateY(-9px); }
}
@keyframes fl2 {
  0%, 100% { transform: rotate(3deg) translateY(0); }
  50%      { transform: rotate(4deg) translateY(7px); }
}

@keyframes spin { to { transform: rotate(360deg); } }

/* ════════════════════════════════════════════════════════════════════
   LOGOS STRIP
   ════════════════════════════════════════════════════════════════════ */

.logos-strip {
  padding: 36px clamp(20px, 6vw, 96px);
  background: var(--paper-warm);
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  display: flex;
  align-items: center;
  gap: clamp(20px, 3vw, 40px);
  position: relative;
  overflow: hidden;
}
.logos-strip::before,
.logos-strip::after {
  content: '';
  position: absolute; top: 0; bottom: 0;
  width: 60px;
  pointer-events: none;
  z-index: 1;
}
.logos-strip::before { left: 0; background: linear-gradient(90deg, var(--paper-warm), transparent); }
.logos-strip::after  { right: 0; background: linear-gradient(-90deg, var(--paper-warm), transparent); }

.logos-label {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  color: var(--mid);
  text-transform: uppercase;
  white-space: nowrap;
  flex-shrink: 0;
}
.logos-list {
  display: flex;
  gap: clamp(14px, 1.6vw, 22px);
  align-items: center;
  flex-wrap: wrap;
  flex: 1;
}
.logo-pill {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50px;
  padding: 9px 18px;
  font-weight: 600;
  font-size: 0.85rem;
  color: var(--ink-2);
  letter-spacing: -0.005em;
  transition: transform .2s, box-shadow .2s, border-color .2s;
}
.logo-pill:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-2);
  border-color: var(--line-2);
}
.logos-list .logo-pill:nth-child(1) { background: var(--mint-cyan); border-color: transparent; color: var(--mint-cyan-ink); }
.logos-list .logo-pill:nth-child(3) { background: var(--leaf); border-color: transparent; color: var(--leaf-ink); }
.logos-list .logo-pill:nth-child(5) { background: var(--lavender); border-color: transparent; color: var(--lavender-ink); }

/* ════════════════════════════════════════════════════════════════════
   FEATURES (teaser)
   ════════════════════════════════════════════════════════════════════ */

.features {
  background: var(--paper);
  position: relative;
}
.features-intro {
  text-align: center;
  margin-bottom: 64px;
  max-width: 720px;
  margin-left: auto;
  margin-right: auto;
}
.features-intro .section-tag { margin-left: auto; margin-right: auto; }
.features-intro .section-lead { margin: 14px auto 0; }

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1280px;
  margin: 0 auto;
}
.feat-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 30px 32px;
  transition: transform .3s cubic-bezier(.4,0,.2,1),
              box-shadow .3s,
              border-color .3s;
  position: relative;
  overflow: hidden;
}
.feat-card::before {
  /* Number watermark, big serif */
  counter-increment: feat;
  content: counter(feat, decimal-leading-zero);
  position: absolute;
  bottom: -22px;
  right: 18px;
  font-family: var(--serif);
  font-size: 8rem;
  color: var(--ink);
  opacity: 0.04;
  line-height: 1;
  pointer-events: none;
}
.features-grid { counter-reset: feat; }

.feat-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-3);
  border-color: transparent;
}

.feat-card:nth-child(1) .feat-icon { background: var(--mint-cyan); }
.feat-card:nth-child(2) .feat-icon { background: var(--leaf); }
.feat-card:nth-child(3) .feat-icon { background: var(--lavender); }

.feat-icon {
  width: 58px; height: 58px;
  border-radius: 16px;
  display: grid; place-items: center;
  font-size: 1.55rem;
  margin-bottom: 22px;
  position: relative;
  z-index: 1;
  box-shadow: inset 0 -3px 0 rgba(14,26,43,0.05);
}
.feat-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.012em;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}
.feat-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--mid);
  position: relative;
  z-index: 1;
}

.features-cta {
  text-align: center;
  margin-top: 56px;
}

/* ════════════════════════════════════════════════════════════════════
   PAGE HERO (subpage)
   ════════════════════════════════════════════════════════════════════ */

.page-hero {
  padding: 160px clamp(20px, 6vw, 96px) 90px;
  background:
    radial-gradient(ellipse 60% 50% at 15% 30%, var(--leaf) 0%, transparent 50%),
    radial-gradient(ellipse 50% 40% at 88% 70%, var(--sky) 0%, transparent 50%),
    var(--paper);
  text-align: center;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(14,26,43,0.06) 1px, transparent 1.2px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 70% 60% at 50% 50%, black 20%, transparent 75%);
  pointer-events: none;
}
.page-hero .section-tag {
  margin: 0 auto 18px;
}
.page-hero h1 {
  margin: 0 auto 22px;
  max-width: 880px;
  position: relative;
  z-index: 1;
}
.page-hero .section-lead {
  margin: 0 auto;
  position: relative;
  z-index: 1;
  font-size: 1.15rem;
}

/* ════════════════════════════════════════════════════════════════════
   FEATURE DETAIL LIST (subpage)
   ════════════════════════════════════════════════════════════════════ */

.features-detail {
  padding: 90px clamp(20px, 6vw, 96px);
  background: var(--paper);
}
.feature-list {
  display: flex;
  flex-direction: column;
  gap: 22px;
  max-width: 1080px;
  margin: 0 auto;
  counter-reset: fd;
}
.feature-detail {
  display: grid;
  grid-template-columns: 84px minmax(0, 1fr) 320px;
  gap: 36px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 40px 40px 40px 44px;
  scroll-margin-top: 100px;
  transition: transform .3s cubic-bezier(.4,0,.2,1),
              box-shadow .3s,
              border-color .3s;
  position: relative;
  overflow: hidden;
  counter-increment: fd;
  align-items: stretch;
}
.feature-detail > .feat-icon,
.feature-detail > .feature-body,
.feature-detail > .feat-spotlight { position: relative; z-index: 1; }
.feature-detail .feature-body { padding-top: 4px; }

.feature-detail:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-3);
  border-color: transparent;
}

/* Pastel rotation */
.feature-detail:nth-child(1) .feat-icon { background: var(--mint-cyan); }
.feature-detail:nth-child(2) .feat-icon { background: var(--sky); }
.feature-detail:nth-child(3) .feat-icon { background: var(--mint); }
.feature-detail:nth-child(4) .feat-icon { background: var(--lavender); }
.feature-detail:nth-child(5) .feat-icon { background: var(--leaf); }
.feature-detail:nth-child(6) .feat-icon { background: var(--mint-cyan); }

.feature-detail .feat-icon {
  width: 80px; height: 80px;
  font-size: 2.1rem;
  margin-bottom: 0;
  border-radius: 20px;
}
.feature-detail h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.7rem;
  color: var(--ink);
  margin-bottom: 14px;
  letter-spacing: -0.012em;
  line-height: 1.15;
}
.feature-subtitle {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: 8px;
}
.feature-detail p {
  font-size: 1rem;
  line-height: 1.7;
  color: var(--mid);
  margin-bottom: 24px;
  max-width: 64ch;
}
.feature-bullets {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 11px 32px;
}
.feature-bullets li {
  font-size: 0.93rem;
  color: var(--ink-2);
  padding-left: 28px;
  position: relative;
  line-height: 1.5;
  font-weight: 500;
}
.feature-bullets li::before {
  content: '';
  position: absolute; left: 0; top: 0.34em;
  width: 16px; height: 16px;
  background: var(--mint);
  border-radius: 50%;
  background-image:
    linear-gradient(45deg, transparent 38%, var(--ink) 40%, var(--ink) 50%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, var(--ink) 50%, var(--ink) 62%, transparent 64%);
  background-size: 50% 50%;
  background-position: 4px 6px, 2px 4px;
  background-repeat: no-repeat;
}

.feature-detail.highlight {
  background: var(--ink);
  border-color: var(--ink);
  color: var(--white);
}
.feature-detail.highlight::before {
  color: var(--mint-cyan);
  opacity: 0.08;
}
.feature-detail.highlight h3 { color: var(--white); }
.feature-detail.highlight .feature-subtitle { color: var(--mint-cyan); }
.feature-detail.highlight p { color: rgba(255,255,255,0.7); }
.feature-detail.highlight .feat-icon { background: var(--mint-cyan); }
.feature-detail.highlight .feature-bullets li { color: rgba(255,255,255,0.85); }
.feature-detail.highlight .feature-bullets li::before {
  background: var(--mint-cyan);
}

/* ── FEATURE SPOTLIGHTS (right column of each feature card) ── */
.feat-spotlight {
  align-self: stretch;
  display: flex;
  flex-direction: column;
  min-height: 240px;
}
.sp-card {
  flex: 1;
  border-radius: 18px;
  padding: 18px;
  position: relative;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.feature-detail[data-sp] .sp-card,
.feature-detail .feat-spotlight .sp-card { box-shadow: inset 0 0 0 1px rgba(14,26,43,0.06); }

/* App-look: white card with a thin pastel top accent per feature */
.feature-detail .sp-card { background: var(--white); }
.feature-detail:nth-child(1) .sp-card { border-top: 3px solid var(--mint-cyan); }
.feature-detail:nth-child(2) .sp-card { border-top: 3px solid var(--sky); }
.feature-detail:nth-child(3) .sp-card { border-top: 3px solid var(--mint); }
.feature-detail:nth-child(4) .sp-card { border-top: 3px solid var(--indigo); }
.feature-detail:nth-child(5) .sp-card { border-top: 3px solid var(--leaf); }
.feature-detail:nth-child(6) .sp-card { border-top: 3px solid var(--lavender); }

/* ── Profile spotlight (Kinderverwaltung) ── */
.sp-profile-head {
  display: flex; gap: 12px; align-items: center;
  padding-bottom: 12px;
  border-bottom: 1px dashed rgba(14,26,43,0.18);
}
.sp-avatar {
  width: 40px; height: 40px;
  border-radius: 12px;
  background: var(--paper-warm);
  border: 1px solid var(--line);
  display: grid; place-items: center;
  font-weight: 700; font-size: 0.78rem;
  color: var(--ink);
  flex-shrink: 0;
}
.sp-name {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--ink);
  line-height: 1.1;
  letter-spacing: -0.01em;
}
.sp-meta {
  font-family: var(--mono);
  font-size: 0.66rem;
  color: var(--ink-2);
  letter-spacing: 0.04em;
  margin-top: 2px;
  opacity: 0.75;
}
.sp-profile-rows {
  display: flex; flex-direction: column;
  gap: 8px;
  flex: 1;
}
.sp-profile-row {
  display: flex; justify-content: space-between;
  font-size: 0.78rem;
  color: var(--ink-2);
}
.sp-profile-row span:first-child {
  font-family: var(--mono);
  font-size: 0.66rem;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  opacity: 0.65;
  align-self: center;
}
.sp-profile-row span:last-child {
  font-weight: 600;
  color: var(--ink);
}
.sp-tags { display: flex; gap: 6px; flex-wrap: wrap; }
.sp-tag {
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: 50px;
  padding: 4px 10px;
  font-family: var(--mono);
  font-size: 0.62rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

/* ── Attendance spotlight ── */
.sp-att-head {
  display: flex; justify-content: space-between; align-items: center;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(14,26,43,0.18);
  margin-bottom: 4px;
}
.sp-att-head > span:first-child {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-2);
  opacity: 0.75;
}
.sp-att-count {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.1rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.sp-att-row {
  display: flex; align-items: center; gap: 10px;
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 8px 12px;
  font-size: 0.84rem;
}
.sp-att-row-out { opacity: 0.55; }
.sp-dot {
  width: 9px; height: 9px;
  border-radius: 50%;
  flex-shrink: 0;
  position: relative;
}
.sp-dot-ok { background: #4FB87A; box-shadow: 0 0 0 3px rgba(79,184,122,0.18); }
.sp-dot-out { background: #C97A4F; box-shadow: 0 0 0 3px rgba(201,122,79,0.18); }
.sp-att-name {
  flex: 1;
  color: var(--ink);
  font-weight: 500;
}
.sp-att-time {
  font-family: var(--mono);
  font-size: 0.7rem;
  color: var(--ink-2);
  font-weight: 500;
}

/* ── Chat spotlight ── */
.sp-chat { gap: 8px; justify-content: flex-end; }
.sp-chat-day {
  text-align: center;
  font-family: var(--mono);
  font-size: 0.64rem;
  letter-spacing: 0.08em;
  color: var(--ink-2);
  text-transform: uppercase;
  opacity: 0.65;
  padding: 4px 0 6px;
}
.sp-msg {
  max-width: 90%;
  padding: 10px 13px 8px;
  border-radius: 14px;
  font-size: 0.82rem;
  line-height: 1.4;
}
.sp-msg-them {
  align-self: flex-start;
  background: var(--paper-warm);
  border: 1px solid var(--line);
  border-bottom-left-radius: 4px;
  color: var(--ink);
}
.sp-msg-us {
  align-self: flex-end;
  background: var(--ink);
  color: var(--white);
  border-bottom-right-radius: 4px;
}
.sp-msg-time {
  font-family: var(--mono);
  font-size: 0.6rem;
  letter-spacing: 0.04em;
  opacity: 0.55;
  margin-top: 3px;
}

/* ── Stamp spotlight (DSGVO, on dark) ── */
.sp-stamp {
  align-items: center; justify-content: center;
  padding: 8px;
}
.sp-stamp-ring {
  position: relative;
  width: 200px; height: 200px;
}
.sp-stamp-inner {
  position: absolute; inset: 22px;
  border-radius: 50%;
  border: 2px solid var(--indigo);
  display: flex; flex-direction: column;
  align-items: center; justify-content: center;
  background: var(--paper-warm);
}
.sp-stamp-check {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.6rem;
  color: var(--indigo);
  line-height: 1;
}
.sp-stamp-text {
  font-family: var(--mono);
  font-size: 0.66rem;
  letter-spacing: 0.18em;
  color: var(--indigo);
  text-align: center;
  margin-top: 6px;
  line-height: 1.3;
}
.sp-stamp-circle {
  position: absolute; inset: 0;
  width: 100%; height: 100%;
  animation: spin 32s linear infinite;
}
.sp-stamp-curved {
  font-family: var(--mono);
  font-size: 11px;
  fill: var(--indigo);
  letter-spacing: 0.18em;
}

/* ── Chart spotlight (Berichte) ── */
.sp-chart-head {
  display: flex; flex-direction: column;
  padding-bottom: 10px;
  border-bottom: 1px dashed rgba(14,26,43,0.18);
}
.sp-chart-big {
  font-family: var(--serif);
  font-size: 2.4rem;
  font-style: italic;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
}
.sp-chart-big span {
  font-size: 1.2rem;
  font-style: normal;
  color: var(--ink-2);
  margin-left: 2px;
}
.sp-chart-lbl {
  font-family: var(--mono);
  font-size: 0.68rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-2);
  opacity: 0.75;
  margin-top: 4px;
}
.sp-chart-bars {
  flex: 1;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
  align-items: end;
  padding-top: 16px;
  min-height: 120px;
}
.sp-bar {
  display: flex; flex-direction: column;
  align-items: stretch;
  gap: 6px;
  height: 100%;
  justify-content: flex-end;
}
.sp-bar span {
  display: block;
  background: var(--white);
  border-radius: 6px 6px 2px 2px;
  min-height: 8px;
  box-shadow: var(--sh-1);
}
.sp-bar-on span { background: var(--ink); }
.sp-bar label {
  font-family: var(--mono);
  font-size: 0.62rem;
  text-align: center;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-2);
  opacity: 0.7;
}

/* ── Roles spotlight ── */
.sp-roles {
  padding: 18px 14px;
  gap: 6px;
}
.sp-roles-head {
  display: grid;
  grid-template-columns: 1fr repeat(4, 22px);
  gap: 6px;
  padding: 0 4px 8px;
  border-bottom: 1px dashed rgba(14,26,43,0.18);
}
.sp-roles-h {
  font-family: var(--mono);
  font-size: 0.55rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-2);
  text-align: center;
  opacity: 0.7;
  writing-mode: horizontal-tb;
}
.sp-role-row {
  display: grid;
  grid-template-columns: 1fr repeat(4, 22px);
  gap: 6px;
  align-items: center;
  background: var(--white);
  border-radius: 9px;
  padding: 9px 10px;
}
.sp-role-name {
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
}
.sp-perm {
  width: 16px; height: 16px;
  border-radius: 50%;
  justify-self: center;
}
.sp-perm-on {
  background: var(--ink);
  position: relative;
}
.sp-perm-on::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 5px; height: 8px;
  border: solid var(--mint-cyan);
  border-width: 0 2px 2px 0;
  transform: translate(-55%, -65%) rotate(45deg);
}
.sp-perm-off {
  background: transparent;
  border: 1.5px dashed rgba(14,26,43,0.25);
}

/* Highlight (dark) overrides for spotlight */
.feature-detail.highlight .sp-card { background: rgba(192,252,247,0.04); }

@media (max-width: 1080px) {
  .feature-detail {
    grid-template-columns: 84px minmax(0, 1fr);
    gap: 30px;
  }
  .feat-spotlight {
    grid-column: 1 / -1;
    margin-top: 6px;
    min-height: auto;
  }
  .sp-card { min-height: 180px; }
}

@media (max-width: 720px) {
  .feature-detail {
    grid-template-columns: 1fr;
    padding: 30px 26px;
    gap: 22px;
  }
  .feature-bullets { grid-template-columns: 1fr; }
}

/* ════════════════════════════════════════════════════════════════════
   HOW IT WORKS
   ════════════════════════════════════════════════════════════════════ */

.how {
  background: var(--sky);
  position: relative;
  overflow: hidden;
}
.how::before {
  content: '';
  position: absolute;
  top: -100px; left: -100px;
  width: 400px; height: 400px;
  background: var(--mint);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  pointer-events: none;
}
.how::after {
  content: '';
  position: absolute;
  bottom: -150px; right: -100px;
  width: 500px; height: 500px;
  background: var(--lavender);
  border-radius: 50%;
  filter: blur(100px);
  opacity: 0.55;
  pointer-events: none;
}

.how-grid {
  display: grid;
  grid-template-columns: 1.05fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
}

.steps {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 36px;
  counter-reset: stp;
  position: relative;
}
.step {
  display: flex;
  gap: 24px;
  padding: 24px 0;
  border-bottom: 1px solid rgba(14,26,43,0.08);
  position: relative;
  counter-increment: stp;
}
.step:last-child { border-bottom: none; }

.step-num {
  width: 46px; height: 46px;
  flex-shrink: 0;
  border-radius: 50%;
  background: var(--white);
  color: var(--ink);
  font-family: var(--serif);
  font-size: 1.05rem;
  display: grid; place-items: center;
  border: 1.5px solid var(--ink);
  box-shadow: var(--sh-1);
  position: relative;
}
.step-num::before {
  content: counter(stp, decimal-leading-zero);
}
.step:nth-child(1) .step-num { background: var(--mint-cyan); }
.step:nth-child(2) .step-num { background: var(--mint); }
.step:nth-child(3) .step-num { background: var(--leaf); }
.step:nth-child(4) .step-num { background: var(--lavender); }

.step-content h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--ink);
  margin-bottom: 6px;
  letter-spacing: -0.01em;
  line-height: 1.2;
}
.step-content p {
  font-size: 0.95rem;
  color: var(--ink-2);
  line-height: 1.6;
  max-width: 50ch;
}

.how-visual {
  background: var(--white);
  border-radius: 24px;
  padding: 36px;
  color: var(--ink);
  box-shadow: var(--sh-3);
  border: 1px solid var(--line);
  position: relative;
}
.how-visual-title {
  font-family: var(--serif);
  font-size: 1.25rem;
  margin-bottom: 24px;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.how-visual-title::before {
  content: '◆';
  display: inline-block;
  margin-right: 10px;
  color: var(--indigo);
  font-size: 0.7em;
  vertical-align: middle;
}

.lifecycle {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.lc-item {
  display: flex;
  align-items: center;
  gap: 16px;
  background: var(--paper);
  border-radius: 12px;
  padding: 14px 18px;
  border: 1px solid var(--line);
  transition: transform .25s, background .25s;
}
.lc-item:hover { transform: translateX(4px); background: var(--white); }

.lc-dot {
  width: 12px; height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
  border: 2px solid currentColor;
  background: var(--white) !important;
  position: relative;
}
.lc-dot::before {
  content: '';
  position: absolute;
  inset: 2px;
  border-radius: 50%;
  background: currentColor;
  opacity: 0.5;
}

.lc-item-text { font-size: 0.9rem; flex: 1; }
.lc-item-text strong {
  display: block;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.75rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  margin-bottom: 2px;
}
.lc-item-text span {
  color: var(--mid);
  font-size: 0.86rem;
  font-family: var(--sans);
}
.lc-arrow {
  text-align: center;
  color: var(--mid-2);
  font-size: 0.9rem;
  line-height: 0.4;
  margin: 2px 0;
}

/* ════════════════════════════════════════════════════════════════════
   AUDIENCE
   ════════════════════════════════════════════════════════════════════ */

.audience {
  background: var(--paper);
  text-align: center;
}
.audience-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 56px;
  max-width: 1280px;
  margin-left: auto;
  margin-right: auto;
}
.aud-card {
  border-radius: var(--r-lg);
  padding: 40px 32px 36px;
  text-align: left;
  position: relative;
  overflow: hidden;
  transition: transform .3s cubic-bezier(.4,0,.2,1),
              box-shadow .3s;
  border: 1px solid transparent;
}
.aud-card:hover {
  transform: translateY(-6px);
  box-shadow: var(--sh-3);
}

.aud-card:nth-child(1) {
  background: var(--mint-cyan);
}
.aud-card:nth-child(2) {
  background: var(--ink);
  color: var(--white);
}
.aud-card:nth-child(3) {
  background: var(--lavender);
}

.aud-card::after {
  /* Big arrow in corner */
  content: '→';
  position: absolute;
  bottom: 24px;
  right: 28px;
  font-size: 1.6rem;
  color: var(--ink);
  opacity: 0.3;
  font-family: var(--sans);
  transition: transform .25s, opacity .25s;
}
.aud-card:nth-child(2)::after { color: var(--white); }
.aud-card:hover::after { transform: translate(4px, -4px); opacity: 0.7; }

.aud-icon {
  font-size: 2.2rem;
  margin-bottom: 22px;
  width: 64px; height: 64px;
  background: var(--white);
  border-radius: 18px;
  display: grid; place-items: center;
  box-shadow: var(--sh-1);
}
.aud-card:nth-child(2) .aud-icon {
  background: rgba(255,255,255,0.1);
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.15);
}

.aud-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.5rem;
  margin-bottom: 12px;
  letter-spacing: -0.012em;
  line-height: 1.15;
  color: var(--ink);
}
.aud-card:nth-child(2) h3 { color: var(--white); }
.aud-card p {
  font-size: 0.95rem;
  line-height: 1.65;
  color: var(--ink-2);
  margin-bottom: 22px;
}
.aud-card:nth-child(2) p { color: rgba(255,255,255,0.72); }

.aud-tags {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}
.aud-tag {
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 5px 11px;
  border-radius: 50px;
  border: 1px solid rgba(14,26,43,0.18);
  color: var(--ink-2);
  background: rgba(255,255,255,0.4);
}
.aud-card:nth-child(2) .aud-tag {
  border-color: rgba(255,255,255,0.22);
  color: rgba(255,255,255,0.85);
  background: rgba(255,255,255,0.05);
}

/* ════════════════════════════════════════════════════════════════════
   COMPLIANCE
   ════════════════════════════════════════════════════════════════════ */

.compliance {
  background: var(--lavender);
  color: var(--ink);
  position: relative;
  overflow: hidden;
}
.compliance::before {
  content: '';
  position: absolute;
  top: -120px; right: -120px;
  width: 360px; height: 360px;
  background: var(--mint-cyan);
  border-radius: 50%;
  filter: blur(70px);
  opacity: 0.7;
}
.compliance::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -50px;
  width: 280px; height: 280px;
  background: var(--leaf);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.5;
}

.compliance-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: center;
  position: relative;
  z-index: 1;
  max-width: 1280px;
  margin: 0 auto;
}

.compliance .section-tag {
  background: var(--ink);
  color: var(--white);
  border-color: transparent;
}
.compliance .section-tag::before { background: var(--mint-cyan); }

.compliance h2 { color: var(--ink); }
.compliance h2 em { color: var(--indigo); }

.compliance .section-lead {
  color: var(--ink-2);
  max-width: 480px;
}

.comp-items {
  display: flex;
  flex-direction: column;
  gap: 18px;
  margin-top: 38px;
}
.comp-item {
  display: flex;
  align-items: flex-start;
  gap: 16px;
}
.comp-check {
  width: 30px; height: 30px;
  border-radius: 10px;
  background: var(--ink);
  color: var(--mint-cyan);
  display: grid; place-items: center;
  flex-shrink: 0;
  margin-top: 1px;
  font-size: 0.85rem;
  font-weight: 700;
  box-shadow: var(--sh-1);
}
.comp-text h5 {
  font-family: var(--sans);
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 4px;
  font-size: 1rem;
  letter-spacing: -0.005em;
}
.comp-text p {
  font-size: 0.92rem;
  color: var(--ink-2);
  line-height: 1.6;
  opacity: 0.85;
}

.comp-visual {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
}
.comp-badge {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 26px 22px 22px;
  text-align: center;
  position: relative;
  overflow: hidden;
  transition: transform .25s, box-shadow .25s;
}
.comp-badge:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-2);
}
.comp-badge::before {
  /* corner stamp dash */
  content: '';
  position: absolute;
  top: 10px; right: 10px;
  width: 6px; height: 6px;
  background: var(--mint-cyan-ink);
  border-radius: 50%;
  opacity: 0.3;
}
.comp-badge:nth-child(1) { background: var(--white); }
.comp-badge:nth-child(2) { background: var(--mint-cyan); border-color: transparent; }
.comp-badge:nth-child(3) { background: var(--white); }
.comp-badge:nth-child(4) { background: var(--mint); border-color: transparent; }
.comp-badge:nth-child(5) { background: var(--sky); border-color: transparent; }
.comp-badge:nth-child(6) { background: var(--white); }

.comp-badge-icon {
  font-size: 1.8rem;
  margin-bottom: 12px;
}
.comp-badge-label {
  font-family: var(--serif);
  font-size: 1rem;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.comp-badge-sub {
  font-family: var(--mono);
  font-size: 0.65rem;
  color: var(--ink-2);
  margin-top: 4px;
  font-weight: 500;
  letter-spacing: 0.04em;
  opacity: 0.7;
}

/* ════════════════════════════════════════════════════════════════════
   CTA
   ════════════════════════════════════════════════════════════════════ */

.cta-section {
  background:
    radial-gradient(ellipse 50% 60% at 80% 30%, var(--mint-cyan) 0%, transparent 55%),
    radial-gradient(ellipse 60% 60% at 20% 80%, var(--leaf) 0%, transparent 50%),
    var(--paper);
  text-align: center;
  padding: clamp(80px, 12vw, 140px) clamp(20px, 6vw, 96px);
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(14,26,43,0.06) 1px, transparent 1.2px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 30%, transparent 75%);
  -webkit-mask-image: radial-gradient(ellipse 60% 50% at 50% 50%, black 30%, transparent 75%);
}
.cta-section > * { position: relative; z-index: 1; }

.cta-section .section-tag { margin-left: auto; margin-right: auto; }
.cta-section h2 {
  margin: 14px auto 18px;
  max-width: 760px;
  font-size: clamp(2.2rem, 4.4vw, 3.4rem);
}
.cta-section .section-lead {
  margin: 0 auto 44px;
  font-size: 1.1rem;
}
.cta-actions {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* ════════════════════════════════════════════════════════════════════
   FOOTER
   ════════════════════════════════════════════════════════════════════ */

footer {
  background: var(--ink);
  color: rgba(255,255,255,0.65);
  padding: 64px clamp(20px, 6vw, 96px) 38px;
  position: relative;
  overflow: hidden;
}
footer::before {
  content: '';
  position: absolute;
  top: -100px; right: -80px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, rgba(192,252,247,0.08) 0%, transparent 70%);
  border-radius: 50%;
  pointer-events: none;
}

.footer-top {
  display: grid;
  grid-template-columns: 1.4fr repeat(3, 1fr);
  gap: clamp(28px, 4vw, 56px);
  padding-bottom: 38px;
  border-bottom: 1px solid rgba(255,255,255,0.08);
  margin-bottom: 28px;
  position: relative;
  z-index: 1;
}

.footer-brand .nav-logo { color: var(--white); }
.footer-brand .nav-logo .logo-mark {
  background: var(--white);
  border-radius: 12px;
  padding: 4px;
  width: 48px;
  height: 48px;
  box-shadow: 0 4px 14px -4px rgba(0,0,0,0.3);
}

.footer-brand p {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.55);
  margin-top: 14px;
  max-width: 320px;
  line-height: 1.65;
}
.footer-links h6 {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  color: var(--mint-cyan);
  margin-bottom: 16px;
}
.footer-links ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.footer-links ul a {
  color: rgba(255,255,255,0.6);
  font-size: 0.92rem;
  text-decoration: none;
  transition: color .2s;
}
.footer-links ul a:hover { color: var(--white); }

.footer-bottom {
  display: flex;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 14px;
  position: relative;
  z-index: 1;
}
.footer-bottom p {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.footer-sub-logo {
  font-size: 0.82rem;
  color: rgba(255,255,255,0.45);
}
.footer-sub-logo a {
  color: rgba(255,255,255,0.7);
  text-decoration: none;
  font-weight: 500;
}
.footer-sub-logo a:hover { color: var(--mint-cyan); }

/* ════════════════════════════════════════════════════════════════════
   SCROLL ANIMATIONS
   ════════════════════════════════════════════════════════════════════ */

/* Default: visible (no-JS / fallback). Only hide & animate when JS is active. */
[data-anim] {
  opacity: 1;
  transform: none;
  transition: opacity .7s cubic-bezier(.2,.7,.3,1),
              transform .7s cubic-bezier(.2,.7,.3,1);
}
html.js [data-anim]:not(.visible) {
  opacity: 0;
  transform: translateY(28px);
}
html.js [data-anim].visible {
  opacity: 1;
  transform: none;
}
[data-anim-delay="1"] { transition-delay: .08s; }
[data-anim-delay="2"] { transition-delay: .16s; }
[data-anim-delay="3"] { transition-delay: .24s; }
[data-anim-delay="4"] { transition-delay: .32s; }
[data-anim-delay="5"] { transition-delay: .40s; }
[data-anim-delay="6"] { transition-delay: .48s; }

@media (prefers-reduced-motion: reduce) {
  *, *::before, *::after {
    animation-duration: 0.01ms !important;
    animation-iteration-count: 1 !important;
    transition-duration: 0.01ms !important;
  }
  [data-anim] { opacity: 1; transform: none; }
}

/* ════════════════════════════════════════════════════════════════════
   PAGE HERO STATS (Funktionen subpage)
   ════════════════════════════════════════════════════════════════════ */

.page-hero-stats {
  display: inline-flex;
  flex-wrap: wrap;
  gap: 12px;
  margin-top: 40px;
  justify-content: center;
  position: relative;
  z-index: 1;
}
.ph-stat {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 18px;
  padding: 14px 22px 12px;
  display: flex;
  flex-direction: column;
  align-items: flex-start;
  text-align: left;
  box-shadow: var(--sh-1);
  transition: transform .25s, box-shadow .25s;
  min-width: 140px;
}
.ph-stat:nth-child(1) { background: var(--mint-cyan); border-color: transparent; transform: rotate(-1.5deg); }
.ph-stat:nth-child(2) { background: var(--mint); border-color: transparent; transform: rotate(1deg); }
.ph-stat:nth-child(3) { background: var(--lavender); border-color: transparent; transform: rotate(-0.5deg); }
.ph-stat:nth-child(4) { background: var(--leaf); border-color: transparent; transform: rotate(1.5deg); }
.ph-stat:hover { transform: translateY(-3px) rotate(0deg); box-shadow: var(--sh-2); }
.ph-stat-num {
  font-family: var(--serif);
  font-size: 1.7rem;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.012em;
}
.ph-stat-label {
  font-family: var(--mono);
  font-size: 0.68rem;
  color: var(--ink-2);
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  margin-top: 8px;
}

/* ════════════════════════════════════════════════════════════════════
   MODULE INDEX (subpage)
   ════════════════════════════════════════════════════════════════════ */

.module-index {
  background: var(--paper);
}
.mi-header {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.mi-header .section-tag { margin: 0 auto 22px; }
.mi-header .section-lead { margin: 14px auto 0; }

.mi-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
  max-width: 1280px;
  margin: 0 auto;
}
.mi-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 30px 28px 26px;
  text-decoration: none;
  color: inherit;
  position: relative;
  overflow: hidden;
  transition: transform .3s cubic-bezier(.4,0,.2,1),
              box-shadow .3s,
              border-color .3s;
  display: flex;
  flex-direction: column;
  gap: 14px;
  min-height: 200px;
}
.mi-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-3);
  border-color: transparent;
}
.mi-card:nth-child(1) { background: var(--mint-cyan); border-color: transparent; }
.mi-card:nth-child(3) { background: var(--leaf); border-color: transparent; }
.mi-card:nth-child(4) { background: var(--lavender); border-color: transparent; }
.mi-card:nth-child(6) { background: var(--mint); border-color: transparent; }

.mi-num {
  position: absolute;
  top: 18px; right: 22px;
  font-family: var(--mono);
  font-size: 0.72rem;
  color: var(--ink-2);
  font-weight: 500;
  letter-spacing: 0.05em;
  opacity: 0.55;
}
.mi-icon {
  font-size: 1.65rem;
  width: 50px; height: 50px;
  background: var(--white);
  border-radius: 14px;
  display: grid; place-items: center;
  box-shadow: var(--sh-1);
}
.mi-card:nth-child(1) .mi-icon,
.mi-card:nth-child(3) .mi-icon,
.mi-card:nth-child(4) .mi-icon,
.mi-card:nth-child(6) .mi-icon {
  background: rgba(255,255,255,0.55);
}
.mi-card h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.32rem;
  color: var(--ink);
  letter-spacing: -0.012em;
  line-height: 1.15;
}
.mi-card p {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.5;
  font-weight: 500;
}
.mi-card:nth-child(1) p,
.mi-card:nth-child(3) p,
.mi-card:nth-child(4) p,
.mi-card:nth-child(6) p { color: var(--ink-2); opacity: 0.75; }

.mi-arrow {
  margin-top: auto;
  font-size: 1.3rem;
  color: var(--ink);
  opacity: 0.35;
  transition: transform .3s cubic-bezier(.4,0,.2,1), opacity .25s;
  align-self: flex-end;
  line-height: 1;
}
.mi-card:hover .mi-arrow {
  transform: translateY(4px);
  opacity: 1;
}

/* ════════════════════════════════════════════════════════════════════
   SCENARIOS (subpage)
   ════════════════════════════════════════════════════════════════════ */

.scenarios {
  background: var(--mint);
  position: relative;
  overflow: hidden;
}
.scenarios::before {
  content: '';
  position: absolute;
  top: -120px; right: -100px;
  width: 420px; height: 420px;
  background: var(--mint-cyan);
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.7;
  pointer-events: none;
}
.scenarios::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -80px;
  width: 360px; height: 360px;
  background: var(--leaf);
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  pointer-events: none;
}

.sc-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
  position: relative;
  z-index: 1;
}
.sc-intro .section-tag {
  margin: 0 auto 22px;
  background: var(--ink);
  color: var(--white);
  border-color: transparent;
}
.sc-intro .section-tag::before { background: var(--mint-cyan); }
.sc-intro .section-lead { margin: 14px auto 0; color: var(--ink-2); }

.sc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1280px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.sc-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 32px 30px 28px;
  display: flex;
  flex-direction: column;
  gap: 18px;
  border: 1px solid var(--line);
  box-shadow: var(--sh-2);
  transition: transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s;
  position: relative;
}
.sc-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-3);
}

.sc-time {
  display: inline-flex;
  align-items: center;
  gap: 9px;
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  color: var(--ink-2);
  text-transform: uppercase;
}
.sc-time-dot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--indigo);
  flex-shrink: 0;
  box-shadow: 0 0 0 4px rgba(27,29,82,0.12);
}

.sc-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.5rem;
  color: var(--ink);
  letter-spacing: -0.012em;
  line-height: 1.15;
  margin: 0;
}

.sc-persona {
  display: flex;
  gap: 12px;
  align-items: center;
  padding: 16px 0;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
}
.sc-persona-avatar {
  width: 44px; height: 44px;
  border-radius: 50%;
  background: var(--mint-cyan);
  display: grid; place-items: center;
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.78rem;
  color: var(--ink);
  flex-shrink: 0;
  letter-spacing: 0.02em;
}
.sc-card:nth-child(2) .sc-persona-avatar { background: var(--lavender); }
.sc-card:nth-child(3) .sc-persona-avatar { background: var(--leaf); }

.sc-persona-name {
  font-family: var(--sans);
  font-weight: 700;
  color: var(--ink);
  font-size: 0.95rem;
  letter-spacing: -0.005em;
}
.sc-persona-role {
  font-size: 0.83rem;
  color: var(--mid);
  margin-top: 1px;
}

.sc-story {
  font-size: 0.96rem;
  line-height: 1.65;
  color: var(--ink-2);
}

.sc-uses {
  margin-top: auto;
}
.sc-uses-label {
  display: block;
  font-family: var(--mono);
  font-size: 0.65rem;
  font-weight: 500;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  color: var(--mid);
  margin-bottom: 10px;
}
.sc-chips {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}
.sc-chip {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: var(--paper);
  border: 1px solid var(--line);
  border-radius: 50px;
  padding: 6px 13px 6px 9px;
  font-size: 0.78rem;
  font-weight: 600;
  color: var(--ink);
  text-decoration: none;
  transition: background .2s, color .2s, border-color .2s;
  white-space: nowrap;
}
.sc-chip span {
  font-size: 0.95rem;
  line-height: 1;
}
.sc-chip:hover {
  background: var(--ink);
  color: var(--white);
  border-color: var(--ink);
}

/* ════════════════════════════════════════════════════════════════════
   FAQ
   ════════════════════════════════════════════════════════════════════ */

.faq {
  background: var(--paper);
}
.faq-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  gap: clamp(40px, 5vw, 80px);
  max-width: 1280px;
  margin: 0 auto;
  align-items: start;
}
.faq-intro {
  position: sticky;
  top: 100px;
}
.faq-intro .section-lead { margin-top: 14px; }
.faq-help {
  margin-top: 36px;
  padding: 22px 24px;
  background: var(--lavender);
  border-radius: var(--r-md);
  border: 1px solid transparent;
}
.faq-help strong {
  display: block;
  color: var(--ink);
  font-size: 0.95rem;
  margin-bottom: 8px;
  font-weight: 700;
}
.faq-help a {
  font-family: var(--sans);
  font-weight: 600;
  color: var(--indigo);
  text-decoration: none;
  font-size: 0.92rem;
}
.faq-help a:hover { text-decoration: underline; }

.faq-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.faq-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}
.faq-item:hover { border-color: var(--line-2); }
.faq-item[open] {
  border-color: var(--ink);
  box-shadow: var(--sh-2);
}
.faq-item summary {
  list-style: none;
  cursor: pointer;
  padding: 22px 24px;
  display: grid;
  grid-template-columns: 36px 1fr 36px;
  align-items: center;
  gap: 18px;
  user-select: none;
}
.faq-item summary::-webkit-details-marker { display: none; }
.faq-item summary::marker { display: none; }

.faq-num {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--mid);
  letter-spacing: 0.05em;
  align-self: flex-start;
  margin-top: 3px;
}
.faq-q {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1.04rem;
  color: var(--ink);
  letter-spacing: -0.005em;
  line-height: 1.4;
}
.faq-item[open] .faq-q {
  color: var(--ink);
}
.faq-toggle {
  width: 32px; height: 32px;
  border-radius: 50%;
  background: var(--paper);
  position: relative;
  flex-shrink: 0;
  transition: background .25s, transform .25s;
  justify-self: end;
}
.faq-toggle::before,
.faq-toggle::after {
  content: '';
  position: absolute;
  background: var(--ink);
  top: 50%; left: 50%;
  border-radius: 1px;
}
.faq-toggle::before {
  width: 11px; height: 2px;
  transform: translate(-50%, -50%);
}
.faq-toggle::after {
  width: 2px; height: 11px;
  transform: translate(-50%, -50%);
  transition: transform .25s cubic-bezier(.4,0,.2,1);
}
.faq-item[open] .faq-toggle { background: var(--mint-cyan); }
.faq-item[open] .faq-toggle::after {
  transform: translate(-50%, -50%) scaleY(0);
}

.faq-a {
  padding: 0 80px 26px 78px;
  font-size: 0.96rem;
  line-height: 1.7;
  color: var(--ink-2);
  max-width: 64ch;
  animation: faq-fade .35s ease;
}
@keyframes faq-fade {
  from { opacity: 0; transform: translateY(-4px); }
  to   { opacity: 1; transform: none; }
}

/* ════════════════════════════════════════════════════════════════════
   PRICING · TIERS
   ════════════════════════════════════════════════════════════════════ */

.tiers { background: var(--paper); --em-underline: var(--leaf); }
.tiers-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 36px;
}
.tiers-intro .section-tag { margin: 0 auto 22px; }
.tiers-intro .section-lead { margin: 14px auto 0; }

/* ── Billing Switch ── */
.price-switch-wrap {
  display: flex;
  justify-content: center;
  margin: 0 auto 44px;
}
.price-switch {
  display: inline-flex;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: 50px;
  padding: 5px;
  box-shadow: var(--sh-1);
  gap: 2px;
}
.price-switch button {
  background: transparent;
  border: none;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  padding: 11px 20px;
  border-radius: 50px;
  cursor: pointer;
  transition: background .22s, color .22s, transform .15s;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  letter-spacing: -0.005em;
}
.price-switch button:not([aria-pressed="true"]):hover {
  background: var(--paper-warm);
}
.price-switch button[aria-pressed="true"] {
  background: var(--ink);
  color: var(--white);
  box-shadow: 0 6px 16px -6px rgba(14,26,43,0.45);
}
.price-switch button[aria-pressed="true"] .ps-save {
  background: var(--mint-cyan);
  color: var(--ink);
}
.ps-save {
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  padding: 3px 8px;
  border-radius: 50px;
  background: var(--mint);
  color: var(--mint-ink);
  transition: background .22s, color .22s;
}

/* Billing note shown below the tier price block when not monthly */
.tier-billing-note {
  margin-top: 12px;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--indigo);
  padding: 6px 12px;
  background: rgba(192,219,252,0.4);
  border-radius: 50px;
  display: inline-flex;
  align-self: flex-start;
}
.tier-featured .tier-billing-note {
  color: var(--mint-cyan);
  background: rgba(192,252,247,0.12);
}

.tier-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1320px;
  margin: 0 auto;
  align-items: stretch;
}
@media (max-width: 1080px) {
  .tier-grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 560px) {
  .tier-grid { grid-template-columns: 1fr; }
}

.tier-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 32px 30px;
  position: relative;
  display: flex;
  flex-direction: column;
  transition: transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s, border-color .3s;
}
.tier-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-3);
}
.tier-card:nth-child(1) { border-top: 4px solid var(--mint-cyan); }
.tier-card:nth-child(2) { border-top: 4px solid var(--mint); }
.tier-card:nth-child(3) { border-top: 4px solid var(--sky); }
.tier-card:nth-child(4) { border-top: 4px solid var(--lavender); }

.tier-featured {
  background: var(--ink);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-8px);
  box-shadow: var(--sh-3);
  position: relative;
  overflow: hidden;
}
.tier-featured::before {
  content: '';
  position: absolute;
  top: -120px; right: -100px;
  width: 300px; height: 300px;
  background: radial-gradient(circle, var(--mint-cyan) 0%, transparent 60%);
  opacity: 0.18;
  pointer-events: none;
}
.tier-featured > * { position: relative; z-index: 1; }
.tier-featured:hover { transform: translateY(-13px); }

.tier-flag {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--mint-cyan);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 50px;
  z-index: 2;
}

.tier-head { margin-bottom: 28px; }
.tier-name {
  font-family: var(--serif);
  font-size: 1.8rem;
  letter-spacing: -0.015em;
  color: inherit;
  line-height: 1;
}
.tier-target {
  margin-top: 8px;
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.04em;
  color: var(--mid);
  text-transform: uppercase;
}
.tier-featured .tier-target { color: rgba(255,255,255,0.65); }

.tier-price {
  padding: 22px 0;
  border-top: 1px dashed var(--line);
  border-bottom: 1px dashed var(--line);
  margin-bottom: 22px;
}
.tier-featured .tier-price {
  border-color: rgba(255,255,255,0.15);
}
.tier-price-main {
  display: flex;
  align-items: baseline;
  gap: 6px;
}
.tier-amount {
  font-family: var(--serif);
  font-size: 3.4rem;
  line-height: 1;
  letter-spacing: -0.02em;
  color: inherit;
}
.tier-amount-text {
  font-family: var(--serif);
  font-size: 2rem;
  line-height: 1.05;
  letter-spacing: -0.015em;
  color: inherit;
}
.tier-currency {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.6rem;
  color: var(--indigo);
}
.tier-featured .tier-currency { color: var(--mint-cyan); }
.tier-price-meta {
  margin-top: 10px;
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.tier-price-meta span {
  font-size: 0.84rem;
  color: var(--mid);
}
.tier-featured .tier-price-meta span { color: rgba(255,255,255,0.65); }
.tier-price-meta strong {
  font-size: 0.92rem;
  font-weight: 700;
  color: var(--ink);
  margin-top: 2px;
}
.tier-featured .tier-price-meta strong { color: var(--white); }

.tier-min {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-2);
  background: var(--paper-warm);
  border-radius: 50px;
  padding: 7px 14px;
  display: inline-flex;
  align-self: flex-start;
  margin-bottom: 24px;
}
.tier-featured .tier-min {
  background: rgba(255,255,255,0.08);
  color: rgba(255,255,255,0.85);
}

.tier-features {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 30px;
  flex: 1;
}
.tier-features li {
  position: relative;
  padding-left: 26px;
  font-size: 0.93rem;
  line-height: 1.5;
  color: var(--ink-2);
}
.tier-featured .tier-features li { color: rgba(255,255,255,0.85); }
.tier-features li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.35em;
  width: 16px; height: 16px;
  background: var(--mint-cyan);
  border-radius: 50%;
  background-image:
    linear-gradient(45deg, transparent 38%, var(--ink) 40%, var(--ink) 50%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, var(--ink) 50%, var(--ink) 62%, transparent 64%);
  background-size: 50% 50%;
  background-position: 4px 6px, 2px 4px;
  background-repeat: no-repeat;
}
.tier-card:nth-child(3) .tier-features li::before { background-color: var(--lavender); }
.tier-featured .tier-features li::before { background-color: var(--mint-cyan); }

.tier-cta {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  background: var(--ink);
  color: var(--white);
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
  padding: 15px 22px;
  border-radius: 50px;
  text-decoration: none;
  transition: transform .2s, box-shadow .2s, background .2s;
  box-shadow: 0 8px 20px -8px rgba(14,26,43,0.45);
}
.tier-cta:hover { transform: translateY(-2px); box-shadow: 0 14px 28px -8px rgba(14,26,43,0.55); }
.tier-cta span:last-child { transition: transform .2s; }
.tier-cta:hover span:last-child { transform: translateX(3px); }
.tier-featured .tier-cta {
  background: var(--mint-cyan);
  color: var(--ink);
  box-shadow: 0 8px 22px -6px rgba(192,252,247,0.5);
}
.tier-featured .tier-cta:hover { background: var(--white); }

.tiers-note {
  max-width: 880px;
  margin: 56px auto 0;
  text-align: center;
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.6;
}

/* ════════════════════════════════════════════════════════════════════
   PRICING · EXAMPLES
   ════════════════════════════════════════════════════════════════════ */

.examples {
  background: var(--sky);
  --em-underline: var(--lavender);
  position: relative;
  overflow: hidden;
}
.examples::before {
  content: '';
  position: absolute;
  top: -120px; right: -100px;
  width: 380px; height: 380px;
  background: var(--mint-cyan);
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.65;
  pointer-events: none;
}
.examples::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -80px;
  width: 320px; height: 320px;
  background: var(--lavender);
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  pointer-events: none;
}

.ex-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
  position: relative;
  z-index: 1;
}
.ex-intro .section-tag {
  margin: 0 auto 22px;
  background: var(--ink);
  color: var(--white);
  border-color: transparent;
}
.ex-intro .section-tag::before { background: var(--mint-cyan); }
.ex-intro .section-lead { margin: 14px auto 0; color: var(--ink-2); }

.ex-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}

.ex-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 30px 28px 26px;
  box-shadow: var(--sh-2);
  transition: transform .3s, box-shadow .3s;
  border: 1px solid transparent;
}
.ex-card:hover { transform: translateY(-4px); box-shadow: var(--sh-3); }

.ex-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 22px;
  padding-bottom: 16px;
  border-bottom: 1px dashed var(--line);
}
.ex-tier-badge {
  font-family: var(--serif);
  font-size: 1.05rem;
  color: var(--ink);
  letter-spacing: -0.01em;
}
.ex-meta {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--mid);
}

.ex-math {
  display: flex;
  flex-direction: column;
  gap: 10px;
  margin-bottom: 20px;
}
.ex-row {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  font-size: 0.92rem;
}
.ex-row-lbl { color: var(--mid); }
.ex-row-val {
  font-family: var(--serif);
  color: var(--ink);
  font-size: 1.15rem;
  letter-spacing: -0.01em;
}
.ex-row-sum {
  padding-top: 12px;
  border-top: 1px solid var(--line);
}
.ex-row-sum .ex-row-lbl {
  font-weight: 700;
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.74rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
}
.ex-row-sum .ex-row-val {
  font-style: italic;
  font-size: 1.8rem;
  color: var(--indigo);
}

.ex-foot {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.04em;
  color: var(--mid);
  padding: 12px 16px;
  background: var(--paper-warm);
  border-radius: 12px;
  text-align: center;
}
.ex-foot strong {
  font-family: var(--serif);
  font-style: italic;
  color: var(--ink);
  font-size: 1.02rem;
  letter-spacing: -0.01em;
  margin: 0 4px;
}

/* ════════════════════════════════════════════════════════════════════
   PRICING · INCLUDED
   ════════════════════════════════════════════════════════════════════ */

.included {
  background: var(--paper);
  --em-underline: var(--mint-cyan);
}
.incl-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.incl-intro .section-tag { margin: 0 auto 22px; }
.incl-intro .section-lead { margin: 14px auto 0; }

.incl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1240px;
  margin: 0 auto;
}
.incl-col {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 32px 28px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.incl-col:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-2);
  border-color: transparent;
}
.incl-col:nth-child(1) .incl-icon { background: var(--mint-cyan); }
.incl-col:nth-child(2) .incl-icon { background: var(--mint); }
.incl-col:nth-child(3) .incl-icon { background: var(--lavender); }

.incl-icon {
  font-size: 1.55rem;
  width: 56px; height: 56px;
  border-radius: 14px;
  display: grid; place-items: center;
  margin-bottom: 22px;
  box-shadow: inset 0 -3px 0 rgba(14,26,43,0.05);
}
.incl-col h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--ink);
  margin-bottom: 18px;
  letter-spacing: -0.012em;
  line-height: 1.15;
}
.incl-col ul {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 9px;
}
.incl-col ul li {
  position: relative;
  padding-left: 18px;
  font-size: 0.92rem;
  line-height: 1.55;
  color: var(--ink-2);
}
.incl-col ul li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.6em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--ink);
  opacity: 0.4;
}

/* ════════════════════════════════════════════════════════════════════
   PRICING · EXTRAS
   ════════════════════════════════════════════════════════════════════ */

.extras {
  background: var(--paper-warm);
  --em-underline: var(--leaf);
}
.extras-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.4fr;
  gap: clamp(40px, 5vw, 80px);
  max-width: 1240px;
  margin: 0 auto;
  align-items: start;
}
.extras-intro { position: sticky; top: 100px; }
.extras-intro .section-lead { margin-top: 14px; }

.extras-list {
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.extra-item {
  display: grid;
  grid-template-columns: 1fr auto;
  gap: 24px;
  align-items: center;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 22px 26px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.extra-item:hover {
  transform: translateY(-2px);
  box-shadow: var(--sh-2);
  border-color: transparent;
}
.extra-meta h4 {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 1.02rem;
  color: var(--ink);
  margin-bottom: 4px;
  letter-spacing: -0.005em;
}
.extra-meta p {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.5;
}
.extra-price {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.35rem;
  color: var(--indigo);
  letter-spacing: -0.012em;
  white-space: nowrap;
  justify-self: end;
}

/* ════════════════════════════════════════════════════════════════════
   PRICING · DISCOUNTS
   ════════════════════════════════════════════════════════════════════ */

.discounts {
  background: var(--mint);
  --em-underline: var(--lavender);
  position: relative;
  overflow: hidden;
}
.discounts::before {
  content: '';
  position: absolute;
  top: -100px; right: -80px;
  width: 350px; height: 350px;
  background: var(--leaf);
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.6;
  pointer-events: none;
}

.disc-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
  position: relative;
  z-index: 1;
}
.disc-intro .section-tag {
  margin: 0 auto 22px;
  background: var(--ink);
  color: var(--white);
  border-color: transparent;
}
.disc-intro .section-tag::before { background: var(--mint-cyan); }
.disc-intro .section-lead { margin: 14px auto 0; color: var(--ink-2); }

.disc-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1100px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.disc-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px 30px 30px;
  text-align: center;
  position: relative;
  border: 1px solid transparent;
  box-shadow: var(--sh-1);
  transition: transform .3s, box-shadow .3s;
}
.disc-card:hover { transform: translateY(-4px); box-shadow: var(--sh-3); }

.disc-card-featured {
  background: var(--ink);
  color: var(--white);
}
.disc-card-featured h4 { color: var(--white); }
.disc-card-featured p { color: rgba(255,255,255,0.72); }

.disc-pct {
  display: inline-block;
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.6rem;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--indigo);
  margin-bottom: 18px;
}
.disc-card-featured .disc-pct { color: var(--mint-cyan); }

.disc-card h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--ink);
  margin-bottom: 12px;
  letter-spacing: -0.012em;
  line-height: 1.15;
}
.disc-card p {
  font-size: 0.92rem;
  line-height: 1.6;
  color: var(--mid);
}

/* ════════════════════════════════════════════════════════════════════
   CONTACT · WAYS (3 cards)
   ════════════════════════════════════════════════════════════════════ */

.contact-ways { background: var(--paper); --em-underline: var(--mint-cyan); }
.cw-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.cw-intro .section-tag { margin: 0 auto 22px; }
.cw-intro .section-lead { margin: 14px auto 0; }

.cw-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 22px;
  max-width: 1180px;
  margin: 0 auto;
}
.cw-card {
  position: relative;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 36px 30px 30px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: transform .3s cubic-bezier(.4,0,.2,1), box-shadow .3s, border-color .3s;
}
.cw-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-3);
  border-color: transparent;
}
.cw-card:nth-child(1) .cw-icon { background: var(--mint-cyan); }
.cw-card:nth-child(2) .cw-icon { background: var(--mint); }
.cw-card:nth-child(3) .cw-icon { background: var(--lavender); }

.cw-card-featured {
  background: var(--ink);
  color: var(--white);
  border-color: transparent;
  transform: translateY(-8px);
  box-shadow: var(--sh-3);
  position: relative;
  overflow: hidden;
}
.cw-card-featured::before {
  content: '';
  position: absolute;
  top: -120px; right: -100px;
  width: 320px; height: 320px;
  background: radial-gradient(circle, var(--mint-cyan) 0%, transparent 60%);
  opacity: 0.16;
  pointer-events: none;
}
.cw-card-featured > * { position: relative; z-index: 1; }
.cw-card-featured:hover { transform: translateY(-13px); }
.cw-card-featured .cw-icon { background: rgba(255,255,255,0.1); }

.cw-flag {
  position: absolute;
  top: 16px; right: 16px;
  background: var(--mint-cyan);
  color: var(--ink);
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  padding: 5px 11px;
  border-radius: 50px;
  z-index: 2;
}

.cw-icon {
  font-size: 1.55rem;
  width: 58px; height: 58px;
  border-radius: 16px;
  display: grid; place-items: center;
  box-shadow: inset 0 -3px 0 rgba(14,26,43,0.05);
}
.cw-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.4rem;
  color: inherit;
  letter-spacing: -0.012em;
  line-height: 1.15;
}
.cw-card p {
  font-size: 0.95rem;
  line-height: 1.6;
  color: var(--mid);
  flex: 1;
}
.cw-card-featured p { color: rgba(255,255,255,0.72); }

.cw-link {
  display: inline-flex;
  align-items: center;
  justify-content: space-between;
  gap: 10px;
  padding: 13px 18px;
  background: var(--paper);
  border-radius: 50px;
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.92rem;
  color: var(--ink);
  text-decoration: none;
  transition: background .22s, color .22s, transform .15s;
}
.cw-link:hover {
  background: var(--ink);
  color: var(--white);
  transform: translateY(-2px);
}
.cw-link span:last-child { transition: transform .2s; }
.cw-link:hover span:last-child { transform: translateX(3px); }

.cw-card-featured .cw-link {
  background: var(--mint-cyan);
  color: var(--ink);
}
.cw-card-featured .cw-link:hover {
  background: var(--white);
}

/* ════════════════════════════════════════════════════════════════════
   CONTACT · FORM
   ════════════════════════════════════════════════════════════════════ */

.contact-form-section {
  background: var(--lavender);
  --em-underline: var(--mint-cyan);
  position: relative;
  overflow: hidden;
}
.contact-form-section::before {
  content: '';
  position: absolute;
  top: -120px; right: -100px;
  width: 380px; height: 380px;
  background: var(--mint-cyan);
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.65;
  pointer-events: none;
}
.contact-form-section::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -80px;
  width: 320px; height: 320px;
  background: var(--leaf);
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  pointer-events: none;
}

.cf-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.3fr;
  gap: clamp(40px, 5vw, 80px);
  max-width: 1240px;
  margin: 0 auto;
  align-items: start;
  position: relative;
  z-index: 1;
}

.cf-aside {
  position: sticky;
  top: 100px;
}
.cf-aside .section-tag {
  background: var(--ink);
  color: var(--white);
  border-color: transparent;
}
.cf-aside .section-tag::before { background: var(--mint-cyan); }
.cf-aside .section-lead { margin-top: 14px; color: var(--ink-2); }

.cf-trust {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cf-trust-item {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 16px 18px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--sh-1);
  border-left: 4px solid var(--mint-cyan);
}
.cf-trust-item:nth-child(2) { border-left-color: var(--leaf); }
.cf-trust-item:nth-child(3) { border-left-color: var(--mint); }
.cf-trust-item strong {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.cf-trust-item span {
  font-size: 0.85rem;
  color: var(--mid);
  line-height: 1.5;
}

.contact-form {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 44px);
  box-shadow: var(--sh-3);
  display: flex;
  flex-direction: column;
  gap: 20px;
}

.cf-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}

.cf-field {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.cf-label {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--ink-2);
}
.cf-label em {
  font-style: normal;
  color: var(--indigo);
  margin-left: 2px;
}

.cf-field input,
.cf-field select,
.cf-field textarea {
  font-family: var(--sans);
  font-size: 1rem;
  font-weight: 500;
  color: var(--ink);
  background: var(--paper);
  border: 1.5px solid transparent;
  border-radius: 12px;
  padding: 13px 16px;
  width: 100%;
  transition: border-color .2s, background .2s, box-shadow .2s;
  outline: none;
  letter-spacing: -0.005em;
}
.cf-field textarea {
  resize: vertical;
  min-height: 130px;
  line-height: 1.55;
}
.cf-field select {
  appearance: none;
  -webkit-appearance: none;
  background-image:
    url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='14' height='14' viewBox='0 0 14 14'><path d='M3 5l4 4 4-4' stroke='%230E1A2B' stroke-width='2' fill='none' stroke-linecap='round' stroke-linejoin='round'/></svg>");
  background-repeat: no-repeat;
  background-position: right 16px center;
  padding-right: 42px;
}

.cf-field input:focus,
.cf-field select:focus,
.cf-field textarea:focus {
  background: var(--white);
  border-color: var(--ink);
  box-shadow: 0 0 0 4px rgba(192,219,252,0.5);
}
.cf-field input::placeholder,
.cf-field textarea::placeholder {
  color: var(--mid-2);
}
.cf-field input:invalid:not(:placeholder-shown),
.cf-field select:invalid:not([value=""]),
.cf-field textarea:invalid:not(:placeholder-shown) {
  /* gentle invalid signal — don't shout */
}

.cf-actions {
  display: flex;
  align-items: center;
  gap: 22px;
  margin-top: 8px;
  flex-wrap: wrap;
}
.cf-note {
  font-size: 0.82rem;
  color: var(--mid);
  flex: 1;
  min-width: 220px;
  line-height: 1.5;
}

/* ════════════════════════════════════════════════════════════════════
   CONTACT · WHERE
   ════════════════════════════════════════════════════════════════════ */

.contact-where {
  background: var(--paper);
  --em-underline: var(--lavender);
}
.cwh-grid {
  display: grid;
  grid-template-columns: 1fr 0.85fr;
  gap: clamp(40px, 5vw, 80px);
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
}
.cwh-grid > div .section-lead { margin-top: 14px; max-width: 50ch; }

.cwh-address {
  display: flex;
  flex-direction: column;
  gap: 4px;
  margin-top: 28px;
  font-style: normal;
  font-size: 0.95rem;
  color: var(--ink-2);
  padding: 22px 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  max-width: 380px;
}
.cwh-address strong {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--ink);
  letter-spacing: -0.01em;
  margin-bottom: 4px;
}
.cwh-address a {
  margin-top: 6px;
  color: var(--indigo);
  text-decoration: none;
  font-weight: 600;
}
.cwh-address a:hover { text-decoration: underline; }

.cwh-hint {
  margin-top: 18px;
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.6;
  max-width: 50ch;
}

.cwh-card {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--r-lg);
  padding: 36px 34px;
  position: relative;
  overflow: hidden;
}
.cwh-card::before {
  content: '';
  position: absolute;
  top: -100px; right: -80px;
  width: 280px; height: 280px;
  background: radial-gradient(circle, var(--lavender) 0%, transparent 60%);
  opacity: 0.18;
}
.cwh-card > * { position: relative; z-index: 1; }

.cwh-card-tag {
  display: inline-flex;
  font-family: var(--mono);
  font-size: 0.7rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mint-cyan);
  margin-bottom: 18px;
}
.cwh-card h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.45rem;
  color: var(--white);
  margin-bottom: 22px;
  letter-spacing: -0.012em;
  line-height: 1.18;
}
.cwh-steps {
  list-style: none;
  counter-reset: cwhs;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.cwh-steps li {
  counter-increment: cwhs;
  position: relative;
  padding-left: 44px;
  font-size: 0.95rem;
  line-height: 1.6;
  color: rgba(255,255,255,0.75);
}
.cwh-steps li strong {
  color: var(--white);
  font-weight: 700;
  margin-right: 2px;
}
.cwh-steps li::before {
  content: counter(cwhs, decimal-leading-zero);
  position: absolute;
  left: 0; top: 0;
  width: 30px; height: 30px;
  border-radius: 50%;
  background: rgba(192,252,247,0.12);
  color: var(--mint-cyan);
  font-family: var(--mono);
  font-size: 0.74rem;
  font-weight: 500;
  display: grid; place-items: center;
  letter-spacing: 0.04em;
}

/* ════════════════════════════════════════════════════════════════════
   GANZTAG 2026 · QUICKFACTS
   ════════════════════════════════════════════════════════════════════ */

.quickfacts { background: var(--paper-warm); --em-underline: var(--mint-cyan); }
.qf-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.qf-intro .section-tag { margin: 0 auto 22px; }
.qf-intro .section-lead { margin: 14px auto 0; }

.qf-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
  max-width: 1240px;
  margin: 0 auto;
}
.qf-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.qf-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-2);
  border-color: transparent;
}
.qf-card:nth-child(1) .qf-icon { background: var(--mint-cyan); }
.qf-card:nth-child(2) .qf-icon { background: var(--mint); }
.qf-card:nth-child(3) .qf-icon { background: var(--leaf); }
.qf-card:nth-child(4) .qf-icon { background: var(--lavender); }

.qf-icon {
  font-size: 1.4rem;
  width: 46px; height: 46px;
  border-radius: 12px;
  display: grid; place-items: center;
  box-shadow: inset 0 -3px 0 rgba(14,26,43,0.05);
}
.qf-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.18rem;
  color: var(--ink);
  letter-spacing: -0.012em;
  line-height: 1.18;
}
.qf-card p {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.55;
}

/* ════════════════════════════════════════════════════════════════════
   GANZTAG 2026 · TIMELINE
   ════════════════════════════════════════════════════════════════════ */

.timeline {
  background: var(--sky);
  --em-underline: var(--lavender);
  position: relative;
  overflow: hidden;
}
.timeline::before {
  content: '';
  position: absolute;
  top: -120px; right: -100px;
  width: 400px; height: 400px;
  background: var(--mint-cyan);
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.55;
  pointer-events: none;
}
.tl-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
  position: relative;
  z-index: 1;
}
.tl-intro .section-tag {
  margin: 0 auto 22px;
  background: var(--ink);
  color: var(--white);
  border-color: transparent;
}
.tl-intro .section-tag::before { background: var(--mint-cyan); }
.tl-intro .section-lead { margin: 14px auto 0; color: var(--ink-2); }

.tl-list {
  list-style: none;
  max-width: 820px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  padding-left: 12px;
}
.tl-list::before {
  content: '';
  position: absolute;
  left: 58px;
  top: 32px;
  bottom: 40px;
  width: 2px;
  background: repeating-linear-gradient(
    to bottom,
    var(--ink) 0 6px,
    transparent 6px 12px
  );
  opacity: 0.25;
}
.tl-item {
  display: grid;
  grid-template-columns: 100px 1fr;
  gap: 26px;
  align-items: start;
  padding: 14px 0 24px;
  position: relative;
  z-index: 1;
}
.tl-marker {
  width: 92px; height: 92px;
  border-radius: 50%;
  background: var(--white);
  border: 2px solid var(--ink);
  display: grid; place-items: center;
  font-family: var(--serif);
  font-size: 2rem;
  color: var(--ink);
  letter-spacing: -0.02em;
  line-height: 1;
  box-shadow: var(--sh-2);
  position: relative;
  z-index: 2;
}
.tl-marker span {
  font-style: italic;
  font-size: 0.95rem;
  color: var(--indigo);
  margin-left: 2px;
}
.tl-item:nth-child(1) .tl-marker { background: var(--mint-cyan); }
.tl-item:nth-child(2) .tl-marker { background: var(--mint); }
.tl-item:nth-child(3) .tl-marker { background: var(--leaf); }
.tl-item-final .tl-marker { background: var(--ink); color: var(--white); }
.tl-item-final .tl-marker span { color: var(--mint-cyan); }

.tl-body {
  background: var(--white);
  border-radius: var(--r-md);
  padding: 22px 26px;
  box-shadow: var(--sh-1);
  border: 1px solid var(--line);
}
.tl-year {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--indigo);
  margin-bottom: 6px;
}
.tl-body h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--ink);
  letter-spacing: -0.012em;
  line-height: 1.15;
  margin-bottom: 8px;
}
.tl-body p {
  font-size: 0.93rem;
  color: var(--mid);
  line-height: 1.6;
}

/* ════════════════════════════════════════════════════════════════════
   GANZTAG 2026 · IMPLICATIONS
   ════════════════════════════════════════════════════════════════════ */

.implications { background: var(--paper); --em-underline: var(--leaf); }
.impl-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.impl-intro .section-tag { margin: 0 auto 22px; }
.impl-intro .section-lead { margin: 14px auto 0; }

.impl-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1240px;
  margin: 0 auto;
}
.impl-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 32px 28px 28px;
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.impl-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-3);
  border-color: transparent;
}
.impl-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.5rem;
  color: var(--indigo);
  letter-spacing: -0.02em;
  margin-bottom: 14px;
  line-height: 1;
}
.impl-card:nth-child(even) .impl-num { color: var(--rust); }
.impl-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.35rem;
  color: var(--ink);
  letter-spacing: -0.012em;
  line-height: 1.18;
  margin-bottom: 12px;
}
.impl-card p {
  font-size: 0.94rem;
  color: var(--mid);
  line-height: 1.65;
}

/* ════════════════════════════════════════════════════════════════════
   GANZTAG 2026 · CHECKLIST
   ════════════════════════════════════════════════════════════════════ */

.checklist { background: var(--paper-warm); --em-underline: var(--mint-cyan); }
.cl-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
}
.cl-intro .section-tag { margin: 0 auto 22px; }
.cl-intro .section-lead { margin: 14px auto 0; }

.cl-list {
  display: flex;
  flex-direction: column;
  gap: 10px;
  max-width: 920px;
  margin: 0 auto;
}
.cl-item {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  overflow: hidden;
  transition: border-color .25s, box-shadow .25s;
}
.cl-item:hover { border-color: var(--line-2); }
.cl-item[open] { border-color: var(--ink); box-shadow: var(--sh-2); }
.cl-item summary {
  list-style: none;
  cursor: pointer;
  padding: 18px 22px;
  display: grid;
  grid-template-columns: 30px 28px 1fr 32px;
  align-items: center;
  gap: 14px;
}
.cl-item summary::-webkit-details-marker { display: none; }
.cl-item summary::marker { display: none; }

.cl-num {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  color: var(--mid);
  letter-spacing: 0.05em;
  align-self: flex-start;
  margin-top: 3px;
}
.cl-box {
  width: 26px; height: 26px;
  border-radius: 8px;
  background: var(--paper);
  border: 1.5px solid var(--ink);
  position: relative;
  transition: background .25s;
  justify-self: center;
}
.cl-item[open] .cl-box {
  background: var(--mint-cyan);
}
.cl-item[open] .cl-box::after {
  content: '';
  position: absolute;
  top: 50%; left: 50%;
  width: 7px; height: 12px;
  border: solid var(--ink);
  border-width: 0 2.5px 2.5px 0;
  transform: translate(-55%, -65%) rotate(45deg);
}
.cl-q {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 1rem;
  color: var(--ink);
  line-height: 1.4;
  letter-spacing: -0.005em;
}
.cl-toggle {
  width: 30px; height: 30px;
  border-radius: 50%;
  background: var(--paper);
  position: relative;
  justify-self: end;
  transition: background .25s, transform .25s;
}
.cl-toggle::before,
.cl-toggle::after {
  content: '';
  position: absolute;
  background: var(--ink);
  top: 50%; left: 50%;
  border-radius: 1px;
}
.cl-toggle::before { width: 10px; height: 2px; transform: translate(-50%, -50%); }
.cl-toggle::after { width: 2px; height: 10px; transform: translate(-50%, -50%); transition: transform .25s; }
.cl-item[open] .cl-toggle::after { transform: translate(-50%, -50%) scaleY(0); }

.cl-a {
  padding: 0 22px 22px 90px;
  font-size: 0.94rem;
  line-height: 1.65;
  color: var(--ink-2);
  max-width: 64ch;
  animation: faq-fade .35s ease;
}

.cl-score {
  max-width: 920px;
  margin: 36px auto 0;
  padding: 22px 28px;
  background: var(--ink);
  color: var(--white);
  border-radius: var(--r-md);
  display: flex;
  flex-direction: column;
  gap: 6px;
  text-align: center;
}
.cl-score strong {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.2rem;
  color: var(--mint-cyan);
  letter-spacing: -0.01em;
}
.cl-score span {
  font-size: 0.92rem;
  color: rgba(255,255,255,0.78);
  line-height: 1.6;
}

/* ════════════════════════════════════════════════════════════════════
   GANZTAG 2026 · WHITEPAPER
   ════════════════════════════════════════════════════════════════════ */

.whitepaper {
  background: var(--lavender);
  --em-underline: var(--mint-cyan);
  position: relative;
  overflow: hidden;
}
.whitepaper::before {
  content: '';
  position: absolute;
  top: -120px; right: -100px;
  width: 380px; height: 380px;
  background: var(--mint-cyan);
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.65;
  pointer-events: none;
}
.whitepaper::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -80px;
  width: 320px; height: 320px;
  background: var(--leaf);
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
  pointer-events: none;
}

.wp-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 70px);
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
  position: relative;
  z-index: 1;
}
.wp-aside .section-tag {
  background: var(--ink);
  color: var(--white);
  border-color: transparent;
}
.wp-aside .section-tag::before { background: var(--mint-cyan); }
.wp-aside .section-lead {
  margin-top: 14px;
  color: var(--ink-2);
}

.wp-contents {
  list-style: none;
  margin-top: 28px;
  display: flex;
  flex-direction: column;
  gap: 10px;
}
.wp-contents li {
  position: relative;
  padding-left: 28px;
  font-size: 0.95rem;
  color: var(--ink);
  line-height: 1.55;
  font-weight: 500;
}
.wp-contents li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.34em;
  width: 16px; height: 16px;
  background: var(--white);
  border-radius: 50%;
  background-image:
    linear-gradient(45deg, transparent 38%, var(--ink) 40%, var(--ink) 50%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, var(--ink) 50%, var(--ink) 62%, transparent 64%);
  background-size: 50% 50%;
  background-position: 4px 6px, 2px 4px;
  background-repeat: no-repeat;
  box-shadow: var(--sh-1);
}

.wp-meta {
  margin-top: 26px;
  display: flex;
  gap: 8px;
  flex-wrap: wrap;
}
.wp-meta-chip {
  background: var(--white);
  border-radius: 50px;
  padding: 6px 12px;
  font-family: var(--mono);
  font-size: 0.66rem;
  font-weight: 500;
  color: var(--ink);
  letter-spacing: 0.05em;
  text-transform: uppercase;
  box-shadow: var(--sh-1);
}

.whitepaper-form {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 40px);
  box-shadow: var(--sh-3);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.wp-form-head { margin-bottom: 8px; }
.wp-form-head h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.55rem;
  color: var(--ink);
  letter-spacing: -0.012em;
  line-height: 1.15;
  margin-bottom: 6px;
}
.wp-form-head p {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.55;
}

/* ════════════════════════════════════════════════════════════════════
   GANZTAG 2026 · HOW OGS-FLOW HELPS
   ════════════════════════════════════════════════════════════════════ */

.how-helps { background: var(--paper); --em-underline: var(--lavender); }
.hh-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.hh-intro .section-tag { margin: 0 auto 22px; }
.hh-intro .section-lead { margin: 14px auto 0; }

.hh-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1240px;
  margin: 0 auto;
}
.hh-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px 26px 24px;
  text-decoration: none;
  color: inherit;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}
.hh-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--sh-3);
  border-color: transparent;
}
.hh-card:nth-child(1) .hh-icon { background: var(--mint-cyan); }
.hh-card:nth-child(2) .hh-icon { background: var(--mint); }
.hh-card:nth-child(3) .hh-icon { background: var(--sky); }
.hh-card:nth-child(4) .hh-icon { background: var(--leaf); }
.hh-card:nth-child(5) .hh-icon { background: var(--lavender); }
.hh-card:nth-child(6) .hh-icon { background: var(--mint-cyan); }

.hh-icon {
  font-size: 1.4rem;
  width: 46px; height: 46px;
  border-radius: 12px;
  display: grid; place-items: center;
  box-shadow: inset 0 -3px 0 rgba(14,26,43,0.05);
}
.hh-card h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.2rem;
  color: var(--ink);
  letter-spacing: -0.012em;
  line-height: 1.18;
}
.hh-card p {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.55;
  flex: 1;
}
.hh-link {
  font-family: var(--mono);
  font-size: 0.72rem;
  font-weight: 500;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--indigo);
  margin-top: 4px;
}

/* ════════════════════════════════════════════════════════════════════
   TRÄGER · PAIN POINTS
   ════════════════════════════════════════════════════════════════════ */

.pain { background: var(--paper); --em-underline: var(--lavender); }
.pain-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.pain-intro .section-tag { margin: 0 auto 22px; }
.pain-intro .section-lead { margin: 14px auto 0; }

.pain-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1180px;
  margin: 0 auto;
}
.pain-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-left: 4px solid var(--rust);
  border-radius: var(--r-md);
  padding: 26px 26px 24px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.pain-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-2);
}
.pain-card:nth-child(odd) { border-left-color: var(--indigo); }

.pain-quote {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.18rem;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.3;
  margin-bottom: 12px;
}
.pain-card p {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.6;
}

/* ════════════════════════════════════════════════════════════════════
   TRÄGER · USPS (3 large cards)
   ════════════════════════════════════════════════════════════════════ */

.usps {
  background: var(--mint);
  --em-underline: var(--lavender);
  position: relative;
  overflow: hidden;
}
.usps::before {
  content: '';
  position: absolute;
  top: -120px; right: -80px;
  width: 380px; height: 380px;
  background: var(--mint-cyan);
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.7;
  pointer-events: none;
}
.usps::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -80px;
  width: 320px; height: 320px;
  background: var(--leaf);
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.5;
  pointer-events: none;
}

.usps-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
  position: relative;
  z-index: 1;
}
.usps-intro .section-tag {
  margin: 0 auto 22px;
  background: var(--ink);
  color: var(--white);
  border-color: transparent;
}
.usps-intro .section-tag::before { background: var(--mint-cyan); }
.usps-intro .section-lead { margin: 14px auto 0; color: var(--ink-2); }

.usps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
}
.usp-card {
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 36px 32px 32px;
  box-shadow: var(--sh-2);
  display: flex;
  flex-direction: column;
  gap: 14px;
  transition: transform .3s, box-shadow .3s;
}
.usp-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--sh-3);
}
.usp-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.45rem;
  color: var(--indigo);
  letter-spacing: -0.02em;
  line-height: 1;
}
.usp-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.4rem;
  color: var(--ink);
  letter-spacing: -0.012em;
  line-height: 1.18;
}
.usp-card > p {
  font-size: 0.95rem;
  color: var(--mid);
  line-height: 1.65;
}
.usp-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
  padding-top: 14px;
  border-top: 1px dashed var(--line);
  margin-top: auto;
}
.usp-list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.88rem;
  color: var(--ink-2);
  line-height: 1.5;
}
.usp-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.55em;
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--indigo);
}

/* ════════════════════════════════════════════════════════════════════
   TRÄGER · SETUP DIAGRAM
   ════════════════════════════════════════════════════════════════════ */

.setup { background: var(--paper); --em-underline: var(--mint-cyan); }
.setup-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.setup-intro .section-tag { margin: 0 auto 22px; }
.setup-intro .section-lead { margin: 14px auto 0; }

.setup-diagram {
  max-width: 980px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  align-items: stretch;
  position: relative;
}

.sd-traeger {
  background: var(--ink);
  color: var(--white);
  border-radius: var(--r-lg);
  padding: 32px 36px;
  position: relative;
  z-index: 2;
  overflow: hidden;
}
.sd-traeger::before {
  content: '';
  position: absolute;
  top: -80px; right: -60px;
  width: 220px; height: 220px;
  background: radial-gradient(circle, var(--mint-cyan) 0%, transparent 60%);
  opacity: 0.15;
}
.sd-traeger > * { position: relative; z-index: 1; }

.sd-tag {
  display: inline-flex;
  font-family: var(--mono);
  font-size: 0.68rem;
  font-weight: 500;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--mint-cyan);
  margin-bottom: 10px;
}
.sd-traeger h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.55rem;
  color: var(--white);
  letter-spacing: -0.012em;
  line-height: 1.15;
  margin-bottom: 18px;
}
.sd-list {
  list-style: none;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 8px 24px;
}
.sd-list li {
  position: relative;
  padding-left: 22px;
  font-size: 0.92rem;
  color: rgba(255,255,255,0.85);
  line-height: 1.5;
}
.sd-list li::before {
  content: '';
  position: absolute;
  left: 0; top: 0.45em;
  width: 14px; height: 14px;
  background: var(--mint-cyan);
  border-radius: 50%;
  background-image:
    linear-gradient(45deg, transparent 38%, var(--ink) 40%, var(--ink) 50%, transparent 52%),
    linear-gradient(-45deg, transparent 48%, var(--ink) 50%, var(--ink) 62%, transparent 64%);
  background-size: 50% 50%;
  background-position: 3px 5px, 1.5px 3px;
  background-repeat: no-repeat;
}

.sd-trunk {
  width: 2px;
  height: 40px;
  margin: 0 auto;
  background: repeating-linear-gradient(
    to bottom,
    var(--ink) 0 5px,
    transparent 5px 10px
  );
  opacity: 0.4;
}

.sd-branches {
  position: relative;
  padding-top: 20px;
}
.sd-branches::before {
  content: '';
  position: absolute;
  left: 12.5%;
  right: 12.5%;
  top: 0;
  height: 2px;
  background: repeating-linear-gradient(
    to right,
    var(--ink) 0 5px,
    transparent 5px 10px
  );
  opacity: 0.4;
}

.sd-standorte {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
}
.sd-standort {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 20px 22px 18px;
  text-align: left;
  position: relative;
  transition: transform .25s, box-shadow .25s;
}
.sd-standort:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-2);
}
.sd-standort::before {
  content: '';
  position: absolute;
  left: 50%; top: -20px;
  width: 2px; height: 20px;
  background: repeating-linear-gradient(
    to bottom,
    var(--ink) 0 5px,
    transparent 5px 10px
  );
  transform: translateX(-50%);
  opacity: 0.4;
}
.sd-standort .sd-tag {
  color: var(--indigo);
  margin-bottom: 6px;
}
.sd-standort:nth-child(1) { background: var(--mint-cyan); border-color: transparent; }
.sd-standort:nth-child(2) { background: var(--mint); border-color: transparent; }
.sd-standort:nth-child(3) { background: var(--leaf); border-color: transparent; }
.sd-standort:nth-child(1) .sd-tag,
.sd-standort:nth-child(2) .sd-tag,
.sd-standort:nth-child(3) .sd-tag { color: var(--ink-2); }

.sd-standort strong {
  display: block;
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.05rem;
  color: var(--ink);
  letter-spacing: -0.01em;
  line-height: 1.15;
  margin-bottom: 6px;
}
.sd-standort p {
  font-size: 0.82rem;
  color: var(--ink-2);
  margin-bottom: 8px;
  opacity: 0.85;
}
.sd-role {
  display: inline-block;
  font-family: var(--mono);
  font-size: 0.62rem;
  letter-spacing: 0.04em;
  text-transform: uppercase;
  color: var(--ink-2);
  opacity: 0.7;
}

.sd-standort-more {
  background: transparent !important;
  border: 1.5px dashed var(--line-2) !important;
}
.sd-standort-more strong { color: var(--mid); }
.sd-standort-more p { color: var(--mid-2); }

.setup-caption {
  max-width: 720px;
  margin: 48px auto 0;
  text-align: center;
  font-size: 1rem;
  color: var(--mid);
  line-height: 1.65;
}
.setup-caption em {
  font-family: var(--serif);
  color: var(--ink);
  font-style: italic;
  padding: 0 0.04em;
}

/* ════════════════════════════════════════════════════════════════════
   TRÄGER · PROCESS (5-step timeline)
   ════════════════════════════════════════════════════════════════════ */

.process {
  background: var(--paper-warm);
  --em-underline: var(--leaf);
}
.proc-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.proc-intro .section-tag { margin: 0 auto 22px; }
.proc-intro .section-lead { margin: 14px auto 0; }

.proc-list {
  list-style: none;
  max-width: 880px;
  margin: 0 auto;
  display: flex;
  flex-direction: column;
  gap: 14px;
  position: relative;
}

.proc-step {
  display: grid;
  grid-template-columns: 62px 1fr;
  gap: 24px;
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 24px 28px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  align-items: start;
}
.proc-step:hover {
  transform: translateX(4px);
  box-shadow: var(--sh-2);
  border-color: transparent;
}

.proc-num {
  font-family: var(--serif);
  font-style: italic;
  font-size: 2.2rem;
  letter-spacing: -0.02em;
  line-height: 1;
  color: var(--indigo);
  align-self: center;
}
.proc-step:nth-child(1) .proc-num { color: var(--mint-cyan-ink); }
.proc-step:nth-child(2) .proc-num { color: var(--leaf-ink); }
.proc-step:nth-child(3) .proc-num { color: var(--sky-ink); }
.proc-step:nth-child(4) .proc-num { color: var(--lavender-ink); }
.proc-step:nth-child(5) .proc-num { color: var(--indigo); }

.proc-body h4 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.3rem;
  color: var(--ink);
  letter-spacing: -0.012em;
  line-height: 1.15;
  margin-bottom: 8px;
}
.proc-body p {
  font-size: 0.94rem;
  color: var(--mid);
  line-height: 1.65;
  margin-bottom: 8px;
}
.proc-time {
  display: inline-flex;
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.05em;
  text-transform: uppercase;
  color: var(--indigo);
  background: rgba(192,219,252,0.4);
  padding: 5px 11px;
  border-radius: 50px;
}

/* ════════════════════════════════════════════════════════════════════
   TRÄGER · ERSTGESPRÄCH CTA
   ════════════════════════════════════════════════════════════════════ */

.traeger-cta {
  background: var(--ink);
  color: var(--white);
  --em-underline: var(--mint-cyan);
  position: relative;
  overflow: hidden;
}
.traeger-cta::before {
  content: '';
  position: absolute;
  top: -150px; right: -100px;
  width: 420px; height: 420px;
  background: radial-gradient(circle, var(--mint-cyan) 0%, transparent 60%);
  opacity: 0.16;
  pointer-events: none;
}
.traeger-cta::after {
  content: '';
  position: absolute;
  bottom: -150px; left: -80px;
  width: 360px; height: 360px;
  background: radial-gradient(circle, var(--lavender) 0%, transparent 60%);
  opacity: 0.14;
  pointer-events: none;
}

.tc-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 80px);
  max-width: 1240px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  align-items: start;
}

.tc-aside .section-tag {
  background: rgba(255,255,255,0.1);
  color: var(--mint-cyan);
  border-color: transparent;
}
.tc-aside .section-tag::before { background: var(--mint-cyan); }
.tc-aside h2 { color: var(--white); }
.tc-aside .section-lead {
  color: rgba(255,255,255,0.78);
  margin-top: 14px;
}

.tc-points {
  margin-top: 36px;
  display: flex;
  flex-direction: column;
  gap: 16px;
}
.tc-point {
  background: rgba(255,255,255,0.04);
  border-left: 3px solid var(--mint-cyan);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
}
.tc-point:nth-child(2) { border-left-color: var(--leaf); }
.tc-point:nth-child(3) { border-left-color: var(--lavender); }
.tc-point strong {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--white);
  letter-spacing: -0.005em;
}
.tc-point span {
  font-size: 0.88rem;
  color: rgba(255,255,255,0.72);
  line-height: 1.55;
}

.traeger-form {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 40px);
  box-shadow: var(--sh-3);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.tc-form-head { margin-bottom: 8px; }
.tc-form-head h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.55rem;
  color: var(--ink);
  letter-spacing: -0.012em;
  line-height: 1.15;
  margin-bottom: 6px;
}
.tc-form-head p {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.55;
}

/* ════════════════════════════════════════════════════════════════════
   EXCEL · PROS (Was Excel gut macht)
   ════════════════════════════════════════════════════════════════════ */

.pros {
  background: var(--paper-warm);
  --em-underline: var(--leaf);
}
.pros-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.pros-intro .section-tag { margin: 0 auto 22px; }
.pros-intro .section-lead { margin: 14px auto 0; }

.pros-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  max-width: 1200px;
  margin: 0 auto;
}
.pros-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px 24px 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
}
.pros-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-2);
  border-color: transparent;
}
.pros-card:nth-child(1) .pros-icon { background: var(--leaf); }
.pros-card:nth-child(2) .pros-icon { background: var(--mint); }
.pros-card:nth-child(3) .pros-icon { background: var(--mint-cyan); }
.pros-card:nth-child(4) .pros-icon { background: var(--sky); }

.pros-icon {
  font-size: 1.3rem;
  width: 46px; height: 46px;
  border-radius: 12px;
  display: grid; place-items: center;
  box-shadow: inset 0 -3px 0 rgba(14,26,43,0.05);
}
.pros-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.15rem;
  color: var(--ink);
  letter-spacing: -0.012em;
  line-height: 1.18;
}
.pros-card p {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.55;
}

/* ════════════════════════════════════════════════════════════════════
   EXCEL · CONS (Wo Excel kollidiert)
   ════════════════════════════════════════════════════════════════════ */

.cons {
  background: var(--paper);
  --em-underline: var(--lavender);
}
.cons-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 56px;
}
.cons-intro .section-tag { margin: 0 auto 22px; }
.cons-intro .section-lead { margin: 14px auto 0; }

.cons-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
  max-width: 1240px;
  margin: 0 auto;
}
.cons-card {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-md);
  padding: 28px 28px 24px;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.cons-card:hover {
  transform: translateY(-3px);
  box-shadow: var(--sh-3);
  border-color: transparent;
}

.cons-head {
  display: flex;
  align-items: center;
  gap: 12px;
}
.cons-icon {
  font-size: 1.35rem;
  width: 42px; height: 42px;
  background: var(--paper-warm);
  border-radius: 12px;
  display: grid; place-items: center;
  flex-shrink: 0;
  box-shadow: inset 0 -2px 0 rgba(14,26,43,0.05);
}
.cons-card h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.25rem;
  color: var(--ink);
  letter-spacing: -0.012em;
  line-height: 1.18;
  margin: 0;
}

.cons-pain {
  font-size: 0.94rem;
  color: var(--mid);
  line-height: 1.6;
  flex: 1;
}

.cons-solution {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  background: var(--mint-cyan);
  border-radius: 12px;
  padding: 12px 16px;
  font-size: 0.9rem;
  color: var(--ink);
  line-height: 1.5;
  font-weight: 500;
}
.cons-arrow {
  flex-shrink: 0;
  font-family: var(--serif);
  font-style: italic;
  font-weight: 700;
  color: var(--indigo);
  line-height: 1.4;
}

/* ════════════════════════════════════════════════════════════════════
   EXCEL · COMPARISON TABLE
   ════════════════════════════════════════════════════════════════════ */

.comparison {
  background: var(--sky);
  --em-underline: var(--mint-cyan);
  position: relative;
  overflow: hidden;
}
.comparison::before {
  content: '';
  position: absolute;
  top: -120px; right: -100px;
  width: 380px; height: 380px;
  background: var(--mint);
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.6;
  pointer-events: none;
}
.cmp-intro {
  text-align: center;
  max-width: 720px;
  margin: 0 auto 48px;
  position: relative;
  z-index: 1;
}
.cmp-intro .section-tag {
  margin: 0 auto 22px;
  background: var(--ink);
  color: var(--white);
  border-color: transparent;
}
.cmp-intro .section-tag::before { background: var(--mint-cyan); }
.cmp-intro .section-lead { margin: 14px auto 0; color: var(--ink-2); }

.cmp-wrap {
  max-width: 1080px;
  margin: 0 auto;
  position: relative;
  z-index: 1;
  background: var(--white);
  border-radius: var(--r-lg);
  padding: 14px;
  box-shadow: var(--sh-3);
  overflow: hidden;
}

.vs-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0;
}
.vs-table th,
.vs-table td {
  padding: 18px 22px;
  text-align: left;
  font-size: 0.94rem;
  vertical-align: top;
  line-height: 1.6;
}

.vs-table thead th {
  font-family: var(--mono);
  font-size: 0.72rem;
  letter-spacing: 0.07em;
  text-transform: uppercase;
  font-weight: 500;
  padding: 12px 22px 14px;
  border-bottom: 1px solid var(--line);
}
.vs-table thead .vs-h-excel {
  color: var(--mid);
  background: var(--paper);
}
.vs-table thead .vs-h-flow {
  color: var(--ink);
  background: var(--mint-cyan);
  border-top-left-radius: 12px;
  border-top-right-radius: 12px;
}

.vs-table tbody tr { border-top: 1px dashed var(--line); }
.vs-table tbody tr:first-child { border-top: none; }

.vs-table tbody th {
  font-family: var(--serif);
  font-weight: 400;
  font-style: italic;
  color: var(--ink);
  font-size: 1.05rem;
  letter-spacing: -0.01em;
  width: 26%;
  padding-right: 16px;
}

.vs-excel,
.vs-flow {
  padding-left: 48px !important;
  position: relative;
}
.vs-excel {
  color: var(--mid);
  background: var(--paper);
}
.vs-excel::before {
  content: '✕';
  position: absolute;
  left: 22px;
  top: 18px;
  color: var(--rust);
  font-weight: 700;
  font-size: 1rem;
  line-height: 1.4;
}
.vs-flow {
  color: var(--ink);
  background: rgba(192,252,247,0.22);
  font-weight: 500;
}
.vs-flow::before {
  content: '✓';
  position: absolute;
  left: 20px;
  top: 16px;
  color: var(--ink);
  background: var(--mint-cyan);
  width: 20px; height: 20px;
  border-radius: 50%;
  display: grid; place-items: center;
  font-size: 0.8rem;
  font-weight: 700;
}
.vs-table tbody tr:last-child .vs-flow {
  border-bottom-left-radius: 12px;
  border-bottom-right-radius: 12px;
}

/* ════════════════════════════════════════════════════════════════════
   EXCEL · CTA (Bestandsaufnahme)
   ════════════════════════════════════════════════════════════════════ */

.excel-cta {
  background: var(--lavender);
  --em-underline: var(--mint-cyan);
  position: relative;
  overflow: hidden;
}
.excel-cta::before {
  content: '';
  position: absolute;
  top: -120px; right: -100px;
  width: 380px; height: 380px;
  background: var(--mint-cyan);
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.65;
  pointer-events: none;
}
.excel-cta::after {
  content: '';
  position: absolute;
  bottom: -100px; left: -80px;
  width: 320px; height: 320px;
  background: var(--leaf);
  border-radius: 50%;
  filter: blur(90px);
  opacity: 0.45;
  pointer-events: none;
}

.ec-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: clamp(40px, 5vw, 70px);
  max-width: 1180px;
  margin: 0 auto;
  align-items: start;
  position: relative;
  z-index: 1;
}

.ec-aside .section-tag {
  background: var(--ink);
  color: var(--white);
  border-color: transparent;
}
.ec-aside .section-tag::before { background: var(--mint-cyan); }
.ec-aside .section-lead {
  margin-top: 14px;
  color: var(--ink-2);
}

.ec-points {
  margin-top: 32px;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.ec-point {
  background: var(--white);
  border-left: 3px solid var(--mint-cyan);
  border-radius: 0 var(--r-md) var(--r-md) 0;
  padding: 16px 20px;
  display: flex;
  flex-direction: column;
  gap: 4px;
  box-shadow: var(--sh-1);
}
.ec-point:nth-child(2) { border-left-color: var(--leaf); }
.ec-point:nth-child(3) { border-left-color: var(--indigo); }
.ec-point strong {
  font-family: var(--sans);
  font-weight: 700;
  font-size: 0.95rem;
  color: var(--ink);
  letter-spacing: -0.005em;
}
.ec-point span {
  font-size: 0.88rem;
  color: var(--mid);
  line-height: 1.55;
}

.excel-form {
  background: var(--white);
  color: var(--ink);
  border-radius: var(--r-lg);
  padding: clamp(28px, 4vw, 40px);
  box-shadow: var(--sh-3);
  display: flex;
  flex-direction: column;
  gap: 18px;
}
.ec-form-head { margin-bottom: 8px; }
.ec-form-head h3 {
  font-family: var(--serif);
  font-weight: 400;
  font-size: 1.55rem;
  color: var(--ink);
  letter-spacing: -0.012em;
  line-height: 1.15;
  margin-bottom: 6px;
}
.ec-form-head p {
  font-size: 0.9rem;
  color: var(--mid);
  line-height: 1.55;
}

/* ════════════════════════════════════════════════════════════════════
   404 · ABWESEND
   ════════════════════════════════════════════════════════════════════ */

.nf {
  min-height: calc(100vh - 68px);
  display: flex;
  align-items: center;
  padding: 120px clamp(20px, 6vw, 96px) 80px;
  background:
    radial-gradient(ellipse 60% 50% at 18% 22%, var(--mint-cyan) 0%, transparent 55%),
    radial-gradient(ellipse 55% 45% at 88% 78%, var(--lavender) 0%, transparent 55%),
    radial-gradient(ellipse 40% 35% at 60% 18%, var(--leaf) 0%, transparent 55%),
    var(--paper);
  position: relative;
  overflow: hidden;
  --em-underline: var(--mint-cyan);
}
.nf::before {
  content: '';
  position: absolute; inset: 0;
  background-image: radial-gradient(circle, rgba(14,26,43,0.06) 1px, transparent 1.2px);
  background-size: 26px 26px;
  mask-image: radial-gradient(ellipse 70% 55% at 50% 45%, black 30%, transparent 80%);
  -webkit-mask-image: radial-gradient(ellipse 70% 55% at 50% 45%, black 30%, transparent 80%);
  pointer-events: none;
}

.nf-grid {
  display: grid;
  grid-template-columns: 1fr 1.05fr;
  gap: clamp(40px, 6vw, 80px);
  max-width: 1180px;
  margin: 0 auto;
  width: 100%;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* ── Visual side ── */
.nf-visual {
  position: relative;
  min-height: 420px;
  display: grid;
  place-items: center;
}

.nf-stamp {
  position: relative;
  width: 320px;
  height: 320px;
}
.nf-stamp-inner {
  position: absolute;
  inset: 36px;
  border-radius: 50%;
  border: 3px dashed var(--ink);
  background: var(--white);
  display: grid;
  place-items: center;
  text-align: center;
  box-shadow: var(--sh-3);
  transform: rotate(-7deg);
  padding: 12px;
}
.nf-404 {
  font-family: var(--serif);
  font-style: italic;
  font-size: 5rem;
  color: var(--ink);
  line-height: 1;
  letter-spacing: -0.04em;
}
.nf-stamp-label {
  font-family: var(--mono);
  font-size: 0.78rem;
  letter-spacing: 0.22em;
  color: var(--rust);
  margin-top: 10px;
  font-weight: 700;
}
.nf-stamp-curve {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  animation: spin 60s linear infinite;
  pointer-events: none;
}
.nf-stamp-curve text {
  font-family: var(--mono);
  font-size: 10.5px;
  fill: var(--ink-2);
  letter-spacing: 0.18em;
  opacity: 0.6;
}

/* Floating stickers */
.nf-sticker {
  position: absolute;
  font-size: 1.7rem;
  background: var(--white);
  border-radius: 16px;
  padding: 10px 14px;
  box-shadow: var(--sh-sticker);
  border: 1px solid var(--line);
  display: grid;
  place-items: center;
  width: 56px;
  height: 56px;
}
.nf-sticker-1 {
  top: 4%;
  right: 8%;
  background: var(--mint);
  border-color: transparent;
  animation: nf-float-1 5.5s ease-in-out infinite;
}
.nf-sticker-2 {
  bottom: 8%;
  left: 4%;
  background: var(--lavender);
  border-color: transparent;
  animation: nf-float-2 6.5s ease-in-out infinite;
}
.nf-sticker-3 {
  top: 36%;
  left: -2%;
  background: var(--leaf);
  border-color: transparent;
  animation: nf-float-3 7s ease-in-out infinite;
}
@keyframes nf-float-1 {
  0%, 100% { transform: rotate(8deg)  translateY(0); }
  50%      { transform: rotate(11deg) translateY(-10px); }
}
@keyframes nf-float-2 {
  0%, 100% { transform: rotate(-6deg) translateY(0); }
  50%      { transform: rotate(-3deg) translateY(-8px); }
}
@keyframes nf-float-3 {
  0%, 100% { transform: rotate(4deg)  translateY(0); }
  50%      { transform: rotate(2deg)  translateY(-12px); }
}

/* ── Body side ── */
.nf-body .section-tag {
  margin-bottom: 22px;
  background: var(--white);
  border-color: var(--line);
}
.nf-body .section-tag::before { background: var(--rust); }

.nf-body h1 {
  font-size: clamp(2.3rem, 4.8vw, 3.6rem);
  margin-bottom: 22px;
}
.nf-body .section-lead {
  margin-bottom: 36px;
  max-width: 56ch;
}

.nf-list {
  background: var(--white);
  border: 1px solid var(--line);
  border-radius: var(--r-lg);
  padding: 18px 20px 16px;
  margin-bottom: 36px;
  box-shadow: var(--sh-2);
  max-width: 460px;
}
.nf-list-head {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 6px 8px 12px;
  border-bottom: 1px dashed var(--line);
  margin-bottom: 8px;
}
.nf-list-tag {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: var(--ink-2);
  font-weight: 500;
}
.nf-list-count {
  font-family: var(--serif);
  font-style: italic;
  font-size: 1.05rem;
  color: var(--indigo);
  letter-spacing: -0.01em;
}
.nf-list-rows {
  display: flex;
  flex-direction: column;
  gap: 2px;
}
.nf-row {
  display: grid;
  grid-template-columns: 22px 1fr auto;
  align-items: center;
  gap: 12px;
  padding: 11px 12px;
  border-radius: 10px;
  text-decoration: none;
  color: var(--ink);
  transition: background .2s, transform .2s;
}
.nf-row:not(.nf-row-out):hover {
  background: var(--paper-warm);
  transform: translateX(3px);
}
.nf-row-dot {
  width: 10px; height: 10px;
  border-radius: 50%;
  justify-self: center;
  flex-shrink: 0;
}
.nf-row-dot-ok {
  background: #4FB87A;
  box-shadow: 0 0 0 3px rgba(79,184,122,0.18);
}
.nf-row-dot-out {
  background: #C97A4F;
  box-shadow: 0 0 0 3px rgba(201,122,79,0.18);
  animation: nf-pulse-out 2.2s ease-in-out infinite;
}
@keyframes nf-pulse-out {
  0%, 100% { box-shadow: 0 0 0 3px rgba(201,122,79,0.18); }
  50%      { box-shadow: 0 0 0 6px rgba(201,122,79,0.08); }
}

.nf-row-name {
  font-family: var(--sans);
  font-weight: 600;
  font-size: 0.95rem;
}
.nf-row-status {
  font-family: var(--mono);
  font-size: 0.7rem;
  letter-spacing: 0.04em;
  color: var(--mid);
}
.nf-row-out {
  background: rgba(201,122,79,0.08);
  border: 1px dashed rgba(201,122,79,0.4);
}
.nf-row-out .nf-row-name { color: var(--ink-2); }
.nf-row-out .nf-row-status {
  color: var(--rust);
  font-weight: 600;
}

.nf-actions {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  align-items: center;
}

/* Responsive */
@media (max-width: 960px) {
  .nf { padding: 100px 6vw 60px; }
  .nf-grid { grid-template-columns: 1fr; gap: 40px; }
  .nf-visual { order: -1; min-height: 320px; }
  .nf-stamp { width: 260px; height: 260px; }
  .nf-stamp-inner { inset: 30px; }
  .nf-404 { font-size: 4rem; }
  .nf-sticker { width: 48px; height: 48px; font-size: 1.4rem; padding: 8px; }
  .nf-body { text-align: left; }
  .nf-list { max-width: none; }
}

/* ════════════════════════════════════════════════════════════════════
   RESPONSIVE
   ════════════════════════════════════════════════════════════════════ */

@media (max-width: 1080px) {
  .footer-top { grid-template-columns: 1fr 1fr; }
  .features-grid { grid-template-columns: repeat(2, 1fr); }
  .mi-grid { grid-template-columns: repeat(2, 1fr); }
  .sc-grid { grid-template-columns: 1fr; }
  .faq-grid { grid-template-columns: 1fr; }
  .faq-intro { position: static; }
  .tier-grid { grid-template-columns: 1fr; max-width: 560px; }
  .tier-featured { transform: none; }
  .tier-featured:hover { transform: translateY(-5px); }
  .ex-grid { grid-template-columns: 1fr; max-width: 560px; }
  .incl-grid { grid-template-columns: 1fr; max-width: 640px; }
  .extras-grid { grid-template-columns: 1fr; }
  .extras-intro { position: static; }
  .disc-grid { grid-template-columns: 1fr; max-width: 560px; }
  .cw-grid { grid-template-columns: 1fr; max-width: 560px; }
  .cw-card-featured { transform: none; }
  .cw-card-featured:hover { transform: translateY(-5px); }
  .cf-grid { grid-template-columns: 1fr; }
  .cf-aside { position: static; }
  .cwh-grid { grid-template-columns: 1fr; }
  .qf-grid { grid-template-columns: repeat(2, 1fr); }
  .impl-grid { grid-template-columns: repeat(2, 1fr); }
  .hh-grid { grid-template-columns: repeat(2, 1fr); }
  .wp-grid { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: repeat(2, 1fr); }
  .usps-grid { grid-template-columns: 1fr; max-width: 640px; }
  .sd-standorte { grid-template-columns: repeat(2, 1fr); }
  .sd-branches::before { left: 25%; right: 25%; }
  .sd-list { grid-template-columns: 1fr; }
  .tc-grid { grid-template-columns: 1fr; }
  .pros-grid { grid-template-columns: repeat(2, 1fr); }
  .cons-grid { grid-template-columns: repeat(2, 1fr); }
  .ec-grid { grid-template-columns: 1fr; }
}

@media (max-width: 960px) {
  .hero { grid-template-columns: 1fr; padding-top: 120px; padding-bottom: 60px; }
  .hero-visual { display: none; }
  .how-grid { grid-template-columns: 1fr; }
  .audience-grid { grid-template-columns: 1fr; }
  .compliance-grid { grid-template-columns: 1fr; }
}

@media (max-width: 640px) {
  nav { padding: 10px 18px; }
  .nav-links { display: none; }
  .features-grid { grid-template-columns: 1fr; }
  .footer-top { grid-template-columns: 1fr; }
  .feature-detail { padding: 28px 22px; }
  .feat-card { padding: 28px 24px; }
  .aud-card { padding: 32px 26px 30px; }
  .logos-strip {
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
  }
  .comp-visual { grid-template-columns: 1fr 1fr; }
  .feature-bullets { grid-template-columns: 1fr; }
  .hero-stats { flex-wrap: wrap; }
  .mi-grid { grid-template-columns: 1fr; }
  .page-hero-stats { gap: 10px; }
  .ph-stat { min-width: 0; flex: 1 1 calc(50% - 6px); padding: 12px 16px 10px; }
  .ph-stat-num { font-size: 1.4rem; }
  .faq-item summary {
    grid-template-columns: 28px 1fr 30px;
    gap: 12px;
    padding: 18px 18px;
  }
  .faq-a { padding: 0 18px 22px 58px; }
  .faq-q { font-size: 0.96rem; }
  .sc-card { padding: 28px 26px 26px; }
  .tier-card { padding: 30px 26px 28px; }
  .tier-amount { font-size: 2.8rem; }
  .price-switch {
    width: 100%;
    flex-direction: row;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
  }
  .price-switch button {
    padding: 10px 14px;
    font-size: 0.85rem;
    flex-shrink: 0;
  }
  .ps-save { font-size: 0.62rem; padding: 2px 6px; }
  .extra-item { grid-template-columns: 1fr; gap: 10px; }
  .extra-price { justify-self: start; }
  .cf-row { grid-template-columns: 1fr; gap: 18px; }
  .contact-form { padding: 26px 22px; }
  .qf-grid { grid-template-columns: 1fr; }
  .impl-grid { grid-template-columns: 1fr; }
  .hh-grid { grid-template-columns: 1fr; }
  .pain-grid { grid-template-columns: 1fr; }
  .sd-standorte { grid-template-columns: 1fr; }
  .sd-branches::before { display: none; }
  .sd-standort::before { display: none; }
  .sd-traeger { padding: 24px 22px; }
  .sd-traeger h4 { font-size: 1.3rem; }
  .proc-step { grid-template-columns: 1fr; gap: 14px; padding: 22px 22px; }
  .proc-num { font-size: 1.8rem; }
  .traeger-form { padding: 26px 22px; }
  .pros-grid { grid-template-columns: 1fr; }
  .cons-grid { grid-template-columns: 1fr; }
  .excel-form { padding: 26px 22px; }

  /* Comparison table → stacked card layout on mobile */
  .cmp-wrap { padding: 4px; background: transparent; box-shadow: none; }
  .vs-table { display: block; }
  .vs-table thead { display: none; }
  .vs-table tbody { display: flex; flex-direction: column; gap: 14px; }
  .vs-table tbody tr {
    display: grid;
    grid-template-columns: 1fr;
    background: var(--white);
    border-radius: var(--r-md);
    border: 1px solid var(--line);
    border-top: 1px solid var(--line) !important;
    overflow: hidden;
    padding: 0;
  }
  .vs-table tbody th {
    width: auto;
    padding: 16px 20px 8px;
    font-size: 1.1rem;
    border-bottom: 1px dashed var(--line);
  }
  .vs-table .vs-excel,
  .vs-table .vs-flow {
    padding: 14px 20px !important;
    border-radius: 0 !important;
  }
  /* Override the desktop icon — show a block-level label instead */
  .vs-table .vs-excel::before {
    content: 'Excel / Papier  ✕';
    position: static;
    display: block;
    font-family: var(--mono);
    font-size: 0.62rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--rust);
    margin-bottom: 6px;
    font-weight: 500;
    background: transparent;
    width: auto; height: auto;
    border-radius: 0;
    line-height: 1.2;
  }
  .vs-table .vs-flow::before {
    content: 'OGS-Flow  ✓';
    position: static;
    display: block;
    font-family: var(--mono);
    font-size: 0.62rem;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--indigo);
    margin-bottom: 6px;
    font-weight: 500;
    background: transparent;
    width: auto; height: auto;
    border-radius: 0;
    line-height: 1.2;
  }
  .tl-item { grid-template-columns: 70px 1fr; gap: 16px; }
  .tl-marker { width: 66px; height: 66px; font-size: 1.4rem; }
  .tl-marker span { font-size: 0.75rem; }
  .tl-list::before { left: 41px; }
  .tl-body { padding: 18px 20px; }
  .cl-item summary {
    grid-template-columns: 26px 22px 1fr 28px;
    gap: 10px;
    padding: 16px 18px;
  }
  .cl-box { width: 22px; height: 22px; }
  .cl-a { padding: 0 18px 20px 70px; }
  .whitepaper-form { padding: 26px 22px; }
}
