/* ===== BLACK BOX — Design System ===== */
:root {
    --brand: #1F2D5A;
    --brand-dark: #172448;
    --brand-light: #2d4278;
    --dark: #1F2D5A;
    --dark-2: #172448;
    --accent: #FFFFFF;
    --accent-dim: rgba(255, 255, 255, 0.12);
    --accent-muted: rgba(255, 255, 255, 0.55);
    --cyan: #FFFFFF;
    --cyan-dim: rgba(255, 255, 255, 0.12);
    --white: #FFFFFF;
    --gold: #E8ECF5;
    --gold-dim: rgba(255, 255, 255, 0.1);
    --text: #F4F7FC;
    --muted: #B4BFD4;
    --glass: rgba(31, 45, 90, 0.72);
    --glass-border: rgba(255, 255, 255, 0.18);
    --glow: rgba(255, 255, 255, 0.22);
    --radius: 16px;
    --nav-h: 72px;
    --ease: cubic-bezier(0.4, 0, 0.2, 1);
    --shadow: 0 20px 60px rgba(15, 20, 45, 0.4);
    --shadow-glow: 0 0 40px rgba(255, 255, 255, 0.08);
    --font-sans: 'Almarai', 'Segoe UI', Tahoma, sans-serif;
    --font-en: 'Inter', 'Segoe UI', system-ui, -apple-system, sans-serif;
}

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

html {
    scroll-behavior: smooth;
    scroll-padding-top: var(--nav-h);
}

body {
    font-family: var(--font-sans);
    background: var(--dark);
    color: var(--text);
    line-height: 1.8;
    overflow-x: hidden;
    cursor: none;
}

body.is-loading {
    overflow: hidden;
}

a,
button,
.btn,
.nav-toggle,
input,
textarea,
select,
label[for] {
    cursor: none;
}

#plane-cursor {
    position: fixed;
    top: 0;
    left: 0;
    z-index: 99999;
    pointer-events: none;
    font-size: 1.35rem;
    color: var(--cyan);
    text-shadow: 0 0 8px rgba(255, 255, 255, 0.6);
    transform: translate(-50%, -50%) rotate(-45deg);
    transition: transform 0.1s ease;
    will-change: transform, left, top;
}

#plane-cursor i {
    display: block;
}

#plane-cursor.hover {
    color: var(--gold);
    transform: translate(-50%, -50%) rotate(-45deg) scale(1.25);
}

a { text-decoration: none; color: inherit; }
img { max-width: 100%; display: block; }
ul { list-style: none; }

.container {
    max-width: 1180px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

/* ===== Navbar ===== */
.navbar {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: var(--nav-h);
    z-index: 1000;
    background: rgba(31, 45, 90, 0.55);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    border-bottom: none;
    opacity: 1;
    transform: translateY(0);
    transition: background 0.35s var(--ease), box-shadow 0.35s var(--ease), border-color 0.35s var(--ease);
}

.nav-inner {
    /* max-width: 1240px; */
    height: 100%;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: grid;
    grid-template-columns: minmax(0, 1fr) auto minmax(0, 1fr);
    align-items: center;
    gap: 1rem;
}

.navbar.scrolled {
    background: rgba(31, 45, 90, 0.97);
    border-bottom: none;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
}

.navbar.nav-hidden {
    transform: translateY(-100%);
    transition: transform 0.4s var(--ease), background 0.35s var(--ease), box-shadow 0.35s var(--ease);
}

.nav-brand {
    grid-column: 1;
    justify-self: start;
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--cyan);
    white-space: nowrap;
    flex-shrink: 0;
    text-decoration: none;
    min-width: 0;
}

.nav-brand-mark {
    position: relative;
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    flex-shrink: 0;
    transition: background 0.3s var(--ease), box-shadow 0.3s var(--ease);
    animation: brandMarkFloat 3.2s ease-in-out infinite, brandMarkGlow 2.8s ease-in-out infinite;
}

.nav-brand-mark::before {
    content: '';
    position: absolute;
    inset: -4px;
    border-radius: 15px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    opacity: 0;
    animation: brandRingPulse 2.4s ease-out infinite;
    pointer-events: none;
}

.nav-brand:hover .nav-brand-mark {
    background: rgba(255, 255, 255, 0.15);
    box-shadow: 0 0 22px rgba(255, 255, 255, 0.28);
    animation-play-state: paused, paused;
}

.nav-brand:hover .brand-logo {
    animation-play-state: paused;
}

.nav-brand-text {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
    min-width: 0;
}

.nav-brand-text strong {
    font-family: 'Consolas', monospace;
    font-size: 0.95rem;
    letter-spacing: 0.12em;
    line-height: 1.1;
    color: var(--cyan);
    background: linear-gradient(105deg, #ffffff 0%, #e8ecf5 35%, #ffffff 50%, #d4dae8 65%, #ffffff 100%);
    background-size: 220% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: brandTextShine 4.5s linear infinite;
}

.nav-brand-text small {
    font-size: 0.68rem;
    letter-spacing: 0.02em;
    color: rgba(255, 255, 255, 0.55);
    font-weight: 500;
    animation: brandTaglinePulse 3.5s ease-in-out infinite;
}

@keyframes brandMarkFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-4px); }
}

@keyframes brandMarkGlow {
    0%, 100% {
        box-shadow: 0 0 0 rgba(255, 255, 255, 0);
        border-color: rgba(255, 255, 255, 0.2);
    }
    50% {
        box-shadow: 0 0 16px rgba(255, 255, 255, 0.22);
        border-color: rgba(255, 255, 255, 0.42);
    }
}

@keyframes brandRingPulse {
    0% {
        transform: scale(0.92);
        opacity: 0.55;
    }
    70%, 100% {
        transform: scale(1.28);
        opacity: 0;
    }
}

@keyframes brandTextShine {
    0% { background-position: 0% center; }
    100% { background-position: 220% center; }
}

@keyframes brandTaglinePulse {
    0%, 100% { opacity: 0.5; transform: translateX(0); }
    50% { opacity: 0.82; transform: translateX(-2px); }
}

@keyframes brandLogoFly {
    0%, 100% { transform: rotate(-3deg) translateY(0); }
    25% { transform: rotate(1deg) translateY(-2px); }
    75% { transform: rotate(3deg) translateY(1px); }
}

.brand-logo {
    width: 40px;
    height: 40px;
    object-fit: contain;
}

.nav-brand .brand-logo {
    width: 30px;
    height: 30px;
    animation: brandLogoFly 4s ease-in-out infinite;
    transform-origin: center center;
}

.footer-brand .brand-logo {
    width: 32px;
    height: 32px;
}

