/* ===========================
   SUP UNTERNEHMENSGRUPPE
   Premium Social Media Pitch Page
   =========================== */

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

:root {
  /* Premium Farbschema */
  --bg-primary: #0B0E12;
  --bg-secondary: #1B2229;
  --accent: #C46A3C;
  --accent-hover: #FF8A4C;
  --text-primary: #F5F5F5;
  --text-muted: rgba(245,245,245,0.55);
  --text-subtle: rgba(245,245,245,0.3);
  --border: rgba(245,245,245,0.07);
  --border-accent: rgba(196,106,60,0.3);

  /* Legacy-Kompatibilität (SUP-Logo-Farben für Badges/Akzente) */
  --black: #0B0E12;
  --white: #F5F5F5;
  --teal: #C46A3C;
  --teal-dark: #A85A30;
  --red: #C46A3C;
  --red-signal: #FF8A4C;
  --yellow: #C46A3C;
  --gray-900: #0B0E12;
  --gray-800: #111418;
  --gray-700: #161B22;
  --gray-600: #1B2229;
  --gray-500: #222A33;
  --gray-400: #2C3640;
  --gray-300: #4A5568;
  --gray-200: #718096;
  --gray-100: #A0AEC0;

  --font-main: 'Inter', system-ui, sans-serif;
  --font-display: 'Space Grotesk', system-ui, sans-serif;
  --radius-sm: 4px;
  --radius-md: 8px;
  --radius-lg: 14px;
  --radius-xl: 20px;
  --shadow-card: 0 2px 20px rgba(0,0,0,0.5), 0 1px 4px rgba(0,0,0,0.4);
  --shadow-glow-teal: 0 0 40px rgba(196,106,60,0.08);
  --shadow-glow-red: 0 0 40px rgba(196,106,60,0.08);
  --transition: 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

html {
  scroll-behavior: smooth;
  font-size: 16px;
}

body {
  font-family: var(--font-main);
  background-color: var(--bg-primary);
  color: var(--text-primary);
  line-height: 1.7;
  overflow-x: hidden;
  -webkit-font-smoothing: antialiased;
  -moz-osx-font-smoothing: grayscale;
}

/* --- TYPOGRAPHY --- */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  font-weight: 700;
  line-height: 1.15;
  letter-spacing: -0.02em;
}

/* --- LAYOUT --- */
.container {
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 32px;
}

.section {
  padding: 120px 0;
  position: relative;
}

.section-dark {
  background-color: var(--bg-primary);
}

.section-darker {
  background-color: var(--bg-secondary);
}

/* --- NAVBAR --- */
.navbar {
  position: fixed;
  top: 0;
  left: 0;
  right: 0;
  z-index: 1000;
  padding: 12px 0;
  transition: var(--transition);
  background: rgba(11,14,18,0.88);
  backdrop-filter: blur(16px);
  -webkit-backdrop-filter: blur(16px);
  border-bottom: 1px solid var(--border);
}

.navbar.scrolled {
  background: rgba(11,14,18,0.98);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border-bottom: 1px solid var(--border-accent);
  padding: 10px 0;
}

.nav-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.nav-logo {
  flex-shrink: 0;
}

.logo-mark {
  display: flex;
  flex-direction: column;
  line-height: 1;
}

.logo-text-sup {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 22px;
  color: var(--teal);
  letter-spacing: 0.05em;
}

.logo-text-group {
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 8px;
  color: var(--gray-200);
  letter-spacing: 0.2em;
  text-transform: uppercase;
  margin-top: 1px;
}

/* Logo-Bilder */
.nav-logo-img {
  height: 52px;
  width: auto;
  display: block;
  filter: brightness(1);
  transition: opacity 0.2s ease;
}

.nav-logo-img:hover {
  opacity: 0.85;
}

.logo-hero-img {
  height: 140px;
  width: auto;
  display: block;
  margin: 0 auto;
  filter: drop-shadow(0 0 24px rgba(0,151,167,0.3));
}

.cta-logo-img {
  height: 90px;
  width: auto;
  display: block;
  margin: 0 auto;
  opacity: 0.9;
}

.footer-logo-img {
  height: 64px;
  width: auto;
  display: block;
  margin: 0 auto;
  opacity: 0.8;
}

.nav-links {
  display: flex;
  align-items: center;
  gap: 32px;
  list-style: none;
}

.nav-links a {
  font-size: 14px;
  font-weight: 500;
  color: var(--gray-100);
  text-decoration: none;
  transition: color var(--transition);
  letter-spacing: 0.01em;
}

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

