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

:root {
  --red:        #D4121C;
  --color-primary:  #FFDE12;
  --color-btn-text: #161922;
  --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: 18px; }
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: 18px; 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: 18px; 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); color: #161922; }
.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 { 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: 42px; width: auto; }
.nav-logo .custom-logo-link img { height: 42px; 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; }
.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; padding: 6px 9px !important; font-size: 14px !important; }
a.btn.btn-primary.nav-cta:hover { background: #e6c800 !important; transform: translateY(-2px); box-shadow: 0 8px 24px rgba(255,222,18,0.35); }
.btn-nav-cta { padding: 6px 9px !important; font-size: 14px !important; border-radius: 50px !important; }
#nav-cta-btn { padding: 6px 9px !important; font-size: 14px !important; }

/* ── SECTION HEADER ── */
.section-label { display: inline-block; font-size: 18px; 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: 18px; 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 ══ */
.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: 18px; 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: "Ropa Sans"; }
.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 ══ */
.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); }
.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); }
.story-bridge-content h3 { font-size: clamp(18px, 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); }
.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-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: 18px; 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: 18px; 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: 18px; font-weight: 400; color: var(--dark); margin-bottom: 4px; }
.story-badge-sub { font-size: 18px; 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: 18px; color: var(--gray); }

/* ══ 3. STATS BAR ══ */
.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: 18px; 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: 18px; 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: 18px; 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: 18px; }

/* ══ 5. DIGITALE LEISTUNGEN ══ */
.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: 18px; 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: 18px; 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: 18px; 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: 'Ropa Sans'; 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; }
.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; }
.jobs-hero-text h3 { font-size: clamp(18px, 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); }
.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-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: 18px; color: #444; 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: 14px; font-weight: 400; color: var(--dark); }
.jobs-portal-card-sub { font-size: 12px; 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: 18px; 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: 18px; font-weight: 400; text-decoration: none; transition: all var(--transition); border: 2px solid #faa432; }
.btn-orange:hover { background: #e8931f; border-color: #e8931f; color: #fff !important; }

/* ══ 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; }
.talents-section::after { display: none; }
.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-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: 18px; 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: 18px; color: rgba(255,255,255,0.7); line-height: 1.8; margin-bottom: 32px; }
.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; }
.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: 14px; 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); color: #FFFFFF; }
.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: 18px; font-weight: 400; color: var(--white); margin-bottom: 4px; }
.talents-service-desc { font-size: 14px; color: rgba(255,255,255,0.45); line-height: 1.5; }
.talents-visual { position: relative; align-self: stretch; z-index: 2; display: flex; flex-direction: column; justify-content: flex-end; margin-right: -60px; }
.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; }
.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: 14px; 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: 18px; 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: 18px; 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: 18px; font-weight: 400; color: var(--dark); margin-bottom: 2px; }
.agentur-service-desc { font-size: 18px; color: var(--gray); line-height: 1.5; }

/* ══ 9. ALLE PORTALE ══ */
.alle-portale { padding: 120px 0; background-color: var(--gray-light); background-repeat: no-repeat; background-position: right bottom; background-size: 42% auto; overflow: visible; }
.alle-portale-content { position: relative; z-index: 2; max-width: 100%; }
.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: 18px; 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: 18px; 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: 18px; 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: 18px; 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: 18px; font-weight: 400; color: var(--dark); }
.referenz-company { font-size: 18px; color: var(--gray); }

/* ══ 11. CTA ══ */
.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 { 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; }
.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); }
.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-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; }
.cta-section.cta-visible .cta-anim { opacity: 1; transform: translateY(0); }

/* ══ FOOTER ══ */
.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: 16px; line-height: 1.75; color: rgba(255,255,255,0.45); margin-bottom: 28px; }
.footer-social { display: flex; gap: 10px; align-items: center; margin-top: 4px; }
.footer-social__icon { width: 38px; height: 38px; border-radius: 10px; background: rgba(255,255,255,0.07); color: rgba(255,255,255,0.55); display: flex; align-items: center; justify-content: center; transition: background 0.2s, color 0.2s, transform 0.2s; text-decoration: none; }
.footer-social__icon:hover { background: #FFDE12; color: #161922; transform: translateY(-3px); }
.footer-col h4 { font-size: 16px; 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: 16px; 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 ══ */
.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; }
.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; }
.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; }

