/* Extracted from cage-quests-event-firmen.html */
/* 1. HERO — Bold Corporate Statement
   ═══════════════════════════════════════════════ */
.cq-ev-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.cq-ev-hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://cagequests.de/wp-content/uploads/2021/06/Sands-05-scaled.jpg') center/cover;
    background-color: #0d0a08;
}

.cq-ev-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.7) 100%),
        linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.4) 100%);
}

.cq-ev-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: calc(var(--header-height) + 4rem) 3rem 4rem;
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 4rem;
    align-items: center;
}

.cq-ev-hero-text {}

.cq-ev-hero-label {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.7;
    margin-bottom: 1.5rem;
}

.cq-ev-hero h1 {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 100;
    letter-spacing: clamp(0.2rem, 1vw, 0.8rem);
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.cq-ev-hero h1 em {
    font-style: normal;
    color: var(--gold-light);
}

.cq-ev-hero-sub {
    font-size: clamp(0.85rem, 1.3vw, 1.05rem);
    font-weight: 200;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 2.5rem;
}

.cq-ev-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Hero Stat Block — right side */
.cq-ev-hero-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    grid-auto-rows: 1fr;
    gap: 1px;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid var(--glass-border);
}

.cq-ev-hero-stat {
    padding: 2rem 1.5rem;
    background: rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    text-align: center;
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    min-height: 140px;
}

.cq-ev-hero-stat-value {
    display: block;
    font-size: 2.2rem;
    font-weight: 100;
    color: var(--gold-light);
    margin-bottom: 0.3rem;
}

.cq-ev-hero-stat-label {
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 768px) {
    .cq-ev-hero {
        min-height: 70vh;
    }

    /* Grid auf Mobile komplett deaktivieren — statt Grid Block-Layout,
       damit keine min-content-Probleme mit langen deutschen Wörtern
       auftreten (z.B. "Teambuilding-Format" würde die Grid-Spalte
       über den Viewport hinaus dehnen). */
    .cq-ev-hero-content {
        display: block;
        grid-template-columns: none;
        padding: calc(var(--header-height-mobile) + 2rem) 1.5rem 3rem;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        text-align: center;
        overflow-wrap: break-word;
    }

    .cq-ev-hero-text {
        text-align: center;
        min-width: 0;
        margin-bottom: 2rem;
    }

    .cq-ev-hero h1,
    .cq-ev-hero-label {
        text-align: center;
        overflow-wrap: break-word;
        word-break: normal;
    }

    .cq-ev-hero h1 {
        /* Etwas engeres letter-spacing auf schmalen Viewports */
        letter-spacing: clamp(0.1rem, 0.3vw, 0.3rem);
    }

    .cq-ev-hero-sub {
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
        overflow-wrap: break-word;
        word-break: normal;
        hyphens: auto;
    }

    /* Buttons gestapelt, volle Breite, zentrierter Text */
    .cq-ev-hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
    }

    .cq-ev-hero-actions .cq-btn-primary,
    .cq-ev-hero-actions .cq-btn-ghost {
        width: 100%;
        justify-content: center;
        padding: 0.95rem 1rem;
        font-size: 0.68rem;
        letter-spacing: 0.15em;
        white-space: nowrap;
    }

    .cq-ev-hero-stats {
        grid-template-columns: 1fr 1fr;
    }

    .cq-ev-hero-stat {
        padding: 1.2rem 1rem;
        min-height: 110px;
    }

    .cq-ev-hero-stat-value {
        font-size: 1.6rem;
    }
}

/* ═══════════════════════════════════════════════
   SHARED BUTTONS
   ═══════════════════════════════════════════════ */
.cq-btn-primary {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2.2rem;
    background: linear-gradient(135deg, var(--gold), var(--gold-dark));
    border: 2px solid var(--gold);
    color: var(--black);
    font-family: inherit;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s var(--ease);
    box-shadow: 0 5px 20px rgba(178, 148, 116, 0.3);
}

.cq-btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.2) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s ease;
}

.cq-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(178, 148, 116, 0.5), inset 0 0 20px rgba(255, 255, 255, 0.2);
}

.cq-btn-primary:hover::before {
    transform: translateX(100%);
}

.cq-btn-primary span {
    position: relative;
    z-index: 2;
}

.cq-btn-primary:hover span {
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.3);
}

.cq-btn-ghost {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 1rem 2.2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(178, 148, 116, 0.4);
    color: var(--white);
    font-family: inherit;
    font-size: 0.8rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    text-decoration: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s var(--ease);
}

.cq-btn-ghost::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(178, 148, 116, 0.3), transparent);
    transition: left 0.6s ease;
}

.cq-btn-ghost:hover {
    border-color: var(--gold);
    color: var(--gold);
    background: rgba(178, 148, 116, 0.08);
    transform: translateY(-2px);
    box-shadow: 0 10px 30px rgba(178, 148, 116, 0.2);
}

.cq-btn-ghost:hover::before {
    left: 100%;
}

.cq-btn-ghost span {
    position: relative;
    z-index: 2;
}

.cq-btn-ghost:hover span {
    text-shadow: 0 0 10px var(--gold);
}

/* ═══════════════════════════════════════════════
   SECTION FRAMEWORK
   ═══════════════════════════════════════════════ */
.cq-ev-section {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: 6rem 3rem;
}

@media (max-width: 768px) {
    .cq-ev-section {
        padding: 4rem 1.5rem;
    }
}

.cq-ev-section-label {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.25em;
    text-transform: uppercase;
    color: var(--gold);
    /* a11y: opacity 0.6 entfernt — ergab #6b5946 = 3.14 ratio AA-fail. */
    margin-bottom: 0.8rem;
}

.cq-ev-section-title {
    font-size: clamp(1.4rem, 3vw, 2.2rem);
    font-weight: 100;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    text-align: left;
    margin-bottom: 1rem;
}

.cq-ev-section-sub {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    max-width: 820px;
    margin-bottom: 3rem;
}

.cq-ev-divider {
    width: 40px;
    height: 1px;
    background: rgba(178, 148, 116, 0.3);
}

/* ═══════════════════════════════════════════════
   2. EVENT FORMATE — 4 Individual Cards
   ═══════════════════════════════════════════════ */
.cq-ev-formats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.cq-ev-format-card {
    position: relative;
    padding: 2.5rem 2rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    transition: all 0.4s var(--ease);
    overflow: hidden;
}

