:root {
    /* Brand */
    --navy: #070E22;
    --navy-2: #0D152E;
    --navy-3: #141D3A;
    --navy-deep: #04081A;
    --red: #ED1C24;
    --red-dark: #C8161D;
    --gold: #D4AF37;
    --gold-soft: #B8952E;
    --gold-bright: #F4CF5E;
    --ivory: #F5F1E8;
    --white: #FFFFFF;
    --muted: #9AA3B8;
    --muted-2: #6B7389;
    --line: rgba(245, 241, 232, 0.08);
    --line-strong: rgba(245, 241, 232, 0.18);
    --line-gold: rgba(212, 175, 55, 0.32);

    /* Fonts */
    --f-display: 'Barlow Condensed', sans-serif;
    --f-arabic: 'Cairo', sans-serif;
    --f-body: 'DM Sans', sans-serif;

    /* Layout */
    --nav-h: 80px;
    --max: 1440px;
    --pad: 48px;

    /* LUXURY SHADOW SYSTEM */
    --shadow-xs: 0 1px 2px rgba(0, 0, 0, 0.4);
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.35), 0 1px 2px rgba(0, 0, 0, 0.25);
    --shadow-md: 0 8px 24px rgba(0, 0, 0, 0.45), 0 2px 6px rgba(0, 0, 0, 0.3);
    --shadow-lg: 0 20px 56px rgba(0, 0, 0, 0.55), 0 8px 16px rgba(0, 0, 0, 0.3);
    --shadow-xl: 0 32px 80px rgba(0, 0, 0, 0.6), 0 16px 32px rgba(0, 0, 0, 0.35), 0 4px 8px rgba(0, 0, 0, 0.25);
    --shadow-2xl: 0 48px 120px rgba(0, 0, 0, 0.7), 0 24px 48px rgba(0, 0, 0, 0.4), 0 8px 16px rgba(0, 0, 0, 0.3);
    --shadow-red: 0 24px 60px rgba(237, 28, 36, 0.35), 0 8px 16px rgba(237, 28, 36, 0.22);
    --shadow-gold: 0 24px 60px rgba(212, 175, 55, 0.28), 0 8px 16px rgba(212, 175, 55, 0.18);
    --shadow-inset: inset 0 1px 0 rgba(255, 255, 255, 0.06), inset 0 -1px 0 rgba(0, 0, 0, 0.4);

    /* Transitions */
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-out: cubic-bezier(0.16, 1, 0.3, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}

body {
    background: var(--navy);
    color: var(--ivory);
    font-family: var(--f-body);
    font-weight: 400;
    line-height: 1.6;
    overflow-x: hidden;
    cursor: none;
}

html[data-lang="ar"] body {
    font-family: var(--f-arabic);
}

@media (pointer: coarse),
(max-width: 1024px) {
    body {
    cursor: auto;
    }
}

/* Grain overlay */
body::before {
    content: "";
    position: fixed;
    inset: 0;
    pointer-events: none;
    z-index: 9999;
    opacity: 0.05;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='n'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23n)'/%3E%3C/svg%3E");
    mix-blend-mode: overlay;
}

/* Background ambient glow */
body::after {
    content: "";
    position: fixed;
    pointer-events: none;
    z-index: 0;
    top: -20%;
    right: -20%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(237, 28, 36, 0.08), transparent 60%);
    filter: blur(60px);
}

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

button {
    font-family: inherit;
    border: none;
    background: none;
    cursor: none;
    color: inherit;
}

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

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

@media (pointer: coarse),
(max-width: 1024px) {
    button {
    cursor: pointer;
    }
}

::selection {
    background: var(--red);
    color: var(--white);
}

/* Language visibility — 4 languages */
html[data-lang="de"] [lang="ar"],
html[data-lang="de"] [lang="en"],
html[data-lang="de"] [lang="uk"] {
    display: none !important;
}

html[data-lang="ar"] [lang="de"],
html[data-lang="ar"] [lang="en"],
html[data-lang="ar"] [lang="uk"] {
    display: none !important;
}

html[data-lang="en"] [lang="de"],
html[data-lang="en"] [lang="ar"],
html[data-lang="en"] [lang="uk"] {
    display: none !important;
}

html[data-lang="uk"] [lang="de"],
html[data-lang="uk"] [lang="ar"],
html[data-lang="uk"] [lang="en"] {
    display: none !important;
}

html[data-lang="uk"] body {
    font-family: var(--f-body);
}

/* ============================================================
    CUSTOM CURSOR
============================================================ */
.cursor {
    position: fixed;
    top: 0;
    left: 0;
    width: 8px;
    height: 8px;
    background: var(--ivory);
    border-radius: 50%;
    pointer-events: none;
    z-index: 10000;
    transition: transform 0.15s var(--ease), width 0.25s, height 0.25s, background 0.2s;
    mix-blend-mode: difference;
    transform: translate(-50%, -50%);
}

.cursor-follower {
    position: fixed;
    top: 0;
    left: 0;
    width: 40px;
    height: 40px;
    border: 1px solid var(--gold);
    border-radius: 50%;
    pointer-events: none;
    z-index: 9999;
    transition: transform 0.4s var(--ease-out), width 0.3s, height 0.3s, border-color 0.2s, opacity 0.3s;
    transform: translate(-50%, -50%);
    opacity: 0.7;
}

.cursor.hover {
    width: 12px;
    height: 12px;
    background: var(--red);
}

.cursor-follower.hover {
    width: 60px;
    height: 60px;
    border-color: var(--red);
    opacity: 0.4;
}

@media (pointer: coarse),
(max-width: 1024px) {

    .cursor,
    .cursor-follower {
    display: none;
    }
}

/* ============================================================
    NAVIGATION
============================================================ */
.nav {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: var(--nav-h);
    background: rgba(7, 14, 34, 0.65);
    backdrop-filter: blur(28px) saturate(180%);
    -webkit-backdrop-filter: blur(28px) saturate(180%);
    border-bottom: 1px solid var(--line);
    z-index: 100;
    transition: all 0.4s var(--ease);
}

.nav.scrolled {
    background: rgba(7, 14, 34, 0.92);
    height: 64px;
    box-shadow: var(--shadow-md);
}

.nav__inner {
    max-width: var(--max);
    margin: 0 auto;
    height: 100%;
    padding: 0 var(--pad);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 32px;
}

.nav__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--f-display);
    font-weight: 800;
    font-size: 22px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
}

.nav__logo-mark {
    width: 38px;
    height: 38px;
    background: linear-gradient(135deg, var(--red) 0%, var(--red-dark) 100%);
    display: grid;
    place-items: center;
    color: var(--white);
    font-family: var(--f-display);
    font-weight: 800;
    font-size: 18px;
    clip-path: polygon(0 0, 100% 0, 100% 72%, 72% 100%, 0 100%);
    letter-spacing: -0.02em;
    box-shadow: var(--shadow-red);
}

.nav__logo-text {
    line-height: 1;
}

.nav__logo-text span {
    color: var(--red);
}

.nav__menu {
    display: flex;
    align-items: center;
    gap: 32px;
    list-style: none;
    font-family: var(--f-body);
    font-size: 14px;
    font-weight: 500;
    letter-spacing: 0.02em;
}

html[data-lang="ar"] .nav__menu {
    font-family: var(--f-arabic);
    font-size: 15px;
}

.nav__menu a {
    position: relative;
    padding: 6px 0;
    color: var(--ivory);
    opacity: 0.72;
    transition: opacity 0.2s;
}

.nav__menu a:hover {
    opacity: 1;
}

.nav__menu a::after {
    content: "";
    position: absolute;
    bottom: -2px;
    left: 0;
    width: 0;
    height: 1px;
    background: var(--red);
    transition: width 0.3s var(--ease);
}

.nav__menu a:hover::after {
    width: 100%;
}

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

.lang-toggle {
    display: flex;
    align-items: center;
    gap: 1px;
    padding: 3px;
    border: 1px solid var(--line-strong);
    border-radius: 100px;
    font-family: var(--f-body);
    background: rgba(4, 8, 26, 0.4);
}

.lang-toggle button {
    padding: 5px 10px;
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.06em;
    border-radius: 100px;
    color: var(--muted);
    transition: all 0.2s;
}

.lang-toggle button.active {
    background: var(--ivory);
    color: var(--navy);
    box-shadow: var(--shadow-sm);
}

/* ============================================================
    BUTTONS — Premium with depth
============================================================ */
.btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    font-family: var(--f-display);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 2px;
    transition: all 0.3s var(--ease);
    border: 1px solid transparent;
    overflow: hidden;
    isolation: isolate;
}

html[data-lang="ar"] .btn {
    font-family: var(--f-arabic);
    letter-spacing: 0;
    font-size: 14px;
    font-weight: 700;
}

.btn::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(255, 255, 255, 0.12) 50%, transparent 100%);
    transform: translateX(-100%);
    transition: transform 0.6s var(--ease);
    z-index: -1;
}

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

