/* ============================================================
   🚀 NOVACHAT : LUXURY TECH DESIGN SYSTEM
   ============================================================ */

:root {
    --accent-cyan: #00d2ff;
    --accent-pink: #ff0080;
    --bg-dark: #0a0220;
    --glass: rgba(255, 255, 255, 0.05);
    --glass-border: rgba(255, 255, 255, 0.12);
    --text-shadow: 0 2px 10px rgba(0, 0, 0, 0.5);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Poppins', sans-serif;
}

body {
    background-color: var(--bg-dark);
    color: white;
    overflow-x: hidden;
    line-height: 1.7;
    -webkit-font-smoothing: antialiased;
}

/* --- BACKGROUND --- */
.background-magic {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -2;
    background-image: url('assets/fond.jpg');
    background-size: cover;
    background-position: center center;
    background-attachment: fixed;
    background-repeat: no-repeat;
}

/* Voile sombre pour la lisibilité et l'esthétique violet/néon */
.background-magic::before {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: rgba(8, 1, 26, 0.78);
    pointer-events: none;
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(100px);
    opacity: 0.28;
    animation: blob-float 25s infinite alternate ease-in-out;
    mix-blend-mode: screen;
}
.blob1 { width: 600px; height: 600px; background: #4A00E0; top: -150px; left: -150px; }
.blob2 { width: 500px; height: 500px; background: var(--accent-pink); bottom: -150px; right: -150px; }
.blob3 { width: 350px; height: 350px; background: var(--accent-cyan); top: 20%; right: 15%; opacity: 0.18; mix-blend-mode: screen; }

/* --- MASCOTTES --- */
.mascot-layer {
    position: fixed;
    top: 0; left: 0; width: 100%; height: 100%;
    z-index: -1;
    pointer-events: none;
}
.floating-mascot {
    position: absolute;
    width: 140px;
    opacity: 0.35;
    filter: drop-shadow(0 0 20px rgba(255,255,255,0.15));
    pointer-events: auto;
    cursor: pointer;
}
.floating-mascot.mascot-scared {
    animation: mascotReact 0.5s ease-out forwards !important;
}
/* Positions gérées par JS */
.m2, .m7, .m8 { display: none; }

/* --- LAYOUT --- */
.main-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    padding: 20px;
    min-height: 100vh;
}
.container { max-width: 1100px; width: 100%; z-index: 2; }
header { padding: 40px 0; text-align: center; }

.logo {
    height: 120px;
    filter: drop-shadow(0 0 35px rgba(255, 0, 128, 0.6));
    animation: logo-float 4s infinite ease-in-out;
}
.small-logo { height: 90px; }

/* --- PREMIUM GLASSMORPHISM --- */
.glass-card {
    background: var(--glass);
    backdrop-filter: blur(25px);
    -webkit-backdrop-filter: blur(25px);
    border: 1px solid var(--glass-border);
    border-top: 1px solid rgba(255, 255, 255, 0.25);
    border-radius: 30px;
    padding: 45px;
    margin-bottom: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    transition: 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}
.glass-card:hover {
    border-color: rgba(255, 255, 255, 0.4);
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(0, 210, 255, 0.2);
}

