/* AYIM — Ultra-Modern Premium Blue Design */

:root {
    --bg-primary: #050510;
    --bg-secondary: #0a0a1a;
    --bg-card: rgba(255, 255, 255, 0.015);
    --border-subtle: rgba(255, 255, 255, 0.05);
    --border-hover: rgba(39, 101, 245, 0.25);
    --accent: #2765F5;
    --accent-alt: #044AE0;
    --accent-mid: #0645D6;
    --accent-light: #5587FA;
    --accent-glow: rgba(39, 101, 245, 0.15);
    --text-primary: #ffffff;
    --text-secondary: #7a7a9e;
    --text-muted: #44445e;
    --radius-sm: 12px;
    --radius-md: 16px;
    --radius-lg: 20px;
    --radius-xl: 24px;
    --radius-pill: 100px;
    --ease: cubic-bezier(0.22, 1, 0.36, 1);
    --ease-bounce: cubic-bezier(0.34, 1.56, 0.64, 1);
    --ease-smooth: cubic-bezier(0.4, 0, 0.2, 1);
    --transition: all 0.5s var(--ease);
}

*, *::before, *::after { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }

body {
    background: var(--bg-primary);
    color: var(--text-primary);
    font-family: 'Inter', system-ui, -apple-system, sans-serif;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    line-height: 1.6;
}

::selection { background: rgba(39, 101, 245, 0.4); color: white; }
::-webkit-scrollbar { width: 4px; }
::-webkit-scrollbar-track { background: var(--bg-primary); }
::-webkit-scrollbar-thumb { background: rgba(39, 101, 245, 0.2); border-radius: 10px; }
::-webkit-scrollbar-thumb:hover { background: var(--accent); }

.text-gradient {
    background: linear-gradient(135deg, #2765F5 0%, #5587FA 50%, #044AE0 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ====== SCROLL PROGRESS BAR ====== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0%;
    background: linear-gradient(90deg, var(--accent), var(--accent-light), var(--accent-alt));
    z-index: 9999;
    transition: width 0.1s linear;
    box-shadow: 0 0 10px var(--accent), 0 0 20px rgba(39, 101, 245, 0.3);
}

/* ====== CURSOR GLOW ====== */
.cursor-glow {
    position: fixed;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(39, 101, 245, 0.04) 0%, transparent 60%);
    border-radius: 50%;
    pointer-events: none;
    z-index: 0;
    transform: translate(-50%, -50%);
    transition: opacity 0.3s ease;
    will-change: left, top;
}

/* ====== FLOATING PILL NAVBAR ====== */
.navbar-float {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%) translateY(0);
    z-index: 1000;
    width: max-content;
    padding: 8px 10px;
    background: rgba(10, 10, 26, 0.55);
    backdrop-filter: blur(20px) saturate(180%);
    -webkit-backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: var(--radius-pill);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.5);
    transition: transform 0.6s var(--ease), opacity 0.6s var(--ease), background 0.5s var(--ease);
    opacity: 1;
}
.navbar-float.scrolled {
    background: rgba(5, 5, 16, 0.92);
    border-color: rgba(255, 255, 255, 0.07);
    box-shadow: 0 12px 48px rgba(0, 0, 0, 0.7), 0 0 30px rgba(39, 101, 245, 0.05);
}
.navbar-float.nav-hidden {
    transform: translateX(-50%) translateY(-140%);
    opacity: 0;
    pointer-events: none;
}
.navbar-inner {
    display: flex;
    align-items: center;
    gap: 4px;
}
.nav-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 6px 14px 6px 6px;
    text-decoration: none;
    color: white;
    font-weight: 700;
    font-size: 14px;
    letter-spacing: -0.02em;
    white-space: nowrap;
    transition: var(--transition);
}
.nav-logo:hover { opacity: 0.85; }
.nav-logo-icon {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-alt) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 14px rgba(39, 101, 245, 0.35);
    transition: var(--transition);
}
.nav-logo:hover .nav-logo-icon {
    box-shadow: 0 4px 20px rgba(39, 101, 245, 0.55);
    transform: rotate(-5deg) scale(1.05);
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 1px;
}
.nav-link {
    padding: 7px 14px;
    border-radius: var(--radius-pill);
    font-size: 12.5px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    transition: var(--transition);
    white-space: nowrap;
    position: relative;
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 50%;
    transform: translateX(-50%) scaleX(0);
    width: 16px;
    height: 2px;
    border-radius: 2px;
    background: var(--accent);
    transition: transform 0.3s var(--ease);
}
.nav-link:hover {
    color: white;
    background: rgba(255, 255, 255, 0.06);
}
.nav-link:hover::after {
    transform: translateX(-50%) scaleX(1);
}

