/* ============================================================
   ParkVeto Theme – main.css
   Farben: Navy #0B1D39 · Orange #FF6B35
   Fonts: Syne (Display) + DM Sans (Body)
   ============================================================ */

/* ─── RESET & VARIABLES ─── */
:root {
  --c-navy:        #0B1D39;
  --c-navy-mid:    #132845;
  --c-navy-light:  #1A3560;
  --c-orange:      #FF6B35;
  --c-orange-dark: #E05520;
  --c-orange-light:#FFF0EB;
  --c-white:       #FFFFFF;
  --c-bg:          #F7F9FC;
  --c-border:      #E2E8F0;
  --c-slate:       #4A5568;
  --c-muted:       #718096;
  --c-text:        #0B1D39;

  --font-display:  'Plus Jakarta Sans', sans-serif;
  --font-body:     'Plus Jakarta Sans', sans-serif;

  --radius:        12px;
  --radius-lg:     20px;
  --radius-xl:     28px;

  --shadow-sm:     0 1px 4px rgba(11,29,57,.06);
  --shadow-md:     0 4px 20px rgba(11,29,57,.09);
  --shadow-lg:     0 12px 48px rgba(11,29,57,.14);
  --shadow-orange: 0 8px 28px rgba(255,107,53,.38);

  --max-w:         1280px;
  --transition:    .22s cubic-bezier(.4,0,.2,1);
}

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

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

body {
  font-family: var(--font-body);
  font-size: 16px;
  color: var(--c-text);
  background: var(--c-white);
  line-height: 1.7;
  -webkit-font-smoothing: antialiased;
  overflow-x: hidden;
}

img { max-width: 100%; height: auto; display: block; }
a { color: inherit; text-decoration: none; }
ul { list-style: none; }
button { font-family: var(--font-body); cursor: pointer; }

/* ─── TYPOGRAPHY ─── */
h1, h2, h3, h4, h5 {
  font-family: var(--font-display);
  line-height: 1.15;
  color: var(--c-navy);
}
h1 { font-size: 40px !important; }
h2 { font-size: 28px !important; }
h3 { font-size: 28px !important; }

/* ─── UTILITY ─── */
.container { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.text-center { text-align: center; }
.text-white { color: var(--c-white); }
.section-label {
  display: inline-block;
  font-size: .75rem;
  font-weight: 600;
  text-transform: uppercase;
  letter-spacing: .12em;
  color: var(--c-orange);
  margin-bottom: 10px;
}
.section-title {
  font-size: 28px !important;
  font-weight: 700;
  margin-bottom: 14px;
  letter-spacing: -.02em;
}
.section-sub {
  font-size: 1.1rem;
  color: var(--c-muted);
  max-width: 600px;
  line-height: 1.8;
}
.text-center .section-sub { margin: 0 auto; }

/* ─── BUTTONS ─── */
.btn {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-family: var(--font-body);
  font-weight: 600;
  border-radius: var(--radius);
  padding: 12px 26px;
  font-size: 1rem;
  border: none;
  transition: all var(--transition);
  cursor: pointer;
  text-decoration: none;
  white-space: nowrap;
}
.btn-primary {
  background: var(--c-orange);
  color: var(--c-white);
}
.btn-primary:hover {
  background: var(--c-orange-dark);
  transform: translateY(-2px);
  box-shadow: var(--shadow-orange);
  color: var(--c-white);
}
.btn-secondary {
  background: rgba(255,255,255,.1);
  color: var(--c-white);
  border: 1.5px solid rgba(255,255,255,.25);
}
.btn-secondary:hover {
  background: rgba(255,255,255,.18);
  color: var(--c-white);
}
.btn-outline {
  background: transparent;
  color: var(--c-navy);
  border: 1.5px solid var(--c-border);
}
.btn-outline:hover {
  border-color: var(--c-orange);
  color: var(--c-orange);
}
.btn-lg { padding: 11px 24px; font-size: 1rem; }
.btn-sm { padding: 9px 20px; font-size: 1rem; }

/* ─── NAVIGATION ─── */
/* ─── STICKY HEADER WRAPPER ─── */
#pv-sticky-wrap {
  position: sticky;
  top: 0;
  z-index: 200;
  background: #fff;
}

