/* ========================================
   PROF. BUBBLES 2026
   Global + homepage stylesheet.

   Cleaned structure:
   01. Design tokens
   02. Base typography + animation safety
   03. Shared section headers
   04. Buttons
   05. Hero / slider system
   06. Homepage slides
   07. Homepage show cards
   08. Quote / testimonial breaks
   09. About section
   10. Career highlights
   11. FAQ section
   12. Contact section
   13. Footer
   14. Responsive
   ======================================== */


/* ========================================
   01. DESIGN TOKENS
   ======================================== */

:root {
    --pb-blue: #2596BE;
    --pb-stage-dark: #08131D;
    --pb-deep-blue: #0B2233;
    --pb-soft-white: #F7F8FA;
    --pb-silver-mist: #DCE6EE;
    --pb-iridescent-blue: #B6D9FF;
    --pb-magic-violet: #7E7AF5;

    --pb-text-dark: #12202A;
    --pb-text-muted: #64717B;

    --pb-radius-card: 14px;
    --pb-shadow-soft: 0 18px 45px rgba(8, 19, 29, 0.12);

    --accent-warm: #E09A5B;
    --accent-warm-hover: #C7774A;

    --pb-font-display: "Playfair Display", "Cormorant Garamond", Georgia, serif;
    --pb-font-body: "Inter", "Raleway", "Helvetica Neue", Arial, sans-serif;
    --pb-font-heading: var(--pb-font-body);

    /* Legacy aliases */
    --prof-blue: var(--pb-blue);
    --dark: #111827;
    --grey: #bbb;
    --white: #fff;
}


/* ========================================
   02. BASE TYPOGRAPHY + ANIMATION SAFETY
   ======================================== */

body {
    font-family: var(--pb-font-body);
    color: var(--pb-text-dark);
    -webkit-font-smoothing: antialiased;
}

body h1,
body .h1,
body .hero-title,
body .home_h1,
body .hero-content h1,
body .hero_section_img_normal .hero-title {
    font-family: var(--pb-font-display) !important;
    font-weight: 500 !important;
    line-height: 1.05;
    letter-spacing: -0.02em;
}

body h2,
body h3,
body .h2,
body .h3,
body .section-title,
body .feature-title {
    font-family: var(--pb-font-heading);
    font-weight: 500;
    line-height: 1.12;
    letter-spacing: -0.015em;
}

p,
li,
.hero-subtitle,
.section-intro {
    font-family: var(--pb-font-body);
    line-height: 1.7;
}

.ae {
    visibility: hidden;
}

.ae.visible {
    visibility: visible;
}


/* ========================================
   03. SHARED SECTION HEADERS
   ======================================== */

.pb-section-header {
    max-width: 850px;
    margin: 0 auto 70px;
    text-align: center;
}

.pb-kicker {
    display: inline-block;
    margin-bottom: 18px;

    color: var(--pb-blue);

    font-size: 13px;
    font-weight: 700;
    letter-spacing: 0.22em;
    text-transform: uppercase;
}

.pb-section-heading,
.pb-heading {
    margin: 0 0 20px;

    color: var(--pb-text-dark);

    font-family: var(--pb-font-heading);
    font-size: clamp(36px, 4.3vw, 56px);
    font-weight: 400;
    line-height: 1.08;
    letter-spacing: -0.035em;
}

.pb-subheading {
    max-width: 700px;
    margin: 0 auto;

    color: var(--pb-text-muted);

    font-size: 22px;
    line-height: 1.5;
}

.pb-divider {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    margin: 22px 0 34px;
}

.pb-divider::before,
.pb-divider::after {
    content: "";

    width: 58px;
    height: 2px;

    background: rgba(37, 150, 190, 0.35);
}

.pb-divider span {
    color: #D18A3B;

    font-size: 18px;
    line-height: 1;
}


/* ========================================
   04. BUTTONS
   ======================================== */

.pb-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    padding: 18px 34px;

    background: var(--pb-blue);
    border: 2px solid var(--pb-blue);
    border-radius: 4px;
    box-shadow: none;

    color: #ffffff;

    font-family: var(--pb-font-body);
    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.12em;
    line-height: 1;
    text-transform: uppercase;
    text-decoration: none;

    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease,
        box-shadow 0.25s ease;
}

.pb-btn:hover,
.pb-btn:focus {
    background: #37a9d4;
    border-color: #37a9d4;
    color: #ffffff;
    text-decoration: none;

    transform: translateY(-2px);

    box-shadow:
        0 0 18px rgba(37, 150, 190, 0.28),
        0 0 36px rgba(37, 150, 190, 0.12);
}

.pb-btn-outline {
    background: rgba(255, 255, 255, 0.02);
    border-color: rgba(255, 255, 255, 0.9);

    color: #ffffff;

    backdrop-filter: blur(3px);
}

.pb-btn-outline::after {
    content: "→";

    margin-left: 10px;

    font-size: 18px;
    line-height: 1;
}

.pb-btn-outline:hover,
.pb-btn-outline:focus {
    background: rgba(255, 255, 255, 0.92);
    border-color: rgba(255, 255, 255, 0.92);
    box-shadow: none;

    color: var(--pb-stage-dark);
}

.pb-btn-sm {
    padding: 14px 26px;

    font-size: 12px;
    letter-spacing: 0.12em;
}

/* Legacy Bootstrap fallback */

.btn,
a.btn,
a.btn:visited,
a.btn:link {
    padding: 12px 22px;

    background-color: var(--pb-blue);
    border: 0;
    border-radius: 999px;
    box-shadow: none;
    outline: 0 !important;

    color: #ffffff;

    font-family: var(--pb-font-body);
    font-size: 12px;
    font-weight: 800;
    letter-spacing: 0.13em;
    text-transform: uppercase;

    transition:
        background-color 0.25s ease,
        color 0.25s ease,
        transform 0.25s ease;
}

