/* Gemeinsame Navigation für index12 und die drei neuen Preisseiten. */
/* Keine allgemeinen .mega-Regeln: das Leistungen-Menü bleibt wie auf index11. */
.nav #services-panel { transition: opacity .2s ease, transform .2s ease; }
.nav #prices-panel { position: absolute; top: 100%; left: 0; right: 0; background: #fff; border-top: 1px solid rgba(10, 37, 64, .06); box-shadow: 0 40px 60px -30px rgba(10, 37, 64, .25); opacity: 0; visibility: hidden; transform: translateY(-8px); transition: opacity .2s ease, transform .2s ease; }
.nav.prices-open #prices-panel { opacity: 1; visibility: visible; transform: translateY(0); }
.nav.prices-open .prices-trigger { background: rgba(10, 37, 64, .05); }
.nav.prices-open .prices-trigger .chev { transform: rotate(180deg); }
/* Gleiche Typografie, Trennlinien und Abstände wie die Modulspalten,
   auf index12 und den aktuellen Preis- und Buchungsseiten. Das originale .mega bleibt unberührt. */
.prices-mega-grid {
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 20px;
    max-width: 1060px;
    padding-top: 34px;
    padding-bottom: 34px;
}
.prices-mega-card {
    position: relative;
    display: flex;
    min-height: 158px;
    overflow: hidden;
    flex-direction: column;
    align-items: flex-start;
    padding: 22px;
    border: 1.5px solid #d6dfe5;
    border-radius: 18px;
    color: var(--navy);
    background: #fff;
    box-shadow: 0 10px 26px rgba(10, 37, 64, .055);
    transition: background .2s ease, border-color .2s ease, box-shadow .2s ease, transform .2s ease;
}
.prices-mega-card:hover,
.prices-mega-card[aria-current="page"] {
    border-color: #aebdc7;
    background: var(--bg-soft);
    box-shadow: 0 16px 34px rgba(10, 37, 64, .1);
    transform: translateY(-3px);
}
.prices-mega-card:focus-visible {
    outline: 3px solid var(--green-dark);
    outline-offset: 4px;
}
.prices-mega-kicker {
    display: flex;
    min-height: 21px;
    flex-wrap: wrap;
    align-items: center;
    gap: 6px;
    margin: 0 0 5px;
    color: var(--green-dark);
    font-size: .74rem;
    font-weight: 800;
    letter-spacing: .02em;
}
.prices-mega-card[aria-current="page"] .prices-mega-kicker::after {
    padding: 3px 7px;
    border-radius: 999px;
    color: #fff;
    background: var(--navy);
    content: "Ihre Auswahl";
    font-size: .56rem;
    font-weight: 800;
    letter-spacing: .055em;
    line-height: 1;
    text-transform: uppercase;
}
.prices-mega-card strong {
    width: 100%;
    margin: 0 0 16px;
    padding-bottom: 14px;
    border-bottom: 2px solid var(--green-dark);
    font-family: var(--font);
    font-size: 1rem;
    font-weight: 800;
    line-height: 1.25;
}
.prices-mega-link {
    margin: auto 0 0;
    padding: 7px 11px;
    border: 1px solid rgba(128, 179, 44, .25);
    border-radius: 999px;
    color: var(--green-dark);
    background: rgba(128, 179, 44, .11);
    font-size: .76rem;
    font-weight: 800;
    line-height: 1.2;
    transition: color .2s ease, background .2s ease, border-color .2s ease;
}
.prices-mega-card:hover .prices-mega-link,
.prices-mega-card:focus-visible .prices-mega-link,
.prices-mega-card[aria-current="page"] .prices-mega-link {
    border-color: var(--green-dark);
    color: #fff;
    background: var(--green-dark);
}

.mm-prices a { display: block; padding: 12px 10px; color: var(--navy); border-radius: 8px; font-size: .94rem; }
.mm-prices a:hover, .mm-prices a[aria-current="page"] { background: #f6f9f0; }
@media (max-width: 1024px) { .nav #prices-panel { display: none; } }
@media (prefers-reduced-motion: reduce) { .prices-mega-card, .prices-mega-link, .nav #prices-panel { transition: none; } }