.btn--primary {
    background: linear-gradient(180deg, var(--red) 0%, var(--red-dark) 100%);
    color: var(--white);
    box-shadow: var(--shadow-md), var(--shadow-inset);
}

.btn--primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), var(--shadow-red), var(--shadow-inset);
}

.btn--ghost {
    background: rgba(245, 241, 232, 0.02);
    color: var(--ivory);
    border-color: var(--line-strong);
    backdrop-filter: blur(8px);
}

.btn--ghost:hover {
    border-color: var(--ivory);
    background: rgba(245, 241, 232, 0.06);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.btn--gold {
    background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-soft) 100%);
    color: var(--navy);
    box-shadow: var(--shadow-md), var(--shadow-gold), var(--shadow-inset);
}

.btn--gold:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-lg), 0 28px 68px rgba(212, 175, 55, 0.4), var(--shadow-inset);
}

.btn__arrow {
    width: 14px;
    height: 14px;
    display: inline-block;
    transition: transform 0.3s var(--ease);
}

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

html[dir="rtl"] .btn__arrow {
    transform: scaleX(-1);
}

html[dir="rtl"] .btn:hover .btn__arrow {
    transform: scaleX(-1) translateX(4px);
}

.nav__burger {
    display: none;
    width: 32px;
    height: 22px;
    position: relative;
    cursor: pointer;
}

.nav__burger span {
    position: absolute;
    left: 0;
    width: 100%;
    height: 2px;
    background: var(--ivory);
    transition: all 0.3s;
}

.nav__burger span:nth-child(1) {
    top: 0;
}

.nav__burger span:nth-child(2) {
    top: 10px;
}

.nav__burger span:nth-child(3) {
    top: 20px;
}

.nav__burger.open span:nth-child(1) {
    top: 10px;
    transform: rotate(45deg);
}

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

.nav__burger.open span:nth-child(3) {
    top: 10px;
    transform: rotate(-45deg);
}

/* ============================================================
    SECTION BASE
============================================================ */
.section {
    position: relative;
    padding: 160px var(--pad);
    max-width: var(--max);
    margin: 0 auto;
    z-index: 1;
}

.section--alt {
    background: linear-gradient(180deg, var(--navy-2) 0%, var(--navy) 100%);
    max-width: none;
    padding-inline: 0;
}

.section--alt .section__wrap {
    max-width: var(--max);
    margin: 0 auto;
    padding: 0 var(--pad);
}

.section__head {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 64px;
    align-items: end;
    margin-bottom: 96px;
    padding-bottom: 32px;
    border-bottom: 1px solid var(--line);
}

.section__index {
    font-family: var(--f-display);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.24em;
    color: var(--red);
    text-transform: uppercase;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.section__index::before {
    content: "";
    width: 32px;
    height: 1px;
    background: var(--red);
}

.section__title {
    font-family: var(--f-display);
    font-weight: 700;
    font-size: clamp(44px, 6vw, 92px);
    line-height: 0.95;
    letter-spacing: -0.01em;
    text-transform: uppercase;
}

html[data-lang="ar"] .section__title {
    font-family: var(--f-arabic);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.01em;
    text-transform: none;
    font-size: clamp(36px, 5vw, 72px);
}

.section__title em {
    font-style: italic;
    color: var(--gold);
    font-weight: 500;
    background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold) 50%, var(--gold-soft) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

html[data-lang="ar"] .section__title em {
    font-style: normal;
    font-weight: 800;
}

.section__kicker {
    flex-shrink: 0;
    max-width: 360px;
    font-size: 15px;
    line-height: 1.6;
    color: var(--muted);
    padding-bottom: 8px;
}

html[data-lang="ar"] .section__kicker {
    font-size: 16px;
    line-height: 1.75;
}


/* ============================================================
    HERO — Premium with depth layers
============================================================ */
.hero {
    position: relative;
    min-height: 100vh;
    padding: calc(var(--nav-h) + 80px) var(--pad) 80px;
    max-width: var(--max);
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    overflow: hidden;
}

.hero__bg {
    position: absolute;
    inset: 0;
    background:
    radial-gradient(ellipse at 85% 15%, rgba(237, 28, 36, 0.16), transparent 50%),
    radial-gradient(ellipse at 15% 85%, rgba(212, 175, 55, 0.08), transparent 55%),
    linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
    z-index: -1;
}

.hero__bg::before {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
    linear-gradient(var(--line) 1px, transparent 1px),
    linear-gradient(90deg, var(--line) 1px, transparent 1px);
    background-size: 88px 88px;
    mask-image: radial-gradient(ellipse 70% 70% at center, black 30%, transparent 80%);
    -webkit-mask-image: radial-gradient(ellipse 70% 70% at center, black 30%, transparent 80%);
}

.hero__orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    z-index: -1;
    animation: orbFloat 12s ease-in-out infinite;
}

.hero__orb--1 {
    width: 520px;
    height: 520px;
    background: radial-gradient(circle, rgba(237, 28, 36, 0.3), transparent 70%);
    top: -120px;
    right: -80px;
}

.hero__orb--2 {
    width: 420px;
    height: 420px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.2), transparent 70%);
    bottom: -80px;
    left: 20%;
    animation-delay: -6s;
}

@keyframes orbFloat {

    0%,
    100% {
    transform: translate(0, 0) scale(1);
    }

    50% {
    transform: translate(30px, -20px) scale(1.08);
    }
}

.hero__meta {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--f-display);
    font-size: 13px;
    letter-spacing: 0.24em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 72px;
    gap: 24px;
    flex-wrap: wrap;
}

html[data-lang="ar"] .hero__meta {
    font-family: var(--f-body);
    letter-spacing: 0.12em;
}

.hero__meta-mark {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--gold);
}

.hero__meta-mark::before {
    content: "";
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--gold);
    box-shadow: 0 0 16px var(--gold), 0 0 32px rgba(212, 175, 55, 0.4);
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
    opacity: 1;
    transform: scale(1);
    }

    50% {
    opacity: 0.5;
    transform: scale(1.3);
    }
}

.hero__title {
    font-family: var(--f-display);
    font-weight: 700;
    font-size: clamp(60px, 11vw, 180px);
    line-height: 0.86;
    letter-spacing: -0.025em;
    text-transform: uppercase;
    margin-bottom: 48px;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

html[data-lang="ar"] .hero__title {
    font-family: var(--f-arabic);
    font-weight: 900;
    font-size: clamp(48px, 9vw, 132px);
    line-height: 1.05;
    letter-spacing: -0.01em;
    text-transform: none;
}

.hero__title em {
    font-style: italic;
    font-weight: 500;
    background: linear-gradient(180deg, var(--gold-bright) 0%, var(--gold) 60%, var(--gold-soft) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

html[data-lang="ar"] .hero__title em {
    font-style: normal;
    font-weight: 900;
}

.hero__title .red-dot {
    display: inline-block;
    width: 0.14em;
    height: 0.14em;
    background: var(--red);
    border-radius: 50%;
    vertical-align: baseline;
    margin-inline-start: -0.05em;
    box-shadow: 0 0 32px var(--red);
    animation: dotPulse 2.4s ease-in-out infinite;
}

@keyframes dotPulse {

    0%,
    100% {
    box-shadow: 0 0 24px var(--red);
    }

    50% {
    box-shadow: 0 0 48px var(--red), 0 0 80px rgba(237, 28, 36, 0.5);
    }
}

.hero__bottom {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 80px;
    align-items: end;
}

.hero__lede {
    max-width: 540px;
    font-size: 17px;
    line-height: 1.6;
    color: var(--ivory);
    opacity: 0.82;
}

html[data-lang="ar"] .hero__lede {
    font-size: 18px;
    line-height: 1.85;
}

.hero__actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 28px;
}

.hero__badges {
    display: flex;
    gap: 48px;
    padding-inline-start: 40px;
    border-inline-start: 1px solid var(--line-strong);
    align-items: flex-end;
}

.hero__badge {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.hero__badge-value {
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 48px;
    line-height: 1;
    background: linear-gradient(180deg, var(--gold-bright), var(--gold-soft));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
}

.hero__badge-label {
    font-family: var(--f-body);
    font-size: 11px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
}

html[data-lang="ar"] .hero__badge-label {
    font-family: var(--f-arabic);
    letter-spacing: 0;
    font-size: 13px;
    text-transform: none;
}

/* ============================================================
    MARQUEE
============================================================ */
.marquee {
    position: relative;
    padding: 28px 0;
    border-block: 1px solid var(--line);
    background: var(--navy-2);
    overflow: hidden;
    white-space: nowrap;
}

.marquee::before,
.marquee::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 120px;
    z-index: 2;
    pointer-events: none;
}

.marquee::before {
    left: 0;
    background: linear-gradient(90deg, var(--navy-2), transparent);
}

.marquee::after {
    right: 0;
    background: linear-gradient(-90deg, var(--navy-2), transparent);
}

.marquee__track {
    display: inline-flex;
    align-items: center;
    gap: 72px;
    animation: marquee 40s linear infinite;
    padding-inline-start: 72px;
}

html[dir="rtl"] .marquee__track {
    animation-direction: reverse;
}

.marquee__item {
    font-family: var(--f-display);
    font-weight: 600;
    font-size: 28px;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: var(--ivory);
    opacity: 0.7;
    display: inline-flex;
    align-items: center;
    gap: 72px;
}

html[data-lang="ar"] .marquee__item {
    font-family: var(--f-arabic);
    font-size: 22px;
    letter-spacing: 0;
    font-weight: 700;
}

.marquee__dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--red);
    display: inline-block;
    box-shadow: 0 0 12px rgba(237, 28, 36, 0.6);
}