.cq-ev-format-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.cq-ev-format-card:hover {
    border-color: rgba(178, 148, 116, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.cq-ev-format-number {
    font-size: 3rem;
    font-weight: 100;
    color: var(--gold);
    opacity: 0.45;
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
    line-height: 1;
}

.cq-ev-format-icon {
    font-size: 1.5rem;
    margin-bottom: 1.2rem;
    opacity: 0.8;
    color: var(--gold);
    line-height: 1;
    display: inline-flex;
    align-items: center;
}
.cq-ev-format-icon .cq-icon { display: block; }

.cq-ev-format-title {
    font-size: 1rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.cq-ev-format-text {
    font-size: 0.8rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin-bottom: 1.2rem;
}

.cq-ev-format-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.cq-ev-format-tag {
    padding: 0.3rem 0.7rem;
    background: rgba(178, 148, 116, 0.08);
    border: 1px solid rgba(178, 148, 116, 0.15);
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
}

@media (max-width: 768px) {
    .cq-ev-formats-grid {
        grid-template-columns: 1fr;
    }

    .cq-ev-format-card {
        padding: 2rem 1.5rem;
    }
}

/* ═══════════════════════════════════════════════
   3. WARUM ESCAPE ROOM — Benefits mit Stats
   ═══════════════════════════════════════════════ */
.cq-ev-benefits {
    background: var(--glass);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.cq-ev-benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3rem;
}

.cq-ev-benefit {
    text-align: center;
}

.cq-ev-benefit-stat {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 100;
    color: var(--gold-light);
    margin-bottom: 0.3rem;
}

.cq-ev-benefit-title {
    font-size: 0.7rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 0.8rem;
}

.cq-ev-benefit-text {
    font-size: 0.78rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
}

@media (max-width: 768px) {
    .cq-ev-benefits-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
}

/* ═══════════════════════════════════════════════
   4. ABLAUF — Timeline
   ═══════════════════════════════════════════════ */
.cq-ev-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 0;
    position: relative;
}

/* Connecting line */
.cq-ev-timeline::before {
    content: '';
    position: absolute;
    top: 28px;
    left: 5%;
    right: 5%;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(178, 148, 116, 0.3) 10%, rgba(178, 148, 116, 0.3) 90%, transparent);
}

.cq-ev-timeline-step {
    text-align: center;
    padding: 0 1rem;
    position: relative;
}

.cq-ev-timeline-dot {
    width: 14px;
    height: 14px;
    background: var(--black);
    border: 2px solid var(--gold);
    margin: 0 auto 1.5rem;
    position: relative;
    z-index: 2;
}

/* Hier fuellte eine Sonderregel den ERSTEN und LETZTEN Punkt massiv
   gold, waehrend die beiden mittleren als Ring auf Schwarz standen —
   vier Schritte in zwei Auspraegungen, ohne dass die Reihenfolge
   inhaltlich etwas anderes bedeutet. Alle vier tragen jetzt dasselbe
   Gold/Glass-Muster (schwarz gefuellt, goldener Ring), wie es die
   uebrigen Kacheln der Seite verwenden. (Nadja E2, 07.09.2026) */

.cq-ev-timeline-num {
    font-size: 0.55rem;
    font-weight: 500;
    letter-spacing: 0.2em;
    color: var(--gold);
    opacity: 0.5;
    margin-bottom: 0.5rem;
}

.cq-ev-timeline-title {
    font-size: 0.8rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.cq-ev-timeline-text {
    font-size: 0.7rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

@media (max-width: 768px) {
    .cq-ev-timeline {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .cq-ev-timeline::before {
        display: none;
    }

    .cq-ev-timeline-step {
        text-align: left;
        padding: 0;
        padding-left: 2.5rem;
        border-left: 1px solid rgba(178, 148, 116, 0.2);
    }

    .cq-ev-timeline-dot {
        position: absolute;
        left: -7px;
        top: 0;
        margin: 0;
    }
}

/* ═══════════════════════════════════════════════
   5. KAPAZITÄTEN — Standort-Vergleich
   ═══════════════════════════════════════════════ */
.cq-ev-capacity-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.cq-ev-capacity-card {
    padding: 2.5rem 2rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    text-align: center;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.cq-ev-capacity-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.cq-ev-capacity-card:hover {
    border-color: rgba(178, 148, 116, 0.25);
    transform: translateY(-3px);
}

.cq-ev-capacity-card.featured {
    border-color: rgba(178, 148, 116, 0.2);
    background: rgba(178, 148, 116, 0.04);
}

.cq-ev-capacity-badge {
    display: inline-block;
    padding: 0.25rem 0.7rem;
    background: rgba(178, 148, 116, 0.12);
    border: 1px solid rgba(178, 148, 116, 0.2);
    font-size: 0.5rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1rem;
}

.cq-ev-capacity-city {
    font-size: 1.5rem;
    font-weight: 100;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 1.5rem;
}

.cq-ev-capacity-facts {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    margin-bottom: 2rem;
}

.cq-ev-capacity-fact {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 0.8rem;
    border-bottom: 1px solid var(--glass-border);
    font-size: 0.78rem;
}

.cq-ev-capacity-fact:last-child {
    border-bottom: none;
    padding-bottom: 0;
}

.cq-ev-capacity-fact-label {
    color: rgba(255, 255, 255, 0.7);
}

.cq-ev-capacity-fact-value {
    color: rgba(255, 255, 255, 0.7);
    font-weight: 400;
}

.cq-ev-capacity-coming {
    font-size: 0.6rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 165, 0, 0.6);
}

@media (max-width: 768px) {
    .cq-ev-capacity-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════
   6. SOCIAL PROOF — Logos + Testimonial
   ═══════════════════════════════════════════════ */
.cq-ev-proof {
    background: var(--glass);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.cq-ev-logos {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.5rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
    padding: 1rem 0;
}

.cq-ev-logo-item {
    min-width: 120px;
    min-height: 56px;
    padding: 0.8rem 1.2rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s var(--ease);
}

.cq-ev-logo-item:hover {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(178, 148, 116, 0.25);
}

.cq-ev-logo-item img {
    max-width: 100%;
    max-height: 40px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.55;
    transition: opacity 0.3s var(--ease);
}

.cq-ev-logo-item:hover img {
    opacity: 0.85;
}

.cq-ev-logo-name {
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.55);
    text-transform: uppercase;
    white-space: nowrap;
    transition: color 0.3s var(--ease);
}

.cq-ev-logo-item:hover .cq-ev-logo-name {
    color: rgba(255, 255, 255, 0.85);
}

.cq-ev-testimonial {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cq-ev-testimonial-quote {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    font-weight: 200;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.cq-ev-testimonial-author {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.1em;
    color: rgba(255, 255, 255, 0.7);
}

.cq-ev-testimonial-role {
    font-size: 0.6rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.1em;
    margin-top: 0.2rem;
}

/* ═══════════════════════════════════════════════
   7. ANFRAGE CTA — Contact Block
   ═══════════════════════════════════════════════ */
.cq-ev-cta {
    background: var(--glass);
    border: 1px solid rgba(178, 148, 116, 0.25);
    padding: 4rem;
    text-align: center;
}

.cq-ev-cta-title {
    font-size: clamp(1.3rem, 2.5vw, 2rem);
    font-weight: 100;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.cq-ev-cta-text {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    max-width: 550px;
    margin: 0 auto 2rem;
}

.cq-ev-cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.cq-ev-cta-contact {
    display: flex;
    gap: 2.5rem;
    justify-content: center;
    flex-wrap: wrap;
}

.cq-ev-cta-contact-item {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.05em;
}

.cq-ev-cta-contact-item a {
    color: var(--gold-light);
    text-decoration: none;
    transition: color 0.3s;
}

.cq-ev-cta-contact-item a:hover {
    color: var(--white);
}

@media (max-width: 768px) {
    .cq-ev-cta {
        padding: 3rem 1.5rem;
    }

    /* Bottom CTA Buttons gestapelt + Text korrekt */
    .cq-ev-cta-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
    }

    .cq-ev-cta-actions .cq-btn-primary,
    .cq-ev-cta-actions .cq-btn-ghost {
        width: 100%;
        justify-content: center;
        padding: 0.95rem 1rem;
        font-size: 0.68rem;
        letter-spacing: 0.15em;
        white-space: nowrap;
    }

    /* Kontakt-Infos darunter zentriert */
    .cq-ev-cta-contact {
        flex-direction: column;
        gap: 0.8rem;
        text-align: center;
    }
}

/* ═══ FOOTER ═══ */

/* ═══ JGA ═══ */
/* 1. HERO — Bold, Party Energy
   ═══════════════════════════════════════════════ */
.cq-jga-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.cq-jga-hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://cagequests.de/wp-content/uploads/2024/04/IMG_0714_j-805x683.jpg') center/cover;
    background-color: #0d0a08;
}

.cq-jga-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse at center, rgba(0, 0, 0, 0.4) 0%, rgba(0, 0, 0, 0.8) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, transparent 30%, rgba(0, 0, 0, 0.7) 100%);
}

.cq-jga-hero-content {
    position: relative;
    z-index: 2;
    max-width: 700px;
    padding: calc(var(--header-height) + 2rem) 2rem 4rem;
}

.cq-jga-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.5rem 1.2rem;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.12);
    font-size: 0.65rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.12);
}

.cq-jga-hero h1 {
    font-size: clamp(2.5rem, 6vw, 5rem);
    font-weight: 100;
    letter-spacing: clamp(0.3rem, 1.5vw, 1rem);
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.cq-jga-hero-sub {
    font-size: clamp(0.85rem, 1.3vw, 1.05rem);
    font-weight: 200;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.cq-jga-hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width:768px) {
    .cq-jga-hero {
        min-height: 70vh;
    }

    /* Hero-Content: Block statt Grid, zentriert, keine Overflow-Probleme */
    .cq-jga-hero-content {
        display: block;
        padding: calc(var(--header-height-mobile) + 1.5rem) 1.5rem 3rem;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        text-align: center;
        overflow-wrap: break-word;
    }

    .cq-jga-hero h1 {
        letter-spacing: clamp(0.1rem, 0.3vw, 0.3rem);
        overflow-wrap: break-word;
    }

    .cq-jga-hero-sub {
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    /* Buttons gestapelt, volle Breite, zentriert */
    .cq-jga-hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
    }

    .cq-jga-hero-actions .cq-btn-primary,
    .cq-jga-hero-actions .cq-btn-ghost {
        width: 100%;
        justify-content: center;
        padding: 0.95rem 1rem;
        font-size: 0.68rem;
        letter-spacing: 0.15em;
        white-space: nowrap;
    }
}

/* ═══════════════════════════════════════════════
   2. WARUM JGA IM ESCAPE ROOM — 3 Reasons
   ═══════════════════════════════════════════════ */
.cq-jga-reasons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.cq-jga-reason {
    padding: 2.5rem 2rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    text-align: center;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.cq-jga-reason::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.cq-jga-reason:hover {
    border-color: rgba(178, 148, 116, 0.25);
    transform: translateY(-3px);
}

.cq-jga-reason-icon {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: var(--gold);
    line-height: 1;
    display: inline-flex;
    align-items: center;
}

.cq-jga-reason-icon .cq-icon {
    display: block;
}

.cq-jga-reason-title {
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.cq-jga-reason-text {
    font-size: 0.78rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
}

@media (max-width:768px) {
    .cq-jga-reasons {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════
   3. PACKAGES — Stacked Cards
   ═══════════════════════════════════════════════ */
.cq-jga-packages {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.cq-jga-package {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.cq-jga-package::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.cq-jga-package:hover {
    border-color: rgba(178, 148, 116, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.cq-jga-package.featured {
    border-color: rgba(178, 148, 116, 0.25);
    background: rgba(178, 148, 116, 0.04);
}

.cq-jga-package-header {
    padding: 2rem;
    border-bottom: 1px solid var(--glass-border);
    text-align: center;
}

.cq-jga-package-badge {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    background: rgba(178, 148, 116, 0.12);
    border: 1px solid rgba(178, 148, 116, 0.2);
    font-size: 0.5rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 0.8rem;
}

.cq-jga-package-name {
    font-size: 1.3rem;
    font-weight: 100;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.cq-jga-package-price {
    font-size: 1.8rem;
    font-weight: 100;
    color: var(--gold-light);
}

.cq-jga-package-price-hint {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.6);
}

.cq-jga-package-body {
    padding: 2rem;
    flex: 1;
}

.cq-jga-package-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}

.cq-jga-package-item {
    font-size: 0.78rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.7);
    padding-left: 1.2rem;
    position: relative;
}

.cq-jga-package-item::before {
    content: '';
    position: absolute;
    left: 0;
    top: 6px;
    width: 4px;
    height: 4px;
    background: var(--gold);
    opacity: 0.6;
}

.cq-jga-package-footer {
    padding: 1.5rem 2rem;
    border-top: 1px solid var(--glass-border);
}

@media (max-width:768px) {
    .cq-jga-packages {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════
   4. ROOM EMPFEHLUNGEN — Horizontal Scroll
   ═══════════════════════════════════════════════ */
.cq-jga-rooms {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.2rem;
}

.cq-jga-room-card {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: all 0.4s var(--ease);
}

.cq-jga-room-card img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.cq-jga-room-card:hover {
    border-color: rgba(178, 148, 116, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(0, 0, 0, 0.4);
}

.cq-jga-room-card:hover img {
    transform: scale(1.05);
}

.cq-jga-room-card::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 40%, rgba(0, 0, 0, 0.85) 100%);
}

.cq-jga-room-info {
    position: absolute;
    bottom: 12px;
    left: 14px;
    right: 14px;
    z-index: 2;
}

.cq-jga-room-name {
    font-size: 0.9rem;
    font-weight: 200;
    margin-bottom: 0.2rem;
}

.cq-jga-room-meta {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.05em;
}

.cq-jga-room-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    padding: 3px 8px;
    background: rgba(232, 67, 147, 0.15);
    border: 1px solid rgba(232, 67, 147, 0.3);
    font-size: 0.5rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    color: var(--accent);
}

@media (max-width:768px) {
    .cq-jga-rooms {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════
   5. TESTIMONIAL — Full Width Quote
   ═══════════════════════════════════════════════ */
.cq-jga-testimonial-section {
    background: var(--glass);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.cq-jga-testimonial {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.cq-jga-testimonial-stars {
    font-size: 1rem;
    letter-spacing: 0.3em;
    color: var(--gold);
    margin-bottom: 1.5rem;
    opacity: 0.6;
}

.cq-jga-testimonial-quote {
    font-size: clamp(0.9rem, 1.5vw, 1.1rem);
    font-weight: 200;
    font-style: italic;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}

.cq-jga-testimonial-author {
    font-size: 0.7rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.1em;
}

.cq-jga-testimonial-source {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.1em;
    margin-top: 0.2rem;
}

/* ═══════════════════════════════════════════════
   6. CTA
   ═══════════════════════════════════════════════ */
.cq-jga-cta {
    background: linear-gradient(135deg, rgba(232, 67, 147, 0.04) 0%, transparent 60%);
    border: 1px solid rgba(232, 67, 147, 0.1);
    padding: 4rem;
    text-align: center;
}

.cq-jga-cta-title {
    font-size: clamp(1.3rem, 2.5vw, 2rem);
    font-weight: 100;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.cq-jga-cta-text {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    max-width: 550px;
    margin: 0 auto 2rem;
}

.cq-jga-cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

@media (max-width:768px) {
    .cq-jga-cta {
        padding: 3rem 1.5rem;
    }

    /* CTA Buttons gestapelt, volle Breite */
    .cq-jga-cta-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
    }

    .cq-jga-cta-actions .cq-btn-primary,
    .cq-jga-cta-actions .cq-btn-ghost {
        width: 100%;
        justify-content: center;
        padding: 0.95rem 1rem;
        font-size: 0.68rem;
        letter-spacing: 0.15em;
        white-space: nowrap;
    }
}

/* ═══ FOOTER ═══ */

/* ═══ GEBURTSTAG ═══ */
/* 1. HERO — Split with Age Badges
   ═══════════════════════════════════════════════ */
.cq-bday-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.cq-bday-hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://cagequests.de/wp-content/uploads/elementor/thumbs/WizardsSecretsKA_2nd-scaled-r1z46pql70j9182lghbpor50quq2wfjmukea9b9ye0.jpeg') center/cover;
    background-color: #0d0a08;
}

.cq-bday-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(135deg, rgba(0, 0, 0, 0.85) 0%, rgba(0, 0, 0, 0.5) 50%, rgba(0, 0, 0, 0.75) 100%),
        linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.3) 100%);
}

.cq-bday-hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
    padding: calc(var(--header-height) + 4rem) 3rem 4rem;
    width: 100%;
}

.cq-bday-hero-label {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    color: var(--accent);
    opacity: 0.8;
    margin-bottom: 1.5rem;
}

.cq-bday-hero h1 {
    font-size: clamp(2.5rem, 5.5vw, 4.5rem);
    font-weight: 100;
    letter-spacing: clamp(0.2rem, 1vw, 0.8rem);
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    max-width: 700px;
}

.cq-bday-hero h1 em {
    font-style: normal;
    color: var(--gold-light);
}

.cq-bday-hero-sub {
    font-size: clamp(0.85rem, 1.3vw, 1.05rem);
    font-weight: 200;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 2.5rem;
}

.cq-bday-hero-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* Kompakte Hero-Buttons — global wäre flex:1 1 0% zu breit */
.cq-bday-hero-actions .cq-btn-primary,
.cq-bday-hero-actions .cq-btn-ghost {
    flex: 0 0 auto;
    width: auto;
    min-width: 210px;
    padding: 0.85rem 1.8rem;
    font-size: 0.72rem;
    min-height: 44px;
}

@media (max-width:768px) {
    .cq-bday-hero {
        min-height: 70vh;
    }

    .cq-bday-hero-content {
        display: block;
        padding: calc(var(--header-height-mobile) + 2rem) 1.5rem 3rem;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        text-align: center;
        overflow-wrap: break-word;
    }

    .cq-bday-hero h1 {
        letter-spacing: clamp(0.1rem, 0.3vw, 0.3rem);
        overflow-wrap: break-word;
    }

    .cq-bday-hero-sub {
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .cq-bday-hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
    }

    .cq-bday-hero-actions .cq-btn-primary,
    .cq-bday-hero-actions .cq-btn-ghost {
        width: 100%;
        justify-content: center;
        padding: 0.95rem 1rem;
        font-size: 0.68rem;
        letter-spacing: 0.15em;
        white-space: nowrap;
    }
}

/* ═══════════════════════════════════════════════
   2. ALTERSGRUPPEN — 3 Spalten mit Charakter
   ═══════════════════════════════════════════════ */
.cq-bday-ages-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.cq-bday-age-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    overflow: hidden;
    transition: all 0.4s var(--ease);
    position: relative;
}

.cq-bday-age-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.cq-bday-age-card:hover {
    border-color: rgba(178, 148, 116, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.cq-bday-age-visual {
    height: 120px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--gold);
    background: linear-gradient(135deg, rgba(178, 148, 116, 0.04) 0%, transparent 100%);
    border-bottom: 1px solid var(--glass-border);
}

.cq-bday-age-body {
    padding: 2rem;
}

.cq-bday-age-range {
    display: inline-block;
    padding: 0.25rem 0.7rem;
    background: rgba(178, 148, 116, 0.1);
    border: 1px solid rgba(178, 148, 116, 0.15);
    font-size: 0.55rem;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold-light);
    margin-bottom: 1rem;
}

.cq-bday-age-title {
    font-size: 1.1rem;
    font-weight: 100;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.cq-bday-age-text {
    font-size: 0.78rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

.cq-bday-age-facts {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    margin-bottom: 1.5rem;
}

.cq-bday-age-fact {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.6);
}

.cq-bday-age-fact-dot {
    width: 4px;
    height: 4px;
    background: var(--gold);
    opacity: 0.6;
    flex-shrink: 0;
}

@media (max-width:768px) {
    .cq-bday-ages-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════
   3. SO LÄUFT'S AB — Numbered Steps (horizontal)
   ═══════════════════════════════════════════════ */
.cq-bday-steps {
    display: grid;
    grid-template-columns: repeat(5, 1fr);
    gap: 1rem;
}

.cq-bday-step {
    text-align: center;
    padding: 1.5rem 1rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    position: relative;
    transition: all 0.3s var(--ease);
}

.cq-bday-step:hover {
    border-color: rgba(178, 148, 116, 0.2);
}

.cq-bday-step-num {
    font-size: 1.8rem;
    font-weight: 100;
    color: var(--gold);
    opacity: 0.3;
    margin-bottom: 0.5rem;
}

.cq-bday-step-title {
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.cq-bday-step-text {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

/* Connector arrows between steps */
.cq-bday-step:not(:last-child)::after {
    content: '\2192';
    position: absolute;
    right: -0.7rem;
    top: 50%;
    transform: translateY(-50%);
    color: rgba(178, 148, 116, 0.2);
    font-size: 0.8rem;
    z-index: 2;
}

@media (max-width:768px) {
    .cq-bday-steps {
        grid-template-columns: 1fr 1fr;
    }

    .cq-bday-step:not(:last-child)::after {
        display: none;
    }

    .cq-bday-step:last-child {
        grid-column: 1 / -1;
    }
}

/* ═══════════════════════════════════════════════
   4. EXTRAS — Grid with Icons
   ═══════════════════════════════════════════════ */
.cq-bday-extras-section {
    background: var(--glass);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.cq-bday-extras-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
}

/* Die "Warum Escape Room?" Section hat 3 Items → 3-Spalten-Grid */
.cq-bday-why-grid {
    grid-template-columns: repeat(3, 1fr);
    max-width: 1000px;
    margin: 0 auto;
}

.cq-bday-extra {
    text-align: center;
    padding: 2rem 1rem;
    max-width: 100%;
    overflow: hidden;
    box-sizing: border-box;
}

.cq-bday-extra-icon {
    font-size: 1.5rem;
    margin-bottom: 0.8rem;
    color: var(--gold);
    opacity: 0.8;
    display: inline-flex;
    align-items: center;
}
.cq-bday-extra-icon .cq-icon { display: block; }

.cq-bday-extra-title {
    font-size: 0.75rem;
    font-weight: 400;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.cq-bday-extra-text {
    font-size: 0.7rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

@media (max-width:768px) {
    .cq-bday-extras-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:480px) {
    .cq-bday-extras-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .cq-bday-extra {
        padding: 1.5rem 1rem;
    }
}

/* ═══════════════════════════════════════════════
   5. FAQ Accordion
   ═══════════════════════════════════════════════ */
.cq-bday-faq-list {
    max-width: 700px;
    display: flex;
    flex-direction: column;
    gap: 0;
}

.cq-bday-faq-item {
    border-bottom: 1px solid var(--glass-border);
}

.cq-bday-faq-question {
    width: 100%;
    background: none;
    border: none;
    color: var(--white);
    font-family: inherit;
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.03em;
    padding: 1.2rem 0;
    text-align: left;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    transition: color 0.3s;
}

.cq-bday-faq-question:hover {
    color: var(--gold-light);
}

.cq-bday-faq-toggle {
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: rgba(178, 148, 116, 0.4);
    transition: transform 0.3s var(--ease);
    flex-shrink: 0;
}

.cq-bday-faq-item.open .cq-bday-faq-toggle {
    transform: rotate(45deg);
}

.cq-bday-faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s var(--ease);
}

.cq-bday-faq-item.open .cq-bday-faq-answer {
    max-height: 300px;
}

.cq-bday-faq-answer-inner {
    padding: 0 0 1.2rem;
    font-size: 0.78rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
}

/* ═══════════════════════════════════════════════
   6. CTA
   ═══════════════════════════════════════════════ */
.cq-bday-cta {
    background: linear-gradient(135deg, rgba(243, 156, 18, 0.04) 0%, transparent 60%);
    border: 1px solid rgba(243, 156, 18, 0.1);
    padding: 4rem;
    text-align: center;
}

.cq-bday-cta-title {
    font-size: clamp(1.3rem, 2.5vw, 2rem);
    font-weight: 100;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.cq-bday-cta-text {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    max-width: 550px;
    margin: 0 auto 2rem;
}

.cq-bday-cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

/* Kompakte Buttons im Bottom-CTA — global wäre flex:1 1 0% zu groß */
.cq-bday-cta-actions .cq-btn-primary,
.cq-bday-cta-actions .cq-btn-ghost {
    flex: 0 0 auto;
    width: auto;
    min-width: 210px;
    padding: 0.85rem 1.8rem;
    font-size: 0.72rem;
    min-height: 44px;
}

.cq-bday-cta-hint {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.1em;
}

@media (max-width:768px) {
    .cq-bday-cta {
        padding: 3rem 1.5rem;
    }

    .cq-bday-cta-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
    }

    .cq-bday-cta-actions .cq-btn-primary,
    .cq-bday-cta-actions .cq-btn-ghost {
        width: 100%;
        justify-content: center;
        padding: 0.95rem 1rem;
        font-size: 0.68rem;
        letter-spacing: 0.15em;
        white-space: nowrap;
    }
}

/* ═══ FOOTER ═══ */

/* ═══ FREUNDE ═══ */
/* 1. HERO — Centered, warm, community feel
   ═══════════════════════════════════════════════ */
.cq-grp-hero {
    position: relative;
    min-height: 80vh;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    overflow: hidden;
}

.cq-grp-hero-bg {
    position: absolute;
    inset: 0;
    background: url('https://cagequests.de/wp-content/uploads/2021/06/Iron-Curtain-2-scaled.jpg') center/cover;
    background-color: #0d0a08;
}

.cq-grp-hero-bg::after {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(0, 0, 0, 0.45) 0%, rgba(0, 0, 0, 0.85) 100%),
        linear-gradient(180deg, rgba(0, 0, 0, 0.5) 0%, transparent 30%, rgba(0, 0, 0, 0.6) 100%);
}

.cq-grp-hero-content {
    position: relative;
    z-index: 2;
    max-width: 750px;
    padding: calc(var(--header-height) + 3rem) 2rem 4rem;
}

.cq-grp-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 0.4rem 1rem;
    background: rgba(0, 0, 0, 0.4);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.6rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 2rem;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.1);
}

.cq-grp-hero h1 {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 100;
    letter-spacing: clamp(0.3rem, 1.5vw, 1rem);
    text-transform: uppercase;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

.cq-grp-hero h1 em {
    font-style: normal;
    color: var(--gold-light);
}

.cq-grp-hero-sub {
    font-size: clamp(0.85rem, 1.3vw, 1rem);
    font-weight: 200;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.8;
    margin-bottom: 2.5rem;
}

.cq-grp-hero-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

/* Kompakte Hero-Buttons — neutralisiert globales flex:1 1 0% */
.cq-grp-hero-actions .cq-btn-primary,
.cq-grp-hero-actions .cq-btn-ghost {
    flex: 0 0 auto;
    width: auto;
    min-width: 210px;
    padding: 0.85rem 1.8rem;
    font-size: 0.72rem;
    min-height: 44px;
}

@media (max-width:768px) {
    .cq-grp-hero {
        min-height: 70vh;
    }

    .cq-grp-hero-content {
        display: block;
        padding: calc(var(--header-height-mobile) + 1.5rem) 1.5rem 3rem;
        max-width: 100%;
        width: 100%;
        box-sizing: border-box;
        text-align: center;
        overflow-wrap: break-word;
    }

    .cq-grp-hero h1 {
        letter-spacing: clamp(0.1rem, 0.3vw, 0.3rem);
        overflow-wrap: break-word;
    }

    .cq-grp-hero-sub {
        margin-left: auto;
        margin-right: auto;
        max-width: 100%;
        overflow-wrap: break-word;
        hyphens: auto;
    }

    .cq-grp-hero-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
    }

    .cq-grp-hero-actions .cq-btn-primary,
    .cq-grp-hero-actions .cq-btn-ghost {
        width: 100%;
        justify-content: center;
        padding: 0.95rem 1rem;
        font-size: 0.68rem;
        letter-spacing: 0.15em;
        white-space: nowrap;
    }
}

/* ═══════════════════════════════════════════════
   2. ANLÄSSE — What brings you here?
   ═══════════════════════════════════════════════ */
.cq-grp-occasions-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.cq-grp-occasion {
    display: flex;
    gap: 1.5rem;
    padding: 2rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.cq-grp-occasion::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.cq-grp-occasion:hover {
    border-color: rgba(178, 148, 116, 0.2);
    transform: translateY(-3px);
}

.cq-grp-occasion-icon {
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 0.2rem;
    opacity: 0.6;
    width: 2rem;
    max-width: 2rem;
    overflow: hidden;
}

.cq-grp-occasion-title {
    font-size: 0.85rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.5rem;
}

.cq-grp-occasion-text {
    font-size: 0.75rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.7;
}

@media (max-width:768px) {
    .cq-grp-occasions-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════
   3. GRUPPENGRÖSZEN — Visual Size Guide
   ═══════════════════════════════════════════════ */
.cq-grp-sizes-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.cq-grp-size-card {
    padding: 2.5rem 2rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    text-align: center;
    transition: all 0.4s var(--ease);
    position: relative;
    overflow: hidden;
}

.cq-grp-size-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.03) 0%, transparent 50%);
    pointer-events: none;
}

.cq-grp-size-card:hover {
    border-color: rgba(178, 148, 116, 0.25);
    transform: translateY(-4px);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.3);
}

.cq-grp-size-people {
    font-size: 2.5rem;
    font-weight: 100;
    color: var(--gold-light);
    margin-bottom: 0.3rem;
}

.cq-grp-size-label {
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.6);
    margin-bottom: 1.2rem;
}

.cq-grp-size-title {
    font-size: 0.9rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.cq-grp-size-text {
    font-size: 0.75rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.cq-grp-size-detail {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.55);
    line-height: 1.5;
}

@media (max-width:768px) {
    .cq-grp-sizes-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════
   4. UNSERE TOP-RÄUME — Room Cards
   ═══════════════════════════════════════════════ */
.cq-grp-rooms-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
}

.cq-grp-room {
    position: relative;
    aspect-ratio: 3/4;
    overflow: hidden;
    border: 1px solid var(--glass-border);
    transition: all 0.4s var(--ease);
    text-decoration: none;
    display: block;
}

.cq-grp-room img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s var(--ease);
}

.cq-grp-room:hover {
    border-color: rgba(178, 148, 116, 0.3);
    transform: translateY(-3px);
}

.cq-grp-room:hover img {
    transform: scale(1.05);
}

.cq-grp-room::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(0, 0, 0, 0.9) 100%);
}

.cq-grp-room-info {
    position: absolute;
    bottom: 14px;
    left: 14px;
    right: 14px;
    z-index: 2;
}

.cq-grp-room-name {
    font-size: 0.85rem;
    font-weight: 200;
    color: var(--white);
    margin-bottom: 0.2rem;
}

.cq-grp-room-meta {
    font-size: 0.6rem;
    color: rgba(255, 255, 255, 0.7);
    letter-spacing: 0.05em;
}

.cq-grp-room-dur {
    position: absolute;
    top: 10px;
    right: 10px;
    z-index: 2;
    padding: 3px 7px;
    background: rgba(0, 0, 0, 0.6);
    backdrop-filter: blur(10px);
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.12);
}

@media (max-width:768px) {
    .cq-grp-rooms-grid {
        grid-template-columns: 1fr 1fr;
    }
}

@media (max-width:480px) {
    .cq-grp-rooms-grid {
        grid-template-columns: 1fr;
    }

    .cq-grp-room {
        aspect-ratio: 16/10;
    }
}

/* ═══════════════════════════════════════════════
   5. WARUM WIR — Trust Signals
   ═══════════════════════════════════════════════ */
.cq-grp-trust-section {
    background: var(--glass);
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
}

.cq-grp-trust-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    text-align: center;
}

.cq-grp-trust-stat {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 100;
    color: var(--gold-light);
    margin-bottom: 0.3rem;
}

.cq-grp-trust-label {
    font-size: 0.6rem;
    font-weight: 500;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.7);
}