/* ─── TOP BAR ─── */
.pv-top-bar {
  background: linear-gradient(90deg, var(--c-navy) 0%, var(--c-navy-light) 100%);
  color: rgba(255,255,255,.75);
  font-size: 1rem;
  padding: 0;
  height: 38px;
  display: flex;
  align-items: center;
  border-bottom: 4px solid var(--c-bg);
}
.pv-top-bar-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: flex-start;
}
.pv-top-bar-icons {
  display: flex;
  align-items: center;
  gap: 14px;
}
.pv-top-bar-icons a {
  color: rgba(255,255,255,.65);
  display: flex;
  align-items: center;
  transition: color .2s;
}
.pv-top-bar-icons a:hover { color: #fff; }
.pv-top-bar-icons svg { width: 16px; height: 16px; }
.pv-top-bar-right { display: none; }
.pv-top-bar { display: none !important; }

#pv-header {
  background: rgba(255,255,255,.97);
  backdrop-filter: blur(14px);
  border-bottom: none;
}
.pv-nav-wrap {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  align-items: center;
  height: 64px;
  position: relative;
}
.pv-spacer { flex: 1; }
.pv-logo {
  flex-shrink: 0;
  display: flex;
  align-items: center;
  text-decoration: none;
  z-index: 2;
  margin-left: 0;
}
.pv-logo-text {
  font-family: "Plus Jakarta Sans", sans-serif;
  font-size: 1.5rem;
  font-weight: 700;
  color: #0B1D39;
}
.pv-logo-text span { color: #FF6B35; }
.pv-logo .custom-logo-link { display: flex; align-items: center; }
.pv-logo .custom-logo {
  height: 52px !important;
  width: auto !important;
  max-width: 200px !important;
  object-fit: contain;
  display: block;
}

/* Desktop Nav */
.pv-desktop-nav {
  position: absolute;
  top: 0; left: 0; right: 0; bottom: 0;
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 4px;
  pointer-events: none;
  z-index: 1;
}
.pv-desktop-nav > a,
.pv-desktop-nav > .pv-dd-wrap > a {
  display: block;
  font-size: 16px;
  font-weight: 500;
  color: #4A5568;
  padding: 8px 18px;
  border-radius: 8px;
  text-decoration: none;
  white-space: nowrap;
  pointer-events: all;
}
.pv-desktop-nav > a:hover,
.pv-desktop-nav > .pv-dd-wrap > a:hover {
  color: #0B1D39;
  background: #FFF0EB;
}

/* Dropdown */
.pv-dd-wrap {
  position: relative;
  pointer-events: all;
}
.pv-dd {
  display: none;
  position: absolute;
  top: 100%;
  left: 0;
  background: #fff;
  border: 1px solid #e2e8f0;
  border-radius: 12px;
  box-shadow: 0 12px 40px rgba(0,0,0,.12);
  min-width: 200px;
  padding: 8px 0;
  z-index: 99999;
}
.pv-dd-right {
  left: 100%;
  top: -8px;
  max-height: 420px;
  overflow-y: auto;
  min-width: 240px;
}
.pv-dd-wrap:hover > .pv-dd { display: block; }
.pv-dd > a,
.pv-dd > .pv-dd-wrap > a {
  display: block;
  padding: 10px 18px;
  font-size: 1rem;
  font-weight: 500;
  color: #0B1D39;
  text-decoration: none;
  border-left: 3px solid transparent;
  white-space: nowrap;
}
.pv-dd > a:hover,
.pv-dd > .pv-dd-wrap > a:hover {
  background: #FFF0EB;
  color: #FF6B35;
  border-left-color: #FF6B35;
}
.pv-dd > .pv-dd-wrap { position: relative; }

/* CTAs */
.pv-ctas {
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 2;
}

/* Hamburger */
.pv-hamburger {
  display: none;
  background: none;
  border: none;
  padding: 8px;
  cursor: pointer;
  flex-direction: column;
  gap: 5px;
  z-index: 2;
}
.pv-hamburger span {
  display: block;
  width: 24px; height: 2px;
  background: #0B1D39;
  border-radius: 2px;
  transition: all .3s;
}

/* Mobile Menu */
.pv-mobile-menu {
  display: none;
  position: fixed;
  top: 64px; left: 0; right: 0;
  background: #ffffff;
  border-top: 3px solid #FF6B35;
  box-shadow: 0 12px 40px rgba(0,0,0,.15);
  padding: 12px 24px 24px;
  z-index: 99997;
  flex-direction: column;
}
.pv-mobile-menu.open { display: flex; }
.pv-mobile-menu > a {
  display: block;
  padding: 13px 0;
  font-size: 1rem;
  font-weight: 500;
  color: #0B1D39;
  text-decoration: none;
  border-bottom: 1px solid #f5f5f5;
}
.pv-mobile-menu > a:hover { color: #FF6B35; }
.pv-mob-section-btn {
  background: none;
  border: none;
  border-bottom: 1px solid #f5f5f5;
  padding: 13px 0;
  font-size: 1rem;
  font-weight: 500;
  color: #0B1D39;
  cursor: pointer;
  text-align: left;
  width: 100%;
  display: flex;
  justify-content: space-between;
  align-items: center;
}
.pv-mob-section-btn:hover { color: #FF6B35; }
.pv-mob-sub {
  display: none;
  border-left: 3px solid #FF6B35;
  margin: 4px 0 4px 8px;
  padding-left: 12px;
}
.pv-mob-sub a {
  display: block;
  padding: 9px 0;
  font-size: 1rem;
  color: #4A5568;
  text-decoration: none;
  border-bottom: 1px solid #fafafa;
}
.pv-mob-sub a:hover { color: #FF6B35; }
.pv-mob-divider {
  height: 1px;
  background: #e2e8f0;
  margin: 12px 0;
}
.pv-mob-login {
  display: block;
  padding: 12px 0;
  font-size: 1rem;
  font-weight: 500;
  color: #0B1D39;
  text-decoration: none;
}
.pv-mob-einspruch {
  display: inline-block;
  margin-top: 10px;
  padding: 12px 28px;
  background: #FF6B35;
  color: #fff !important;
  border-radius: 8px;
  font-weight: 600;
  font-size: 1rem;
  text-decoration: none;
  text-align: center;
}
.pv-mob-einspruch:hover { background: #E05520; }

/* Mobile: Desktop-Nav ausblenden */
@media (max-width: 768px) {
  .pv-desktop-nav { display: none !important; }
  .pv-ctas { display: none !important; }
  .pv-hamburger { display: flex !important; }
}

/* Desktop: Hamburger ausblenden */
@media (min-width: 769px) {
  .pv-hamburger { display: none !important; }
  .pv-mobile-menu { display: none !important; }
}

/* ─── HERO ─── */
.hero-section {
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-mid) 50%, var(--c-navy-light) 100%);
  position: relative;
  overflow: hidden;
  padding: 50px 24px;
  border-radius: 20px;
  margin: 0 60px 32px;
  clip-path: none;
}
.hero-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 65% 70% at 85% 50%, rgba(255,107,53,.15) 0%, transparent 65%),
    radial-gradient(ellipse 40% 50% at 0% 100%, rgba(255,107,53,.09) 0%, transparent 60%),
    radial-gradient(ellipse 30% 40% at 20% 20%, rgba(255,255,255,.04) 0%, transparent 50%);
}
.hero-inner {
  padding: 0 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 40px;
  align-items: center;
  position: relative;
  z-index: 1;
}
.hero-visual {
  display: flex;
  justify-content: flex-end;
  align-items: center;
  overflow: visible;
  padding-right: 40px;
}
.hero-visual > div {
  transform: scale(1);
  transform-origin: top center;
}
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,107,53,.15);
  border: 1px solid rgba(255,107,53,.3);
  border-radius: 20px;
  padding: 6px 16px;
  font-size: 1rem;
  color: var(--c-orange);
  font-weight: 500;
  margin-bottom: 22px;
}
.hero-title {
  font-family: var(--font-display);
  font-size: 40px !important;
  font-weight: 800;
  color: var(--c-white);
  line-height: 1.15;
  letter-spacing: -.02em;
  margin-bottom: 20px;
}
.hero-title em {
  color: var(--c-orange);
  font-style: normal;
}
.hero-subtitle {
  font-size: 1.05rem;
  color: rgba(255,255,255,.72);
  line-height: 1.75;
  margin-bottom: 16px;
  max-width: 500px;
}
.hero-actions { display: flex; gap: 12px; flex-wrap: wrap; margin-bottom: 18px; }
.hero-trust { display: flex; gap: 16px; flex-wrap: wrap; margin-bottom: 0; }
.trust-item {
  display: flex;
  align-items: center;
  gap: 7px;
  font-size: 1rem;
  color: rgba(255,255,255,.6);
}
.trust-item svg { color: var(--c-orange); flex-shrink: 0; }

