/* ═══════════════════════════════════════════════════
   PM Landing Page — Frontend Styles v1.5
   All rules scoped under .pmlp to avoid theme conflicts
   ═══════════════════════════════════════════════════ */

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

.pmlp {
    --musik-accent: #c5a55a;
    --musik-accent-light: #d4bc7c;
    --musik-bg: #0a0908;

    --politik-accent: #46962b;
    --politik-tanne: #005437;
    --politik-sonne: #e8c840;
    --politik-bg: #002a1b;

    --medizin-accent: #1a5276;
    --medizin-accent-light: #2980b9;
    --medizin-bg: #0f141e;

    --outreach-accent: #c0392b;
    --outreach-accent-light: #e74c3c;
    --outreach-bg: #1a0a0a;

    position: fixed;
    inset: 0;
    z-index: 99999;
    font-family: 'Inter', -apple-system, sans-serif;
    background: #050505;
    overflow: hidden;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    font-size: 16px;
    line-height: 1.5;
}

/* ═══ NAME OVERLAY ═══ */
.pmlp .pmlp-name-overlay {
    position: absolute;
    top: 0; left: 0; right: 0;
    z-index: 100;
    text-align: center;
    padding: 2rem 1rem 1.5rem;
    pointer-events: none;
    background: linear-gradient(to bottom, rgba(5,5,5,0.7) 0%, transparent 100%);
    opacity: 0;
    animation: pmlp-fadeIn 1s 0.8s ease forwards;
}

.pmlp .pmlp-name-overlay h1 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(1.3rem, 3vw, 2rem);
    letter-spacing: 0.25em;
    text-transform: uppercase;
    margin: 0; padding: 0; border: 0;
    color: transparent;
    background: linear-gradient(
        90deg,
        rgba(245,241,235,0.9) 0%,
        rgba(245,241,235,0.9) 44%,
        rgba(235,228,210,1) 47%,
        rgba(255,253,248,1) 50%,
        rgba(235,228,210,1) 53%,
        rgba(245,241,235,0.9) 56%,
        rgba(245,241,235,0.9) 100%
    );
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: pmlp-textShine 18s 3s linear infinite;
}

.pmlp .pmlp-name-overlay .tagline {
    font-family: 'Inter', sans-serif;
    font-weight: 300;
    font-size: 0.65rem;
    letter-spacing: 0.4em;
    text-transform: uppercase;
    margin-top: 0.4rem;
    color: transparent;
    background: linear-gradient(
        90deg,
        rgba(245,241,235,0.45) 0%,
        rgba(245,241,235,0.45) 44%,
        rgba(235,228,210,0.7) 47%,
        rgba(255,253,248,0.8) 50%,
        rgba(235,228,210,0.7) 53%,
        rgba(245,241,235,0.45) 56%,
        rgba(245,241,235,0.45) 100%
    );
    background-size: 300% 100%;
    -webkit-background-clip: text;
    background-clip: text;
    animation: pmlp-textShine 23s 4s linear infinite;
}

/* ═══ LANGUAGE TOGGLE ═══ */
.pmlp .pmlp-lang-toggle {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px;
    margin-top: 0.6rem;
    pointer-events: auto;
    opacity: 0;
    animation: pmlp-fadeIn 0.8s 1.6s ease forwards;
}
.pmlp .pmlp-lang {
    font-family: 'Inter', sans-serif;
    font-size: 1rem;
    font-weight: 600;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: rgba(245,241,235,0.3);
    text-decoration: none;
    padding: 3px 6px;
    border-radius: 3px;
    transition: color 0.3s ease, background 0.3s ease;
}
.pmlp .pmlp-lang:hover {
    color: rgba(245,241,235,0.7);
}
.pmlp .pmlp-lang.active {
    color: rgba(245,241,235,0.85);
    background: rgba(255,255,255,0.1);
}
.pmlp .pmlp-lang-sep {
    color: rgba(245,241,235,0.2);
    font-size: 0.55rem;
    user-select: none;
}

/* ═══ PANELS CONTAINER ═══ */
.pmlp .pmlp-panels {
    display: flex;
    height: 100%;
    width: 100%;
}