.nav-links {
    grid-column: 2;
    justify-self: center;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.15rem;
    list-style: none;
    margin: 0;
    padding: 0.28rem;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 50px;
    box-shadow: inset 0 1px 0 rgba(255, 255, 255, 0.04);
}

.nav-links li {
    display: flex;
}

.nav-link {
    position: relative;
    padding: 0.5rem 0.85rem;
    font-size: 0.86rem;
    font-weight: 500;
    color: rgba(255, 255, 255, 0.72);
    border-radius: 50px;
    transition: color 0.3s var(--ease), background 0.3s var(--ease);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
    text-decoration: none;
}

.nav-mobile-cta {
    display: none;
}

.nav-link i {
    font-size: 0.78rem;
    width: 1em;
    text-align: center;
    opacity: 0.9;
}

.nav-link:hover {
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
}

.nav-link.active {
    color: var(--white);
    background: rgba(255, 255, 255, 0.18);
    box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.28);
}

.nav-actions {
    grid-column: 3;
    justify-self: end;
    display: flex;
    align-items: center;
    gap: 0.65rem;
    flex-shrink: 0;
}

.lang-switch {
    position: relative;
    flex-shrink: 0;
}

.lang-switch__toggle {
    position: relative;
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    color: var(--white);
    font-size: 0.95rem;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    overflow: visible;
    transition: color 0.25s var(--ease), background 0.25s var(--ease), border-color 0.25s var(--ease), box-shadow 0.25s var(--ease);
}

.lang-switch__pulse {
    position: absolute;
    inset: -2px;
    border-radius: 50%;
    border: 1px solid rgba(255, 255, 255, 0.45);
    pointer-events: none;
    animation: langRingPulse 2.4s ease-out infinite;
}

.lang-switch__icon {
    position: relative;
    z-index: 1;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    animation: langIconSwing 3s ease-in-out infinite, langIconGlow 2.4s ease-in-out infinite;
}

.lang-switch__icon .fa {
    display: block;
    line-height: 1;
}

.lang-switch__toggle:hover,
.lang-switch__toggle[aria-expanded="true"] {
    color: var(--white);
    background: rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 255, 255, 0.45);
    box-shadow: 0 0 18px rgba(255, 255, 255, 0.18);
}

.lang-switch__toggle:hover .lang-switch__icon,
.lang-switch__toggle[aria-expanded="true"] .lang-switch__icon {
    animation-duration: 1.6s, 1.4s;
}

.lang-switch__toggle[aria-expanded="true"] .lang-switch__pulse {
    animation-play-state: paused;
    opacity: 0.35;
}

@keyframes langRingPulse {
    0% {
        transform: scale(1);
        opacity: 0.55;
    }
    70% {
        transform: scale(1.45);
        opacity: 0;
    }
    100% {
        transform: scale(1.45);
        opacity: 0;
    }
}

@keyframes langIconSwing {
    0%, 100% {
        transform: rotate(0deg) scale(1);
    }
    25% {
        transform: rotate(-10deg) scale(1.06);
    }
    75% {
        transform: rotate(10deg) scale(1.06);
    }
}

@keyframes langIconGlow {
    0%, 100% {
        filter: drop-shadow(0 0 2px rgba(255, 255, 255, 0.35));
    }
    50% {
        filter: drop-shadow(0 0 10px rgba(255, 255, 255, 0.75));
    }
}

.lang-switch__menu {
    position: absolute;
    top: calc(100% + 0.35rem);
    inset-inline-end: 0;
    min-width: 108px;
    margin: 0;
    padding: 0.22rem;
    list-style: none;
    border-radius: 9px;
    border: 1px solid rgba(255, 255, 255, 0.14);
    background: rgba(23, 36, 72, 0.96);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.28);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-6px) scale(0.97);
    transform-origin: top center;
    pointer-events: none;
    transition: opacity 0.2s var(--ease), transform 0.2s var(--ease), visibility 0.2s;
    z-index: 1010;
}

.lang-switch__menu li + li {
    margin-top: 0.12rem;
}

.lang-switch__menu.is-open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
    pointer-events: auto;
}

.lang-switch__option {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.45rem;
    min-height: 30px;
    padding: 0.32rem 0.55rem;
    border: none;
    border-radius: 6px;
    background: transparent;
    color: rgba(255, 255, 255, 0.72);
    font-family: var(--font-sans);
    font-size: 0.76rem;
    font-weight: 500;
    line-height: 1.2;
    cursor: pointer;
    text-align: start;
    transition: background 0.18s var(--ease), color 0.18s var(--ease);
}

.lang-switch__option[data-lang="en"] span {
    font-family: var(--font-en);
    font-weight: 500;
    letter-spacing: 0.01em;
}

.lang-switch__option[data-lang="ar"] span {
    font-family: var(--font-sans);
    font-weight: 600;
}

.lang-switch__option:hover {
    background: rgba(255, 255, 255, 0.07);
    color: var(--white);
}

.lang-switch__option.is-active {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
}

.lang-switch__option.is-active[data-lang="en"] span {
    font-weight: 600;
}

.lang-switch__option .fa-check {
    flex-shrink: 0;
    font-size: 0.62rem;
    opacity: 0;
    transform: scale(0.65);
    transition: opacity 0.18s var(--ease), transform 0.18s var(--ease);
}

.lang-switch__option.is-active .fa-check {
    opacity: 0.9;
    transform: scale(1);
}

body.lang-en {
    font-family: var(--font-en);
    line-height: 1.65;
    letter-spacing: 0.01em;
}

body.lang-en .nav-brand-text strong,
body.lang-en .hero-title,
body.lang-en .section-header h2,
body.lang-en .feature-card h3,
body.lang-en .step-card h3,
body.lang-en .about-content h2,
body.lang-en .contact-info h3,
body.lang-en .footer-brand strong {
    font-family: var(--font-en);
    font-weight: 700;
    letter-spacing: -0.02em;
    line-height: 1.25;
}

body.lang-en .nav-link,
body.lang-en .btn,
body.lang-en .nav-cta,
body.lang-en .lang-switch__option,
body.lang-en .hero-badge,
body.lang-en .trust-marquee__item,
body.lang-en .feature-card p,
body.lang-en .section-header p,
body.lang-en .about-content p,
body.lang-en .contact-info p,
body.lang-en .footer-links a,
body.lang-en label,
body.lang-en input,
body.lang-en textarea,
body.lang-en select {
    font-family: var(--font-en);
    letter-spacing: 0.01em;
}

body.lang-en .hero-title {
    letter-spacing: -0.03em;
}

body.lang-en .section-header h2 {
    letter-spacing: -0.025em;
}

body.lang-en .nav-link {
    font-weight: 500;
}