/* --- TYPOGRAPHY --- */
.hero { text-align: center; }
.hero h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
    text-shadow: var(--text-shadow);
}
.hero p {
    font-size: clamp(1rem, 2vw, 1.2rem);
    max-width: 850px;
    margin: 0 auto 35px;
    opacity: 0.9;
}
.glow-text {
    background: linear-gradient(90deg, #fff, var(--accent-cyan), var(--accent-pink), #fff);
    background-size: 200% auto;
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    animation: text-shine 5s linear infinite;
}

/* --- THE IRRESISTIBLE BUTTON --- */
.cta-button {
    display: block;
    width: fit-content;
    margin: 30px auto 0;
    background: linear-gradient(45deg, #FFD700, #ff8c00);
    color: #0a0220;
    text-decoration: none;
    padding: 20px 50px;
    border-radius: 50px;
    font-weight: 800;
    font-size: 1.1rem;
    box-shadow: 0 10px 30px rgba(255, 165, 0, 0.5);
    transition: all 0.3s ease;
    text-transform: uppercase;
    letter-spacing: 1px;
    text-align: center;
}
.cta-button:hover {
    transform: scale(1.08) translateY(-3px);
    box-shadow: 0 15px 40px rgba(255, 165, 0, 0.8);
    filter: brightness(1.15);
}
.pulse {
    animation: button-pulse 2s infinite;
}

/* --- FEATURES GRID --- */
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
    margin-top: 30px;
}
.feature-card { text-align: center; }
.feature-icon { font-size: 3.8rem; margin-bottom: 20px; display: block; filter: drop-shadow(0 0 15px rgba(255,255,255,0.3));}
.feature-card h3 { color: var(--accent-cyan); margin-bottom: 12px; font-size: 1.5rem;}
.feature-card p { opacity: 0.85; }

/* --- INSTALLATION PAGE --- */
.install-box { text-align: left; max-width: 800px; margin: 0 auto 30px; }
.emoji-header { font-size: 3rem; display: block; margin-bottom: 10px; }
.divider { border-top: 1px solid rgba(255,255,255,0.1); margin: 30px 0; }
.steps-grid { display: flex; flex-direction: column; gap: 20px; }
.step-item { display: flex; align-items: center; gap: 20px; }
.step-number {
    background: var(--accent-pink); color: #fff;
    width: 40px; height: 40px; border-radius: 50%;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.2rem; font-weight: 800; flex-shrink: 0;
    box-shadow: 0 0 15px rgba(255, 0, 128, 0.5);
}
.tip-box {
    margin-top: 35px; padding: 25px;
    background: rgba(0, 210, 255, 0.08);
    border-left: 5px solid var(--accent-cyan);
    border-radius: 15px;
}
.tip-box p { font-size: 1rem; color: #fff; margin-bottom: 8px;}
.tip-box strong { color: var(--accent-cyan); }
.back-link { color: var(--accent-cyan); text-decoration: none; font-weight: 600; display: block; margin-top: 30px; text-align: center; font-size: 1.1rem;}
.back-link:hover { text-shadow: 0 0 15px var(--accent-cyan); }

/* --- ANIMATIONS --- */
@keyframes mascotReact {
    0%   { transform: scale(1.4) rotate(-12deg); filter: drop-shadow(0 0 30px rgba(255,0,128,0.8)); }
    30%  { transform: scale(0.85) rotate(10deg) translate(25px, -25px); }
    60%  { transform: scale(1.15) rotate(-6deg) translate(-12px, 12px); }
    100% { transform: scale(1) rotate(0deg) translate(0, 0); filter: drop-shadow(0 0 20px rgba(255,255,255,0.15)); }
}
@keyframes logo-float { 0%, 100% { transform: translateY(0); } 50% { transform: translateY(-15px); } }
@keyframes blob-float { from { transform: translate(0, 0); } to { transform: translate(60px, 40px); } }
@keyframes text-shine { to { background-position: 200% center; } }
@keyframes button-pulse {
    0% { box-shadow: 0 0 0 0 rgba(255, 165, 0, 0.6); }
    70% { box-shadow: 0 0 0 20px rgba(255, 165, 0, 0); }
    100% { box-shadow: 0 0 0 0 rgba(255, 165, 0, 0); }
}

/* --- MOBILE OPTIMIZATION --- */
@media (max-width: 768px) {
    .glass-card { padding: 30px 20px; border-radius: 20px; }
    .logo { height: 80px; }
    .hero h1 { font-size: 2rem; }
    .features-grid { grid-template-columns: 1fr; gap: 20px;}
    .floating-mascot { width: 65px; opacity: 0.13; }
    .m6, .m9 { display: none; }
    .m1 { top:  5%; left: 1%; }
    .m5 { top: 50%; left: 1%; }
    .m4 { top: 10%; left: 88%; }
    .m3 { top: 55%; left: 88%; }
    .cta-button { width: 100%; max-width: 350px; padding: 18px 20px; font-size: 1rem;}
}

/* --- LANGUAGE PICKER STYLE --- */
.language-picker {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 20px;
    flex-wrap: wrap;
    padding: 0 10px;
}

.language-picker img {
    width: 28px;
    height: 18px;
    cursor: pointer;
    border-radius: 4px;
    transition: all 0.3s ease;
    filter: grayscale(0.6) opacity(0.6);
    border: 1px solid rgba(255,255,255,0.1);
}

.language-picker img:hover {
    filter: grayscale(0) opacity(1);
    transform: scale(1.25) translateY(-2px);
    box-shadow: 0 0 15px var(--accent-cyan);
    border-color: var(--accent-cyan);
}

@media (max-width: 768px) {
    .language-picker { gap: 8px; }
    .language-picker img { width: 24px; }
}

/* ============================================================
   NOVACHAT v2 — NEW SECTIONS
   ============================================================ */

/* --- PARTICLES CANVAS --- */
#particles-canvas {
    position: fixed;
    top: 0; left: 0;
    width: 100%; height: 100%;
    z-index: -1;
    pointer-events: none;
}

/* --- STICKY NAV --- */
.nav-bar {
    position: fixed;
    top: 0; left: 0; right: 0;
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 14px 40px;
    transition: all 0.3s ease;
}
.nav-bar.nav-scrolled {
    background: rgba(10, 2, 32, 0.88);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255,255,255,0.08);
    box-shadow: 0 4px 30px rgba(0,0,0,0.4);
}
.nav-logo { height: 42px; }
.nav-logo-link { display: flex; align-items: center; }
.nav-links { display: flex; align-items: center; gap: 32px; }
.nav-links a {
    color: rgba(255,255,255,0.75);
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: color 0.2s;
}
.nav-links a:hover { color: var(--accent-cyan); }
.nav-cta {
    background: linear-gradient(45deg, var(--accent-pink), #a855f7) !important;
    color: white !important;
    padding: 9px 22px !important;
    border-radius: 50px;
    font-size: 0.88rem !important;
    box-shadow: 0 4px 20px rgba(255,0,128,0.3);
    transition: all 0.3s ease !important;
}
.nav-cta:hover {
    box-shadow: 0 6px 28px rgba(255,0,128,0.6) !important;
    transform: translateY(-1px) !important;
    color: white !important;
}
.nav-hamburger {
    display: none;
    background: none;
    border: 1px solid rgba(255,255,255,0.2);
    border-radius: 8px;
    color: white;
    font-size: 1.3rem;
    cursor: pointer;
    padding: 4px 10px;
    transition: 0.2s;
}
.nav-hamburger:hover { border-color: var(--accent-cyan); color: var(--accent-cyan); }

/* --- MOBILE MENU --- */
.mobile-menu {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    z-index: 99;
    background: rgba(10, 2, 32, 0.97);
    backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 30px;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.mobile-menu.open { opacity: 1; pointer-events: all; }
.mobile-menu a {
    color: white;
    text-decoration: none;
    font-size: 1.5rem;
    font-weight: 700;
    transition: color 0.2s;
}
.mobile-menu a:hover { color: var(--accent-cyan); }
.mobile-menu .nav-cta {
    padding: 14px 40px !important;
    font-size: 1rem !important;
}
.mobile-lang-picker { margin-top: 10px; }

/* --- HERO UPDATES --- */
.hero-badge {
    display: inline-block;
    background: rgba(0, 210, 255, 0.08);
    border: 1px solid rgba(0, 210, 255, 0.3);
    border-radius: 50px;
    padding: 6px 20px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent-cyan);
    letter-spacing: 2px;
    margin-bottom: 22px;
}
.hero-actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    flex-wrap: wrap;
    margin-top: 30px;
}
.cta-secondary {
    color: rgba(255,255,255,0.65);
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: color 0.2s;
    padding: 10px 0;
}
.cta-secondary:hover { color: var(--accent-cyan); }

