/* ============================================================
JOHNSON SMART FILM — Master Stylesheet v4.1
Performance & Accessibility Optimized
============================================================ */
/* ── Google Fonts ─────────────────────────────────────────── */
@import url('https://fonts.googleapis.com/css2?family=Tajawal:wght@300;400;500;700;800&family=Bebas+Neue&family=DM+Sans:wght@300;400;500;600&display=swap');

/* ── CSS Variables ─────────────────────────────────────────── */
:root {
    --bg:         #060608;
    --bg-2:       #0c0c10;
    --bg-card:    #111116;
    --bg-glass:   rgba(10,10,14,0.85);
    --text:       #f0f0f5;
    --text-2:     #9090a0;
    --text-3:     #505060;
    --accent:     #00d4ff;
    --accent-dim: rgba(0,212,255,0.12);
    --accent-glow:rgba(0,212,255,0.30);
    --gold:       #c9a96e;
    --gold-dim:   rgba(201,169,110,0.12);
    --red:        #ff4060;
    --green:      #00d48a;
    --border:     rgba(255,255,255,0.07);
    --border-2:   rgba(255,255,255,0.12);
    --radius:     14px;
    --radius-sm:  8px;
    --shadow:     0 8px 40px rgba(0,0,0,0.5);
    --font-ar:    'Tajawal', sans-serif;
    --font-en:    'DM Sans', sans-serif;
    --font-disp:  'Bebas Neue', cursive;
    --ease:       cubic-bezier(0.25,0.46,0.45,0.94);
    --ease-out:   cubic-bezier(0.16,1,0.3,1);
    --trans:      0.35s var(--ease);
}

/* ── Reset ─────────────────────────────────────────────────── */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

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

body {
    font-family: var(--font-ar);
    background: var(--bg);
    color: var(--text);
    line-height: 1.7;
    overflow-x: hidden;
    -webkit-font-smoothing: antialiased;
    touch-action: pan-y;
}

a { text-decoration: none; color: inherit; }
img { display: block; max-width: 100%; height: auto; } /* Added height:auto for CLS */
ul { list-style: none; }
button { cursor: pointer; border: none; background: none; font-family: inherit; }

/* ── Scrollbar ─────────────────────────────────────────────── */
::-webkit-scrollbar { width: 5px; }
::-webkit-scrollbar-track { background: var(--bg); }
::-webkit-scrollbar-thumb { background: rgba(0,212,255,0.3); border-radius: 4px; }

/* ── Selection ─────────────────────────────────────────────── */
::selection { background: var(--accent-dim); color: var(--accent); }

/* ── Container ─────────────────────────────────────────────── */
.container { max-width: 1320px; margin: 0 auto; padding: 0 32px; }
.container--narrow { max-width: 860px; margin: 0 auto; padding: 0 32px; }

/* ── Utility ──────────────────────────────────────────────── */
.d-none { display: none; }
.d-md-inline { display: none; }
@media (min-width: 768px) { .d-md-inline { display: inline; } }

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

/* ── Loader ─────────────────────────────────────────────────── */
.loader {
    position: fixed;
    inset: 0;
    background: var(--bg);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 10000;
    transition: opacity 0.7s cubic-bezier(0.76,0,0.24,1), visibility 0.7s;
    overflow: hidden;
}

.loader.hidden {
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
}

.loader__glow {
    position: absolute;
    inset: 0;
    background: radial-gradient(ellipse 60% 60% at 50% 50%, rgba(0,212,255,0.07) 0%, transparent 70%);
    animation: loaderPulse 2.5s ease-in-out infinite alternate;
}

@keyframes loaderPulse {
    from { opacity: 0.5; transform: scale(0.9); }
    to { opacity: 1; transform: scale(1.1); }
}

.loader__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 24px;
}

.loader__logo-ring {
    position: relative;
    width: 100px;
    height: 100px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.loader__logo-ring::before,
.loader__logo-ring::after {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1px solid transparent;
}

.loader__logo-ring::before {
    border-top-color: var(--accent);
    border-right-color: var(--accent);
    animation: spinRing 1.8s linear infinite;
}

.loader__logo-ring::after {
    inset: 8px;
    border-bottom-color: var(--gold);
    border-left-color: var(--gold);
    animation: spinRing 2.4s linear infinite reverse;
}

@keyframes spinRing {
    to { transform: rotate(360deg); }
}

.loader__logo-img {
    width: 52px;
    height: 52px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    animation: logoIn 0.6s var(--ease-out) 0.2s both;
}

@keyframes logoIn {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 1; transform: scale(1); }
}

.loader__text {
    font-family: var(--font-disp);
    font-size: 18px;
    letter-spacing: 8px;
    color: var(--text-2);
    animation: fadeUp 0.5s ease 0.5s both;
}

.loader__bar {
    width: 180px;
    height: 1px;
    background: var(--border);
    border-radius: 4px;
    overflow: hidden;
}

.loader__bar-fill {
    height: 100%;
    width: 0;
    background: linear-gradient(90deg, var(--accent), var(--gold));
    animation: barFill 1.3s var(--ease-out) 0.3s both;
}

@keyframes barFill {
    to { width: 100%; }
}

@keyframes fadeUp {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

/* ── Buttons ─────────────────────────────────────────────────── */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    padding: 13px 28px;
    border-radius: var(--radius-sm);
    font-family: var(--font-ar);
    font-size: 15px;
    font-weight: 600;
    transition: var(--trans);
    white-space: nowrap;
    position: relative;
    overflow: hidden;
}

.btn::after {
    content: '';
    position: absolute;
    inset: 0;
    background: rgba(255,255,255,0);
    transition: background 0.2s;
}

.btn:hover::after { background: rgba(255,255,255,0.05); }

