/* =========================================
   fritts — Product Variant v1 (Mobile)
   Uses shared mobile components
   ========================================= */

/* Shared mobile header, sidemenu, footer */
@import url('shared/mobile-header.css');
@import url('shared/mobile-sidemenu.css');
@import url('shared/mobile-footer.css');


/* Root font scales 1:1 with viewport at every width
   (canonical form of the previous calc(100vw / 24.375),
   mathematically identical, cleaner syntax). */
html {
    font-size: calc(16px * 100vw / 390);
}
/* Page-level 4× scale-up. All em-based sizing
   in this file — font-size, padding, margin, gap,
   letter-spacing, border-radius — cascades through
   this and ends up 4× the original literal values.
   Original em literals stay readable; only the
   render is scaled. */
body {
    background-color: var(--color-brand-white);
    overflow-x: hidden;
    font-size: 4em;
}

/* Header isolated from product-page font scaling so it matches home/company */
header {
    padding: 8px 20px !important;
}
.logo img {
    width: 100px !important;
    height: 25px !important;
}
.hamburger {
    width: 33px !important;
    height: 33px !important;
    min-width: 33px !important;
    flex: 0 0 33px !important;
    gap: 8px !important;
    flex-direction: column !important;
    justify-content: center !important;
    align-items: center !important;
    padding: 0 !important;
    box-sizing: border-box !important;
}
.hamburger .hamburger-line {
    width: 100% !important;
    height: 2px !important;
    background: #ffffff !important;
    border-radius: 2px !important;
    display: block !important;
    margin: 0 !important;
}

:root {
    --pv-section-py: 4em;
    --pv-section-px: 1.5em;
    --pv-card-radius: 2em;
    --pv-bg-soft: #f6f4f1;
    --pv-bg-tint: #efe9e2;
    --pv-text-dark: var(--color-brand-dark-teal);
    --pv-text-muted: rgba(40, 53, 88, 0.65);
    --pv-border: rgba(40, 53, 88, 0.12);
    --pv-overlay-teal: rgba(34, 103, 107, 0.25);
}

/* =========================================
   Hero — Horizontal Carousel Slideshow
   ========================================= */
.m-carousel-section {
    position: relative;
    background: var(--color-brand-white);
    padding: 4em 0 2em;
}
.m-carousel {
    margin-top: 1em;
    display: flex;
    align-items: stretch;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    scroll-behavior: smooth;
}
.m-carousel::-webkit-scrollbar { display: none; width: 0; height: 0; }
.m-slide {
    flex: 0 0 100%;
    width: 100%;
    scroll-snap-align: center;
    scroll-snap-stop: always;
    box-sizing: border-box;
    padding: 0 1.2em;
    display: flex;
}
.m-slide__inner {
    position: relative;
    width: 100%;
    min-height: 50svh;
    border-radius: 2.5em;
    overflow: hidden;
    padding: 3.5em 3em;
    box-sizing: border-box;
    display: flex;
    flex-direction: column;
}
.m-slide--photovoltaik .m-slide__inner { background: var(--color-brand-dark-teal); }
.m-slide--waermepumpen .m-slide__inner { background: var(--color-brand-red); }
.m-slide--wallboxen .m-slide__inner    { background: var(--color-brand-light-teal); }

.m-slide__view {
    display: flex;
    flex-direction: column;
    flex: 1;
    width: 100%;
    transition: opacity 0.35s ease;
}
.m-slide__view.is-hidden  { display: none; opacity: 0; }
.m-slide__view.is-visible { display: flex; opacity: 1; }