.btn:hover,
.btn:focus,
a.btn:hover,
a.btn:focus {
    background-color: var(--pb-stage-dark);
    color: #ffffff;
    text-decoration: none;
    transform: none;
}

.pb-btn,
.pb-btn:link,
.pb-btn:visited {
    color: #ffffff;
}

.pb-btn.pb-btn-outline,
.pb-btn.pb-btn-outline:link,
.pb-btn.pb-btn-outline:visited {
    color: var(--pb-blue);
}

.pb-btn.pb-btn-outline:hover {
    color: #ffffff;
}
/* ========================================
   05. HERO / SLIDER SYSTEM
   ======================================== */

.hero-with-curve {
    position: relative;
    overflow: hidden;
}

.hero-curve {
    position: absolute;
    left: 0;
    right: 0;
    bottom: -20px;
    z-index: 6;

    height: 130px;

    pointer-events: none;
}

.hero-curve svg {
    display: block;

    width: 100%;
    height: 100%;
}

.hero-curve path {
    fill: var(--pb-soft-white);
}

.hero-with-curve .shows-bubble {
    position: absolute;
    right: 4%;
    bottom: -45px;
    z-index: 8;

    width: 200px;

    opacity: 0.45;
    pointer-events: none;
}

/* Hero logo */

#slides .hero-logo {
    display: block;
    position: absolute;
    top: 5vh;
    left: 4.5vw;
    z-index: 80;

    width: clamp(450px, 24vw, 620px);
    height: 250px;

    background-size: contain;
    background-position: left top;
    background-repeat: no-repeat;

    opacity: 0.95;
}

/* Temporary legacy logo support */

.pb-logo-new {
    position: absolute;
    top: 6px;
    left: 46px;
    z-index: 1000;

    padding: 0;
    margin: 0;
    overflow: visible;

    line-height: 1;
}

.pb-logo-new img {
    display: block;

    width: 220px;
    height: auto;
    max-width: none;

    padding: 0;
    margin: 0;
}

/* Generic hero */

.hero_section_img_normal {
    position: relative;

    display: flex;
    align-items: center;

    min-height: 90vh;

    background-size: cover;
    background-position: center 35%;
}

.hero_section_img_normal .container {
    max-width: 100%;
    text-align: left;
}

.hero-content {
    position: relative;
    z-index: 2;

    width: 100%;
    padding: 40px 20px;

    color: #ffffff;
    text-align: left !important;
}

.hero-content .container {
    padding-left: 8%;
}

.hero-subtitle {
    margin-bottom: 30px;

    font-size: 22px;
    font-weight: 400;
    line-height: 1.6;

    opacity: 0.9;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;

    background: linear-gradient(to right,
            rgba(12, 10, 22, 0.52) 0%,
            rgba(12, 10, 22, 0.38) 30%,
            rgba(12, 10, 22, 0.16) 55%,
            rgba(12, 10, 22, 0.03) 76%,
            rgba(12, 10, 22, 0) 100%);
}

/* Subpage hero typography */

.hero-single .hero-content {
    position: absolute;
    left: 5.5vw;
    top: 58%;
    z-index: 5;

    max-width: 900px;
    padding: 0;

    color: #ffffff;
    text-align: left;

    transform: translateY(-50%);
}

.hero-single .hero-title {
    max-width: 920px;
    margin: 0 0 22px;

    color: #ffffff;

    font-family: var(--pb-font-display);
    font-size: clamp(62px, 5.4vw, 92px);
    font-weight: 500;
    line-height: 0.92;
    letter-spacing: -0.045em;

    text-shadow: 0 2px 18px rgba(0, 0, 0, 0.38);
}

.hero-single .hero-subtitle {
    max-width: 760px;
    margin: 0;

    color: rgba(255, 255, 255, 0.9);

    font-family: var(--pb-font-body);
    font-size: clamp(22px, 1.55vw, 30px);
    font-weight: 400;
    line-height: 1.35;

    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.42);
}

/* Hero CTA */

.hero-cta-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 14px;

    margin-top: 28px;
}

.hero-cta-row .btn {
    margin-bottom: 0;
}

.hero-cta-band {
    position: absolute;
    left: 5.5vw;
    right: auto;
    bottom: 118px;
    z-index: 20;

    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 18px;

    width: auto;
    padding: 0;
    margin: 0;

    text-align: left;

    transform: none;
}

.hero-cta-band .btn {
    margin-right: 0;
}

.hero-cta-band .btn-lg {
    padding: 14px 24px;

    font-size: 12px;
    letter-spacing: 1.4px;
}

.hero-cta-band .btn-primary:hover,
.hero-cta-band .btn-primary:focus {
    background-color: #37a9d4;
    color: var(--white);

    box-shadow:
        0 0 18px rgba(37, 150, 190, 0.28),
        0 0 36px rgba(37, 150, 190, 0.12);
}

.hero-cta-band .btn-outline.btn-white {
    background-color: rgba(255, 255, 255, 0.02);
    border-width: 1.5px;

    backdrop-filter: blur(3px);
}

.hero-cta-band .btn-outline.btn-white:hover,
.hero-cta-band .btn-outline.btn-white:focus {
    background-color: rgba(255, 255, 255, 0.92);
    color: var(--dark);
}

/* Slider controls */

.slides-navigation a {
    opacity: 0.18;
    transition: opacity 0.25s ease;
}

.slides-navigation a:hover {
    opacity: 0.45;
}

.slides-navigation a:focus {
    outline: none;
    box-shadow: none;
}

.slides-pagination {
    display: none !important;
}


/* ========================================
   06. HOMEPAGE SLIDES
   ======================================== */

/* Shared slide text */

.slide-home .hero-content,
.slide-alchemy .hero-content,
.slide-comedy .hero-content {
    position: absolute;
    left: 4.2vw;
    top: 68%;
    z-index: 5;

    max-width: 760px;

    text-align: left;

    transform: translateY(-50%);
}