.nav-cta {
  background: var(--teal) !important;
  color: var(--white) !important;
  padding: 8px 20px;
  border-radius: var(--radius-sm);
  font-weight: 600 !important;
  transition: background var(--transition) !important;
}

.nav-cta:hover {
  background: var(--teal-dark) !important;
}

.nav-toggle {
  display: none;
  flex-direction: column;
  gap: 5px;
  background: none;
  border: none;
  cursor: pointer;
  padding: 4px;
}

.nav-toggle span {
  display: block;
  width: 24px;
  height: 2px;
  background: var(--white);
  border-radius: 2px;
  transition: var(--transition);
}

/* --- HERO --- */
.hero {
  min-height: 100vh;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
  padding: 140px 32px 100px;
  background: var(--bg-primary);
}

.hero-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.hero-grid {
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255,255,255,0.02) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255,255,255,0.02) 1px, transparent 1px);
  background-size: 80px 80px;
}

/* Dezente Trennlinie unter Hero */
.hero::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--accent), transparent);
  z-index: 2;
}

.hero-glow {
  position: absolute;
  border-radius: 50%;
  filter: blur(80px);
  opacity: 0.35;
}

.hero-glow-1 {
  width: 700px;
  height: 700px;
  background: radial-gradient(circle, rgba(196,106,60,0.12) 0%, transparent 65%);
  top: -250px;
  right: -150px;
}

.hero-glow-2 {
  width: 500px;
  height: 500px;
  background: radial-gradient(circle, rgba(196,106,60,0.06) 0%, transparent 65%);
  bottom: -150px;
  left: -150px;
}

.hero-container {
  position: relative;
  z-index: 1;
  max-width: 900px;
  margin: 0 auto;
  text-align: center;
}

.hero-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  justify-content: center;
  margin-bottom: 40px;
}

.badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.badge-teal {
  background: rgba(196, 106, 60, 0.12);
  border: 1px solid rgba(196, 106, 60, 0.35);
  color: var(--accent-hover);
}

.badge-red {
  background: rgba(196, 106, 60, 0.08);
  border: 1px solid rgba(196, 106, 60, 0.25);
  color: var(--accent);
}

.badge-yellow {
  background: rgba(245, 245, 245, 0.06);
  border: 1px solid rgba(245, 245, 245, 0.15);
  color: var(--text-muted);
}

.logo-hero {
  margin-bottom: 36px;
}

.logo-hero-mark {
  display: inline-flex;
  align-items: center;
  gap: 16px;
}

.logo-hero-icon svg {
  width: 56px;
  height: 56px;
  border-radius: 14px;
  box-shadow: 0 0 30px rgba(0,151,167,0.4);
}

.logo-hero-text {
  display: flex;
  flex-direction: column;
  text-align: left;
}

.logo-hero-main {
  font-family: var(--font-display);
  font-weight: 800;
  font-size: 32px;
  color: var(--teal);
  letter-spacing: 0.06em;
  line-height: 1;
}

.logo-hero-sub {
  font-family: var(--font-main);
  font-weight: 500;
  font-size: 9px;
  color: var(--gray-200);
  letter-spacing: 0.22em;
  text-transform: uppercase;
  margin-top: 4px;
}

.hero-headline {
  font-size: clamp(38px, 6vw, 76px);
  font-weight: 800;
  line-height: 1.06;
  letter-spacing: -0.03em;
  color: var(--text-primary);
  margin-bottom: 28px;
}

.headline-accent {
  color: var(--accent);
}

.hero-subline {
  font-size: clamp(16px, 2vw, 19px);
  color: var(--text-muted);
  font-weight: 400;
  line-height: 1.75;
  margin-bottom: 48px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.desktop-break {
  display: none;
}

@media (min-width: 768px) {
  .desktop-break { display: inline; }
}

.hero-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
}

.hero-scroll-indicator {
  position: absolute;
  bottom: 32px;
  left: 50%;
  transform: translateX(-50%);
  z-index: 1;
}

.scroll-line {
  width: 1px;
  height: 48px;
  background: linear-gradient(to bottom, var(--accent), transparent);
  margin: 0 auto;
  animation: scrollPulse 2s ease-in-out infinite;
}

@keyframes scrollPulse {
  0%, 100% { opacity: 0.4; transform: scaleY(1); }
  50% { opacity: 1; transform: scaleY(1.1); }
}

/* --- BUTTONS --- */
.btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 28px;
  border-radius: var(--radius-sm);
  font-family: var(--font-main);
  font-size: 15px;
  font-weight: 600;
  text-decoration: none;
  transition: all var(--transition);
  cursor: pointer;
  border: none;
  letter-spacing: 0.01em;
}