.m-slide__category {
    color: var(--color-brand-white);
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 1em;
    text-transform: uppercase;
    letter-spacing: 0.18em;
    margin-bottom: 0.6em;
    opacity: 0.8;
}
.m-slide__title {
    color: var(--color-brand-white);
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 1.8em;
    line-height: 1.15;
    margin: 0 0 0.5em;
}
.m-slide__image-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 10em;
    width: 60svw;
    margin: 2em auto;
    height: 25svh;
}
.m-slide__image-wrapper img {
    max-width: 85%;
    width: auto;
    height: auto;
    object-fit: contain;
    display: block;
}
.m-slide__subtitle {
    color: var(--color-brand-white);
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 1em;
    line-height: 1.3;
    margin-bottom: 0.7em;
}
.m-slide__link {
    display: inline-flex;
    align-items: center;
    gap: 0.5em;
    color: var(--color-brand-white);
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 1em;
    text-decoration: none;
    align-self: flex-start;
    padding: 0.4em 0;
}
.m-slide__link-arrow {
    width: 0.9em;
    height: 0.9em;
    filter: brightness(0) invert(1);
}
.m-slide__link-back-arrow { font-size: 1.2em; line-height: 1; }

.m-slide__details {
    flex: 1;
    overflow-y: auto;
    color: var(--color-brand-white);
    font-family: var(--font-family-primary);
    font-weight: 400;
    font-size: 1em;
    line-height: 1.55;
    margin-bottom: 1em;
    padding-right: 0.25em;
}
.m-slide__details p  { margin: 0 0 0.75em; }
.m-slide__details ul { margin: 0 0 0.85em; padding-left: 1.2em; }
.m-slide__details li { margin-bottom: 0.4em; }

.m-carousel__dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1.2em;
    padding: 0.5em 1em;
}
.m-dot {
    appearance: none;
    background: var(--pv-overlay-teal);
    border: none;
    width: 0.5em;
    height: 0.5em;
    min-width: 0.5em;
    min-height: 0.5em;
    border-radius: 50%;
    padding: 0;
    margin: 0.5em;
    cursor: pointer;
    transition: background 0.3s ease, transform 0.3s ease;
    position: relative;
}
.m-dot::after { content: ""; position: absolute; inset: -0.8em; }
.m-dot.is-active {
    background: var(--color-brand-red);
    transform: scale(1.4);
}
.m-carousel__hint {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5em;
    color: var(--color-brand-dark-teal);
    font-family: var(--font-family-primary);
    font-weight: 700;
    font-size: 0.85em;
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-top: 0.8em;
    opacity: 0.6;
    transition: opacity 0.5s ease;
}
.m-carousel__hint.is-hidden { opacity: 0; pointer-events: none; }
.m-carousel__hint-arrow { font-size: 1.1em; }

/* =========================================
   Shared section title/sub
   ========================================= */
.pv-section-inner {
    width: 100%;
    margin: 0 auto;
    padding: 0 var(--pv-section-px);
    box-sizing: border-box;
}
.pv-section-title {
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-bold);
    font-size: 1.8em;
    line-height: 1.2;
    color: var(--pv-text-dark);
    margin: 0 0 0.7em 0;
}
.pv-section-title--light { color: var(--color-brand-white); }
.pv-section-sub {
    font-family: var(--font-family-primary);
    font-size: 1em;
    color: var(--pv-text-muted);
    line-height: 1.5;
    margin: 0 0 2em 0;
}

/* =========================================
   1. Vorteile — single-column accordion
   ========================================= */
.pv-vorteile {
    background: var(--pv-bg-soft);
    padding: var(--pv-section-py) 0;
}
.pv-vorteile .pv-section-title { margin-bottom: 1.5em; }
.pv-vorteile-grid {
    display: flex;
    flex-direction: column;
    gap: 0.8em;
}
.pv-vorteile-card {
    background: var(--color-brand-white);
    border-radius: 1em;
    padding: 1.2em 1.4em;
    border: 1px solid var(--pv-border);
}
.pv-vorteile-card[open] { box-shadow: 0 8px 24px rgba(0,0,0,0.06); }
.pv-vorteile-card summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-bold);
    font-size: 1em;
    color: var(--pv-text-dark);
    gap: 1em;
}
.pv-vorteile-card summary::-webkit-details-marker { display: none; }
.pv-plus {
    width: 1.4em;
    height: 1.4em;
    border-radius: 50%;
    background: var(--pv-bg-soft);
    position: relative;
    flex-shrink: 0;
}
.pv-plus::before, .pv-plus::after {
    content: '';
    position: absolute;
    background: var(--pv-text-dark);
    left: 50%; top: 50%;
    transform: translate(-50%, -50%);
}
.pv-plus::before { width: 0.7em; height: 2px; }
.pv-plus::after  { width: 2px; height: 0.7em; transition: transform .2s ease; }
.pv-vorteile-card[open] .pv-plus::after { transform: translate(-50%, -50%) rotate(90deg); opacity: 0; }
.pv-vorteile-card p {
    margin: 1em 0 0 0;
    color: var(--pv-text-muted);
    font-family: var(--font-family-primary);
    font-size: 0.95em;
    line-height: 1.55;
}