.btn--primary {
    background: var(--accent);
    color: #000;
    box-shadow: 0 0 24px var(--accent-glow);
}

.btn--primary:hover {
    background: #10e0ff;
    box-shadow: 0 0 36px var(--accent-glow);
    transform: translateY(-1px);
}

.btn--outline {
    border: 1px solid var(--border-2);
    color: var(--text);
    background: transparent;
}

.btn--outline:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-dim);
}

.btn--gold {
    background: var(--gold);
    color: #000;
    box-shadow: 0 0 20px rgba(201,169,110,0.25);
}

.btn--gold:hover {
    background: #d9b97e;
    transform: translateY(-1px);
}

.btn--ghost {
    color: var(--text-2);
    padding: 10px 20px;
}

.btn--ghost:hover { color: var(--text); }

.btn--sm { padding: 9px 20px; font-size: 13px; }
.btn--lg { padding: 16px 36px; font-size: 16px; }
.btn--full { width: 100%; justify-content: center; }

.btn--danger {
    background: rgba(255,64,96,0.12);
    color: var(--red);
    border: 1px solid rgba(255,64,96,0.2);
}

.btn--danger:hover { background: rgba(255,64,96,0.2); }

/* ── Header ──────────────────────────────────────────────────── */
.header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 20px 0;
    transition: all var(--trans);
}

.header.scrolled {
    background: var(--bg-glass);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--border);
    padding: 12px 0;
}

.header__container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.header__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.header__logo-img {
    width: 34px;
    height: 34px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    transition: 0.3s;
}

.header__logo:hover .header__logo-img {
    filter: drop-shadow(0 0 8px var(--accent)) brightness(0) invert(1) sepia(1) saturate(5) hue-rotate(163deg);
}

.header__logo-text {
    font-family: var(--font-disp);
    font-size: 22px;
    letter-spacing: 2px;
    line-height: 1;
}

.header__logo-text span {
    color: var(--accent);
    font-family: var(--font-en);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 3px;
    display: block;
    margin-top: 1px;
}

.header__nav-list {
    display: flex;
    align-items: center;
    gap: 28px;
}

.header__actions {
    display: flex;
    align-items: center;
    gap: 12px;
}

.header__menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    padding: 4px;
    background: none;
    border: none;
    cursor: pointer;
}

.header__menu-btn span {
    display: block;
    width: 22px;
    height: 1.5px;
    background: var(--text);
    border-radius: 2px;
    transition: 0.3s ease;
}

.header__menu-btn.active span:nth-child(1) {
    transform: rotate(45deg) translate(4.5px, 4.5px);
}

.header__menu-btn.active span:nth-child(2) { opacity: 0; }

.header__menu-btn.active span:nth-child(3) {
    transform: rotate(-45deg) translate(4.5px, -4.5px);
}

/* ── Mobile Nav ──────────────────────────────────────────────── */
.mobile-nav {
    position: fixed;
    inset: 0;
    width: 100%;
    height: 100%;
    background: rgba(6, 6, 8, 0.98);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    flex-direction: column;
    align-items: center;
    justify-content: center;
    z-index: 9999;
    opacity: 0;
    visibility: hidden;
    pointer-events: none;
    transition: opacity 0.35s ease, visibility 0.35s ease;
    padding: 80px 24px 40px;
    overflow-y: auto;
    display: none;
}

.mobile-nav.open {
    display: flex !important;
    opacity: 1 !important;
    visibility: visible !important;
    pointer-events: all !important;
}

.mobile-nav__close {
    position: fixed;
    top: 16px;
    right: 16px;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-2);
    font-size: 20px;
    cursor: pointer;
    z-index: 10001;
    transition: all 0.25s ease;
    transform: none !important;
}

.mobile-nav__close:hover,
.mobile-nav__close:active {
    background: rgba(0, 212, 255, 0.15);
    color: var(--accent);
    border-color: var(--accent);
}

.mobile-nav-link {
    font-family: var(--font-disp);
    font-size: clamp(30px, 7vw, 42px);
    letter-spacing: 3px;
    color: var(--text-2);
    padding: 12px 0;
    transition: color 0.2s;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    width: 100%;
    text-decoration: none;
    transform: none !important;
}

.mobile-nav-link:hover,
.mobile-nav-link:active {
    color: var(--accent);
}

/* ── Hero Section ────────────────────────────────────────────── */
.hero {
    position: relative;
    height: 100vh;
    min-height: 700px;
    display: flex;
    align-items: center;
    overflow: hidden;
    z-index: 2;
    background: var(--bg);
}

.hero__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 1;
    opacity: 0.5;
    filter: saturate(0.6);
    contain: strict;
    will-change: auto;
}

.hero__canvas {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
}

.hero__overlay {
    position: absolute;
    inset: 0;
    z-index: 3;
    background: linear-gradient(
        to right,
        rgba(6,6,8,0.92) 0%,
        rgba(6,6,8,0.55) 50%,
        rgba(6,6,8,0.20) 100%
    );
}

.hero__overlay-bottom {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 3;
    height: 35%;
    background: linear-gradient(to top, var(--bg), transparent);
}

.hero__scanlines {
    position: absolute;
    inset: 0;
    z-index: 3;
    pointer-events: none;
    background: repeating-linear-gradient(
        0deg,
        transparent 0px,
        transparent 2px,
        rgba(0,0,0,0.04) 2px,
        rgba(0,0,0,0.04) 4px
    );
    animation: scanMove 8s linear infinite;
}

@keyframes scanMove {
    from { background-position: 0 0; }
    to { background-position: 0 100px; }
}

.hero__content {
    position: relative;
    z-index: 10;
    max-width: 680px;
    padding-top: 100px;
}

.hero__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-en);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 24px;
    opacity: 0;
    animation: fadeUp 0.6s ease 1.6s both;
}