/* Language Dropdown */
.nav-lang-wrapper {
    position: relative;
    margin-left: 2px;
}
.nav-lang-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.06);
    cursor: pointer;
    transition: var(--transition);
    color: var(--text-secondary);
}
.nav-lang-btn:hover {
    background: rgba(39, 101, 245, 0.12);
    border-color: rgba(39, 101, 245, 0.2);
    color: white;
    box-shadow: 0 0 15px rgba(39, 101, 245, 0.15);
}
.nav-lang-btn svg {
    width: 16px;
    height: 16px;
}
.lang-dropdown {
    position: absolute;
    top: calc(100% + 12px);
    right: 0;
    min-width: 190px;
    background: rgba(10, 10, 26, 0.95);
    backdrop-filter: blur(24px);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: var(--radius-md);
    padding: 6px;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px) scale(0.95);
    transition: all 0.35s var(--ease);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.6), 0 0 40px rgba(39, 101, 245, 0.05);
    z-index: 200;
}
.lang-dropdown.open {
    opacity: 1;
    visibility: visible;
    transform: translateY(0) scale(1);
}
.lang-option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 9px 14px;
    border-radius: 10px;
    cursor: pointer;
    transition: all 0.25s var(--ease);
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
    text-decoration: none;
    border: none;
    background: none;
    width: 100%;
    text-align: left;
    font-family: inherit;
}
.lang-option:hover {
    background: rgba(39, 101, 245, 0.12);
    color: white;
    transform: translateX(4px);
}
.lang-option.active {
    color: var(--accent-light);
    background: rgba(39, 101, 245, 0.1);
}
.lang-flag {
    font-size: 16px;
    line-height: 1;
}

.nav-cta {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    padding: 7px 18px;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-alt) 100%);
    color: white;
    font-size: 12.5px;
    font-weight: 600;
    text-decoration: none;
    transition: var(--transition);
    box-shadow: 0 0 20px rgba(39, 101, 245, 0.3);
    white-space: nowrap;
    margin-left: 4px;
    position: relative;
    overflow: hidden;
}
.nav-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.15), transparent);
    transition: left 0.6s ease;
}
.nav-cta:hover::before { left: 100%; }
.nav-cta:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 35px rgba(39, 101, 245, 0.5);
}

/* ====== ANIMATED ORBS ====== */
.orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(90px);
    pointer-events: none;
}
.orb-1 {
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(39, 101, 245, 0.14) 0%, transparent 70%);
    top: -15%;
    left: 50%;
    transform: translateX(-50%);
    animation: orbFloat1 14s ease-in-out infinite;
}
.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(4, 74, 224, 0.08) 0%, transparent 70%);
    top: 15%;
    right: -10%;
    animation: orbFloat2 17s ease-in-out infinite;
}
.orb-3 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(85, 135, 250, 0.06) 0%, transparent 70%);
    bottom: -15%;
    left: -15%;
    animation: orbFloat3 20s ease-in-out infinite;
}
@keyframes orbFloat1 {
    0%, 100% { transform: translateX(-50%) translateY(0); }
    50% { transform: translateX(-50%) translateY(40px); }
}
@keyframes orbFloat2 {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    33% { transform: translateY(-25px) rotate(5deg); }
    66% { transform: translateY(20px) rotate(-3deg); }
}
@keyframes orbFloat3 {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-30px); }
}

/* ====== HERO ====== */
.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(255,255,255,0.015) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.015) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.35) 0%, transparent 60%);
    -webkit-mask-image: radial-gradient(ellipse at center, rgba(0,0,0,0.35) 0%, transparent 60%);
    animation: gridPulse 6s ease-in-out infinite alternate;
}
@keyframes gridPulse {
    0% { opacity: 0.6; }
    100% { opacity: 1; }
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: var(--radius-pill);
    background: rgba(39, 101, 245, 0.06);
    border: 1px solid rgba(39, 101, 245, 0.12);
    font-size: 13px;
    font-weight: 500;
    color: var(--accent-light);
    position: relative;
    overflow: hidden;
}
.badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(39, 101, 245, 0.08), transparent);
    animation: badgeShimmer 3s ease-in-out infinite;
}
@keyframes badgeShimmer {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}
.badge-dot {
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent);
    animation: pulse 2s ease-in-out infinite;
    box-shadow: 0 0 8px var(--accent);
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.4; transform: scale(0.7); }
}