/* --- STATS BAR --- */
.stats-bar {
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 20px;
    padding: 28px 20px;
    margin: 25px 0;
    flex-wrap: wrap;
    gap: 0;
}
.stat-item {
    flex: 1;
    text-align: center;
    min-width: 120px;
    padding: 10px 15px;
}
.stat-number {
    font-size: 2.4rem;
    font-weight: 800;
    background: linear-gradient(90deg, var(--accent-cyan), var(--accent-pink));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    line-height: 1;
    margin-bottom: 6px;
}
.stat-number.rating {
    -webkit-text-fill-color: #FFD700;
    background: none;
}
.stat-label {
    font-size: 0.75rem;
    opacity: 0.55;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.stat-divider {
    width: 1px;
    height: 50px;
    background: rgba(255,255,255,0.1);
    flex-shrink: 0;
}

/* --- INTERPRETER SHOWCASE --- */
.interpreter-showcase {
    text-align: center;
    padding: 60px 45px;
    scroll-margin-top: 80px;
}
.interpreter-badge {
    display: inline-block;
    background: linear-gradient(45deg, rgba(255,0,128,0.12), rgba(168,85,247,0.12));
    border: 1px solid rgba(255,0,128,0.4);
    border-radius: 50px;
    padding: 6px 20px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent-pink);
    letter-spacing: 2px;
    margin-bottom: 20px;
}
.interpreter-showcase h2 {
    font-size: clamp(1.7rem, 4vw, 2.6rem);
    font-weight: 800;
    margin-bottom: 16px;
}
.interpreter-showcase > p {
    opacity: 0.85;
    max-width: 680px;
    margin: 0 auto 40px;
    font-size: 1.05rem;
}
.interpreter-demo {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 24px;
    margin: 40px 0;
    flex-wrap: wrap;
}
.demo-phone {
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 24px 20px;
    width: 195px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
}
.demo-lang-tag { font-size: 0.82rem; font-weight: 700; opacity: 0.7; }
.demo-bubble {
    border-radius: 14px;
    padding: 12px 16px;
    font-size: 0.88rem;
    font-weight: 600;
    width: 100%;
    text-align: left;
    line-height: 1.4;
}
.demo-bubble-out {
    background: linear-gradient(45deg, #4A00E0, var(--accent-pink));
    border-bottom-right-radius: 4px;
}
.demo-bubble-in {
    background: rgba(0, 210, 255, 0.12);
    border: 1px solid rgba(0, 210, 255, 0.3);
    border-bottom-left-radius: 4px;
}
.demo-mic-btn {
    background: rgba(255,255,255,0.07);
    border-radius: 50%;
    width: 42px; height: 42px;
    display: flex; align-items: center; justify-content: center;
    font-size: 1.1rem;
    border: 1px solid rgba(255,255,255,0.12);
    transition: 0.2s;
    cursor: pointer;
}
.demo-mic-btn:hover { background: rgba(255,255,255,0.15); transform: scale(1.1); }
.demo-arrow {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}
.demo-arrow-line {
    width: 2px;
    height: 28px;
    background: linear-gradient(180deg, var(--accent-cyan), var(--accent-pink));
    border-radius: 2px;
}
.demo-ai-badge {
    background: rgba(0, 210, 255, 0.1);
    border: 1px solid rgba(0, 210, 255, 0.3);
    border-radius: 20px;
    padding: 5px 14px;
    font-size: 0.78rem;
    font-weight: 700;
    color: var(--accent-cyan);
    white-space: nowrap;
}
.interpreter-langs {
    font-size: 0.8rem;
    opacity: 0.45;
    margin-bottom: 12px;
    letter-spacing: 1px;
    text-transform: uppercase;
}
.lang-chips {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
}
.lang-chips span {
    background: rgba(255,255,255,0.05);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 5px 13px;
    font-size: 0.82rem;
    font-weight: 600;
    transition: 0.2s;
    cursor: default;
}
.lang-chips span:hover {
    background: rgba(0, 210, 255, 0.1);
    border-color: var(--accent-cyan);
}

/* --- SECTION TITLE --- */
.section-title {
    text-align: center;
    font-size: clamp(1.5rem, 3vw, 2.1rem);
    font-weight: 800;
    margin: 10px 0 30px;
}
#features { scroll-margin-top: 80px; }

/* --- WHY SECTION --- */
.why-section {
    padding: 50px 45px;
}
.why-section h2 {
    text-align: center;
    font-size: clamp(1.7rem, 3.5vw, 2.4rem);
    font-weight: 800;
    margin-bottom: 40px;
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(270px, 1fr));
    gap: 22px;
}
.why-item {
    display: flex;
    gap: 14px;
    align-items: flex-start;
    background: rgba(255,255,255,0.03);
    border: 1px solid rgba(255,255,255,0.07);
    border-radius: 14px;
    padding: 18px;
    transition: 0.3s;
}
.why-item:hover {
    background: rgba(0, 210, 255, 0.05);
    border-color: rgba(0, 210, 255, 0.2);
}
.why-check { font-size: 1.4rem; flex-shrink: 0; margin-top: 1px; }
.why-item strong { display: block; margin-bottom: 5px; font-size: 0.97rem; }
.why-item p { opacity: 0.65; font-size: 0.88rem; line-height: 1.5; }