.btn-primary {
  background: var(--accent);
  color: #fff;
  letter-spacing: 0.02em;
}

.btn-primary:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 28px rgba(196,106,60,0.35);
}

.btn-outline {
  background: transparent;
  color: var(--text-primary);
  border: 1px solid var(--border);
}

.btn-outline:hover {
  background: rgba(245,245,245,0.04);
  border-color: rgba(245,245,245,0.3);
  transform: translateY(-2px);
}

.btn-large {
  padding: 16px 36px;
  font-size: 16px;
}

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

.section-label {
  display: inline-block;
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 16px;
  padding: 5px 14px;
  border: 1px solid var(--border-accent);
  border-radius: 100px;
  background: rgba(196,106,60,0.06);
}

.section-title {
  font-size: clamp(30px, 4vw, 48px);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: -0.025em;
}

.section-intro {
  font-size: 17px;
  color: var(--text-muted);
  max-width: 620px;
  margin: 0 auto;
  line-height: 1.8;
}

/* --- CARDS --- */
.cards-grid {
  display: grid;
  gap: 20px;
}

.cards-4 {
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
}

.card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-accent), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.card:hover {
  border-color: var(--border-accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-glow-teal), var(--shadow-card);
}

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

.card-glow {
  box-shadow: var(--shadow-card);
}

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

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

.card-icon-teal {
  background: rgba(196,106,60,0.12);
  color: var(--accent);
  border: 1px solid var(--border-accent);
}

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

.card-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- PILLARS --- */
.pillars-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
  gap: 20px;
}

.pillar {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  transition: all var(--transition);
  position: relative;
  overflow: hidden;
}

.pillar:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.pillar-header {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 20px;
}

.pillar-number {
  font-family: var(--font-display);
  font-size: 42px;
  font-weight: 800;
  color: rgba(255,255,255,0.06);
  line-height: 1;
  letter-spacing: -0.03em;
}

.pillar-accent {
  width: 40px;
  height: 4px;
  border-radius: 2px;
}

.pillar-accent-teal { background: var(--accent); }
.pillar-accent-red { background: var(--accent-hover); }

/* Dezente Sektions-Trenner */
.section-darker::before,
.angebot-section::before {
  content: '';
  display: block;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-accent), transparent);
  width: 120px;
  margin: 0 auto 0;
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
}
.pillar-accent-yellow { background: var(--yellow); }

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

.pillar-desc {
  font-size: 14px;
  color: var(--text-muted);
  margin-bottom: 20px;
  line-height: 1.7;
}

.pillar-list {
  list-style: none;
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.pillar-list li {
  font-size: 13px;
  color: var(--text-muted);
  padding-left: 16px;
  position: relative;
}

.pillar-list li::before {
  content: '';
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: var(--accent);
}

/* --- POSTS GRID --- */
.posts-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 24px;
}

.post-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
  box-shadow: var(--shadow-card);
}

.post-card:hover {
  transform: translateY(-4px);
  border-color: var(--border-accent);
  box-shadow: var(--shadow-glow-teal), 0 16px 40px rgba(0,0,0,0.5);
}

/* Post Visuals */
.post-visual {
  height: 240px;
  position: relative;
  overflow: hidden;
}

.post-visual-img {
  height: 240px;
  overflow: hidden;
  border-radius: 0;
}

.post-visual-img img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center top;
  display: block;
  transition: transform 0.5s ease;
}

.post-card:hover .post-visual-img img {
  transform: scale(1.04);
}

/* Split Visual */
.post-visual-split {
  display: flex;
}