body.lang-en .nav-cta,
body.lang-en .btn-primary {
    font-weight: 600;
    letter-spacing: 0.02em;
}

.nav-cta {
    padding: 0.55rem 1.2rem;
    background: linear-gradient(135deg, #ffffff, #e8ecf5);
    color: var(--brand);
    font-weight: 700;
    font-size: 0.84rem;
    border-radius: 50px;
    transition: 0.3s var(--ease);
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    white-space: nowrap;
    text-decoration: none;
    box-shadow: 0 4px 16px rgba(255, 255, 255, 0.25);
}

.nav-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.4);
}

.nav-toggle {
    display: none;
    flex-direction: column;
    justify-content: center;
    gap: 5px;
    width: 42px;
    height: 42px;
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 12px;
    cursor: none;
    padding: 0;
    transition: background 0.3s var(--ease), border-color 0.3s var(--ease);
}

.nav-toggle:hover,
.nav-toggle.open {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.35);
}

.nav-backdrop {
    display: none;
    position: fixed;
    inset: var(--nav-h) 0 0 0;
    background: rgba(0, 0, 0, 0.45);
    opacity: 0;
    visibility: hidden;
    transition: 0.35s var(--ease);
    z-index: 999;
}

.nav-backdrop.show {
    opacity: 1;
    visibility: visible;
}

body.nav-open {
    overflow: hidden;
}

.nav-toggle span {
    display: block;
    width: 20px;
    height: 2px;
    margin: 0 auto;
    background: var(--white);
    border-radius: 2px;
    transition: transform 0.3s var(--ease), opacity 0.3s var(--ease);
    transform-origin: center;
}

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

.nav-toggle.open span:nth-child(2) {
    opacity: 0;
    transform: scaleX(0);
}

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

/* ===== Hero ===== */
.hero {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
}

#hero-canvas {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    z-index: 1;
    background:
        linear-gradient(180deg, rgba(31, 45, 90, 0.75) 0%, rgba(31, 45, 90, 0.25) 35%, rgba(31, 45, 90, 0.55) 100%),
        radial-gradient(ellipse at 50% 50%, rgba(31, 45, 90, 0.15) 0%, rgba(31, 45, 90, 0.7) 75%);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: calc(var(--nav-h) + 2rem) 1.5rem 4rem;
    max-width: 820px;
}

.hero-logo {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.logo-ring {
    width: 130px;
    height: 130px;
    animation: float 4s ease-in-out infinite;
    filter: drop-shadow(0 8px 24px rgba(255, 255, 255, 0.25));
    border-radius: 20px;
    overflow: hidden;
}

.hero-logo-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    display: block;
}

.logo-ring svg { width: 100%; height: 100%; }

.logo-text {
    font-family: 'Consolas', monospace;
    font-size: 1.1rem;
    letter-spacing: 0.25em;
    color: var(--cyan);
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-10px); }
}

.hero-title {
    font-size: clamp(1.8rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.35;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, var(--white) 0%, #e8ecf5 40%, var(--white) 60%, #d4dae8 80%, var(--white) 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-sub {
    font-size: clamp(1rem, 2.5vw, 1.2rem);
    color: var(--muted);
    margin-bottom: 2.5rem;
    max-width: 560px;
    margin-left: auto;
    margin-right: auto;
}

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

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 2rem;
    font-family: inherit;
    font-size: 1rem;
    font-weight: 600;
    border-radius: 50px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: 0.35s var(--ease);
}

.btn-primary {
    background: linear-gradient(135deg, #ffffff, #e8ecf5);
    color: var(--brand);
    box-shadow: 0 8px 30px rgba(255, 255, 255, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 40px rgba(255, 255, 255, 0.45);
}

.btn-outline {
    background: transparent;
    color: var(--white);
    border-color: var(--glass-border);
    backdrop-filter: blur(8px);
}

.btn-outline:hover {
    border-color: var(--cyan);
    background: var(--cyan-dim);
    transform: translateY(-3px);
}

.btn-full { width: 100%; }

.hero-scroll {
    position: absolute;
    bottom: 2rem;
    left: 50%;
    transform: translateX(-50%);
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.4rem;
    color: var(--muted);
    font-size: 0.8rem;
    animation: bounce 2s ease infinite;
}

@keyframes bounce {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(8px); }
}

/* ===== Sections ===== */
.section {
    padding: 6rem 0;
    position: relative;
    z-index: 1;
}

.section-dark {
    background: linear-gradient(180deg, var(--dark) 0%, var(--dark-2) 50%, var(--dark) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 3.5rem;
}

.section-tag {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 1rem;
    background: var(--gold-dim);
    color: var(--gold);
    font-size: 0.85rem;
    font-weight: 600;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.3);
    margin-bottom: 1rem;
}

.section-header h2 {
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    margin-bottom: 0.75rem;
    color: var(--white);
}

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

/* ===== Features ===== */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 1.5rem;
    perspective: 1000px;
}

.feature-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 2rem 1.75rem;
    backdrop-filter: blur(16px);
    transition: transform 0.4s var(--ease), box-shadow 0.4s var(--ease), border-color 0.4s;
    transform-style: preserve-3d;
    will-change: transform;
}

.feature-card:hover {
    border-color: rgba(255, 255, 255, 0.45);
    box-shadow: 0 20px 50px rgba(255, 255, 255, 0.12);
}

.feature-icon {
    width: 56px;
    height: 56px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 14px;
    background: linear-gradient(135deg, var(--cyan-dim), rgba(255, 255, 255, 0.1));
    border: 1px solid var(--glass-border);
    margin-bottom: 1.2rem;
    font-size: 1.5rem;
    color: var(--cyan);
    transition: 0.35s var(--ease);
}