.slide-home .hero-content h1,
.slide-alchemy .hero-content h1 {
    margin: 0 0 18px;

    color: #ffffff;

    font-family: var(--pb-font-display);
    font-size: clamp(50px, 4.3vw, 74px);
    font-weight: 500;
    line-height: 0.9;
    letter-spacing: -0.045em;
}

.slide-home .hero-content .subtitle,
.slide-alchemy .hero-content .subtitle {
    max-width: 520px;
    margin-top: -4px;
    margin-bottom: 22px;

    color: rgba(255, 255, 255, 0.88);

    font-family: var(--pb-font-body);
    font-size: clamp(20px, 1.35vw, 27px);
    font-weight: 400;
    line-height: 1.35;
}

/* Slide 1: Bag */

#slides .slides-container .slide-home.parallax {
    background-size: 128% auto !important;
    background-position: 42% center !important;
    background-repeat: no-repeat !important;
}

/* ========================================
   GERMAN HOME HERO - SLIDE 1
   ======================================== */

html[lang="de"] .slide-home .hero-content {
    transform: translateY(-220px);
}

html[lang="de"] .slide-home .hero-content h1 {
    max-width: 720px;

    font-size: clamp(4.25rem, 5.1vw, 6.8rem);
    line-height: 0.92;
    letter-spacing: -0.035em;

    margin-bottom: 24px;
}

html[lang="de"] .slide-home .hero-content .subtitle {
    max-width: 560px;

    font-size: 2rem;
    line-height: 1.3;

    color: rgba(255, 255, 255, 0.9);

    margin-bottom: 42px;
}

@media (max-width: 991px) {

    html[lang="de"] .slide-home .hero-content {
        transform: translateY(-70px);
    }

    html[lang="de"] .slide-home .hero-content h1 {
        max-width: 100%;
        font-size: clamp(2.9rem, 8vw, 4.2rem);
        line-height: 0.94;
        letter-spacing: -0.03em;
        margin-bottom: 18px;
    }

    html[lang="de"] .slide-home .hero-content .subtitle {
        max-width: 90%;
        font-size: 1.3rem;
        line-height: 1.35;
        margin-bottom: 34px;
    }

    html[lang="de"] .slide-home .hero-cta-band {
        margin-top: 24px;
    }
}

/* ========================================
   GERMAN HOME HERO - SLIDE 2
   Light Table / Alchemy
   ======================================== */

#slides .slides-container .slide-alchemy.parallax {
    background-size: 112% auto !important;
    background-position: 48% center !important;
    background-repeat: no-repeat !important;
}

html[lang="de"] .slide-alchemy .hero-content {
    transform: translateY(-210px);
}

html[lang="de"] .slide-alchemy .hero-content h1 {
    max-width: 660px;

    font-size: clamp(46px, 3.3vw, 62px);
    line-height: 1.03;
    letter-spacing: -0.035em;

    margin-bottom: 18px;
}

html[lang="de"] .slide-alchemy .hero-content .subtitle {
    max-width: 560px;

    font-size: clamp(20px, 1.3vw, 25px);
    line-height: 1.4;

    color: rgba(255, 255, 255, 0.9);

    margin-bottom: 34px;
}

@media (max-width: 991px) {

    #slides .slides-container .slide-alchemy.parallax {
        background-size: cover !important;
        background-position: 58% center !important;
    }

    html[lang="de"] .slide-alchemy .hero-content {
        transform: translateY(-95px);
    }

    html[lang="de"] .slide-alchemy .hero-content h1 {
        max-width: 100%;
        font-size: clamp(2.7rem, 7.5vw, 4rem);
        line-height: 0.96;
        letter-spacing: -0.03em;
        margin-bottom: 18px;
    }

    html[lang="de"] .slide-alchemy .hero-content .subtitle {
        max-width: 90%;
        font-size: 1.25rem;
        line-height: 1.35;
        margin-bottom: 32px;
    }

    html[lang="de"] .slide-alchemy .hero-cta-band {
        margin-top: 24px;
    }
}

/* ========================================
   SLIDE 3: EVENTS
   ======================================== */

.slide-events .hero-content {
    position: absolute;
    left: 60px;
    top: 60%;
    z-index: 5;

    max-width: 660px;

    text-align: left;

    transform: translateY(-50%);
}

.slide-events .hero-content h1 {
    margin: 0 0 18px;

    color: #ffffff;

    font-family: var(--pb-font-display);
    font-size: clamp(46px, 3.3vw, 62px);
    font-weight: 500;
    line-height: 1.03;
    letter-spacing: -0.035em;
}

.slide-events .hero-content .subtitle {
    max-width: 560px;

    color: rgba(255, 255, 255, 0.9);

    font-family: var(--pb-font-body);
    font-size: clamp(20px, 1.3vw, 25px);
    line-height: 1.4;
}
/* Slide 4: Comedy */

.slide-comedy {
    position: relative;
}

.slide-comedy .img-overlay-solid {
    background: linear-gradient(90deg,
            rgba(15, 10, 15, 0.75) 0%,
            rgba(15, 10, 15, 0.45) 35%,
            rgba(15, 10, 15, 0.00) 65%);
}

.slide-comedy .hero-content {
    left: 1vw;
    transform: translateY(-56%);
}

.slide-comedy .logo-index {
    z-index: 6;
}

.slide-comedy .hero-title {
    margin: 0 0 18px;

    color: #ffffff;

    font-family: var(--pb-font-display);
    font-size: clamp(52px, 4vw, 72px);
    font-weight: 500;
    line-height: 0.95;
    letter-spacing: -0.04em;
}

.slide-comedy .hero-subtitle {
    max-width: 520px;

    color: rgba(255, 255, 255, 0.9);

    font-family: var(--pb-font-body);
    font-size: clamp(20px, 1.35vw, 26px);
    line-height: 1.4;
}
/* ========================================
   SLIDE 5: MOMENTS
   ======================================== */