@media (max-width:768px) {
    .cq-grp-trust-grid {
        grid-template-columns: 1fr 1fr;
        gap: 1.5rem;
    }
}

/* ═══════════════════════════════════════════════
   6. TESTIMONIALS — Masonry-Style
   ═══════════════════════════════════════════════ */
.cq-grp-reviews-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.cq-grp-review {
    padding: 2rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
}

.cq-grp-review::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.02) 0%, transparent 50%);
    pointer-events: none;
}

.cq-grp-review-stars {
    font-size: 0.7rem;
    letter-spacing: 0.15em;
    color: var(--gold);
    margin-bottom: 0.8rem;
    opacity: 0.5;
}

.cq-grp-review-text {
    font-size: 0.78rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    font-style: italic;
    margin-bottom: 1rem;
}

.cq-grp-review-author {
    font-size: 0.65rem;
    font-weight: 400;
    color: rgba(255, 255, 255, 0.55);
}

.cq-grp-review-source {
    font-size: 0.55rem;
    color: rgba(255, 255, 255, 0.55);
    margin-top: 0.15rem;
}

@media (max-width:768px) {
    .cq-grp-reviews-grid {
        grid-template-columns: 1fr;
    }
}

/* ═══════════════════════════════════════════════
   7. CTA
   ═══════════════════════════════════════════════ */
