/* ==============================================
   OVB24 Theme – main.css v4.0 REDESIGN
   Schrift: Ropa Sans (lokal)
   CI: Rot #D4121C | Gelb #FFDE12 | Dunkel #161922
   Hintergrund: #FFF + #F5F5F7
   ============================================== */

:root {
  --red:        #D4121C;
  --red-dark:   #a80e16;
  --red-light:  #fdf0f0;
  --yellow:     #FFDE12;
  --yellow-dark:#e6c800;
  --orange:     #FAA431;
  --orange-dark:#e8921a;
  --orange-light:#fff5e8;
  --dark:       #161922;
  --dark-mid:   #2a2f3a;
  --gray-dark:  #3a3f4b;
  --gray:       #626262;
  --gray-light: #F5F5F7;
  --white:      #FFFFFF;
  --font:       'Ropa Sans', 'Inter', Arial, sans-serif;
  --font-talents: 'Noto Sans', 'Inter', Arial, sans-serif;
  --font-jobs:    'Fira Sans', 'Inter', Arial, sans-serif;
  --font-hero:    'Roboto', 'Inter', Arial, sans-serif;
  --radius:     14px;
  --shadow:     0 4px 20px rgba(22,25,34,0.07);
  --shadow-lg:  0 12px 48px rgba(22,25,34,0.12);
  --transition: 0.25s ease;
}

/* ── RESET ── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }
html { scroll-behavior: smooth; overflow-x: hidden; }
body { font-family: var(--font) !important; color: var(--dark); background: var(--white); line-height: 1.65; font-size: 16px; }
img { max-width: 100%; height: auto; display: block; }
a { text-decoration: none; color: inherit; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 32px; }

/* ── TYPOGRAFIE HIERARCHIE ── */
h1 { font-size: clamp(36px, 5vw, 64px); font-weight: 400; line-height: 1.08; letter-spacing: -0.5px; }
h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 400; line-height: 1.12; letter-spacing: -0.3px; }
h3 { font-size: clamp(20px, 2.5vw, 28px); font-weight: 400; line-height: 1.25; }
h4 { font-size: 16px; font-weight: 400; line-height: 1.4; letter-spacing: 0.5px; }

/* ── BUTTONS ── */
.btn { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 50px; font-weight: 400; font-size: 15px; cursor: pointer; transition: all var(--transition); border: none; font-family: var(--font); letter-spacing: 0.3px; }
.btn-primary { background: var(--red); color: var(--white); }
.btn-primary:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212,18,28,0.25); }
.btn-secondary { background: transparent; color: var(--dark); border: 2px solid rgba(22,25,34,0.2); }
.btn-secondary:hover { background: var(--gray-light); border-color: var(--dark); }
.btn-yellow { background: var(--yellow); color: var(--dark); }
.btn-yellow:hover { background: var(--yellow-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,222,18,0.3); }
.btn-orange { background: var(--orange); color: var(--white); }
.btn-orange:hover { background: var(--orange-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(250,164,49,0.3); }
.btn-outline { background: transparent; color: var(--red); border: 2px solid var(--red); }
.btn-outline:hover { background: var(--red); color: var(--white); }
.btn-dark { background: var(--dark); color: var(--white); }
.btn-dark:hover { background: var(--dark-mid); transform: translateY(-2px); }
.btn-white { background: var(--white); color: var(--red); }
.btn-white:hover { background: var(--gray-light); color: var(--dark); transform: translateY(-2px); }
.btn-outline-white { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.5); }
.btn-outline-white:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }
.btn-outline-orange { background: transparent; color: var(--white); border: 2px solid rgba(255,255,255,0.4); }
.btn-outline-orange:hover { background: rgba(255,255,255,0.1); border-color: var(--white); }

/* ── TOP BAR ── */
/* Nav Actions – Icons + CTA Button */
.nav-actions { display: flex; align-items: center; gap: 12px; margin-left: auto; }
.nav-icon-link {
  display: flex; align-items: center; justify-content: center;
}
.nav-icon-link img { width: 40px; height: 40px; }

/* ── HEADER ── */
.header { background: var(--white); position: sticky; top: 0; z-index: 100; box-shadow: 0 1px 12px rgba(22,25,34,0.05); }
.nav { display: flex; align-items: center; justify-content: space-between; padding: 16px 0; }
.nav-logo img { height: 46px; width: auto; }
.nav-logo .custom-logo-link img { height: 46px; width: auto; }
.nav-menu { display: flex; align-items: center; gap: 2px; list-style: none; margin-left: auto; }
.nav-menu li { position: relative; }
.nav-menu > li > a { display: block; padding: 10px 16px; font-weight: 400; font-size: 15px; color: var(--dark); border-radius: 8px; transition: all var(--transition); }
.nav-menu > li > a:hover { color: var(--dark); background: var(--yellow); }
.nav-menu > li > a.active { color: var(--dark); background: var(--yellow); }
.nav-menu li:hover > .dropdown { display: block; }
.nav-menu li:hover::after { content: ''; position: absolute; top: 100%; left: 0; width: 100%; height: 12px; z-index: 199; }
.nav-menu li.dropdown-open .dropdown { display: block; }
.nav-menu li.dropdown-open::after { content: ''; position: absolute; top: 100%; left: 0; width: 100%; height: 8px; z-index: 199; }
.dropdown { display: none; position: absolute; top: calc(100% + 8px); left: 0; background: var(--white); border-radius: var(--radius); box-shadow: var(--shadow-lg); min-width: 230px; padding: 8px; border-top: 3px solid var(--red); z-index: 200; }
.dropdown a { display: flex; align-items: center; gap: 10px; padding: 10px 14px; font-size: 14px; font-weight: 400; color: var(--gray-dark); border-radius: 8px; transition: all var(--transition); }
.dropdown a:hover { background: var(--gray-light); color: var(--red); padding-left: 18px; }
.dropdown a::before { content: ''; width: 6px; height: 6px; border-radius: 50%; background: var(--red); flex-shrink: 0; opacity: 0.4; }
.dropdown a:hover::before { opacity: 1; }
a.btn.btn-primary.nav-cta { margin-left: 0; background: var(--yellow) !important; color: var(--dark) !important; font-weight: 700; }
a.btn.btn-primary.nav-cta:hover { background: #e6c800 !important; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,222,18,0.35); }

/* ── SECTION HEADER ── */
.section-label { display: inline-block; font-size: 11px; font-weight: 400; letter-spacing: 2.5px; text-transform: uppercase; color: var(--red); margin-bottom: 14px; }
.section-header { text-align: center; margin-bottom: 64px; }
.section-header h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 400; color: var(--dark); line-height: 1.15; margin-bottom: 18px; }
.section-header p { font-size: 17px; color: var(--gray); max-width: 580px; margin: 0 auto; line-height: 1.75; }
.underline { width: 48px; height: 3px; background: var(--red); border-radius: 2px; margin: 20px auto 0; }

/* ══════════════════════════════════════════════
   1. HERO – Clean, kein Verlauf
══════════════════════════════════════════════ */
.hero { position: relative; min-height: 100vh; display: flex; align-items: center; overflow: hidden; background: var(--dark); width: 100vw; margin-left: calc(-50vw + 50%); }
.hero-video { position: absolute; inset: 0; width: 100%; height: 100%; object-fit: cover; z-index: 0; }
.hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center 30%; opacity: 0.15; }
.hero-overlay { position: absolute; inset: 0; background: rgba(18,22,38,0.65); z-index: 1; }
.hero-shape { position: absolute; right: -120px; top: 50%; transform: translateY(-50%); width: 500px; height: 500px; border-radius: 50%; background: radial-gradient(circle, rgba(212,18,28,0.08) 0%, transparent 70%); pointer-events: none; }
.hero-content { position: relative; z-index: 2; max-width: 620px; padding: 120px 0 100px; text-align: left; font-family: var(--font-hero); }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; background: none; border: none; color: var(--yellow); font-size: 11px; font-weight: 400; letter-spacing: 2px; text-transform: uppercase; padding: 0; border-radius: 0; margin-bottom: 32px; }
.hero-badge-dot { width: 6px; height: 6px; border-radius: 50%; background: var(--yellow); animation: pulse 2s infinite; }
@keyframes pulse { 0%,100% { opacity:1; } 50% { opacity:0.4; } }
.hero h1 { font-size: clamp(36px, 5vw, 64px); font-weight: 800; color: var(--white); line-height: 1.08; margin-bottom: 24px; font-family: var(--font-hero); }
.hero h1 em { font-style: italic; color: var(--yellow); }
.hero p { font-size: 18px; color: rgba(255,255,255,0.65); margin-bottom: 0; line-height: 1.75; max-width: 560px; }
.hero-scroll { position: absolute; bottom: 40px; left: 50%; transform: translateX(-50%); z-index: 2; display: flex; flex-direction: column; align-items: center; gap: 6px; color: rgba(255,255,255,0.3); font-size: 10px; letter-spacing: 2px; text-transform: uppercase; }
.hero-scroll-line { width: 1px; height: 44px; background: linear-gradient(to bottom, rgba(255,255,255,0.3), transparent); animation: scrollLine 1.8s ease-in-out infinite; }
@keyframes scrollLine { 0%,100% { opacity:0.3; } 50% { opacity:0.8; } }

/* ══════════════════════════════════════════════
   2. STORY ADVERTORIAL – Weißraum, kein dunkler Verlauf
══════════════════════════════════════════════ */
.story-bridge {
  background: var(--white);
  padding: 120px 0;
  position: relative;
  overflow: hidden;
}
.story-bridge::before { display: none; }
.story-bridge::after { display: none; }
.story-bridge-inner { position: relative; z-index: 1; }
.story-bridge-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.story-bridge-content .section-label { color: var(--red); }
/* h2 = Produktname GROSS mit rotem Strich links */
.story-bridge-content h2 {
  font-size: clamp(48px, 6vw, 80px); font-weight: 400; color: var(--dark);
  line-height: 1.0; margin-bottom: 20px; text-transform: uppercase;
  letter-spacing: -1px; border-left: 4px solid var(--red); padding-left: 20px;
}
.story-bridge-content h2 em { font-style: normal; color: var(--red); }
/* h3 = Subline klein */
.story-bridge-content h3 {
  font-size: clamp(16px, 1.8vw, 20px); font-weight: 400; font-style: italic;
  color: var(--gray); line-height: 1.5; margin-bottom: 32px;
}
.story-bridge-content h3 em { font-style: italic; color: var(--gray); }
/* Animationen Story */
.story-bridge-content h2 .anim-word { display: block; overflow: hidden; }
.story-bridge-content h2 .anim-word span { display: block; transform: translateY(100%); opacity: 0; animation: maskInUp 0.6s ease forwards; animation-play-state: paused; }
.story-bridge-content h2 .anim-word:nth-child(1) span { animation-delay: 0.1s; }
.story-bridge-content h2 .anim-word:nth-child(2) span { animation-delay: 0.35s; }
.story-bridge-content h2 .anim-word:nth-child(3) span { animation-delay: 0.6s; }
.story-bridge-content .anim-line { overflow: hidden; }
.story-bridge-content .anim-line-inner { transform: scaleY(0); transform-origin: top; animation: lineDown 0.5s ease forwards 0.85s; animation-play-state: paused; }
.story-bridge-content h3.anim-subtitle { overflow: hidden; }
.story-bridge-content h3.anim-subtitle span { display: block; transform: translateX(-100%); opacity: 0; animation: maskInRight 0.6s ease forwards 1.1s; animation-play-state: paused; }