/* ─── DROPDOWN NAVIGATION ─── */
.main-nav > ul > li { display: flex; position: relative; }
.has-dropdown { position: relative; }
.dropdown {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: #fff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    box-shadow: 0 12px 40px rgba(0,0,0,0.12);
    min-width: 220px;
    padding: 8px 0;
    z-index: 99999;
    list-style: none;
    margin: 0;
}
.dropdown-right {
    left: 100%;
    top: -8px;
    max-height: 420px;
    overflow-y: auto;
}
.has-dropdown:hover > .dropdown { display: block; }
.dropdown li { display: block; position: relative; }
.dropdown a {
    display: block;
    padding: 10px 18px;
    font-size: 1rem;
    font-weight: 500;
    color: #0B1D39;
    text-decoration: none;
    border-left: 3px solid transparent;
    white-space: nowrap;
}
.dropdown a:hover {
    background: #FFF0EB;
    color: #FF6B35;
    border-left-color: #FF6B35;
}

/* ─── MOBILE MENU ─── */
.mobile-menu {
    display: none;
    position: fixed;
    top: 64px;
    left: 0;
    right: 0;
    background: #ffffff;
    border-top: 3px solid #FF6B35;
    border-bottom: 1px solid #e2e8f0;
    box-shadow: 0 12px 40px rgba(0,0,0,0.15);
    padding: 16px 24px 24px;
    z-index: 99999;
    flex-direction: column;
}
.mobile-menu.open { display: flex; }
.mobile-menu > a,
.mobile-menu .mobile-login-link {
    display: block;
    padding: 12px 0;
    font-size: 1rem;
    font-weight: 500;
    color: #0B1D39;
    text-decoration: none;
    border-bottom: 1px solid #f0f0f0;
}
.mobile-menu > a:hover { color: #FF6B35; }
.mobile-section-title {
    padding: 12px 0 6px;
    font-size: .75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: .1em;
    color: #FF6B35;
    border-bottom: 1px solid #f0f0f0;
}
.mobile-sub {
    border-left: 3px solid #FF6B35;
    margin: 4px 0 4px 8px;
    padding-left: 8px;
}
.mobile-sub a {
    display: block;
    padding: 9px 12px;
    font-size: 1rem;
    color: #4A5568;
    text-decoration: none;
}
.mobile-sub a:hover { color: #FF6B35; }
.mobile-divider {
    height: 1px;
    background: #e2e8f0;
    margin: 12px 0;
}
.mobile-einspruch-btn {
    display: block;
    text-align: center;
    background: #FF6B35;
    color: #fff !important;
    border-radius: 8px;
    padding: 12px 24px;
    font-weight: 600;
    font-size: 1rem;
    text-decoration: none;
    margin-top: 8px;
    width: fit-content;
    align-self: center;
}
.mobile-einspruch-btn:hover { background: #E05520; }
.hero-graphic {
  position: relative;
  width: 420px;
  height: 420px;
}
.hero-card {
  position: absolute;
  background: rgba(255,255,255,.08);
  backdrop-filter: blur(12px);
  border: 1px solid rgba(255,255,255,.15);
  border-radius: 16px;
  padding: 20px 24px;
  color: #fff;
}
.hero-card-ticket {
  top: 40px;
  right: 0;
  width: 220px;
  background: rgba(255,255,255,.95);
  color: var(--c-navy);
}
.hero-card-label {
  font-size: .8rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--c-muted);
  margin-bottom: 4px;
}
.hero-card-amount {
  font-family: var(--font-display);
  font-size: 2rem;
  font-weight: 800;
  color: #E53E3E;
  line-height: 1;
}
.hero-card-sub {
  font-size: .78rem;
  color: var(--c-muted);
  margin-top: 6px;
}
.hero-card-status {
  bottom: 80px;
  right: 20px;
  display: flex;
  align-items: center;
  gap: 10px;
  padding: 14px 20px;
  background: rgba(255,107,53,.15);
  border-color: rgba(255,107,53,.3);
  width: 210px;
}
.hero-status-dot {
  width: 10px;
  height: 10px;
  background: var(--c-orange);
  border-radius: 50%;
  flex-shrink: 0;
  animation: pulse-orange 2s infinite;
}
.hero-status-text {
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-orange);
}
.hero-card-stat {
  top: 160px;
  left: 0;
  text-align: center;
  padding: 16px 20px;
  width: 110px;
}
.hero-stat-num {
  font-family: var(--font-display);
  font-size: 1.8rem;
  font-weight: 800;
  color: var(--c-orange);
  line-height: 1;
}
.hero-stat-label {
  font-size: .8rem;
  color: rgba(255,255,255,.6);
  margin-top: 4px;
}
.hero-shield {
  position: absolute;
  top: 120px;
  right: 60px;
  width: 120px;
  opacity: .6;
}
.hero-shield svg { width: 100%; height: auto; }

/* ─── FEATURE CARDS (steps strip) ─── */
.steps-strip {
  background: var(--c-bg);
  padding: 60px 16px 70px;
  position: relative;
  z-index: 1;
}
.steps-strip-grid {
  padding: 0 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.step-card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: 36px 32px;
  display: flex;
  flex-direction: column;
  gap: 16px;
  transition: all var(--transition);
  border: 1px solid var(--c-border);
  box-shadow: 0 2px 12px rgba(0,0,0,.06);
}
.step-card:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lg);
}
.step-icon {
  width: 60px;
  height: 60px;
  background: var(--c-orange-light);
  border-radius: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.step-icon svg { width: 28px; height: 28px; color: var(--c-orange); }
.step-num {
  font-family: var(--font-display);
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--c-orange);
}
.step-card h3 {
  font-size: 1.15rem;
  font-weight: 700;
  color: var(--c-navy);
}
.step-card p { font-size: 1rem; color: var(--c-muted); line-height: 1.65; }

