/* ============================================
   MossDeck – Design System & Styles
   ============================================ */

/* === FONT FACE (Local Poppins – DSGVO-konform) === */
/* Falls die lokalen Font-Dateien noch nicht vorhanden sind,
   wird der Google Fonts Import als Fallback genutzt.
   Für Produktion: Fonts lokal in /fonts/ ablegen und
   den @import unten entfernen. */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@400;500;600;700;800&display=swap');

/*
@font-face { font-family: 'Poppins'; src: url('../fonts/Poppins-Regular.woff2') format('woff2'); font-weight: 400; font-style: normal; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('../fonts/Poppins-Medium.woff2') format('woff2'); font-weight: 500; font-style: normal; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('../fonts/Poppins-SemiBold.woff2') format('woff2'); font-weight: 600; font-style: normal; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('../fonts/Poppins-Bold.woff2') format('woff2'); font-weight: 700; font-style: normal; font-display: swap; }
@font-face { font-family: 'Poppins'; src: url('../fonts/Poppins-ExtraBold.woff2') format('woff2'); font-weight: 800; font-style: normal; font-display: swap; }
*/

/* === CSS VARIABLES === */
:root {
  /* Backgrounds */
  --bg-body: #08090c;
  --bg-surface: rgba(255, 255, 255, 0.03);
  --bg-surface-hover: rgba(255, 255, 255, 0.06);
  --bg-elevated: rgba(255, 255, 255, 0.04);

  /* Borders */
  --border-subtle: rgba(255, 255, 255, 0.07);
  --border-medium: rgba(255, 255, 255, 0.12);

  /* Text */
  --text-primary: #ffffff;
  --text-secondary: rgba(255, 255, 255, 0.65);
  --text-muted: rgba(255, 255, 255, 0.4);
  --text-faint: rgba(255, 255, 255, 0.3);

  /* Accent Colors */
  --accent-purple: #8b5cf6;
  --accent-lavender: #a78bfa;
  --accent-cyan: #22d3ee;
  --accent-amber: #f59e0b;
  --accent-green: #34d399;
  --accent-red: #ef4444;

  /* Accent Transparencies */
  --purple-glow: rgba(139, 92, 246, 0.18);
  --cyan-glow: rgba(34, 211, 238, 0.10);
  --purple-bg: rgba(139, 92, 246, 0.12);
  --cyan-bg: rgba(34, 211, 238, 0.08);

  /* Gradients */
  --gradient-bar: linear-gradient(90deg, #8b5cf6 0%, #22d3ee 50%, #8b5cf6 100%);
  --gradient-accent: linear-gradient(90deg, #8b5cf6, #22d3ee);
  --gradient-cta: linear-gradient(135deg, rgba(139,92,246,0.3), rgba(34,211,238,0.2));

  /* Spacing */
  --section-padding: 120px;
  --container-max: 1200px;
  --container-narrow: 800px;

  /* Border Radius */
  --radius-sm: 12px;
  --radius-md: 16px;
  --radius-lg: 24px;
  --radius-pill: 999px;
}

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

html {
  scroll-behavior: smooth;
  scroll-padding-top: 90px;
}

body {
  font-family: 'Poppins', -apple-system, BlinkMacSystemFont, sans-serif;
  font-size: 18px;
  line-height: 1.6;
  color: var(--text-secondary);
  background: var(--bg-body);
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
  overflow-x: hidden;
}

a {
  color: inherit;
  text-decoration: none;
}

img { max-width: 100%; height: auto; }
ul, ol { list-style: none; }

/* === TYPOGRAPHY === */
.h1, h1 { font-size: 64px; font-weight: 800; letter-spacing: -2px; line-height: 1.1; color: var(--text-primary); }
.h2, h2 { font-size: 44px; font-weight: 800; letter-spacing: -1px; line-height: 1.15; color: var(--text-primary); }
.h3, h3 { font-size: 28px; font-weight: 700; letter-spacing: -0.5px; line-height: 1.3; color: var(--text-primary); }
.h4, h4 { font-size: 22px; font-weight: 600; line-height: 1.4; color: var(--text-primary); }

.accent-purple { color: var(--accent-lavender); text-shadow: 0 0 40px rgba(139,92,246,0.4); }
.accent-cyan { color: var(--accent-cyan); text-shadow: 0 0 40px rgba(34,211,238,0.3); }
.accent-amber { color: var(--accent-amber); text-shadow: 0 0 30px rgba(245,158,11,0.3); }

.text-center { text-align: center; }
.text-muted { color: var(--text-muted); }
.text-small { font-size: 14px; }

/* === BACKGROUND LAYERS === */
.bg-grid {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background-image: radial-gradient(circle, rgba(255,255,255,0.05) 1px, transparent 1px);
  background-size: 40px 40px;
  pointer-events: none; z-index: 0;
}

.bg-grid-fade {
  position: fixed; top: 0; left: 0; width: 100%; height: 100%;
  background: radial-gradient(ellipse at 50% 30%, transparent 20%, #08090c 75%);
  pointer-events: none; z-index: 0;
}

.orb-purple {
  position: fixed; top: -200px; right: -150px;
  width: 700px; height: 700px; border-radius: 50%;
  background: radial-gradient(circle, rgba(139,92,246,0.15) 0%, transparent 70%);
  filter: blur(100px); pointer-events: none; z-index: 0;
}

.orb-cyan {
  position: fixed; bottom: -200px; left: -100px;
  width: 600px; height: 600px; border-radius: 50%;
  background: radial-gradient(circle, rgba(34,211,238,0.08) 0%, transparent 70%);
  filter: blur(80px); pointer-events: none; z-index: 0;
}

.top-bar {
  position: fixed; top: 0; left: 0; width: 100%; height: 5px;
  background: var(--gradient-bar);
  z-index: 1001;
}

/* === LAYOUT === */
.container {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  position: relative;
  z-index: 1;
}

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

.section {
  padding: var(--section-padding) 0;
  position: relative;
}

.section--tight {
  padding: 80px 0;
}

/* === NAVIGATION === */
.nav {
  position: fixed;
  top: 5px;
  left: 0;
  width: 100%;
  height: 72px;
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  background: rgba(8,9,12,0.8);
  border-bottom: 1px solid var(--border-subtle);
  z-index: 1000;
  display: flex;
  align-items: center;
}

.nav__inner {
  max-width: var(--container-max);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav__logo {
  font-size: 24px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.5px;
  flex-shrink: 0;
}

.nav__logo span {
  color: var(--accent-lavender);
}

.nav__links {
  display: flex;
  align-items: center;
  gap: 32px;
}

.nav__link {
  color: var(--text-muted);
  font-size: 16px;
  font-weight: 500;
  transition: color 0.3s;
}

.nav__link:hover,
.nav__link.active {
  color: var(--text-primary);
}

.nav__cta {
  display: inline-flex;
  align-items: center;
  height: 42px;
  padding: 0 20px;
  background: var(--gradient-cta);
  border: 1px solid rgba(139,92,246,0.35);
  border-radius: var(--radius-pill);
  color: #fff;
  font-size: 14px;
  font-weight: 600;
  transition: all 0.3s;
  white-space: nowrap;
}

.nav__cta:hover {
  border-color: rgba(139,92,246,0.6);
  box-shadow: 0 0 30px rgba(139,92,246,0.2);
}

/* Hamburger */
.nav__hamburger {
  display: none;
  flex-direction: column;
  gap: 5px;
  cursor: pointer;
  padding: 8px;
  background: none;
  border: none;
  z-index: 1002;
}

.nav__hamburger span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--text-primary);
  border-radius: 2px;
  transition: all 0.3s;
}

/* Mobile Nav */
.nav__mobile-overlay {
  display: none;
  position: fixed;
  top: 0; left: 0;
  width: 100%; height: 100%;
  background: rgba(8,9,12,0.95);
  backdrop-filter: blur(20px);
  z-index: 999;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 32px;
}

.nav__mobile-overlay.open {
  display: flex;
}

.nav__mobile-overlay a {
  font-size: 24px;
  font-weight: 600;
  color: var(--text-secondary);
  transition: color 0.3s;
}

.nav__mobile-overlay a:hover {
  color: var(--text-primary);
}

/* === BADGE === */
.badge {
  display: inline-flex;
  align-items: center;
  height: 36px;
  padding: 0 16px;
  background: var(--purple-bg);
  border: 1px solid rgba(139,92,246,0.4);
  border-radius: var(--radius-pill);
  color: var(--accent-lavender);
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.badge--status {
  background: var(--cyan-bg);
  border-color: rgba(34,211,238,0.4);
  color: var(--accent-cyan);
}

/* === BUTTONS === */
.btn-primary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 32px;
  background: var(--gradient-cta);
  border: 1px solid rgba(139,92,246,0.35);
  border-radius: var(--radius-pill);
  color: #ffffff;
  font-size: 18px;
  font-weight: 600;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-primary:hover {
  border-color: rgba(139,92,246,0.6);
  box-shadow: 0 0 30px rgba(139,92,246,0.2);
  transform: translateY(-1px);
}

.btn-secondary {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  height: 56px;
  padding: 0 32px;
  background: transparent;
  border: 1px solid var(--border-medium);
  border-radius: var(--radius-pill);
  color: var(--text-secondary);
  font-size: 18px;
  font-weight: 500;
  font-family: inherit;
  cursor: pointer;
  transition: all 0.3s;
  text-decoration: none;
  white-space: nowrap;
}

.btn-secondary:hover {
  border-color: var(--text-muted);
  color: var(--text-primary);
}

.btn-arrow::after {
  content: ' →';
}

.btn-group {
  display: flex;
  gap: 16px;
  flex-wrap: wrap;
}

/* === CARDS === */
.card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.card:hover {
  border-color: var(--border-medium);
  transform: translateY(-2px);
}

.card::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 2px;
  background: var(--gradient-accent);
  opacity: 0;
  transition: opacity 0.3s;
}

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

.card__icon {
  width: 48px;
  height: 48px;
  margin-bottom: 20px;
  display: flex;
  align-items: center;
  justify-content: center;
  border-radius: var(--radius-sm);
  background: var(--purple-bg);
}

.card__icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--accent-lavender);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

.card__icon--cyan {
  background: var(--cyan-bg);
}

.card__icon--cyan svg {
  stroke: var(--accent-cyan);
}

.card__title {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.card__text {
  font-size: 16px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* === GRIDS === */
.grid-3 {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}

.grid-2 {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.grid-4 {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 24px;
}

/* === HERO === */
.hero {
  padding: 160px 0 80px;
  text-align: center;
  position: relative;
}

.hero__badge {
  margin-bottom: 32px;
}

.hero__headline {
  max-width: 800px;
  margin: 0 auto 24px;
}

.hero__subline {
  max-width: 640px;
  margin: 0 auto 40px;
  font-size: 20px;
  color: var(--text-secondary);
}

.hero__buttons {
  display: flex;
  gap: 16px;
  justify-content: center;
  flex-wrap: wrap;
}

/* === TRUST BAR === */
.trust-bar {
  display: flex;
  justify-content: center;
  gap: 40px;
  padding: 40px 0;
  flex-wrap: wrap;
}

.trust-bar__item {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 500;
}

.trust-bar__item span {
  font-size: 20px;
}

/* === PAIN POINTS === */
.pain-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
  margin-top: 48px;
}

.pain-item {
  display: inline-flex;
  align-items: center;
  padding: 16px 24px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-md);
  color: var(--text-secondary);
  font-size: 16px;
  font-weight: 500;
  transition: border-color 0.3s;
}

.pain-item:hover {
  border-color: rgba(239, 68, 68, 0.3);
}

.pain-item::before {
  content: '✕';
  margin-right: 12px;
  color: var(--accent-red);
  font-weight: 700;
  font-size: 14px;
}

/* === SECTION HEADERS === */
.section-header {
  text-align: center;
  margin-bottom: 64px;
}

.section-header .h2,
.section-header h2 {
  margin-bottom: 16px;
}

.section-header p {
  max-width: 640px;
  margin: 0 auto;
  font-size: 18px;
}

/* === PLATFORM MOCKUPS (KI Deep Dive) === */
.platform-mockups {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.platform-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.platform-card:hover {
  border-color: var(--border-medium);
  transform: translateY(-2px);
}

.platform-card__header {
  padding: 16px 24px;
  border-bottom: 1px solid var(--border-subtle);
  display: flex;
  align-items: center;
  gap: 10px;
  font-weight: 600;
  font-size: 15px;
  color: var(--text-primary);
}

.platform-card__header .dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.platform-card__header .dot--ig { background: linear-gradient(45deg, #f09433, #e6683c, #dc2743, #cc2366, #bc1888); }
.platform-card__header .dot--li { background: #0a66c2; }
.platform-card__header .dot--fb { background: #1877f2; }

.platform-card__body {
  padding: 24px;
  font-size: 14px;
  line-height: 1.7;
  color: var(--text-secondary);
  min-height: 200px;
}

.platform-card__body .hashtags {
  color: var(--accent-lavender);
  margin-top: 12px;
  font-size: 13px;
}

.platform-card__body .emoji {
  font-size: 16px;
}

.platform-card__body .bold-text {
  color: var(--text-primary);
  font-weight: 600;
}

/* === FUEL GAUGE === */
.gauge-section {
  max-width: 600px;
  margin: 48px auto 0;
}

.gauge-item {
  margin-bottom: 28px;
}

.gauge-label {
  display: flex;
  justify-content: space-between;
  margin-bottom: 10px;
  font-size: 15px;
  font-weight: 600;
}

.gauge-label__name {
  color: var(--text-primary);
}

.gauge-label__value {
  color: var(--text-muted);
}

.gauge-bar {
  height: 10px;
  border-radius: 5px;
  background: rgba(255,255,255,0.08);
  overflow: hidden;
}

.gauge-fill {
  height: 100%;
  border-radius: 5px;
  width: 0;
  transition: width 1.5s ease-out;
}

.gauge-fill--green { background: linear-gradient(90deg, var(--accent-green), #6ee7b7); }
.gauge-fill--yellow { background: linear-gradient(90deg, var(--accent-amber), #fbbf24); }
.gauge-fill--red { background: linear-gradient(90deg, var(--accent-red), #f87171); }

/* === WAITLIST FORM === */
.waitlist-form {
  display: flex;
  gap: 12px;
  max-width: 500px;
  margin: 0 auto;
}

.waitlist-input {
  flex: 1;
  height: 56px;
  padding: 0 24px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-pill);
  color: var(--text-primary);
  font-size: 16px;
  font-family: inherit;
  outline: none;
  transition: border-color 0.3s, box-shadow 0.3s;
}

.waitlist-input::placeholder {
  color: var(--text-faint);
}

.waitlist-input:focus {
  border-color: var(--accent-purple);
  box-shadow: 0 0 0 3px rgba(139,92,246,0.15);
}

.waitlist-hint {
  text-align: center;
  margin-top: 16px;
  font-size: 14px;
  color: var(--text-faint);
}

/* === CTA SECTION === */
.cta-section {
  text-align: center;
  padding: var(--section-padding) 0;
  position: relative;
}

.cta-section::before {
  content: '';
  position: absolute;
  top: 0; left: 50%; transform: translateX(-50%);
  width: 600px; height: 600px;
  background: radial-gradient(circle, rgba(139,92,246,0.08) 0%, transparent 70%);
  pointer-events: none;
}

.cta-section h2 {
  margin-bottom: 16px;
}

.cta-section p {
  max-width: 560px;
  margin: 0 auto 40px;
}

/* === FOOTER === */
.footer {
  border-top: 1px solid var(--border-subtle);
  padding: 48px 0 32px;
  position: relative;
  z-index: 1;
}

.footer__inner {
  display: flex;
  justify-content: space-between;
  align-items: flex-start;
  gap: 40px;
  flex-wrap: wrap;
}

.footer__brand {
  font-size: 20px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.footer__brand span {
  color: var(--accent-lavender);
}

.footer__tagline {
  font-size: 14px;
  color: var(--text-faint);
}

.footer__links {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
}

.footer__link {
  color: var(--text-muted);
  font-size: 15px;
  font-weight: 500;
  transition: color 0.3s;
}

.footer__link:hover {
  color: var(--text-primary);
}

.footer__bottom {
  margin-top: 40px;
  padding-top: 24px;
  border-top: 1px solid var(--border-subtle);
  display: flex;
  justify-content: space-between;
  align-items: center;
  flex-wrap: wrap;
  gap: 16px;
}

.footer__copy {
  font-size: 14px;
  color: var(--text-faint);
}

.footer__made {
  font-size: 14px;
  color: var(--text-faint);
}

/* === PRICING CARDS === */
.pricing-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  align-items: start;
}

.pricing-card {
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  padding: 40px 32px;
  position: relative;
  overflow: hidden;
  transition: border-color 0.3s, transform 0.3s;
}

.pricing-card:hover {
  border-color: var(--border-medium);
  transform: translateY(-2px);
}

.pricing-card--featured {
  border-color: rgba(139,92,246,0.4);
}

.pricing-card--featured::before {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: var(--gradient-accent);
}

.pricing-card__name {
  font-size: 14px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 2px;
  color: var(--accent-lavender);
  margin-bottom: 8px;
}

.pricing-card__for {
  font-size: 16px;
  color: var(--text-secondary);
  margin-bottom: 24px;
}

.pricing-card__price {
  font-size: 36px;
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.pricing-card__price-note {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 32px;
}

.pricing-card__features {
  margin-bottom: 32px;
}

.pricing-card__feature {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 8px 0;
  font-size: 15px;
  color: var(--text-secondary);
}

.pricing-card__feature::before {
  content: '✓';
  color: var(--accent-green);
  font-weight: 700;
  flex-shrink: 0;
  margin-top: 1px;
}

.pricing-card .btn-primary,
.pricing-card .btn-secondary {
  width: 100%;
  font-size: 16px;
  height: 48px;
}

/* === TIMELINE === */
.timeline {
  position: relative;
  max-width: 600px;
  margin: 48px auto 0;
  padding-left: 40px;
}

.timeline::before {
  content: '';
  position: absolute;
  left: 12px; top: 8px; bottom: 8px;
  width: 2px;
  background: var(--border-subtle);
}

.timeline__item {
  position: relative;
  padding-bottom: 40px;
}

.timeline__item:last-child {
  padding-bottom: 0;
}

.timeline__dot {
  position: absolute;
  left: -34px;
  top: 6px;
  width: 12px;
  height: 12px;
  border-radius: 50%;
  background: var(--accent-purple);
  border: 2px solid var(--bg-body);
  box-shadow: 0 0 0 3px var(--purple-bg);
}

.timeline__item--active .timeline__dot {
  background: var(--accent-cyan);
  box-shadow: 0 0 0 3px var(--cyan-bg), 0 0 12px var(--accent-cyan);
}

.timeline__item--future .timeline__dot {
  background: var(--text-faint);
  box-shadow: 0 0 0 3px rgba(255,255,255,0.05);
}

.timeline__year {
  font-size: 14px;
  font-weight: 700;
  color: var(--accent-lavender);
  text-transform: uppercase;
  letter-spacing: 1px;
  margin-bottom: 4px;
}

.timeline__text {
  font-size: 16px;
  color: var(--text-secondary);
}

/* === FEATURE GROUPS (features.html) === */
.feature-group {
  margin-bottom: 80px;
}

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

.feature-group__title {
  font-size: 16px;
  font-weight: 700;
  color: var(--accent-lavender);
  text-transform: uppercase;
  letter-spacing: 2px;
  margin-bottom: 32px;
  padding-bottom: 16px;
  border-bottom: 1px solid var(--border-subtle);
}

/* === AGENCY PAGE === */
.agency-hero {
  text-align: center;
  padding: 160px 0 80px;
}

.agency-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.stat-card {
  text-align: center;
  padding: 32px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
}

.stat-card__number {
  font-size: 48px;
  font-weight: 800;
  background: var(--gradient-accent);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-card__label {
  font-size: 15px;
  color: var(--text-muted);
  margin-top: 8px;
}

/* === ABOUT PAGE === */
.about-intro {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 64px;
  align-items: center;
}

.about-portrait {
  width: 100%;
  aspect-ratio: 1;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--text-faint);
  font-size: 14px;
}

.values-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
  margin-top: 48px;
}

.value-card {
  padding: 32px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
}

.value-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 8px;
}

.value-card__text {
  font-size: 15px;
  color: var(--text-secondary);
}

/* === LEGAL PAGES === */
.legal {
  padding: 140px 0 80px;
}

.legal h1 {
  font-size: 36px;
  margin-bottom: 8px;
}

.legal .legal-date {
  font-size: 14px;
  color: var(--text-faint);
  margin-bottom: 48px;
}

.legal h2 {
  font-size: 22px;
  margin-top: 48px;
  margin-bottom: 16px;
}

.legal p {
  margin-bottom: 16px;
  font-size: 16px;
  line-height: 1.7;
}

.legal ul {
  margin-bottom: 16px;
  padding-left: 24px;
}

.legal ul li {
  position: relative;
  padding-left: 16px;
  margin-bottom: 8px;
  font-size: 16px;
  line-height: 1.6;
}

.legal ul li::before {
  content: '–';
  position: absolute;
  left: 0;
  color: var(--text-faint);
}

.legal a {
  color: var(--accent-lavender);
  text-decoration: underline;
  text-underline-offset: 3px;
}

.legal a:hover {
  color: var(--accent-cyan);
}

/* === SCROLL REVEAL === */
.reveal {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.8s ease, transform 0.8s ease;
}

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

.reveal-delay-1 { transition-delay: 0.1s; }
.reveal-delay-2 { transition-delay: 0.2s; }
.reveal-delay-3 { transition-delay: 0.3s; }
.reveal-delay-4 { transition-delay: 0.4s; }
.reveal-delay-5 { transition-delay: 0.5s; }

/* === DIVIDER === */
.divider {
  width: 100%;
  height: 1px;
  background: var(--border-subtle);
  margin: 0;
}

/* === WHY MOSSDECK (Differenzierung) === */
.diff-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 24px;
}

.diff-card {
  padding: 32px;
  background: var(--bg-surface);
  border: 1px solid var(--border-subtle);
  border-radius: var(--radius-lg);
  transition: border-color 0.3s;
}

.diff-card:hover {
  border-color: var(--border-medium);
}

.diff-card__title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 10px;
}

.diff-card__text {
  font-size: 15px;
  color: var(--text-secondary);
  line-height: 1.6;
}

/* === RESPONSIVE === */
@media (max-width: 1024px) {
  .grid-3 { grid-template-columns: repeat(2, 1fr); }
  .grid-4 { grid-template-columns: repeat(2, 1fr); }
  .pricing-grid { grid-template-columns: repeat(2, 1fr); }
  .about-intro { grid-template-columns: 1fr; gap: 40px; }
  .agency-stats { grid-template-columns: repeat(2, 1fr); }
  .platform-mockups { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  .h1, h1 { font-size: 36px; letter-spacing: -1px; }
  .h2, h2 { font-size: 28px; letter-spacing: -0.5px; }
  .h3, h3 { font-size: 22px; }
  .h4, h4 { font-size: 18px; }
  body { font-size: 16px; }

  .section { padding: 60px 0; }
  .hero { padding: 120px 0 60px; }
  .hero__subline { font-size: 17px; }

  .nav__links { display: none; }
  .nav__hamburger { display: flex; }

  .grid-3, .grid-2, .grid-4 { grid-template-columns: 1fr; }
  .pricing-grid { grid-template-columns: 1fr; }
  .diff-grid { grid-template-columns: 1fr; }
  .platform-mockups { grid-template-columns: 1fr; }
  .agency-stats { grid-template-columns: 1fr; }
  .values-grid { grid-template-columns: 1fr; }

  .trust-bar { gap: 20px; }
  .trust-bar__item { font-size: 13px; }

  .btn-group { flex-direction: column; align-items: center; }
  .btn-primary, .btn-secondary { width: 100%; max-width: 320px; justify-content: center; }

  .waitlist-form { flex-direction: column; }
  .waitlist-form .btn-primary { width: 100%; }

  .footer__inner { flex-direction: column; }
  .footer__bottom { flex-direction: column; text-align: center; }

  .section-header { margin-bottom: 40px; }

  .legal h1 { font-size: 28px; }
  .legal { padding: 120px 0 60px; }

  .pain-grid { gap: 12px; }
  .pain-item { font-size: 14px; padding: 12px 16px; }
}

@media (max-width: 480px) {
  .hero { padding: 110px 0 40px; }
  .container { padding: 0 16px; }
  .card { padding: 24px; }
  .trust-bar { flex-direction: column; align-items: center; gap: 12px; }
}