.pv-vorteile-card .accordion-body {
    overflow: hidden;
}

/* =========================================
   2. Komplett-Paket — stacked cards
   ========================================= */
.pv-paket {
    background: var(--color-brand-white);
    padding: var(--pv-section-py) 0;
}
.pv-paket-grid {
    display: flex;
    flex-direction: column;
    gap: 1.5em;
}
.pv-paket-card {
    background: var(--pv-bg-soft);
    border-radius: var(--pv-card-radius);
    padding: 1.8em 1.6em 2em;
    display: flex;
    flex-direction: column;
}
.pv-paket-card--featured {
    background: linear-gradient(180deg, var(--color-brand-light-teal) 0%, var(--color-brand-dark-teal) 100%);
    color: var(--color-brand-white);
}
.pv-paket-card--featured .pv-paket-title,
.pv-paket-card--featured .pv-paket-list li { color: var(--color-brand-white); }
.pv-paket-image {
    width: 100%;
    aspect-ratio: 16 / 10;
    border-radius: 1em;
    overflow: hidden;
    background: var(--color-brand-white);
    margin-bottom: 1.2em;
}
.pv-paket-card--featured .pv-paket-image { background: rgba(255,255,255,0.08); }
.pv-paket-image img { width: 100%; height: 100%; object-fit: contain; padding: 1em; box-sizing: border-box; }
.pv-paket-title {
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-bold);
    font-size: 1.3em;
    margin: 0 0 0.8em;
    color: var(--pv-text-dark);
}
.pv-paket-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.6em;
    flex-grow: 1;
    font-family: var(--font-family-primary);
    font-size: 0.95em;
}
.pv-paket-list li {
    padding: 0.4em 0 0.4em 1.4em;
    position: relative;
    color: var(--pv-text-muted);
}
.pv-paket-card--featured .pv-paket-list li { color: rgba(255,255,255,0.85); }
.pv-paket-list li::before {
    content: '✓';
    position: absolute;
    left: 0;
    color: var(--color-brand-red);
    font-weight: var(--font-weight-bold);
}
.pv-paket-card--featured .pv-paket-list li::before { color: var(--color-brand-white); }
.pv-paket-cta {
    align-self: flex-start;
    background: var(--color-brand-dark-teal);
    color: var(--color-brand-white);
    text-decoration: none;
    padding: 0.85em 1.6em;
    border-radius: 50px;
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-bold);
    font-size: 0.95em;
}
.pv-paket-card--featured .pv-paket-cta { background: var(--color-brand-red); }

/* =========================================
   3. Kundenmeinungen — swipe carousel
   ========================================= */
.pv-meinungen {
    background: #ffffff;
    padding: var(--pv-section-py) 0;
    overflow-x: clip;
}
.pv-meinungen .pv-section-title { margin-bottom: 0.6em; font-size: 2em; }

.pv-meinungen-trust {
    display: inline-flex;
    align-items: center;
    gap: 0.6em;
    margin: 0 0 1.4em 0;
    padding: 0.5em 1em;
    background: var(--color-brand-white);
    border: 1px solid var(--pv-border);
    border-radius: 50px;
    text-decoration: none;
    color: var(--pv-text-dark);
    font-family: var(--font-family-primary);
    font-size: 0.95em;
    line-height: 1;
}
.pv-meinungen-trust-g {
    width: 1.3em;
    height: 1.3em;
    flex: 0 0 auto;
}
.pv-meinungen-trust-stars {
    color: #fbbf24;
    letter-spacing: 0.1em;
    line-height: 1;
}
.pv-meinungen-trust-label {
    font-weight: var(--font-weight-bold);
}