/* --- REVEAL ANIMATION --- */
.reveal {
    opacity: 0;
    transform: translateY(28px);
    transition: opacity 0.7s ease, transform 0.7s ease;
}
.revealed { opacity: 1; transform: translateY(0); }

/* --- FOOTER V2 --- */
.main-footer {
    text-align: center;
    padding: 60px 20px 40px;
    margin-top: 10px;
}
.footer-mascots {
    display: flex;
    justify-content: center;
    gap: 16px;
    margin-bottom: 32px;
    flex-wrap: wrap;
}
.footer-mascot {
    width: 68px;
    opacity: 0.65;
    transition: 0.3s;
    filter: drop-shadow(0 0 8px rgba(255,255,255,0.08));
}
.footer-mascot:hover {
    opacity: 1;
    transform: translateY(-6px) scale(1.12);
    filter: drop-shadow(0 0 18px rgba(0, 210, 255, 0.45));
}
.footer-cta { margin-bottom: 28px; }
.footer-text { opacity: 0.35; font-size: 0.88rem; }

/* --- EXTRA MASCOTS --- */
.m4 { bottom: 38%; left: 2%;  animation: float 9s  infinite ease-in-out 2s;   opacity: 0.18; }
.m5 { top: 62%;   right: 2%; animation: float 11s infinite ease-in-out 0.5s; opacity: 0.18; }
.m6 { top: 8%;    right: 22%; animation: float 7s  infinite ease-in-out 3s;   opacity: 0.20; }
.m7 { bottom: 22%; left: 20%; animation: float 10s infinite ease-in-out 1.5s reverse; opacity: 0.17; }
.m8 { top: 50%;   left: 48%; animation: float 8s  infinite ease-in-out 4s;   opacity: 0.15; }
.m9 { bottom: 5%; left: 45%; animation: float 12s infinite ease-in-out 0.8s reverse; opacity: 0.20; }