.hero__eyebrow::before {
    content: '';
    width: 28px;
    height: 1px;
    background: var(--accent);
}

.hero__title {
    font-family: var(--font-disp);
    font-size: clamp(62px, 8vw, 110px);
    line-height: 0.95;
    letter-spacing: 1px;
    margin-bottom: 28px;
    overflow: hidden;
}

.hero__title-line {
    display: block;
    overflow: hidden;
    opacity: 0;
    animation: titleReveal 0.9s var(--ease-out) both;
}

.hero__title-line:nth-child(1) { animation-delay: 1.7s; }
.hero__title-line:nth-child(2) { animation-delay: 1.9s; color: var(--accent); }
.hero__title-line:nth-child(3) {
    animation-delay: 2.1s;
    font-family: var(--font-ar);
    font-size: clamp(18px, 2.5vw, 28px);
    color: var(--text-2);
    font-weight: 300;
    letter-spacing: 0;
    margin-top: 8px;
}

@keyframes titleReveal {
    from { opacity: 0; transform: translateY(100%); }
    to { opacity: 1; transform: translateY(0); }
}

.hero__desc {
    font-size: 16px;
    color: var(--text-2);
    line-height: 1.8;
    max-width: 500px;
    margin-bottom: 40px;
    opacity: 0;
    animation: fadeUp 0.7s ease 2.3s both;
}

.hero__actions {
    display: flex;
    gap: 0;
    flex-wrap: wrap;
    align-items: center;
    opacity: 0;
    animation: fadeUp 0.7s ease 2.5s both;
}

.hero__badge {
    position: absolute;
    top: 50%;
    right: 8%;
    transform: translateY(-50%);
    z-index: 10;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 16px;
    opacity: 0;
    animation: fadeUp 0.7s ease 2.8s both;
}

.hero__badge-ring {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    border: 1px solid var(--border-2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    animation: rotateSlow 20s linear infinite;
}

.hero__badge-ring::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    border: 1px dashed rgba(0,212,255,0.15);
    animation: rotateSlow 30s linear infinite reverse;
}

@keyframes rotateSlow {
    to { transform: rotate(360deg); }
}

.hero__badge-img {
    width: 54px;
    height: 54px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    animation: rotateSlow 20s linear infinite reverse;
}

.hero__badge-label {
    font-family: var(--font-en);
    font-size: 9px;
    letter-spacing: 4px;
    color: var(--text-3);
    text-align: center;
    text-transform: uppercase;
}

.hero__badge-partner {
    display: flex;
    align-items: center;
    gap: 8px;
    font-family: var(--font-en);
    font-size: 10px;
    letter-spacing: 2px;
    color: var(--gold);
}

.hero__badge-partner::before,
.hero__badge-partner::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--gold);
    opacity: 0.3;
}

/* ── Ticker (FIXED - Smooth Loop) ──────────────────────────── */
.hero__ticker {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    z-index: 10;
    height: 48px;
    background: rgba(0,212,255,0.06);
    border-top: 1px solid rgba(0,212,255,0.12);
    overflow: hidden;
    display: flex;
    align-items: center;
}

.hero__ticker-track {
    display: flex;
    width: max-content;
    align-items: center;
    gap: 32px;
    animation: tickerMove 18s linear infinite;
    white-space: nowrap;
    font-family: var(--font-en);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: 4px;
    color: var(--text-2);
}

.hero__ticker-dot {
    color: var(--accent);
    opacity: 0.5;
}