.post-before {
  flex: 1;
  background: linear-gradient(135deg, #1a1a1a 0%, #111 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.post-after {
  flex: 1;
  background: linear-gradient(135deg, #0a2020 0%, #001a1a 100%);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
}

.post-split-divider {
  position: absolute;
  left: 50%;
  top: 0;
  bottom: 0;
  width: 2px;
  background: var(--teal);
  transform: translateX(-50%);
  z-index: 2;
}

.post-label-before, .post-label-after {
  position: absolute;
  top: 12px;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.15em;
  padding: 3px 8px;
  border-radius: 3px;
}

.post-label-before {
  left: 8px;
  background: rgba(229,57,53,0.2);
  color: #ef5350;
  border: 1px solid rgba(229,57,53,0.3);
}

.post-label-after {
  right: 8px;
  background: rgba(0,151,167,0.2);
  color: var(--teal);
  border: 1px solid rgba(0,151,167,0.3);
}

.post-dirt-lines, .post-clean-lines {
  display: flex;
  flex-direction: column;
  gap: 6px;
  padding: 0 16px;
  margin-top: 20px;
}

.dirt-line, .clean-line {
  height: 3px;
  border-radius: 2px;
  width: 100%;
}

.dirt-line { background: rgba(255,255,255,0.08); }
.clean-line { background: rgba(0,151,167,0.4); }
.dirt-line.short, .clean-line.short { width: 60%; }

/* Winter Visual */
.post-visual-winter {
  background: linear-gradient(180deg, #000510 0%, #001020 50%, #0a1a0a 100%);
}

.post-winter-bg {
  height: 100%;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
}

.winter-time {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 28px;
  font-weight: 800;
  color: var(--white);
  letter-spacing: -0.02em;
  text-shadow: 0 0 20px rgba(0,151,167,0.5);
}

.winter-stars {
  position: absolute;
  top: 20px;
  right: 20px;
  display: flex;
  gap: 6px;
  font-size: 8px;
  color: rgba(255,255,255,0.4);
}

.winter-horizon {
  position: absolute;
  bottom: 50px;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, transparent, rgba(0,151,167,0.4), transparent);
}

.winter-vehicle {
  position: absolute;
  bottom: 30px;
  left: 30px;
  display: flex;
  align-items: flex-end;
  gap: 4px;
}

.vehicle-body {
  width: 60px;
  height: 20px;
  background: rgba(0,151,167,0.3);
  border-radius: 4px 8px 0 0;
  border: 1px solid rgba(0,151,167,0.5);
}

.vehicle-light {
  width: 8px;
  height: 8px;
  background: var(--yellow);
  border-radius: 50%;
  margin-bottom: 6px;
  box-shadow: 0 0 12px var(--yellow);
}

/* Team Visual */
.post-visual-team {
  background: linear-gradient(135deg, #0a0a0a 0%, #111 100%);
}

.post-team-bg {
  height: 100%;
  display: flex;
  align-items: flex-end;
  justify-content: center;
  padding-bottom: 16px;
  position: relative;
}

.team-silhouettes {
  display: flex;
  align-items: flex-end;
  gap: 12px;
  margin-bottom: 8px;
}

.team-person {
  border-radius: 4px 4px 0 0;
  background: rgba(0,151,167,0.25);
  border: 1px solid rgba(0,151,167,0.4);
  width: 28px;
}

.team-person.tall { height: 80px; }
.team-person.medium { height: 65px; }
.team-person.short { height: 55px; }

.team-label {
  position: absolute;
  top: 16px;
  left: 50%;
  transform: translateX(-50%);
  font-family: var(--font-display);
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 0.2em;
  color: var(--teal);
  white-space: nowrap;
}

/* Event Visual */
.post-visual-event {
  background: linear-gradient(135deg, #050510 0%, #0a0a20 100%);
}

.post-event-bg {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 20px;
}

.event-stages {
  display: flex;
  align-items: center;
  gap: 12px;
  width: 100%;
}

.event-stage {
  flex: 1;
  text-align: center;
}

.stage-label {
  font-size: 10px;
  font-weight: 600;
  color: var(--gray-200);
  letter-spacing: 0.1em;
  text-transform: uppercase;
  margin-bottom: 8px;
}

.stage-bar {
  height: 4px;
  background: rgba(255,255,255,0.1);
  border-radius: 2px;
  overflow: hidden;
}

.stage-bar::after {
  content: '';
  display: block;
  height: 100%;
  width: 30%;
  background: var(--teal);
  border-radius: 2px;
}

.stage-2 .stage-bar::after { width: 65%; }
.stage-3 .stage-bar.full::after { width: 100%; background: var(--teal); }

.event-arrow {
  color: rgba(0,151,167,0.5);
  font-size: 16px;
  flex-shrink: 0;
}

/* Training Visual */
.post-visual-training {
  background: linear-gradient(135deg, #000a0a 0%, #001515 100%);
}

.post-training-bg {
  height: 100%;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 20px;
  padding: 20px;
}

.training-icon svg {
  width: 60px;
  height: 60px;
}

.training-text {
  font-family: var(--font-display);
  font-size: 15px;
  font-weight: 800;
  color: var(--white);
  line-height: 1.3;
  letter-spacing: 0.05em;
}

/* Post Content */
.post-content {
  padding: 20px 22px 22px;
}

.post-meta {
  display: flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 12px;
}

.post-platform {
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
  padding: 3px 8px;
  border-radius: 3px;
}

.post-platform-insta {
  background: rgba(225,48,108,0.15);
  color: #e1306c;
  border: 1px solid rgba(225,48,108,0.25);
}

.post-platform-fb {
  background: rgba(24,119,242,0.15);
  color: #1877f2;
  border: 1px solid rgba(24,119,242,0.25);
}

.post-platform-li {
  background: rgba(10,102,194,0.15);
  color: #0a66c2;
  border: 1px solid rgba(10,102,194,0.25);
}

.post-area {
  font-size: 11px;
  color: var(--gray-300);
  font-weight: 500;
}

.post-headline {
  font-size: 16px;
  font-weight: 700;
  color: var(--white);
  margin-bottom: 8px;
  line-height: 1.3;
}

.post-caption {
  font-size: 13px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 10px;
}

.post-hashtags {
  font-size: 11px;
  color: var(--accent);
  font-weight: 500;
  opacity: 0.8;
}

/* --- FORMATS GRID --- */
.formats-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 14px;
  max-width: 900px;
  margin: 0 auto;
}

.format-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-md);
  padding: 14px 18px;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  transition: all var(--transition);
}

.format-item:hover {
  background: rgba(196,106,60,0.06);
  border-color: var(--border-accent);
  color: var(--text-primary);
}

.format-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  flex-shrink: 0;
}

.format-dot-teal { background: var(--accent); }
.format-dot-red { background: var(--accent-hover); }
.format-dot-yellow { background: var(--accent); }
.format-dot-white { background: rgba(245,245,245,0.25); }

/* --- STORIES --- */
.stories-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.story-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 32px;
  position: relative;
  transition: all var(--transition);
  overflow: hidden;
}