/* Story – Animation erst bei Sichtbarkeit abspielen */
.story-bridge.anim-active .story-bridge-content h2 .anim-word span { animation-play-state: running; }
.story-bridge.anim-active .story-bridge-content .anim-line-inner { animation-play-state: running; }
.story-bridge.anim-active .story-bridge-content h3.anim-subtitle span { animation-play-state: running; }
.story-bridge-content p { font-size: 16px; color: var(--gray); line-height: 1.8; margin-bottom: 40px; }
.story-kpis { display: flex; gap: 36px; margin-bottom: 40px; }
.story-kpi { text-align: center; }
.story-kpi-num { font-size: 36px; font-weight: 400; color: var(--red); line-height: 1; }
.story-kpi-label { font-size: 12px; color: var(--gray); font-weight: 400; margin-top: 6px; letter-spacing: 0.5px; }
.story-bridge-visual { position: relative; }
.story-bridge-visual img,
.story-bridge-visual video { width: 100%; height: 600px; object-fit: cover; border-radius: var(--radius); box-shadow: var(--shadow-lg); }

.story-badge {
  position: absolute; bottom: 20px; left: 20px; right: 20px;
  background: rgba(255,255,255,0.95); backdrop-filter: blur(12px);
  border-radius: 10px; padding: 16px 18px; border-left: 4px solid var(--red);
}
.story-badge-title { font-size: 13px; font-weight: 400; color: var(--dark); margin-bottom: 4px; }
.story-badge-sub { font-size: 12px; color: var(--gray); }
.story-features { display: flex; flex-direction: column; gap: 10px; margin-bottom: 40px; }
.story-feature { display: flex; align-items: center; gap: 12px; }
.story-feature-check { width: 22px; height: 22px; border-radius: 50%; background: rgba(212,18,28,0.08); border: 1px solid rgba(212,18,28,0.2); color: var(--red); display: flex; align-items: center; justify-content: center; font-size: 11px; flex-shrink: 0; }
.story-feature span { font-size: 14px; color: var(--gray); }

/* ══════════════════════════════════════════════
   3. STATS BAR – Dezenter, kein Gelb als Vollfläche
══════════════════════════════════════════════ */
.stats-bar { background: var(--gray-light); position: relative; z-index: 2; border-top: 3px solid var(--yellow); }
.stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); }
.stat-item { padding: 36px 20px; text-align: center; border-right: 1px solid rgba(22,25,34,0.08); transition: background var(--transition); }
.stat-item:last-child { border-right: none; }
.stat-item:hover { background: rgba(22,25,34,0.03); }
.stat-number { font-size: 40px; font-weight: 400; color: var(--dark); line-height: 1; margin-bottom: 6px; }
.stat-label { font-size: 12px; font-weight: 400; color: var(--gray); text-transform: uppercase; letter-spacing: 1px; }

/* ══════════════════════════════════════════════
   4. NEWS-PORTALE SLIDER
══════════════════════════════════════════════ */
.portale-slider-section { background: var(--white); padding: 120px 0; }
.portale-cards-row { display: grid; grid-template-columns: repeat(6, 1fr); gap: 20px; }
.portal-preview-card {
  background: var(--white); border-radius: var(--radius);
  border: 1px solid rgba(22,25,34,0.08); overflow: hidden;
  box-shadow: var(--shadow); transition: all 0.3s ease;
  display: flex; flex-direction: column;
}
.portal-preview-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--red); }
.portal-preview-logo { padding: 16px 14px 12px; display: flex; align-items: center; justify-content: center; min-height: 64px; border-bottom: 1px solid rgba(22,25,34,0.05); background: var(--gray-light); }
.portal-preview-logo img { height: 30px; width: auto; max-width: 100%; object-fit: contain; }
.portal-preview-logo-text { font-size: 13px; font-weight: 400; color: var(--red); text-align: center; }
.portal-preview-screen { position: relative; overflow: hidden; height: 130px; background: #eee; }
.portal-preview-screen img { width: 100%; height: 100%; object-fit: cover; object-position: top; transition: transform 0.4s ease; }
.portal-preview-card:hover .portal-preview-screen img { transform: scale(1.04); }
.portal-preview-screen-overlay { position: absolute; inset: 0; background: linear-gradient(to bottom, transparent 60%, rgba(22,25,34,0.15)); }
.portal-preview-url {
  padding: 10px 12px; font-size: 11px; font-weight: 400; color: var(--red);
  display: flex; align-items: center; gap: 5px;
  border-top: 1px solid rgba(22,25,34,0.05); background: var(--white);
}
.portal-preview-url::before { content: '↗'; font-size: 12px; }

/* ══════════════════════════════════════════════
   5. DIGITALE LEISTUNGEN (3 Boxen)
══════════════════════════════════════════════ */
.leistungen { padding: 120px 0; background: var(--gray-light); }
.leistungen-grid-3 { display: grid; grid-template-columns: repeat(3, 1fr); gap: 28px; }
.leistung-card { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow); transition: all 0.3s ease; background: var(--white); border: 1px solid rgba(22,25,34,0.05); display: flex; flex-direction: column; }
.leistung-card:hover { transform: translateY(-10px); box-shadow: var(--shadow-lg); }
.leistung-card:hover .leistung-img img { transform: scale(1.06); }
.leistung-img { height: 240px; overflow: hidden; position: relative; }
.leistung-img img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.45s ease; }
.leistung-img-overlay { position: absolute; inset: 0; background: linear-gradient(to top, rgba(22,25,34,0.6) 0%, transparent 50%); }
.leistung-title-overlay { position: absolute; bottom: 0; left: 0; right: 0; padding: 20px; }
.leistung-title-overlay h3 { font-size: 22px; font-weight: 400; color: var(--white); line-height: 1.2; text-shadow: 0 2px 8px rgba(0,0,0,0.3); text-align: center; }
.leistung-tag { position: absolute; top: 14px; left: 14px; background: var(--red); color: var(--white); font-size: 10px; font-weight: 400; letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 14px; border-radius: 50px; }
.leistung-tag-red { background: var(--red); color: var(--white); }
.leistung-tag-yellow { background: var(--yellow); color: var(--dark); }
.leistung-body { padding: 28px; flex: 1; display: flex; flex-direction: column; }
.leistung-body p { font-size: 14px; color: var(--gray); line-height: 1.75; flex: 1; }
.leistung-footer { padding: 16px 28px; border-top: 1px solid rgba(22,25,34,0.05); display: flex; align-items: center; }
.leistung-link { font-size: 14px; font-weight: 400; color: var(--red); display: flex; align-items: center; gap: 6px; transition: gap var(--transition); }
.leistung-card:hover .leistung-link { gap: 10px; }