/* Hero title glow */
h1 .text-gradient {
    position: relative;
    filter: drop-shadow(0 0 30px rgba(39, 101, 245, 0.3));
}

/* Hero trust pills */
.hero-trust-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    border-radius: 100px;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.06);
    font-size: 13px;
    font-weight: 500;
    color: rgba(255,255,255,0.55);
    backdrop-filter: blur(12px);
    transition: all 0.4s cubic-bezier(0.22, 1, 0.36, 1);
    cursor: default;
}
.hero-trust-pill:hover {
    background: rgba(255,255,255,0.06);
    border-color: rgba(255,255,255,0.12);
    color: rgba(255,255,255,0.8);
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0,0,0,0.2);
}

/* ====== FEATURE CARDS — 3x2 GRID WITH ANIMATED GLOW ====== */
.feature-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
}
.feature-card {
    position: relative;
    border-radius: var(--radius-xl);
    padding: 36px 30px;
    overflow: hidden;
    transition: all 0.6s var(--ease);
    border: 2px solid rgba(85, 135, 250, 0.20);
    background: rgba(255, 255, 255, 0.01);
    z-index: 1;
    cursor: default;
    transform-style: preserve-3d;
    will-change: transform;
    box-shadow:
        0 0 15px rgba(85, 135, 250, 0.08),
        0 0 40px rgba(39, 101, 245, 0.04);
}
.feature-card::before {
    content: '';
    position: absolute;
    inset: 0;
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.8s ease;
    background: radial-gradient(ellipse at 50% 120%, rgba(100, 160, 255, 0.15) 0%, transparent 60%);
}
.feature-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, transparent, rgba(100, 160, 255, 0.5), transparent);
    opacity: 0;
    transition: opacity 0.5s ease;
}
.feature-card:hover {
    border-color: rgba(100, 160, 255, 0.45);
    transform: translateY(-8px);
    box-shadow:
        0 0 20px rgba(100, 160, 255, 0.20),
        0 0 60px rgba(85, 135, 250, 0.15),
        0 0 120px rgba(39, 101, 245, 0.08),
        0 24px 60px rgba(0, 0, 0, 0.35);
}
.feature-card:hover::before { opacity: 1; }
.feature-card:hover::after { opacity: 1; }

/* Animated glow behind each card */
.feature-card-glow {
    position: absolute;
    bottom: -50%;
    left: 50%;
    transform: translateX(-50%);
    width: 90%;
    height: 90%;
    border-radius: 50%;
    filter: blur(60px);
    opacity: 0;
    transition: opacity 1s ease;
    z-index: -2;
    animation: featureGlowShift 8s ease-in-out infinite;
}
.feature-card:nth-child(1) .feature-card-glow { animation-delay: 0s; }
.feature-card:nth-child(2) .feature-card-glow { animation-delay: -2s; }
.feature-card:nth-child(3) .feature-card-glow { animation-delay: -4s; }
.feature-card:nth-child(4) .feature-card-glow { animation-delay: -1s; }
.feature-card:nth-child(5) .feature-card-glow { animation-delay: -3s; }
.feature-card:nth-child(6) .feature-card-glow { animation-delay: -5s; }

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

@keyframes featureGlowShift {
    0%   { background: rgba(100, 160, 255, 0.30); }
    25%  { background: rgba(39, 101, 245, 0.30); }
    50%  { background: rgba(85, 135, 250, 0.30); }
    75%  { background: rgba(100, 170, 255, 0.30); }
    100% { background: rgba(100, 160, 255, 0.30); }
}

/* Card spotlight (mouse-follow) */
.feature-card .card-spotlight {
    position: absolute;
    inset: 0;
    border-radius: inherit;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.4s ease;
    pointer-events: none;
}
.feature-card:hover .card-spotlight { opacity: 1; }