@keyframes tickerMove {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

.hero__scroll-inline {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    padding: 0 24px;
    position: relative;
    opacity: 0;
    animation: fadeUp 0.7s ease 2.7s both;
}

.hero__scroll-inline span {
    font-family: var(--font-en);
    font-size: 10px;
    letter-spacing: 3px;
    color: var(--text-3);
    white-space: nowrap;
}

.hero__scroll-inline .hero__scroll-line {
    width: 1px;
    height: 40px;
    background: linear-gradient(var(--accent), transparent);
    animation: scrollPulse 2s ease infinite;
}

@keyframes scrollPulse {
    0%, 100% { opacity: 0.3; transform: scaleY(0.8); }
    50% { opacity: 1; transform: scaleY(1); }
}

/* ── Section Base ────────────────────────────────────────────── */
.section { padding: 120px 0; position: relative; z-index: 1; }
.section--dark { background: var(--bg-2); }
.section--alt { background: linear-gradient(180deg, var(--bg) 0%, var(--bg-2) 100%); }

.section__header {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 72px;
}

.section__tag {
    display: inline-block;
    font-family: var(--font-en);
    font-size: 11px;
    font-weight: 600;
    letter-spacing: 4px;
    text-transform: uppercase;
    color: var(--accent);
    margin-bottom: 16px;
}

.section__title {
    font-family: var(--font-disp);
    font-size: clamp(36px, 5vw, 58px);
    line-height: 1.05;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.section__desc {
    color: var(--text-2);
    font-size: 16px;
    line-height: 1.8;
}

/* ── About Section ──────────────────────────────────────────── */
.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-media { position: relative; }

.about-media__img {
    width: 100%;
    border-radius: var(--radius);
    overflow: hidden;
    aspect-ratio: 4/3;
    object-fit: cover;
    border: 1px solid var(--border);
}

.about-media__badge {
    position: absolute;
    bottom: -24px;
    right: -24px;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    padding: 24px 28px;
    text-align: center;
    box-shadow: var(--shadow);
}

.about-media__badge-num {
    font-family: var(--font-disp);
    font-size: 48px;
    color: var(--accent);
    line-height: 1;
}

.about-media__badge-text {
    font-size: 12px;
    color: var(--text-2);
    letter-spacing: 2px;
    text-transform: uppercase;
}

.about-content .section__tag { text-align: left; }
.about-content .section__title { text-align: left; font-size: clamp(28px, 4vw, 44px); }

.about-desc {
    font-size: 16px;
    color: var(--text-2);
    line-height: 1.9;
    margin-bottom: 32px;
}

.about-features {
    display: flex;
    flex-direction: column;
    gap: 18px;
    margin-bottom: 36px;
}

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

.about-feature__icon {
    width: 40px;
    height: 40px;
    border-radius: 10px;
    background: var(--accent-dim);
    border: 1px solid rgba(0,212,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 16px;
    flex-shrink: 0;
}

.about-feature h4 {
    font-size: 15px;
    font-weight: 600;
    margin-bottom: 3px;
}

.about-feature p {
    font-size: 13px;
    color: var(--text-2);
}

/* ── Services Grid ──────────────────────────────────────────── */
.services-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2px;
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
}

.service-card {
    background: var(--bg-card);
    padding: 40px 32px;
    border-left: 1px solid var(--border);
    position: relative;
    overflow: hidden;
    transition: background 0.35s;
}

.service-card:first-child { border-left: none; }

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

.service-card:hover { background: rgba(0,212,255,0.03); }
.service-card:hover::before { transform: scaleX(1); }

.service-card__num {
    font-family: var(--font-disp);
    font-size: 52px;
    color: var(--border-2);
    line-height: 1;
    margin-bottom: 20px;
    transition: color 0.3s;
}

.service-card:hover .service-card__num { color: var(--accent-dim); }

.service-card__icon {
    width: 52px;
    height: 52px;
    border-radius: 12px;
    background: var(--accent-dim);
    border: 1px solid rgba(0,212,255,0.15);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--accent);
    font-size: 22px;
    margin-bottom: 20px;
}

.service-card__title {
    font-family: var(--font-en);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 12px;
}

.service-card__desc {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.8;
    margin-bottom: 24px;
}

.service-card__tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.service-card__tag {
    font-family: var(--font-en);
    font-size: 11px;
    letter-spacing: 1px;
    padding: 4px 12px;
    border-radius: 999px;
    border: 1px solid var(--border);
    color: var(--text-3);
}

/* ── Stats Bar ───────────────────────────────────────────────── */
.stats-bar {
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    border-bottom: 1px solid var(--border);
    padding: 64px 0;
    position: relative;
    z-index: 1;
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
}

.stat-item {
    text-align: center;
    padding: 0 24px;
    border-left: 1px solid var(--border);
}

.stat-item:first-child { border-left: none; }

.stat-number {
    font-family: var(--font-disp);
    font-size: 56px;
    color: var(--text);
    display: block;
    line-height: 1;
    margin-bottom: 8px;
}

.stat-number span { color: var(--accent); }

.stat-label {
    font-size: 14px;
    color: var(--text-2);
}

/* ── Pricing / Products ─────────────────────────────────────── */
.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    align-items: stretch;
}

.pricing-card {
    display: flex;
    flex-direction: column;
    position: relative;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform 0.5s var(--ease-out), box-shadow 0.5s var(--ease-out), border-color 0.5s var(--ease-out);
}

.pricing-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent);
    box-shadow: 0 24px 60px rgba(0,212,255,0.16), var(--shadow);
}

.pricing-card__ribbon {
    position: absolute;
    top: 18px;
    left: 18px;
    z-index: 3;
    background: var(--accent);
    color: #04141c;
    font-family: var(--font-en);
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1.5px;
    text-transform: uppercase;
    padding: 6px 14px;
    border-radius: 30px;
    box-shadow: 0 6px 18px rgba(0,212,255,0.35);
}

.pricing-card__media {
    position: relative;
    height: 380px;
    overflow: hidden;
    background: linear-gradient(135deg, #0c0c10 0%, #16161c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    border-bottom: 1px solid var(--border);
}

.pricing-card__media--gloss { background: linear-gradient(135deg, rgba(0,212,255,0.22), rgba(6,6,8,0.92)); }
.pricing-card__media--matte { background: linear-gradient(135deg, rgba(201,169,110,0.28), rgba(6,6,8,0.94)); }
.pricing-card__media--vlt71 { background: linear-gradient(135deg, rgba(0,212,255,0.16), rgba(6,6,8,0.72)); }
.pricing-card__media--vlt45 { background: linear-gradient(135deg, rgba(0,212,255,0.11), rgba(6,6,8,0.84)); }
.pricing-card__media--vlt35 { background: linear-gradient(135deg, rgba(0,212,255,0.06), rgba(6,6,8,0.94)); }
.pricing-card__media--safety { background: linear-gradient(135deg, rgba(0,212,138,0.22), rgba(6,6,8,0.9)); }

.pricing-card__img {
    position: absolute;
    inset: 0;
    z-index: 2;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 1.4s var(--ease-out);
    animation: mediaBreathe 14s ease-in-out infinite;
}

@keyframes mediaBreathe {
    0%, 100% { transform: scale(1.0); }
    50% { transform: scale(1.06); }
}

.pricing-card:hover .pricing-card__img {
    animation-play-state: paused;
    transform: scale(1.14);
}

.pricing-card__media::before {
    content: '';
    position: absolute;
    top: 0;
    left: -60%;
    width: 40%;
    height: 100%;
    z-index: 3;
    background: linear-gradient(115deg, transparent, rgba(255,255,255,0.22), transparent);
    transform: skewX(-20deg);
    transition: left 0.8s var(--ease-out);
    pointer-events: none;
}

.pricing-card:hover .pricing-card__media::before { left: 140%; }

.pricing-card__badge {
    position: absolute;
    bottom: 14px;
    right: 14px;
    z-index: 3;
    display: flex;
    align-items: center;
    gap: 6px;
    background: rgba(6,6,8,0.65);
    backdrop-filter: blur(6px);
    border: 1px solid var(--border-2);
    border-radius: 30px;
    padding: 6px 12px;
    font-family: var(--font-en);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    color: var(--text-2);
}

.pricing-card__badge i { color: var(--gold); }

.pricing-card__media-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    pointer-events: none;
    background: linear-gradient(180deg, rgba(6,6,8,0) 35%, rgba(6,6,8,0.92) 100%);
}