/* ══════════════════════════════════════════════
   6. JOB-PORTALE HERO
══════════════════════════════════════════════ */
.jobs-hero { position: relative; min-height: 560px; display: flex; align-items: center; background: var(--white); overflow: hidden; max-width: 100vw; box-sizing: border-box; font-family: var(--font-jobs); font-weight: 500; }
.jobs-hero-bg { position: absolute; inset: 0; background-size: cover; background-position: center center; opacity: 0.25; }
.jobs-hero-overlay { display: none; }
.jobs-hero-content { position: relative; z-index: 2; padding: 100px 0; overflow: hidden; width: 100%; box-sizing: border-box; }
.jobs-hero-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 80px; align-items: center; }
.jobs-hero-text .section-label { color: #faa432; }
/* h2 = Produktname GROSS mit rotem Strich links */
.jobs-hero-text h2 {
  font-size: clamp(48px, 6vw, 80px); font-weight: 600; color: var(--dark);
  line-height: 1.0; margin-bottom: 20px; text-transform: uppercase;
  letter-spacing: -1px; border-left: 4px solid #faa432; padding-left: 20px;
}
.jobs-hero-text h2 em { font-style: normal; color: #faa432; }
/* h3 = Subline klein */
.jobs-hero-text h3 {
  font-size: clamp(16px, 1.8vw, 20px); font-weight: 600; font-style: italic;
  color: var(--gray); line-height: 1.5; margin-bottom: 24px;
}
.jobs-hero-text h3 em { font-style: italic; color: var(--gray); }
/* Animationen Jobs */
.jobs-hero-text h2 .anim-word { display: block; overflow: hidden; }
.jobs-hero-text h2 .anim-word span { display: block; transform: translateY(100%); opacity: 0; animation: maskInUp 0.6s ease forwards; animation-play-state: paused; }
.jobs-hero-text h2 .anim-word:nth-child(1) span { animation-delay: 0.1s; }
.jobs-hero-text h2 .anim-word:nth-child(2) span { animation-delay: 0.35s; }
.jobs-hero-text h2 .anim-word:nth-child(3) span { animation-delay: 0.6s; }
.jobs-hero-text .anim-line { overflow: hidden; }
.jobs-hero-text .anim-line-inner { transform: scaleY(0); transform-origin: top; animation: lineDown 0.5s ease forwards 0.85s; animation-play-state: paused; }
.jobs-hero-text h3.anim-subtitle { overflow: hidden; }
.jobs-hero-text h3.anim-subtitle span { display: block; transform: translateX(-100%); opacity: 0; animation: maskInRight 0.6s ease forwards 1.1s; animation-play-state: paused; }

/* Jobs – Animation erst bei Sichtbarkeit abspielen */
.jobs-hero.anim-active .jobs-hero-text h2 .anim-word span { animation-play-state: running; }
.jobs-hero.anim-active .jobs-hero-text .anim-line-inner { animation-play-state: running; }
.jobs-hero.anim-active .jobs-hero-text h3.anim-subtitle span { animation-play-state: running; }
.jobs-hero-text p { font-size: 17px; color: var(--gray); line-height: 1.75; margin-bottom: 40px; font-weight: 500; }
.jobs-portale-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 14px; }
.jobs-portal-card {
  background: var(--white); border: 1px solid rgba(22,25,34,0.08);
  border-radius: var(--radius); padding: 18px 16px;
  display: flex; align-items: center; gap: 12px;
  transition: all var(--transition); text-decoration: none;
  box-shadow: 0 2px 8px rgba(22,25,34,0.06);
}
.jobs-portal-card:hover { background: var(--gray-light); border-color: #faa432; box-shadow: 0 4px 16px rgba(22,25,34,0.1); }
.jobs-portal-card img { height: 30px; width: auto; object-fit: contain; filter: none; max-width: 100px; }
.jobs-portal-card-text { font-size: 13px; font-weight: 400; color: var(--dark); }
.jobs-portal-card-sub { font-size: 11px; color: var(--gray); margin-top: 2px; }
.jobs-stats { display: flex; gap: 36px; margin-bottom: 40px; }
.jobs-stat { text-align: center; }
.jobs-stat-num { font-size: 32px; font-weight: 400; color: #faa432; line-height: 1; }
.jobs-stat-label { font-size: 11px; color: var(--gray); margin-top: 5px; font-weight: 400; }
.jobs-cta-row { display: flex; gap: 14px; flex-wrap: wrap; }
.btn-orange { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; background: #faa432; color: #fff; border-radius: 50px; font-size: 14px; font-weight: 400; text-decoration: none; transition: all var(--transition); border: 2px solid #faa432; }
.btn-orange:hover { background: #e8931f; border-color: #e8931f; }

/* ══════════════════════════════════════════════
   7. TWENTYFOURTALENTS
══════════════════════════════════════════════ */
:root {
  --t24-blue: #234b67;
  --t24-orange: #ff6f61;
  --t24-blue-light: #2d5f82;
}
.talents-section {
  font-family: var(--font-talents);
  padding: 0;
  background: var(--t24-blue);
  position: relative; overflow: hidden;
}
/* Muster nur oben rechts, ca. 1/12 der Fläche */
.talents-section::after {
  content: ''; position: absolute; top: 0; right: 0;
  width: 30%; height: 25%;
  background: url('/wp-content/uploads/2026/04/Muster-white-LP.png') repeat;
  background-size: 50px; opacity: 0.15; z-index: 1;
  pointer-events: none;
}
/* Geschwungener Übergang unten (Welle wie auf 24talents Landingpage) */
.talents-section::before {
  content: ''; position: absolute; bottom: -2px; left: 0; right: 0; height: 80px;
  background: var(--white); border-radius: 50% 50% 0 0 / 100% 100% 0 0;
  z-index: 3;
}
.talents-section::after { display: none; }
/* Layout: Text links, Bild rechts – fast gleich groß */
.talents-layout {
  display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: stretch;
  position: relative; z-index: 2; padding: 22px 0 0;
}
.talents-content { padding-bottom: 120px; padding-top: 20px; }
.talents-content .section-label {
  color: rgba(255,255,255,0.7); font-size: 12px; letter-spacing: 3px;
  text-transform: uppercase; margin-bottom: 16px; display: block;
}
.talents-content h2 {
  font-size: clamp(32px, 4vw, 52px); font-weight: 700; color: var(--white);
  line-height: 1.15; margin-bottom: 24px;
}
.talents-content h2 em { font-style: normal; color: var(--white); }
.talents-content p {
  font-size: 16px; color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 32px;
}
/* Logo oben links mit Abstand */
.talents-logo-header {
  position: relative; z-index: 3; padding: 64px 0 12px;
}
.talents-logo-header img { height: 42px; width: auto; }
.talents-logo-header a { display: inline-block; }
/* CTA Button im 24talents-Stil */
.btn-t24 {
  display: inline-flex; align-items: center; gap: 8px;
  background: var(--t24-orange); color: var(--white); border: none;
  padding: 16px 36px; border-radius: 50px; font-size: 15px; font-weight: 700;
  text-decoration: none; transition: all var(--transition); cursor: pointer;
}
.btn-t24:hover { background: #e85d50; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,111,97,0.35); }
/* Services */
.talents-services { display: grid; grid-template-columns: 1fr 1fr; gap: 12px; margin-bottom: 32px; }
.talents-service-card {
  background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1);
  border-radius: 10px; padding: 16px; transition: all var(--transition);
  text-decoration: none; display: block;
}
.talents-service-card:hover { background: rgba(255,111,97,0.1); border-color: rgba(255,111,97,0.3); }
.talents-service-name { font-size: 14px; font-weight: 400; color: var(--white); margin-bottom: 4px; }
.talents-service-desc { font-size: 12px; color: rgba(255,255,255,0.45); line-height: 1.5; }
/* Bild-Bereich rechts – darf aus dem Raster rausgehen */
.talents-visual {
  position: relative; align-self: stretch; z-index: 2;
  display: flex; flex-direction: column; justify-content: flex-end;
  margin-right: -60px; /* darf rechts aus dem Container rausgehen */
}
.talents-img-wrap {
  position: relative; z-index: 2; flex: 1;
  display: flex; align-items: flex-end; justify-content: center;
}
.talents-img-wrap img {
  width: auto; max-width: 120%; height: 100%;
  object-fit: contain; object-position: bottom center;
}
.talents-logo-badge { display: none; }
/* Stats + Button Reihe unten */
.talents-bottom-row {
  display: flex; align-items: center; gap: 32px; margin-top: 8px;
}
.talents-stats { display: flex; gap: 28px; margin-bottom: 0; }
.talents-stat { text-align: center; }
.talents-stat-num { font-size: 28px; font-weight: 700; color: var(--t24-orange); line-height: 1; }
.talents-stat-label { font-size: 11px; color: rgba(255,255,255,0.5); margin-top: 4px; }
.talents-bottom-row .btn-t24 { white-space: nowrap; }

/* ══════════════════════════════════════════════
   8. DIGITAL-AGENTUR
══════════════════════════════════════════════ */
.agentur-section { padding: 120px 0; background: var(--white); }
.agentur-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: center; }
.agentur-img-wrap { border-radius: var(--radius); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.agentur-img-wrap img { width: 100%; height: 440px; object-fit: cover; }
.agentur-badge { position: absolute; bottom: 20px; left: 20px; background: var(--red); color: var(--white); font-size: 13px; font-weight: 400; padding: 10px 18px; border-radius: 8px; }
.agentur-content .section-label { color: var(--red); }
.agentur-content h2 { font-size: clamp(26px, 3.5vw, 40px); font-weight: 400; color: var(--dark); line-height: 1.2; margin-bottom: 18px; }
.agentur-content h2 em { font-style: italic; color: var(--red); }
.agentur-content p { font-size: 16px; color: var(--gray); line-height: 1.8; margin-bottom: 32px; }
.agentur-services { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; margin-bottom: 36px; }
.agentur-service { display: flex; align-items: flex-start; gap: 12px; }
.agentur-service-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--red); flex-shrink: 0; margin-top: 6px; }
.agentur-service-titel { font-size: 14px; font-weight: 400; color: var(--dark); margin-bottom: 2px; }
.agentur-service-desc { font-size: 13px; color: var(--gray); line-height: 1.5; }

/* ══════════════════════════════════════════════
   9. ALLE PORTALE – Logos + Teambild rechts
══════════════════════════════════════════════ */
.alle-portale {
  padding: 120px 0;
  background-color: var(--gray-light);
  background-image: url('https://ovb24-neu.ovb24-dev.de/wp-content/uploads/2026/04/OVB24-Team-Portale-Part.png');
  background-repeat: no-repeat;
  background-position: right bottom;
  background-size: 42% auto;
  overflow: visible;
}
.alle-portale-content {
  position: relative;
  z-index: 2;
  max-width: 85%;
}
.alle-portale-group { margin-bottom: 48px; }
.alle-portale-group:last-child { margin-bottom: 0; }
.alle-portale-category-label { margin-bottom: 20px; }
.category-badge { display: inline-block; font-size: 11px; font-weight: 400; letter-spacing: 1.5px; text-transform: uppercase; padding: 5px 16px; border-radius: 50px; }
.category-news    { background: var(--red);    color: var(--white); }
.category-jobs    { background: var(--orange); color: var(--white); }
.category-spezial { background: var(--dark);   color: var(--white); }
.all-portale-grid { display: grid; grid-template-columns: repeat(6, 1fr); gap: 14px; }
.all-portal-item {
  background: var(--white); border-radius: var(--radius);
  padding: 22px 14px; text-align: center;
  box-shadow: var(--shadow); transition: all var(--transition);
  border: 2px solid transparent; display: flex; align-items: center; justify-content: center; min-height: 80px;
}
.all-portal-item:hover { border-color: var(--red); transform: translateY(-4px); box-shadow: var(--shadow-lg); }
.all-portal-item img { height: 44px; width: auto; margin: 0 auto; object-fit: contain; }
.all-portal-item span { font-size: 12px; font-weight: 400; color: var(--red); }

/* ══════════════════════════════════════════════
   10. REFERENZEN
══════════════════════════════════════════════ */
.referenzen { padding: 120px 0; background: var(--white); }
.referenzen-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; }
.referenz-card { background: var(--gray-light); border-radius: var(--radius); padding: 32px 28px; transition: all var(--transition); border: 1px solid transparent; }
.referenz-card:hover { border-color: rgba(212,18,28,0.12); box-shadow: var(--shadow-lg); transform: translateY(-4px); background: var(--white); }
.referenz-stars { color: var(--yellow); font-size: 16px; margin-bottom: 12px; letter-spacing: 2px; }
.referenz-quote-icon { font-size: 40px; color: var(--red); line-height: 0.8; margin-bottom: 16px; font-family: Georgia, serif; }
.referenz-zitat { font-size: 14px; color: var(--gray-dark); line-height: 1.75; margin-bottom: 24px; font-style: italic; }
.referenz-footer { display: flex; align-items: center; gap: 12px; }
.referenz-logo img { height: 36px; width: auto; max-width: 90px; object-fit: contain; filter: grayscale(1); opacity: 0.6; transition: all var(--transition); }
.referenz-card:hover .referenz-logo img { filter: grayscale(0); opacity: 1; }
.referenz-name { font-size: 14px; font-weight: 400; color: var(--dark); }
.referenz-company { font-size: 12px; color: var(--gray); }

/* ══════════════════════════════════════════════
   11. CTA – Hintergrundbild + Scroll-Animationen
══════════════════════════════════════════════ */
.cta-section {
  padding: 120px 0;
  position: relative;
  overflow: hidden;
  text-align: center;
  background-image: url('https://ovb24-neu.ovb24-dev.de/wp-content/uploads/2026/04/Teambild-Besprechung-CTA.jpg');
  background-size: cover;
  background-position: center center;
  background-repeat: no-repeat;
}
.cta-section::before { display: none; }
.cta-section::after { display: none; }
.cta-overlay {
  position: absolute;
  inset: 0;
  background: rgba(22, 25, 34, 0.6);
  z-index: 1;
}
.cta-section .container {
  position: relative;
  z-index: 2;
}
/* CTA Layout: Flex-Container für Text links + Kalender rechts */
.cta-layout {
  position: relative;
  z-index: 2;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 48px;
  transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}
.cta-content { position: relative; z-index: 2; max-width: 720px; text-align: center; transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1); }
.cta-section h2 { font-size: clamp(30px, 4.5vw, 52px); font-weight: 400; color: var(--white); line-height: 1.15; margin-bottom: 24px; }
.cta-section p { font-size: 18px; color: rgba(255,255,255,0.75); max-width: 560px; margin: 0 auto 48px; line-height: 1.7; }
.cta-buttons { display: flex; gap: 16px; justify-content: center; flex-wrap: wrap; }

/* Kalender – initial versteckt */
.cta-calendar {
  position: relative;
  width: 0;
  min-height: 500px;
  opacity: 0;
  overflow: hidden;
  transition: width 0.6s cubic-bezier(0.22, 1, 0.36, 1), opacity 0.5s ease 0.2s;
  flex-shrink: 0;
}
.cta-calendar-iframe {
  width: 420px;
  height: 500px;
  background: var(--white);
  border-radius: var(--radius);
  overflow: hidden;
  box-shadow: 0 12px 48px rgba(0,0,0,0.3);
}
.cta-calendar-iframe iframe {
  width: 100%;
  height: 100%;
  border: 0;
}
.cta-calendar-close {
  position: absolute;
  top: 8px;
  right: 8px;
  z-index: 10;
  width: 32px;
  height: 32px;
  border-radius: 50%;
  background: rgba(22, 25, 34, 0.8);
  color: var(--white);
  border: none;
  font-size: 20px;
  line-height: 1;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: background 0.2s;
}
.cta-calendar-close:hover {
  background: var(--red);
}

/* Kalender sichtbar: aufklappen */
.cta-layout.calendar-open .cta-content {
  max-width: 480px;
  text-align: left;
}
.cta-layout.calendar-open .cta-content p {
  margin-left: 0;
}
.cta-layout.calendar-open .cta-buttons {
  justify-content: flex-start;
}
.cta-layout.calendar-open .cta-calendar {
  width: 420px;
  opacity: 1;
}

/* CTA Scroll-Animationen – Startzustand (unsichtbar) */
.cta-section .cta-anim {
  opacity: 0;
  transform: translateY(30px);
  transition: opacity 0.7s cubic-bezier(0.22, 1, 0.36, 1), transform 0.7s cubic-bezier(0.22, 1, 0.36, 1);
}
.cta-section .cta-anim-delay-1 { transition-delay: 0.15s; }
.cta-section .cta-anim-delay-2 { transition-delay: 0.35s; }
.cta-section .cta-anim-delay-3 { transition-delay: 0.55s; }

/* Sichtbar – wird per IntersectionObserver .cta-visible getriggert */
.cta-section.cta-visible .cta-anim {
  opacity: 1;
  transform: translateY(0);
}

/* ══════════════════════════════════════════════
   FOOTER – Dunkel, Spalte 1 = Produkte und Dienstleistungen
══════════════════════════════════════════════ */
.footer { background: var(--dark); color: rgba(255,255,255,0.6); padding: 80px 0 0; }
.footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; padding-bottom: 56px; }
.footer-brand { }
.footer-logo img,
.footer-logo .custom-logo-link img { height: 40px; width: auto; margin-bottom: 24px; filter: brightness(0) invert(1); }
.footer-brand p { font-size: 14px; line-height: 1.75; color: rgba(255,255,255,0.45); margin-bottom: 28px; }
.footer-social { display: flex; gap: 10px; }
.footer-social a { width: 36px; height: 36px; border-radius: 8px; background: rgba(255,255,255,0.06); color: rgba(255,255,255,0.55); display: flex; align-items: center; justify-content: center; font-size: 11px; font-weight: 400; transition: all var(--transition); }
.footer-social a:hover { background: var(--red); color: var(--white); }
.footer-col h4 { font-size: 12px; font-weight: 400; color: var(--white); text-transform: uppercase; letter-spacing: 1.5px; margin-bottom: 20px; }
.footer-col ul { list-style: none; display: flex; flex-direction: column; gap: 10px; }
.footer-col ul li a { font-size: 14px; color: rgba(255,255,255,0.45); transition: color var(--transition); }
.footer-col ul li a:hover { color: var(--yellow); }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.06); padding: 24px 0; display: flex; justify-content: space-between; align-items: center; font-size: 13px; color: rgba(255,255,255,0.25); }
.footer-bottom a { color: rgba(255,255,255,0.25); transition: color var(--transition); }
.footer-bottom a:hover { color: var(--yellow); }
.footer-bottom-links { display: flex; gap: 20px; }