.story-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 1px;
  background: linear-gradient(90deg, var(--accent), transparent);
  opacity: 0;
  transition: opacity var(--transition);
}

.story-card:hover {
  border-color: var(--border-accent);
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
}

.story-card:hover::after {
  opacity: 1;
}

.story-time {
  font-size: 11px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 10px;
}

.story-title {
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 12px;
}

.story-text {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 16px;
}

.story-tag {
  font-size: 11px;
  color: var(--accent);
  font-weight: 600;
  opacity: 0.7;
}

/* --- PLATFORMS --- */
.platforms-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 20px;
}

.platform-card {
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 36px;
  text-align: center;
  transition: all var(--transition);
}

.platform-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-card);
}

.platform-icon {
  width: 56px;
  height: 56px;
  border-radius: var(--radius-md);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
}

.platform-icon svg {
  width: 26px;
  height: 26px;
}

.platform-instagram {
  background: rgba(225,48,108,0.12);
  color: #e1306c;
  border: 1px solid rgba(225,48,108,0.2);
}

.platform-facebook {
  background: rgba(24,119,242,0.12);
  color: #1877f2;
  border: 1px solid rgba(24,119,242,0.2);
}

.platform-linkedin {
  background: rgba(10,102,194,0.12);
  color: #0a66c2;
  border: 1px solid rgba(10,102,194,0.2);
}

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

.platform-desc {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
  margin-bottom: 20px;
}

.platform-tags {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  justify-content: center;
}

.platform-tags span {
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 100px;
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.1);
  color: var(--gray-100);
}

/* --- IMPACT --- */
.impact-grid {
  display: flex;
  flex-direction: column;
  gap: 24px;
  max-width: 800px;
  margin: 0 auto;
}

.impact-item {
  display: grid;
  grid-template-columns: 6px 1fr;
  gap: 24px;
  align-items: start;
}

.impact-bar {
  width: 6px;
  height: 100%;
  min-height: 60px;
  background: rgba(255,255,255,0.06);
  border-radius: 3px;
  overflow: hidden;
  position: relative;
}

.impact-fill {
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: var(--fill);
  background: linear-gradient(to bottom, var(--accent), var(--accent-hover));
  border-radius: 3px;
  transition: height 1s ease;
}

.impact-content h4 {
  font-size: 17px;
  font-weight: 700;
  color: var(--text-primary);
  margin-bottom: 6px;
}

.impact-content p {
  font-size: 14px;
  color: var(--text-muted);
  line-height: 1.7;
}

/* --- CTA SECTION --- */
.section-cta {
  padding: 140px 0;
  position: relative;
  overflow: hidden;
  background: var(--bg-secondary);
  border-top: 1px solid var(--border);
}

.cta-bg {
  position: absolute;
  inset: 0;
  z-index: 0;
}