.feature-card .card-icon {
    width: 52px;
    height: 52px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(39, 101, 245, 0.12), rgba(4, 74, 224, 0.06));
    border: 1px solid rgba(39, 101, 245, 0.08);
    margin-bottom: 20px;
    transition: all 0.6s var(--ease);
    position: relative;
}
.feature-card .card-icon::after {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 20px;
    background: radial-gradient(circle, rgba(39, 101, 245, 0.15) 0%, transparent 70%);
    opacity: 0;
    transition: opacity 0.5s ease;
    filter: blur(8px);
}
.feature-card:hover .card-icon {
    background: linear-gradient(135deg, rgba(100, 160, 255, 0.30), rgba(39, 101, 245, 0.20));
    box-shadow: 0 0 30px rgba(100, 160, 255, 0.35), 0 0 60px rgba(85, 135, 250, 0.15);
    border-color: rgba(100, 160, 255, 0.4);
    transform: scale(1.08);
}
.feature-card:hover .card-icon::after { opacity: 1; }
.feature-card:hover h3 {
    text-shadow: 0 0 20px rgba(39, 101, 245, 0.15);
}

/* ====== GLASS CARD ====== */
.glass-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(12px);
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.glass-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
}
.glass-card:hover {
    background: rgba(255,255,255,0.03);
    border-color: var(--border-hover);
    transform: translateY(-4px);
    box-shadow: 0 20px 60px rgba(0,0,0,0.3), 0 0 40px rgba(39,101,245,0.06);
}

/* ====== BUTTONS ====== */
.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-alt) 100%);
    color: white;
    font-weight: 600;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: var(--transition);
    box-shadow: 0 0 30px rgba(39,101,245,0.3), 0 4px 20px rgba(0,0,0,0.25);
}
.btn-primary::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(from 0deg, transparent, rgba(255,255,255,0.1), transparent 30%);
    animation: btnShine 4s linear infinite;
    opacity: 0;
    transition: opacity 0.4s ease;
}
@keyframes btnShine { 0% { transform: rotate(0deg); } 100% { transform: rotate(360deg); } }
.btn-primary::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}
.btn-primary:hover {
    transform: translateY(-3px) scale(1.03);
    box-shadow: 0 0 60px rgba(39,101,245,0.5), 0 8px 32px rgba(0,0,0,0.3);
}
.btn-primary:hover::before { opacity: 1; }
.btn-primary:hover::after { opacity: 1; }
.btn-primary > * { position: relative; z-index: 1; }

.btn-magnetic {
    transition: transform 0.3s var(--ease);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: transparent;
    color: white;
    font-weight: 600;
    border: 1px solid var(--border-subtle);
    cursor: pointer;
    transition: var(--transition);
    position: relative;
    overflow: hidden;
}
.btn-secondary::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(39, 101, 245, 0.06), transparent);
    transition: left 0.6s ease;
}
.btn-secondary:hover::before { left: 100%; }
.btn-secondary:hover {
    background: rgba(255,255,255,0.04);
    border-color: rgba(39,101,245,0.25);
    transform: translateY(-3px);
    box-shadow: 0 0 30px rgba(39,101,245,0.1);
}

/* ====== VIDEO — CLEAN BLUE GLOW ====== */
.video-wrapper {
    position: relative;
    max-width: 1100px;
    margin: 0 auto;
}

/* Big ambient light behind video */
.video-wrapper::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 110%;
    height: 160%;
    background:
        radial-gradient(ellipse 70% 55% at 50% 50%, rgba(85, 135, 250, 0.25) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 50% 50%, rgba(39, 101, 245, 0.35) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(100, 160, 255, 0.15) 0%, transparent 50%);
    z-index: 0;
    pointer-events: none;
    animation: videoBgPulse 4s ease-in-out infinite alternate;
}
@keyframes videoBgPulse {
    0%   { opacity: 0.7; transform: translate(-50%, -50%) scale(1); }
    100% { opacity: 1;   transform: translate(-50%, -50%) scale(1.03); }
}

/* Hide the neon overlay divs — glow is done via box-shadow + ::before */
.video-neon-outer,
.video-neon-inner {
    display: none;
}