/* ══════════════════════════════════════════════
   HAMBURGER MENU
══════════════════════════════════════════════ */
.hamburger { display: none; flex-direction: column; gap: 5px; cursor: pointer; padding: 8px; border: none; background: none; z-index: 300; }
.hamburger span { display: block; width: 24px; height: 2px; background: var(--dark); border-radius: 2px; transition: all 0.3s ease; transform-origin: center; }
.hamburger.open span:nth-child(1) { transform: translateY(7px) rotate(45deg); }
.hamburger.open span:nth-child(2) { opacity: 0; transform: scaleX(0); }
.hamburger.open span:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

/* ══════════════════════════════════════════════
   MOBILE OVERLAY NAV
══════════════════════════════════════════════ */
.mobile-nav-overlay {
  display: none; position: fixed; inset: 0; z-index: 200;
  background: var(--dark); flex-direction: column;
  overflow-y: auto; padding: 80px 24px 40px;
}
.mobile-nav-overlay.open { display: flex; }
.mobile-nav-list { list-style: none; display: flex; flex-direction: column; gap: 0; }
.mobile-nav-item { border-bottom: 1px solid rgba(255,255,255,0.06); }
.mobile-nav-item > a { display: flex; align-items: center; justify-content: space-between; padding: 18px 0; font-size: 18px; font-weight: 400; color: var(--white); transition: color var(--transition); }
.mobile-nav-item > a:hover { color: var(--yellow); }
.mobile-nav-item > a .arrow { font-size: 12px; color: rgba(255,255,255,0.3); transition: transform 0.25s; }
.mobile-nav-item.expanded > a .arrow { transform: rotate(90deg); }
.mobile-dropdown { display: none; padding: 0 0 16px 16px; flex-direction: column; gap: 4px; }
.mobile-nav-item.expanded .mobile-dropdown { display: flex; }
.mobile-dropdown a { font-size: 15px; color: rgba(255,255,255,0.55); padding: 8px 0; font-weight: 400; transition: color var(--transition); }
.mobile-dropdown a:hover { color: var(--yellow); }
.mobile-nav-cta { margin-top: 32px; }
.mobile-nav-cta .btn { width: 100%; justify-content: center; font-size: 16px; padding: 16px; }
.mobile-nav-phone { margin-top: 24px; text-align: center; }
.mobile-nav-phone a { color: var(--yellow); font-weight: 400; font-size: 16px; display: flex; align-items: center; justify-content: center; gap: 8px; }

/* ══════════════════════════════════════════════
   WORDPRESS ADMIN BAR OFFSET
══════════════════════════════════════════════ */
.admin-bar .header { top: 32px; }
@media screen and (max-width: 782px) {
  .admin-bar .header { top: 0px; }
}

/* ══════════════════════════════════════════════
   ANIMATION KEYFRAMES
══════════════════════════════════════════════ */
@keyframes maskInUp {
  0% { transform: translateY(100%); opacity: 0; }
  100% { transform: translateY(0); opacity: 1; }
}
@keyframes lineDown {
  0% { transform: scaleY(0); }
  100% { transform: scaleY(1); }
}
@keyframes maskInRight {
  0% { transform: translateX(-100%); opacity: 0; }
  100% { transform: translateX(0); opacity: 1; }
}

/* ══════════════════════════════════════════════
   RESPONSIVE
══════════════════════════════════════════════ */
@media (max-width: 1024px) {
  .nav-menu, .nav-cta { display: none; }
  .hamburger { display: flex; }
  .nav-icon-link { display: none; }
  .story-bridge-layout { grid-template-columns: 1fr; gap: 40px; }
  .story-bridge-visual { display: none; }
  .jobs-hero-layout { grid-template-columns: 1fr; gap: 40px; }
  .jobs-portale-grid { grid-template-columns: repeat(2, 1fr); }
  .agentur-layout { grid-template-columns: 1fr; gap: 40px; }
  .agentur-visual { display: none; }
  .talents-layout { grid-template-columns: 1fr; gap: 40px; }
  .talents-visual { order: -1; }
  .talents-content { padding-bottom: 60px; }
  .talents-logo-header { padding: 40px 0 10px; }
  .talents-bottom-row { flex-direction: column; align-items: flex-start; gap: 24px; }

  .footer-grid { grid-template-columns: 1fr 1fr; gap: 32px; }
  .portale-cards-row { grid-template-columns: repeat(3, 1fr); }
  .all-portale-grid { grid-template-columns: repeat(5, 1fr); }
  .alle-portale { background-size: 30% auto; }
  .alle-portale-content { max-width: 60%; }
}