.feature-card:hover .feature-icon {
    background: linear-gradient(135deg, #ffffff, #e8ecf5);
    color: var(--brand);
    box-shadow: 0 8px 24px rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.feature-icon.icon-whatsapp {
    color: #25d366;
}

.feature-card:hover .feature-icon.icon-whatsapp {
    background: linear-gradient(135deg, #25d366, #128c7e);
    color: var(--white);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
}

.feature-card h3 {
    font-size: 1.2rem;
    color: var(--white);
    margin-bottom: 0.6rem;
}

.feature-card p {
    font-size: 0.95rem;
    color: var(--muted);
    line-height: 1.75;
}

/* ===== Clients Showcase (Services) ===== */
.clients-showcase {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
    margin-bottom: 2rem;
    overflow: hidden;
    opacity: 1 !important;
    visibility: visible !important;
    min-height: 180px;
    padding: 0.5rem 0;
}

.clients-marquee {
    position: relative;
    width: 100%;
    min-height: 135px;
    overflow: hidden;
    direction: ltr;
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

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

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

.clients-marquee::after {
    right: 0;
    background: linear-gradient(270deg, var(--dark), transparent);
}

.clients-track {
    display: flex;
    gap: 1.25rem;
    width: max-content;
    padding: 0.25rem 0;
}

.clients-marquee--forward .clients-track {
    animation: clientsScrollForward 38s linear infinite;
}

.clients-marquee--reverse .clients-track {
    animation: clientsScrollReverse 42s linear infinite;
}

.clients-marquee:hover .clients-track {
    animation-play-state: paused;
}

@keyframes clientsScrollForward {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes clientsScrollReverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

.client-slide {
    flex-shrink: 0;
    width: clamp(130px, 15vw, 170px);
    height: clamp(70px, 10vw, 95px);
    padding: 0.35rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: transparent;
    border: none;
    border-radius: 0;
    box-shadow: none;
    opacity: 1 !important;
    visibility: visible !important;
    transition: transform 0.35s var(--ease), opacity 0.35s var(--ease);
}

.client-slide:hover {
    transform: translateY(-4px) scale(1.08);
    opacity: 1;
}

.client-slide img {
    display: block;
    width: 100%;
    height: 100%;
    max-width: 160px;
    max-height: 90px;
    object-fit: contain;
    user-select: none;
    pointer-events: none;
    filter: drop-shadow(0 4px 12px rgba(0, 0, 0, 0.25));
    transition: filter 0.35s var(--ease);
}

.client-slide:hover img {
    filter: drop-shadow(0 8px 20px rgba(255, 255, 255, 0.2));
}

.clients-note {
    text-align: center;
    color: var(--muted);
    font-size: 0.95rem;
    margin-top: 0.5rem;
}

.clients-note i {
    color: var(--gold);
    margin-left: 0.35rem;
}

.clients-note strong {
    color: var(--cyan);
}

.clients-note a {
    color: var(--cyan);
    font-weight: 600;
    text-decoration: none;
    border-bottom: 1px solid transparent;
    transition: border-color 0.25s;
}

.clients-note a:hover {
    border-bottom-color: var(--cyan);
}

/* ===== Timeline / Services ===== */
.timeline {
    position: relative;
    max-width: 700px;
    margin: 0 auto;
}

.timeline::before {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    right: 19px;
    width: 2px;
    background: linear-gradient(180deg, var(--cyan), var(--gold));
    opacity: 0.4;
}

.timeline-item {
    position: relative;
    padding-right: 3.5rem;
    margin-bottom: 2rem;
}

.timeline-dot {
    position: absolute;
    right: 10px;
    top: 1.5rem;
    width: 22px;
    height: 22px;
    border-radius: 50%;
    background: var(--white);
    border: 3px solid var(--cyan);
    box-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
    z-index: 1;
    display: flex;
    align-items: center;
    justify-content: center;
}

.timeline-dot i {
    font-size: 0.65rem;
    color: var(--cyan);
}

.timeline-card {
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    padding: 1.75rem;
    backdrop-filter: blur(12px);
    transition: 0.35s var(--ease);
}

.timeline-card:hover {
    transform: translateX(-6px);
    border-color: var(--cyan);
    box-shadow: var(--shadow);
}

.timeline-num {
    font-family: 'Consolas', monospace;
    font-size: 0.8rem;
    color: var(--gold);
    letter-spacing: 0.1em;
}

.timeline-card h3 {
    font-size: 1.15rem;
    color: var(--white);
    margin: 0.4rem 0 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.timeline-card h3 i {
    color: var(--cyan);
    font-size: 1rem;
}

.timeline-card p {
    font-size: 0.92rem;
    color: var(--muted);
}

/* ===== About ===== */
.about {
    position: relative;
    min-height: 70vh;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about-video {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    z-index: 0;
}

.about-overlay {
    position: absolute;
    inset: 0;
    z-index: 2;
    background: rgba(31, 45, 90, 0.82);
}

.about-plane-rise {
    position: fixed;
    left: 50%;
    top: 50%;
    width: min(72vw, 460px);
    height: min(52vw, 320px);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 3;
    visibility: hidden;
}

.about-plane-rise.is-active {
    visibility: visible;
}

.about-plane-rise__craft {
    position: relative;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    will-change: transform, opacity;
}

.about-plane-rise__icon {
    position: relative;
    z-index: 2;
    font-size: min(34vw, 220px);
    color: rgba(255, 255, 255, 0.62);
    filter:
        drop-shadow(0 0 20px rgba(255, 255, 255, 0.22))
        drop-shadow(0 12px 28px rgba(0, 0, 0, 0.2));
}

.about-plane-rise__trail {
    position: absolute;
    bottom: 18%;
    left: 50%;
    width: 3px;
    height: min(28vw, 180px);
    margin-left: -1.5px;
    border-radius: 999px;
    background: linear-gradient(to top, rgba(255, 255, 255, 0.35), rgba(255, 255, 255, 0.06), transparent);
    transform: rotate(-45deg);
    transform-origin: bottom center;
    opacity: 0.55;
}

.about-plane-rise__trail--2 {
    width: 2px;
    height: min(20vw, 130px);
    margin-left: 12px;
    opacity: 0.28;
}

.about-plane-rise__glow {
    position: absolute;
    width: min(55vw, 340px);
    height: min(55vw, 340px);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.12) 0%, rgba(31, 45, 90, 0.15) 42%, transparent 72%);
    animation: aboutPlanePulse 3.5s ease-in-out infinite;
}

@keyframes aboutPlanePulse {
    0%, 100% { opacity: 0.45; transform: scale(1); }
    50% { opacity: 0.65; transform: scale(1.06); }
}

.about-inner {
    position: relative;
    z-index: 4;
    text-align: center;
}

.about-text {
    font-size: clamp(1.05rem, 2.5vw, 1.25rem);
    color: var(--text);
    max-width: 780px;
    margin: 0 auto 3rem;
    line-height: 2;
}

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

.counters {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    max-width: 800px;
    margin: 0 auto;
}

.counter-item {
    padding: 2rem 1rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    backdrop-filter: blur(12px);
}

.counter-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--cyan-dim), var(--gold-dim));
    border: 1px solid var(--glass-border);
    font-size: 1.2rem;
    color: var(--cyan);
}

.counter-item .counter {
    font-family: 'Consolas', monospace;
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    color: var(--cyan);
    line-height: 1;
}

.counter-suffix {
    font-family: 'Consolas', monospace;
    font-size: 1.5rem;
    color: var(--gold);
}

.counter-item p {
    margin-top: 0.5rem;
    color: var(--muted);
    font-size: 0.95rem;
}

/* ===== Contact ===== */
.section-contact {
    padding-bottom: 5rem;
}

.contact-form-wrap {
    max-width: 860px;
    margin: 0 auto 2.5rem;
    opacity: 1;
    transform: none;
}

.contact-form {
    background: rgba(31, 45, 90, 0.85);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: var(--radius);
    padding: 2rem 2.25rem;
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow), var(--shadow-glow);
    opacity: 1;
    transform: none;
}

.contact-info {
    max-width: 1000px;
    margin: 0 auto;
    opacity: 1;
    transform: none;
}

.contact-cards {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.contact-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding-top: 0.5rem;
}

.contact-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2.5rem;
    align-items: start;
}