.cta-glow {
  position: absolute;
  width: 800px;
  height: 800px;
  background: radial-gradient(circle, rgba(196,106,60,0.08) 0%, transparent 65%);
  top: 50%;
  left: 50%;
  transform: translate(-50%, -50%);
  border-radius: 50%;
}

.cta-content {
  position: relative;
  z-index: 1;
  text-align: center;
  max-width: 700px;
  margin: 0 auto;
}

.cta-logo {
  margin-bottom: 32px;
}

.cta-headline {
  font-size: clamp(30px, 4vw, 52px);
  font-weight: 800;
  color: var(--text-primary);
  margin-bottom: 20px;
  letter-spacing: -0.025em;
  line-height: 1.15;
}

.cta-text {
  font-size: 18px;
  color: var(--text-muted);
  line-height: 1.75;
  margin-bottom: 48px;
}

.cta-buttons {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  justify-content: center;
  margin-bottom: 36px;
}

.cta-tagline {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  opacity: 0.7;
}

/* --- FOOTER --- */
.footer {
  background: var(--bg-primary);
  padding: 48px 0;
  border-top: 1px solid var(--border);
}

.footer-inner {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 20px;
  text-align: center;
}

.footer-claim {
  font-size: 12px;
  color: var(--text-subtle);
  letter-spacing: 0.1em;
  margin-top: 6px;
}

.footer-divider {
  width: 40px;
  height: 1px;
  background: var(--border);
}

.footer-note {
  font-size: 12px;
  color: var(--text-subtle);
  max-width: 400px;
  line-height: 1.6;
}

/* --- RESPONSIVE --- */
@media (max-width: 768px) {
  .section {
    padding: 72px 0;
  }

  .nav-links {
    display: none;
    position: fixed;
    top: 60px;
    left: 0;
    right: 0;
    background: rgba(11,14,18,0.99);
    backdrop-filter: blur(16px);
    flex-direction: column;
    padding: 24px;
    gap: 20px;
    border-bottom: 1px solid var(--border);
  }

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

  .nav-links a {
    font-size: 16px;
  }

  .nav-toggle {
    display: flex;
  }

  .hero {
    padding: 100px 24px 60px;
  }

  .hero-headline {
    font-size: 36px;
  }

  .hero-buttons {
    flex-direction: column;
    align-items: center;
  }

  .btn {
    width: 100%;
    max-width: 320px;
  }

  .logo-hero-mark {
    flex-direction: column;
    text-align: center;
    gap: 10px;
  }

  .logo-hero-text {
    text-align: center;
  }

  .cards-4 {
    grid-template-columns: 1fr;
  }

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

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

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

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

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

  .impact-item {
    grid-template-columns: 4px 1fr;
    gap: 16px;
  }

  .cta-buttons {
    flex-direction: column;
    align-items: center;
  }

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

@media (max-width: 480px) {
  .hero-badge-row {
    flex-direction: column;
    align-items: center;
  }

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

  .hero-headline {
    font-size: 30px;
  }
}

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

.animate-in {
  animation: fadeInUp 0.6s ease forwards;
}

.animate-delay-1 { animation-delay: 0.1s; }
.animate-delay-2 { animation-delay: 0.2s; }
.animate-delay-3 { animation-delay: 0.3s; }
.animate-delay-4 { animation-delay: 0.4s; }

/* Intersection Observer targets */
.reveal {
  opacity: 0;
  transform: translateY(20px);
  transition: opacity 0.6s ease, transform 0.6s ease;
}

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

/* --- SCROLLBAR --- */
::-webkit-scrollbar {
  width: 6px;
}

::-webkit-scrollbar-track {
  background: var(--gray-900);
}

::-webkit-scrollbar-thumb {
  background: var(--gray-500);
  border-radius: 3px;
}

::-webkit-scrollbar-thumb:hover {
  background: var(--accent);
}

/* --- SELECTION --- */
::selection {
  background: rgba(196,106,60,0.25);
  color: var(--text-primary);
}

/* --- ANGEBOTS-SEKTION --- */
.angebot-section {
  padding: 120px 32px;
  background: var(--bg-primary);
  color: var(--text-primary);
  text-align: center;
}

.angebot-head {
  max-width: 800px;
  margin: auto;
  margin-bottom: 60px;
}

.angebot-head h2 {
  font-size: 42px;
  margin-bottom: 20px;
  font-family: var(--font-display);
  font-weight: 800;
  letter-spacing: -0.025em;
}

.angebot-head p {
  opacity: 0.8;
  font-size: 18px;
  line-height: 1.6;
}

.angebot-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
  gap: 40px;
  max-width: 1100px;
  margin: auto;
}