.cq-grp-cta {
    background: linear-gradient(135deg, rgba(108, 92, 231, 0.04) 0%, transparent 60%);
    border: 1px solid rgba(108, 92, 231, 0.08);
    padding: 4rem;
    text-align: center;
}

.cq-grp-cta-title {
    font-size: clamp(1.3rem, 2.5vw, 2rem);
    font-weight: 100;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    margin-bottom: 1rem;
}

.cq-grp-cta-text {
    font-size: 0.85rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.7;
    max-width: 550px;
    margin: 0 auto 2rem;
}

.cq-grp-cta-actions {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 1.5rem;
}

/* Kompakte Bottom-CTA-Buttons */
.cq-grp-cta-actions .cq-btn-primary,
.cq-grp-cta-actions .cq-btn-ghost {
    flex: 0 0 auto;
    width: auto;
    min-width: 210px;
    padding: 0.85rem 1.8rem;
    font-size: 0.72rem;
    min-height: 44px;
}

.cq-grp-cta-hint {
    font-size: 0.65rem;
    color: rgba(255, 255, 255, 0.55);
    letter-spacing: 0.1em;
}

@media (max-width:768px) {
    .cq-grp-cta {
        padding: 3rem 1.5rem;
    }

    .cq-grp-cta-actions {
        flex-direction: column;
        align-items: stretch;
        gap: 0.8rem;
    }

    .cq-grp-cta-actions .cq-btn-primary,
    .cq-grp-cta-actions .cq-btn-ghost {
        width: 100%;
        justify-content: center;
        padding: 0.95rem 1rem;
        font-size: 0.68rem;
        letter-spacing: 0.15em;
        white-space: nowrap;
    }
}