.contact-form-head {
    margin-bottom: 1.5rem;
    padding-bottom: 1.25rem;
    border-bottom: 1px solid var(--glass-border);
}

.contact-form-head h3 {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.25rem;
    color: var(--white);
    margin-bottom: 0.35rem;
}

.contact-form-head h3 i {
    color: var(--cyan);
}

.contact-form-head p {
    font-size: 0.92rem;
    color: var(--muted);
}

.form-feedback {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1rem;
    border-radius: 10px;
    font-size: 0.92rem;
    margin-bottom: 1.25rem;
    line-height: 1.6;
}

.form-feedback--success {
    background: rgba(34, 197, 94, 0.12);
    border: 1px solid rgba(34, 197, 94, 0.35);
    color: #86efac;
}

.form-feedback--error {
    background: rgba(239, 68, 68, 0.12);
    border: 1px solid rgba(239, 68, 68, 0.35);
    color: #fca5a5;
}

.form-group label .required {
    color: rgba(255, 255, 255, 0.75);
    font-size: 0.8rem;
}

.field-error {
    display: block;
    min-height: 1.2rem;
    margin-top: 0.3rem;
    font-size: 0.8rem;
    color: #fca5a5;
}

.form-honeypot {
    position: absolute;
    left: -9999px;
    width: 1px;
    height: 1px;
    opacity: 0;
    pointer-events: none;
}

.form-group input.is-invalid,
.form-group textarea.is-invalid,
.form-group select.is-invalid {
    border-color: rgba(239, 68, 68, 0.6);
    box-shadow: 0 0 0 3px rgba(239, 68, 68, 0.12);
}

.form-row {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.form-group {
    margin-bottom: 1.2rem;
}

.form-group label {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    color: var(--muted);
    margin-bottom: 0.4rem;
}

.form-group label i {
    color: var(--cyan);
    font-size: 0.85rem;
    width: 1em;
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 10px;
    color: var(--white);
    font-family: inherit;
    font-size: 1rem;
    outline: none;
    transition: 0.3s;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.4);
}

.form-group select {
    cursor: pointer;
    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'%3E%3Cpath fill='%23ffffff' d='M1 1l5 5 5-5'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: left 1rem center;
    padding-left: 2.5rem;
}

.form-group select option {
    background: var(--brand-dark);
    color: var(--white);
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    border-color: var(--cyan);
    box-shadow: 0 0 0 3px var(--cyan-dim);
}

.form-group textarea { resize: vertical; min-height: 130px; }

#contact-submit:disabled {
    opacity: 0.7;
    cursor: not-allowed;
    transform: none;
}

.contact-side {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

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

@media (max-width: 520px) {
    .contact-cards {
        grid-template-columns: 1fr;
    }

    .contact-form {
        padding: 1.5rem 1.25rem;
    }
}

.contact-card {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    backdrop-filter: blur(12px);
    transition: 0.3s var(--ease);
}

.contact-card:hover { border-color: var(--cyan); }

.contact-card.whatsapp:hover {
    border-color: #25d366;
    background: rgba(37, 211, 102, 0.08);
}

.contact-card i {
    font-size: 1.5rem;
    color: var(--cyan);
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: var(--cyan-dim);
    flex-shrink: 0;
}

.contact-card.whatsapp i {
    color: #25d366;
    background: rgba(37, 211, 102, 0.12);
}

.contact-card strong {
    display: block;
    color: var(--white);
    font-size: 0.95rem;
}

.contact-card span {
    font-size: 0.85rem;
    color: var(--muted);
}

.social-links {
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    padding-top: 0.5rem;
}

.social-links a {
    width: 44px;
    height: 44px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    color: var(--muted);
    font-size: 1.1rem;
    transition: 0.3s var(--ease);
}

.social-links a:hover {
    color: var(--cyan);
    border-color: var(--cyan);
    transform: translateY(-3px);
}

.contact-bottom .social-links {
    flex-direction: row;
    flex-wrap: wrap;
    justify-content: center;
    padding-top: 0;
}

/* ===== Footer ===== */
.footer {
    padding: 3.5rem 0 0;
    position: relative;
    z-index: 1;
    border-top: 1px solid var(--glass-border);
    background: rgba(31, 45, 90, 0.95);
}

.footer--compact {
    padding: 0;
    background: rgba(31, 45, 90, 0.98);
}

.footer--compact .footer-bottom {
    border-top: 1px solid var(--glass-border);
    padding: 1.75rem 0 2.25rem;
}

.footer--compact .footer-bottom__inner {
    flex-direction: column;
    gap: 0.65rem;
}

.footer--compact .footer-bottom__divider {
    display: block;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr 0.8fr;
    gap: 2.5rem;
    padding-bottom: 2.5rem;
}

.footer-col--brand {
    max-width: 320px;
}

.footer-brand {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    font-family: 'Consolas', monospace;
    color: var(--cyan);
    letter-spacing: 0.1em;
    text-decoration: none;
    margin-bottom: 1rem;
}

.footer-desc {
    font-size: 0.9rem;
    color: var(--muted);
    line-height: 1.75;
    margin-bottom: 1.25rem;
}

.footer-cta {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 1.15rem;
    border-radius: 999px;
    background: #25d366;
    color: #fff;
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: transform 0.3s var(--ease), box-shadow 0.3s var(--ease);
}

.footer-cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(37, 211, 102, 0.35);
    color: #fff;
}

.footer-title {
    font-size: 1rem;
    color: var(--white);
    margin-bottom: 1.1rem;
    font-weight: 700;
}

.footer-links,
.footer-contact {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.footer-links a,
.footer-contact a,
.footer-contact__static {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.88rem;
    color: var(--muted);
    text-decoration: none;
    transition: color 0.25s var(--ease);
}

.footer-links a:hover,
.footer-contact a:hover {
    color: var(--white);
}

.footer-links a i {
    font-size: 0.75rem;
    opacity: 0.7;
}

.footer-social {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
}

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    border: 1px solid var(--glass-border);
    color: var(--muted);
    background: rgba(255, 255, 255, 0.04);
    transition: color 0.25s var(--ease), border-color 0.25s var(--ease), transform 0.25s var(--ease);
}