@keyframes marquee {
    from {
    transform: translateX(0);
    }

    to {
    transform: translateX(-50%);
    }
}

/* ============================================================
    KLASSEN — 3D hover tilt
============================================================ */
.classes {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    perspective: 1200px;
}

.class-card {
    background: linear-gradient(180deg, var(--navy) 0%, var(--navy-2) 100%);
    padding: 48px 36px;
    position: relative;
    min-height: 340px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    transition: all 0.5s var(--ease);
    transform-style: preserve-3d;
    will-change: transform;
    overflow: hidden;
}

.class-card::before {
    content: "";
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--mx, 50%) var(--my, 50%), rgba(212, 175, 55, 0.12), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.class-card:hover {
    background: linear-gradient(180deg, var(--navy-2) 0%, var(--navy-3) 100%);
    box-shadow: var(--shadow-xl);
    z-index: 2;
}

.class-card:hover::before {
    opacity: 1;
}

.class-card:hover .class-card__cta {
    color: var(--red);
}

.class-card__top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 32px;
}

.class-card__code {
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 96px;
    line-height: 0.85;
    color: var(--ivory);
    letter-spacing: -0.03em;
    text-shadow: 0 4px 12px rgba(0, 0, 0, 0.4);
}

.class-card__code em {
    font-style: italic;
    font-weight: 500;
    background: linear-gradient(180deg, var(--gold-bright), var(--gold-soft));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.class-card__badge {
    font-family: var(--f-display);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--muted);
    padding: 6px 10px;
    border: 1px solid var(--line-strong);
    border-radius: 2px;
    background: rgba(4, 8, 26, 0.5);
    backdrop-filter: blur(8px);
}

html[data-lang="ar"] .class-card__badge {
    font-family: var(--f-arabic);
    letter-spacing: 0;
    text-transform: none;
    font-size: 12px;
}

.class-card__name {
    font-family: var(--f-display);
    font-weight: 600;
    font-size: 26px;
    letter-spacing: 0.01em;
    margin-bottom: 12px;
    text-transform: uppercase;
}

html[data-lang="ar"] .class-card__name {
    font-family: var(--f-arabic);
    font-weight: 700;
    font-size: 24px;
    letter-spacing: 0;
    text-transform: none;
}

.class-card__desc {
    font-size: 14px;
    line-height: 1.55;
    color: var(--muted);
    margin-bottom: 24px;
}

html[data-lang="ar"] .class-card__desc {
    font-size: 15px;
    line-height: 1.75;
}

.class-card__cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-family: var(--f-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ivory);
    transition: color 0.2s;
}

html[data-lang="ar"] .class-card__cta {
    font-family: var(--f-arabic);
    letter-spacing: 0;
    text-transform: none;
    font-size: 14px;
}

/* ============================================================
    WARUM — Enhanced depth
============================================================ */
.why {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
}

.why__item {
    grid-column: span 6;
    padding: 48px 40px;
    border: 1px solid var(--line);
    background: linear-gradient(180deg, var(--navy-2) 0%, rgba(13, 21, 46, 0.6) 100%);
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease);
    box-shadow: var(--shadow-sm);
}

.why__item:hover {
    border-color: var(--line-strong);
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
}

.why__item::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.why__item:hover::after {
    opacity: 1;
}

.why__item:nth-child(1) {
    grid-column: span 7;
}

.why__item:nth-child(2) {
    grid-column: span 5;
}

.why__item:nth-child(3) {
    grid-column: span 4;
}

.why__item:nth-child(4) {
    grid-column: span 4;
}

.why__item:nth-child(5) {
    grid-column: span 4;
}

.why__num {
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.2em;
    color: var(--red);
    margin-bottom: 40px;
}

.why__title {
    font-family: var(--f-display);
    font-weight: 600;
    font-size: clamp(26px, 2.4vw, 40px);
    line-height: 1.05;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    margin-bottom: 16px;
}

html[data-lang="ar"] .why__title {
    font-family: var(--f-arabic);
    font-weight: 800;
    font-size: clamp(22px, 2vw, 32px);
    line-height: 1.3;
    text-transform: none;
}

.why__desc {
    font-size: 14.5px;
    line-height: 1.65;
    color: var(--muted);
}

html[data-lang="ar"] .why__desc {
    font-size: 15px;
    line-height: 1.8;
}

.why__item--hero {
    background: linear-gradient(135deg, var(--navy-3) 0%, var(--navy-2) 60%, var(--navy-2) 100%);
    border-color: var(--line-gold);
    box-shadow: var(--shadow-md);
}

.why__item--hero::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 3px;
    height: 100%;
    background: linear-gradient(180deg, var(--gold), var(--gold-soft));
}

html[dir="rtl"] .why__item--hero::before {
    left: auto;
    right: 0;
}

/* ============================================================
ABLAUF / PROCESS
============================================================ */
.process {
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    border-block: 1px solid var(--line);
}

.process__step {
    display: grid;
    grid-template-columns: 140px 1fr auto;
    gap: 48px;
    padding: 56px 0;
    align-items: start;
    border-bottom: 1px solid var(--line);
    transition: all 0.5s var(--ease);
    position: relative;
}

.process__step:last-child {
    border-bottom: none;
}

.process__step::before {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    top: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(212, 175, 55, 0.04) 50%, transparent 100%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.process__step:hover::before {
    opacity: 1;
}

.process__step:hover .process__num {
    background: linear-gradient(180deg, var(--gold-bright), var(--gold));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.process__num {
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 88px;
    line-height: 0.9;
    background: linear-gradient(180deg, var(--gold) 0%, var(--gold-soft) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    letter-spacing: -0.02em;
    transition: all 0.3s;
}

.process__body {
    max-width: 680px;
}

.process__title {
    font-family: var(--f-display);
    font-weight: 600;
    font-size: clamp(28px, 3vw, 48px);
    line-height: 1.05;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

html[data-lang="ar"] .process__title {
    font-family: var(--f-arabic);
    font-weight: 800;
    text-transform: none;
    line-height: 1.3;
    font-size: clamp(24px, 2.5vw, 38px);
}

.process__desc {
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--muted);
    max-width: 560px;
}

html[data-lang="ar"] .process__desc {
    font-size: 16px;
    line-height: 1.85;
}

.process__tag {
    font-family: var(--f-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--ivory);
    padding: 8px 14px;
    border: 1px solid var(--line-strong);
    border-radius: 2px;
    white-space: nowrap;
    background: rgba(4, 8, 26, 0.5);
}

html[data-lang="ar"] .process__tag {
    font-family: var(--f-arabic);
    letter-spacing: 0;
    text-transform: none;
    font-size: 13px;
}


/* ============================================================
VIDEOS — Cinematic player cards
============================================================ */
.videos {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr;
    grid-template-rows: 1fr 1fr;
    gap: 20px;
    min-height: 540px;
}

.video-card {
    position: relative;
    overflow: hidden;
    cursor: pointer;
    background: var(--navy-3);
    border: 1px solid var(--line);
    transition: all 0.5s var(--ease);
    box-shadow: var(--shadow-md);
}

.video-card:hover {
    border-color: var(--line-gold);
    box-shadow: var(--shadow-xl);
}

.video-card:hover .video-card__play {
    transform: translate(-50%, -50%) scale(1.15);
    box-shadow: var(--shadow-red);
}

.video-card:hover .video-card__img {
    transform: scale(1.08);
}

.video-card--featured {
    grid-row: span 2;
}

.video-card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease-out);
}

.video-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(7, 14, 34, 0.1) 0%, rgba(7, 14, 34, 0.85) 100%);
    z-index: 1;
}

.video-card__play {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: linear-gradient(180deg, var(--red) 0%, var(--red-dark) 100%);
    display: grid;
    place-items: center;
    transition: all 0.4s var(--ease);
    z-index: 2;
    box-shadow: var(--shadow-lg), var(--shadow-red);
}

.video-card__play::before {
    content: "";
    position: absolute;
    inset: -8px;
    border: 1px solid var(--red);
    border-radius: 50%;
    opacity: 0.5;
    animation: playPulse 2s ease-out infinite;
}