/* ═══ INDIVIDUAL PANEL ═══ */
.pmlp .panel {
    position: relative;
    flex: 1;
    overflow: hidden;
    cursor: pointer;
    transition: flex 0.7s cubic-bezier(0.25, 0, 0.15, 1);
    opacity: 0;
    animation: pmlp-panelEnter 1s ease forwards;
}

.pmlp .panel:nth-child(1) { animation-delay: 0.2s; }
.pmlp .panel:nth-child(2) { animation-delay: 0.35s; }
.pmlp .panel:nth-child(3) { animation-delay: 0.5s; }
.pmlp .panel:nth-child(4) { animation-delay: 0.65s; }

.pmlp .pmlp-panels:hover .panel         { flex: 1; }
.pmlp .pmlp-panels:hover .panel:hover   { flex: 8; }

/* Panel background — parallax-ready via JS transform */
.pmlp .panel-bg {
    position: absolute;
    inset: -20px;                /* oversized for parallax range */
    transition: transform 0.7s cubic-bezier(0.25, 0, 0.15, 1);
    will-change: transform;
    background-size: cover;
    background-position: center center;
}
.pmlp .panel:hover .panel-bg {
    transform: scale(1.05);
}

/* Dividers */
.pmlp .panel::after {
    content: '';
    position: absolute;
    top: 0; right: 0;
    width: 1px;
    height: 100%;
    background: rgba(255,255,255,0.06);
    z-index: 10;
}
.pmlp .panel:last-child::after { display: none; }

/* ═══ VERTICAL LABEL ═══ */
.pmlp .panel-label {
    position: absolute;
    top: 0; bottom: 0;
    left: 1.2rem;
    display: flex;
    align-items: center;
    z-index: 5;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
    transition: transform 0.6s cubic-bezier(0.4, 0, 0.15, 1);
}
.pmlp .panel:hover .panel-label {
    transform: rotate(180deg) translateY(-60%);
}
.pmlp .panel-label span {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 300;
    font-size: clamp(1.6rem, 3vw, 2.6rem);
    letter-spacing: 0.2em;
    text-transform: uppercase;
    padding: 1rem 0.55rem;
    background: rgba(0,0,0,0.35);
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
    border-radius: 3px;
}

/* ═══ PANEL CONTENT (hover) ═══ */
.pmlp .panel-content {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    padding: 3rem;
    padding-top: 5rem;
    z-index: 5;
    transform: translateY(40px);
    opacity: 0;
    transition: all 0.6s cubic-bezier(0.25, 0, 0.15, 1);
    transition-delay: 0.05s;
}
.pmlp .panel-content::before {
    content: '';
    position: absolute;
    bottom: 0; left: 0; right: 0;
    height: 120%;
    background: linear-gradient(to top, rgba(0,0,0,0.6) 0%, rgba(0,0,0,0.3) 50%, transparent 100%);
    z-index: -1;
    pointer-events: none;
}
.pmlp .panel:hover .panel-content {
    transform: translateY(0);
    opacity: 1;
    transition-delay: 0.15s;
}

.pmlp .panel-content .role {
    font-weight: 500;
    font-size: 0.65rem;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.pmlp .panel-content h2 {
    font-family: 'Cormorant Garamond', serif;
    font-weight: 400;
    font-size: clamp(1.6rem, 3vw, 2.4rem);
    line-height: 1.25;
    margin-bottom: 1rem;
    letter-spacing: 0.02em;
    border: 0;
    padding: 0;
}

.pmlp .panel-content p {
    font-weight: 300;
    font-size: 0.82rem;
    line-height: 1.75;
    max-width: 420px;
    margin-bottom: 2rem;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.5s ease;
    transition-delay: 0.1s;
}
.pmlp .panel:hover .panel-content p {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.3s;
}

/* ═══ PANEL ACTIONS (buttons row) ═══ */
.pmlp .panel-actions {
    display: flex;
    align-items: center;
    gap: 1.2rem;
    flex-wrap: wrap;
}

/* ═══ CTA BUTTON ═══ */
.pmlp .panel-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.85rem 2rem;
    font-family: 'Inter', sans-serif;
    font-size: 0.72rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    text-decoration: none;
    border: 1px solid;
    transition: all 0.4s ease;
    opacity: 0;
    transform: translateY(15px);
}
.pmlp .panel:hover .panel-cta {
    opacity: 1;
    transform: translateY(0);
    transition-delay: 0.4s;
}
.pmlp .panel-cta svg {
    width: 16px;
    height: 16px;
    stroke-width: 2;
    fill: none;
    transition: transform 0.3s ease;
}
.pmlp .panel-cta:hover svg {
    transform: translateX(4px);
}