/* ─── STATS STRIP ─── */
.stats-strip { background: var(--c-navy); padding: 60px 0; }
.stats-inner {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 0 24px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 32px;
}
.stat-item { text-align: center; }
.stat-num {
  font-family: var(--font-display);
  font-size: 2.6rem;
  font-weight: 800;
  color: var(--c-orange);
  line-height: 1;
  margin-bottom: 6px;
}
.stat-label {
  font-size: 1rem;
  color: rgba(255,255,255,.55);
  line-height: 1.45;
}

/* ─── VIDEO SECTION ─── */
.video-section { background: var(--c-bg); padding: 90px 0; }
.video-wrapper {
  margin-top: 48px;
  max-width: 100%;
  margin-left: 0;
  margin-right: 0;
  border-radius: var(--radius-xl);
  overflow: hidden;
  box-shadow: var(--shadow-lg);
  position: relative;
}
.video-embed { position: relative; aspect-ratio: 16/9; }
.video-embed iframe {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  border: none;
}
/* Placeholder wenn kein Video gesetzt */
.video-placeholder {
  aspect-ratio: 16/9;
  background: var(--c-navy);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  gap: 18px;
  color: rgba(255,255,255,.6);
  font-size: 1rem;
}
.play-btn {
  width: 80px;
  height: 80px;
  background: var(--c-orange);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  animation: pulse-orange 2.5s infinite;
  cursor: pointer;
  border: none;
  transition: transform var(--transition);
}
.play-btn:hover { transform: scale(1.1); }
.play-btn svg { width: 32px; height: 32px; color: #fff; margin-left: 4px; }
@keyframes pulse-orange {
  0%   { box-shadow: 0 0 0 0 rgba(255,107,53,.5); }
  70%  { box-shadow: 0 0 0 22px rgba(255,107,53,0); }
  100% { box-shadow: 0 0 0 0 rgba(255,107,53,0); }
}

/* ─── HOW IT WORKS (Ablauf) ─── */
.how-section { padding: 90px 0; background: var(--c-white); }
.how-steps {
  padding: 0 24px;
  max-width: var(--max-w);
  margin: 64px auto 0;
  display: flex;
  flex-direction: column;
  gap: 80px;
}
.how-step {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.how-step.reverse { direction: rtl; }
.how-step.reverse > * { direction: ltr; }
.how-step-num {
  font-family: var(--font-display);
  font-size: 5rem;
  font-weight: 800;
  color: var(--c-orange-light);
  line-height: 1;
  margin-bottom: 12px;
}
.how-step h3 {
  font-size: 1.6rem;
  font-weight: 700;
  margin-bottom: 14px;
}
.how-step p { color: var(--c-muted); font-size: 1rem; line-height: 1.8; }
.how-step p + p { margin-top: 12px; }
.how-step-visual {
  background: var(--c-bg);
  border-radius: var(--radius-xl);
  min-height: 260px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 5.5rem;
  border: 1px solid var(--c-border);
}

/* ─── TRUST / TESTIMONIALS ─── */
.testimonials-section { background: var(--c-bg); padding: 90px 0; }
.testimonials-grid {
  padding: 0 24px;
  max-width: var(--max-w);
  margin: 52px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.testimonial-card {
  background: var(--c-white);
  border-radius: var(--radius-lg);
  padding: 32px;
  border: 1px solid var(--c-border);
  transition: all var(--transition);
}
.testimonial-card:hover {
  border-color: var(--c-orange);
  box-shadow: var(--shadow-md);
  transform: translateY(-3px);
}
.stars { color: #F6AD55; font-size: 1rem; letter-spacing: 3px; margin-bottom: 14px; }
.testimonial-text {
  font-size: 1rem;
  color: var(--c-slate);
  line-height: 1.75;
  margin-bottom: 22px;
  font-style: italic;
}
.testimonial-author { display: flex; align-items: center; gap: 12px; }
.author-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  overflow: hidden;
  background: var(--c-orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 700;
  font-size: 1rem;
  color: var(--c-orange);
  flex-shrink: 0;
}
.author-avatar img { width: 100%; height: 100%; object-fit: cover; }
.author-name { font-weight: 600; font-size: 1rem; }
.author-location { font-size: 1rem; color: var(--c-muted); }

/* Partner logos */
.partners-section { padding: 56px 0; background: var(--c-white); border-top: 1px solid var(--c-border); }
.partners-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; text-align: center; }
.partners-inner p {
  font-size: 1rem;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--c-muted);
  margin-bottom: 28px;
}
.partners-logos {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 40px;
  flex-wrap: wrap;
  filter: grayscale(1);
  opacity: .55;
}
.partners-logos img { height: 32px; width: auto; }
.partners-logos span {
  font-family: var(--font-display);
  font-size: 1.1rem;
  font-weight: 700;
  color: var(--c-navy);
}

/* ─── WHY US ─── */
.why-section { padding: 90px 0; background: var(--c-white); }
.why-grid {
  padding: 0 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: center;
}
.why-features { display: flex; flex-direction: column; gap: 24px; margin-top: 36px; }
.why-item { display: flex; gap: 18px; }
.why-item-icon {
  width: 48px;
  height: 48px;
  background: var(--c-orange-light);
  border-radius: 12px;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  color: var(--c-orange);
  font-size: 1.3rem;
}
.why-item-body h4 { font-size: 1rem; font-weight: 700; margin-bottom: 5px; }
.why-item-body p { font-size: 1rem; color: var(--c-muted); line-height: 1.6; }
.why-panel {
  background: linear-gradient(145deg, var(--c-navy) 0%, var(--c-navy-light) 100%);
  border-radius: var(--radius-xl);
  padding: 44px;
  color: #fff;
}
.why-panel h3 {
  color: #fff;
  font-size: 1.35rem;
  margin-bottom: 8px;
}
.why-panel-sub { font-size: 1rem; color: rgba(255,255,255,.6); margin-bottom: 24px; }
.why-checklist { display: flex; flex-direction: column; gap: 12px; }
.why-check {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255,255,255,.07);
  border-radius: 10px;
  padding: 13px 16px;
  font-size: 1rem;
  color: rgba(255,255,255,.85);
}
.why-check-icon { color: var(--c-orange); font-weight: 700; flex-shrink: 0; }

/* ─── FAQ ─── */
.faq-section { background: var(--c-bg); padding: 90px 0; }
.faq-list {
  max-width: var(--max-w);
  margin: 52px auto 0;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  gap: 12px;
}
.faq-item {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius);
  overflow: hidden;
}
.faq-question {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 20px 26px;
  cursor: pointer;
  font-weight: 500;
  font-size: 1rem;
  transition: background var(--transition);
  gap: 16px;
  user-select: none;
}
.faq-question:hover { background: var(--c-orange-light); }
.faq-question.open { color: var(--c-orange); background: var(--c-orange-light); }
.faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--c-border);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .75rem;
  transition: all var(--transition);
  color: var(--c-slate);
}
.faq-question.open .faq-icon {
  background: var(--c-orange);
  color: #fff;
  transform: rotate(45deg);
}
.faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height .35s ease, padding .3s;
  font-size: 1rem;
  color: var(--c-muted);
  line-height: 1.75;
  padding: 0 26px;
}
.faq-answer.open { max-height: 300px; padding-bottom: 22px; }