/* ═══════════════════════════════════════════════════
   EVENTS ÜBERSICHT (page-events.php)
   Vorlage: cage-quests-events.html
   ═══════════════════════════════════════════════════ */

/* ── Section-Untertitel (fehlt im globalen CSS) ── */
.cq-section-sub {
    font-size: 0.85rem;
    font-weight: 200;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.8;
    max-width: 820px;
    margin-bottom: 3rem;
}

/* Auf der Events-Übersichtsseite: Label, Titel und Sub zentrieren */
.page-template-page-events .cq-section .cq-section-inner {
    text-align: center;
}

.page-template-page-events .cq-section-sub {
    margin-left: auto;
    margin-right: auto;
}

/* Aber die Cards-Grids bleiben linksbündig (Default) */
.page-template-page-events .cq-ev-cards,
.page-template-page-events .cq-ev-trust {
    text-align: left;
}

/* ── Hero-Content auf der Events-Index-Seite zentrieren ──
   (Sub-Pages wie /events/firmenevents/ nutzen 2-Spalten-Grid + andere Farben,
   die Übersichtsseite hat ein zentriertes Single-Column-Layout mit
   dezenteren Farben laut Vorlage cage-quests-events.html) */
.page-template-page-events .cq-ev-hero {
    min-height: 55vh;
    align-items: flex-end;
}