.slide-moments .hero-content {
    position: absolute;
    left: 60px;
    top: 50%;
    z-index: 5;

    max-width: 680px;

    text-align: left;

    transform: translateY(-62%);
}

.slide-moments .hero-title {
    max-width: 700px;
    margin: 0 0 18px;

    color: #ffffff;

    font-family: var(--pb-font-display);
    font-size: clamp(46px, 3.3vw, 62px);
    font-weight: 500;
    line-height: 1.03;
    letter-spacing: -0.035em;

    text-shadow: 0 2px 16px rgba(0, 0, 0, 0.45);
}

.slide-moments .hero-subtitle {
    max-width: 560px;

    color: rgba(255, 255, 255, 0.9);

    font-family: var(--pb-font-body);
    font-size: clamp(20px, 1.3vw, 25px);
    font-weight: 400;
    line-height: 1.4;

    text-shadow: 0 2px 14px rgba(0, 0, 0, 0.45);
}
/* ========================================
   07. HOMEPAGE SHOW CARDS
   ======================================== */

#shows.shows-section {
    position: relative;
    overflow: visible;

    padding: 130px 0;

    background: var(--pb-soft-white);
    color: var(--pb-text-dark);
}

#shows .pb-section-header,
#shows .show-door-row {
    position: relative;
    z-index: 5;
}

#shows .pb-section-header {
    margin-bottom: 80px;
}

#shows .show-door-row {
    display: flex;
    align-items: stretch;
}

#shows .show-door-row>div {
    display: flex;
}

#shows .show-door {
    display: flex;
    flex-direction: column;

    width: 100%;
    overflow: hidden;

    background: #ffffff;
    border: 1px solid rgba(37, 150, 190, 0.14);
    border-radius: 16px;
    box-shadow: 0 22px 55px rgba(8, 19, 29, 0.13);

    color: var(--pb-text-dark);

    transition:
        transform 0.35s ease,
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

#shows .show-door:hover {
    border-color: rgba(209, 138, 59, 0.45);

    transform: translateY(-6px);

    box-shadow:
        0 24px 54px rgba(8, 19, 29, 0.10),
        0 0 0 1px rgba(209, 138, 59, 0.12);
}

#shows .show-door-img,
#shows .show-door-img-alchemy {
    display: block;

    width: 100%;
    height: 310px;

    object-fit: cover;
    object-position: center center;

    transition: transform 0.8s ease;
}

#shows .show-door:hover .show-door-img,
#shows .show-door:hover .show-door-img-alchemy {
    transform: scale(1.04);
}

#shows .show-icon {
    position: relative;
    z-index: 10;

    display: flex;
    align-items: center;
    justify-content: center;

    width: 92px;
    height: 92px;
    margin: -46px auto 16px;

    background: var(--pb-stage-dark);
    border: 2px solid var(--pb-blue);
    border-radius: 50%;
    box-shadow: 0 12px 24px rgba(8, 19, 29, 0.16);

    transition:
        transform 0.3s ease,
        background 0.3s ease,
        border-color 0.3s ease,
        box-shadow 0.3s ease;
}

#shows .show-icon img {
    display: block;

    width: 58px;
    height: 58px;
}

#shows .show-door-featured .show-icon img {
    transform: translateY(-7px);
}

#shows .show-icon-people img,
#shows .show-door-img-family+.show-icon img {
    width: 76px;
    height: 76px;
}

#shows .show-door:hover .show-icon {
    border-color: var(--pb-iridescent-blue);

    transform: translateY(-4px);

    background:
        radial-gradient(circle at 30% 25%,
            rgba(182, 217, 255, 0.18),
            rgba(8, 19, 29, 0) 46%),
        var(--pb-stage-dark);

    box-shadow:
        0 14px 28px rgba(8, 19, 29, 0.18),
        0 0 24px rgba(37, 150, 190, 0.16);
}

#shows .show-door h3 {
    margin: 14px 24px 24px;

    color: #12202A;
    text-align: center;

    font-size: 24px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: 0.01em;
    text-transform: uppercase;
}

#shows .show-meta,
#shows .show-benefit {
    max-width: none;
    padding: 0 24px;

    text-align: center;

    font-size: 18px;
}

#shows .show-meta {
    margin: 0 24px 20px;

    color: #6E7B86;

    font-weight: 400;
    line-height: 1.55;
}

#shows .show-benefit {
    margin: 0 0 26px;

    color: #667480;

    font-weight: 600;
    line-height: 1.55;
}

#shows .show-door-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    align-self: center;

    margin: auto auto 28px;
    padding: 0;

    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;

    color: var(--pb-blue);

    font-size: 13px;
    font-weight: 800;
    letter-spacing: 0.16em;
    line-height: 1.2;
    text-transform: uppercase;
    text-decoration: none;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

#shows .show-door-btn::after {
    content: "→";

    margin-left: 8px;

    font-size: 15px;
    line-height: 1;
}

#shows .show-door-btn:hover {
    background: transparent;
    color: var(--pb-stage-dark);
    text-decoration: none;

    transform: translateY(-2px);
}


/* ========================================
   08. QUOTE / TESTIMONIAL BREAKS
   ======================================== */

.pb-image-break,
.pb-testimonial-break {
    position: relative;
    overflow: hidden;

    color: #ffffff;

    background-size: cover;
    background-position: center center;
    background-repeat: no-repeat;
}

.pb-image-break {
    min-height: 520px;
    padding: 70px 0;

    display: flex;
    align-items: center;

    background-image: url("../img/pictures/prof-bubbles_blue_bubble_break.jpg");
}

.pb-testimonial-break {
    padding: 58px 0;

    background-image: url("../img/pictures/prof-bubbles_index_quote.jpg");
}

.pb-image-break-overlay,
.pb-testimonial-break::before {
    position: absolute;
    inset: 0;
    z-index: 1;

    content: "";
}

