/* ════════════════════════════════════════════════════════════════
   OVB24 Theme — Story-Premium-Advertorial Page
   Erweiterungen zu main.css für die Seite "Story-Premium-Advertorial"
   ════════════════════════════════════════════════════════════════ */

/* ── HERO-Erweiterung: Story-Triangle + 8×-Sticker ── */
.hero--story .hero-page-tri {
  position: absolute;
  right: 8%;
  top: 50%;
  transform: translate(-50%, -50%) rotate(-8deg);
  width: 340px;
  height: auto;
  opacity: 0.18;
  z-index: 1;
  pointer-events: none;
  filter: drop-shadow(0 0 60px rgba(212, 18, 28, 0.3));
}

.hero-sticker {
  position: absolute;
  right: 6%;
  bottom: 18%;
  z-index: 3;
  width: 170px;
  height: 170px;
  border-radius: 50%;
  background: var(--yellow);
  color: var(--dark);
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  transform: rotate(-10deg);
  box-shadow: 0 12px 36px rgba(0, 0, 0, 0.35);
  text-align: center;
  padding: 14px;
}
.hero-sticker .n {
  font-size: 46px;
  font-weight: 800;
  line-height: 1;
  font-family: var(--font-hero);
}
.hero-sticker .l {
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 0.08em;
  text-transform: uppercase;
  margin-top: 4px;
  line-height: 1.1;
}

@media (max-width: 1024px) {
  .hero--story .hero-page-tri { display: none; }
}
@media (max-width: 768px) {
  .hero-sticker { width: 120px; height: 120px; right: 4%; bottom: 8%; padding: 10px; }
  .hero-sticker .n { font-size: 32px; }
  .hero-sticker .l { font-size: 10px; }
}

/* ── STATS-BAR: rote Akzent-Zahlen für Story-Page ── */
.story-stats-bar .stat-number { color: var(--red); font-weight: 400; }

/* ── Story-Bridge KPIs ausblenden (kommen im Marquee/Stats darunter) ── */
.story-premium-advertorial .story-kpis,
.page-template-page-story-advertorial .story-kpis {
    display: none !important;
}

/* ==========================================================================
   ── 04 NEW ISOLATED LP STACKED STORY-BRIDGE & GROSSES VENN-DIAGRAMM ──
   ========================================================================== */
.story-bridge-lp--stacked {
    padding: 140px 0 120px !important;
    background: #ffffff !important;
}

/* Der große, luftige Abstand direkt unter der Grafik-Animation */
.story-bridge-lp-layout-stacked {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    gap: 110px !important; 
    width: 100%;
    background: #ffffff !important;
}

.story-bridge-lp-visual-stacked {
    width: 100% !important;
    max-width: 760px !important;
    position: relative !important;
    background: #ffffff !important;
}

.ovb-venn-diagram-lp {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    background: #ffffff !important;
}

.venn-svg-lp {
    width: 100%;
    height: auto;
    overflow: visible;
    background: #ffffff !important;
}