/* ─── CTA SECTION ─── */
.cta-section {
  background: linear-gradient(135deg, var(--c-navy) 0%, var(--c-navy-light) 100%);
  padding: 90px 24px;
  text-align: center;
  position: relative;
  overflow: hidden;
}
.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 80% at 50% 50%, rgba(255,107,53,.12) 0%, transparent 70%);
}
.cta-section h2 {
  color: #fff;
  font-size: 28px !important;
  font-weight: 800;
  margin-bottom: 16px;
  position: relative;
}
.cta-section p {
  color: rgba(255,255,255,.7);
  font-size: 1.05rem;
  margin-bottom: 36px;
  position: relative;
}
.cta-section .btn { position: relative; }

/* ─── BLOG CARDS ─── */
.blog-section { padding: 90px 0; background: var(--c-white); }
.blog-grid {
  padding: 0 24px;
  max-width: var(--max-w);
  margin: 52px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
}
.blog-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  overflow: hidden;
  transition: all var(--transition);
}
.blog-card:hover {
  border-color: var(--c-orange);
  box-shadow: var(--shadow-md);
  transform: translateY(-4px);
}
.blog-thumb {
  aspect-ratio: 16/9;
  background: var(--c-navy);
  overflow: hidden;
  display: block;
}
.blog-thumb img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform .4s; }
.blog-card:hover .blog-thumb img { transform: scale(1.05); }
.blog-body { padding: 26px; }
.blog-tag {
  font-size: .8rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  color: var(--c-orange);
  margin-bottom: 8px;
}
.blog-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 10px; line-height: 1.45; }
.blog-excerpt { font-size: 1rem; color: var(--c-muted); margin-bottom: 16px; line-height: 1.65; }
.blog-meta { font-size: 1rem; color: var(--c-muted); }
.blog-read-more {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 1rem;
  font-weight: 600;
  color: var(--c-orange);
  margin-top: 12px;
}

/* ─── PAGE HERO (inner pages) ─── */
.page-hero {
  background: var(--c-navy);
  padding: 80px 0 72px;
  position: relative;
  overflow: hidden;
}
.page-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 50% 80% at 100% 50%, rgba(255,107,53,.1) 0%, transparent 60%);
}
.page-hero-inner { max-width: var(--max-w); margin: 0 auto; position: relative; padding: 0 24px; }
.breadcrumb { display: none; }
.breadcrumb a { color: rgba(255,255,255,.4); }
.breadcrumb a:hover { color: var(--c-orange); }
.breadcrumb span { color: rgba(255,255,255,.25); }
.page-hero h1 {
  color: #fff;
  font-size: 40px !important;
  font-weight: 700;
  margin-bottom: 16px;
  letter-spacing: -.01em;
}
.page-hero p {
  color: rgba(255,255,255,.68);
  font-size: 1.05rem;
  max-width: 620px;
  line-height: 1.75;
}