/* Carousel shared with All-in-One */
.pv-carousel {
    position: relative;
    width: 100svw;
    max-width: 100svw;
    margin-left: calc(50% - 50svw);
    box-sizing: border-box;
}
.pv-carousel-track {
    display: flex;
    gap: 1.2em;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    scrollbar-width: none;
    padding: 0 var(--pv-section-px) 0.5em;
    box-sizing: border-box;
}
.pv-carousel-track::-webkit-scrollbar { display: none; }
.pv-carousel-spacer {
    flex: 0 0 20svw;
    opacity: 0;
    scroll-snap-align: start;
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 1em;
}
.pv-carousel-nav {
    display: flex;
    justify-content: center;
    gap: 0.8em;
    margin-top: 1.5em;
    padding: 0 var(--pv-section-px);
}
.pv-carousel-btn {
    width: 2.75em;
    height: 2.75em;
    border-radius: 50%;
    border: 1px solid var(--color-brand-dark-teal);
    background: var(--color-brand-white);
    color: var(--color-brand-dark-teal);
    font-size: 1.1em;
    line-height: 1;
    cursor: pointer;
    font-family: var(--font-family-primary);
}
.pv-carousel-btn:disabled { opacity: 0.35; cursor: not-allowed; }

.pv-marquee {
    width: 100svw;
    max-width: 100svw;
    margin-left: calc(50% - 50svw);
    overflow: hidden;
    box-sizing: border-box;
}
.pv-meinungen-track {
    display: flex;
    gap: 1em;
    width: max-content;
    padding-left: 17.5svw;
    padding-right: 17.5svw;
    will-change: transform;
}
.pv-meinungen-controls {
    display: flex;
    justify-content: center;
    gap: 0.8em;
    margin-top: 1.5em;
}
.pv-meinungen-btn {
    width: 2.75em;
    height: 2.75em;
    border-radius: 50%;
    border: 1px solid var(--color-brand-dark-teal);
    background: var(--color-brand-white);
    color: var(--color-brand-dark-teal);
    font-size: 1.4em;
    line-height: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    font-family: var(--font-family-primary);
    padding: 0;
}
.pv-meinungen-btn:disabled { opacity: 0.35; cursor: not-allowed; }
.pv-meinung-card {
    flex: 0 0 65svw;
    background: transparent;
    display: flex;
    flex-direction: column;
    gap: 0.8em;
    opacity: 0.75;
    transition: opacity 0.55s ease;
}
.pv-meinung-card.is-active {
    opacity: 1;
}
.pv-meinung-stars {
    color: #fbbf24;
    font-size: 1em;
    letter-spacing: 0.15em;
    line-height: 1;
}
.pv-meinung-image {
    width: 100%;
    aspect-ratio: 1 / 1;
    background: var(--pv-bg-tint);
    overflow: hidden;
    border-radius: 2em;
}
.pv-meinung-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pv-meinung-quote {
    margin: 0;
    font-family: var(--font-family-primary);
    font-size: 1em;
    line-height: 1.45;
    color: var(--pv-text-dark);
}
.pv-meinung-author {
    margin: 0;
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-bold);
    font-size: 0.9em;
    color: var(--pv-text-muted);
}

/* =========================================
   4. Split panels — stacked
   ========================================= */
.pv-split { background: var(--color-brand-white); }
.pv-split-row,
.pv-split-row--reverse {
    display: flex;
    flex-direction: column;
}
.pv-split-row--reverse { flex-direction: column-reverse; }