.pricing-card__num {
    position: absolute;
    top: 16px;
    left: 18px;
    z-index: 3;
    font-family: var(--font-disp);
    font-size: 15px;
    letter-spacing: 2px;
    color: var(--text-2);
    opacity: 0.8;
}

.pricing-card__media-title {
    position: absolute;
    bottom: 16px;
    left: 20px;
    right: 20px;
    z-index: 3;
    font-family: var(--font-disp);
    font-size: 26px;
    letter-spacing: 1px;
    color: var(--text);
    text-shadow: 0 2px 12px rgba(0,0,0,0.6);
    transform: translateY(8px);
    opacity: 0;
    transition: transform 0.6s var(--ease-out), opacity 0.6s var(--ease-out);
}

.pricing-card:hover .pricing-card__media-title {
    transform: translateY(0);
    opacity: 1;
}

.pricing-card.reveal {
    transform: translateY(48px) scale(0.96);
    filter: blur(6px);
    transition: opacity 1s var(--ease-out), transform 1s var(--ease-out), filter 1s var(--ease-out);
}

.pricing-card.reveal.in {
    transform: translateY(0) scale(1);
    filter: blur(0);
}

.pricing-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 28px;
}

.pricing-name {
    font-family: var(--font-en);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text-2);
    margin-bottom: 6px;
}

.pricing-title {
    font-family: var(--font-disp);
    font-size: 32px;
    margin-bottom: 24px;
    letter-spacing: 1px;
}

.pricing-features {
    display: flex;
    flex-direction: column;
    gap: 12px;
    margin-bottom: 28px;
    flex: 1;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    color: var(--text-2);
}

.pricing-features li i {
    color: var(--accent);
    font-size: 12px;
    flex-shrink: 0;
}

.pricing-card__cta {
    width: 100%;
    justify-content: center;
    margin-top: auto;
}

/* ── Booking Form ────────────────────────────────────────────── */
.booking-wrap {
    background: rgba(0, 187, 255, 0.03);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 24px;
    padding: 3rem 2rem;
    backdrop-filter: blur(10px);
}

.booking-progress {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: flex-start;
    gap: 0;
    margin-bottom: 3rem;
    position: relative;
}

.booking-progress__step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 12px;
    position: relative;
    z-index: 2;
    flex: 1;
    max-width: 160px;
}

.booking-progress__num {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: linear-gradient(135deg, #00d4ff, #006680);
    color: #000;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.4rem;
    font-weight: 700;
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.booking-progress__step span {
    color: var(--accent);
    font-size: 13px;
    font-weight: 500;
    text-align: center;
    letter-spacing: 1px;
}

.booking-progress__line {
    flex: 1;
    height: 2px;
    background: rgba(0, 212, 255, 0.25);
    margin-top: 32px;
    z-index: 1;
    align-self: flex-start;
}

.booking-progress__step::after {
    display: none !important;
}

.coming-soon-box {
    text-align: center;
    padding: 4rem 2rem;
    background: rgba(0, 0, 0, 0.04);
    border-radius: 20px;
    border: 1px solid rgba(0, 0, 0, 0.08);
}

.coming-soon-icon {
    font-size: 4rem;
    color: #00ffff;
    margin-bottom: 1.5rem;
}

.coming-soon-box h3 {
    font-size: 2rem;
    margin-bottom: 1rem;
    color: #00ffff;
}

.coming-soon-box p {
    max-width: 600px;
    margin: 0 auto 2rem;
    color: #00ffff;
    line-height: 1.8;
}

/* ── Footer ─────────────────────────────────────────────────── */
.footer {
    background: var(--bg-2);
    border-top: 1px solid var(--border);
    position: relative;
    z-index: 1;
}

.footer__main { padding: 80px 0 60px; }

.footer__grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.3fr;
    gap: 48px;
}

.footer__logo {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 16px;
}

.footer__logo-img {
    width: 32px;
    height: 32px;
    object-fit: contain;
    filter: brightness(0) invert(1);
    opacity: 0.7;
}

.footer__logo-name {
    font-family: var(--font-disp);
    font-size: 20px;
    letter-spacing: 2px;
}

.footer__logo-name span {
    color: var(--accent);
    font-family: var(--font-en);
    font-size: 10px;
    font-weight: 600;
    letter-spacing: 3px;
    display: block;
}

.footer__desc {
    font-size: 14px;
    color: var(--text-2);
    line-height: 1.8;
    margin-bottom: 24px;
}

.footer__social {
    display: flex;
    gap: 10px;
}

.footer__social a {
    width: 38px;
    height: 38px;
    border-radius: 50%;
    border: 1px solid var(--border);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-2);
    font-size: 14px;
    transition: var(--trans);
}

.footer__social a:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-dim);
    transform: translateY(-3px);
}

.footer__col h5 {
    font-family: var(--font-en);
    font-size: 11px;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: var(--text);
    margin-bottom: 20px;
}