/* ══ ADMIN BAR ══ */
.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; } }

/* ══════════════════════════════════════════════
   ONLINE MARKETING – Seiten CSS
   ══════════════════════════════════════════════ */
.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(1.0); }
.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; }
.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; }
.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; }
.om-leistungen { padding: 80px 0; background: #fff; }
.section-header { text-align: center; margin-bottom: 48px; }
.section-header .section-label { display: inline-block; font-size: 1.15rem; 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: 18px; 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; }
.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; }
.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); }
.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-lg { padding: 16px 32px; font-size: 1rem; }

/* ══ 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; }
.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: 18px; 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; }
.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; }

/* ══ GLOBAL PAGE HERO ══ */
.global-page-hero { position: relative !important; min-height: 580px !important; display: flex !important; align-items: center !important; background: #161922 !important; padding: 120px 0 80px !important; overflow: hidden !important; }
.global-page-hero__overlay { position: absolute !important; inset: 0 !important; background: rgba(18, 22, 38, 0.65) !important; z-index: 1 !important; }
.global-page-hero__bg { position: absolute !important; inset: 0 !important; background-size: cover !important; background-position: center !important; opacity: 0.3 !important; z-index: 0 !important; }
.global-page-hero--high-opacity .global-page-hero__bg { opacity: 0.55 !important; }
.global-page-hero__content { position: relative !important; z-index: 2 !important; max-width: 700px !important; }
.global-page-hero__badge { display: inline-block !important; background: rgba(212, 18, 28, 0.2) !important; border: 1px solid rgba(212, 18, 28, 0.5) !important; color: #ff6b6b !important; font-size: 12px !important; font-weight: 700 !important; letter-spacing: 0.12em !important; text-transform: uppercase !important; padding: 6px 14px !important; border-radius: 20px !important; margin-bottom: 24px !important; }
.global-page-hero__badge--yellow { background: rgba(255, 222, 18, 0.15) !important; border-color: rgba(255, 222, 18, 0.4) !important; color: #ffde12 !important; }
.global-page-hero h1 { font-size: clamp(40px, 6vw, 80px) !important; font-weight: 800 !important; line-height: 1.0 !important; margin-bottom: 24px !important; text-transform: uppercase !important; letter-spacing: -1px !important; border-left: 4px solid #ffde12 !important; padding-left: 20px !important; color: #ffffff !important; text-align: left !important; }
.global-page-hero h1 span.highlight { color: #ffde12 !important; }
.global-page-hero p { font-size: 18px !important; color: rgba(255, 255, 255, 0.7) !important; line-height: 1.75 !important; margin-bottom: 32px !important; max-width: 560px !important; text-align: left !important; }

/* ══ STATS BAR STARTSEITE ══ */
body.home .stats-bar { background: #f5f5f7 !important; border-top: 3px solid #d4121c !important; border-bottom: 1px solid rgba(22, 25, 34, 0.05) !important; padding: 0 !important; box-shadow: 0 4px 20px rgba(22, 25, 34, 0.06) !important; }
body.home .stats-grid { display: grid !important; grid-template-columns: repeat(4, 1fr) !important; width: 100% !important; max-width: 1200px !important; margin: 0 auto !important; }
body.home .stat-item { background: transparent !important; border-right: 1px solid rgba(22, 25, 34, 0.08) !important; padding: 36px 20px !important; display: flex !important; flex-direction: column !important; align-items: center !important; justify-content: center !important; gap: 8px !important; }
body.home .stat-item:last-child { border-right: none !important; }
body.home .stat-number { display: block !important; font-family: 'Ropa Sans', 'Inter', Arial, sans-serif !important; font-size: 36px !important; font-weight: 400 !important; color: #161922 !important; line-height: 1.1 !important; text-align: center !important; }
body.home .stat-label { display: block !important; font-family: 'Ropa Sans', 'Inter', Arial, sans-serif !important; font-size: 12px !important; font-weight: 400 !important; color: #626262 !important; text-transform: uppercase !important; letter-spacing: 1px !important; line-height: 1.3 !important; text-align: center !important; }

/* ══ CTA CF7 FORMULAR ══ */
.cta-layout--cf7 { display: grid !important; grid-template-columns: 1fr 1fr; gap: 60px; align-items: center; }
.cta-cf7-wrap { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.12); border-radius: 16px; padding: 32px 28px; }
.cta-cf7-wrap label, .cta-cf7-wrap .wpcf7-form-control-wrap { display: block; color: rgba(255,255,255,0.75) !important; font-size: 13px !important; font-weight: 600 !important; margin-bottom: 3px; text-transform: uppercase; letter-spacing: 0.5px; }
.cta-cf7-wrap input[type="text"], .cta-cf7-wrap input[type="email"], .cta-cf7-wrap input[type="tel"], .cta-cf7-wrap textarea, .cta-cf7-wrap select { width: 100% !important; background: rgba(255,255,255,0.08) !important; color: #ffffff !important; border: 1px solid rgba(255,255,255,0.2) !important; border-radius: 8px !important; padding: 10px 14px !important; font-size: 18px !important; font-family: 'Ropa Sans', 'Inter', Arial, sans-serif !important; transition: border-color 0.2s ease !important; margin-bottom: 10px !important; box-shadow: none !important; -webkit-appearance: none; }
.cta-cf7-wrap input::placeholder, .cta-cf7-wrap textarea::placeholder { color: rgba(255,255,255,0.3) !important; font-size: 18px !important; }
.cta-cf7-wrap input:focus, .cta-cf7-wrap textarea:focus { border-color: #FFDE12 !important; box-shadow: 0 0 0 3px rgba(255,222,18,0.15) !important; outline: none !important; background: rgba(255,255,255,0.12) !important; }
.cta-cf7-wrap textarea { min-height: 90px; resize: vertical; }
.cta-cf7-wrap .wpcf7-acceptance, .cta-cf7-wrap .wpcf7-list-item-label { font-size: 13px !important; color: rgba(255,255,255,0.5) !important; font-weight: 400 !important; text-transform: none !important; letter-spacing: 0 !important; }
.cta-cf7-wrap .wpcf7-list-item-label a { color: #FFDE12 !important; text-decoration: underline; }
.cta-cf7-wrap input[type="submit"], .cta-cf7-wrap .wpcf7-submit { width: 100% !important; background: #FFDE12 !important; color: #161922 !important; border: none !important; border-radius: 50px !important; padding: 14px 24px !important; font-size: 17px !important; font-weight: 700 !important; cursor: pointer !important; transition: background 0.2s ease, transform 0.15s ease !important; margin-top: 6px !important; text-transform: uppercase; letter-spacing: 0.3px; }
.cta-cf7-wrap input[type="submit"]:hover, .cta-cf7-wrap .wpcf7-submit:hover { background: #e6c800 !important; transform: translateY(-2px) !important; }
.cta-cf7-wrap .wpcf7-response-output { border-radius: 8px !important; padding: 10px 14px !important; font-size: 14px !important; margin-top: 10px !important; border: none !important; color: #ffffff !important; }
.cta-cf7-wrap .wpcf7-mail-sent-ok { background: rgba(16,185,129,0.25) !important; }
.cta-cf7-wrap .wpcf7-validation-errors { background: rgba(212,18,28,0.25) !important; }
.cta-cf7-wrap .wpcf7-not-valid { border-color: #d4121c !important; }
.cta-cf7-wrap .wpcf7-not-valid-tip { color: #fca5a5 !important; font-size: 12px !important; display: block; margin-top: -8px; margin-bottom: 8px; }

/* ══ DIGITAL-AGENTUR SIDEBAR ══ */
.leistung-sidebar__beratung { background: #f5f5f7; border-radius: 16px; padding: 32px 28px; margin-bottom: 20px; border: 1px solid rgba(22,25,34,0.08); }
.leistung-sidebar__beratung-label { display: inline-block; font-size: 11px; font-weight: 700; letter-spacing: 2px; text-transform: uppercase; color: #d4121c; margin-bottom: 10px; }
.leistung-sidebar__beratung h3 { font-size: 20px; font-weight: 800; color: #161922; margin-bottom: 12px; line-height: 1.2; }
.leistung-sidebar__beratung p { font-size: 14px; color: #555; line-height: 1.65; margin-bottom: 22px; }
.leistung-sidebar__cta-btn { width: 100%; justify-content: center; margin-bottom: 20px; background: #d4121c !important; color: #fff !important; font-size: 15px !important; padding: 13px 20px !important; }
.leistung-sidebar__cta-btn:hover { background: #a80e16 !important; }
.leistung-sidebar__contacts { display: flex; flex-direction: column; gap: 10px; border-top: 1px solid rgba(22,25,34,0.1); padding-top: 18px; }
.leistung-sidebar__beratung .leistung-sidebar__contact-item { display: flex; align-items: center; gap: 10px; font-size: 14px; font-weight: 600; color: #161922 !important; text-decoration: none; padding: 6px 0; transition: color 0.2s; }
.leistung-sidebar__beratung .leistung-sidebar__contact-item:hover { color: #d4121c !important; }
.leistung-sidebar__beratung .leistung-sidebar__contact-item svg { width: 16px; height: 16px; color: #d4121c; flex-shrink: 0; stroke: currentColor; }
.leistung-sidebar__card, .leistung-sidebar__contact { display: none !important; }

/* ══ CF7 RESPONSE MESSAGES ══ */
.wpcf7 form.init .wpcf7-response-output { display: none !important; }
.wpcf7 .wpcf7-response-output { display: block !important; border-radius: 8px !important; padding: 12px 16px !important; font-size: 14px !important; font-weight: 500 !important; margin-top: 16px !important; border: none !important; border-left-width: 4px !important; border-left-style: solid !important; }
.wpcf7 form.sent .wpcf7-response-output { background: #ecfdf5 !important; color: #065f46 !important; border-left-color: #10b981 !important; }
.wpcf7 form.failed .wpcf7-response-output { background: #fef2f2 !important; color: #991b1b !important; border-left-color: #ef4444 !important; }
.wpcf7 form.invalid .wpcf7-response-output { background: #fef2f2 !important; color: #991b1b !important; border-left-color: #ef4444 !important; }
.wpcf7 form.spam .wpcf7-response-output { background: #fef2f2 !important; color: #991b1b !important; border-left-color: #ef4444 !important; }
.wpcf7-not-valid-tip { color: #dc2626 !important; font-size: 12px !important; font-weight: 500 !important; display: block !important; margin-top: 4px !important; }
.wpcf7-not-valid { border-color: #ef4444 !important; background: #fff5f5 !important; }

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

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

@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%; }
    .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 !important; gap: 40px !important; }
    .leistung-sidebar { position: static !important; width: 100% !important; }
    .om-prozess__steps { flex-direction: column; align-items: center; }
    .om-prozess__arrow { transform: rotate(90deg); }
    .cta-layout--cf7 { gap: 40px; }
    body.home .stats-grid { grid-template-columns: repeat(2, 1fr) !important; }
    .global-page-hero { padding: 90px 0 60px !important; min-height: 480px !important; }
    .global-page-hero h1 { padding-left: 15px !important; }
}

@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; }
    .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 { grid-template-columns: 1fr !important; gap: 10px !important; max-width: 100%; box-sizing: border-box; overflow: hidden; }
    .jobs-portal-card { max-width: 100%; box-sizing: border-box; overflow: hidden; }
    .jobs-portal-card[style*="grid-column"] { grid-column: span 1 !important; }
    .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; }
    .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; }
    .cta-layout--cf7 { grid-template-columns: 1fr !important; gap: 32px !important; }
    .cta-cf7-wrap { padding: 24px 18px; }
    .cta-cf7-wrap input[type="text"], .cta-cf7-wrap input[type="email"], .cta-cf7-wrap input[type="tel"], .cta-cf7-wrap textarea { font-size: 16px !important; }
    /* ── Digital-Agentur Unterseiten ── */
    body.body-child-of-digital-agentur, body.body-child-of-digital-agentur .ls-page { overflow-x: hidden !important; }
    .leistung-content__grid { grid-template-columns: 1fr !important; gap: 32px !important; }
    .leistung-sidebar { position: static !important; width: 100% !important; box-sizing: border-box !important; }
    .leistung-sidebar__beratung { width: 100% !important; box-sizing: border-box !important; }
    .leistung-content, .leistung-hero--bg, .leistung-faq, .leistung-pakete, .om-cta-final, .ovb-form-cta-section { overflow-x: hidden !important; max-width: 100vw !important; box-sizing: border-box !important; }
    .leistung-content .container, .leistung-hero--bg .container { max-width: 100% !important; padding-left: 16px !important; padding-right: 16px !important; box-sizing: border-box !important; }
    .ls-usp__grid, .ls-usp-bar__grid { grid-template-columns: 1fr 1fr !important; gap: 12px !important; }
    .ls-feature__grid { grid-template-columns: 1fr !important; }
    .ls-feature__image { order: -1 !important; }
    .leistung-hero__ctas { flex-direction: column !important; align-items: stretch !important; gap: 12px !important; }
    .leistung-hero__ctas .btn { width: 100% !important; justify-content: center !important; }
    .ovb-form-cta-container { display: grid !important; grid-template-columns: 1fr !important; gap: 32px !important; }
    .ovb-form-cta-content, .ovb-form-cta-form-wrap { width: 100% !important; box-sizing: border-box !important; }
    .ovb-form-row { flex-direction: column !important; }
    .ovb-form-group { width: 100% !important; box-sizing: border-box !important; }
    .ovb-form-group input, .ovb-form-group textarea, .ovb-form-group select { font-size: 16px !important; width: 100% !important; box-sizing: border-box !im
/* ── Jobportale Hero: "Alle Produkte entdecken" Button ausblenden ── */
.jobs-cta-row .btn:nth-child(2) {
    display: none !important;
}

/* ── Nav-CTA: <button> mit komplettem Gelb-Styling ── */
#nav-cta-btn {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 6px 9px !important;
    border-radius: 50px !important;
    font-size: 14px !important;
    font-family: var(--font) !important;
    font-weight: 700 !important;
    letter-spacing: 0.3px !important;
    cursor: pointer !important;
    text-decoration: none !important;
    border: none !important;
    outline: none !important;
    -webkit-appearance: none !important;
    appearance: none !important;
    background: var(--yellow) !important;
    color: var(--dark) !important;
    line-height: 1.5 !important;
    white-space: nowrap !important;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease !important;
}
#nav-cta-btn:hover {
    background: #e6c800 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(255,222,18,0.35) !important;
    color: var(--dark) !important;
}


/* ── btn-navigelb: Nav-CTA als <button> – kompletter Reset + OVB Gelb ── */
.btn-navigelb,
#nav-cta-btn {
    /* Browser-Button-Reset */
    -webkit-appearance: none !important;
    appearance: none !important;
    border: none !important;
    outline: none !important;
    box-shadow: none !important;
    border-radius: 50px !important;
    /* Layout */
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 6px 14px !important;
    /* Typografie */
    font-family: 'Ropa Sans', 'Inter', Arial, sans-serif !important;
    font-size: 14px !important;
    font-weight: 700 !important;
    letter-spacing: 0.3px !important;
    line-height: 1.5 !important;
    white-space: nowrap !important;
    text-decoration: none !important;
    /* Farbe */
    background: #FFDE12 !important;
    color: #161922 !important;
    /* Interaktion */
    cursor: pointer !important;
    transition: background 0.25s ease, transform 0.25s ease, box-shadow 0.25s ease !important;
}
.btn-navigelb:hover,
#nav-cta-btn:hover {
    background: #e6c800 !important;
    color: #161922 !important;
    transform: translateY(-2px) !important;
    box-shadow: 0 8px 24px rgba(255,222,18,0.35) !important;
    border: none !important;
}

/* ── Nav-CTA auf Mobile ausblenden ── */
@media (max-width: 1024px) {
    .hide-on-mobile {
        display: none !important;
    }
}