@media (max-width: 768px) {
  .container { padding: 0 20px; }
  .hero { min-height: 80vh; width: 100%; margin-left: 0; }
  .hero-content { padding: 80px 0 60px; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); }
  .stat-item:nth-child(2) { border-right: none; }
  .leistungen-grid-3 { grid-template-columns: 1fr; }
  .portale-cards-row { grid-template-columns: repeat(2, 1fr); }
  .all-portale-grid { grid-template-columns: repeat(3, 1fr); }
  .alle-portale { background-size: 40% auto; background-position: right bottom; }
  .alle-portale-content { max-width: 55%; }
  .referenzen-grid { grid-template-columns: 1fr; }
  .jobs-portale-grid { grid-template-columns: 1fr 1fr; }
  .talents-services { grid-template-columns: 1fr; }
  .agentur-services { grid-template-columns: 1fr; }
  .footer-grid { grid-template-columns: 1fr; gap: 28px; }
  .cta-buttons { flex-direction: column; align-items: center; }
  .cta-buttons .btn { width: 100%; max-width: 320px; justify-content: center; }
  .cta-layout { flex-direction: column; }
  .cta-layout.calendar-open .cta-content { max-width: 100%; text-align: center; }
  .cta-layout.calendar-open .cta-buttons { justify-content: center; }
  .cta-layout.calendar-open .cta-calendar { width: 100%; }
  .cta-calendar-iframe { width: 100%; height: 450px; }
  .jobs-cta-row { flex-direction: column; }
  .jobs-cta-row .btn { width: 100%; justify-content: center; }
  .story-kpis { gap: 20px; }
  .story-kpi-num { font-size: 28px; }
  .jobs-stats { gap: 20px; }
  .section-header { margin-bottom: 44px; }
  .portale-slider-section { padding: 64px 0; }
  .leistungen { padding: 80px 0; }
  .jobs-hero { overflow-x: hidden; max-width: 100vw; width: 100%; box-sizing: border-box; }
  .jobs-hero-content { padding: 64px 0; overflow-x: hidden; max-width: 100%; width: 100%; box-sizing: border-box; }
  .jobs-hero-layout { grid-template-columns: 1fr; gap: 24px; max-width: 100%; overflow: hidden; }
  .jobs-hero-text { max-width: 100%; width: 100%; overflow: hidden; box-sizing: border-box; }
  .jobs-hero-text h2 { font-size: clamp(32px, 9vw, 52px); word-break: break-word; padding-left: 16px; max-width: 100%; box-sizing: border-box; }
  .jobs-hero-text h3 { word-break: break-word; overflow-wrap: break-word; max-width: 100%; }
  .jobs-hero-text p { word-break: break-word; overflow-wrap: break-word; max-width: 100%; }
  .jobs-cta-row { max-width: 100%; box-sizing: border-box; }
  .jobs-cta-row .btn { max-width: 100%; box-sizing: border-box; }
  .jobs-portale-grid { max-width: 100%; box-sizing: border-box; overflow: hidden; }
  .jobs-portal-card { max-width: 100%; box-sizing: border-box; overflow: hidden; }
  .jobs-stats { flex-wrap: wrap; gap: 16px; max-width: 100%; }
  .talents-section { padding: 0; }
  .talents-section::before { height: 30px; }
  .agentur-section { padding: 80px 0; }
  .alle-portale { padding: 64px 0; background-image: none; }
  .alle-portale-content { max-width: 100%; }
  .referenzen { padding: 80px 0; }
  .cta-section { padding: 80px 0; }
  .story-bridge { padding: 80px 0; }
  .footer-bottom { flex-direction: column; gap: 12px; text-align: center; }
}

@media (max-width: 480px) {
  .portale-cards-row { grid-template-columns: 1fr 1fr; }
  .all-portale-grid { grid-template-columns: repeat(2, 1fr); }
  .jobs-portale-grid { grid-template-columns: 1fr; }
  .story-kpis { flex-wrap: wrap; gap: 16px; }
  .story-kpi { flex: 1 1 40%; }
  .footer-bottom-links { flex-direction: column; gap: 8px; }
}
/* ============================================================
   ONLINE MARKETING – Seiten CSS
   OVB24 Theme 2026
   ============================================================ */

/* PAGE HERO */
.page-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}
.page-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.3);
}
.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(22,25,34,0.95) 0%, rgba(212,18,28,0.2) 100%);
}
.page-hero .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}
.page-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
}
.page-hero__breadcrumb a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s;
}
.page-hero__breadcrumb a:hover { color: #ffde12; }
.page-hero__badge {
    display: inline-block;
    background: rgba(212,18,28,0.2);
    border: 1px solid rgba(212,18,28,0.5);
    color: #ff6b6b;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}
.page-hero__title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}
.page-hero__title .text-red { color: #d4121c; }
.page-hero__sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 640px;
}
.page-hero__ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* USP BAR */
.om-usp-bar {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 24px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.om-usp-bar__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.om-usp-bar__item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.om-usp-bar__item svg {
    width: 32px;
    height: 32px;
    color: #d4121c;
    flex-shrink: 0;
}
.om-usp-bar__item strong {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    color: #161922;
}
.om-usp-bar__item span {
    font-size: 0.8rem;
    color: #666;
}

/* INTRO */
.om-intro {
    padding: 80px 0;
    background: #f8f9fa;
}
.om-intro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.om-intro__text .section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #d4121c;
    margin-bottom: 12px;
}
.om-intro__text h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 900;
    color: #161922;
    line-height: 1.2;
    margin-bottom: 20px;
}
.om-intro__text p {
    font-size: 1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 16px;
}
.om-intro__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.om-intro__stat-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    border-top: 3px solid #d4121c;
}
.om-intro__stat-card .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: #d4121c;
    line-height: 1;
    margin-bottom: 8px;
}
.om-intro__stat-card .stat-label {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.4;
}

/* LEISTUNGEN GRID */
.om-leistungen {
    padding: 80px 0;
    background: #fff;
}
.section-header {
    text-align: center;
    margin-bottom: 48px;
}
.section-header .section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #d4121c;
    margin-bottom: 12px;
}
.section-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: #161922;
    margin-bottom: 12px;
}
.section-header p {
    font-size: 1.05rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}
.section-header--light h2 { color: #fff; }
.section-header--light p { color: rgba(255,255,255,0.7); }
.section-header--light .section-label { color: #ffde12; }

.om-leistungen__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.om-leistung-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 28px 24px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.om-leistung-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    border-color: #d4121c;
}
.om-leistung-card--highlight {
    background: linear-gradient(135deg, #161922 0%, #252b38 100%);
    border-color: transparent;
    color: #fff;
}
.om-leistung-card--highlight h3,
.om-leistung-card--highlight p { color: rgba(255,255,255,0.9); }
.om-leistung-card__badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #ffde12;
    color: #161922;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
}
.om-leistung-card__icon {
    width: 48px;
    height: 48px;
    background: rgba(212,18,28,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.om-leistung-card--highlight .om-leistung-card__icon {
    background: rgba(255,255,255,0.1);
}
.om-leistung-card__icon svg {
    width: 24px;
    height: 24px;
    color: #d4121c;
}
.om-leistung-card--highlight .om-leistung-card__icon svg {
    color: #ffde12;
}
.om-leistung-card__tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #d4121c;
    margin-bottom: 8px;
}
.om-leistung-card__tag.tag-red {
    color: #ff6b6b;
}
.om-leistung-card h3 {
    font-size: 1rem;
    font-weight: 800;
    color: #161922;
    line-height: 1.3;
    margin-bottom: 10px;
}
.om-leistung-card p {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 16px;
}
.om-leistung-card__cta {
    font-size: 0.85rem;
    font-weight: 700;
    color: #d4121c;
    margin-top: auto;
}
.om-leistung-card--highlight .om-leistung-card__cta {
    color: #ffde12;
}

/* PROZESS */
.om-prozess {
    padding: 80px 0;
    background: #161922;
}
.om-prozess__steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-top: 48px;
}
.om-prozess__step {
    flex: 1;
    text-align: center;
    padding: 0 20px;
}
.om-prozess__step-num {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(212,18,28,0.3);
    line-height: 1;
    margin-bottom: 16px;
}
.om-prozess__step h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}
.om-prozess__step p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}
.om-prozess__arrow {
    font-size: 1.5rem;
    color: rgba(212,18,28,0.5);
    padding-top: 16px;
    flex-shrink: 0;
}

/* REFERENZEN */
.om-referenzen {
    padding: 60px 0;
    background: #f8f9fa;
}
.om-referenzen__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 32px;
}
.om-referenzen__logos img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1) opacity(0.6);
    transition: all 0.3s;
}
.om-referenzen__logos img:hover {
    filter: grayscale(0) opacity(1);
}

/* CTA FINAL */
.om-cta-final {
    padding: 80px 0;
    background: linear-gradient(135deg, #d4121c 0%, #a00e15 100%);
}
.om-cta-final__inner {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.om-cta-final__inner h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
}
.om-cta-final__inner p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
}
.om-cta-final__btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-outline-white {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.6);
    color: #fff;
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}
.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

/* UNTERSEITEN – Leistungsseite Layout */
.leistung-hero {
    background: linear-gradient(135deg, #161922 0%, #252b38 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}
.leistung-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212,18,28,0.15) 0%, transparent 70%);
}
.leistung-hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.leistung-hero__text .page-hero__badge { margin-bottom: 20px; }
.leistung-hero__text h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}
.leistung-hero__text h1 span { color: #d4121c; }
.leistung-hero__text p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 28px;
}
.leistung-hero__features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}
.leistung-hero__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    padding: 6px 0;
}
.leistung-hero__features li::before {
    content: '✓';
    color: #ffde12;
    font-weight: 900;
    flex-shrink: 0;
}
.leistung-hero__image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.leistung-hero__image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* CONTENT SECTIONS */
.leistung-content {
    padding: 80px 0;
    background: #fff;
}
.leistung-content__grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}
.leistung-content__main h2 {
    font-size: 1.8rem;
    font-weight: 900;
    color: #161922;
    margin-bottom: 16px;
    margin-top: 40px;
}
.leistung-content__main h2:first-child { margin-top: 0; }
.leistung-content__main h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #161922;
    margin-bottom: 12px;
    margin-top: 28px;
}
.leistung-content__main p {
    font-size: 1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 16px;
}
.leistung-content__main ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 24px;
}
.leistung-content__main ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
    border-bottom: 1px solid #f0f0f0;
}
.leistung-content__main ul li::before {
    content: '→';
    color: #d4121c;
    font-weight: 900;
    flex-shrink: 0;
    margin-top: 2px;
}