.footer-social a:hover {
    color: var(--white);
    border-color: rgba(255, 255, 255, 0.35);
    transform: translateY(-2px);
}

.footer-bottom {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 1.35rem 0 1.85rem;
    border-top: 1px solid var(--glass-border);
    opacity: 1 !important;
    visibility: visible !important;
}

.footer-bottom__inner {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.85rem 1.25rem;
    width: 100%;
    max-width: 900px;
    text-align: center;
}

.footer-bottom__copy {
    margin: 0;
    font-size: 0.9rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.82);
}

.footer-bottom__divider {
    display: none;
    width: 40px;
    height: 1px;
    background: rgba(255, 255, 255, 0.22);
    flex-shrink: 0;
}

.footer-bottom__tag {
    margin: 0;
    font-size: 0.8rem;
    line-height: 1.5;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, 0.52);
}

.footer-bottom p {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
}

.footer p {
    font-size: 0.85rem;
    color: var(--muted);
}

@media (max-width: 992px) {
    .footer-grid {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }

    .footer-col--brand {
        grid-column: 1 / -1;
        max-width: none;
    }
}

/* ===== Motion Graphics ===== */
.motion-layer {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
}

.motion-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(40px);
    opacity: 0.35;
}

.motion-orb--1 {
    width: 280px;
    height: 280px;
    top: 8%;
    right: 10%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.5) 0%, transparent 70%);
}

.motion-orb--2 {
    width: 220px;
    height: 220px;
    bottom: 15%;
    left: 8%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.35) 0%, transparent 70%);
}

.motion-orb--3 {
    width: 180px;
    height: 180px;
    top: 45%;
    left: 45%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.2) 0%, transparent 70%);
}

.motion-orb--4 {
    width: 150px;
    height: 150px;
    bottom: 30%;
    right: 25%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.3) 0%, transparent 70%);
}

.motion-flight-path {
    display: none;
}

.motion-path-line {
    display: none;
}

.motion-plane {
    position: absolute;
    font-size: 1.4rem;
    color: rgba(255, 255, 255, 0.45);
    text-shadow: 0 0 12px rgba(255, 255, 255, 0.4);
    transform: rotate(-45deg);
}

.motion-plane--2 {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.4);
    transform: rotate(-40deg) scaleX(-1);
}

.motion-grid {
    position: absolute;
    inset: 0;
    background-image: linear-gradient(90deg, rgba(255, 255, 255, 0.04) 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: 0 0;
    mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, transparent 75%);
    -webkit-mask-image: radial-gradient(ellipse at 50% 50%, #000 0%, transparent 75%);
}

.motion-particle {
    position: absolute;
    width: 4px;
    height: 4px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.6);
    box-shadow: 0 0 8px rgba(255, 255, 255, 0.5);
}

.motion-layer--css .motion-orb--1 {
    animation: motionOrbFloat 5s ease-in-out infinite;
}

.motion-layer--css .motion-plane--1 {
    animation: motionPlaneFly 20s linear infinite;
}

@keyframes motionOrbFloat {
    0%, 100% { transform: translate(0, 0); }
    50% { transform: translate(-15px, 20px); }
}

@keyframes motionPlaneFly {
    0% { left: -5%; top: 20%; }
    100% { left: 105%; top: 35%; }
}

/* ===== Reveal & Animations ===== */
.reveal {
    opacity: 0;
    transform: translateY(45px);
}

.contact-form,
.contact-form-wrap,
.contact-info,
.contact-card {
    opacity: 1;
    transform: none;
}

.scroll-progress {
    position: fixed;
    top: 0;
    right: 0;
    left: 0;
    height: 3px;
    z-index: 10001;
    background: linear-gradient(90deg, var(--white), var(--gold));
    transform-origin: right center;
    transform: scaleX(0);
    pointer-events: none;
}

.feature-card,
.timeline-card,
.counter-item,
.contact-card {
    will-change: transform, opacity;
}

.btn,
.nav-cta {
    will-change: transform;
}

/* ===== Responsive ===== */
@media (max-width: 900px) {
    .contact-grid { grid-template-columns: 1fr; }
    .counters { grid-template-columns: 1fr; gap: 1rem; }
}

@media (max-width: 1024px) {
    .nav-brand-text small {
        display: none;
    }

    .nav-links {
        gap: 0.08rem;
        padding: 0.22rem;
    }

    .nav-link {
        padding: 0.45rem 0.6rem;
        font-size: 0.8rem;
    }

    .nav-link span {
        display: none;
    }

    .nav-link i {
        font-size: 0.95rem;
    }

    .nav-cta-desktop {
        padding: 0.5rem 0.9rem;
        font-size: 0.8rem;
    }
}

@media (max-width: 768px) {
    .nav-inner {
        grid-template-columns: 1fr auto;
        padding: 0 1.15rem;
    }

    .nav-brand {
        grid-column: 1;
        grid-row: 1;
    }

    .nav-actions {
        grid-column: 2;
        grid-row: 1;
        justify-self: end;
    }

    .nav-toggle { display: flex; }

    .nav-backdrop {
        display: block;
    }

    .nav-cta-desktop {
        display: none;
    }

    .nav-links {
        grid-column: 1;
        grid-row: 1;
        position: fixed;
        top: var(--nav-h);
        right: 0;
        left: 0;
        z-index: 1001;
        flex-direction: column;
        align-items: stretch;
        justify-content: flex-start;
        background: rgba(31, 45, 90, 0.98);
        padding: 1rem 1.15rem 1.25rem;
        gap: 0.35rem;
        transform: translateY(-120%);
        opacity: 0;
        visibility: hidden;
        transition: 0.35s var(--ease);
        border: none;
        border-bottom: 1px solid var(--glass-border);
        border-radius: 0;
        box-shadow: var(--shadow);
        pointer-events: none;
    }

    .nav-links.open {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
        pointer-events: auto;
    }

    .nav-link {
        padding: 0.8rem 1rem;
        font-size: 0.95rem;
        border-radius: 10px;
        justify-content: flex-start;
    }

    .nav-link span {
        display: inline;
    }

    .nav-mobile-cta {
        display: flex;
        margin-top: 0.5rem;
        padding-top: 0.75rem;
        border-top: 1px solid var(--glass-border);
    }

    .nav-cta-mobile {
        width: 100%;
        justify-content: center;
        color: var(--dark);
    }

    .form-row { grid-template-columns: 1fr; }
    .section { padding: 4rem 0; }

    .client-slide {
        width: clamp(110px, 28vw, 150px);
        height: clamp(60px, 14vw, 80px);
    }

    .clients-marquee--reverse {
        display: none;
    }

    .steps-timeline {
        grid-template-columns: 1fr;
    }

    .steps-line {
        display: none;
    }

    .hero-badges {
        display: none;
    }

    .trust-marquee {
        padding: 1.35rem 0;
    }

    .footer-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .footer-col--brand {
        max-width: none;
    }

    .footer-bottom {
        padding: 1.5rem 0 2rem;
    }

    .footer-bottom__inner {
        flex-direction: column;
        gap: 0.6rem;
    }

    .footer-bottom__divider {
        display: block;
    }
}