.pv-split-text {
    padding: 3em var(--pv-section-px);
    box-sizing: border-box;
    background: var(--pv-bg-soft);
    display: flex;
    flex-direction: column;
    justify-content: center;
}
.pv-split-eyebrow {
    color: var(--color-brand-red);
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-bold);
    font-size: 0.85em;
    letter-spacing: 0.05em;
    margin-bottom: 0.8em;
    text-transform: uppercase;
}
.pv-split-title {
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-bold);
    font-size: 1.7em;
    line-height: 1.15;
    margin: 0 0 0.8em;
    color: var(--pv-text-dark);
}
.pv-split-text p {
    font-family: var(--font-family-primary);
    font-size: 1em;
    line-height: 1.6;
    color: var(--pv-text-muted);
    margin: 0 0 1.6em;
}
.pv-split-cta {
    align-self: flex-start;
    background: var(--color-brand-dark-teal);
    color: var(--color-brand-white);
    text-decoration: none;
    padding: 0.9em 1.8em;
    border-radius: 50px;
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-bold);
    font-size: 0.95em;
}
.pv-split-image {
    width: 100%;
    height: 22em;
    background: linear-gradient(135deg, var(--color-brand-light-teal) 0%, var(--color-brand-cyan) 100%);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}
.pv-split-image img { width: 100%; height: 100%; object-fit: cover; display: block; }

/* =========================================
   5. Prozess — image on top, content below
   ========================================= */
.pv-prozess {
    background: var(--color-brand-dark-teal);
    color: var(--color-brand-white);
    padding: 0;
}
.pv-prozess .pv-section-inner { padding: 0; }
.pv-prozess-grid {
    display: flex;
    flex-direction: column;
}
.pv-prozess-image {
    width: 100%;
    height: 22em;
    overflow: hidden;
}
.pv-prozess-image img { width: 100%; height: 100%; object-fit: cover; display: block; }
.pv-prozess-content {
    padding: var(--pv-section-py) var(--pv-section-px);
    display: flex;
    flex-direction: column;
}
.pv-prozess-content .pv-section-title { margin-bottom: 1em; }
.pv-prozess-step {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.12);
    border-radius: 1em;
    padding: 1.2em 1.4em;
    margin-bottom: 0.8em;
}
.pv-prozess-step[open] { background: rgba(255,255,255,0.08); }
.pv-prozess-step summary {
    list-style: none;
    cursor: pointer;
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-bold);
    font-size: 1.05em;
    display: flex;
    align-items: center;
    gap: 0.6em;
    color: var(--color-brand-white);
}
.pv-prozess-step summary::-webkit-details-marker { display: none; }
.pv-prozess-step summary::after {
    content: '+';
    margin-left: auto;
    font-size: 1.4em;
    line-height: 1;
    color: var(--color-brand-white);
}
.pv-prozess-step[open] summary::after { content: '−'; }
.pv-prozess-num { color: var(--color-brand-red); }
.pv-prozess-step p {
    margin: 1em 0;
    color: rgba(255,255,255,0.75);
    font-family: var(--font-family-primary);
    font-size: 0.95em;
    line-height: 1.55;
}

.pv-prozess-step .accordion-body {
    overflow: hidden;
}
.pv-prozess-cta {
    display: inline-block;
    background: var(--color-brand-red);
    color: var(--color-brand-white);
    text-decoration: none;
    padding: 0.7em 1.4em;
    border-radius: 50px;
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-bold);
    font-size: 0.9em;
}

/* =========================================
   6. All-in-One — swipe carousel
   ========================================= */