.pb-image-break-overlay {
    background: linear-gradient(90deg,
            rgba(10, 18, 28, 0.72) 0%,
            rgba(10, 18, 28, 0.45) 35%,
            rgba(10, 18, 28, 0.18) 65%,
            rgba(10, 18, 28, 0.05) 100%);
}

.pb-testimonial-break::before {
    background: linear-gradient(90deg,
            rgba(8, 19, 29, 0.68) 0%,
            rgba(8, 19, 29, 0.55) 28%,
            rgba(8, 19, 29, 0.34) 50%,
            rgba(8, 19, 29, 0.10) 78%,
            rgba(8, 19, 29, 0.02) 100%);
}

.pb-image-break-content,
.pb-testimonial-inner {
    position: relative;
    z-index: 2;

    text-align: left;
}

.pb-image-break-content {
    width: min(920px, 86vw);
    margin-left: clamp(30px, 11%, 180px);
}

.pb-testimonial-inner {
    max-width: 660px;
    margin: 0 0 0 5%;
}

.pb-image-break blockquote,
.pb-testimonial-break blockquote {
    position: relative;

    margin: 0;
    padding-left: 0.55em;

    color: #ffffff;

    font-family: var(--pb-font-body);
    font-size: clamp(28px, 1.8vw, 38px);
    font-style: italic;
    font-weight: 300;
    line-height: 1.14;

    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.30);
}

.pb-image-break blockquote::before,
.pb-testimonial-break blockquote::before {
    content: "“";

    position: absolute;
    left: 0;
    top: -0.42em;

    color: rgba(182, 217, 255, 0.35);

    font-size: 3em;
    font-style: normal;
    font-weight: 400;
    line-height: 1;

    text-shadow: none;
}

.pb-image-break-content cite {
    display: block;

    margin-top: 22px;
    padding-left: 0.55em;

    color: rgba(255, 255, 255, 0.82);

    font-size: 15px;
    font-style: normal;
    font-weight: 600;
    letter-spacing: 0;
    text-transform: none;
}

.pb-testimonial-stars {
    margin-bottom: 16px;

    color: var(--pb-iridescent-blue);

    font-size: 18px;
    letter-spacing: 0.18em;
}

.pb-testimonial-name {
    margin-top: 22px;

    color: #ffffff;

    font-size: 18px;
    font-weight: 600;
}

.pb-testimonial-role {
    margin-top: 4px;

    color: rgba(255, 255, 255, 0.82);

    font-size: 15px;
    line-height: 1.5;
}


/* ========================================
   09. ABOUT SECTION
   ======================================== */

.pb-about-section {
    background: var(--pb-soft-white);
    padding: 90px 0 110px;
}

.pb-about-section .pb-section-header {
    margin-bottom: 55px;
}

.pb-about-grid {
    display: grid;
    grid-template-columns: 420px minmax(0, 760px);
    align-items: center;
    justify-content: center;
    gap: 90px;
}

.pb-about-image-wrap {
    text-align: center;
}

.pb-about-image {
    width: 420px;
    height: 330px;

    object-fit: cover;

    border-radius: 22px;
    box-shadow: 0 24px 60px rgba(8, 19, 29, 0.18);

    transition:
        transform 0.45s ease,
        box-shadow 0.45s ease;
}

.pb-about-image:hover {
    transform: translateY(-4px);
    box-shadow: 0 30px 70px rgba(8, 19, 29, 0.22);
}

.pb-about-text {
    max-width: 760px;
    padding-top: 10px;
}

.pb-about-text p {
    margin-bottom: 26px;

    color: var(--pb-text-dark);

    font-size: 21px;
    line-height: 1.65;
}

.pb-about-text p:last-child {
    margin-bottom: 0;
}

.pb-about-text strong {
    color: var(--pb-blue);
    font-weight: 700;
}


/* ========================================
   10. CAREER HIGHLIGHTS
   ======================================== */

.pb-career-section {
    position: relative;

    background: var(--pb-soft-white);
    padding: 110px 0 105px;
}

.pb-career-stats {
    display: flex;
    align-items: flex-start;
    justify-content: center;
    gap: 68px;

    max-width: 920px;
    margin: 58px auto 42px;

    text-align: center;
}

.pb-career-stat {
    flex: 1 1 0;
    min-width: 0;
}

.pb-career-number {
    margin-bottom: 14px;

    color: var(--pb-text-dark);

    font-family: var(--pb-font-body);
    font-size: 64px;
    font-weight: 300;
    line-height: 1;
}

.pb-career-label {
    color: var(--pb-text-dark);

    font-size: 16px;
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: 0.02em;
}

.pb-career-note {
    max-width: 780px;
    margin: 0 auto;

    color: var(--pb-text-dark);
    text-align: center;

    font-size: 22px;
    line-height: 1.55;
}


/* ========================================
   11. FAQ SECTION
   ======================================== */

.pb-faq-section {
    position: relative;

    padding: 110px 0;

    background:
        radial-gradient(circle at 15% 15%, rgba(37, 150, 190, 0.06), transparent 28%),
        radial-gradient(circle at 85% 75%, rgba(37, 150, 190, 0.05), transparent 32%),
        var(--pb-soft-white);
}

.pb-faq-layout {
    display: grid;
    grid-template-columns: minmax(0, 1.15fr) minmax(320px, 0.85fr);
    align-items: start;
    gap: 52px;

    max-width: 1180px;
    margin: 0 auto;
}

.pb-faq-list {
    max-width: none;
    margin: 0;
}

.pb-faq-image {
    position: sticky;
    top: 110px;

    overflow: hidden;

    border-radius: 26px;
    box-shadow: 0 28px 70px rgba(8, 19, 29, 0.16);
}

.pb-faq-image img {
    display: block;

    width: 100%;
    height: 620px;

    object-fit: cover;
    object-position: center;
}