.footer__links {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.footer__links a {
    font-size: 14px;
    color: var(--text-2);
    transition: color 0.3s;
}

.footer__links a:hover { color: var(--accent); }

.footer__contact {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.footer__contact li {
    display: flex;
    gap: 10px;
    align-items: flex-start;
    font-size: 14px;
    color: var(--text-2);
}

.footer__contact li i {
    color: var(--accent);
    margin-top: 3px;
    width: 14px;
    flex-shrink: 0;
}

.footer__contact li a {
    color: var(--text-2);
    transition: color 0.3s;
}

.footer__contact li a:hover { color: var(--accent); }

.footer__bottom {
    border-top: 1px solid var(--border);
    padding: 22px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--text-3);
}

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

.footer__bottom-links a {
    color: var(--text-3);
    transition: color 0.3s;
}

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

.footer__rhinepro {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-family: var(--font-en);
    font-size: 11px;
    letter-spacing: 2px;
    color: var(--gold);
}

/* ── Reveal Animation ────────────────────────────────────────── */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.8s var(--ease-out), transform 0.8s var(--ease-out);
}

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

/* ── Login Page ──────────────────────────────────────────────── */
.auth-page {
    min-height: 100vh;
    display: grid;
    grid-template-columns: 1fr 1fr;
}

.auth-visual {
    position: relative;
    overflow: hidden;
    background: var(--bg-2);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    padding: 60px;
}

.auth-visual__video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    opacity: 0.25;
    filter: saturate(0.4);
    contain: strict;
    will-change: auto;
}

.auth-visual__overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(6,6,8,0.9), rgba(6,6,8,0.6));
    z-index: 1;
}

.auth-visual__content {
    position: relative;
    z-index: 2;
    text-align: center;
}

.auth-visual__logo {
    display: flex;
    align-items: center;
    gap: 12px;
    justify-content: center;
    margin-bottom: 48px;
}

.auth-visual__logo-img {
    width: 56px;
    height: 56px;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.auth-visual__logo-text { text-align: left; }

.auth-visual__logo-name {
    font-family: var(--font-disp);
    font-size: 28px;
    letter-spacing: 3px;
    display: block;
}

.auth-visual__logo-sub {
    font-family: var(--font-en);
    font-size: 10px;
    letter-spacing: 4px;
    color: var(--accent);
}

.auth-visual__tagline {
    font-family: var(--font-disp);
    font-size: clamp(36px, 5vw, 56px);
    line-height: 1.05;
    margin-bottom: 24px;
}

.auth-visual__tagline em {
    font-style: normal;
    color: var(--accent);
}

.auth-visual__sub {
    font-size: 15px;
    color: var(--text-2);
    max-width: 360px;
    line-height: 1.8;
}

.auth-visual__badges {
    display: flex;
    gap: 16px;
    margin-top: 40px;
    justify-content: center;
}

.auth-visual__badge {
    display: flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    color: var(--text-2);
}

.auth-visual__badge i { color: var(--accent); }

.auth-form-side {
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 60px 80px;
    background: var(--bg);
    position: relative;
}

.auth-form-side::before {
    content: '';
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    width: 1px;
    background: var(--border);
}

.auth-header { margin-bottom: 40px; }

.auth-header h2 {
    font-family: var(--font-disp);
    font-size: 38px;
    margin-bottom: 8px;
}

.auth-header p {
    color: var(--text-2);
    font-size: 15px;
}

.auth-form {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.auth-form .form-group label { margin-bottom: 10px; }

.auth-input-wrap { position: relative; }

.auth-input-wrap i {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-3);
    font-size: 15px;
}

.auth-input-wrap input { padding-right: 44px; }

.auth-input-wrap .eye-btn {
    position: absolute;
    left: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-3);
    cursor: pointer;
    font-size: 14px;
    background: none;
    border: none;
    padding: 0;
    transition: color 0.2s;
}

.auth-input-wrap .eye-btn:hover { color: var(--text-2); }

.auth-form-footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin: -4px 0;
}

.auth-remember {
    display: flex;
    align-items: center;
    gap: 8px;
    cursor: pointer;
    font-size: 14px;
    color: var(--text-2);
}

.auth-remember input { accent-color: var(--accent); }

.auth-forgot {
    font-size: 13px;
    color: var(--accent);
}

.auth-forgot:hover { text-decoration: underline; }

.auth-divider {
    display: flex;
    align-items: center;
    gap: 16px;
    font-size: 12px;
    color: var(--text-3);
}

.auth-divider::before,
.auth-divider::after {
    content: '';
    flex: 1;
    height: 1px;
    background: var(--border);
}

.auth-switch {
    text-align: center;
    font-size: 14px;
    color: var(--text-2);
}

.auth-switch a { color: var(--accent); }
.auth-switch a:hover { text-decoration: underline; }

.auth-role-toggle {
    display: grid;
    grid-template-columns: 1fr 1fr;
    border: 1px solid var(--border);
    border-radius: var(--radius-sm);
    overflow: hidden;
    margin-bottom: 4px;
}

.auth-role-btn {
    padding: 10px;
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s;
    color: var(--text-2);
    background: transparent;
    border: none;
    font-family: var(--font-ar);
}

.auth-role-btn.active {
    background: var(--accent);
    color: #000;
}

/* ── Global Background Pattern ─────────────────────────────── */
.global-bg-pattern {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    opacity: 0.04;
}

.pattern-layer {
    position: absolute;
    inset: -50%;
    width: 200%;
    height: 200%;
    background-image: url('logo.webp');
    background-size: 180px 180px;
    background-repeat: repeat;
    filter: brightness(0) invert(1);
    will-change: transform;
}

.pattern-layer--1 {
    animation: patternFloat1 30s ease-in-out infinite;
    opacity: 0.6;
}

.pattern-layer--2 {
    animation: patternFloat2 40s ease-in-out infinite;
    opacity: 0.4;
    transform: rotate(45deg);
}

.pattern-layer--3 {
    animation: patternFloat3 50s ease-in-out infinite;
    opacity: 0.3;
    transform: rotate(-30deg);
}