@keyframes playPulse {
    0% {
    transform: scale(1);
    opacity: 0.5;
    }

    100% {
    transform: scale(1.5);
    opacity: 0;
    }
}

.video-card__play svg {
    width: 24px;
    height: 24px;
    color: var(--white);
    margin-left: 3px;
}

.video-card--featured .video-card__play {
    width: 104px;
    height: 104px;
}

.video-card--featured .video-card__play svg {
    width: 32px;
    height: 32px;
}

.video-card__meta {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    z-index: 2;
}

.video-card__duration {
    font-family: var(--f-display);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 8px;
}

.video-card__title {
    font-family: var(--f-display);
    font-weight: 600;
    font-size: 20px;
    line-height: 1.2;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

.video-card--featured .video-card__title {
    font-size: 32px;
}

html[data-lang="ar"] .video-card__title {
    font-family: var(--f-arabic);
    font-weight: 700;
    text-transform: none;
    font-size: 18px;
}

html[data-lang="ar"] .video-card--featured .video-card__title {
    font-size: 26px;
}

/* ============================================================
TEAM — Premium member cards
============================================================ */
.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
}

.team-card {
    position: relative;
    aspect-ratio: 3 / 4;
    overflow: hidden;
    background: var(--navy-3);
    border: 1px solid var(--line);
    transition: all 0.5s var(--ease);
    box-shadow: var(--shadow-md);
    cursor: pointer;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--line-gold);
}

.team-card:hover .team-card__img {
    transform: scale(1.08);
    filter: grayscale(0) contrast(1);
}

.team-card:hover .team-card__meta {
    transform: translateY(-8px);
}

.team-card__img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(0.3) contrast(0.95);
    transition: transform 1s var(--ease-out), filter 0.6s;
}

.team-card__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 30%, rgba(4, 8, 26, 0.4) 60%, var(--navy-deep) 100%);
    z-index: 1;
}

.team-card__badge {
    position: absolute;
    top: 16px;
    left: 16px;
    font-family: var(--f-display);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--navy);
    background: var(--gold);
    padding: 6px 10px;
    border-radius: 2px;
    z-index: 2;
}

html[dir="rtl"] .team-card__badge {
    left: auto;
    right: 16px;
}

html[data-lang="ar"] .team-card__badge {
    font-family: var(--f-arabic);
    letter-spacing: 0;
    text-transform: none;
    font-size: 12px;
    font-weight: 700;
}

.team-card__meta {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    z-index: 2;
    transition: transform 0.5s var(--ease);
}

.team-card__name {
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 22px;
    line-height: 1.1;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 4px;
}

html[data-lang="ar"] .team-card__name {
    font-family: var(--f-arabic);
    font-weight: 800;
    text-transform: none;
    font-size: 20px;
}

.team-card__role {
    font-family: var(--f-body);
    font-size: 12px;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: var(--gold);
}

html[data-lang="ar"] .team-card__role {
    font-family: var(--f-arabic);
    letter-spacing: 0;
    text-transform: none;
    font-size: 13px;
}

/* ============================================================
ABOUT — Walaa section
============================================================ */
.about {
    display: grid;
    grid-template-columns: 5fr 7fr;
    gap: 64px;
    align-items: center;
}

.about__visual {
    position: relative;
    aspect-ratio: 4 / 5;
    overflow: hidden;
    background: var(--navy-3);
    border: 1px solid var(--line-gold);
    box-shadow: var(--shadow-2xl);
}

.about__visual::before {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, transparent 0%, rgba(212, 175, 55, 0.06) 50%, transparent 100%);
    z-index: 2;
    pointer-events: none;
}

.about__visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: contrast(1.05) saturate(0.9);
}

.about__visual-badge {
    position: absolute;
    top: 24px;
    left: 24px;
    padding: 8px 14px;
    background: rgba(4, 8, 26, 0.75);
    backdrop-filter: blur(12px);
    border: 1px solid var(--line-gold);
    font-family: var(--f-display);
    font-size: 11px;
    letter-spacing: 0.2em;
    text-transform: uppercase;
    color: var(--gold);
    z-index: 3;
    border-radius: 2px;
}

html[dir="rtl"] .about__visual-badge {
    left: auto;
    right: 24px;
}

html[data-lang="ar"] .about__visual-badge {
    font-family: var(--f-arabic);
    letter-spacing: 0;
    text-transform: none;
}

.about__visual-caption {
    position: absolute;
    bottom: 24px;
    left: 24px;
    right: 24px;
    z-index: 3;
    color: var(--ivory);
}

.about__visual-name {
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 32px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 4px;
}

html[data-lang="ar"] .about__visual-name {
    font-family: var(--f-arabic);
    font-weight: 800;
    text-transform: none;
}

.about__visual-role {
    font-family: var(--f-body);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--gold);
}

html[data-lang="ar"] .about__visual-role {
    font-family: var(--f-arabic);
    letter-spacing: 0;
    text-transform: none;
    font-size: 14px;
}

.about__body {}

.about__quote {
    font-family: var(--f-display);
    font-weight: 500;
    font-style: italic;
    font-size: clamp(28px, 3vw, 48px);
    line-height: 1.15;
    color: var(--ivory);
    margin-bottom: 36px;
    position: relative;
    padding-inline-start: 40px;
    border-inline-start: 3px solid var(--red);
}

html[data-lang="ar"] .about__quote {
    font-family: var(--f-arabic);
    font-style: normal;
    font-weight: 600;
    line-height: 1.5;
    font-size: clamp(22px, 2.4vw, 36px);
}

.about__text {
    font-size: 16px;
    line-height: 1.75;
    color: var(--muted);
    margin-bottom: 20px;
    max-width: 560px;
}

html[data-lang="ar"] .about__text {
    font-size: 17px;
    line-height: 1.95;
}

.about__signature {
    margin-top: 40px;
    padding-top: 28px;
    border-top: 1px solid var(--line);
    display: flex;
    align-items: center;
    gap: 16px;
}

.about__signature-mark {
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 44px;
    font-style: italic;
    background: linear-gradient(180deg, var(--gold-bright), var(--gold-soft));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
}

html[data-lang="ar"] .about__signature-mark {
    font-family: var(--f-arabic);
    font-style: normal;
    font-weight: 900;
    font-size: 36px;
}

.about__signature-text {
    font-family: var(--f-body);
    font-size: 12px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--muted);
    line-height: 1.5;
}

html[data-lang="ar"] .about__signature-text {
    font-family: var(--f-arabic);
    letter-spacing: 0;
    text-transform: none;
    font-size: 14px;
}

/* ============================================================
GALLERY — Asymmetric facility grid
============================================================ */
.gallery {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    grid-template-rows: 220px 220px 220px;
    gap: 16px;
}

.gallery__item {
    position: relative;
    overflow: hidden;
    background: var(--navy-3);
    box-shadow: var(--shadow-md);
    transition: all 0.5s var(--ease);
    cursor: pointer;
}

.gallery__item::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(7, 14, 34, 0.6) 100%);
    opacity: 0;
    transition: opacity 0.4s;
    z-index: 2;
}

.gallery__item:hover {
    box-shadow: var(--shadow-xl);
}

.gallery__item:hover::after {
    opacity: 1;
}

.gallery__item:hover img {
    transform: scale(1.08);
}

.gallery__item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.2s var(--ease-out);
}

.gallery__item--span_1_1 {
    grid-column: span 1;
    grid-row: span 1;
}

.gallery__item--span_1_2 {
    grid-column: span 1;
    grid-row: span 2;
}

.gallery__item--span_2_1 {
    grid-column: span 2;
    grid-row: span 1;
}

.gallery__item--span_2_2 {
    grid-column: span 2;
    grid-row: span 2;
}

.gallery__caption {
    position: absolute;
    bottom: 16px;
    left: 16px;
    z-index: 3;
    font-family: var(--f-display);
    font-size: 12px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--ivory);
    opacity: 0;
    transform: translateY(8px);
    transition: all 0.4s var(--ease);
}

html[data-lang="ar"] .gallery__caption {
    font-family: var(--f-arabic);
    letter-spacing: 0;
    text-transform: none;
    font-size: 14px;
}

.gallery__item:hover .gallery__caption {
    opacity: 1;
    transform: translateY(0);
}