.pb-faq-item {
    overflow: hidden;

    margin-bottom: 18px;

    background: rgba(255, 255, 255, 0.92);
    border: 1px solid rgba(37, 150, 190, 0.18);
    border-radius: 18px;
    box-shadow: 0 18px 45px rgba(8, 19, 29, 0.08);

    transition:
        transform 0.25s ease,
        box-shadow 0.25s ease,
        border-color 0.25s ease,
        background 0.25s ease;
}

.pb-faq-item:hover {
    border-color: rgba(37, 150, 190, 0.30);

    transform: translateY(-2px);

    box-shadow: 0 24px 60px rgba(8, 19, 29, 0.12);
}

.pb-faq-item[open] {
    background: #ffffff;
    border-color: rgba(37, 150, 190, 0.35);

    transform: translateY(-2px);

    box-shadow: 0 28px 70px rgba(8, 19, 29, 0.14);
}

.pb-faq-item summary {
    display: flex;
    align-items: center;
    justify-content: space-between;

    padding: 26px 30px;

    color: var(--pb-text-dark);

    cursor: pointer;
    list-style: none;

    font-size: 20px;
    font-weight: 700;
    line-height: 1.35;

    transition: color 0.2s ease;
}

.pb-faq-item summary:hover {
    color: var(--pb-blue);
}

.pb-faq-item summary::-webkit-details-marker {
    display: none;
}

.pb-faq-item summary::marker {
    display: none;
}

.pb-faq-item summary::after {
    content: "";

    flex-shrink: 0;

    width: 10px;
    height: 10px;
    margin-left: 24px;

    border-right: 2px solid var(--pb-blue);
    border-bottom: 2px solid var(--pb-blue);

    transform: rotate(45deg);
    transition: transform 0.25s ease;
}

.pb-faq-item[open] summary::after {
    transform: rotate(-135deg);
}

.pb-faq-item p {
    margin: 0;
    padding: 0 30px 26px;

    color: #53626D;

    font-size: 18px;
    line-height: 1.7;
}


/* ========================================
   12. CONTACT SECTION
   ======================================== */

.pb-contact-section {
    position: relative;
    overflow: hidden;

    min-height: 760px;
    padding: 120px 0;

    color: #ffffff;
}

.pb-contact-bg {
    position: absolute;
    inset: 0;
    z-index: 1;

    background-image: url("../img/pictures/parallax03.jpg");
    background-size: cover;
    background-position: center bottom;
    background-repeat: no-repeat;
}

.pb-contact-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;

    background: linear-gradient(180deg,
            rgba(8, 19, 29, 0.72) 0%,
            rgba(8, 19, 29, 0.58) 45%,
            rgba(8, 19, 29, 0.76) 100%);
}

.pb-contact-inner {
    position: relative;
    z-index: 3;
}

.pb-contact-header {
    max-width: 850px;
    margin: 0 auto 56px;

    text-align: center;
}

.pb-contact-heading {
    margin: 0 0 18px;

    color: #ffffff;

    font-family: var(--pb-font-body);
    font-size: clamp(42px, 4vw, 64px);
    font-weight: 400;
    line-height: 1.05;
    letter-spacing: -0.04em;
}

.pb-contact-subheading {
    max-width: 780px;
    margin: 0 auto 22px;

    color: rgba(255, 255, 255, 0.86);

    font-size: 22px;
    font-weight: 400;
    line-height: 1.5;
}

.pb-contact-direct {
    color: rgba(255, 255, 255, 0.78);

    font-size: 18px;
    line-height: 1.5;
}

.pb-contact-direct a {
    color: var(--pb-iridescent-blue);
    text-decoration: none;
}

.pb-contact-direct a:hover {
    color: #ffffff;
    text-decoration: none;
}

.pb-contact-form-wrap {
    max-width: 920px;
    margin: 0 auto;
}

.pb-contact-form-wrap label {
    color: rgba(255, 255, 255, 0.72);

    font-size: 15px;
    font-weight: 400;
    line-height: 1.4;
}

.pb-contact-form-wrap .form-control {
    height: 54px;

    background: rgba(255, 255, 255, 0.045);
    border: 1px solid rgba(255, 255, 255, 0.38);
    border-radius: 8px;
    box-shadow: none;
    outline: none;

    color: #ffffff;

    transition:
        background-color 0.25s ease,
        border-color 0.25s ease,
        box-shadow 0.25s ease;
}

.pb-contact-form-wrap textarea.form-control {
    height: auto;
    min-height: 190px;

    resize: vertical;
}

.pb-contact-form-wrap .form-control:focus {
    background: rgba(255, 255, 255, 0.075);
    border-color: rgba(182, 217, 255, 0.82);

    box-shadow: 0 0 0 3px rgba(182, 217, 255, 0.16);
}

.pb-contact-form-wrap .form-control::placeholder {
    color: rgba(255, 255, 255, 0.42);
}

.pb-contact-btn {
    margin-top: 24px;
    text-align: center;
}

#contact #error,
#kontakt #error {
    display: none;

    margin-top: 16px;

    color: #ffffff;
}


/* ========================================
   13. FOOTER
   ======================================== */

.pb-footer {
    position: relative;
    overflow: hidden;

    padding: 95px 0 48px;

    background:
        radial-gradient(circle at 50% -20%, rgba(37, 150, 190, 0.16), transparent 34%),
        linear-gradient(180deg, #071118 0%, var(--pb-stage-dark) 100%);

    color: rgba(255, 255, 255, 0.75);
    text-align: center;
}

.pb-footer::before {
    content: "";

    position: absolute;
    top: 0;
    left: 50%;

    width: min(760px, 80vw);
    height: 1px;

    background: linear-gradient(90deg,
            transparent,
            rgba(37, 150, 190, 0.55),
            transparent);

    transform: translateX(-50%);
}

.pb-footer .container {
    position: relative;
    z-index: 2;
}

.pb-footer-logo img {
    display: block;

    max-width: 250px;
    margin: 0 auto 46px;

    opacity: 0.95;
}

.pb-footer-links {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 12px;

    margin-bottom: 42px;

    font-size: 18px;
}

.pb-footer-links a {
    display: inline-block;

    color: rgba(255, 255, 255, 0.78);
    text-decoration: none;

    transition:
        color 0.25s ease,
        transform 0.25s ease;
}

.pb-footer-links a:hover,
.pb-footer-links span#pb-footer-email a:hover {
    color: var(--pb-iridescent-blue);

    transform: translateY(-2px);
}

