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

        html {
            scroll-behavior: smooth;
            -webkit-text-size-adjust: 100%
        }

        body {
            font-family: 'Inter', sans-serif;
            background: #F7F9FC;
            color: #0B1320;
            line-height: 1.65;
            overflow-x: hidden;
            -webkit-font-smoothing: antialiased
        }

        a {
            text-decoration: none;
            color: inherit
        }

        ul {
            list-style: none
        }

        button,
        input,
        textarea,
        select {
            font-family: inherit;
            font-size: inherit
        }

        button {
            cursor: pointer;
            border: none;
            background: none
        }

        img,
        svg {
            display: block;
            max-width: 100%
        }

        :root {
            --bg: #F7F9FC;
            --surface: #FFFFFF;
            --surface-2: #EEF3FB;
            --ink: #0B1320;
            --ink-2: #1E2A44;
            --muted: #5A6A85;
            --line: #E3EAF4;
            --gold: #EAB308;
            --gold-2: #CA8A04;
            --gold-soft: #FEF9C3;
            --gold-glow: rgba(234, 179, 8, .28);
            --accent: #EAB308;
            --accent-soft: #FEF9C3;
            --green: #10B981;
            --green-soft: #D6F5E7;
            --red: #DC2626;
            --red-soft: #FEE2E2;
            --r: 14px;
            --r-lg: 22px;
            --r-xl: 30px;
            --r-full: 999px;
            --shadow-sm: 0 4px 14px rgba(15, 30, 60, .06);
            --shadow-md: 0 14px 40px rgba(15, 30, 60, .08);
            --shadow-lg: 0 30px 80px rgba(15, 30, 60, .12);
        }

        ::selection {
            background: var(--gold-2);
            color: #fff
        }

        ::-webkit-scrollbar {
            width: 10px;
            height: 10px
        }

        ::-webkit-scrollbar-track {
            background: var(--bg)
        }

        ::-webkit-scrollbar-thumb {
            background: linear-gradient(180deg, var(--gold), var(--gold-2));
            border-radius: 10px;
            border: 2px solid var(--bg)
        }

        h1,
        h2,
        h3,
        h4 {
            font-family: 'Plus Jakarta Sans', sans-serif;
            color: var(--ink);
            line-height: 1.15;
            font-weight: 800;
            letter-spacing: -.02em
        }

        h1 {
            font-size: clamp(2.4rem, 5.6vw, 4.4rem)
        }

        h2 {
            font-size: clamp(1.9rem, 3.8vw, 3rem)
        }

        h3 {
            font-size: clamp(1.15rem, 2vw, 1.4rem);
            font-weight: 700
        }

        h4 {
            font-size: 1.05rem;
            font-weight: 700
        }

        p {
            color: var(--ink-2)
        }

        .container {
            max-width: 1200px;
            margin: 0 auto;
            padding: 0 24px
        }

        section {
            padding: clamp(70px, 10vw, 130px) 0;
            position: relative
        }

        /* ============ BUTTONS ============ */
        .btn {
            display: inline-flex;
            align-items: center;
            justify-content: center;
            gap: .6em;
            padding: 1.05em 1.8em;
            border-radius: var(--r-full);
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 600;
            font-size: .95rem;
            letter-spacing: .01em;
            line-height: 1.2;
            transition: all .4s cubic-bezier(.22, 1, .36, 1);
            cursor: pointer;
            border: 1px solid transparent;
            max-width: 100%;
            text-align: center;
        }

        .btn .arrow {
            display: inline-block;
            transition: transform .4s cubic-bezier(.22, 1, .36, 1)
        }

        .btn:hover .arrow {
            transform: translateX(4px)
        }

        .btn-primary {
            background: linear-gradient(135deg, #EAB308, #CA8A04);
            color: #0F172A;
            font-weight: 700
        }

        .btn-primary:hover {
            background: linear-gradient(135deg, #CA8A04, #A16207);
            color: #fff;
            transform: translateY(-2px);
            box-shadow: 0 12px 30px -10px rgba(202, 138, 4, .5)
        }

        .btn-accent {
            background: linear-gradient(135deg, #EF4444, #DC2626);
            color: #fff
        }

        .btn-accent:hover {
            background: linear-gradient(135deg, #DC2626, #B91C1C);
            transform: translateY(-2px);
            box-shadow: 0 12px 30px -10px rgba(220, 38, 38, .5)
        }

        .btn-ghost {
            background: #fff;
            color: var(--ink);
            border-color: var(--line)
        }

        .btn-ghost:hover {
            background: var(--ink);
            color: #fff;
            border-color: var(--ink)
        }

        .btn-lg {
            padding: 1.15em 2.6em;
            font-size: 1.02rem
        }

        .btn-sm {
            padding: .75em 1.4em;
            font-size: .85rem
        }

        /* ============ BADGES & TAGS ============ */
        .badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            padding: 8px 16px;
            border-radius: var(--r-full);
            font-size: .78rem;
            font-weight: 700;
            letter-spacing: .08em;
            text-transform: uppercase;
            font-family: 'Plus Jakarta Sans', sans-serif
        }

        .badge-gold {
            background: var(--gold-soft);
            color: #854D0E
        }

        .badge-accent {
            background: var(--red-soft);
            color: #991B1B
        }

        .badge-green {
            background: var(--green-soft);
            color: #0B6B4A
        }

        /* ============ SECTION HEADER ============ */
        .sh {
            text-align: center;
            margin-bottom: clamp(40px, 6vw, 70px)
        }

        .sh .badge {
            margin-bottom: 18px
        }

        .sh h2 {
            margin-bottom: 18px;
            max-width: 780px;
            margin-left: auto;
            margin-right: auto
        }

        .sh p {
            color: var(--muted);
            max-width: 600px;
            margin: 0 auto;
            font-size: 1.05rem
        }

        /* ============ NAV ============ */
        #nav {
            position: fixed;
            top: 0;
            left: 0;
            right: 0;
            z-index: 1000;
            padding: 18px 0;
            transition: all .35s ease
        }

        #nav.scrolled {
            background: rgba(11, 19, 32, .92);
            backdrop-filter: blur(18px);
            -webkit-backdrop-filter: blur(18px);
            box-shadow: 0 4px 20px rgba(0, 0, 0, .2);
            padding: 12px 0
        }

        .nav-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px
        }

        .logo {
            display: flex;
            align-items: center;
            gap: 12px;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 800;
            font-size: 1.2rem;
            color: #fff;
            flex-shrink: 0;
        }

        .logo img {
            height: 42px;
            width: auto;
            max-width: none;
            object-fit: contain;
            border-radius: 6px;
            flex-shrink: 0;
        }

        .nav-links {
            display: flex;
            align-items: center;
            gap: 30px
        }

        .nav-links a {
            font-size: .92rem;
            font-weight: 600;
            color: rgba(255, 255, 255, .85);
            transition: color .2s;
            position: relative
        }

        .nav-links a::after {
            content: '';
            position: absolute;
            bottom: -4px;
            left: 0;
            width: 0;
            height: 2px;
            background: var(--gold);
            transition: width .3s;
            border-radius: 2px
        }

        .nav-links a:hover {
            color: var(--gold)
        }

        .nav-links a:hover::after {
            width: 100%
        }

        .nav-right {
            display: flex;
            align-items: center;
            gap: 16px
        }

        .nav-phone {
            display: flex;
            align-items: center;
            gap: 8px;
            font-weight: 700;
            color: #fff;
            font-size: .92rem
        }

        .nav-phone svg {
            width: 18px;
            height: 18px;
            color: var(--gold)
        }

        /* ============ LANGUAGE SWITCHER ============ */
        .lang-switch {
            position: relative;
        }
        .lang-toggle {
            display: inline-flex;
            align-items: center;
            gap: 6px;
            padding: 7px 12px;
            border-radius: var(--r-full);
            background: rgba(255, 255, 255, 0.1);
            border: 1px solid rgba(255, 255, 255, 0.2);
            color: #fff;
            font-size: 0.85rem;
            font-weight: 700;
            cursor: pointer;
            transition: all 0.25s ease;
        }
        .lang-toggle:hover {
            background: rgba(255, 255, 255, 0.2);
            border-color: var(--gold);
        }
        .lang-menu {
            position: absolute;
            top: calc(100% + 8px);
            right: 0;
            background: #0B1320;
            border: 1px solid rgba(234, 179, 8, 0.3);
            border-radius: 14px;
            padding: 6px;
            box-shadow: 0 10px 30px rgba(0, 0, 0, 0.4);
            min-width: 150px;
            display: flex;
            flex-direction: column;
            gap: 2px;
            opacity: 0;
            visibility: hidden;
            transform: translateY(-8px);
            transition: all 0.25s ease;
            z-index: 1001;
        }
        .lang-switch.open .lang-menu {
            opacity: 1;
            visibility: visible;
            transform: translateY(0);
        }
        .lang-opt {
            display: flex;
            align-items: center;
            gap: 8px;
            padding: 8px 12px;
            border-radius: 8px;
            color: rgba(255, 255, 255, 0.85);
            font-size: 0.85rem;
            font-weight: 600;
            background: transparent;
            border: none;
            cursor: pointer;
            text-align: left;
            width: 100%;
            transition: background 0.2s, color 0.2s;
        }
        .lang-opt:hover, .lang-opt[aria-selected="true"] {
            background: rgba(234, 179, 8, 0.15);
            color: var(--gold);
        }



        /* RTL Support for Arabic */
        html[dir="rtl"] body {
            direction: rtl;
            text-align: right;
        }
        html[dir="rtl"] .btn .arrow {
            transform: scaleX(-1);
        }
        html[dir="rtl"] .btn:hover .arrow {
            transform: scaleX(-1) translateX(4px);
        }
        html[dir="rtl"] .nav-inner,
        html[dir="rtl"] .hero-cta,
        html[dir="rtl"] .foot-bottom,
        html[dir="rtl"] .cookie-inner,
        html[dir="rtl"] .testi-head,
        html[dir="rtl"] .usp,
        html[dir="rtl"] .contact-list li {
            direction: rtl;
        }
        html[dir="rtl"] .price-table td.p-val {
            text-align: left;
        }
        html[dir="rtl"] .lang-menu {
            right: auto;
            left: 0;
        }

        .hbg {
            display: none;
            width: 42px;
            height: 42px;
            border-radius: 12px;
            background: rgba(255, 255, 255, .1);
            border: 1px solid rgba(255, 255, 255, .2);
            align-items: center;
            justify-content: center;
            flex-direction: column;
            gap: 5px
        }

        .hbg span {
            display: block;
            width: 18px;
            height: 2px;
            background: #fff;
            border-radius: 2px;
            transition: all .3s
        }

        .hbg.open span:nth-child(1) {
            transform: translateY(7px) rotate(45deg)
        }

        .hbg.open span:nth-child(2) {
            opacity: 0
        }

        .hbg.open span:nth-child(3) {
            transform: translateY(-7px) rotate(-45deg)
        }

        #mnav {
            position: fixed;
            inset: 0;
            z-index: 999;
            background: rgba(11, 19, 32, .98);
            backdrop-filter: blur(20px);
            display: flex;
            flex-direction: column;
            align-items: center;
            justify-content: center;
            gap: 20px;
            padding: 40px 20px;
            overflow-y: auto;
            opacity: 0;
            pointer-events: none;
            transition: opacity .3s
        }

        #mnav.open {
            opacity: 1;
            pointer-events: all
        }

        #mnav a {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 700;
            color: #fff
        }

        #mnav a:hover {
            color: var(--gold)
        }

        /* ============ HERO ============ */
        #hero {
            position: relative;
            overflow: hidden;
            padding-top: 170px;
            padding-bottom: 180px;
            color: #fff;
            background: #0B1320 url('./images/hero_bg.webp') center center / cover no-repeat;
            min-height: 100vh;
            display: flex;
            align-items: center
        }

        #hero::after {
            content: '';
            position: absolute;
            inset: 0;
            pointer-events: none;
            background: linear-gradient(180deg, rgba(11, 19, 32, .75) 0%, rgba(11, 19, 32, .55) 40%, rgba(11, 19, 32, .85) 100%);
            z-index: 1
        }

        .hero-inner {
            position: relative;
            z-index: 2;
            max-width: 820px;
            margin: 0 auto;
            text-align: center
        }

        .hero-badge {
            display: inline-flex;
            align-items: center;
            gap: 8px;
            background: rgba(234, 179, 8, 0.15);
            border: 1px solid rgba(234, 179, 8, 0.4);
            color: var(--gold);
            padding: 8px 18px;
            border-radius: var(--r-full);
            font-size: clamp(0.68rem, 2.5vw, 0.8rem);
            font-weight: 700;
            letter-spacing: 0.08em;
            text-transform: uppercase;
            margin-bottom: 24px;
            max-width: 100%;
            text-align: center;
        }

        .hero-headline {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 800;
            letter-spacing: -.02em;
            line-height: 1.1;
            margin-bottom: 28px;
            color: #fff;
        }

        .hero-headline .gold-text {
            color: var(--gold);
            font-size: clamp(2rem, 7.5vw, 3.75rem);
            display: inline-block;
        }

        .hero-headline .sub-text {
            font-size: clamp(1.25rem, 5vw, 2.5rem);
            display: inline-block;
            line-height: 1.25;
            margin-top: 8px;
        }

        .hero-lead {
            font-size: 1.15rem;
            color: rgba(255, 255, 255, .8);
            margin: 0 auto 40px;
            max-width: 600px;
            line-height: 1.65;
            font-weight: 400
        }

        .hero-cta {
            display: flex;
            flex-wrap: wrap;
            gap: 16px;
            justify-content: center;
        }

        /* hero stats strip */
        .hero-trust {
            display: flex;
            justify-content: center;
            gap: 0;
            max-width: 680px;
            margin: 44px auto 0;
            background: rgba(255, 255, 255, .07);
            border: 1px solid rgba(255, 255, 255, .15);
            border-radius: 20px;
            padding: 18px 10px;
            backdrop-filter: blur(12px);
            -webkit-backdrop-filter: blur(12px);
        }

        .hero-trust .ht {
            flex: 1 1 0;
            text-align: center;
            position: relative;
            padding: 0 12px
        }

        .hero-trust .ht+.ht::before {
            content: '';
            position: absolute;
            left: 0;
            top: 50%;
            transform: translateY(-50%);
            height: 60%;
            width: 1px;
            background: rgba(255, 255, 255, .18)
        }

        .hero-trust .ht-n {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 800;
            font-size: clamp(1.2rem, 3vw, 1.6rem);
            line-height: 1.05;
            color: #fff
        }

        .hero-trust .ht-n .suffix {
            color: var(--gold)
        }

        .hero-trust .ht-l {
            margin-top: 4px;
            font-size: .74rem;
            font-weight: 600;
            letter-spacing: .02em;
            text-transform: uppercase;
            color: rgba(255, 255, 255, .65)
        }

        /* ============ STATS BAR ============ */
        #stats-section {
            padding: 0 0 50px;
            background: var(--bg);
            position: relative;
            z-index: 4;
            margin-top: -100px
        }

        #stats-section::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 120px;
            background: linear-gradient(180deg, #0B1320 0%, #0B1320 40%, var(--bg) 100%);
            z-index: 0
        }

        .stats-bar {
            background: #fff;
            border-radius: var(--r-xl);
            padding: 40px clamp(24px, 3vw, 44px);
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 30px;
            position: relative;
            z-index: 3;
            box-shadow: 0 -8px 30px rgba(0, 0, 0, .15), 0 30px 70px -16px rgba(15, 30, 60, .15)
        }

        .stat {
            text-align: center;
            position: relative
        }

        .stat:not(:last-child)::after {
            content: '';
            position: absolute;
            right: -15px;
            top: 10%;
            height: 80%;
            width: 1px;
            background: var(--line)
        }

        .stat-num {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 800;
            font-size: clamp(1.8rem, 3.5vw, 2.6rem);
            color: var(--ink);
            letter-spacing: -.02em;
            line-height: 1
        }

        .stat-num .suffix {
            color: var(--gold-2)
        }

        .stat-label {
            margin-top: 6px;
            font-size: .88rem;
            color: var(--muted);
            font-weight: 500
        }

        /* ============ COURSES / PRICING ============ */
        .course-grid {
            display: grid;
            grid-template-columns: repeat(2, 1fr);
            gap: 30px;
            margin-top: 50px;
            max-width: 960px;
            margin-left: auto;
            margin-right: auto;
        }

        .course-card {
            background: #fff;
            border-radius: var(--r-xl);
            padding: 36px 30px;
            border: 1px solid var(--line);
            position: relative;
            transition: transform .35s ease, box-shadow .35s ease, border-color .35s ease;
            overflow: hidden;
            display: flex;
            flex-direction: column;
        }

        .course-card::before {
            content: '';
            position: absolute;
            top: 0;
            left: 0;
            right: 0;
            height: 5px;
            background: linear-gradient(90deg, var(--gold), var(--gold-2));
            transform: scaleX(0);
            transform-origin: left;
            transition: transform .4s ease
        }

        .course-card:hover {
            transform: translateY(-8px);
            box-shadow: var(--shadow-lg);
            border-color: transparent
        }

        .course-card:hover::before {
            transform: scaleX(1)
        }

        .course-card.featured {
            background: linear-gradient(160deg, #0B1320, #1E2A44);
            color: #fff;
            border: none;
        }

        .course-card.featured h3,
        .course-card.featured .price .num {
            color: #fff
        }

        .course-card.featured p,
        .course-card.featured li {
            color: rgba(255, 255, 255, .78)
        }

        .course-card.featured::before {
            background: linear-gradient(90deg, #EF4444, #DC2626);
            transform: scaleX(1)
        }

        .course-card.featured .feat-tag {
            position: absolute;
            top: 18px;
            right: 18px;
            background: var(--gold);
            color: #0F172A;
            padding: 5px 12px;
            border-radius: var(--r-full);
            font-size: .7rem;
            font-weight: 800;
            letter-spacing: .08em;
            text-transform: uppercase
        }

        .course-icon {
            width: 60px;
            height: 60px;
            border-radius: 18px;
            background: var(--gold-soft);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold-2);
            margin-bottom: 20px
        }

        .course-icon svg {
            width: 30px;
            height: 30px
        }

        .course-card.featured .course-icon {
            background: rgba(255, 255, 255, .1);
            color: var(--gold)
        }

        .price {
            display: flex;
            align-items: baseline;
            gap: 6px;
            margin-top: 10px;
            margin-bottom: 8px
        }

        .price .num {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 2.6rem;
            font-weight: 800;
            color: var(--ink)
        }

        .price .cur {
            font-size: 1rem;
            font-weight: 600;
            color: var(--muted)
        }

        .feat-list {
            display: flex;
            flex-direction: column;
            gap: 12px;
            margin-top: 20px;
            margin-bottom: 28px;
            flex-grow: 1;
        }

        .feat-list li {
            display: flex;
            align-items: flex-start;
            gap: 10px;
            font-size: .92rem;
            color: var(--ink-2)
        }

        .feat-list li svg {
            flex-shrink: 0;
            width: 18px;
            height: 18px;
            color: var(--green);
            margin-top: 2px
        }

        .course-card.featured .feat-list li svg {
            color: var(--gold)
        }

        /* Detailed Price Table inside Card */
        .price-table {
            width: 100%;
            font-size: 0.88rem;
            border-collapse: collapse;
            margin-top: 16px;
            margin-bottom: 20px;
        }

        .price-table tr {
            border-bottom: 1px solid rgba(227, 234, 244, 0.6);
        }

        .course-card.featured .price-table tr {
            border-bottom-color: rgba(255, 255, 255, 0.1);
        }

        .price-table td {
            padding: 8px 0;
        }

        .price-table td.p-val {
            text-align: right;
            font-weight: 700;
            color: var(--gold-2);
        }

        .course-card.featured .price-table td.p-val {
            color: var(--gold);
        }

        /* ============ ABOUT / WHY ============ */
        .about-grid {
            display: grid;
            grid-template-columns: 1fr 1.1fr;
            gap: 70px;
            align-items: center
        }

        .about-img {
            position: relative
        }

        .about-img-wrap {
            border-radius: var(--r-xl);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            position: relative;
            aspect-ratio: 4/3;
            background: #0B1320;
        }

        .about-img-wrap img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .about-img .floating-card {
            position: absolute;
            bottom: -20px;
            left: -20px;
            background: rgba(255, 255, 255, .95);
            backdrop-filter: blur(12px);
            padding: 16px 20px;
            border-radius: 16px;
            box-shadow: var(--shadow-md);
            display: flex;
            align-items: center;
            gap: 14px;
        }

        .about-img .floating-card .ic {
            width: 44px;
            height: 44px;
            border-radius: 12px;
            background: var(--gold-soft);
            color: var(--gold-2);
            display: flex;
            align-items: center;
            justify-content: center;
            flex-shrink: 0
        }

        .about-img .floating-card .info .v {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 800;
            font-size: 1.1rem;
            color: var(--ink);
            line-height: 1
        }

        .about-img .floating-card .info .l {
            font-size: .78rem;
            color: var(--muted);
            margin-top: 3px
        }

        .usp-list {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 20px;
            margin-top: 24px;
            margin-bottom: 32px
        }

        .usp {
            display: flex;
            gap: 14px;
            align-items: flex-start
        }

        .usp .ic {
            flex-shrink: 0;
            width: 44px;
            height: 44px;
            border-radius: 14px;
            background: var(--gold-soft);
            color: var(--gold-2);
            display: flex;
            align-items: center;
            justify-content: center
        }

        .usp .ic svg {
            width: 22px;
            height: 22px
        }

        /* ============ PROCESS ============ */
        #prozess {
            background: linear-gradient(180deg, #fff, var(--surface-2))
        }

        .process-grid {
            display: grid;
            grid-template-columns: repeat(4, 1fr);
            gap: 24px;
            margin-top: 50px;
        }

        .step {
            background: #fff;
            border-radius: var(--r-xl);
            padding: 30px 24px;
            text-align: center;
            box-shadow: var(--shadow-sm);
            border: 1px solid var(--line);
            transition: transform .3s ease, box-shadow .3s ease;
        }

        .step:hover {
            transform: translateY(-6px);
            box-shadow: var(--shadow-md)
        }

        .step-num {
            width: 60px;
            height: 60px;
            border-radius: 50%;
            background: var(--gold-soft);
            color: var(--gold-2);
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 800;
            font-size: 1.4rem;
            display: flex;
            align-items: center;
            justify-content: center;
            margin: 0 auto 18px;
        }

        /* ============ FLEET / SHOWCASE ============ */
        #erlebnis {
            background: linear-gradient(180deg, var(--surface-2) 0%, #fff 100%);
        }

        .erlebnis-grid {
            display: grid;
            grid-template-columns: 1fr 1.15fr;
            gap: 60px;
            align-items: center;
        }

        .erlebnis-collage {
            position: relative;
            height: 460px
        }

        .img-card {
            position: absolute;
            border-radius: var(--r-xl);
            overflow: hidden;
            box-shadow: var(--shadow-lg);
            background: #0B1320;
        }

        .img-card img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 1s ease;
        }

        .img-card:hover img {
            transform: scale(1.06)
        }

        .img-card figcaption {
            position: absolute;
            left: 20px;
            right: 20px;
            bottom: 20px;
            color: #fff;
            z-index: 2;
            background: rgba(11, 19, 32, 0.75);
            backdrop-filter: blur(8px);
            padding: 14px 18px;
            border-radius: 14px;
            width: 165px;
            text-align: center;
            font-size: 9px;
        }

        .img-card-lg {
            top: 0;
            left: 0;
            width: 80%;
            height: 75%;
        }

        .img-card-sm {
            bottom: 0;
            right: 0;
            width: 65%;
            height: 55%;
        }

        /* ============ TEAM ============ */
        .team-single {
            max-width: 540px;
            margin: 40px auto 0;
        }

        .team-card {
            background: #fff;
            border-radius: var(--r-xl);
            padding: 36px 30px;
            text-align: center;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--line);
        }

        .team-photo {
            width: 140px;
            height: 140px;
            border-radius: 50%;
            margin: 0 auto 18px;
            overflow: hidden;
            border: 4px solid var(--gold-soft);
            box-shadow: 0 8px 20px rgba(15, 30, 60, .1)
        }

        .team-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
        }

        .team-role {
            font-size: .88rem;
            color: var(--gold-2);
            font-weight: 700;
            margin-bottom: 14px;
            text-transform: uppercase;
            letter-spacing: .06em
        }

        /* ============ TESTIMONIALS ============ */
        .testi-grid {
            display: grid;
            grid-template-columns: repeat(3, 1fr);
            gap: 26px;
            margin-top: 50px
        }

        .testi {
            background: #fff;
            border-radius: var(--r-xl);
            padding: 28px;
            box-shadow: 0 10px 30px rgba(15, 30, 60, .07);
            border: 1px solid var(--line);
            position: relative;
            transition: transform .35s ease, box-shadow .35s ease;
            display: flex;
            flex-direction: column;
            justify-content: space-between;
        }

        .testi:hover {
            transform: translateY(-6px);
            box-shadow: 0 16px 40px rgba(15, 30, 60, .12);
        }

        .testi-head {
            display: flex;
            align-items: center;
            gap: 14px;
            margin-bottom: 16px;
        }

        .testi-head .av {
            width: 46px;
            height: 46px;
            border-radius: 50%;
            display: flex;
            align-items: center;
            justify-content: center;
            font-weight: 700;
            font-size: 1rem;
            color: #fff;
            flex-shrink: 0;
            font-family: 'Plus Jakarta Sans', sans-serif;
            box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
        }

        .testi-head strong {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 800;
            font-size: 1.05rem;
            color: var(--ink);
            display: block;
            line-height: 1.2;
        }

        .testi .stars {
            color: #EAB308;
            font-size: 1.05rem;
            letter-spacing: 1px;
            margin-top: 4px;
        }

        .testi p {
            font-size: .96rem;
            color: var(--ink-2);
            line-height: 1.55;
            margin-bottom: 18px;
            flex-grow: 1;
        }

        .testi-photo {
            width: 100%;
            height: 200px;
            border-radius: 14px;
            overflow: hidden;
            box-shadow: var(--shadow-sm);
            margin-top: auto;
        }

        .testi-photo img {
            width: 100%;
            height: 100%;
            object-fit: cover;
            transition: transform 0.6s ease;
        }

        .testi:hover .testi-photo img {
            transform: scale(1.05);
        }

        /* ============ FAQ ============ */
        .faq-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 16px;
            margin-top: 50px;
            align-items: start
        }

        .faq-item {
            background: #fff;
            border-radius: 18px;
            border: 1px solid var(--line);
            overflow: hidden;
            transition: box-shadow .3s ease
        }

        .faq-item.open {
            box-shadow: var(--shadow-md);
        }

        .faq-q {
            width: 100%;
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 16px;
            padding: 20px 24px;
            text-align: left;
            font-weight: 700;
            color: var(--ink);
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 1.02rem;
            cursor: pointer;
        }

        .faq-q .icn {
            flex-shrink: 0;
            width: 32px;
            height: 32px;
            border-radius: 50%;
            background: var(--gold-soft);
            color: var(--gold-2);
            display: flex;
            align-items: center;
            justify-content: center;
            transition: transform .3s ease
        }

        .faq-item.open .icn {
            transform: rotate(45deg)
        }

        .faq-a {
            max-height: 0;
            overflow: hidden;
            transition: max-height .4s ease, padding .4s ease
        }

        .faq-a-inner {
            padding: 0 24px 24px;
            color: var(--muted);
            font-size: .94rem
        }

        .faq-item.open .faq-a {
            max-height: 300px
        }

        /* ============ CTA BANNER ============ */
        #cta {
            padding: 60px 0
        }

        .cta-banner {
            background: linear-gradient(135deg, #0B1320, #1E2A44);
            border-radius: var(--r-xl);
            padding: clamp(24px, 5vw, 50px);
            position: relative;
            overflow: hidden;
            color: #fff;
        }

        .cta-inner {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: row;
            justify-content: space-between;
            gap: 24px;
            align-items: center;
        }

        .cta-inner h2 {
            color: #fff;
            margin-bottom: 12px;
            font-size: clamp(1.3rem, 3.8vw, 2.2rem);
            line-height: 1.25;
            word-wrap: break-word;
            overflow-wrap: break-word;
        }

        .cta-inner p {
            color: rgba(255, 255, 255, .85);
            font-size: clamp(0.88rem, 2vw, 1.05rem);
            line-height: 1.5;
        }

        .cta-btn-wrap {
            flex-shrink: 0;
        }

        .cta-btn {
            white-space: normal !important;
            text-align: center;
            max-width: 100%;
        }

        /* ============ CONTACT ============ */
        .contact-grid {
            display: grid;
            grid-template-columns: 1fr 1fr;
            gap: 40px;
            align-items: start
        }

        .contact-info {
            background: linear-gradient(160deg, #0B1320, #1E2A44);
            color: #fff;
            border-radius: var(--r-xl);
            padding: 44px;
        }

        .contact-info h3 {
            color: #fff;
            margin-bottom: 10px;
            font-size: 1.7rem
        }

        .contact-list {
            display: flex;
            flex-direction: column;
            gap: 20px;
            margin-top: 24px;
            margin-bottom: 30px;
        }

        .contact-list li {
            display: flex;
            align-items: center;
            gap: 14px;
            color: #fff;
            font-size: .96rem
        }

        .contact-list li .ic {
            width: 42px;
            height: 42px;
            border-radius: 12px;
            background: rgba(255, 255, 255, .1);
            display: flex;
            align-items: center;
            justify-content: center;
            color: var(--gold);
            flex-shrink: 0
        }

        .map-wrap {
            margin-top: 24px;
            border-radius: 16px;
            overflow: hidden;
            height: 220px;
            border: 1px solid rgba(255, 255, 255, 0.1);
        }

        .contact-form {
            background: #fff;
            border-radius: var(--r-xl);
            padding: 44px;
            box-shadow: var(--shadow-md);
            border: 1px solid var(--line)
        }

        .field {
            margin-bottom: 18px
        }

        .field label {
            display: block;
            font-size: .85rem;
            font-weight: 600;
            color: var(--ink);
            margin-bottom: 8px
        }

        .field input,
        .field select,
        .field textarea {
            width: 100%;
            padding: 14px 16px;
            border-radius: 12px;
            border: 1.5px solid var(--line);
            background: #fff;
            font-size: .95rem;
            color: var(--ink);
        }

        .field input:focus,
        .field select:focus,
        .field textarea:focus {
            outline: none;
            border-color: var(--gold-2);
            box-shadow: 0 0 0 4px var(--gold-soft)
        }

        .field textarea {
            resize: vertical;
            min-height: 100px
        }

        /* ============ FOOTER ============ */
        footer {
            background: #0B1320;
            color: rgba(255, 255, 255, .65);
            padding: 70px 0 30px;
        }

        .foot-grid {
            display: grid;
            grid-template-columns: 1.4fr repeat(3, 1fr);
            gap: 40px;
            margin-bottom: 50px
        }

        .foot-brand p {
            color: rgba(255, 255, 255, .6);
            font-size: .92rem;
            margin-top: 14px;
        }

        .foot-col h4 {
            color: #fff;
            margin-bottom: 18px;
            font-size: 1.05rem;
        }

        .foot-col ul {
            display: flex;
            flex-direction: column;
            gap: 10px;
        }

        .foot-col a:hover {
            color: var(--gold);
        }

        .foot-bottom {
            display: flex;
            justify-content: space-between;
            align-items: center;
            padding-top: 24px;
            border-top: 1px solid rgba(255, 255, 255, 0.1);
            font-size: 0.88rem;
        }

        /* Responsive Media Queries */
        @media (max-width: 980px) {

            /* --- Hide desktop nav items --- */
            .nav-links,
            .nav-phone,
            .nav-right .btn,
            .nav-right .lang-switch {
                display: none;
            }

            .hbg {
                display: flex;
            }

            /* --- Grids → single column --- */
            .course-grid,
            .about-grid,
            .erlebnis-grid,
            .contact-grid,
            .foot-grid {
                grid-template-columns: 1fr;
            }

            .process-grid {
                grid-template-columns: repeat(2, 1fr);
            }

            .stats-bar,
            .testi-grid,
            .faq-grid {
                grid-template-columns: 1fr;
            }

            /* --- CTA Banner --- */
            .cta-inner {
                flex-direction: column;
                text-align: center;
                align-items: stretch;
            }

            .cta-btn-wrap,
            .cta-btn {
                width: 100%;
            }

            /* --- About section --- */
            .about-text {
                text-align: center;
            }

            .usp-list {
                grid-template-columns: 1fr;
            }

            .usp {
                justify-content: flex-start;
                text-align: left;
            }

            .about-img .floating-card {
                left: 50%;
                transform: translateX(-50%);
                bottom: -16px;
                white-space: nowrap;
            }

            /* --- Full-width buttons on sections --- */
            #ueber .btn,
            #fahrzeuge .btn {
                width: 100%;
                justify-content: center;
            }

            /* --- Stats bar on mobile --- */
            .stats-bar {
                padding: 24px 16px;
                gap: 16px;
            }

            .stat:not(:last-child)::after {
                display: none;
            }

            /* --- Hero trust strip wrap --- */
            .hero-trust {
                flex-wrap: wrap;
                max-width: 100%;
            }

            .hero-trust .ht {
                flex: 1 1 33%;
                min-width: 0;
            }

            /* --- Hero CTA full width --- */
            .hero-cta .btn {
                width: 100%;
                justify-content: center;
            }

            /* --- Erlebnis collage height on tablet --- */
            .erlebnis-collage {
                height: 340px;
            }

            /* --- Hero padding --- */
            #hero {
                padding-top: 140px;
                padding-bottom: 100px;
            }

            #stats-section {
                margin-top: 0;
            }

            /* --- Footer bottom: stack --- */
            .foot-bottom {
                flex-direction: column;
                gap: 8px;
                text-align: center;
            }

            /* --- Contact info padding on mobile --- */
            .contact-info {
                padding: 28px 20px;
            }

            .contact-form {
                padding: 28px 20px;
            }

            /* --- Lang switch in mnav --- */
            #mnav .lang-switch {
                display: block;
                margin-top: 10px;
                position: relative;
            }

            #mnav .lang-menu {
                left: 50%;
                right: auto;
                transform: translateX(-50%) translateY(-8px);
                top: calc(100% + 8px);
            }

            #mnav .lang-switch.open .lang-menu {
                transform: translateX(-50%) translateY(0);
            }

            /* --- Course card buttons --- */
            .course-card .btn {
                width: 100%;
                justify-content: center;
            }
        }

        @media (max-width: 600px) {
            .process-grid {
                grid-template-columns: 1fr;
            }

            .hero-trust .ht+.ht::before {
                display: none;
            }

            .hero-trust {
                gap: 16px;
                padding: 16px 10px;
            }

            .hero-trust .ht {
                flex: 1 1 100%;
            }

            .testi-photo {
                height: 160px;
            }

            .about-grid {
                gap: 40px;
            }
        }

        /* ============ COOKIE BANNER ============ */
        #cookie-banner {
            position: fixed;
            bottom: 24px;
            left: 50%;
            transform: translateX(-50%) translateY(120px);
            width: calc(100% - 48px);
            max-width: 820px;
            z-index: 9999;
            opacity: 0;
            transition: transform .45s cubic-bezier(.22, 1, .36, 1), opacity .45s ease;
            pointer-events: none;
        }

        #cookie-banner.visible {
            transform: translateX(-50%) translateY(0);
            opacity: 1;
            pointer-events: auto;
        }

        .cookie-inner {
            display: flex;
            align-items: center;
            justify-content: space-between;
            gap: 20px;
            padding: 18px 24px;
            background: rgba(11, 19, 32, .95);
            backdrop-filter: blur(20px);
            -webkit-backdrop-filter: blur(20px);
            border: 1px solid rgba(234, 179, 8, .25);
            border-radius: 20px;
            box-shadow: 0 20px 60px rgba(0, 0, 0, .5);
        }

        .cookie-text {
            display: flex;
            align-items: center;
            gap: 14px;
            flex: 1;
            min-width: 0;
        }

        .cookie-icon {
            font-size: 1.8rem;
            flex-shrink: 0;
        }

        .cookie-text strong {
            display: block;
            color: #fff;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: .98rem;
            margin-bottom: 3px;
        }

        .cookie-text p {
            color: rgba(255, 255, 255, .65);
            font-size: .85rem;
            margin: 0;
        }

        .cookie-text a {
            color: var(--gold);
            text-decoration: underline;
        }

        .cookie-btns {
            display: flex;
            gap: 10px;
            flex-shrink: 0;
        }

        .cookie-btn-accept {
            padding: 10px 22px;
            border-radius: 999px;
            background: linear-gradient(135deg, #EAB308, #CA8A04);
            color: #0F172A;
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 700;
            font-size: .88rem;
            border: none;
            cursor: pointer;
            transition: all .25s ease;
        }

        .cookie-btn-accept:hover {
            transform: translateY(-2px);
            box-shadow: 0 8px 20px rgba(202, 138, 4, .4);
        }

        .cookie-btn-decline {
            padding: 10px 22px;
            border-radius: 999px;
            background: transparent;
            color: rgba(255, 255, 255, .7);
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-weight: 600;
            font-size: .88rem;
            border: 1px solid rgba(255, 255, 255, .2);
            cursor: pointer;
            transition: all .25s ease;
        }

        .cookie-btn-decline:hover {
            background: rgba(255, 255, 255, .08);
            color: #fff;
        }

        @media (max-width: 640px) {
            .cookie-inner {
                flex-direction: column;
                align-items: flex-start;
            }

            .cookie-btns {
                width: 100%;
            }

            .cookie-btn-accept,
            .cookie-btn-decline {
                flex: 1;
                text-align: center;
            }
        }

        /* ============ IMAGE SLIDER ============ */
        #galerie {
            background: linear-gradient(180deg, #fff 0%, var(--surface-2) 100%);
            padding: clamp(60px, 8vw, 100px) 0;
        }

        .slider-wrapper {
            position: relative;
            overflow: hidden;
            border-radius: var(--r-xl);
            box-shadow: var(--shadow-lg);
            background: #0B1320;
            direction: ltr; /* isolate slider from RTL page direction */
        }

        .slider-track {
            display: flex;
            width: 100%; /* explicit width so child % resolves correctly */
            transition: transform 700ms cubic-bezier(.25, .46, .45, .94);
            will-change: transform;
        }

        .slider-slide {
            flex: 0 0 100%; /* grow:0 shrink:0 basis:100% — never breaks on reflow */
            width: 100%;
            position: relative;
        }

        .slider-slide img {
            width: 100%;
            height: clamp(300px, 45vw, 520px);
            object-fit: cover;
            display: block;
        }

        .slider-slide::after {
            content: '';
            position: absolute;
            inset: 0;
            background: linear-gradient(180deg, transparent 60%, rgba(11, 19, 32, .45) 100%);
            pointer-events: none;
        }

        /* Arrow buttons */
        .slider-arrow-btn {
            position: absolute;
            top: 50%;
            transform: translateY(-50%);
            z-index: 10;
            width: 48px;
            height: 48px;
            border-radius: 50%;
            background: rgba(255, 255, 255, .92);
            backdrop-filter: blur(8px);
            -webkit-backdrop-filter: blur(8px);
            border: 1.5px solid rgba(234, 179, 8, .35);
            box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
            display: flex;
            align-items: center;
            justify-content: center;
            cursor: pointer;
            transition: background .25s ease, transform .25s ease, box-shadow .25s ease;
            color: var(--ink);
        }

        .slider-arrow-btn:hover {
            background: var(--gold);
            color: #0F172A;
            transform: translateY(-50%) scale(1.1);
            box-shadow: 0 12px 30px -8px rgba(202, 138, 4, .5);
        }

        .slider-arrow-btn svg {
            width: 20px;
            height: 20px;
            flex-shrink: 0;
        }

        .slider-arrow-prev { left: 16px; }
        .slider-arrow-next { right: 16px; }

        /* RTL Arrow Adjustments */
        [dir="rtl"] .slider-arrow-prev { left: auto; right: 16px; transform: translateY(-50%) rotate(180deg); }
        [dir="rtl"] .slider-arrow-next { right: auto; left: 16px; transform: translateY(-50%) rotate(180deg); }

        [dir="rtl"] .slider-arrow-prev:hover { transform: translateY(-50%) rotate(180deg) scale(1.1); }
        [dir="rtl"] .slider-arrow-next:hover { transform: translateY(-50%) rotate(180deg) scale(1.1); }

        /* Dot indicators */
        .slider-dots {
            display: flex;
            justify-content: center;
            gap: 8px;
            margin-top: 20px;
        }

        .slider-dot {
            width: 8px;
            height: 8px;
            border-radius: 999px;
            background: var(--line);
            border: none;
            cursor: pointer;
            transition: width .35s cubic-bezier(.22, 1, .36, 1), background .25s ease;
        }

        .slider-dot.active {
            width: 28px;
            background: var(--gold);
        }

        /* Slide counter badge */
        .slider-counter {
            position: absolute;
            bottom: 16px;
            right: 20px;
            z-index: 10;
            background: rgba(11, 19, 32, .7);
            backdrop-filter: blur(8px);
            color: rgba(255,255,255,.9);
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: .78rem;
            font-weight: 700;
            padding: 6px 14px;
            border-radius: var(--r-full);
            border: 1px solid rgba(234, 179, 8, .3);
            letter-spacing: .04em;
        }

        [dir="rtl"] .slider-counter { right: auto; left: 20px; }

        .slider-counter .curr { color: var(--gold); }

        /* ============ PRELOADER — CINEMATIC INTRO ============ */
        body.is-loading {
            overflow: hidden;
        }

        #preloader {
            position: fixed;
            inset: 0;
            z-index: 99999;
            background: #050508;
            display: flex;
            align-items: center;
            justify-content: center;
            flex-direction: column;
            overflow: hidden;
        }

        #preloader.done {
            pointer-events: none;
        }

        #preloader canvas {
            position: absolute;
            inset: 0;
            width: 100%;
            height: 100%;
            pointer-events: none;
        }

        .pl-vignette {
            position: absolute;
            inset: 0;
            pointer-events: none;
            background: radial-gradient(ellipse at center, transparent 40%, rgba(0, 0, 0, .65) 100%);
            z-index: 1;
        }

        .pl-grain {
            position: absolute;
            inset: 0;
            pointer-events: none;
            opacity: .04;
            mix-blend-mode: overlay;
            z-index: 1;
        }

        .pl-grain svg {
            width: 100%;
            height: 100%;
        }

        .pl-glow {
            position: absolute;
            border-radius: 50%;
            filter: blur(90px);
            pointer-events: none;
            opacity: 0;
        }

        .pl-glow-1 {
            width: 500px;
            height: 500px;
            top: 15%;
            left: 25%;
            background: radial-gradient(circle, rgba(212, 168, 83, .09), transparent 70%);
        }

        .pl-glow-2 {
            width: 400px;
            height: 400px;
            bottom: 10%;
            right: 20%;
            background: radial-gradient(circle, rgba(255, 255, 255, .04), transparent 70%);
        }

        .pl-glow-3 {
            width: 300px;
            height: 300px;
            top: 40%;
            left: 55%;
            background: radial-gradient(circle, rgba(212, 168, 83, .06), transparent 70%);
        }

        .pl-hstreak {
            position: absolute;
            height: 1px;
            pointer-events: none;
            opacity: 0;
            z-index: 1;
        }

        .pl-hstreak-1 {
            top: 30%;
            width: 100%;
            left: -100%;
            background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, .06) 30%, rgba(212, 168, 83, .18) 50%, rgba(255, 255, 255, .06) 70%, transparent 100%);
        }

        .pl-hstreak-2 {
            top: 65%;
            width: 80%;
            right: -80%;
            background: linear-gradient(90deg, transparent 0%, rgba(212, 168, 83, .1) 30%, rgba(255, 255, 255, .12) 50%, rgba(212, 168, 83, .1) 70%, transparent 100%);
        }

        .pl-center {
            position: relative;
            z-index: 2;
            display: flex;
            flex-direction: column;
            align-items: center;
        }

        .pl-logo-wrap {
            position: relative;
            margin-bottom: 30px;
        }

        .pl-logo-img {
            width: 180px;
            height: auto;
            opacity: 0;
            transform: scale(0.8);
        }

        .pl-logo-glow {
            position: absolute;
            top: 50%;
            left: 50%;
            width: 260px;
            height: 260px;
            transform: translate(-50%, -50%);
            background: radial-gradient(circle, rgba(212, 168, 83, .35), transparent 70%);
            border-radius: 50%;
            filter: blur(40px);
            opacity: 0;
            pointer-events: none;
        }

        .pl-label {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: 11px;
            font-weight: 600;
            letter-spacing: .35em;
            color: rgba(234, 179, 8, .75);
            text-transform: uppercase;
            opacity: 0;
            transform: translateY(6px);
        }

        .pl-name {
            font-family: 'Plus Jakarta Sans', sans-serif;
            font-size: clamp(22px, 4.5vw, 36px);
            font-weight: 800;
            letter-spacing: .14em;
            color: #fff;
            margin-top: 6px;
            opacity: 0;
            transform: translateY(10px);
            white-space: nowrap;
        }

        .pl-divider {
            width: 0;
            height: 1px;
            background: linear-gradient(90deg, transparent, rgba(212, 168, 83, .7), transparent);
            margin-top: 20px;
        }

        .pl-sub {
            font-family: 'Inter', sans-serif;
            font-size: 10px;
            font-weight: 500;
            letter-spacing: .2em;
            color: rgba(255, 255, 255, .4);
            margin-top: 14px;
            text-transform: uppercase;
            opacity: 0;
            transform: translateY(4px);
        }

        .pl-countdown-wrap {
            margin-top: 18px;
            display: flex;
            align-items: center;
            justify-content: center;
            opacity: 0;
            transform: translateY(6px);
        }

        .pl-countdown {
            font-family: 'Plus Jakarta Sans', monospace;
            font-size: 13px;
            font-weight: 700;
            letter-spacing: .15em;
            color: #EAB308;
            background: rgba(234, 179, 8, .12);
            border: 1px solid rgba(234, 179, 8, .35);
            padding: 4px 16px;
            border-radius: 999px;
            box-shadow: 0 0 16px rgba(234, 179, 8, .25);
        }

        body.is-loading #nav,
        body.is-loading #hero,
        body.is-loading #hero ~ *,
        body.is-loading .floating-cta {
            opacity: 0;
        }

        body:not(.is-loading) #nav {
            animation: pl-page-in .9s cubic-bezier(.16, 1, .3, 1) both;
        }

        body:not(.is-loading) #hero {
            animation: pl-page-in .9s .15s cubic-bezier(.16, 1, .3, 1) both;
        }

        @keyframes pl-page-in {
            from {
                opacity: 0;
                transform: translateY(16px);
            }
            to {
                opacity: 1;
                transform: translateY(0);
            }
        }

        @media(max-width:980px) {
            body:not(.is-loading) #nav,
            body:not(.is-loading) #hero {
                animation-name: pl-fade-in;
                animation-duration: 1.1s;
                animation-delay: 0s;
                will-change: opacity;
            }
        }

        @keyframes pl-fade-in {
            from {
                opacity: 0;
            }
            to {
                opacity: 1;
            }
        }