@keyframes patternFloat1 {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(-20px, -30px) scale(1.02); }
    50% { transform: translate(0, -50px) scale(1); }
    75% { transform: translate(20px, -30px) scale(0.98); }
}

@keyframes patternFloat2 {
    0%, 100% { transform: rotate(45deg) translate(0, 0); }
    50% { transform: rotate(45deg) translate(30px, 40px); }
}

@keyframes patternFloat3 {
    0%, 100% { transform: rotate(-30deg) translate(0, 0); }
    50% { transform: rotate(-30deg) translate(-40px, 30px); }
}

/* ── Custom Cursor ───────────────────────────────────────────── */
@media (hover: hover) and (pointer: fine) {
    html.has-cursor,
    html.has-cursor a,
    html.has-cursor button {
        cursor: none;
    }
    .cursor-dot,
    .cursor-ring {
        position: fixed;
        top: 0;
        left: 0;
        z-index: 9999;
        pointer-events: none;
        border-radius: 50%;
        transform: translate(-50%, -50%);
        will-change: transform;
    }
    .cursor-dot {
        width: 6px;
        height: 6px;
        background: var(--accent);
        box-shadow: 0 0 10px var(--accent-glow);
        transition: opacity 0.2s;
    }
    .cursor-ring {
        width: 38px;
        height: 38px;
        border: 1px solid var(--border-2);
        transition: width 0.25s var(--ease-out), height 0.25s var(--ease-out),
                    border-color 0.25s, background 0.25s, opacity 0.2s;
    }
    html.has-cursor .cursor-ring.is-active {
        width: 64px;
        height: 64px;
        border-color: var(--accent);
        background: rgba(0,212,255,0.08);
    }
    html.has-cursor .cursor-ring.is-down {
        width: 30px;
        height: 30px;
    }
}

/* ── Performance & Lazy Loading ─────────────────────────────── */
img[loading="lazy"] {
    opacity: 0;
    transition: opacity 0.5s ease;
}

img[loading="lazy"].loaded,
img:not([loading="lazy"]) {
    opacity: 1;
}

/* ── Touch Improvements ─────────────────────────────────────── */
@media (hover: none) {
    .pricing-card:hover { transform: none; }
    .service-card:hover { background: var(--bg-card); }
    .service-card:hover::before { transform: none; }
    .cursor-dot,
    .cursor-ring { display: none !important; }
    html.has-cursor,
    html.has-cursor a,
    html.has-cursor button { cursor: auto !important; }
    
    .btn:active {
        transform: scale(0.96);
        box-shadow: 0 4px 12px rgba(0,0,0,0.3);
    }
    
    .pricing-card:active,
    .service-card:active {
        transform: scale(0.98);
        transition: transform 0.15s;
    }
}

/* ── Safe Area Insets ───────────────────────────────────────── */
@supports (padding: max(0px)) {
    .header {
        padding-left: max(0px, env(safe-area-inset-left));
        padding-right: max(0px, env(safe-area-inset-right));
    }
    .footer {
        padding-bottom: max(0px, env(safe-area-inset-bottom));
    }
    .mobile-nav {
        padding-top: max(0px, env(safe-area-inset-top));
        padding-bottom: max(0px, env(safe-area-inset-bottom));
    }
}

/* ── Responsive ──────────────────────────────────────────────── */
@media (max-width: 1100px) {
    .services-grid { grid-template-columns: 1fr 1fr; }
    .service-card:nth-child(2) { border-left: none; }
    .footer__grid { grid-template-columns: 1fr 1fr; gap: 36px; }
    .pricing-grid { grid-template-columns: 1fr; max-width: 460px; margin: 0 auto; }
}

@media (max-width: 900px) {
    .about-grid { grid-template-columns: 1fr; gap: 48px; }
    .about-media__badge { right: -8px; }
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .stat-item:nth-child(3) { border-left: none; }
    .auth-page { grid-template-columns: 1fr; }
    .auth-visual { display: none; }
    .auth-form-side { padding: 48px 40px; }
    .auth-form-side::before { display: none; }
}