.pv-allinone {
    background: var(--pv-bg-soft);
    padding: var(--pv-section-py) 0;
    overflow-x: clip;
}
.pv-allinone .pv-section-title { margin-bottom: 1.4em; font-size: 2em; }
.pv-allinone-grid { gap: 1.2em; }
.pv-allinone-card {
    flex: 0 0 62svw;
    scroll-snap-align: start;
    box-sizing: border-box;
    background: transparent;
    text-decoration: none;
    color: var(--pv-text-dark);
    display: flex;
    flex-direction: column;
    gap: 1em;
}
.pv-allinone-image {
    aspect-ratio: 4 / 5;
    background: var(--pv-bg-tint);
    border-radius: 0.6em;
    overflow: hidden;
    margin: 0;
    padding: 0 2em;
}
.pv-allinone-image img { width: 100%; height: 100%; object-fit: contain; display: block; object-position: bottom;}
.pv-allinone-image--video {
    background: #000;
    aspect-ratio: 9 / 16;
    padding: 0;
    position: relative;
    cursor: pointer;
}
.pv-allinone-image--video video { width: 100%; height: 100%; object-fit: cover; display: block; pointer-events: none; }
.pv-allinone-image--video::after {
    content: "";
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.5);
    pointer-events: none;
    z-index: 1;
}
.pv-video-play {
    position: absolute;
    top: 50%; left: 50%;
    width: 3.6em; height: 3.6em;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: var(--color-brand-dark-teal);
    border: none;
    box-shadow: 0 0.4em 1.2em rgba(0, 0, 0, 0.45);
    display: flex; align-items: center; justify-content: center;
    transition: transform 0.25s ease, background-color 0.25s ease;
    pointer-events: none;
    z-index: 2;
}
.pv-allinone-image--video:hover .pv-video-play,
.pv-allinone-image--video:focus-visible .pv-video-play,
.pv-allinone-image--video:active .pv-video-play {
    transform: translate(-50%, -50%) scale(1.18);
    background: var(--color-brand-red);
}
.pv-video-play svg { width: 65%; height: 65%; display: block; transform: translateX(3%); }

.pv-video-modal {
    position: fixed; inset: 0;
    background: rgba(0, 0, 0, 0.92);
    z-index: 9999;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 1em;
}
.pv-video-modal.is-open { display: flex; }
.pv-video-modal__video {
    max-width: 95vw;
    max-height: 85vh;
    width: auto;
    height: auto;
    display: block;
    background: #000;
}
.pv-video-modal__close {
    position: absolute;
    top: 0.6em; right: 0.8em;
    background: transparent;
    border: 0;
    color: #fff;
    font-size: 2.4em;
    line-height: 1;
    cursor: pointer;
    padding: 0.1em 0.4em;
}
.pv-allinone-title {
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-bold);
    font-size: 1.4em;
    line-height: 1.15;
    margin: 0;
}
.pv-allinone-card p {
    font-family: var(--font-family-primary);
    font-size: 1em;
    color: var(--pv-text-dark);
    line-height: 1.4;
    margin: 0;
    flex-grow: 1;
}
.pv-allinone-link {
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-bold);
    font-size: 1em;
    color: var(--color-brand-red);
    margin-top: auto;
}
/* Only 3 products → no nav arrows needed */
.pv-allinone .pv-carousel-nav { display: flex; }

/* =========================================
   7. FAQ — single column
   ========================================= */
.pv-faq {
    background: var(--color-brand-white);
    padding: var(--pv-section-py) 0;
}
.pv-faq-grid {
    display: flex;
    flex-direction: column;
    gap: 0.6em;
}
.pv-faq-col {
    display: flex;
    flex-direction: column;
    gap: 0.6em;
}
.pv-faq-item {
    border-bottom: 1px solid var(--pv-border);
    padding: 1em 0.2em;
}
.pv-faq-item summary {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-family: var(--font-family-primary);
    font-weight: var(--font-weight-bold);
    font-size: 1em;
    color: var(--pv-text-dark);
    gap: 1em;
}
.pv-faq-item summary::-webkit-details-marker { display: none; }
.pv-faq-item summary::after {
    content: '+';
    font-size: 1.4em;
    color: var(--pv-text-muted);
}
.pv-faq-item[open] summary::after { content: '−'; }
.pv-faq-item p {
    margin: 0.9em 0 0;
    color: var(--pv-text-muted);
    font-family: var(--font-family-primary);
    font-size: 0.95em;
    line-height: 1.55;
}

.pv-faq-item .accordion-body {
    overflow: hidden;
}

/* =========================================
   8. Final CTA — Termin wizard
   ========================================= */