/* ===== Page Loader ===== */
.page-loader {
    position: fixed;
    inset: 0;
    z-index: 100000;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--brand-dark);
}

.page-loader__inner {
    text-align: center;
}

.loader-logo {
    position: relative;
    width: 80px;
    height: 80px;
    margin: 0 auto 1rem;
}

.loader-logo img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    position: relative;
    z-index: 2;
    animation: loaderLogoPulse 1.2s ease-in-out infinite;
}

.loader-ring {
    position: absolute;
    inset: -8px;
    border: 2px solid rgba(255, 255, 255, 0.25);
    border-radius: 18px;
    animation: loaderRingSpin 2s linear infinite;
}

.loader-ring--2 {
    inset: -16px;
    border-color: rgba(255, 255, 255, 0.12);
    animation-direction: reverse;
    animation-duration: 3s;
}

.loader-text {
    font-family: 'Consolas', monospace;
    letter-spacing: 0.3em;
    color: var(--white);
    font-size: 0.9rem;
    margin-bottom: 1.25rem;
}

.loader-bar {
    width: 160px;
    height: 3px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 3px;
    margin: 0 auto;
    overflow: hidden;
}

.loader-bar span {
    display: block;
    height: 100%;
    width: 40%;
    background: var(--white);
    border-radius: 3px;
    animation: loaderBarSlide 1.2s ease-in-out infinite;
}

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

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

@keyframes loaderBarSlide {
    0% { transform: translateX(-100%); }
    100% { transform: translateX(350%); }
}

/* ===== Hero Enhancements ===== */
.hero-aurora {
    position: absolute;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    background:
        radial-gradient(ellipse 80% 50% at 20% 40%, rgba(255, 255, 255, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 60% 40% at 80% 60%, rgba(255, 255, 255, 0.05) 0%, transparent 50%);
    animation: auroraShift 12s ease-in-out infinite alternate;
}

@keyframes auroraShift {
    0% { opacity: 0.6; transform: scale(1); }
    100% { opacity: 1; transform: scale(1.05); }
}

.logo-ring {
    position: relative;
}

.logo-pulse {
    position: absolute;
    inset: -12px;
    border: 1px solid rgba(255, 255, 255, 0.35);
    border-radius: 24px;
    animation: logoPulse 2.8s ease-out infinite;
    pointer-events: none;
}

.logo-pulse--2 {
    animation-delay: 1.4s;
    inset: -22px;
    border-color: rgba(255, 255, 255, 0.18);
}

@keyframes logoPulse {
    0% { transform: scale(0.85); opacity: 0.8; }
    100% { transform: scale(1.25); opacity: 0; }
}

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

.hero-badge {
    position: absolute;
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.45rem 0.9rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--white);
    backdrop-filter: blur(10px);
    white-space: nowrap;
}

.hero-badge--1 { top: 22%; right: 8%; }
.hero-badge--2 { top: 38%; left: 6%; }
.hero-badge--3 { bottom: 28%; right: 10%; }

.hero-word {
    transform-origin: center bottom;
}

/* ===== Trust Marquee ===== */
.trust-marquee {
    position: relative;
    z-index: 2;
    padding: 1.75rem 0 2rem;
    background: linear-gradient(180deg, var(--brand-dark) 0%, var(--brand) 50%, var(--brand-dark) 100%);
    overflow: hidden;
}

.trust-marquee__glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 60%;
    height: 120px;
    transform: translate(-50%, -50%);
    background: radial-gradient(ellipse, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

.trust-marquee__header {
    text-align: center;
    margin-bottom: 1.25rem;
    position: relative;
    z-index: 1;
}

.trust-marquee__badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.4rem 1.1rem;
    font-size: 0.82rem;
    font-weight: 700;
    color: var(--white);
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.22);
    border-radius: 50px;
    backdrop-filter: blur(8px);
}

.trust-marquee__badge i {
    color: var(--gold);
    font-size: 0.75rem;
}

.trust-marquee__rows {
    display: block;
}

.trust-marquee__row {
    position: relative;
    overflow: hidden;
    direction: ltr;
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.trust-marquee__row::before,
.trust-marquee__row::after {
    content: '';
    position: absolute;
    top: 0;
    bottom: 0;
    width: 80px;
    z-index: 2;
    pointer-events: none;
}

.trust-marquee__row::before {
    left: 0;
    background: linear-gradient(90deg, var(--brand-dark), transparent);
}

.trust-marquee__row::after {
    right: 0;
    background: linear-gradient(270deg, var(--brand-dark), transparent);
}

.trust-marquee__track {
    display: flex;
    gap: 1rem;
    width: max-content;
    padding: 0.25rem 0;
}

.trust-marquee__row--forward .trust-marquee__track {
    animation: trustMarqueeForward 50s linear infinite;
}

.trust-marquee__row:hover .trust-marquee__track {
    animation-play-state: paused;
}

.trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.55rem 1.1rem 0.55rem 0.65rem;
    background: rgba(255, 255, 255, 0.07);
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 50px;
    backdrop-filter: blur(10px);
    white-space: nowrap;
    transition: transform 0.3s var(--ease), border-color 0.3s, box-shadow 0.3s;
    flex-shrink: 0;
}

.trust-pill--alt {
    background: rgba(255, 255, 255, 0.04);
    border-color: rgba(255, 255, 255, 0.12);
}