.pb-footer-links>span:not(#pb-footer-email) {
    margin: 0 8px;

    color: rgba(255, 255, 255, 0.22);
}

.pb-footer-location {
    margin-bottom: 26px;

    color: rgba(255, 255, 255, 0.46);

    font-size: 17px;
}

.pb-footer-language {
    margin-bottom: 26px;

    font-size: 15px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.pb-footer-language a {
    color: rgba(255, 255, 255, 0.55);
    text-decoration: none;

    transition: color 0.25s ease;
}

.pb-footer-language a:hover {
    color: var(--pb-iridescent-blue);
}

.pb-footer-language a.active {
    color: rgba(255, 255, 255, 0.92);
    font-weight: 600;
}

.pb-footer-language span {
    margin: 0 10px;

    color: rgba(255, 255, 255, 0.25);
}

.pb-footer-legal {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;

    margin-bottom: 36px;

    font-size: 15px;
}

.pb-footer-legal a {
    color: rgba(255, 255, 255, 0.48);
    text-decoration: none;

    transition: color 0.25s ease;
}

.pb-footer-legal a:hover {
    color: var(--pb-iridescent-blue);
}

.pb-footer-legal span {
    color: rgba(255, 255, 255, 0.22);
}

.pb-footer-copyright {
    color: rgba(255, 255, 255, 0.30);

    font-size: 14px;
    letter-spacing: 0.03em;
}


/* ========================================
   14. RESPONSIVE
   ======================================== */

/* Tablet */

@media (max-width: 991px) {

    .pb-about-grid {
        grid-template-columns: 1fr;
        gap: 45px;

        text-align: center;
    }

    .pb-about-text {
        max-width: 680px;
        margin: 0 auto;
        padding-top: 0;
    }

    .pb-career-stats {
        max-width: 760px;
        gap: 36px;
    }

    .pb-career-number {
        font-size: 56px;
    }

    .pb-career-note {
        font-size: 20px;
    }

}

/* Mobile */

@media (max-width: 768px) {

    /* Global */

    .container {
        padding-left: 22px;
        padding-right: 22px;
    }

    .pb-section-header {
        margin-bottom: 50px;
    }

    .pb-kicker {
        font-size: 11px;
        letter-spacing: 0.18em;
    }

    .pb-section-heading,
    .pb-heading {
        font-size: clamp(36px, 10vw, 46px);
        line-height: 1.08;
    }

    .pb-subheading {
        font-size: 18px;
        line-height: 1.45;
    }

    .pb-divider::before,
    .pb-divider::after {
        width: 42px;
    }


    /* Hero slider */

    #slides {
        display: block !important;
        min-height: 100vh;
    }

    .slider_alt {
        display: none !important;
    }

    #slides,
    #slides .slides-container,
    #slides .parallax {
        height: 100svh !important;
        min-height: 680px;
    }

    #slides .parallax {
        background-size: cover !important;
        background-position: center center !important;
        background-repeat: no-repeat !important;
    }

    #slides .hero-logo {
        top: 24px;
        left: 24px;

        width: 210px;
        height: 105px;

        opacity: 0.96;
    }

    #slides .logo-index.header_logo {
        display: block !important;
        position: absolute;
        top: 18px;
        left: 18px;
        right: auto !important;
        bottom: auto !important;
        z-index: 50;

        width: 110px;
        height: auto;

        opacity: 0.95;
    }

    #slides .logo-index.header_logo img {
        display: block;

        width: 100%;
        height: auto;
    }

    #slides .hero-content {
        top: 50% !important;

        transform: translateY(-44%) !important;
    }

    #slides .hero-content h1,
    .hero-title {
        max-width: 11ch;

        font-size: clamp(42px, 12vw, 58px) !important;
        line-height: 0.96 !important;
    }

    #slides .hero-content p,
    .hero-subtitle,
    .hero-content .subtitle {
        max-width: 24ch;

        font-size: 18px !important;
        line-height: 1.45;
    }

    .hero-content {
        text-align: left;
    }

    .hero-content .container {
        padding-top: 120px !important;
        padding-bottom: 22px;
    }

    .hero-content .col-md-6 {
        width: 100%;
        max-width: 420px;
    }

    .hero-cta-row {
        justify-content: center;
    }

    .hero-cta-row .btn,
    .hero-cta .btn {
        display: inline-flex;
        align-items: center;
        justify-content: center;

        width: auto;
        max-width: 260px;
        padding: 12px 18px;

        font-size: 14px;
        line-height: 1.25;
        text-align: center;
        white-space: normal;
    }

    .hero-cta-band {
        left: 5.5vw;
        right: 22px;
        bottom: 70px;

        flex-direction: column;
        align-items: stretch;
        gap: 12px;
    }

    .hero-cta-band .btn,
    .hero-cta-band .pb-btn {
        justify-content: center;

        width: 100%;
        max-width: none;
    }

    .slides-pagination,
    .slides-navigation {
        display: none !important;
    }

    .hero-with-curve .shows-bubble {
        right: -28px;
        bottom: -32px;

        width: 130px;

        opacity: 0.32;
    }


    /* Mobile hero images */

    #slides .slides-container>div:nth-child(1) {
        background-image: url("../img/mobile/prof-bubbles-bag-hero-mobile.jpg") !important;
    }

    #slides .slides-container>div:nth-child(2) {
        background-image: url("../img/mobile/prof-bubbles-lighttable-mobile.jpg") !important;
    }

    #slides .slides-container>div:nth-child(3) {
        background-image: url("../img/mobile/prof-bubbles-corporate-mobile.jpg") !important;
    }

    #slides .slides-container>div:nth-child(4) {
        background-image: url("../img/mobile/prof-bubbles-comedy-mobile.jpg") !important;
    }

    #slides .slides-container>div:nth-child(5) {
        background-image: url("../img/mobile/prof-bubbles-kib-mobile.jpg") !important;
    }


    /* Shows */

    #shows.shows-section {
        padding: 90px 0;
    }

    #shows .pb-section-header {
        margin-bottom: 55px;
    }

    #shows .show-door {
        max-width: 420px;
        margin: 0 auto 38px;
    }

    #shows .show-door-img,
    #shows .show-door-img-alchemy {
        height: 245px;
    }

    #shows .show-icon {
        width: 92px;
        height: 92px;
        margin: -46px auto 14px;
    }

    #shows .show-icon img {
        width: 58px;
        height: 58px;
    }

    #shows .show-icon-people img,
    #shows .show-door-img-family+.show-icon img {
        width: 76px;
        height: 76px;
    }

    #shows .show-meta {
        padding: 0 22px;

        font-size: 15.5px;
        line-height: 1.45;
    }

    #shows .show-benefit {
        padding: 0 24px;

        font-size: 17px;
    }

    #shows .show-door-btn {
        margin-bottom: 24px;
    }


    /* Image break */

    .pb-image-break {
        min-height: 420px;
        padding: 64px 0;
    }

    .pb-image-break-content {
        width: min(100%, 86vw);
        margin-left: 7%;
        margin-right: 7%;
    }

    .pb-image-break-content blockquote {
        font-size: clamp(29px, 8vw, 36px);
        line-height: 1.16;
    }


    /* About */

    .pb-about-section {
        padding: 82px 0 88px;
    }

    .pb-about-grid {
        gap: 38px;
    }

    .pb-about-image {
        width: 100%;
        max-width: 360px;
        height: 290px;
    }

    .pb-about-text {
        text-align: left;
    }

    .pb-about-text p {
        font-size: 18px;
        line-height: 1.62;
    }


    /* Career */

    .pb-career-section {
        padding: 82px 0;
    }

    .pb-career-stats {
        gap: 30px;
        margin: 44px auto 34px;
    }

    .pb-career-number {
        font-size: 52px;
    }

    .pb-career-note {
        font-size: 19px;
        line-height: 1.5;
    }


    /* Testimonial break */

    .pb-testimonial-break {
        padding: 78px 0;
        background-position: 62% center;
    }

    .pb-testimonial-break::before {
        background: linear-gradient(90deg,
                rgba(8, 19, 29, 0.72) 0%,
                rgba(8, 19, 29, 0.60) 55%,
                rgba(8, 19, 29, 0.40) 100%);
    }

    .pb-testimonial-inner {
        max-width: none;
        margin: 0;

        text-align: center;
    }

    .pb-testimonial-stars {
        margin-bottom: 24px;

        font-size: 18px;
        letter-spacing: 0.14em;
    }

    .pb-testimonial-break blockquote {
        font-size: clamp(31px, 9vw, 40px);
        line-height: 1.18;
    }

    .pb-testimonial-name {
        font-size: 18px;
    }


    /* FAQ */

    .pb-faq-section {
        padding: 82px 0;
    }

    .pb-faq-layout {
        display: block;
    }

    .pb-faq-image {
        display: none;
    }

    .pb-faq-item summary {
        padding: 22px;

        font-size: 18px;
    }

    .pb-faq-item p {
        padding: 0 22px 24px;

        font-size: 16.5px;
    }


    /* Contact */

    .pb-contact-section {
        min-height: auto;
        padding: 88px 0;
    }

    .pb-contact-header {
        margin-bottom: 42px;
    }

    .pb-contact-heading {
        font-size: clamp(36px, 10vw, 48px);
    }

    .pb-contact-subheading {
        font-size: 18px;
    }

    .pb-contact-direct {
        font-size: 16px;
    }

    .pb-contact-form-wrap .form-control {
        height: 52px;
    }

    .pb-contact-form-wrap textarea.form-control {
        min-height: 170px;
    }

}