/* Events-Index nutzt subtilen Gradient statt Raum-Foto-Hintergrund */
.page-template-page-events .cq-ev-hero-bg {
    background:
        linear-gradient(135deg, rgba(178, 148, 116, 0.08) 0%, transparent 50%),
        linear-gradient(250deg, rgba(178, 148, 116, 0.05) 0%, transparent 40%);
    background-color: transparent;
}

.page-template-page-events .cq-ev-hero-bg::after {
    background: linear-gradient(to bottom, transparent 30%, var(--black) 100%);
}

.page-template-page-events .cq-ev-hero-content {
    display: block;
    text-align: center;
    padding: calc(var(--header-height) + 5rem) 3rem 4rem;
}

.page-template-page-events .cq-ev-hero-label {
    font-size: 0.6rem;
    letter-spacing: 0.35em;
    opacity: 1;
}

.page-template-page-events .cq-ev-hero h1 {
    letter-spacing: clamp(0.15rem, 0.8vw, 0.6rem);
}

.page-template-page-events .cq-ev-hero h1 em {
    color: var(--gold);
}

.page-template-page-events .cq-ev-hero-sub {
    font-size: clamp(0.85rem, 1.2vw, 1rem);
    color: rgba(255, 255, 255, 0.5);
    line-height: 1.85;
    max-width: 820px;
    margin: 0 auto 2.5rem;
}