/* Button icon (uploaded via admin) */
.pmlp .panel-btn-icon {
    width: 18px;
    height: 18px;
    object-fit: contain;
    flex-shrink: 0;
    vertical-align: middle;
    filter: brightness(0) invert(1);
    transition: filter 0.4s ease;
}
.pmlp .panel-cta:hover .panel-btn-icon {
    filter: brightness(0) invert(0.1);
}

/* Secondary link */
.pmlp .panel-link-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-decoration: none;
    border-bottom: 1px solid;
    padding-bottom: 2px;
    opacity: 0;
    transform: translateY(15px);
    transition: all 0.4s ease;
}
.pmlp .panel:hover .panel-link-secondary {
    opacity: 0.7;
    transform: translateY(0);
    transition-delay: 0.48s;
}
.pmlp .panel-link-secondary:hover { opacity: 1 !important; }
.pmlp .panel-link-secondary .panel-btn-icon {
    width: 14px;
    height: 14px;
}


/* ═══════════════════════════════════════
   PANEL THEMES
   ═══════════════════════════════════════ */

/* — MUSIK — */
.pmlp .panel--musik .panel-bg { background: var(--musik-bg); }
.pmlp .panel--musik .panel-label span {
    color: var(--musik-accent-light);
    text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}
.pmlp .panel--musik .panel-content .role { color: var(--musik-accent); }
.pmlp .panel--musik .panel-content h2 {
    color: #f5f1eb;
    text-shadow: 0 2px 15px rgba(0,0,0,0.5);
}
.pmlp .panel--musik .panel-content p { color: rgba(245,241,235,0.75); }
.pmlp .panel--musik .panel-cta {
    color: var(--musik-accent);
    border-color: rgba(197,165,90,0.5);
    background: rgba(10,9,8,0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.pmlp .panel--musik .panel-cta:hover {
    background: var(--musik-accent);
    color: var(--musik-bg);
    border-color: var(--musik-accent);
}
.pmlp .panel--musik .panel-cta svg { stroke: var(--musik-accent); }
.pmlp .panel--musik .panel-cta:hover svg { stroke: var(--musik-bg); }
.pmlp .panel--musik .panel-link-secondary {
    color: rgba(245,241,235,0.6);
    border-color: rgba(245,241,235,0.4);
}

/* — POLITIK — */
.pmlp .panel--politik .panel-bg { background: var(--politik-bg); }
.pmlp .panel--politik .panel-label span {
    color: var(--politik-accent);
    text-shadow: 0 2px 20px rgba(0,20,10,0.7);
}
.pmlp .panel--politik .panel-content .role { color: var(--politik-sonne); }
.pmlp .panel--politik .panel-content h2 {
    color: #eaf2e8;
    text-shadow: 0 2px 15px rgba(0,20,10,0.5);
}
.pmlp .panel--politik .panel-content p { color: rgba(234,242,232,0.75); }
.pmlp .panel--politik .panel-cta {
    color: #eaf2e8;
    border-color: rgba(70,150,43,0.55);
    background: rgba(0,42,27,0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.pmlp .panel--politik .panel-cta:hover {
    background: var(--politik-accent);
    color: #fff;
    border-color: var(--politik-accent);
}
.pmlp .panel--politik .panel-cta svg { stroke: var(--politik-accent); }
.pmlp .panel--politik .panel-cta:hover svg { stroke: #fff; }
.pmlp .panel--politik .panel-link-secondary {
    color: rgba(234,242,232,0.6);
    border-color: rgba(234,242,232,0.4);
}

/* — MEDIZIN — */
.pmlp .panel--medizin .panel-bg { background: var(--medizin-bg); }
.pmlp .panel--medizin .panel-label span {
    color: rgba(180,210,240,0.9);
    text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}
.pmlp .panel--medizin .panel-content .role { color: rgba(120,180,230,0.9); }
.pmlp .panel--medizin .panel-content h2 {
    color: rgba(240,245,250,0.95);
    text-shadow: 0 2px 15px rgba(0,0,0,0.5);
}
.pmlp .panel--medizin .panel-content p { color: rgba(180,200,220,0.75); }
.pmlp .panel--medizin .panel-cta {
    color: rgba(180,210,240,0.95);
    border-color: rgba(120,180,230,0.4);
    background: rgba(15,20,30,0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.pmlp .panel--medizin .panel-cta:hover {
    background: rgba(26,82,118,0.9);
    color: #fff;
    border-color: rgba(26,82,118,0.9);
}
.pmlp .panel--medizin .panel-cta svg { stroke: rgba(120,180,230,0.9); }
.pmlp .panel--medizin .panel-cta:hover svg { stroke: #fff; }
.pmlp .panel--medizin .panel-link-secondary {
    color: rgba(180,200,220,0.6);
    border-color: rgba(180,200,220,0.4);
}

/* — OUTREACH — */
.pmlp .panel--outreach .panel-bg { background: var(--outreach-bg); }
.pmlp .panel--outreach .panel-label span {
    color: var(--outreach-accent-light);
    text-shadow: 0 2px 20px rgba(0,0,0,0.6);
}
.pmlp .panel--outreach .panel-content .role { color: var(--outreach-accent-light); }
.pmlp .panel--outreach .panel-content h2 {
    color: rgba(250,240,238,0.95);
    text-shadow: 0 2px 15px rgba(0,0,0,0.5);
}
.pmlp .panel--outreach .panel-content p { color: rgba(240,220,215,0.75); }
.pmlp .panel--outreach .panel-cta {
    color: var(--outreach-accent-light);
    border-color: rgba(192,57,43,0.5);
    background: rgba(26,10,10,0.4);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}
.pmlp .panel--outreach .panel-cta:hover {
    background: var(--outreach-accent);
    color: #fff;
    border-color: var(--outreach-accent);
}
.pmlp .panel--outreach .panel-cta svg { stroke: var(--outreach-accent-light); }
.pmlp .panel--outreach .panel-cta:hover svg { stroke: #fff; }
.pmlp .panel--outreach .panel-link-secondary {
    color: rgba(240,220,215,0.6);
    border-color: rgba(240,220,215,0.4);
}


/* ═══ FOOTER ═══ */
.pmlp .pmlp-footer {
    position: absolute;
    bottom: 0; left: 0; right: 0;
    z-index: 100;
    text-align: center;
    padding: 0.8rem 1rem;
    pointer-events: auto;
    mix-blend-mode: difference;
}
.pmlp .pmlp-footer p {
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    color: rgba(245,241,235,0.35);
    text-transform: uppercase;
    margin: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5em;
}
.pmlp .pmlp-footer__sep {
    opacity: 0.5;
}
.pmlp .pmlp-footer__link {
    color: rgba(245,241,235,0.35);
    text-decoration: none;
    transition: color 0.3s ease, text-shadow 0.3s ease;
    letter-spacing: 0.2em;
}
.pmlp .pmlp-footer__link:hover {
    color: rgba(245,241,235,0.9);
    text-shadow: 0 0 8px rgba(245,241,235,0.3);
}

/* ═══ ANIMATIONS ═══ */
@keyframes pmlp-panelEnter {
    from { opacity: 0; }
    to   { opacity: 1; }
}
@keyframes pmlp-fadeIn {
    to { opacity: 1; }
}
@keyframes pmlp-textShine {
    0%  { background-position: 0% center; }
    10% { background-position: 100% center; }
    100%{ background-position: 100% center; }
}

/* ═══ TOUCH DEVICES (class added by JS — works everywhere) ═══ */

/* Desktop: disable :hover when touch is detected */
.pmlp.pmlp--touch .pmlp-panels:hover .panel            { flex: 1; }
.pmlp.pmlp--touch .pmlp-panels:hover .panel:hover      { flex: 1; }
.pmlp.pmlp--touch .panel:hover .panel-bg                { transform: none; }
.pmlp.pmlp--touch .panel:hover .panel-label             { transform: rotate(180deg); }
.pmlp.pmlp--touch .panel:hover .panel-content           { transform: translateY(40px); opacity: 0; }
.pmlp.pmlp--touch .panel:hover .panel-content p         { opacity: 0; transform: translateY(15px); }
.pmlp.pmlp--touch .panel:hover .panel-cta               { opacity: 0; transform: translateY(15px); }
.pmlp.pmlp--touch .panel:hover .panel-link-secondary    { opacity: 0; transform: translateY(15px); }

/* Touch: active panel expands */
.pmlp.pmlp--touch .panel.active                         { flex: 8 !important; }
.pmlp.pmlp--touch .pmlp-panels .panel:not(.active)      { flex: 1 !important; }
.pmlp.pmlp--touch .panel.active .panel-bg               { transform: scale(1.05); }
.pmlp.pmlp--touch .panel.active .panel-label            { transform: rotate(180deg) translateY(-60%); }
.pmlp.pmlp--touch .panel.active .panel-content          { transform: translateY(0); opacity: 1; }
.pmlp.pmlp--touch .panel.active .panel-content p        { opacity: 1; transform: translateY(0); transition-delay: 0.15s; }
.pmlp.pmlp--touch .panel.active .panel-cta              { opacity: 1; transform: translateY(0); transition-delay: 0.2s; }
.pmlp.pmlp--touch .panel.active .panel-link-secondary   { opacity: 0.7; transform: translateY(0); transition-delay: 0.25s; }


/* ═══ MOBILE — Full-card vertical scroll ═══ */
@media (max-width: 800px) {
    .pmlp {
        position: fixed;
        overflow: hidden;
        height: calc(var(--vh, 1vh) * 100);
    }

    /* ── Snap-scroll container ── */
    .pmlp .pmlp-panels {
        flex-direction: column;
        height: 100%;
        overflow-y: auto;
        scroll-snap-type: y mandatory;
        -webkit-overflow-scrolling: touch;
    }

    /* ── Each panel = full viewport card ── */
    .pmlp .panel {
        flex: none !important;
        width: 100%;
        height: calc(var(--vh, 1vh) * 100);
        min-height: calc(var(--vh, 1vh) * 100);
        scroll-snap-align: start;
        transition: none;
    }

    /* Dividers: horizontal line between panels */
    .pmlp .panel::after {
        width: 100%; height: 1px;
        top: auto; bottom: 0; right: auto;
    }

    /* ── Name overlay: fixed at top over scroll ── */
    .pmlp .pmlp-name-overlay {
        position: fixed;
        padding: 1rem 1rem 0.8rem;
        background: linear-gradient(to bottom, rgba(5,5,5,0.85) 0%, rgba(5,5,5,0.4) 70%, transparent 100%);
        z-index: 200;
    }
    .pmlp .pmlp-name-overlay h1 {
        font-size: 0.95rem;
        letter-spacing: 0.2em;
    }
    .pmlp .pmlp-name-overlay .tagline {
        font-size: 0.55rem;
        margin-top: 0.2rem;
    }
    .pmlp .pmlp-lang-toggle {
        margin-top: 0.4rem;
    }
    .pmlp .pmlp-lang {
        font-size: 0.55rem;
        padding: 4px 8px;
    }

    /* ── Disable parallax on mobile ── */
    .pmlp .panel-bg {
        inset: 0;
    }

    /* ── Label: always visible, centered ── */
    .pmlp .panel-label {
        top: 0; bottom: 0; left: 0; right: 0;
        writing-mode: horizontal-tb;
        transform: none !important;
        justify-content: center;
        transition: opacity 0.4s ease, transform 0.4s ease;
    }
    .pmlp .panel-label span {
        font-size: clamp(1.8rem, 6vw, 2.8rem);
        background: rgba(0,0,0,0.25);
        backdrop-filter: blur(4px);
        -webkit-backdrop-filter: blur(4px);
        padding: 0.6rem 1.5rem;
        border-radius: 4px;
    }

    /* ── Content: hidden by default, slides up on .active ── */
    .pmlp .panel-content {
        padding: 1.5rem 1.8rem 2.5rem;
        padding-top: 0;
        transform: translateY(20px);
        opacity: 0;
        transition: opacity 0.45s ease, transform 0.45s ease;
        pointer-events: none;
    }
    .pmlp .panel-content::before {
        height: 140%;
    }
    .pmlp .panel-content h2 {
        font-size: clamp(1.3rem, 5vw, 1.7rem);
    }
    .pmlp .panel-content p {
        font-size: 0.8rem;
        line-height: 1.7;
        max-width: none;
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.35s ease 0.1s, transform 0.35s ease 0.1s;
    }

    /* ── Actions ── */
    .pmlp .panel-cta {
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.3s ease, transform 0.3s ease, background 0.3s ease, color 0.3s ease, border-color 0.3s ease;
        padding: 0.75rem 1.6rem;
        font-size: 0.68rem;
    }
    .pmlp .panel-link-secondary {
        opacity: 0;
        transform: translateY(10px);
        transition: opacity 0.3s ease, transform 0.3s ease;
    }

    /* ── ACTIVE STATE: panel tapped open ── */
    .pmlp .panel.active .panel-label {
        opacity: 0;
        transform: translateY(-30px) !important;
        pointer-events: none;
    }

    .pmlp .panel.active .panel-content {
        transform: translateY(0);
        opacity: 1;
        pointer-events: auto;
    }

    .pmlp .panel.active .panel-content p {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.12s;
    }

    .pmlp .panel.active .panel-cta {
        opacity: 1;
        transform: translateY(0);
        transition-delay: 0.2s;
    }

    .pmlp .panel.active .panel-link-secondary {
        opacity: 0.7;
        transform: translateY(0);
        transition-delay: 0.26s;
    }

    .pmlp .panel.active .panel-bg {
        transform: scale(1.06);
    }

    /* ── Scroll indicator dots (added by JS) ── */
    .pmlp-scroll-dots {
        position: fixed;
        right: 12px;
        top: 50%;
        transform: translateY(-50%);
        z-index: 200;
        display: flex;
        flex-direction: column;
        gap: 10px;
        pointer-events: auto;
    }

    .pmlp-scroll-dot {
        width: 8px;
        height: 8px;
        border-radius: 50%;
        background: rgba(245,241,235,0.2);
        border: 1px solid rgba(245,241,235,0.3);
        cursor: pointer;
        transition: background 0.3s ease, transform 0.3s ease;
        padding: 0;
    }

    .pmlp-scroll-dot.current {
        background: rgba(245,241,235,0.8);
        transform: scale(1.3);
        border-color: rgba(245,241,235,0.6);
    }

    /* ── Footer: fixed at bottom ── */
    .pmlp .pmlp-footer {
        position: fixed;
        z-index: 200;
    }

    /* ── Disable ALL desktop :hover behaviors on mobile ── */
    .pmlp .pmlp-panels:hover .panel       { flex: none !important; }
    .pmlp .pmlp-panels:hover .panel:hover  { flex: none !important; }
    .pmlp .panel:hover .panel-label        { transform: none; }
    .pmlp .panel:hover .panel-content      { transform: translateY(20px); opacity: 0; }
    .pmlp .panel:hover .panel-content p    { opacity: 0; }
    .pmlp .panel:hover .panel-cta          { opacity: 0; }
    .pmlp .panel:hover .panel-link-secondary { opacity: 0; }
    .pmlp .panel:hover .panel-bg           { transform: none; }
}

/* ═══ SMALL PHONES ═══ */
@media (max-width: 380px) {
    .pmlp .panel-content {
        padding: 1.2rem 1.4rem 2rem;
    }
    .pmlp .panel-content h2 {
        font-size: 1.2rem;
    }
    .pmlp .panel-label span {
        font-size: 1.6rem;
    }
}