/* SIDEBAR */
.leistung-sidebar {
    position: sticky;
    top: 100px;
}
.leistung-sidebar__card {
    background: #161922;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
    color: #fff;
}
.leistung-sidebar__card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}
.leistung-sidebar__card p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}
.leistung-sidebar__card .btn {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
}
.leistung-sidebar__contact {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #eee;
}
.leistung-sidebar__contact h4 {
    font-size: 0.9rem;
    font-weight: 800;
    color: #161922;
    margin-bottom: 16px;
}
.leistung-sidebar__contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: #444;
    padding: 8px 0;
    text-decoration: none;
}
.leistung-sidebar__contact-item svg {
    width: 18px;
    height: 18px;
    color: #d4121c;
    flex-shrink: 0;
}
.leistung-sidebar__links {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #eee;
    margin-top: 24px;
}
.leistung-sidebar__links h4 {
    font-size: 0.9rem;
    font-weight: 800;
    color: #161922;
    margin-bottom: 16px;
}
.leistung-sidebar__links a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #444;
    text-decoration: none;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.2s;
}
.leistung-sidebar__links a:last-child { border-bottom: none; }
.leistung-sidebar__links a:hover { color: #d4121c; }
.leistung-sidebar__links a::before {
    content: '→';
    color: #d4121c;
    font-weight: 900;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .om-leistungen__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
    .om-usp-bar__grid { grid-template-columns: repeat(2, 1fr); }
    .om-intro__grid { grid-template-columns: 1fr; gap: 40px; }
    .leistung-hero .container { grid-template-columns: 1fr; }
    .leistung-hero__image { display: none; }
    .leistung-content__grid { grid-template-columns: 1fr; }
    .leistung-sidebar { position: static; }
    .om-prozess__steps { flex-direction: column; align-items: center; }
    .om-prozess__arrow { transform: rotate(90deg); }
}
@media (max-width: 768px) {
    .page-hero { min-height: 400px; padding: 100px 0 60px; }
    .page-hero__ctas { flex-direction: column; }
    .om-leistungen__grid { grid-template-columns: 1fr; }
    .om-usp-bar__grid { grid-template-columns: 1fr 1fr; }
    .om-intro__stats { grid-template-columns: 1fr 1fr; }
    .om-referenzen__logos { gap: 24px; }
    .om-referenzen__logos img { height: 30px; }
    .om-cta-final__btns { flex-direction: column; align-items: center; }
}
/* ============================================================
   ONLINE MARKETING – Seiten CSS
   OVB24 Theme 2026
   ============================================================ */

/* PAGE HERO */
.page-hero {
    position: relative;
    min-height: 520px;
    display: flex;
    align-items: center;
    padding: 120px 0 80px;
    overflow: hidden;
}
.page-hero__bg {
    position: absolute;
    inset: 0;
    background-size: cover;
    background-position: center;
    filter: brightness(0.3);
}
.page-hero__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(22,25,34,0.95) 0%, rgba(212,18,28,0.2) 100%);
}
.page-hero .container {
    position: relative;
    z-index: 2;
    max-width: 800px;
}
.page-hero__breadcrumb {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.85rem;
    color: rgba(255,255,255,0.6);
    margin-bottom: 20px;
}
.page-hero__breadcrumb a {
    color: rgba(255,255,255,0.6);
    text-decoration: none;
    transition: color 0.2s;
}
.page-hero__breadcrumb a:hover { color: #ffde12; }
.page-hero__badge {
    display: inline-block;
    background: rgba(212,18,28,0.2);
    border: 1px solid rgba(212,18,28,0.5);
    color: #ff6b6b;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 20px;
    margin-bottom: 20px;
}
.page-hero__title {
    font-size: clamp(2.2rem, 5vw, 3.8rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}
.page-hero__title .text-red { color: #d4121c; }
.page-hero__sub {
    font-size: 1.1rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 32px;
    max-width: 640px;
}
.page-hero__ctas {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
}

/* USP BAR */
.om-usp-bar {
    background: #fff;
    border-bottom: 1px solid #eee;
    padding: 24px 0;
    box-shadow: 0 2px 20px rgba(0,0,0,0.06);
}
.om-usp-bar__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.om-usp-bar__item {
    display: flex;
    align-items: center;
    gap: 12px;
}
.om-usp-bar__item svg {
    width: 32px;
    height: 32px;
    color: #d4121c;
    flex-shrink: 0;
}
.om-usp-bar__item strong {
    display: block;
    font-size: 1rem;
    font-weight: 800;
    color: #161922;
}
.om-usp-bar__item span {
    font-size: 0.8rem;
    color: #666;
}

/* INTRO */
.om-intro {
    padding: 80px 0;
    background: #f8f9fa;
}
.om-intro__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.om-intro__text .section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #d4121c;
    margin-bottom: 12px;
}
.om-intro__text h2 {
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    font-weight: 900;
    color: #161922;
    line-height: 1.2;
    margin-bottom: 20px;
}
.om-intro__text p {
    font-size: 1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 16px;
}
.om-intro__stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
}
.om-intro__stat-card {
    background: #fff;
    border-radius: 12px;
    padding: 24px;
    text-align: center;
    box-shadow: 0 2px 16px rgba(0,0,0,0.06);
    border-top: 3px solid #d4121c;
}
.om-intro__stat-card .stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 900;
    color: #d4121c;
    line-height: 1;
    margin-bottom: 8px;
}
.om-intro__stat-card .stat-label {
    font-size: 0.8rem;
    color: #666;
    line-height: 1.4;
}

/* LEISTUNGEN GRID */
.om-leistungen {
    padding: 80px 0;
    background: #fff;
}
.section-header {
    text-align: center;
    margin-bottom: 48px;
}
.section-header .section-label {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #d4121c;
    margin-bottom: 12px;
}
.section-header h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.8rem);
    font-weight: 900;
    color: #161922;
    margin-bottom: 12px;
}
.section-header p {
    font-size: 1.05rem;
    color: #666;
    max-width: 600px;
    margin: 0 auto;
}
.section-header--light h2 { color: #fff; }
.section-header--light p { color: rgba(255,255,255,0.7); }
.section-header--light .section-label { color: #ffde12; }

.om-leistungen__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 24px;
}
.om-leistung-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid #eee;
    border-radius: 16px;
    padding: 28px 24px;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}
.om-leistung-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.12);
    border-color: #d4121c;
}
.om-leistung-card--highlight {
    background: linear-gradient(135deg, #161922 0%, #252b38 100%);
    border-color: transparent;
    color: #fff;
}
.om-leistung-card--highlight h3,
.om-leistung-card--highlight p { color: rgba(255,255,255,0.9); }
.om-leistung-card__badge {
    position: absolute;
    top: 16px;
    right: 16px;
    background: #ffde12;
    color: #161922;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    padding: 4px 10px;
    border-radius: 20px;
}
.om-leistung-card__icon {
    width: 48px;
    height: 48px;
    background: rgba(212,18,28,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 16px;
}
.om-leistung-card--highlight .om-leistung-card__icon {
    background: rgba(255,255,255,0.1);
}
.om-leistung-card__icon svg {
    width: 24px;
    height: 24px;
    color: #d4121c;
}
.om-leistung-card--highlight .om-leistung-card__icon svg {
    color: #ffde12;
}
.om-leistung-card__tag {
    display: inline-block;
    font-size: 0.7rem;
    font-weight: 700;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: #d4121c;
    margin-bottom: 8px;
}
.om-leistung-card__tag.tag-red {
    color: #ff6b6b;
}
.om-leistung-card h3 {
    font-size: 1rem;
    font-weight: 800;
    color: #161922;
    line-height: 1.3;
    margin-bottom: 10px;
}
.om-leistung-card p {
    font-size: 0.875rem;
    color: #666;
    line-height: 1.6;
    flex: 1;
    margin-bottom: 16px;
}
.om-leistung-card__cta {
    font-size: 0.85rem;
    font-weight: 700;
    color: #d4121c;
    margin-top: auto;
}
.om-leistung-card--highlight .om-leistung-card__cta {
    color: #ffde12;
}

/* PROZESS */
.om-prozess {
    padding: 80px 0;
    background: #161922;
}
.om-prozess__steps {
    display: flex;
    align-items: flex-start;
    gap: 0;
    margin-top: 48px;
}
.om-prozess__step {
    flex: 1;
    text-align: center;
    padding: 0 20px;
}
.om-prozess__step-num {
    font-size: 3rem;
    font-weight: 900;
    color: rgba(212,18,28,0.3);
    line-height: 1;
    margin-bottom: 16px;
}
.om-prozess__step h3 {
    font-size: 1.05rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 10px;
}
.om-prozess__step p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.6);
    line-height: 1.6;
}
.om-prozess__arrow {
    font-size: 1.5rem;
    color: rgba(212,18,28,0.5);
    padding-top: 16px;
    flex-shrink: 0;
}

/* REFERENZEN */
.om-referenzen {
    padding: 60px 0;
    background: #f8f9fa;
}
.om-referenzen__logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 40px;
    flex-wrap: wrap;
    margin-top: 32px;
}
.om-referenzen__logos img {
    height: 40px;
    width: auto;
    object-fit: contain;
    filter: grayscale(1) opacity(0.6);
    transition: all 0.3s;
}
.om-referenzen__logos img:hover {
    filter: grayscale(0) opacity(1);
}

/* CTA FINAL */
.om-cta-final {
    padding: 80px 0;
    background: linear-gradient(135deg, #d4121c 0%, #a00e15 100%);
}
.om-cta-final__inner {
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}
.om-cta-final__inner h2 {
    font-size: clamp(1.8rem, 3.5vw, 2.6rem);
    font-weight: 900;
    color: #fff;
    margin-bottom: 16px;
}
.om-cta-final__inner p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.85);
    margin-bottom: 32px;
}
.om-cta-final__btns {
    display: flex;
    gap: 16px;
    justify-content: center;
    flex-wrap: wrap;
}
.btn-outline-white {
    background: transparent;
    border: 2px solid rgba(255,255,255,0.6);
    color: #fff;
}
.btn-outline-white:hover {
    background: rgba(255,255,255,0.1);
    border-color: #fff;
}
.btn-lg {
    padding: 16px 32px;
    font-size: 1rem;
}

/* UNTERSEITEN – Leistungsseite Layout */
.leistung-hero {
    background: linear-gradient(135deg, #161922 0%, #252b38 100%);
    padding: 120px 0 80px;
    position: relative;
    overflow: hidden;
}
.leistung-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212,18,28,0.15) 0%, transparent 70%);
}
.leistung-hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
}
.leistung-hero__text .page-hero__badge { margin-bottom: 20px; }
.leistung-hero__text h1 {
    font-size: clamp(2rem, 4vw, 3.2rem);
    font-weight: 900;
    color: #fff;
    line-height: 1.1;
    margin-bottom: 20px;
}
.leistung-hero__text h1 span { color: #d4121c; }
.leistung-hero__text p {
    font-size: 1.05rem;
    color: rgba(255,255,255,0.75);
    line-height: 1.7;
    margin-bottom: 28px;
}
.leistung-hero__features {
    list-style: none;
    padding: 0;
    margin: 0 0 28px;
}
.leistung-hero__features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.95rem;
    color: rgba(255,255,255,0.85);
    padding: 6px 0;
}
.leistung-hero__features li::before {
    content: '✓';
    color: #ffde12;
    font-weight: 900;
    flex-shrink: 0;
}
.leistung-hero__image {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 30px 60px rgba(0,0,0,0.4);
}
.leistung-hero__image img {
    width: 100%;
    height: 400px;
    object-fit: cover;
}