/* Kreise */
.venn-circle-lp {
    fill: transparent;
    stroke: var(--dark, #161922);
    stroke-width: 3px;
    opacity: 0;
    transform: scale(0.85);
    transform-origin: center;
    transition: opacity 0.7s ease, transform 0.7s cubic-bezier(0.34, 1.56, 0.64, 1);
}
.venn-circle-lp--left { transform-origin: 280px 220px; }
.venn-circle-lp--right { transform-origin: 520px 220px; }

/* Schnittmenge: GELB */
.venn-intersection-lp {
    fill: var(--yellow, #FFDE12) !important;
    opacity: 0;
    transition: opacity 0.6s ease;
}

/* Pfeil */
.venn-arrow-line-lp {
    stroke: var(--dark, #161922);
    stroke-width: 3.5px;
    stroke-dasharray: 150;
    stroke-dashoffset: 150;
    transition: stroke-dashoffset 0.6s ease;
}
.venn-arrow-head-lp {
    fill: var(--dark, #161922);
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.3s ease, transform 0.3s ease;
}

/* Texte im SVG */
.venn-fo-lp {
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.5s ease, transform 0.5s ease;
}
.venn-text-inner-lp {
    font-family: var(--font, sans-serif);
    font-size: 18px;
    font-weight: 800;
    line-height: 1.3;
    color: var(--dark, #161922);
    text-align: center;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-transform: uppercase;
}

/* Fazit Text */
.venn-footer-text-lp {
    margin-top: 5px;
    opacity: 0;
    transform: translateY(10px);
    transition: opacity 0.6s ease, transform 0.6s ease;
    text-align: center;
}
.venn-footer-text-lp p {
    font-size: 18px !important;
    font-weight: 400;
    color: var(--dark, #161922) !important;
    margin: 0;
}

/* Animations-Kettentakt */
.is-active .venn-circle-lp--left { opacity: 1; transform: scale(1); }
.is-active .venn-fo-lp--left { opacity: 1; transform: translateY(0); transition-delay: 0.5s; }
.is-active .venn-circle-lp--right { opacity: 1; transform: scale(1); transition-delay: 0.9s; }
.is-active .venn-fo-lp--right { opacity: 1; transform: translateY(0); transition-delay: 1.4s; }
.is-active .venn-intersection-lp { opacity: 0.85; transition-delay: 2.0s; }
.is-active .venn-arrow-line-lp { stroke-dashoffset: 0; transition-delay: 2.5s; }
.is-active .venn-arrow-head-lp { opacity: 1; transform: translateY(0); transition-delay: 3.0s; }
.is-active .venn-footer-text-lp { opacity: 1; transform: translateY(0); transition-delay: 3.4s; }

/* ── RECHTES GRID UNTEN ── */
.story-bridge-lp-split-content {
    display: grid !important;
    grid-template-columns: 1.1fr 0.9fr !important;
    gap: 64px !important;
    width: 100%;
    text-align: left !important;
}

.story-split-col-left-lp h2 {
    font-size: clamp(30px, 4vw, 48px) !important;
    font-weight: 900;
    text-transform: uppercase;
    line-height: 1.2;
    margin-bottom: 15px;
}
.story-split-col-left-lp .anim-subtitle-lp {
    font-size: 20px !important;
    color: var(--red, #d4121c);
    margin-bottom: 25px;
    font-weight: 700;
}

/* KORREKTUR: Hauptbeschreibung exakt wie der untere Sektionstext (Ropa Sans, Regular, 18px) */
.story-main-desc-lp {
    font-family: var(--font, 'Ropa Sans', sans-serif) !important;
    font-size: 18px !important;
    font-weight: 400 !important; /* Auf normale Schriftstärke zurückgesetzt */
    line-height: 1.75 !important;
    color: var(--dark, #161922) !important;
    margin-bottom: 35px !important;
}

.story-kpis-stacked-lp {
    display: flex;
    gap: 20px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}
.story-kpis-stacked-lp .story-kpi-lp {
    background: #f8f9fa;
    padding: 15px 25px;
    border-radius: 8px;
    flex: 1;
    min-width: 140px;
    text-align: center;
}
.story-kpi-num-lp {
    font-size: 32px;
    font-weight: 800;
    color: var(--dark);
}
.story-kpi-label-lp {
    font-size: 12px;
    color: #666;
}

/* Checkmarks */
.story-features-lp {
    display: flex;
    flex-direction: column;
    gap: 16px;
    margin-bottom: 30px;
}
.story-feature-lp {
    display: flex;
    align-items: flex-start;
    gap: 14px;
}
.story-feature-check-lp {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
}
.story-feature-check-lp img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}
.story-feature-check-lp .default-check {
    color: var(--red, #d4121c);
    font-weight: 900;
    font-size: 18px;
    line-height: 1;
}
.story-feature-text-lp {
    font-size: 16px !important;
    font-weight: 600;
    line-height: 1.4;
    color: var(--dark, #161922);
}

/* Cleaner Bild-Modus (Kein Kasten, kein Schatten) */
.story-split-image-wrap-lp.clean-image-mode {
    position: relative !important;
    width: 100% !important;
    background: transparent !important;
    border-radius: 0 !important;
    overflow: visible !important;
    box-shadow: none !important;
    padding: 0 !important;
}
.story-split-image-wrap-lp.clean-image-mode img {
    width: 100% !important;
    height: auto !important;
    box-shadow: none !important;
    border: none !important;
    display: block !important;
}

/* VIDEO DOPPEL COMPARISON */
.story-bridge-lp--video-comparison {
    border-top: 1px dashed #ddd;
    background: #fdfdfd !important;
}
.ovb-video-comparison-wrap-lp {
    width: 100%;
    max-width: 760px;
    margin: 0 auto;
    position: relative;
}
.ovb-video-comparison-wrap-lp video {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 12px;
    box-shadow: 0 10px 40px rgba(0,0,0,0.06);
}
.video-footer-text-animate-lp p {
    font-size: 26px !important;
    font-weight: 850;
    color: var(--red, #d4121c) !important;
    text-align: center;
    margin-top: 25px;
}
.video-sec-headline-lp {
    font-size: 20px !important;
    color: var(--dark) !important;
    margin-bottom: 25px;
}

@media (max-width: 992px) {
    .story-bridge-lp-split-content { grid-template-columns: 1fr !important; gap: 40px !important; }
}
@media (max-width: 768px) {
    .story-bridge-lp--stacked { padding: 80px 0 60px !important; }
    .story-bridge-lp-layout-stacked { gap: 40px !important; }
    .venn-text-inner-lp { font-size: 13px; }
}

/* ==========================================================================
   ── FIX: KINETIC TYPOGRAPHY / FEATURES AUCH AUF WEISS ──
   ========================================================================== */
.story-features-section {
    padding: 80px 0 0 !important;
    background: #ffffff !important;
}
.story-kinetic-wrap {
    background: #ffffff !important;
}

/* ── PORTAL-CARDS ── */
.portale-cards-row.portale-logo-only { grid-template-columns: repeat(6, 1fr); gap: 18px; }
.portal-preview-card { padding: 0; display: flex; flex-direction: column; }
.portal-preview-logo { padding: 32px 18px; min-height: 120px; background: var(--white); border-bottom: 1px solid rgba(22, 25, 34, 0.06); }
.portal-preview-logo img { height: 44px; max-width: 100%; }
.portal-preview-url { padding: 14px 16px; justify-content: center; font-weight: 400; }
@media (max-width: 1024px) { .portale-cards-row.portale-logo-only { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 600px) { .portale-cards-row.portale-logo-only { grid-template-columns: repeat(2, 1fr); } }

/* ── STORY-REFERENZEN ── */
.story-references-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 24px; margin-bottom: 80px; }
.story-ref-card { display: flex; flex-direction: column; background: var(--white); border-radius: var(--radius); overflow: hidden; border: 1px solid rgba(22, 25, 34, 0.06); box-shadow: var(--shadow); transition: all 0.3s ease; text-decoration: none; color: inherit; }
.story-ref-card:hover { transform: translateY(-6px); box-shadow: var(--shadow-lg); border-color: var(--red); }
.story-ref-img { aspect-ratio: 4 / 3; background-size: cover; background-position: center; transition: transform 0.4s ease; }
.story-ref-img--placeholder { background: linear-gradient(135deg, var(--gray-light) 0%, #e8e8ec 100%); position: relative; }
.story-ref-img--placeholder::after { content: 'Cover-Bild ergänzen'; position: absolute; inset: 0; display: flex; align-items: center; justify-content: center; color: var(--gray); font-size: 12px; letter-spacing: 1px; text-transform: uppercase; }
.story-ref-card:hover .story-ref-img { transform: scale(1.04); }
.story-ref-body { padding: 24px 22px; display: flex; flex-direction: column; gap: 10px; flex: 1; }
.story-ref-tag { font-size: 11px; font-weight: 400; letter-spacing: 1.5px; text-transform: uppercase; color: var(--red); }
.story-ref-card h3 { font-size: 18px; font-weight: 400; color: var(--dark); line-height: 1.3; margin: 0; }
.story-ref-sub { font-size: 13px; color: var(--gray); line-height: 1.5; font-style: italic; }
.story-ref-cta { margin-top: auto; padding-top: 12px; font-size: 13px; font-weight: 400; color: var(--red); display: inline-flex; align-items: center; gap: 6px; transition: gap var(--transition); }
.story-ref-card:hover .story-ref-cta { gap: 10px; }
@media (max-width: 1024px) { .story-references-grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px)  { .story-references-grid { grid-template-columns: 1fr; } }

/* ── STATEMENT-BLOCK ── */
.story-statement { max-width: 780px; margin: 0 auto; text-align: center; padding: 48px 32px; background: var(--gray-light); border-radius: var(--radius); border-left: 4px solid var(--red); }
.story-statement-quote-icon { font-size: 64px; color: var(--red); line-height: 0.6; margin-bottom: 8px; font-family: Georgia, serif; }
.story-statement-quote { font-size: clamp(20px, 2.4vw, 28px); font-style: italic; color: var(--dark); line-height: 1.4; margin-bottom: 24px; }
.story-statement-author { display: flex; flex-direction: column; gap: 4px; align-items: center; }
.story-statement-name { font-size: 18px; font-weight: 400; color: var(--dark); }
.story-statement-role { font-size: 18px; color: var(--gray); }

/* ── FOOTER-LOGO ── */
body.page-template-page-story-advertorial .footer-logo { display: inline-block; background: #fff; padding: 10px 16px; border-radius: 10px; margin-bottom: 24px; box-shadow: 0 4px 16px rgba(0, 0, 0, 0.2); }
body.page-template-page-story-advertorial .footer-logo img, body.page-template-page-story-advertorial .footer-logo .custom-logo-link img { filter: none !important; height: 36px; margin: 0; display: block; }

/* ── BERATUNGS-SECTION ── */
.booking-section { background: var(--gray-light); padding: 120px 0; }
.booking-layout { display: grid; grid-template-columns: 1fr 1fr; gap: 64px; align-items: start; }
.booking-content .section-label { color: var(--red); }
.booking-content h2 { font-size: clamp(28px, 4vw, 48px); font-weight: 400; color: var(--dark); line-height: 1.15; margin-bottom: 18px; }
.booking-content h2 em { font-style: italic; color: var(--red); }
.booking-content p { font-size: 18px; color: var(--gray); line-height: 1.75; margin-bottom: 32px; max-width: 480px; }
.booking-trust { display: flex; flex-direction: column; gap: 14px; margin-top: 32px; }
.booking-trust-item { display: flex; align-items: center; gap: 12px; font-size: 18px; color: var(--gray-dark); }
.booking-trust-icon { width: 32px; height: 32px; border-radius: 50%; background: rgba(212, 18, 28, 0.08); color: var(--red); display: flex; align-items: center; justify-content: center; flex-shrink: 0; }
.booking-form { background: var(--white); border-radius: var(--radius); padding: 40px; box-shadow: var(--shadow-lg); display: flex; flex-direction: column; gap: 18px; }
.booking-form-row { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.booking-field label { display: block; font-size: 12px; font-weight: 400; letter-spacing: 1px; text-transform: uppercase; color: var(--gray-dark); margin-bottom: 8px; }
.booking-field label .opt { text-transform: none; letter-spacing: 0; color: #aaa; }
.booking-field input, .booking-field textarea, .booking-field select { width: 100%; padding: 14px 16px; border: 1.5px solid rgba(22, 25, 34, 0.12); border-radius: 10px; font-family: var(--font); font-size: 18px; color: var(--dark); background: var(--white); transition: all var(--transition); }
.booking-field input:focus, .booking-field textarea:focus, .booking-field select:focus { outline: 0; border-color: var(--red); box-shadow: 0 0 0 4px rgba(212, 18, 28, 0.08); }
.booking-field textarea { min-height: 110px; resize: vertical; }
.booking-consent { display: flex; gap: 10px; align-items: flex-start; font-size: 18px; color: var(--gray); }
.booking-consent input { margin-top: 4px; accent-color: var(--red); }
.booking-consent a { color: var(--red); text-decoration: underline; }
.booking-form button { align-self: flex-start; margin-top: 8px; }
.booking-form--cf7 .wpcf7-form-control:not([type="submit"]):not([type="checkbox"]) { width: 100%; padding: 14px 16px; border: 1.5px solid rgba(22, 25, 34, 0.12); border-radius: 10px; font-family: var(--font); font-size: 18px; }
.booking-form--cf7 .wpcf7-submit { display: inline-flex; align-items: center; gap: 8px; padding: 14px 32px; border-radius: 50px; background: var(--red); color: var(--white); border: 0; cursor: pointer; font-weight: 400; font-size: 18px; font-family: var(--font); letter-spacing: 0.3px; transition: all var(--transition); }
.booking-form--cf7 .wpcf7-submit:hover { background: var(--red-dark); transform: translateY(-2px); box-shadow: 0 8px 24px rgba(212, 18, 28, 0.25); }
@media (max-width: 1024px) { .booking-layout { grid-template-columns: 1fr; gap: 40px; } }
@media (max-width: 768px) { .booking-section { padding: 80px 0; } .booking-form { padding: 28px; } .booking-form-row { grid-template-columns: 1fr; } }

/* ── BENEFITS-MARQUEE ── */
.story-marquee-section { overflow: hidden; padding: 0; background: transparent; display: flex; flex-direction: column; gap: 0; margin: 0; }
.story-marquee__track { overflow: hidden; padding: 10px 0; position: relative; }
.story-marquee__track::before, .story-marquee__track::after { display: none; }
.story-marquee__inner { display: flex; align-items: center; width: max-content; gap: 0; animation: marqueeLeft 35s linear infinite; }
.story-marquee__inner--right { animation: marqueeRight 38s linear infinite; }
.story-marquee__track:hover .story-marquee__inner { animation-play-state: paused; }
@keyframes marqueeLeft { 0% { transform: translateX(0); } 100% { transform: translateX(-33.333%); } }
@keyframes marqueeRight { 0% { transform: translateX(-33.333%); } 100% { transform: translateX(0); } }
.story-marquee__track:first-child { background: var(--yellow, #FFDE12); }
.story-marquee__track:first-child .story-marquee__item { color: var(--dark, #161922); }
.story-marquee__track:first-child .story-marquee__dot { background: var(--dark, #161922); }
.story-marquee__track:last-child { background: var(--dark, #161922); }
.story-marquee__track:last-child .story-marquee__item { color: var(--yellow, #FFDE12); }
.story-marquee__track:last-child .story-marquee__dot { background: var(--yellow, #FFDE12); }
.story-marquee__item { display: inline-flex; align-items: center; gap: 12px; font-size: 18px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 12px 24px; white-space: nowrap; flex-shrink: 0; }
.story-marquee__dot { width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0; }

/* ── LOGO-MARQUEE ── */
.story-logo-marquee-section { padding: 48px 0; background: #f9f9f7; overflow: hidden; }
.story-logo-marquee-headline { text-align: center; font-size: 13px; font-weight: 400; color: #888; text-transform: uppercase; letter-spacing: 0.1em; margin-bottom: 28px; }
.story-logo-marquee__track { overflow: hidden; position: relative; }
.story-logo-marquee__track::before, .story-logo-marquee__track::after { content: ''; position: absolute; top: 0; bottom: 0; width: 120px; z-index: 2; pointer-events: none; }
.story-logo-marquee__track::before { left: 0; background: linear-gradient(to right, #f9f9f7, transparent); }
.story-logo-marquee__track::after { right: 0; background: linear-gradient(to left, #f9f9f7, transparent); }
.story-logo-marquee__inner { display: flex; align-items: center; gap: 60px; width: max-content; animation: marqueeLeft 40s linear infinite; padding: 8px 0; }
.story-logo-marquee__track:hover .story-logo-marquee__inner { animation-play-state: paused; }
.story-logo-marquee__item { flex-shrink: 0; display: flex; align-items: center; }
.story-logo-marquee__item img { height: 40px; width: auto; max-width: 160px; object-fit: contain; filter: grayscale(100%) opacity(0.6); transition: filter 0.3s ease; }
.story-logo-marquee__item img:hover { filter: grayscale(0%) opacity(1); }

/* ── REFERENZEN — 2-spaltig ── */
.story-references-grid--2col { display: grid; grid-template-columns: repeat(2, 1fr); gap: 28px; }
.story-references-grid--2col .story-ref-img { height: 460px; }
.story-ref-logo-wrap { display: flex; align-items: center; margin-bottom: 10px; }
.story-ref-logo { height: 80px; width: auto; max-width: 200px; object-fit: contain; display: block; }
.story-ref-tag { display: inline-block; background: var(--yellow, #FFDE12); color: var(--dark, #161922) !important; font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.06em; padding: 4px 10px; border-radius: 6px; margin-bottom: 10px; white-space: nowrap; width: auto; max-width: 100%; }
@media (max-width: 768px) { .story-references-grid--2col { grid-template-columns: 1fr; gap: 20px; } .story-references-grid--2col .story-ref-img { height: 320px; } }

/* ── PROZESS-SEKTION ── */
.story-prozess-section { padding: 100px 0; background: var(--dark, #161922); }
.story-prozess-header { max-width: 680px; margin-bottom: 72px; }
.story-prozess-badge { display: inline-block; background: var(--yellow, #FFDE12); color: var(--dark, #161922); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 4px 12px; border-radius: 4px; margin-bottom: 16px; }
.story-prozess-h2 { font-size: clamp(28px, 4vw, 44px); font-weight: 800; color: #fff; margin-bottom: 16px; line-height: 1.15; }
.story-prozess-zitat { font-size: 18px; color: rgba(255,255,255,0.55); line-height: 1.7; font-style: italic; }
.story-prozess-steps { display: flex; flex-direction: column; gap: 64px; }
.story-prozess-row { display: grid; grid-template-columns: 1fr 1fr; gap: 56px; align-items: center; opacity: 0; transform: translateY(48px); transition: opacity 0.65s ease, transform 0.65s ease; }
.story-prozess-row--reverse .story-prozess-text-col { order: 2; }
.story-prozess-row--reverse .story-prozess-img-col  { order: 1; }
.story-prozess-row.is-visible { opacity: 1; transform: translateY(0); }
.story-prozess-row[data-index="1"] { transition-delay: 0.08s; }
.story-prozess-row[data-index="2"] { transition-delay: 0.05s; }
.story-prozess-row[data-index="3"] { transition-delay: 0.08s; }
.story-prozess-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.1); border-radius: 16px; padding: 40px 40px; height: 100%; }
.story-prozess-step-num { display: block; font-size: 56px; font-weight: 900; color: rgba(255,222,18,0.18); line-height: 1; margin-bottom: 16px; letter-spacing: -0.03em; }
.story-prozess-card h3 { font-size: 22px; font-weight: 700; color: var(--yellow, #FFDE12); margin-bottom: 14px; line-height: 1.2; }
.story-prozess-card p { font-size: 18px; color: rgba(255,255,255,0.7); line-height: 1.75; margin: 0; }
.story-prozess-img { width: 100%; border-radius: 16px; overflow: hidden; aspect-ratio: 4 / 5; background: rgba(255,255,255,0.05); }
.story-prozess-img img { width: 100%; height: 100%; object-fit: cover; display: block; transition: transform 0.5s ease; }
.story-prozess-img:hover img { transform: scale(1.03); }
.story-prozess-img--placeholder { display: flex; align-items: center; justify-content: center; background: rgba(255,222,18,0.05); border: 1px dashed rgba(255,222,18,0.25); }
.story-prozess-img--placeholder span { font-size: 80px; font-weight: 900; color: rgba(255,222,18,0.12); }
.story-prozess-cta { text-align: center; margin-top: 72px; opacity: 0; transform: translateY(24px); transition: opacity 0.6s ease 0.2s, transform 0.6s ease 0.2s; }
.story-prozess-cta.is-visible { opacity: 1; transform: translateY(0); }
.story-prozess-btn { display: inline-flex; align-items: center; gap: 10px; padding: 18px 48px; background: var(--red, #d4121c); color: #fff; font-size: 18px; font-weight: 700; border-radius: 8px; text-decoration: none; letter-spacing: 0.02em; border: 2px solid var(--red, #d4121c); transition: background 0.25s ease, color 0.25s ease, border-color 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease; box-shadow: 0 4px 24px rgba(212,18,28,0.35); }
.story-prozess-btn:hover { background: var(--yellow, #FFDE12); color: var(--dark, #161922); border-color: var(--yellow, #FFDE12); box-shadow: 0 6px 32px rgba(255,222,18,0.35); transform: translateY(-2px); }

@media (max-width: 900px) { .story-prozess-steps { gap: 48px; } .story-prozess-row { grid-template-columns: 1fr; gap: 24px; } .story-prozess-row--reverse .story-prozess-text-col { order: 1; } .story-prozess-row--reverse .story-prozess-img-col  { order: 2; } .story-prozess-img { aspect-ratio: 16 / 9; } .story-prozess-card { padding: 28px; } .story-prozess-step-num { font-size: 40px; } }
@media (max-width: 580px) { .story-prozess-section { padding: 60px 0; } .story-prozess-card { padding: 22px 20px; } .story-prozess-btn { padding: 16px 32px; font-size: 18px; } }

/* ── FAQ-SEKTION ── */
.story-faq-section { padding: 100px 0; background: #fff; }
.story-faq-header { max-width: 680px; margin: 0 auto 48px; text-align: center; }
.story-faq-header h2 { font-size: clamp(24px, 3.5vw, 38px); font-weight: 800; color: var(--dark, #161922); margin-bottom: 12px; line-height: 1.2; }
.story-faq-subline { font-size: 18px; color: #666; line-height: 1.6; }
.story-faq-list { max-width: 780px; margin: 0 auto; display: flex; flex-direction: column; gap: 0; border-top: 1px solid rgba(22,25,34,0.1); }
.story-faq-item { border-bottom: 1px solid rgba(22,25,34,0.1); }
.story-faq-question { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 16px; padding: 22px 0; background: transparent; border: none; cursor: pointer; text-align: left; font-family: inherit; font-size: 18px; font-weight: 700; color: var(--dark, #161922); transition: color 0.2s ease; }
.story-faq-question:hover { color: var(--red, #d4121c); }
.story-faq-icon { width: 20px; height: 20px; flex-shrink: 0; transition: transform 0.3s ease; color: var(--red, #d4121c); }
.story-faq-item.is-open .story-faq-icon { transform: rotate(180deg); }
.story-faq-answer { max-height: 0; overflow: hidden; transition: max-height 0.35s ease, padding 0.2s ease; }
.story-faq-item.is-open .story-faq-answer { max-height: 400px; padding-bottom: 20px; }
.story-faq-answer p { font-size: 18px; color: #555; line-height: 1.75; margin: 0; }
@media (max-width: 768px) { .story-faq-section { padding: 60px 0; } .story-faq-question { font-size: 18px; padding: 18px 0; } }

/* ── KINETIC TYPOGRAPHY ── */
.story-features-section { padding: 80px 0 0; background: #fff; }
.story-kinetic-wrap { width: 100%; display: flex; align-items: center; justify-content: center; min-height: 120px; overflow: hidden; padding: 24px 1rem; }
.story-kinetic-stage { display: flex; align-items: center; justify-content: center; gap: 12px; white-space: nowrap; }
.story-kinetic-left { font-size: clamp(22px, 4vw, 48px); font-weight: 800; color: #161922; text-transform: uppercase; letter-spacing: -0.02em; line-height: 1; }
.story-kinetic-right { font-size: clamp(22px, 4vw, 48px); font-weight: 800; color: #fff; text-transform: uppercase; letter-spacing: -0.02em; background: #d4121c; padding: 6px 16px; border-radius: 5px; line-height: 1; display: inline-block; will-change: clip-path; }
.story-kinetic-body { text-align: center; padding: 40px 1rem 0; max-width: 680px; margin: 0 auto; }
.story-kinetic-body h3 { font-size: clamp(16px, 2vw, 20px); font-weight: 700; color: #161922; margin-bottom: 14px; line-height: 1.3; }
.story-kinetic-body p { font-size: 18px; color: #666; line-height: 1.75; margin-bottom: 10px; }
.story-kinetic-body small { font-size: 12px; color: #bbb; font-style: italic; display: block; margin-top: 12px; padding-bottom: 60px; }

/* ── Counter-Bar ── */
.story-counter-bar { background: #f5f5f7; border-top: 3px solid #d4121c; padding: 64px 0; }
.story-counter-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; text-align: center; }
.story-counter-item { padding: 20px 16px; border-right: 1px solid #e5e5e5; }
.story-counter-item:last-child { border-right: none; }
.story-counter-num { font-size: clamp(48px, 7vw, 88px); font-weight: 900; color: var(--dark, #161922); line-height: 1; margin-bottom: 10px; font-family: 'Ropa Sans', sans-serif; letter-spacing: -0.02em; }
.story-counter-prefix { font-size: clamp(36px, 5vw, 64px); font-weight: 900; color: var(--red, #d4121c); letter-spacing: -0.02em; margin-right: 2px; }
.story-counter-label { font-size: 12px; font-weight: 600; color: #888; text-transform: uppercase; letter-spacing: 0.1em; }
@media (max-width: 900px) { .story-features-section { padding: 60px 0 0; } .story-counter-grid { grid-template-columns: repeat(2, 1fr); } .story-counter-item:nth-child(2) { border-right: none; } .story-counter-item:nth-child(3) { border-right: 1px solid #e5e5e5; } .story-counter-item { padding: 24px 12px; } }
@media (max-width: 480px) { .story-counter-num { font-size: clamp(36px, 12vw, 56px); } }

/* ── WARUM STORY PREMIUM — Slider ── */
.story-warum-section { padding: 80px 0; background: #fff; }
.story-warum-badge { display: inline-block; background: var(--yellow, #FFDE12); color: var(--dark, #161922); font-size: 11px; font-weight: 700; text-transform: uppercase; letter-spacing: 0.1em; padding: 4px 12px; border-radius: 4px; margin-bottom: 28px; }
.story-warum-slider { overflow: hidden; width: 100%; }
.story-warum-track { display: flex; gap: 20px; transition: transform 0.4s cubic-bezier(0.4, 0, 0.2, 1); will-change: transform; }
.story-warum-card { flex-shrink: 0; background: #fff; border: 1.5px solid #161922; border-radius: 12px; padding: 28px 24px; box-sizing: border-box; transition: border-color 0.2s ease; display: flex; flex-direction: column; align-items: center; text-align: center; gap: 0; }
.story-warum-card:hover { border-color: var(--red, #d4121c); }
.story-warum-icon { display: flex; align-items: center; justify-content: center; margin-bottom: 16px; }
.story-warum-icon img { height: 65px; width: auto; object-fit: contain; }
.story-warum-card-body { width: 100%; }
.story-warum-card h3 { font-size: 21px; font-weight: 700; color: var(--dark, #161922); margin-bottom: 10px; line-height: 1.2; position: relative; display: inline-block; padding-bottom: 6px; }
.story-warum-card h3::after { content: ''; display: block; width: 32px; height: 3px; background: var(--red, #d4121c); margin: 6px auto 0; border-radius: 2px; }
.story-warum-card p { font-size: 18px; color: #555; line-height: 1.7; margin: 0; }
.story-warum-nav { display: flex; justify-content: flex-end; gap: 8px; margin-top: 24px; }
.story-warum-btn { width: 40px; height: 40px; border-radius: 50%; border: 1.5px solid #161922; background: #fff; font-size: 20px; cursor: pointer; display: flex; align-items: center; justify-content: center; color: #161922; transition: all 0.2s ease; line-height: 1; }
.story-warum-btn:hover:not(:disabled) { background: #161922; color: #fff; }
.story-warum-btn:disabled { opacity: 0.3; cursor: default; }
@media (max-width: 768px) { .story-warum-section { padding: 60px 0; } .story-warum-card { padding: 22px 18px; } }

/* ── Globale Schriftelemente Tuning ── */
.hero-badge, .section-label, .story-bridge-content p, .story-bridge-content li, .story-feature span, .story-warum-badge, .section-header p, .leistung-body p, .leistung-link, .booking-section .section-label, .btn, .story-counter-label, .story-ref-cta { font-size: 18px !important; }
.story-logo-marquee__item img { height: 85px; }
.booking-content-image { margin-top: 24px; }
.booking-content-image img { width: 100% !important; max-width: 320px !important; height: auto !important; margin-top: 0 !important; border-radius: 12px; object-fit: cover; display: block; }
.booking-content-image figcaption { font-size: 13px; color: #626262; margin-top: 8px; line-height: 1.4; }