.trust-pill:hover {
    transform: scale(1.04);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.trust-pill__icon {
    width: 34px;
    height: 34px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: linear-gradient(135deg, #ffffff, #e8ecf5);
    color: var(--brand);
    font-size: 0.9rem;
    flex-shrink: 0;
}

.trust-pill--alt .trust-pill__icon {
    background: rgba(255, 255, 255, 0.12);
    color: var(--white);
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.trust-pill__text {
    font-size: 0.88rem;
    font-weight: 600;
    color: var(--text);
    padding-left: 0.15rem;
}

@keyframes trustMarqueeForward {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

@keyframes trustMarqueeReverse {
    0% { transform: translateX(-50%); }
    100% { transform: translateX(0); }
}

/* ===== Steps Timeline ===== */
.steps-timeline {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    position: relative;
    padding-top: 2rem;
}

.steps-line {
    position: absolute;
    top: 3.2rem;
    right: 12%;
    left: 12%;
    height: 2px;
    background: rgba(255, 255, 255, 0.12);
    border-radius: 2px;
    overflow: hidden;
}

.steps-line__fill {
    display: block;
    height: 100%;
    width: 100%;
    background: linear-gradient(90deg, transparent, var(--white), transparent);
    transform-origin: right center;
    transform: scaleX(0);
}

.step-card {
    position: relative;
    text-align: center;
    padding: 1.75rem 1.25rem;
    background: var(--glass);
    border: 1px solid var(--glass-border);
    border-radius: var(--radius);
    backdrop-filter: blur(12px);
    transition: transform 0.35s var(--ease), border-color 0.35s, box-shadow 0.35s;
}

.step-card:hover {
    transform: translateY(-8px);
    border-color: rgba(255, 255, 255, 0.35);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.25);
}

.step-card__num {
    position: absolute;
    top: -0.75rem;
    right: 50%;
    transform: translateX(50%);
    font-family: 'Consolas', monospace;
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--brand);
    background: var(--white);
    padding: 0.2rem 0.55rem;
    border-radius: 50px;
}

.step-card__icon {
    width: 56px;
    height: 56px;
    margin: 0.75rem auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 1.4rem;
    color: var(--white);
}

.step-card h3 {
    font-size: 1.05rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.step-card p {
    font-size: 0.88rem;
    color: var(--muted);
    line-height: 1.7;
}

/* ===== Feature Card Shine ===== */
.feature-card {
    position: relative;
    overflow: hidden;
    --shine-x: 50%;
    --shine-y: 50%;
}

.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at var(--shine-x) var(--shine-y), rgba(255, 255, 255, 0.12) 0%, transparent 55%);
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
    z-index: 0;
}

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

.feature-card::after {
    content: '';
    position: absolute;
    inset: -1px;
    border-radius: inherit;
    padding: 1px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.4), transparent 40%, rgba(255, 255, 255, 0.2));
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    opacity: 0;
    transition: opacity 0.4s;
    pointer-events: none;
}

.feature-card:hover::after {
    opacity: 1;
}

.feature-card > * {
    position: relative;
    z-index: 1;
}

/* ===== Motion Stars & Aurora ===== */
.motion-stars {
    position: absolute;
    inset: 0;
}

.motion-star {
    position: absolute;
    width: 2px;
    height: 2px;
    background: #fff;
    border-radius: 50%;
    animation: starTwinkle 3s ease-in-out infinite;
}

@keyframes starTwinkle {
    0%, 100% { opacity: 0.2; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.5); }
}

.motion-aurora {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.25;
    animation: auroraFloat 14s ease-in-out infinite;
}

.motion-aurora--1 {
    width: 400px;
    height: 400px;
    top: 10%;
    left: -5%;
    background: rgba(255, 255, 255, 0.15);
}

.motion-aurora--2 {
    width: 350px;
    height: 350px;
    bottom: 5%;
    right: -5%;
    background: rgba(255, 255, 255, 0.1);
    animation-delay: -7s;
    animation-direction: reverse;
}

@keyframes auroraFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    33% { transform: translate(30px, -20px) scale(1.1); }
    66% { transform: translate(-20px, 25px) scale(0.95); }
}

.btn-magnetic {
    will-change: transform;
}

/* ===== Scroll Side Effects ===== */
.scroll-sides {
    position: fixed;
    inset: 0;
    z-index: 1;
    pointer-events: none;
    overflow: hidden;
}

.scroll-side {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 72px;
    opacity: 0.62;
}

.scroll-side--right {
    right: 0;
}

.scroll-side--left {
    left: 0;
}

.side-rail {
    position: absolute;
    top: 0;
    bottom: 0;
    width: 100%;
    height: 100%;
    opacity: 0.55;
}

.side-rail__path {
    fill: none;
    stroke: rgba(255, 255, 255, 0.35);
    stroke-width: 2;
    stroke-dasharray: 8 10;
    stroke-linecap: round;
}

.side-plane {
    position: absolute;
    top: 6%;
    left: 50%;
    transform: translateX(-50%) rotate(-45deg);
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.55);
    text-shadow: 0 0 14px rgba(255, 255, 255, 0.45);
    opacity: 0.48;
    will-change: transform;
}

.side-plane--left {
    transform: translateX(-50%) rotate(-45deg) scaleX(-1);
}

.side-deco {
    position: absolute;
    left: 50%;
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid rgba(255, 255, 255, 0.22);
    color: var(--white);
    font-size: 0.85rem;
    transform: translateX(-50%);
    opacity: 0.38;
    backdrop-filter: blur(6px);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.2);
}

.side-deco--1 { top: 18%; }
.side-deco--2 { top: 38%; }
.side-deco--3 { top: 58%; }
.side-deco--4 { top: 78%; }

.side-deco--right.side-deco--1,
.side-deco--right.side-deco--3 {
    margin-left: 8px;
}

.side-deco--left.side-deco--2,
.side-deco--left.side-deco--4 {
    margin-left: -8px;
}

.side-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 120px;
    height: 120px;
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.14) 0%, transparent 70%);
    opacity: 0.45;
    animation: sideGlowPulse 4s ease-in-out infinite;
}

.side-glow--left {
    animation-delay: -2s;
}

@keyframes sideGlowPulse {
    0%, 100% { opacity: 0.25; transform: translate(-50%, -50%) scale(0.9); }
    50% { opacity: 0.55; transform: translate(-50%, -50%) scale(1.12); }
}

@media (max-width: 1100px) {
    .scroll-sides {
        display: none;
    }
}

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

    .steps-line {
        display: none;
    }
}

@media (prefers-reduced-motion: reduce) {
    .page-loader {
        display: none;
    }

    .scroll-sides {
        display: none;
    }

    .motion-layer {
        display: none;
    }

    .about-plane-rise {
        display: none !important;
    }

    .nav-brand-mark,
    .nav-brand-mark::before,
    .nav-brand .brand-logo,
    .nav-brand-text strong,
    .nav-brand-text small,
    .clients-marquee--forward .clients-track,
    .clients-marquee--reverse .clients-track,
    .trust-marquee__row--forward .trust-marquee__track,
    .trust-marquee__row--reverse .trust-marquee__track,
    .lang-switch__pulse,
    .lang-switch__icon {
        animation: none !important;
    }

    .nav-brand-text strong {
        -webkit-text-fill-color: var(--cyan);
        background: none;
        color: var(--cyan);
    }
}