@media (max-width: 768px) {
    .section { padding: 80px 0; }
    .container { padding: 0 20px; }
    .header { padding: 10px 0; }
    
    .header__container {
        display: flex;
        align-items: center;
        justify-content: space-between;
        padding: 0 16px;
        gap: 8px;
        flex-wrap: nowrap;
    }
    
    .header__logo {
        flex: 0 0 auto;
        gap: 8px;
    }
    
    .header__logo-img {
        width: 32px;
        height: 32px;
    }
    
    .header__logo-text {
        font-size: 16px;
        letter-spacing: 1px;
        line-height: 1;
        white-space: nowrap;
    }
    
    .header__logo-text span {
        font-size: 9px;
        letter-spacing: 2px;
    }
    
    .header__nav-list { display: none; }
    
    .header__menu-btn {
        display: flex !important;
        width: 42px;
        height: 42px;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 5px;
        padding: 8px;
        background: rgba(0, 212, 255, 0.08);
        border: 1px solid rgba(0, 212, 255, 0.2);
        border-radius: 8px;
        flex-shrink: 0;
    }
    
    .header__menu-btn span {
        width: 20px;
        height: 1.5px;
        background: var(--accent);
        border-radius: 2px;
        transition: 0.3s ease;
        display: block;
    }
    
    .header__actions {
        display: flex;
        align-items: center;
        gap: 8px;
        flex: 0 0 auto;
    }
    
    .header__actions .btn--ghost {
        display: none !important;
    }
    
    .header__actions .btn--primary {
        padding: 9px 14px;
        font-size: 13px;
        white-space: nowrap;
    }
    
    .hero__badge { display: none; }
    .hero__title { font-size: clamp(50px, 13vw, 80px); }
    
    .hero__actions {
        flex-direction: column;
        gap: 12px;
        align-items: stretch;
    }
    
    .hero__scroll-inline {
        display: flex;
        flex-direction: column;
        align-items: center;
        justify-content: center;
        gap: 6px;
        order: 3;
        padding: 4px 0;
    }
    
    .hero__scroll-inline span {
        font-family: var(--font-en);
        font-size: 10px;
        letter-spacing: 3px;
        color: var(--text-3);
        writing-mode: horizontal-tb;
    }
    
    .hero__scroll-inline .hero__scroll-line {
        width: 1px;
        height: 32px;
        background: linear-gradient(to bottom, var(--accent), transparent);
        animation: scrollPulse 2s ease infinite;
    }
    
    .services-grid { grid-template-columns: 1fr; }
    .service-card {
        border-left: none;
        border-top: 1px solid var(--border);
    }
    
    .stats-grid { grid-template-columns: 1fr 1fr; }
    .footer__grid { grid-template-columns: 1fr; gap: 32px; }
    
    .global-bg-pattern { opacity: 0.025; }
    .pattern-layer { background-size: 120px 120px; }
    .pattern-layer--1 { animation-duration: 25s; }
    .pattern-layer--2 { animation-duration: 35s; }
    .pattern-layer--3 { animation-duration: 45s; }
    
    .booking-progress {
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 0;
    }
    
    .booking-progress__step {
        flex: 1;
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    
    .booking-progress__num {
        width: 52px;
        height: 52px;
        font-size: 1.1rem;
    }
    
    .booking-progress__line {
        width: auto;
        flex: 1;
        height: 2px;
        background: rgba(0, 212, 255, 0.25);
        margin-top: 26px;
        align-self: flex-start;
        flex-shrink: 0;
    }
    
    .booking-progress__step:not(:last-child) {
        border-bottom: none !important;
        padding-bottom: 0 !important;
        margin-bottom: 0 !important;
    }
}

@media (max-width: 480px) {
    .hero__title { font-size: clamp(44px, 15vw, 70px); }
}

/* Reduced motion */
@media (prefers-reduced-motion: reduce) {
    .pattern-layer {
        animation: none;
        opacity: 0.03;
    }
}

/* ── Header Icon Button — "My Products" ─────────────────────── */
.header__icon-btn {
    position: relative;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 1px solid var(--border-2);
    color: var(--text-2);
    transition: var(--trans);
    flex-shrink: 0;
}

.header__icon-btn i { font-size: 15px; transition: transform 0.35s var(--ease-out); }

.header__icon-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: var(--accent-dim);
    box-shadow: 0 0 20px var(--accent-glow);
    transform: translateY(-1px);
}

.header__icon-btn:hover i { transform: rotate(-14deg) scale(1.08); }

.header__icon-btn-badge {
    position: absolute;
    top: -8px;
    right: -10px;
    background: var(--gold);
    color: #000;
    font-family: var(--font-en);
    font-size: 8px;
    font-weight: 800;
    letter-spacing: 0.5px;
    padding: 2.5px 5px;
    border-radius: 100px;
    line-height: 1;
    box-shadow: 0 0 10px rgba(201,169,110,0.6);
    animation: iconDotPulse 2.4s ease-in-out infinite;
}

@keyframes iconDotPulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50% { transform: scale(1.35); opacity: 0.55; }
}

@media (max-width: 768px) {
    .header__icon-btn { width: 36px; height: 36px; }
    .header__icon-btn i { font-size: 13px; }
}

@media (max-width: 380px) {
    .header__icon-btn { display: none; }
}

/* ── Developer Credit ───────────────────────────────────────── */
.dev-credit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 18px;
    padding: 22px 20px 4px;
    flex-wrap: wrap;
    text-align: center;
}

.dev-credit__line {
    flex: 1;
    max-width: 120px;
    min-width: 24px;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--accent), transparent);
    opacity: 0.45;
}

.dev-credit__text {
    display: inline-flex;
    align-items: center;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    font-family: var(--font-en);
    font-size: 12px;
    letter-spacing: 0.5px;
    color: var(--text-3);
    transition: color 0.3s, filter 0.3s;
}

.dev-credit__text i {
    color: var(--accent);
    font-size: 12px;
    animation: devPulse 2.4s ease-in-out infinite;
}

.dev-credit__text strong {
    background: linear-gradient(100deg, var(--accent) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
    letter-spacing: 0.5px;
}

.dev-credit__text:hover { color: var(--text-2); }
.dev-credit__text:hover strong { filter: brightness(1.25); }

@keyframes devPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

@media (max-width: 480px) {
    .dev-credit { gap: 10px; }
    .dev-credit__line { max-width: 36px; }
    .dev-credit__text { font-size: 10.5px; }
}

@media (max-width: 360px) {
    .dev-credit__line { display: none; }
}

/* ── Developer Credit (Login page — always visible) ──────────── */
.auth-dev-credit {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    margin-top: 28px;
    padding-top: 20px;
    border-top: 1px solid var(--border);
    font-family: var(--font-en);
    font-size: clamp(8.5px, 2.4vw, 11px);
    letter-spacing: 0.1px;
    color: var(--text-3);
    text-align: center;
    white-space: nowrap;
    overflow: hidden;
    transition: color 0.3s;
}

.auth-dev-credit i {
    color: var(--accent);
    font-size: clamp(8px, 2.1vw, 10px);
    flex-shrink: 0;
}

.auth-dev-credit span {
    white-space: nowrap;
}

.auth-dev-credit strong {
    background: linear-gradient(100deg, var(--accent) 0%, var(--gold) 100%);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
    font-weight: 700;
}

.auth-dev-credit:hover { color: var(--text-2); }