/* ── Hero-Stats: 3-Spalten Variante (Karlsruhe / Freiburg / Stuttgart) ── */
.cq-ev-hero-stats--3col {
    display: flex;
    justify-content: center;
    gap: 1px;
    max-width: 600px;
    margin: 0 auto;
}

.cq-ev-hero-stats--3col .cq-ev-hero-stat {
    flex: 1;
    padding: 1.2rem 1rem;
    background: var(--glass-medium, rgba(255, 255, 255, 0.05));
    border: 1px solid var(--glass-border);
    text-align: center;
}

.cq-ev-hero-stats--3col .cq-ev-hero-stat:first-child { border-right: none; }
.cq-ev-hero-stats--3col .cq-ev-hero-stat:last-child { border-left: none; }

.cq-ev-hero-stats--3col .cq-ev-hero-stat-value {
    display: block;
    font-size: 1.8rem;
    font-weight: 100;
    letter-spacing: 0.05em;
    color: var(--white);
    margin-bottom: 0.2rem;
}

.cq-ev-hero-stats--3col .cq-ev-hero-stat-label {
    display: block;
    font-size: 0.55rem;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.35);
}

/* ── Event Cards Grid ── */
.cq-ev-cards {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}

.cq-ev-card {
    position: relative;
    display: flex;
    flex-direction: column;
    padding: 2.5rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    text-decoration: none;
    color: var(--white);
    transition: all 0.5s var(--ease);
    overflow: hidden;
}

.cq-ev-card::before {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, var(--gold), transparent);
    opacity: 0;
    transition: opacity 0.5s var(--ease);
}

.cq-ev-card:hover {
    border-color: rgba(178, 148, 116, 0.25);
    transform: translateY(-4px);
    background: var(--glass-medium, rgba(255, 255, 255, 0.05));
}

.cq-ev-card:hover::before { opacity: 1; }

.cq-ev-card-number {
    font-size: 3rem;
    font-weight: 100;
    color: rgba(255, 255, 255, 0.04);
    letter-spacing: -0.02em;
    line-height: 1;
    margin-bottom: 1.5rem;
    transition: color 0.5s var(--ease);
}