.pv-pulse-detail {
    position: relative;
    width: 100%;
    /* background-image: url('../Assets/image-termin.jpeg'); */
    background-color: var(--color-brand-dark-teal);
    background-size: cover;
    background-position: center;
    overflow: hidden;
    font-size: calc(16 * var(--frame-w) / 1644);
}
.pv-pulse-detail::before {
    content: '';
    position: absolute;
    inset: 0;
    background-color: var(--pv-overlay-teal);
    pointer-events: none;
    z-index: 1;
}
.pv-pulse-detail .pulse-detail-inner {
    position: relative;
    z-index: 2;
    padding: 4em 1.5em;
    display: flex;
    flex-direction: column;
    gap: 1.5em;
    align-items: stretch;
}
.pv-pulse-detail .pulse-detail-cta {
    width: 100%;
    display: flex;
    justify-content: center;
}
.pv-pulse-detail .pulse-detail-cta .termin-stage {
    width: 100%;
    padding: 0;
    min-height: 0;
}

/* Experts card — stacked below the termin wizard on mobile */
.pv-pulse-detail .pulse-experts {
    display: flex;
    flex-direction: column;
    background: var(--color-brand-dark-teal);
    border-radius: 1.5em;
    padding: 1em 1em 0.5em;
    color: #fff;
    font-family: var(--font-family-primary);
    font-size: 3em;
    gap: 0.75em;
    width: 100%;
}
.pv-pulse-detail .pulse-experts-card {
    background: #fff;
    color: #1a2c2e;
    border-radius: 2em;
    padding: 1.75em 1.25em;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 0.6em;
}
.pv-pulse-detail .pulse-experts-portraits { display: flex; justify-content: center; align-items: center; }
.pv-pulse-detail .pulse-experts-portrait {
    width: 5em;
    height: 5em;
    border-radius: 50%;
    border: 3px solid var(--color-brand-dark-teal);
    background: #eee;
    margin: 0 -0.5em;
    overflow: hidden;
    display: block;
    flex: 0 0 auto;
}
.pv-pulse-detail .pulse-experts-portrait img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    transform: scale(1.25);
    display: block;
}
.pv-pulse-detail .pulse-experts-portraits .pulse-experts-portrait:nth-child(2) { z-index: 1; transform: translateY(-0.3em); }
.pv-pulse-detail .pulse-experts-names {
    font-weight: 700;
    color: var(--color-brand-dark-teal);
    font-size: 1.4em;
    margin: 0.25em 0 0;
}
.pv-pulse-detail .pulse-experts-names span { color: var(--color-brand-red); margin: 0 0.2em; font-weight: 400; }
.pv-pulse-detail .pulse-experts-role {
    font-style: italic;
    font-size: 1em;
    color: #4a4a4a;
    margin: 0;
}
.pv-pulse-detail .pulse-experts-pill {
    background: #1a1a1a;
    color: #fff;
    font-weight: 700;
    font-size: 0.9em;
    letter-spacing: 0.04em;
    padding: 0.75em 1.4em;
    border-radius: 50px;
    display: inline-block;
    margin: 0.5em 0 0.25em;
    text-align: center;
}
.pv-pulse-detail .pulse-experts-body {
    font-size: 1em;
    line-height: 1.5;
    color: #333;
    margin: 0;
}
.pv-pulse-detail .pulse-experts-body strong { color: #1a1a1a; }
.pv-pulse-detail .pulse-experts-body em strong { color: var(--color-brand-dark-teal); font-style: italic; }
.pv-pulse-detail .pulse-experts-rating {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.3em;
    margin-top: 0.5em;
}
.pv-pulse-detail .pulse-experts-stars {
    color: var(--color-brand-dark-teal);
    font-size: 1.3em;
    letter-spacing: 0.15em;
}
.pv-pulse-detail .pulse-experts-rating p {
    font-size: 0.95em;
    color: #333;
    margin: 0;
    line-height: 1.35;
}
.pv-pulse-detail .pulse-experts-trust {
    list-style: none;
    padding: 0.5em 0.75em 0.75em;
    margin: 0;
    color: #fff;
    font-size: 0.85em;
    display: flex;
    flex-direction: column;
    gap: 0.45em;
    text-align: center;
}
.pv-pulse-detail .pulse-experts-trust li::before {
    content: "✓  ";
    color: #fff;
    font-weight: 700;
}