/* CONTENT SECTIONS */
.leistung-content {
    padding: 80px 0;
    background: #fff;
}
.leistung-content__grid {
    display: grid;
    grid-template-columns: 2fr 1fr;
    gap: 60px;
    align-items: start;
}
.leistung-content__main h2 {
    font-size: 1.8rem;
    font-weight: 900;
    color: #161922;
    margin-bottom: 16px;
    margin-top: 40px;
}
.leistung-content__main h2:first-child { margin-top: 0; }
.leistung-content__main h3 {
    font-size: 1.2rem;
    font-weight: 800;
    color: #161922;
    margin-bottom: 12px;
    margin-top: 28px;
}
.leistung-content__main p {
    font-size: 1rem;
    color: #444;
    line-height: 1.8;
    margin-bottom: 16px;
}
.leistung-content__main ul {
    padding-left: 0;
    list-style: none;
    margin-bottom: 24px;
}
.leistung-content__main ul li {
    display: flex;
    align-items: flex-start;
    gap: 10px;
    padding: 8px 0;
    font-size: 0.95rem;
    color: #444;
    line-height: 1.6;
    border-bottom: 1px solid #f0f0f0;
}
.leistung-content__main ul li::before {
    content: '→';
    color: #d4121c;
    font-weight: 900;
    flex-shrink: 0;
    margin-top: 2px;
}