.cq-ev-card:hover .cq-ev-card-number {
    color: rgba(178, 148, 116, 0.1);
}

.cq-ev-card-icon {
    width: 28px;
    height: 28px;
    margin-bottom: 1.2rem;
    color: var(--gold);
    opacity: 0.7;
}

.cq-ev-card-icon svg { width: 100%; height: 100%; }

.cq-ev-card-title {
    font-size: 1.1rem;
    font-weight: 400;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
}

.cq-ev-card-desc {
    font-size: 0.8rem;
    font-weight: 200;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.8;
    margin-bottom: 1.5rem;
    flex-grow: 1;
}

.cq-ev-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.cq-ev-card-tag {
    font-size: 0.6rem;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    padding: 0.35rem 0.75rem;
    background: var(--glass-heavy, rgba(255, 255, 255, 0.08));
    border: 1px solid var(--glass-border);
    color: rgba(255, 255, 255, 0.5);
}

.cq-ev-card-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 0.7rem;
    font-weight: 400;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    color: var(--gold);
    transition: all 0.3s var(--ease);
}

.cq-ev-card-link-arrow { transition: transform 0.3s var(--ease); }

.cq-ev-card:hover .cq-ev-card-link { color: var(--gold-light); }
.cq-ev-card:hover .cq-ev-card-link-arrow { transform: translateX(5px); }

/* ── Trust Bar ── */
.cq-ev-trust {
    display: flex;
    justify-content: center;
    gap: 3rem;
    padding: 3rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.cq-ev-trust-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    font-size: 0.7rem;
    font-weight: 300;
    letter-spacing: 0.08em;
    color: rgba(255, 255, 255, 0.35);
}

.cq-ev-trust-icon {
    width: 20px;
    height: 20px;
    color: var(--gold);
    opacity: 0.5;
    flex-shrink: 0;
}

.cq-ev-trust-icon svg { width: 100%; height: 100%; }

/* ── B2B Callout ── */
.cq-ev-b2b {
    padding: 5rem 3rem;
}

.cq-ev-b2b-inner {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.cq-ev-b2b-label {
    font-size: 0.55rem;
    letter-spacing: 0.35em;
    text-transform: uppercase;
    color: var(--gold);
    opacity: 0.6;
    margin-bottom: 1rem;
}

.cq-ev-b2b-title {
    font-size: clamp(1.4rem, 2.5vw, 2rem);
    font-weight: 100;
    letter-spacing: 0.15em;
    text-transform: uppercase;
    line-height: 1.3;
    margin-bottom: 1rem;
}

.cq-ev-b2b-text {
    font-size: 0.85rem;
    font-weight: 200;
    color: rgba(255, 255, 255, 0.45);
    line-height: 1.85;
    margin-bottom: 2rem;
}

.cq-ev-b2b-facts {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.cq-ev-b2b-fact {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.2rem 1.5rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
}

.cq-ev-b2b-fact-icon {
    width: 22px;
    height: 22px;
    flex-shrink: 0;
    color: var(--gold);
    opacity: 0.5;
}

.cq-ev-b2b-fact-icon svg { width: 100%; height: 100%; }

.cq-ev-b2b-fact-text {
    font-size: 0.8rem;
    font-weight: 300;
    color: rgba(255, 255, 255, 0.6);
    line-height: 1.5;
}

.cq-ev-b2b-fact-text strong {
    color: rgba(255, 255, 255, 0.85);
    font-weight: 400;
}

.cq-ev-b2b-actions {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
}

/* ── Generische CTA-Sektion (wird auch auf Events-Index verwendet) ── */
.cq-cta-section {
    position: relative;
    z-index: 1;
    padding: 5rem 3rem;
    text-align: center;
    background: var(--black);
}

.cq-cta-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse at center, rgba(178, 148, 116, 0.06) 0%, transparent 70%);
    pointer-events: none;
}

.cq-cta-title {
    font-size: clamp(1.5rem, 3vw, 2.2rem);
    font-weight: 100;
    letter-spacing: 0.3em;
    text-transform: uppercase;
    margin-bottom: 0.8rem;
    position: relative;
    z-index: 1;
}

.cq-cta-sub {
    font-size: 0.85rem;
    font-weight: 200;
    color: rgba(255, 255, 255, 0.4);
    margin-bottom: 2rem;
    position: relative;
    z-index: 1;
}

.cq-cta-section > div {
    position: relative;
    z-index: 1;
}

/* Buttons in der CTA-Section nicht stretchen (flex: 1 aus global.css
   würde sie sonst auf die volle Container-Breite ausdehnen) */
.cq-cta-section .cq-btn-primary,
.cq-cta-section .cq-btn-ghost {
    flex: 0 0 auto;
    width: auto;
    min-width: 200px;
}

/* ── Events-Übersicht Responsive ── */
@media (max-width: 768px) {
    .cq-ev-cards { grid-template-columns: 1fr; }
    .cq-ev-card { padding: 2rem 1.5rem; }
    .cq-ev-trust { flex-direction: column; gap: 1rem; align-items: center; padding: 2rem 1rem; }
    .cq-ev-b2b { padding: 3rem 1.5rem; }
    .cq-ev-b2b-inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .cq-ev-hero-stats--3col { flex-wrap: wrap; }
    .cq-ev-hero-stats--3col .cq-ev-hero-stat { min-width: 45%; border: 1px solid var(--glass-border); }
    .cq-cta-section { padding: 3rem 1.5rem; }
    .page-template-page-events .cq-ev-hero-content {
        padding: calc(var(--header-height-mobile) + 3rem) 1.5rem 3rem;
    }
}

@media (max-width: 480px) {
    .cq-ev-card-number { font-size: 2rem; margin-bottom: 1rem; }
}

/* ═══════════════════════════════════════════════
   CQ DESIGN-UPGRADE v2 — Events
   ═══════════════════════════════════════════════ */

/* Section labels also left-aligned (consistent with titles) */
.cq-ev-section-label {
    text-align: left;
}

/* Exception: Hero and CTA-final stay centered */
.cq-cta-final .cq-ev-section-title,
.cq-cta-final .cq-ev-section-label,
.cq-cta-section .cq-ev-section-title,
.cq-cta-section .cq-ev-section-label {
    text-align: center;
}

/* Firmen CTA: Hover im Sekundaer-Ton fuer "Anfrage senden" */
.page-template-page-event-firmen .cq-ev-cta .cq-btn-primary:hover {
    border-color: var(--accent-border);
    box-shadow: 0 15px 40px var(--accent-border), inset 0 0 20px rgba(255, 255, 255, 0.2);
}

.page-template-page-event-firmen .cq-ev-cta .cq-btn-ghost:hover {
    border-color: var(--accent-border);
}

/* ═══ FOOTER ═══ */