.preis-box {
  background: var(--bg-secondary);
  padding: 44px;
  border-radius: var(--radius-lg);
  position: relative;
  text-align: left;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-card);
  transition: transform var(--transition), box-shadow var(--transition), border-color var(--transition);
}

.preis-box:hover {
  transform: translateY(-4px);
  border-color: var(--border-accent);
  box-shadow: 0 24px 48px rgba(0,0,0,0.5);
}

.preis-box h3 {
  font-size: 26px;
  margin-bottom: 6px;
  font-family: var(--font-display);
  font-weight: 700;
}

.preis-box h4 {
  opacity: 0.7;
  margin-bottom: 25px;
  font-weight: 400;
}

.preis {
  font-size: 42px;
  font-weight: 800;
  margin-bottom: 32px;
  color: var(--accent);
  font-family: var(--font-display);
  letter-spacing: -0.02em;
}

.preis span {
  font-size: 16px;
  opacity: 0.7;
  font-weight: 400;
}

.preis-box ul {
  list-style: none;
  padding: 0;
  margin-bottom: 30px;
}

.preis-box ul li {
  padding: 8px 0;
  border-bottom: 1px solid rgba(255,255,255,0.05);
  font-size: 15px;
  color: rgba(255,255,255,0.85);
}

.preis-box ul li::before {
  content: '✓';
  color: var(--accent);
  margin-right: 10px;
  font-weight: 700;
}

.angebot-btn {
  display: inline-block;
  padding: 13px 26px;
  background: var(--accent);
  color: #fff;
  border-radius: var(--radius-sm);
  cursor: pointer;
  text-decoration: none;
  font-weight: 600;
  font-size: 15px;
  letter-spacing: 0.02em;
  transition: background var(--transition), transform var(--transition), box-shadow var(--transition);
}

.angebot-btn:hover {
  background: var(--accent-hover);
  transform: translateY(-2px);
  box-shadow: 0 8px 24px rgba(196,106,60,0.3);
}

.angebot-btn.highlight {
  background: var(--accent);
}

.preis-box.premium {
  border: 1px solid var(--border-accent);
}

.empfehlung {
  position: absolute;
  top: -14px;
  right: 20px;
  background: var(--accent);
  padding: 6px 14px;
  font-size: 11px;
  border-radius: 100px;
  font-weight: 700;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

@media (max-width: 768px) {
  .angebot-head h2 {
    font-size: 28px;
  }
  .preis {
    font-size: 30px;
  }
  .angebot-btn {
    width: 100%;
    text-align: center;
  }
}

/* --- RE:BELLE BRANDING BAR --- */
.rebelle-bar {
  margin-top: 32px;
  border-top: 1px solid rgba(255,255,255,0.06);
  padding: 18px 0 20px;
  background: #000;
}

.rebelle-inner {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.rebelle-brand {
  display: flex;
  align-items: center;
  gap: 8px;
  flex-wrap: wrap;
}

.rebelle-heart {
  font-size: 14px;
  line-height: 1;
}

.rebelle-name {
  font-family: var(--font-display);
  font-weight: 700;
  font-size: 13px;
  color: var(--white);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.rebelle-dot {
  color: rgba(255,255,255,0.25);
  font-size: 13px;
}

.rebelle-claim {
  font-size: 12px;
  color: rgba(255,255,255,0.45);
  font-style: italic;
  letter-spacing: 0.02em;
}

.rebelle-links {
  display: flex;
  align-items: center;
  gap: 20px;
  flex-wrap: wrap;
}

.rebelle-links a {
  font-size: 11px;
  color: rgba(255,255,255,0.35);
  text-decoration: none;
  letter-spacing: 0.04em;
  transition: color 0.2s ease;
  white-space: nowrap;
}

.rebelle-links a:hover {
  color: var(--teal);
}

@media (max-width: 768px) {
  .rebelle-inner {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }
  .rebelle-links {
    gap: 14px;
  }
}

/* --- HERO EYEBROW --- */
.hero-eyebrow {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.2em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 20px;
  opacity: 0.9;
}

/* --- ENTSCHEIDUNGS-BLOCK (ÄNDERUNG 2) --- */
.entscheidung-block {
  max-width: 760px;
  margin: 0 auto 80px;
  text-align: center;
  padding: 0 16px;
}

.entscheidung-title {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 40px);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 28px;
}

.entscheidung-text {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 16px;
  max-width: 680px;
  margin-left: auto;
  margin-right: auto;
}

.entscheidung-text:last-child {
  margin-bottom: 0;
}

/* --- HINWEIS-BOX (ÄNDERUNG 3) --- */
.hinweis-box {
  max-width: 760px;
  margin: 60px auto 0;
  padding: 44px 48px;
  background: var(--bg-secondary);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  text-align: left;
  position: relative;
}

.hinweis-box::before {
  content: '';
  position: absolute;
  top: 0;
  left: 48px;
  right: 48px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-accent), transparent);
}