/* SIDEBAR */
.leistung-sidebar {
    position: sticky;
    top: 100px;
}
.leistung-sidebar__card {
    background: #161922;
    border-radius: 16px;
    padding: 32px;
    margin-bottom: 24px;
    color: #fff;
}
.leistung-sidebar__card h3 {
    font-size: 1.1rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 16px;
}
.leistung-sidebar__card p {
    font-size: 0.875rem;
    color: rgba(255,255,255,0.7);
    line-height: 1.6;
    margin-bottom: 20px;
}
.leistung-sidebar__card .btn {
    width: 100%;
    text-align: center;
    margin-bottom: 10px;
}
.leistung-sidebar__contact {
    background: #f8f9fa;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #eee;
}
.leistung-sidebar__contact h4 {
    font-size: 0.9rem;
    font-weight: 800;
    color: #161922;
    margin-bottom: 16px;
}
.leistung-sidebar__contact-item {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 0.875rem;
    color: #444;
    padding: 8px 0;
    text-decoration: none;
}
.leistung-sidebar__contact-item svg {
    width: 18px;
    height: 18px;
    color: #d4121c;
    flex-shrink: 0;
}
.leistung-sidebar__links {
    background: #fff;
    border-radius: 16px;
    padding: 24px;
    border: 1px solid #eee;
    margin-top: 24px;
}
.leistung-sidebar__links h4 {
    font-size: 0.9rem;
    font-weight: 800;
    color: #161922;
    margin-bottom: 16px;
}
.leistung-sidebar__links a {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 0.875rem;
    color: #444;
    text-decoration: none;
    padding: 8px 0;
    border-bottom: 1px solid #f0f0f0;
    transition: color 0.2s;
}
.leistung-sidebar__links a:last-child { border-bottom: none; }
.leistung-sidebar__links a:hover { color: #d4121c; }
.leistung-sidebar__links a::before {
    content: '→';
    color: #d4121c;
    font-weight: 900;
}

/* RESPONSIVE */
@media (max-width: 1200px) {
    .om-leistungen__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 1024px) {
    .om-usp-bar__grid { grid-template-columns: repeat(2, 1fr); }
    .om-intro__grid { grid-template-columns: 1fr; gap: 40px; }
    .leistung-hero .container { grid-template-columns: 1fr; }
    .leistung-hero__image { display: none; }
    .leistung-content__grid { grid-template-columns: 1fr; }
    .leistung-sidebar { position: static; }
    .om-prozess__steps { flex-direction: column; align-items: center; }
    .om-prozess__arrow { transform: rotate(90deg); }
}
@media (max-width: 768px) {
    .page-hero { min-height: 400px; padding: 100px 0 60px; }
    .page-hero__ctas { flex-direction: column; }
    .om-leistungen__grid { grid-template-columns: 1fr; }
    .om-usp-bar__grid { grid-template-columns: 1fr 1fr; }
    .om-intro__stats { grid-template-columns: 1fr 1fr; }
    .om-referenzen__logos { gap: 24px; }
    .om-referenzen__logos img { height: 30px; }
    .om-cta-final__btns { flex-direction: column; align-items: center; }
}

/* ============================================================
   MOBILE FIXES – Ergänzungen
   ============================================================ */

/* Menü: Pfeil-Toggle-Button für Submenü */
.mobile-sub-toggle {
    background: none;
    border: none;
    color: rgba(255,255,255,0.7);
    font-size: 1.4rem;
    padding: 4px 12px;
    cursor: pointer;
    line-height: 1;
    transition: transform 0.3s, color 0.2s;
    flex-shrink: 0;
}
.mobile-sub-toggle.open {
    transform: rotate(90deg);
    color: #ffde12;
}
.mobile-nav-item.has-sub {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}
.mobile-nav-item.has-sub > a {
    flex: 1;
}
.mobile-nav-item.has-sub .mobile-dropdown {
    width: 100%;
    display: none;
}
.mobile-nav-item.has-sub .mobile-dropdown.open {
    display: block;
}

/* Desktop Nav-Pfeil */
.nav-arrow {
    font-size: 0.9rem;
    margin-left: 2px;
    opacity: 0.6;
    transition: transform 0.2s;
    display: inline-block;
}
.nav-menu li:hover .nav-arrow {
    transform: rotate(90deg);
    opacity: 1;
}

/* Online-Marketing Seiten – Mobile Fixes */
@media (max-width: 640px) {
    .page-hero {
        min-height: 360px;
        padding: 90px 0 50px;
    }
    .page-hero__title {
        font-size: clamp(1.8rem, 8vw, 2.5rem);
    }
    .page-hero__sub {
        font-size: 0.95rem;
    }
    .page-hero__ctas {
        flex-direction: column;
        gap: 12px;
    }
    .page-hero__ctas .btn {
        width: 100%;
        text-align: center;
        justify-content: center;
    }
    .om-usp-bar__grid {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .om-usp-bar__item {
        flex-direction: column;
        text-align: center;
        gap: 8px;
    }
    .om-intro__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .om-intro__image {
        display: none;
    }
    .om-intro__stats {
        grid-template-columns: 1fr 1fr;
        gap: 16px;
    }
    .om-intro__stat-num {
        font-size: 2rem;
    }
    .om-leistungen__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .om-leistung-card {
        padding: 24px 20px;
    }
    .om-prozess__steps {
        flex-direction: column;
        gap: 20px;
    }
    .om-prozess__arrow {
        transform: rotate(90deg);
        margin: 0 auto;
    }
    .om-prozess__step {
        width: 100%;
        max-width: 320px;
        margin: 0 auto;
    }
    .om-referenzen__logos {
        gap: 20px;
        flex-wrap: wrap;
        justify-content: center;
    }
    .om-referenzen__logos img {
        height: 28px;
    }
    .om-cta-final__btns {
        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }
    .om-cta-final__btns .btn {
        text-align: center;
        justify-content: center;
    }
    /* Unterseiten-Layout */
    .leistung-hero {
        padding: 90px 0 50px;
    }
    .leistung-hero .container {
        grid-template-columns: 1fr;
    }
    .leistung-hero__image {
        display: none;
    }
    .leistung-content__grid {
        grid-template-columns: 1fr;
        gap: 30px;
    }
    .leistung-sidebar {
        position: static;
    }
    .leistung-sidebar__card {
        padding: 24px 20px;
    }
    .leistung-content__section {
        padding: 50px 0;
    }
    .leistung-features__grid {
        grid-template-columns: 1fr;
        gap: 16px;
    }
    .leistung-pakete__grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    .leistung-paket {
        padding: 28px 20px;
    }
    .leistung-faq__item {
        padding: 20px;
    }
    /* Section-Überschriften */
    .section-title {
        font-size: clamp(1.6rem, 6vw, 2.2rem);
    }
    .section-sub {
        font-size: 0.95rem;
    }
    /* Container Padding */
    .container {
        padding-left: 16px;
        padding-right: 16px;
    }
}

@media (max-width: 480px) {
    .om-usp-bar__grid {
        grid-template-columns: 1fr;
    }
    .om-intro__stats {
        grid-template-columns: 1fr;
    }
    .leistung-features__grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================================
   OVB24 STORY THEME - Additional Styles
   ============================================================ */
.site-header{background:var(--white);position:sticky;top:0;z-index:100;box-shadow:0 1px 12px rgba(22,25,34,.05)}
.site-header .nav{display:flex;align-items:center;justify-content:space-between;padding:16px 0;gap:24px}
.site-header .nav-logo img{height:46px;width:auto}
.site-header .nav-menu{display:flex;align-items:center;gap:2px;list-style:none;margin-left:auto}
.site-header .nav-menu li a{display:block;padding:10px 16px;font-weight:400;font-size:15px;color:var(--dark);border-radius:8px;transition:all var(--transition)}
.site-header .nav-menu li a:hover{background:var(--yellow)}
.site-header .nav-actions{display:flex;align-items:center;gap:12px}
.site-header .nav-icon{width:38px;height:38px;border-radius:50%;background:var(--gray-light);display:flex;align-items:center;justify-content:center;color:var(--dark);transition:all var(--transition)}
.site-header .nav-icon:hover{background:var(--yellow)}
.site-header .nav-cta{background:var(--yellow);color:var(--dark);font-weight:700;border-radius:50px;padding:12px 24px;display:inline-flex;align-items:center;gap:8px;font-size:14px;transition:all var(--transition)}
.site-header .nav-cta:hover{background:#e6c800;transform:translateY(-1px);box-shadow:0 8px 24px rgba(255,222,18,.35)}
@media(max-width:1024px){.site-header .nav-menu{display:none}}
.hero-section{position:relative;min-height:100vh;display:flex;align-items:center;overflow:hidden;background:var(--dark)}
.hero-container{position:relative;z-index:2}
.hero-kicker{color:var(--yellow)}
.hero-headline{font-size:clamp(36px,5vw,64px);font-weight:800;color:var(--white);line-height:1.08;margin-bottom:24px;font-family:var(--font-hero)}
.hero-headline em{font-style:italic;color:var(--yellow)}
.hero-subline{font-size:18px;color:rgba(255,255,255,.65);line-height:1.75;max-width:560px}
.hero-sticker{position:absolute;right:6%;bottom:18%;z-index:3;width:170px;height:170px;border-radius:50%;background:var(--yellow);color:var(--dark);display:flex;flex-direction:column;align-items:center;justify-content:center;transform:rotate(-10deg);box-shadow:0 12px 36px rgba(0,0,0,.35);text-align:center;padding:14px}
.hero-sticker .n{font-size:46px;font-weight:800;line-height:1;font-family:var(--font-hero)}
.hero-sticker .l{font-size:12px;font-weight:700;letter-spacing:.08em;text-transform:uppercase;margin-top:4px;line-height:1.1}
.hero-scroll-hint{position:absolute;bottom:40px;left:50%;transform:translateX(-50%);z-index:2;display:flex;flex-direction:column;align-items:center;gap:6px;color:rgba(255,255,255,.3);font-size:10px;letter-spacing:2px;text-transform:uppercase}
@media(max-width:768px){.hero-sticker{width:120px;height:120px;right:4%;bottom:8%}.hero-sticker .n{font-size:32px}.hero-sticker .l{font-size:10px}}
.story-info-section{background:var(--white);padding:120px 0}
.story-info-grid{display:grid;grid-template-columns:1fr 1fr;gap:80px;align-items:start}
.headline-prefix{font-size:clamp(48px,6vw,80px);font-weight:400;color:var(--dark);line-height:1;text-transform:uppercase;letter-spacing:-1px;border-left:4px solid var(--red);padding-left:20px;display:block;margin-bottom:20px}
.headline-prefix em{font-style:normal;color:var(--red)}
.story-info-title{font-size:clamp(16px,1.8vw,20px);font-weight:400;font-style:italic;color:var(--gray);line-height:1.5;margin-bottom:32px}
.story-info-desc{font-size:16px;color:var(--gray);line-height:1.75;margin-bottom:32px}
.story-info-features{list-style:none;margin-bottom:32px}
.story-info-features li{display:flex;align-items:center;gap:12px;padding:8px 0;font-size:15px;color:var(--dark)}
.feature-check{color:var(--red);font-weight:700}
.story-info-stats{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.stat-card{background:var(--gray-light);border-radius:var(--radius);padding:28px;text-align:center;border-top:3px solid var(--red)}
.stat-card .stat-number{font-size:36px;font-weight:800;color:var(--red);display:block;margin-bottom:4px}
.stat-card .stat-label{font-size:13px;color:var(--gray);text-transform:uppercase;letter-spacing:1px}
.stat-card-highlight{border-top-color:var(--yellow);grid-column:1/-1;text-align:left}
.stat-desc{font-size:14px;color:var(--gray);margin-top:4px}
@media(max-width:1024px){.story-info-grid{grid-template-columns:1fr;gap:40px}}
.portale-section{background:var(--gray-light);padding:100px 0}
.section-headline{font-size:clamp(28px,4vw,48px);font-weight:400;color:var(--dark);line-height:1.15;margin-bottom:18px}
.section-subline{font-size:17px;color:var(--gray);max-width:580px;line-height:1.75;margin-bottom:48px}
.hebel-section{background:var(--white);padding:100px 0}
.hebel-grid{display:grid;grid-template-columns:repeat(3,1fr);gap:32px;margin-top:48px}
.hebel-card{background:var(--gray-light);border-radius:var(--radius);padding:40px 32px;border:1px solid rgba(22,25,34,.06);transition:all .3s ease}
.hebel-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-lg);border-color:var(--red)}
.hebel-kicker{font-size:11px;font-weight:400;letter-spacing:2px;text-transform:uppercase;color:var(--red);margin-bottom:12px;display:block}
.hebel-title{font-size:20px;font-weight:400;color:var(--dark);margin-bottom:16px}
.hebel-desc{font-size:15px;color:var(--gray);line-height:1.7;margin-bottom:24px}
.hebel-cta{font-size:14px;font-weight:400;color:var(--red);display:inline-flex;align-items:center;gap:6px;transition:gap var(--transition)}
.hebel-card:hover .hebel-cta{gap:10px}
@media(max-width:1024px){.hebel-grid{grid-template-columns:1fr}}
.referenzen-section{background:var(--gray-light);padding:100px 0}
.story-references-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:24px;margin-top:48px}
.story-ref-card{display:flex;flex-direction:column;background:var(--white);border-radius:var(--radius);overflow:hidden;border:1px solid rgba(22,25,34,.06);box-shadow:var(--shadow);transition:all .3s ease;text-decoration:none;color:inherit}
.story-ref-card:hover{transform:translateY(-6px);box-shadow:var(--shadow-lg);border-color:var(--red)}
.story-ref-img{aspect-ratio:4/3;background-size:cover;background-position:center;transition:transform .4s ease}
.story-ref-card:hover .story-ref-img{transform:scale(1.04)}
.story-ref-body{padding:24px 22px;display:flex;flex-direction:column;gap:10px;flex:1}
.story-ref-tag{font-size:11px;font-weight:400;letter-spacing:1.5px;text-transform:uppercase;color:var(--red)}
.story-ref-card h3{font-size:18px;font-weight:400;color:var(--dark);line-height:1.3;margin:0}
.story-ref-sub{font-size:13px;color:var(--gray);line-height:1.5;font-style:italic}
.story-ref-cta{margin-top:auto;padding-top:12px;font-size:13px;font-weight:400;color:var(--red);display:inline-flex;align-items:center;gap:6px;transition:gap var(--transition)}
.story-ref-card:hover .story-ref-cta{gap:10px}
@media(max-width:1024px){.story-references-grid{grid-template-columns:repeat(2,1fr)}}
@media(max-width:600px){.story-references-grid{grid-template-columns:1fr}}
.statement-section{padding:80px 0;background:var(--white)}
.story-statement{max-width:780px;margin:0 auto;text-align:center;padding:48px 32px;background:var(--gray-light);border-radius:var(--radius);border-left:4px solid var(--red)}
.story-statement-quote-icon{font-size:64px;color:var(--red);line-height:.6;margin-bottom:8px;font-family:Georgia,serif}
.story-statement-quote{font-size:clamp(20px,2.4vw,28px);font-style:italic;color:var(--dark);line-height:1.4;margin-bottom:24px}
.story-statement-author{display:flex;flex-direction:column;gap:4px;align-items:center}
.story-statement-name{font-size:15px;font-weight:400;color:var(--dark)}
.story-statement-role{font-size:13px;color:var(--gray)}
.booking-section{background:var(--gray-light);padding:120px 0}
.booking-layout{display:grid;grid-template-columns:1fr 1fr;gap:64px;align-items:start}
.booking-content .section-label{color:var(--red)}
.booking-headline{font-size:clamp(28px,4vw,48px);font-weight:400;color:var(--dark);line-height:1.15;margin-bottom:18px}
.booking-headline em{font-style:italic;color:var(--red)}
.booking-desc{font-size:17px;color:var(--gray);line-height:1.75;margin-bottom:32px;max-width:480px}
.booking-trust{display:flex;flex-direction:column;gap:14px;margin-top:32px}
.booking-trust-item{display:flex;align-items:center;gap:12px;font-size:14px;color:var(--gray-dark)}
.booking-trust-icon{width:32px;height:32px;border-radius:50%;background:rgba(212,18,28,.08);color:var(--red);display:flex;align-items:center;justify-content:center;flex-shrink:0;font-size:14px}
.booking-form{background:var(--white);border-radius:var(--radius);padding:40px;box-shadow:var(--shadow-lg);display:flex;flex-direction:column;gap:18px;position:relative}
.booking-form-row{display:grid;grid-template-columns:1fr 1fr;gap:16px}
.booking-field label{display:block;font-size:12px;font-weight:400;letter-spacing:1px;text-transform:uppercase;color:var(--gray-dark);margin-bottom:8px}
.booking-field input,.booking-field textarea,.booking-field select{width:100%;padding:14px 16px;border:1.5px solid rgba(22,25,34,.12);border-radius:10px;font-family:var(--font);font-size:15px;color:var(--dark);background:var(--white);transition:all var(--transition)}
.booking-field input:focus,.booking-field textarea:focus,.booking-field select:focus{outline:0;border-color:var(--red);box-shadow:0 0 0 4px rgba(212,18,28,.08)}
.booking-consent{display:flex;gap:10px;align-items:flex-start;font-size:13px;color:var(--gray)}
.booking-consent input{margin-top:4px;accent-color:var(--red)}
.booking-consent a{color:var(--red);text-decoration:underline}
.booking-form button{align-self:flex-start;margin-top:8px}
.booking-form-success{min-height:300px;display:flex;align-items:center;justify-content:center}
@media(max-width:1024px){.booking-layout{grid-template-columns:1fr;gap:40px}.booking-form-row{grid-template-columns:1fr}}
.site-footer{background:var(--dark);padding:40px 0}
.footer-minimal{display:flex;flex-direction:column;align-items:center;text-align:center;gap:16px}
.footer-minimal .footer-logo{display:inline-block;background:#fff;padding:10px 16px;border-radius:10px}
.footer-minimal .footer-logo img{height:36px;display:block;filter:none!important}
.footer-copyright{font-size:14px;color:rgba(255,255,255,.5)}
.footer-legal{display:flex;gap:24px;font-size:14px}
.footer-legal a{color:rgba(255,255,255,.5);text-decoration:underline;transition:color var(--transition)}
.footer-legal a:hover{color:var(--yellow)}
.story-vev-embed{width:100%}
.story-vev-content{width:100%;min-height:100vh}
.story-vev-content iframe{width:100%;min-height:100vh;border:none}
.story-archive{background:var(--white)}
.story-archive-pagination .nav-links{display:flex;gap:8px;justify-content:center}
.story-archive-pagination .page-numbers{padding:8px 16px;border-radius:8px;font-size:14px;color:var(--dark);background:var(--gray-light);transition:all var(--transition)}
.story-archive-pagination .page-numbers.current{background:var(--red);color:var(--white)}
.story-archive-pagination .page-numbers:hover{background:var(--yellow)}