/* Small mobile */

@media (max-width: 767px) {

    .pb-career-stats {
        flex-direction: column;
        align-items: center;
        gap: 34px;

        margin: 44px auto 36px;
    }

    .pb-career-stat {
        width: 100%;
    }

    .pb-career-number {
        font-size: 50px;
    }

    .pb-career-label {
        font-size: 15px;
    }

    .pb-career-note {
        padding: 0 18px;

        font-size: 19px;
    }

}

@media (max-width: 600px) {

    .pb-about-section {
        padding: 75px 0;
    }

    .pb-about-image {
        width: 260px;
        height: 260px;
    }

    .pb-about-text p {
        font-size: 18px;
    }

    .pb-footer {
        padding: 78px 0 42px;
    }

    .pb-footer-logo img {
        max-width: 170px;
        margin-bottom: 38px;
    }

    .pb-footer-links {
        gap: 10px;

        margin-bottom: 34px;

        font-size: 17px;
    }

    .pb-footer-links>span:not(#pb-footer-email) {
        margin: 0 2px;
    }

}


/* ========================================
   FINAL BUTTON COLOR OVERRIDE
   ======================================== */

a.pb-btn,
a.pb-btn:link,
a.pb-btn:visited,
button.pb-btn,
input.pb-btn {
    color: #ffffff !important;
}

a.pb-btn-outline,
a.pb-btn-outline:link,
a.pb-btn-outline:visited {
    color: #ffffff !important;
}

a.pb-btn:hover,
a.pb-btn:focus,
button.pb-btn:hover,
button.pb-btn:focus,
input.pb-btn:hover,
input.pb-btn:focus {
    color: #ffffff !important;
}