/* ============================================================
STIMMEN
============================================================ */
.testimonials {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.testimonial {
    padding: 40px 32px;
    background: linear-gradient(180deg, var(--navy-2) 0%, rgba(13, 21, 46, 0.7) 100%);
    border: 1px solid var(--line);
    display: flex;
    flex-direction: column;
    gap: 28px;
    transition: all 0.5s var(--ease);
    box-shadow: var(--shadow-sm);
    position: relative;
    overflow: hidden;
}

.testimonial::before {
    content: "\201C";
    position: absolute;
    top: -20px;
    right: 20px;
    font-family: var(--f-display);
    font-size: 180px;
    line-height: 1;
    color: var(--gold);
    opacity: 0.08;
    pointer-events: none;
}

html[dir="rtl"] .testimonial::before {
    right: auto;
    left: 20px;
}

.testimonial:hover {
    border-color: var(--line-gold);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.testimonial__stars {
    display: flex;
    gap: 4px;
    color: var(--gold);
    font-size: 16px;
    text-shadow: 0 0 12px rgba(212, 175, 55, 0.4);
}

.testimonial__text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--ivory);
    opacity: 0.92;
    flex: 1;
    position: relative;
    z-index: 1;
}

html[data-lang="ar"] .testimonial__text {
    font-size: 16.5px;
    line-height: 1.85;
}

.testimonial__footer {
    display: flex;
    align-items: center;
    gap: 14px;
    padding-top: 24px;
    border-top: 1px solid var(--line);
}

.testimonial__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--gold-bright), var(--gold-soft));
    display: grid;
    place-items: center;
    color: var(--navy);
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 18px;
    flex-shrink: 0;
    box-shadow: var(--shadow-gold);
}

.testimonial__name {
    font-family: var(--f-display);
    font-weight: 600;
    font-size: 16px;
    letter-spacing: 0.02em;
    text-transform: uppercase;
}

html[data-lang="ar"] .testimonial__name {
    font-family: var(--f-arabic);
    font-weight: 700;
    text-transform: none;
    font-size: 15px;
}

.testimonial__role {
    font-size: 12px;
    color: var(--muted);
    margin-top: 2px;
}

/* ============================================================
FAQ
============================================================ */
.faq {
    max-width: 960px;
    margin: 0 auto;
    border-block: 1px solid var(--line);
}

.faq__item {
    border-bottom: 1px solid var(--line);
    transition: background 0.3s;
}

.faq__item:last-child {
    border-bottom: none;
}

.faq__item.open {
    background: linear-gradient(90deg, rgba(212, 175, 55, 0.03) 0%, transparent 80%);
}

.faq__q {
    width: 100%;
    padding: 36px 0;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    font-family: var(--f-display);
    font-weight: 600;
    font-size: clamp(20px, 2vw, 30px);
    line-height: 1.2;
    text-transform: uppercase;
    text-align: start;
    color: var(--ivory);
    transition: color 0.2s;
}

html[data-lang="ar"] .faq__q {
    font-family: var(--f-arabic);
    font-weight: 700;
    text-transform: none;
    font-size: clamp(18px, 1.8vw, 25px);
    line-height: 1.45;
}

.faq__q:hover {
    color: var(--gold);
}

.faq__q-icon {
    width: 24px;
    height: 24px;
    position: relative;
    flex-shrink: 0;
    transition: transform 0.4s var(--ease);
}

.faq__q-icon::before,
.faq__q-icon::after {
    content: "";
    position: absolute;
    inset: 50% 0 auto 0;
    height: 1.5px;
    background: var(--ivory);
    transition: all 0.3s var(--ease);
}

.faq__q-icon::after {
    transform: rotate(90deg);
}

.faq__item.open .faq__q-icon {
    transform: rotate(180deg);
}

.faq__item.open .faq__q-icon::after {
    transform: rotate(0);
    opacity: 0;
}

.faq__item.open .faq__q-icon::before,
.faq__item.open .faq__q-icon::after {
    background: var(--gold);
}

.faq__item.open .faq__q {
    color: var(--gold);
}

.faq__a {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease);
}

.faq__a-inner {
    padding: 0 0 36px 0;
    font-size: 15.5px;
    line-height: 1.7;
    color: var(--muted);
    max-width: 720px;
}

html[data-lang="ar"] .faq__a-inner {
    font-size: 16px;
    line-height: 1.9;
}

.faq__item.open .faq__a {
    max-height: 500px;
}


/* ============================================================
KONTAKT + FORM
============================================================ */
.contact {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    align-items: stretch;
}

.contact__info {
    padding: 56px 48px;
    background: linear-gradient(180deg, var(--navy-2) 0%, var(--navy-3) 100%);
    border: 1px solid var(--line-gold);
    display: flex;
    flex-direction: column;
    gap: 32px;
    box-shadow: var(--shadow-lg);
    position: relative;
    overflow: hidden;
}

.contact__info::before {
    content: "";
    position: absolute;
    top: -100px;
    right: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.12), transparent 70%);
    pointer-events: none;
}

.contact__row {
    display: flex;
    flex-direction: column;
    gap: 8px;
    position: relative;
    z-index: 1;
}

.contact__label {
    font-family: var(--f-display);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--red);
}

html[data-lang="ar"] .contact__label {
    font-family: var(--f-arabic);
    letter-spacing: 0;
    text-transform: none;
    font-size: 13px;
    font-weight: 700;
}

.contact__value {
    font-family: var(--f-display);
    font-weight: 600;
    font-size: 22px;
    line-height: 1.3;
    letter-spacing: 0.01em;
    color: var(--ivory);
}

html[data-lang="ar"] .contact__value {
    font-family: var(--f-arabic);
    font-weight: 700;
    font-size: 20px;
}

.contact__value a {
    transition: color 0.2s;
}

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

.contact__hours {
    font-family: var(--f-body);
    font-size: 14px;
    line-height: 1.8;
    color: var(--muted);
}

html[data-lang="ar"] .contact__hours {
    font-family: var(--f-arabic);
    font-size: 15px;
    line-height: 2;
}

.contact__actions {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 8px;
}

/* FORM */
.form {
    padding: 56px 48px;
    background: linear-gradient(180deg, var(--navy-3) 0%, var(--navy-2) 100%);
    border: 1px solid var(--line);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    gap: 24px;
    position: relative;
    overflow: hidden;
}

.form::before {
    content: "";
    position: absolute;
    top: -100px;
    left: -100px;
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(237, 28, 36, 0.1), transparent 70%);
    pointer-events: none;
}

.form__header {
    display: flex;
    flex-direction: column;
    gap: 8px;
    margin-bottom: 8px;
    position: relative;
    z-index: 1;
}

.form__label-top {
    font-family: var(--f-display);
    font-size: 11px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--red);
}

html[data-lang="ar"] .form__label-top {
    font-family: var(--f-arabic);
    letter-spacing: 0;
    text-transform: none;
    font-size: 13px;
    font-weight: 700;
}

.form__title {
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 36px;
    line-height: 1;
    text-transform: uppercase;
    letter-spacing: -0.01em;
}

html[data-lang="ar"] .form__title {
    font-family: var(--f-arabic);
    font-weight: 800;
    text-transform: none;
    line-height: 1.2;
    font-size: 30px;
}

.form__sub {
    font-size: 14px;
    line-height: 1.6;
    color: var(--muted);
    margin-top: 4px;
}

html[data-lang="ar"] .form__sub {
    font-size: 15px;
    line-height: 1.8;
}

.form__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 16px;
    position: relative;
    z-index: 1;
}

.form__field--full {
    grid-column: span 2;
}

.form__field {
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.form__field-label {
    font-family: var(--f-body);
    font-size: 11px;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--muted);
    font-weight: 500;
}

html[data-lang="ar"] .form__field-label {
    font-family: var(--f-arabic);
    letter-spacing: 0;
    text-transform: none;
    font-size: 13px;
}

.form__input,
.form__textarea,
.form__select {
    width: 100%;
    padding: 14px 16px;
    background: rgba(4, 8, 26, 0.5);
    border: 1px solid var(--line-strong);
    color: var(--ivory);
    font-family: inherit;
    font-size: 15px;
    border-radius: 2px;
    transition: all 0.25s var(--ease);
    backdrop-filter: blur(8px);
}

html[data-lang="ar"] .form__input,
html[data-lang="ar"] .form__textarea,
html[data-lang="ar"] .form__select {
    font-family: var(--f-arabic);
}

.form__input:focus,
.form__textarea:focus,
.form__select:focus {
    outline: none;
    border-color: var(--gold);
    background: rgba(4, 8, 26, 0.8);
    box-shadow: 0 0 0 3px rgba(212, 175, 55, 0.15);
}

.form__textarea {
    resize: vertical;
    min-height: 120px;
    font-family: inherit;
    line-height: 1.6;
}

.form__select {
    appearance: none;
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='12' height='8' viewBox='0 0 12 8' fill='none'%3E%3Cpath d='M1 1.5L6 6.5L11 1.5' stroke='%239AA3B8' stroke-width='1.5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 16px center;
    padding-right: 40px;
}

html[dir="rtl"] .form__select {
    background-position: left 16px center;
    padding-right: 16px;
    padding-left: 40px;
}

.form__select option {
    background: var(--navy-2);
    color: var(--ivory);
}