/* ============================================================
   APP SHOWCASE / SCREENSHOTS SECTION
   ============================================================ */

.app-showcase {
    margin-bottom: 25px;
    scroll-margin-top: 80px;
}

.showcase-header {
    text-align: center;
    margin-bottom: 50px;
}

.showcase-subtitle {
    opacity: 0.7;
    font-size: 1.05rem;
    max-width: 600px;
    margin: 12px auto 0;
    line-height: 1.6;
}

/* --- SPOTLIGHT ITEMS (alternating layout) --- */
.spotlight-item {
    display: flex;
    align-items: center;
    gap: 50px;
    margin-bottom: 25px;
}

.spotlight-reverse {
    flex-direction: row-reverse;
}

.spotlight-text {
    flex: 1;
    min-width: 0;
}

.spotlight-tag {
    display: inline-block;
    background: rgba(0, 210, 255, 0.08);
    border: 1px solid rgba(0, 210, 255, 0.3);
    border-radius: 50px;
    padding: 5px 16px;
    font-size: 0.72rem;
    font-weight: 700;
    color: var(--accent-cyan);
    letter-spacing: 2px;
    margin-bottom: 16px;
}

.spotlight-text h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 800;
    margin-bottom: 16px;
    color: white;
    line-height: 1.2;
}