.video-container {
    position: relative;
    z-index: 2;
    border-radius: var(--radius-xl);
    overflow: hidden;
    border: 1px solid rgba(85, 135, 250, 0.3);
    box-shadow:
        0 0 20px rgba(85, 135, 250, 0.20),
        0 0 60px rgba(85, 135, 250, 0.12),
        0 0 120px rgba(39, 101, 245, 0.08),
        0 20px 80px rgba(0, 0, 0, 0.4);
    aspect-ratio: 16/9;
    background: #050510;
    transition: box-shadow 0.5s ease;
}
.video-wrapper:hover .video-container {
    box-shadow:
        0 0 30px rgba(85, 135, 250, 0.28),
        0 0 80px rgba(85, 135, 250, 0.16),
        0 0 150px rgba(39, 101, 245, 0.10),
        0 20px 80px rgba(0, 0, 0, 0.4);
}
.video-container video {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: var(--radius-xl);
}

.video-card-side {
    position: relative;
    border-radius: var(--radius-lg);
    padding: 2px;
    background: linear-gradient(135deg, rgba(39,101,245,0.5), rgba(4,74,224,0.3), rgba(85,135,250,0.5));
    box-shadow:
        0 0 20px rgba(85, 135, 250, 0.20),
        0 0 60px rgba(85, 135, 250, 0.12),
        0 0 120px rgba(39, 101, 245, 0.08);
    transition: box-shadow 0.5s ease;
}
.video-card-side::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 120%;
    height: 170%;
    background:
        radial-gradient(ellipse 70% 55% at 50% 50%, rgba(85, 135, 250, 0.25) 0%, transparent 70%),
        radial-gradient(ellipse 50% 40% at 50% 50%, rgba(39, 101, 245, 0.35) 0%, transparent 60%),
        radial-gradient(circle at 50% 50%, rgba(100, 160, 255, 0.15) 0%, transparent 50%);
    z-index: -1;
    pointer-events: none;
    animation: videoBgPulse 4s ease-in-out infinite alternate;
}
.video-card-side:hover {
    box-shadow:
        0 0 30px rgba(85, 135, 250, 0.28),
        0 0 80px rgba(85, 135, 250, 0.16),
        0 0 150px rgba(39, 101, 245, 0.10);
}
.video-card-side-inner {
    border-radius: calc(var(--radius-lg) - 2px);
    overflow: hidden;
    background: var(--bg-secondary);
    position: relative;
    aspect-ratio: 16/9;
}
.video-card-side-inner video {
    display: block;
    width: 100%;
    aspect-ratio: 16/9;
    object-fit: cover;
}

/* ====== PRICING ====== */
.pricing-card {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-xl);
    padding: 36px;
    transition: all 0.6s var(--ease);
    position: relative;
    overflow: hidden;
}
.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.04), transparent);
}
.pricing-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0%;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-light));
    transition: width 0.5s var(--ease);
    border-radius: 2px;
}
.pricing-card:hover::after { width: 80%; }
.pricing-card:hover {
    border-color: rgba(39,101,245,0.2);
    transform: translateY(-8px);
    box-shadow: 0 24px 60px rgba(0,0,0,0.3), 0 0 50px rgba(39,101,245,0.06);
}
.pricing-featured {
    background: linear-gradient(135deg, rgba(39,101,245,0.06), rgba(4,74,224,0.03));
    border: 1.5px solid rgba(255,255,255,0.25);
    transform: scale(1.03);
    overflow: visible;
    box-shadow: 0 0 25px rgba(255,255,255,0.06), 0 0 60px rgba(39,101,245,0.08), inset 0 0 30px rgba(255,255,255,0.02);
}
.pricing-featured:hover {
    border-color: rgba(255,255,255,0.4);
    transform: scale(1.03) translateY(-8px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.3), 0 0 100px rgba(39,101,245,0.15), 0 0 40px rgba(255,255,255,0.08);
}
.pricing-featured:hover::after { width: 90%; box-shadow: 0 0 10px var(--accent); }
.pricing-badge {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%) translateY(-50%);
    padding: 6px 24px;
    border-radius: var(--radius-pill);
    background: linear-gradient(135deg, var(--accent), var(--accent-alt));
    color: white;
    font-size: 12px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 4px 20px rgba(39,101,245,0.45);
    white-space: nowrap;
    z-index: 10;
    animation: pricingBadgePulse 3s ease-in-out infinite;
}
@keyframes pricingBadgePulse {
    0%, 100% { box-shadow: 0 4px 20px rgba(39,101,245,0.45); }
    50% { box-shadow: 0 4px 30px rgba(39,101,245,0.65); }
}