.form__submit {
    margin-top: 8px;
    padding: 16px 28px;
    background: linear-gradient(180deg, var(--red) 0%, var(--red-dark) 100%);
    color: var(--white);
    font-family: var(--f-display);
    font-weight: 600;
    font-size: 15px;
    letter-spacing: 0.1em;
    text-transform: uppercase;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.3s var(--ease);
    box-shadow: var(--shadow-md), var(--shadow-inset);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 12px;
    position: relative;
    z-index: 1;
    border: none;
}

html[data-lang="ar"] .form__submit {
    font-family: var(--f-arabic);
    letter-spacing: 0;
    font-size: 15px;
    font-weight: 700;
}

.form__submit:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-red), var(--shadow-inset);
}

.form__submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.form__note {
    font-size: 12px;
    color: var(--muted);
    line-height: 1.6;
}

html[data-lang="ar"] .form__note {
    font-size: 13px;
    line-height: 1.8;
}

.form__status {
    padding: 14px 18px;
    border-radius: 2px;
    font-size: 14px;
    display: none;
}

.form__status.success {
    display: block;
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.4);
    color: #86efac;
}

.form__status.error {
    display: block;
    background: rgba(237, 28, 36, 0.12);
    border: 1px solid rgba(237, 28, 36, 0.4);
    color: #fca5a5;
}

/* Map */
.contact__map-wrap {
    grid-column: span 2;
    margin-top: 24px;
    position: relative;
    min-height: 380px;
    background: var(--navy-3);
    overflow: hidden;
    border: 1px solid var(--line);
    box-shadow: var(--shadow-md);
}

.contact__map-wrap iframe {
    width: 100%;
    height: 100%;
    min-height: 380px;
    border: 0;
    filter: grayscale(1) invert(0.92) contrast(0.92);
    mix-blend-mode: lighten;
}

/* ============================================================
CTA BAND
============================================================ */
.cta {
    max-width: var(--max);
    margin: 0 auto;
    padding: 140px var(--pad);
    text-align: center;
    position: relative;
}

.cta::before {
    content: "";
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 80%;
    height: 80%;
    background: radial-gradient(ellipse, rgba(237, 28, 36, 0.08), transparent 60%);
    filter: blur(60px);
    pointer-events: none;
    z-index: -1;
}

.cta__title {
    font-family: var(--f-display);
    font-weight: 700;
    font-size: clamp(48px, 7vw, 120px);
    line-height: 0.92;
    letter-spacing: -0.02em;
    text-transform: uppercase;
    margin-bottom: 32px;
}

html[data-lang="ar"] .cta__title {
    font-family: var(--f-arabic);
    font-weight: 900;
    text-transform: none;
    line-height: 1.1;
    font-size: clamp(40px, 6vw, 96px);
}

.cta__title em {
    font-style: italic;
    font-weight: 500;
    background: linear-gradient(180deg, var(--gold-bright), var(--gold-soft));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

html[data-lang="ar"] .cta__title em {
    font-style: normal;
    font-weight: 900;
}

.cta__sub {
    font-size: 17px;
    color: var(--muted);
    max-width: 560px;
    margin: 0 auto 40px;
    line-height: 1.6;
}

html[data-lang="ar"] .cta__sub {
    font-size: 18px;
    line-height: 1.85;
}

.cta__actions {
    display: inline-flex;
    gap: 12px;
    flex-wrap: wrap;
    justify-content: center;
}

/* ============================================================
FLOATING WHATSAPP
============================================================ */
.fab {
    position: fixed;
    bottom: 24px;
    right: 24px;
    width: 56px;
    height: 56px;
    background: #25D366;
    border-radius: 50%;
    display: grid;
    place-items: center;
    z-index: 90;
    box-shadow: var(--shadow-lg), 0 8px 32px rgba(37, 211, 102, 0.4);
    transition: all 0.3s var(--ease);
}

html[dir="rtl"] .fab {
    right: auto;
    left: 24px;
}

.fab:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: var(--shadow-xl), 0 12px 40px rgba(37, 211, 102, 0.5);
}

.fab::before {
    content: "";
    position: absolute;
    inset: -4px;
    border-radius: 50%;
    background: #25D366;
    opacity: 0.3;
    animation: fabPulse 2s ease-out infinite;
    z-index: -1;
}

@keyframes fabPulse {
    0% {
    transform: scale(1);
    opacity: 0.4;
    }

    100% {
    transform: scale(1.4);
    opacity: 0;
    }
}

.fab svg {
    width: 36px;
    height: 36px;
    color: white;
}

/* ============================================================
FOOTER
============================================================ */
.footer {
    background: var(--navy-deep);
    border-top: 1px solid var(--line);
    padding: 96px var(--pad) 40px;
    position: relative;
}

.footer__inner {
    max-width: var(--max);
    margin: 0 auto;
}

.footer__grid {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.3fr;
    gap: 48px;
    padding-bottom: 64px;
    border-bottom: 1px solid var(--line);
}

.footer__brand {
    display: flex;
    align-items: center;
    gap: 12px;
    font-family: var(--f-display);
    font-weight: 800;
    font-size: 26px;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    margin-bottom: 20px;
}

.footer__brand span {
    color: var(--red);
}

.footer__tagline {
    font-size: 14px;
    line-height: 1.65;
    color: var(--muted);
    max-width: 340px;
    margin-bottom: 24px;
}

html[data-lang="ar"] .footer__tagline {
    font-size: 15px;
    line-height: 1.85;
}

.footer__heading {
    font-family: var(--f-display);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.22em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 24px;
}

html[data-lang="ar"] .footer__heading {
    font-family: var(--f-arabic);
    letter-spacing: 0;
    text-transform: none;
    font-size: 15px;
    font-weight: 700;
}

.footer__list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__list a {
    font-size: 14px;
    color: var(--muted);
    transition: color 0.2s;
}

.footer__list a:hover {
    color: var(--ivory);
}

html[data-lang="ar"] .footer__list a {
    font-size: 15px;
}

.footer__contact-row {
    font-size: 14px;
    color: var(--muted);
    line-height: 1.7;
    margin-bottom: 8px;
}

.footer__contact-row a:hover {
    color: var(--gold);
}

html[data-lang="ar"] .footer__contact-row {
    font-size: 15px;
    line-height: 1.9;
}

.footer__socials {
    display: flex;
    gap: 10px;
    margin-top: 16px;
}

.footer__social {
    width: 40px;
    height: 40px;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: all 0.3s var(--ease);
}

.footer__social:hover {
    border-color: var(--red);
    background: var(--red);
    transform: translateY(-3px);
    box-shadow: var(--shadow-sm);
}

.footer__social svg {
    width: 16px;
    height: 16px;
}

.footer__bottom {
    padding-top: 32px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 24px;
    flex-wrap: wrap;
    font-size: 12px;
    color: var(--muted-2);
    letter-spacing: 0.06em;
}

.footer__bottom-links {
    display: flex;
    gap: 20px;
}

.footer__bottom-links a:hover {
    color: var(--ivory);
}

/* ============================================================
VIDEO MODAL
============================================================ */
.video-modal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(4, 8, 26, 0.94);
    backdrop-filter: blur(16px);
    z-index: 1050;
    padding: 40px 20px;
    align-items: center;
    justify-content: center;
}

.video-modal.open {
    display: flex;
}

.video-modal__inner {
    position: relative;
    width: 100%;
    max-width: 960px;
}

.video-modal__close {
    position: absolute;
    top: -44px;
    inset-inline-end: 0;
    width: 36px;
    height: 36px;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: all 0.2s;
    font-size: 1.2rem;
    color: var(--ivory);
}

.video-modal__close:hover {
    border-color: var(--red);
    color: var(--red);
}

.video-modal__frame {
    position: relative;
    padding-bottom: 56.25%;
    height: 0;
    overflow: hidden;
    border: 1px solid var(--line-gold);
    box-shadow: var(--shadow-2xl);
}

.video-modal__frame iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

/* ============================================================
LEGAL MODAL
============================================================ */
.legal {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(4, 8, 26, 0.88);
    backdrop-filter: blur(12px);
    z-index: 1000;
    padding: 40px 20px;
    overflow-y: auto;
}

.legal.open {
    display: block;
}

.legal__panel {
    max-width: 780px;
    margin: 40px auto;
    background: linear-gradient(180deg, var(--navy-2) 0%, var(--navy-3) 100%);
    border: 1px solid var(--line-gold);
    padding: 56px 56px 48px;
    position: relative;
    box-shadow: var(--shadow-2xl);
}

.legal__close {
    position: absolute;
    top: 20px;
    inset-inline-end: 20px;
    width: 36px;
    height: 36px;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    display: grid;
    place-items: center;
    transition: all 0.2s;
}

.legal__close:hover {
    border-color: var(--red);
    background: var(--red);
    color: var(--white);
}

.legal__title {
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 40px;
    text-transform: uppercase;
    letter-spacing: -0.01em;
    margin-bottom: 8px;
}