/* ─── CONTACT ─── */
.contact-section { padding: 80px 0; }
.contact-grid {
  padding: 0 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1.2fr 1fr;
  gap: 56px;
  align-items: start;
}
.contact-form-box {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-xl);
  padding: 44px;
}
.contact-form-box h2 { font-size: 1.5rem; margin-bottom: 28px; }
.form-group { margin-bottom: 20px; }
.form-label { display: block; font-size: 1rem; font-weight: 500; margin-bottom: 7px; color: var(--c-slate); }
.form-control {
  width: 100%;
  padding: 12px 16px;
  border: 1.5px solid var(--c-border);
  border-radius: 8px;
  font-family: var(--font-body);
  font-size: 1rem;
  color: var(--c-navy);
  background: var(--c-white);
  transition: border-color var(--transition);
}
.form-control:focus { outline: none; border-color: var(--c-orange); }
textarea.form-control { resize: vertical; min-height: 130px; }
.contact-info-box { display: flex; flex-direction: column; gap: 20px; }
.contact-info-box h2 { font-size: 1.5rem; margin-bottom: 8px; }
.info-card {
  background: var(--c-bg);
  border-radius: var(--radius);
  padding: 22px 24px;
  display: flex;
  gap: 16px;
  align-items: flex-start;
  border: 1px solid var(--c-border);
}
.info-icon { font-size: 1.5rem; flex-shrink: 0; }
.info-body h4 { font-size: 1rem; font-weight: 600; margin-bottom: 4px; }
.info-body p { font-size: 1rem; color: var(--c-muted); line-height: 1.6; }
.info-body a { color: var(--c-orange); font-weight: 500; }