.hinweis-title {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 700;
  color: var(--text-primary);
  letter-spacing: -0.01em;
  margin-bottom: 24px;
}

.hinweis-text {
  font-size: 15px;
  color: var(--text-muted);
  line-height: 1.8;
  margin-bottom: 14px;
}

.hinweis-text:last-of-type {
  margin-bottom: 32px;
}

.hinweis-zusatz {
  border-top: 1px solid var(--border);
  padding-top: 28px;
  margin-bottom: 28px;
}

.hinweis-zusatz-titel {
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.15em;
  text-transform: uppercase;
  color: var(--accent);
  margin-bottom: 18px;
}

.hinweis-leistungen {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.hinweis-leistung {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 20px;
  background: rgba(245,245,245,0.03);
  border: 1px solid var(--border);
  border-radius: var(--radius-sm);
  gap: 16px;
}

.hinweis-leistung-name {
  font-size: 14px;
  color: var(--text-muted);
  font-weight: 500;
}

.hinweis-leistung-preis {
  font-size: 15px;
  font-weight: 700;
  color: var(--accent);
  white-space: nowrap;
  font-family: var(--font-display);
}

.hinweis-closing {
  font-size: 14px;
  color: var(--text-subtle);
  line-height: 1.7;
  font-style: italic;
}

@media (max-width: 768px) {
  .hinweis-box {
    padding: 32px 24px;
    margin-top: 40px;
  }
  .hinweis-box::before {
    left: 24px;
    right: 24px;
  }
  .hinweis-leistung {
    flex-direction: column;
    align-items: flex-start;
    gap: 6px;
  }
}

/* --- VERTRAUENS-SEKTION (ÄNDERUNG 4) --- */
.vertrauen-section {
  padding: 140px 0;
  background: var(--bg-primary);
  border-top: 1px solid var(--border);
  position: relative;
}

.vertrauen-section::before {
  content: '';
  position: absolute;
  top: 0;
  left: 50%;
  transform: translateX(-50%);
  width: 200px;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border-accent), transparent);
}

.vertrauen-content {
  max-width: 760px;
  margin: 0 auto;
  text-align: center;
  padding: 0 32px;
}

.vertrauen-headline {
  font-family: var(--font-display);
  font-size: clamp(26px, 3.5vw, 42px);
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: -0.025em;
  line-height: 1.2;
  margin-bottom: 48px;
}

.vertrauen-text {
  font-size: 17px;
  color: var(--text-muted);
  line-height: 1.85;
  margin-bottom: 18px;
  max-width: 600px;
  margin-left: auto;
  margin-right: auto;
}

.vertrauen-kontakt {
  margin-top: 72px;
  padding-top: 48px;
  border-top: 1px solid var(--border);
}

.vertrauen-brand {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  margin-bottom: 8px;
}

.vertrauen-heart {
  font-size: 16px;
}

.vertrauen-name {
  font-family: var(--font-display);
  font-size: 18px;
  font-weight: 800;
  color: var(--text-primary);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.vertrauen-claim {
  font-size: 14px;
  color: var(--text-muted);
  font-style: italic;
  letter-spacing: 0.04em;
  margin-bottom: 32px;
}

.vertrauen-links {
  display: flex;
  flex-wrap: wrap;
  gap: 20px;
  justify-content: center;
}

.vertrauen-links a {
  font-size: 13px;
  color: var(--text-subtle);
  text-decoration: none;
  letter-spacing: 0.03em;
  transition: color var(--transition);
  border-bottom: 1px solid transparent;
  padding-bottom: 2px;
}

.vertrauen-links a:hover {
  color: var(--accent);
  border-bottom-color: var(--border-accent);
}

@media (max-width: 768px) {
  .vertrauen-section {
    padding: 80px 0;
  }
  .vertrauen-headline {
    font-size: 24px;
  }
  .vertrauen-links {
    flex-direction: column;
    align-items: center;
    gap: 14px;
  }
  .entscheidung-block {
    margin-bottom: 56px;
  }
  .entscheidung-title {
    font-size: 24px;
  }
}