html[data-lang="ar"] .legal__title {
    font-family: var(--f-arabic);
    font-weight: 800;
    text-transform: none;
    font-size: 32px;
}

.legal__subtitle {
    font-size: 13px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--gold);
    margin-bottom: 32px;
}

html[data-lang="ar"] .legal__subtitle {
    font-family: var(--f-arabic);
    letter-spacing: 0;
    text-transform: none;
    font-size: 14px;
}

.legal__block {
    margin-bottom: 28px;
}

.legal__block h4 {
    font-family: var(--f-display);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.18em;
    text-transform: uppercase;
    color: var(--red);
    margin-bottom: 10px;
}

html[data-lang="ar"] .legal__block h4 {
    font-family: var(--f-arabic);
    letter-spacing: 0;
    text-transform: none;
    font-size: 15px;
    font-weight: 700;
}

.legal__block p,
.legal__block a {
    font-size: 15px;
    line-height: 1.75;
    color: var(--ivory);
    opacity: 0.85;
}

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

/* ============================================================
REVEAL ANIMATIONS
============================================================ */
.reveal {
    opacity: 0;
    transform: translateY(32px);
    transition: opacity 1s var(--ease-out), transform 1s var(--ease-out);
}

.reveal.in {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger>* {
    opacity: 0;
    transform: translateY(24px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

.reveal-stagger.in>* {
    opacity: 1;
    transform: translateY(0);
}

.reveal-stagger.in>*:nth-child(1) {
    transition-delay: 0ms;
}

.reveal-stagger.in>*:nth-child(2) {
    transition-delay: 100ms;
}

.reveal-stagger.in>*:nth-child(3) {
    transition-delay: 200ms;
}

.reveal-stagger.in>*:nth-child(4) {
    transition-delay: 300ms;
}

.reveal-stagger.in>*:nth-child(5) {
    transition-delay: 400ms;
}

.reveal-stagger.in>*:nth-child(6) {
    transition-delay: 500ms;
}


/* ============================================================
COOKIE BANNER — DSGVO compliant
============================================================ */
.cookie {
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 200;
    background: linear-gradient(180deg, var(--navy-2) 0%, var(--navy-deep) 100%);
    border-top: 1px solid var(--line-gold);
    box-shadow: 0 -24px 60px rgba(0, 0, 0, 0.5);
    padding: 28px var(--pad);
    transform: translateY(100%);
    transition: transform 0.6s var(--ease-out);
}

.cookie.show {
    transform: translateY(0);
}

.cookie__inner {
    max-width: var(--max);
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 32px;
    align-items: center;
}

.cookie__content {
    max-width: 720px;
}

.cookie__title {
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 20px;
    text-transform: uppercase;
    letter-spacing: 0.02em;
    color: var(--gold);
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 10px;
}

html[data-lang="ar"] .cookie__title,
html[data-lang="uk"] .cookie__title {
    font-family: var(--f-arabic);
    text-transform: none;
    font-weight: 800;
}

html[data-lang="uk"] .cookie__title {
    font-family: var(--f-display);
}

.cookie__title::before {
    content: "";
    width: 8px;
    height: 8px;
    background: var(--red);
    border-radius: 50%;
    box-shadow: 0 0 16px var(--red);
}

.cookie__text {
    font-size: 13.5px;
    line-height: 1.6;
    color: var(--muted);
}

html[data-lang="ar"] .cookie__text {
    font-family: var(--f-arabic);
    font-size: 14.5px;
    line-height: 1.8;
}

.cookie__text a {
    color: var(--gold);
    text-decoration: underline;
    text-underline-offset: 3px;
}

.cookie__text a:hover {
    color: var(--gold-bright);
}

.cookie__actions {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    align-items: center;
}

.cookie__btn {
    padding: 11px 20px;
    font-family: var(--f-display);
    font-weight: 600;
    font-size: 13px;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    border-radius: 2px;
    cursor: pointer;
    transition: all 0.25s var(--ease);
    border: 1px solid transparent;
    white-space: nowrap;
}

html[data-lang="ar"] .cookie__btn {
    font-family: var(--f-arabic);
    letter-spacing: 0;
    text-transform: none;
    font-weight: 700;
}

.cookie__btn--accept {
    background: linear-gradient(180deg, var(--red) 0%, var(--red-dark) 100%);
    color: var(--white);
    box-shadow: var(--shadow-md), var(--shadow-inset);
}

.cookie__btn--accept:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg), var(--shadow-red);
}

.cookie__btn--reject {
    background: transparent;
    color: var(--ivory);
    border-color: var(--line-strong);
}

.cookie__btn--reject:hover {
    border-color: var(--ivory);
    background: rgba(245, 241, 232, 0.05);
}

.cookie__btn--settings {
    background: transparent;
    color: var(--muted);
    font-size: 12px;
    padding: 11px 8px;
}

.cookie__btn--settings:hover {
    color: var(--ivory);
}

/* Cookie settings panel (expanded) */
.cookie-settings {
    display: none;
    position: fixed;
    inset: 0;
    background: rgba(4, 8, 26, 0.92);
    backdrop-filter: blur(16px);
    z-index: 1100;
    padding: 40px 20px;
    overflow-y: auto;
}

.cookie-settings.open {
    display: block;
}

.cookie-settings__panel {
    max-width: 640px;
    margin: 60px auto;
    background: linear-gradient(180deg, var(--navy-2) 0%, var(--navy-3) 100%);
    border: 1px solid var(--line-gold);
    padding: 48px 48px 36px;
    position: relative;
    box-shadow: var(--shadow-2xl);
}

.cookie-settings__close {
    position: absolute;
    top: 16px;
    inset-inline-end: 16px;
    width: 32px;
    height: 32px;
    border: 1px solid var(--line-strong);
    border-radius: 50%;
    display: grid;
    place-items: center;
    cursor: pointer;
    transition: all 0.2s;
}

.cookie-settings__close:hover {
    border-color: var(--red);
    background: var(--red);
}

.cookie-settings__title {
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 32px;
    text-transform: uppercase;
    margin-bottom: 8px;
}

html[data-lang="ar"] .cookie-settings__title {
    font-family: var(--f-arabic);
    font-weight: 800;
    text-transform: none;
    font-size: 26px;
}

.cookie-settings__sub {
    font-size: 14px;
    color: var(--muted);
    margin-bottom: 28px;
    line-height: 1.6;
}

html[data-lang="ar"] .cookie-settings__sub {
    font-family: var(--f-arabic);
    font-size: 15px;
    line-height: 1.85;
}

.cookie-cat {
    padding: 20px 0;
    border-top: 1px solid var(--line);
}

.cookie-cat:last-of-type {
    border-bottom: 1px solid var(--line);
    margin-bottom: 24px;
}

.cookie-cat__head {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    margin-bottom: 6px;
}

.cookie-cat__name {
    font-family: var(--f-display);
    font-weight: 600;
    font-size: 14px;
    letter-spacing: 0.16em;
    text-transform: uppercase;
    color: var(--ivory);
}

html[data-lang="ar"] .cookie-cat__name {
    font-family: var(--f-arabic);
    letter-spacing: 0;
    text-transform: none;
    font-size: 15px;
    font-weight: 700;
}

.cookie-cat__desc {
    font-size: 13px;
    color: var(--muted);
    line-height: 1.55;
}

html[data-lang="ar"] .cookie-cat__desc {
    font-family: var(--f-arabic);
    font-size: 14px;
    line-height: 1.75;
}

/* Toggle switch */
.cookie-toggle {
    position: relative;
    width: 42px;
    height: 22px;
    background: var(--navy-deep);
    border: 1px solid var(--line-strong);
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.25s;
    flex-shrink: 0;
}

.cookie-toggle::after {
    content: "";
    position: absolute;
    top: 2px;
    left: 2px;
    width: 16px;
    height: 16px;
    background: var(--muted);
    border-radius: 50%;
    transition: all 0.25s var(--ease);
}

.cookie-toggle.active {
    background: var(--gold);
    border-color: var(--gold);
}

.cookie-toggle.active::after {
    left: 22px;
    background: var(--navy);
}

.cookie-toggle.disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.cookie-toggle.disabled.active {
    background: var(--gold-soft);
}

html[dir="rtl"] .cookie-toggle::after {
    left: auto;
    right: 2px;
}

html[dir="rtl"] .cookie-toggle.active::after {
    right: 22px;
    left: auto;
}

.cookie-settings__actions {
    display: flex;
    gap: 8px;
    justify-content: flex-end;
    flex-wrap: wrap;
}

/* Mobile */
@media (max-width: 768px) {
    .cookie {
    padding: 20px var(--pad);
    }

    .cookie__inner {
    grid-template-columns: 1fr;
    gap: 16px;
    }

    .cookie__actions {
    width: 100%;
    }

    .cookie__btn {
    flex: 1;
    padding: 12px 12px;
    font-size: 12px;
    }

    .cookie__btn--settings {
    flex-basis: 100%;
    order: 3;
    padding: 8px;
    }

    .cookie-settings__panel {
    padding: 32px 24px;
    margin: 20px auto;
    }

    .cookie-settings__title {
    font-size: 24px;
    }

    .cookie-cat__head {
    flex-direction: row;
    align-items: flex-start;
    }
}

/* ============================================================
RESPONSIVE
============================================================ */
@media (max-width: 1200px) {
    :root {
    --pad: 32px;
    }

    .videos {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: 1fr 1fr 1fr;
    }

    .video-card--featured {
    grid-row: span 2;
    grid-column: span 2;
    }

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

    .gallery {
    grid-template-rows: 200px 200px 200px 200px;
    }

    .about {
    grid-template-columns: 1fr;
    gap: 48px;
    }

    .contact {
    grid-template-columns: 1fr;
    }

    .contact__map-wrap {
    grid-column: span 1;
    }
}

@media (max-width: 1100px) {
    .classes {
    grid-template-columns: repeat(2, 1fr);
    }

    .why__item {
    grid-column: span 6 !important;
    }

    .why__item:nth-child(1) {
    grid-column: span 12 !important;
    }

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

    .hero__title {
    font-size: clamp(54px, 10vw, 120px);
    }

    .footer__grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 40px;
    }

    body {
    cursor: auto;
    }

    .cursor,
    .cursor-follower {
    display: none;
    }
}