/* ─── ÜBER UNS ─── */
.about-section { padding: 80px 0; }
.about-grid {
  padding: 0 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 72px;
  align-items: start;
}
.about-text p { font-size: 1rem; color: var(--c-muted); line-height: 1.8; margin-bottom: 18px; }
.about-highlights { display: flex; flex-direction: column; gap: 16px; margin-top: 8px; }
.about-highlight {
  display: flex;
  gap: 16px;
  align-items: flex-start;
  background: var(--c-bg);
  border-radius: var(--radius);
  padding: 18px 20px;
}
.about-highlight-icon { font-size: 1.6rem; flex-shrink: 0; }
.about-highlight h4 { font-size: 1rem; font-weight: 700; margin-bottom: 4px; }
.about-highlight p { font-size: 1rem; color: var(--c-muted); margin: 0; }
.team-section { padding: 0 0 80px; }
.team-grid {
  padding: 0 24px;
  max-width: var(--max-w);
  margin: 48px auto 0;
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
}
.team-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 32px;
  text-align: center;
  transition: all var(--transition);
}
.team-card:hover { border-color: var(--c-orange); box-shadow: var(--shadow-md); }
.team-avatar {
  width: 88px;
  height: 88px;
  border-radius: 50%;
  overflow: hidden;
  margin: 0 auto 18px;
  background: var(--c-orange-light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 2rem;
}
.team-avatar img { width: 100%; height: 100%; object-fit: cover; }
.team-name { font-size: 1.05rem; font-weight: 700; margin-bottom: 4px; }
.team-role { font-size: 1rem; color: var(--c-muted); }

/* ─── KARRIERE ─── */
.karriere-section { padding: 80px 0; }
.job-list {
  max-width: var(--max-w);
  margin: 48px auto 0;
  display: flex;
  flex-direction: column;
  gap: 14px;
}
.job-card {
  background: var(--c-white);
  border: 1px solid var(--c-border);
  border-radius: var(--radius-lg);
  padding: 28px 32px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 24px;
  transition: all var(--transition);
}
.job-card:hover { border-color: var(--c-orange); box-shadow: var(--shadow-md); }
.job-title { font-size: 1.05rem; font-weight: 700; margin-bottom: 5px; }
.job-meta { font-size: 1rem; color: var(--c-muted); }
.job-tag {
  flex-shrink: 0;
  background: var(--c-orange-light);
  color: var(--c-orange);
  border-radius: 8px;
  padding: 7px 16px;
  font-size: 1rem;
  font-weight: 600;
  white-space: nowrap;
}

/* ─── LEGAL PAGES ─── */
.legal-content {
  max-width: var(--max-w);
  margin: 0 auto;
  padding: 72px 24px 80px;
  text-align: left;
}
.legal-content h2 {
  font-size: 1.45rem;
  font-weight: 700;
  margin: 36px 0 12px;
  padding-top: 8px;
  border-top: 1px solid var(--c-border);
}
.legal-content h2:first-child { border-top: none; margin-top: 0; }
.legal-content h3 { font-size: 1.1rem; font-weight: 600; margin: 22px 0 8px; color: var(--c-slate); }
.legal-content p { font-size: 1rem; color: var(--c-slate); margin-bottom: 14px; line-height: 1.8; }
.legal-content a { color: var(--c-orange); font-weight: 500; }
.legal-content ul { margin: 0 0 14px 20px; list-style: disc; }
.legal-content ul li { font-size: 1rem; color: var(--c-slate); margin-bottom: 6px; line-height: 1.7; }

/* ─── ERFAHRUNGEN PAGE ─── */
.erfahrungen-stats { padding: 60px 0 0; }
.erfahrungen-stats-grid {
  padding: 0 24px;
  max-width: var(--max-w);
  margin: 0 auto;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 0;
  background: var(--c-navy);
  border-radius: var(--radius-xl);
  overflow: hidden;
}
.er-stat { padding: 36px 32px; text-align: center; border-right: 1px solid rgba(255,255,255,.1); }
.er-stat:last-child { border-right: none; }
.er-stat-num { font-family: var(--font-display); font-size: 2.4rem; font-weight: 800; color: var(--c-orange); }
.er-stat-label { font-size: 1rem; color: rgba(255,255,255,.55); margin-top: 4px; }

/* ─── FOOTER ─── */
#site-footer {
  background: var(--c-navy);
  padding: 64px 24px 32px;
}
.footer-inner { max-width: var(--max-w); margin: 0 auto; padding: 0 24px; }
.footer-top {
  display: grid;
  grid-template-columns: 2fr 1fr 1fr 1fr;
  gap: 52px;
  margin-bottom: 52px;
}
.footer-logo-wrap {
  font-family: var(--font-display);
  font-size: 1.5rem;
  font-weight: 800;
  color: #fff;
  margin-bottom: 12px;
}
.footer-logo-wrap span { color: var(--c-orange); }
.footer-tagline { font-size: 1rem; color: rgba(255,255,255,.45); margin-bottom: 22px; }
.footer-social { display: flex; gap: 10px; }
.social-link {
  width: 38px;
  height: 38px;
  background: rgba(255,255,255,.08);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255,255,255,.55);
  font-size: 1rem;
  font-weight: 700;
  transition: all var(--transition);
  text-decoration: none;
}
.social-link:hover { background: var(--c-orange); color: #fff; }
.footer-col h4 {
  color: #fff;
  font-size: 1rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .1em;
  margin-bottom: 18px;
}
.footer-col a {
  display: block;
  color: rgba(255,255,255,.5);
  font-size: 1rem;
  margin-bottom: 11px;
  transition: color var(--transition);
  text-decoration: none;
}
.footer-col a:hover { color: var(--c-orange); }
.footer-bottom {
  border-top: 1px solid rgba(255,255,255,.09);
  padding-top: 24px;
  display: flex;
  justify-content: space-between;
  align-items: center;
  font-size: 1rem;
  color: rgba(255,255,255,.3);
  flex-wrap: wrap;
  gap: 12px;
}

/* ─── COOKIE BANNER ─── */
.cookie-banner {
  position: fixed;
  bottom: 24px;
  left: 50%;
  transform: translateX(-50%);
  width: min(680px, calc(100% - 32px));
  background: var(--c-navy);
  border: 1px solid rgba(255,255,255,.14);
  border-radius: var(--radius-lg);
  padding: 22px 28px;
  display: flex;
  align-items: center;
  gap: 20px;
  z-index: 9999;
  box-shadow: 0 20px 60px rgba(0,0,0,.4);
  flex-wrap: wrap;
}
.cookie-text {
  flex: 1;
  font-size: 1rem;
  color: rgba(255,255,255,.75);
  min-width: 200px;
  line-height: 1.6;
}
.cookie-text a { color: var(--c-orange); text-decoration: underline; }
.cookie-actions { display: flex; gap: 10px; flex-shrink: 0; }
/* Ablehnen-Button explizit mit sichtbarem Text-Style */
#cookie-deny {
  background: rgba(255,255,255,.1);
  color: rgba(255,255,255,.8);
  border: 1.5px solid rgba(255,255,255,.25);
  border-radius: 8px;
  padding: 9px 18px;
  font-size: 1rem;
  font-weight: 500;
  cursor: pointer;
  white-space: nowrap;
  transition: all var(--transition);
}
#cookie-deny:hover { background: rgba(255,255,255,.18); color: #fff; }
.cookie-banner.hidden { display: none; }

/* ─── BACK TO TOP ─── */
.back-to-top {
  position: fixed;
  bottom: 32px;
  right: 32px;
  width: 44px;
  height: 44px;
  background: var(--c-orange);
  color: #fff;
  border: none;
  border-radius: 10px;
  display: flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  z-index: 100;
  opacity: 0;
  transform: translateY(16px);
  transition: all var(--transition);
  box-shadow: var(--shadow-orange);
}
.back-to-top.visible { opacity: 1; transform: translateY(0); }
.back-to-top:hover { background: var(--c-orange-dark); }