.spotlight-text p {
    opacity: 0.8;
    font-size: 1rem;
    line-height: 1.75;
    margin-bottom: 22px;
}

.spotlight-features {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.spotlight-features li {
    font-size: 0.92rem;
    opacity: 0.85;
    font-weight: 600;
    padding-left: 4px;
}

/* --- PHONE FRAME / MOCKUP --- */
.spotlight-phone {
    flex-shrink: 0;
    display: flex;
    justify-content: center;
    align-items: center;
}

.phone-frame {
    width: 230px;
    background: rgba(10, 2, 32, 0.6);
    border: 2px solid rgba(255, 255, 255, 0.15);
    border-radius: 38px;
    padding: 14px 10px 10px;
    box-shadow:
        0 30px 70px rgba(0, 0, 0, 0.55),
        0 0 50px rgba(0, 210, 255, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.12);
    transition: transform 0.4s ease, box-shadow 0.4s ease, border-color 0.4s ease;
    position: relative;
}

/* Notch at top */
.phone-frame::before {
    content: '';
    display: block;
    width: 56px;
    height: 5px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    margin: 0 auto 10px;
}

.phone-frame img {
    width: 100%;
    border-radius: 28px;
    display: block;
    object-fit: cover;
    object-position: top;
}

.spotlight-item:hover .phone-frame {
    transform: translateY(-8px) scale(1.03);
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.55),
        0 0 70px rgba(0, 210, 255, 0.2),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
    border-color: rgba(0, 210, 255, 0.45);
}

/* Alternate accent color for pink spotlights */
.spotlight-reverse .spotlight-tag {
    background: rgba(255, 0, 128, 0.08);
    border-color: rgba(255, 0, 128, 0.3);
    color: var(--accent-pink);
}

.spotlight-reverse:hover .phone-frame {
    box-shadow:
        0 40px 80px rgba(0, 0, 0, 0.55),
        0 0 70px rgba(255, 0, 128, 0.18),
        inset 0 1px 0 rgba(255, 255, 255, 0.18);
    border-color: rgba(255, 0, 128, 0.4);
}

@media (max-width: 900px) {
    .spotlight-item,
    .spotlight-reverse {
        flex-direction: column !important;
        gap: 30px;
    }
    .phone-frame { width: 210px; }
    .showcase-header { margin-bottom: 30px; }
    .spotlight-text h3 { font-size: 1.4rem; }
}

@media (max-width: 480px) {
    .phone-frame { width: 185px; border-radius: 30px; }
    .phone-frame img { border-radius: 22px; }
    .floating-mascot { width: 50px; opacity: 0.10; }
    .m3, .m5, .m6, .m9 { display: none; }
    .m1 { top: 5%; left: 1%; }
    .m4 { top: 8%; left: 86%; }
}

/* --- MOBILE NAV & RESPONSIVE --- */
@media (max-width: 900px) {
    .nav-bar { padding: 12px 20px; }
    .nav-links { display: none; }
    .nav-hamburger { display: block; }
    .stats-bar { gap: 10px; }
    .stat-divider { display: none; }
    .interpreter-showcase { padding: 35px 20px; }
    .interpreter-demo { flex-direction: column; align-items: center; }
    .demo-arrow { flex-direction: row; }
    .demo-arrow-line { width: 28px; height: 2px; }
    .why-section { padding: 35px 20px; }
    .why-grid { grid-template-columns: 1fr; }
    .hero-actions { flex-direction: column; gap: 12px; }
    .m4, .m5, .m6, .m7, .m8, .m9 { display: none; }
    .footer-mascots { gap: 10px; }
    .footer-mascot { width: 52px; }
}