@media (max-width: 768px) {
    :root {
    --pad: 20px;
    --nav-h: 64px;
    }

    .section {
    padding: 96px var(--pad);
    }

    .nav__menu {
    display: none;
    }

    .nav__menu.open {
    display: flex;
    position: fixed;
    top: var(--nav-h);
    left: 0;
    right: 0;
    background: var(--navy);
    flex-direction: column;
    padding: 32px var(--pad);
    gap: 20px;
    border-bottom: 1px solid var(--line);
    font-size: 18px;
    box-shadow: var(--shadow-xl);
    }

    .nav__actions .btn {
    display: none;
    }

    .nav__burger {
    display: block;
    }

    .hero {
    min-height: auto;
    padding-top: calc(var(--nav-h) + 48px);
    padding-bottom: 48px;
    }

    .hero__meta {
    margin-bottom: 40px;
    font-size: 11px;
    }

    .hero__title {
    font-size: clamp(48px, 14vw, 88px);
    margin-bottom: 32px;
    }

    .hero__bottom {
    grid-template-columns: 1fr;
    gap: 40px;
    }

    .hero__badges {
    padding-inline-start: 0;
    border: none;
    gap: 32px;
    }

    .hero__badge-value {
    font-size: 36px;
    }

    .section__head {
    grid-template-columns: 1fr;
    gap: 24px;
    margin-bottom: 56px;
    }

    .section__kicker {
    max-width: none;
    }

    .classes {
    grid-template-columns: 1fr;
    }

    .class-card__code {
    font-size: 72px;
    }

    .class-card {
    padding: 36px 24px;
    min-height: 260px;
    }

    .why {
    gap: 16px;
    }

    .why__item {
    grid-column: span 12 !important;
    padding: 32px 24px;
    }

    .process__step {
    grid-template-columns: 1fr;
    gap: 16px;
    padding: 40px 0;
    }

    .process__num {
    font-size: 56px;
    }

    .process__tag {
    align-self: flex-start;
    }

    .videos {
    grid-template-columns: 1fr;
    grid-template-rows: auto;
    min-height: auto;
    }

    .video-card {
    min-height: 240px;
    }

    .video-card--featured {
    grid-row: span 1;
    grid-column: span 1;
    }

    .video-card--featured .video-card__title {
    font-size: 22px;
    }

    .team-grid {
    grid-template-columns: 1fr 1fr;
    gap: 12px;
    }

    .gallery {
    grid-template-columns: 1fr 1fr;
    grid-template-rows: repeat(6, 160px);
    }

    .gallery__item {
    grid-column: span 1 !important;
    grid-row: span 1 !important;
    }

    .testimonials {
    grid-template-columns: 1fr;
    }

    .marquee__item {
    font-size: 22px;
    gap: 40px;
    }

    .marquee__track {
    gap: 40px;
    padding-inline-start: 40px;
    }

    .contact__info,
    .form {
    padding: 36px 24px;
    }

    .form__grid {
    grid-template-columns: 1fr;
    }

    .form__field--full {
    grid-column: span 1;
    }

    .form__title {
    font-size: 28px;
    }

    .footer {
    padding: 64px var(--pad) 32px;
    }

    .footer__grid {
    grid-template-columns: 1fr;
    gap: 32px;
    padding-bottom: 40px;
    }

    .footer__bottom {
    flex-direction: column;
    align-items: flex-start;
    gap: 16px;
    }

    .legal__panel {
    padding: 40px 24px;
    }

    .cta {
    padding: 80px var(--pad);
    }

    .btn {
    padding: 12px 20px;
    font-size: 13px;
    }

    .fab {
    bottom: 16px;
    right: 16px;
    width: 52px;
    height: 52px;
    }

    html[dir="rtl"] .fab {
    right: auto;
    left: 16px;
    }
}


/* ============================================================
OFFICIAL LOGO — Top Drive Fahrschule GmbH
============================================================ */
.nav__logo-img {
    height: 38px;
    width: auto;
    max-width: 160px;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.3));
    transition: transform 0.3s var(--ease);
}

.nav__logo:hover .nav__logo-img {
    transform: scale(1.04);
}

.nav.scrolled .nav__logo-img {
    height: 32px;
}

.footer__logo-img {
    height: 56px;
    width: auto;
    max-width: 220px;
    display: block;
    object-fit: contain;
    filter: drop-shadow(0 8px 20px rgba(0, 0, 0, 0.4));
    margin-bottom: 20px;
}

/* Hide old text-based logo elements when image is present */
.nav__logo--with-img .nav__logo-text,
.footer__brand--with-img .footer__brand-text {
    display: none;
}

@media (max-width: 768px) {
    .nav__logo-img {
    height: 32px;
    max-width: 130px;
    }

    .nav.scrolled .nav__logo-img {
    height: 28px;
    }

    .footer__logo-img {
    height: 48px;
    }
}

/* ============================================================
ABOUT — Brand pillars (no personal photo)
============================================================ */
.about--brand {
    display: block;
}

.about__intro {
    margin-bottom: 64px;
    max-width: 900px;
}

.about__intro .about__quote {
    font-family: var(--f-display);
    font-weight: 500;
    font-style: italic;
    font-size: clamp(28px, 3.4vw, 52px);
    line-height: 1.15;
    color: var(--ivory);
    position: relative;
    padding-inline-start: 40px;
    border-inline-start: 3px solid var(--red);
    margin: 0;
}

html[data-lang="ar"] .about__intro .about__quote {
    font-family: var(--f-arabic);
    font-style: normal;
    font-weight: 600;
    line-height: 1.5;
    font-size: clamp(22px, 2.8vw, 38px);
}

.about__pillars {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.about__pillar {
    padding: 48px 36px;
    background: linear-gradient(180deg, var(--navy-2) 0%, rgba(13, 21, 46, 0.6) 100%);
    border: 1px solid var(--line);
    position: relative;
    overflow: hidden;
    transition: all 0.5s var(--ease);
    box-shadow: var(--shadow-sm);
}

.about__pillar:hover {
    border-color: var(--line-gold);
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg);
}

.about__pillar::after {
    content: "";
    position: absolute;
    top: 0;
    right: 0;
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.08), transparent 70%);
    opacity: 0;
    transition: opacity 0.5s;
    pointer-events: none;
}

.about__pillar:hover::after {
    opacity: 1;
}

.about__pillar-num {
    font-family: var(--f-display);
    font-weight: 700;
    font-size: 14px;
    letter-spacing: 0.2em;
    color: var(--red);
    margin-bottom: 32px;
}

.about__pillar-title {
    font-family: var(--f-display);
    font-weight: 600;
    font-size: clamp(22px, 2vw, 32px);
    line-height: 1.05;
    letter-spacing: -0.01em;
    text-transform: uppercase;
    margin-bottom: 14px;
}

html[data-lang="ar"] .about__pillar-title {
    font-family: var(--f-arabic);
    font-weight: 800;
    text-transform: none;
    line-height: 1.3;
    font-size: clamp(20px, 1.8vw, 28px);
}

.about__pillar-text {
    font-size: 15px;
    line-height: 1.65;
    color: var(--muted);
}

html[data-lang="ar"] .about__pillar-text {
    font-size: 15.5px;
    line-height: 1.85;
}

@media (max-width: 1100px) {
    .about__pillars {
    grid-template-columns: 1fr;
    gap: 16px;
    }
}

@media (max-width: 768px) {
    .about__intro {
    margin-bottom: 40px;
    }

    .about__pillar {
    padding: 32px 24px;
    }
}