/* ====== RAMADAN BANNER ====== */
.ramadan-banner {
    max-width: 640px;
    margin: 0 auto 56px;
    position: relative;
}
.ramadan-banner-inner {
    position: relative;
    padding: 28px 40px 22px;
    border-radius: 20px;
    background: linear-gradient(135deg, rgba(39,101,245,0.08), rgba(147,51,234,0.06), rgba(39,101,245,0.04));
    border: 1px solid rgba(255,255,255,0.08);
    overflow: hidden;
    text-align: center;
}
.ramadan-content {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
}
.ramadan-moon {
    font-size: 28px;
    animation: ramadanFloat 3s ease-in-out infinite;
    filter: drop-shadow(0 0 12px rgba(255,200,50,0.5));
}
.ramadan-moon:last-child {
    animation-delay: 1.5s;
    transform: scaleX(-1);
}
.ramadan-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0;
}
.ramadan-label {
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.35em;
    color: rgba(255,255,255,0.5);
    text-transform: uppercase;
}
.ramadan-title {
    font-size: 28px;
    font-weight: 900;
    letter-spacing: 0.15em;
    background: linear-gradient(90deg, #ffd700, #fff, #ffd700);
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: ramadanShine 3s linear infinite;
    line-height: 1.1;
}
.ramadan-sub {
    margin-top: 10px;
    font-size: 13px;
    color: rgba(255,255,255,0.35);
    font-weight: 500;
}
.ramadan-stars span {
    position: absolute;
    color: rgba(255,215,0,0.4);
    font-size: 14px;
    animation: ramadanTwinkle 2s ease-in-out infinite;
    pointer-events: none;
}
.ramadan-shimmer {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.03), rgba(255,255,255,0.06), rgba(255,255,255,0.03), transparent);
    animation: ramadanShimmer 4s ease-in-out infinite;
    pointer-events: none;
}
@keyframes ramadanFloat {
    0%, 100% { transform: translateY(0) rotate(0deg); }
    50% { transform: translateY(-6px) rotate(5deg); }
}
@keyframes ramadanShine {
    0% { background-position: -200% 0; }
    100% { background-position: 200% 0; }
}
@keyframes ramadanTwinkle {
    0%, 100% { opacity: 0.2; transform: scale(0.8); }
    50% { opacity: 1; transform: scale(1.2); }
}
@keyframes ramadanShimmer {
    0% { left: -100%; }
    50% { left: 100%; }
    100% { left: 100%; }
}

/* ====== FAQ ====== */
.faq-item {
    background: var(--bg-card);
    border: 1px solid var(--border-subtle);
    border-radius: var(--radius-md);
    transition: var(--transition);
    overflow: hidden;
}
.faq-item:hover { border-color: rgba(39,101,245,0.15); }
.faq-toggle {
    background: none;
    border: none;
    color: white;
    cursor: pointer;
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px 24px;
    text-align: left;
    font-family: inherit;
    transition: background 0.3s ease;
}
.faq-toggle:hover { background: rgba(39, 101, 245, 0.03); }
.faq-toggle span { font-size: 15px; font-weight: 600; }
.faq-icon {
    transition: transform 0.5s var(--ease);
    color: var(--text-muted);
    flex-shrink: 0;
}
.faq-item .faq-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.5s var(--ease);
}
.faq-item.active .faq-content { max-height: 200px; }
.faq-item.active .faq-icon { transform: rotate(180deg); color: var(--accent-light); }
.faq-item.active {
    border-color: rgba(39, 101, 245, 0.15);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.2), 0 0 20px rgba(39, 101, 245, 0.04);
}
.faq-content p {
    padding: 0 24px 20px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.7;
}

/* ====== MARQUEE ====== */
.marquee-container {
    overflow: hidden;
    mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(90deg, transparent 0%, black 10%, black 90%, transparent 100%);
}
.marquee-track {
    display: flex;
    white-space: nowrap;
    animation: marquee 30s linear infinite;
    width: max-content;
}
@keyframes marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

/* ====== ANIMATIONS — ENTRANCE ====== */
@keyframes fadeInUp {
    from { opacity: 0; transform: translateY(40px); }
    to { opacity: 1; transform: translateY(0); }
}
.animate-fade-in-up {
    animation: fadeInUp 0.9s var(--ease) forwards;
    opacity: 0;
}
.delay-1 { animation-delay: 0.1s; }
.delay-2 { animation-delay: 0.2s; }
.delay-3 { animation-delay: 0.35s; }
.delay-4 { animation-delay: 0.5s; }
.delay-5 { animation-delay: 0.65s; }