/* ─── RESPONSIVE ─── */
@media (max-width: 1024px) {
  .steps-strip-grid { grid-template-columns: 1fr; padding: 0 16px; max-width: 100%; margin: 0; }
  .stats-inner { grid-template-columns: repeat(2, 1fr); }
  .testimonials-grid { padding: 0 16px; grid-template-columns: 1fr 1fr; }
  .blog-grid { padding: 0 16px; grid-template-columns: 1fr 1fr; }
  .footer-top { grid-template-columns: 1fr 1fr; gap: 32px; }
  .erfahrungen-stats-grid { padding: 0 16px; grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 768px) {
  * { min-width: 0; }
  img, svg { max-width: 100%; }
  h1 { font-size: 26px !important; }
  h2 { font-size: 20px !important; }
  h3 { font-size: 17px !important; }

  /* Hero */
  .hero-inner { padding: 0 16px; grid-template-columns: 1fr; padding-bottom: 24px; }
  .hero-visual { display: flex; justify-content: center; padding-right: 0; margin-top: 24px; overflow: hidden; }
  .hero-visual > div { transform: scale(0.75); transform-origin: top center; }
  .hero-section { padding: 36px 16px 24px; margin: 8px 8px 30px; border-radius: 16px; }
  .hero-title { font-size: 28px !important; }
  .hero-subtitle { font-size: 0.9rem; }

  /* Steps */
  .steps-strip-grid { padding: 0 16px; grid-template-columns: 1fr; max-width: 100%; }

  /* How section - hide visual box on mobile, show only text */
  .how-step { grid-template-columns: 1fr; gap: 24px; }
  .how-step.reverse { direction: ltr; }
  .how-step-visual { display: none; }

  /* Grids */
  .why-grid { padding: 0 16px; grid-template-columns: 1fr; gap: 32px; }
  .why-item { overflow: hidden; }
  .why-item-body { overflow: hidden; min-width: 0; }
  .contact-grid { padding: 0 16px; grid-template-columns: 1fr; }
  .about-grid { padding: 0 16px; grid-template-columns: 1fr; }
  .team-grid { padding: 0 16px; grid-template-columns: 1fr 1fr; }
  .testimonials-grid { padding: 0 16px; grid-template-columns: 1fr; }
  .blog-grid { padding: 0 16px; grid-template-columns: 1fr; }
  .ueber-grid { grid-template-columns: 1fr; }
  .erfahrungen-stats-grid { padding: 0 16px; grid-template-columns: 1fr 1fr; }

  /* Parkraumüberwacher / Firma Seiten */
  .firma-content-grid,
  .pv-firma-grid,
  .parkraum-grid,
  .single-firma-grid { grid-template-columns: 1fr !important; }

  /* Nav */
  .main-nav { display: none !important; }
  .nav-ctas { display: none !important; }
  .nav-toggle { display: flex; }

  /* Footer + Stats */
  .footer-top { grid-template-columns: 1fr; gap: 28px; }
  .stats-inner { grid-template-columns: 1fr 1fr; padding: 0 16px; }
  .steps-strip { padding: 0 0 50px; }

  /* Page sections */
  .page-hero { padding: 40px 0 36px; }
  .page-hero-inner { padding: 0 16px; }
  .faq-list { padding: 0 16px; }
  .legal-content { padding: 40px 16px 60px; }
  .karriere-section { padding: 60px 0; }
  .job-list { padding: 0 16px; }
}

@media (max-width: 480px) {
  .stats-inner { grid-template-columns: 1fr; }
  .team-grid { padding: 0 16px; grid-template-columns: 1fr; }
  .hero-actions { flex-direction: column; }
  .hero-actions .btn { text-align: center; justify-content: center; width: 100%; }
  .job-card { flex-direction: column; align-items: flex-start; }
  .erfahrungen-stats-grid { padding: 0 16px; grid-template-columns: 1fr; }
}


/* FORCE MOB-MENU HIDDEN */
#mob-menu { display: none !important; }
#mob-menu.open { display: flex !important; flex-direction: column !important; }


@media (max-width: 768px) {
  .has-dd:hover > .dd { display: none !important; }
  .dd { display: none !important; }
}

.pv-mob-companies {
  max-height: 300px;
  overflow-y: auto;
  margin-left: 8px;
  border-left: 2px solid #FFD5C2;
}
.pv-mob-sub-btn {
  width: 100%;
  background: none;
  border: none;
  border-bottom: 1px solid #fafafa;
  text-align: left;
  font-family: inherit;
  cursor: pointer;
  color: #0B1D39;
  display: flex;
  justify-content: space-between;
  align-items: center;
}


/* ─── TESTIMONIALS SLIDER ─── */
.testimonials-slider-wrap {
  position: relative;
  max-width: var(--max-w);
  margin: 48px auto 0;
  padding: 0 60px;
}
.testimonials-swiper {
  overflow: hidden;
  width: 100%;
}
.testimonials-swiper .swiper-wrapper {
  display: flex;
  align-items: stretch;
}
.testimonials-swiper .swiper-slide {
  height: auto;
  width: auto;
  flex-shrink: 0;
}
.testimonials-swiper .testimonial-card {
  height: 100%;
  margin: 0;
}
.testimonials-pagination { margin-top: 32px; }
.testimonials-pagination .swiper-pagination-bullet {
  background: #FF6B35;
  opacity: .3;
}
.testimonials-pagination .swiper-pagination-bullet-active { opacity: 1; }
.testimonials-prev,
.testimonials-next {
  color: #FF6B35 !important;
  width: 44px !important;
  height: 44px !important;
}
.testimonials-prev::after,
.testimonials-next::after { font-size: 1.2rem !important; font-weight: 700 !important; }
.testimonials-prev { left: 0 !important; }
.testimonials-next { right: 0 !important; }
@media (max-width: 768px) {
  .testimonials-slider-wrap { padding: 0 40px; }
}


/* Swiper Buttons z-index fix */
.testimonials-prev,
.testimonials-next {
  z-index: 10 !important;
}
.testimonials-slider-wrap {
  overflow: hidden;
}


/* Hide stray swiper navigation outside slider */
.swiper-button-prev:not(.testimonials-prev),
.swiper-button-next:not(.testimonials-next) {
  display: none !important;
}
.testimonials-slider-wrap {
  overflow: hidden;
  position: relative;
}


/* Swiper Navigation Pfeile komplett ausblenden */
.testimonials-prev,
.testimonials-next,
.swiper-button-prev,
.swiper-button-next {
  display: none !important;
}


/* Alle Swiper Pfeile entfernen */
.swiper-button-prev,
.swiper-button-next,
.testimonials-prev,
.testimonials-next {
  display: none !important;
  visibility: hidden !important;
}
.swiper-pagination {
  position: relative !important;
  bottom: auto !important;
  margin-top: 24px;
}


/* Swiper Default Styles entfernen */
.swiper-button-prev,
.swiper-button-next {
  display: none !important;
}
.swiper::after,
.swiper::before,
.testimonials-swiper::after,
.testimonials-swiper::before,
.testimonials-slider-wrap::after,
.testimonials-slider-wrap::before {
  display: none !important;
  content: none !important;
}