/* ====== SCROLL REVEAL — Multiple Types ====== */
.reveal {
    opacity: 0;
    transform: translateY(60px);
    transition: all 1s var(--ease);
}
.reveal.revealed {
    opacity: 1;
    transform: translateY(0);
}

.reveal-left {
    opacity: 0;
    transform: translateX(-80px);
    transition: all 1s var(--ease);
}
.reveal-left.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-right {
    opacity: 0;
    transform: translateX(80px);
    transition: all 1s var(--ease);
}
.reveal-right.revealed {
    opacity: 1;
    transform: translateX(0);
}

.reveal-scale {
    opacity: 0;
    transform: scale(0.85);
    transition: all 1s var(--ease);
}
.reveal-scale.revealed {
    opacity: 1;
    transform: scale(1);
}

.reveal-blur {
    opacity: 0;
    transform: translateY(30px);
    filter: blur(10px);
    transition: all 1s var(--ease);
}
.reveal-blur.revealed {
    opacity: 1;
    transform: translateY(0);
    filter: blur(0);
}

.reveal-rotate {
    opacity: 0;
    transform: translateY(40px) rotate(3deg);
    transition: all 1s var(--ease);
}
.reveal-rotate.revealed {
    opacity: 1;
    transform: translateY(0) rotate(0);
}

.stagger > *:nth-child(1) { transition-delay: 0s; }
.stagger > *:nth-child(2) { transition-delay: 0.08s; }
.stagger > *:nth-child(3) { transition-delay: 0.16s; }
.stagger > *:nth-child(4) { transition-delay: 0.24s; }
.stagger > *:nth-child(5) { transition-delay: 0.32s; }
.stagger > *:nth-child(6) { transition-delay: 0.40s; }

.parallax-slow { will-change: transform; }
.parallax-medium { will-change: transform; }
.parallax-fast { will-change: transform; }

/* ====== PARTICLES ====== */
.particles {
    position: absolute;
    inset: 0;
    overflow: hidden;
    pointer-events: none;
}
.particle {
    position: absolute;
    width: 2px;
    height: 2px;
    background: var(--accent);
    border-radius: 50%;
    opacity: 0;
    animation: particleFloat 10s infinite;
}
@keyframes particleFloat {
    0% { opacity: 0; transform: translateY(100vh) scale(0); }
    10% { opacity: 0.5; }
    90% { opacity: 0.5; }
    100% { opacity: 0; transform: translateY(-10vh) scale(1); }
}

/* ====== SECTION LINE ====== */
.section-line {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(39,101,245,0.08), transparent);
}

/* ====== CTA GLOW ====== */
.cta-glow {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%,-50%);
    width: 900px;
    height: 500px;
    background: radial-gradient(ellipse, rgba(39,101,245,0.12), transparent 70%);
    filter: blur(80px);
    pointer-events: none;
    animation: ctaPulse 5s ease-in-out infinite alternate;
}
@keyframes ctaPulse { 0% { opacity: 0.4; } 100% { opacity: 0.9; } }

/* ====== SECTION GLOW BACKGROUNDS ====== */
.section-glow::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(39, 101, 245, 0.06) 0%, transparent 70%);
    border-radius: 50%;
    filter: blur(80px);
    pointer-events: none;
    z-index: 0;
}

/* ====== CHECKLIST ANIMATION ====== */
.check-item {
    transition: all 0.4s var(--ease);
}
.check-item:hover {
    transform: translateX(6px);
}
.check-item:hover span {
    color: white;
}

/* ====== RESPONSIVE ====== */
@media (max-width: 1024px) {
    .feature-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .cursor-glow { display: none; }
}
@media (max-width: 768px) {
    .navbar-float {
        top: 10px;
        left: 10px;
        right: 10px;
        width: auto;
        transform: none;
        padding: 6px 8px;
    }
    .navbar-float.nav-hidden {
        transform: translateY(-120%);
    }
    .nav-links { display: none; }
    .feature-grid {
        grid-template-columns: 1fr;
    }
    .hero-grid { background-size: 40px 40px; }
    .video-container, .video-container video { border-radius: var(--radius-md); }
    .orb-1, .orb-2, .orb-3 { opacity: 0.5; }
    .video-neon-outer { inset: -30px; }
    .cursor-glow { display: none; }
}
