/* 
   Phoenix Performance V2 - Core Styles
   Direction Artistique : Dark Tech Mode (SaaS Premium)
*/

:root {
    --bg-dark: #0A0A0A;
    --bg-darker: #050505;
    --neon-green: #00FF87;
    --phoenix-green: #00A859;
    --glass-border: rgba(255,255,255,0.08);
    --glass-bg: rgba(255,255,255,0.02);
    --text-main: #FFFFFF;
    --text-muted: #A0A0A0;
}

html {
    scroll-behavior: smooth;
    font-family: 'Inter', sans-serif;
}

body {
    margin: 0;
    padding: 0;
    background-color: var(--bg-dark);
    color: var(--text-main);
    overflow-x: hidden;
}

/* ================= CUSTOM SCROLLBAR & GLOW ================= */
/* Masquer totalement la barre de dÃ©filement native */
* {
    scrollbar-width: none; /* Firefox */
    -ms-overflow-style: none; /* IE/Edge */
}
*::-webkit-scrollbar {
    display: none; /* Chrome/Safari */
}

/* Le nouveau point lumineux pur */
#scroll-glow {
    position: fixed;
    right: -2px;
    top: 0;
    width: 4px;
    height: 40px;
    background: rgba(0, 255, 135, 0.4);
    box-shadow: 0 0 10px 2px rgba(0, 255, 135, 0.4);
    border-radius: 10px;
    filter: blur(1px);
    z-index: 9999;
    pointer-events: none;
    transition: top 0.1s linear;
}

.text-neon {
    color: var(--neon-green);
    font-weight: 800;
}

/* ================= HEADER GLASSMORPHISM ================= */
.glass-header {
    position: fixed;
    top: 0;
    width: 100%;
    height: 80px !important;
    min-height: 80px !important;
    max-height: 80px !important;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 6%;
    box-sizing: border-box;
    background: rgba(10, 10, 10, 0.5);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--glass-border);
    z-index: 1000;
}

.logo h2 {
    font-size: 1.5rem;
    margin: 0;
    letter-spacing: -0.5px;
    display: flex;
    align-items: baseline;
    gap: 5px;
}

.nav-links {
    display: flex;
    gap: 25px;
    list-style: none;
    padding: 0;
    margin: 0;
}

.nav-links a {
    color: var(--text-muted);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: color 0.2s ease;
}

.nav-links a:hover {
    color: var(--text-main);
}

/* ================= DROPDOWN MENU ================= */
.dropdown {
    position: relative;
    display: inline-block;
}

.dropdown-content {
    display: none;
    position: absolute;
    background-color: var(--bg-darker);
    min-width: 250px;
    box-shadow: 0px 8px 16px 0px rgba(0,0,0,0.5);
    z-index: 1001;
    border: 1px solid var(--glass-border);
    border-radius: 8px;
    top: 40px;
    left: -20px;
    padding: 10px 0;
    list-style: none;
}

/* Invisible bridge to keep hover active */
.dropdown-content::before {
    content: '';
    position: absolute;
    top: -30px;
    left: 0;
    width: 100%;
    height: 30px;
    background: transparent;
}

.dropdown-content li {
    margin: 0;
}

.dropdown-content li a {
    color: var(--text-muted);
    padding: 12px 20px;
    text-decoration: none;
    display: block;
    transition: all 0.2s ease;
}

.dropdown-content li a:hover {
    background-color: rgba(0, 255, 135, 0.05);
    color: var(--text-main);
    border-left: 2px solid var(--neon-green);
    padding-left: 18px;
}

.dropdown:hover .dropdown-content {
    display: block;
}

/* ================= BOUTONS ================= */
.btn-neon-outline {
    border: 1px solid var(--neon-green);
    color: var(--neon-green);
    padding: 10px 24px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.95rem;
    transition: all 0.3s ease;
}

.btn-neon-outline:hover {
    background: rgba(0, 255, 135, 0.1);
    box-shadow: 0 0 15px rgba(0, 255, 135, 0.2);
}

.btn-neon {
    background: linear-gradient(135deg, var(--neon-green), var(--phoenix-green));
    color: var(--bg-dark);
    padding: 16px 36px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 800;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    box-shadow: 0 0 20px rgba(0, 255, 135, 0.3);
}

.btn-neon:hover {
    box-shadow: 0 0 35px rgba(0, 255, 135, 0.5);
    transform: translateY(-2px);
}

/* ================= HERO SECTION ================= */
.hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    justify-content: center;
    align-items: center;
    text-align: center;
    padding: 0 20px;
}

.hero-glow {
    position: absolute;
    width: 60vh;
    height: 60vh;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0,255,135,0.12) 0%, rgba(10,10,10,0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 1;
    max-width: 900px;
    margin-top: 50px;
}

.hero h1 {
    font-size: 4.8rem;
    font-weight: 800;
    line-height: 1.05;
    letter-spacing: -2.5px;
    margin-bottom: 24px;
    margin-top: 0;
}

.text-gradient {
    background: linear-gradient(to right, #FFFFFF, var(--neon-green));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.25rem;
    color: var(--text-muted);
    margin-bottom: 45px;
    line-height: 1.6;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

/* ================= SOCIAL PROOF ================= */
.social-proof {
    text-align: center;
    padding: 60px 0;
    margin: 80px 0;
    border-top: 1px solid var(--glass-border);
    border-bottom: 1px solid var(--glass-border);
    background: var(--bg-darker);
}

.social-proof p {
    color: #666;
    text-transform: uppercase;
    letter-spacing: 3px;
    font-size: 0.8rem;
    font-weight: 600;
    margin-bottom: 30px;
    margin-top: 0;
}

.logos {
    display: flex;
    justify-content: center;
    align-items: center;
    flex-wrap: wrap;
    gap: 60px;
}

.logo-link {
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    opacity: 0.6;
    filter: grayscale(100%) contrast(0.8);
}
.logo-link:hover {
    opacity: 1;
    filter: grayscale(0%) contrast(1);
    transform: translateY(-2px);
}

.logo-img {
    max-height: 150px;
    max-width: 280px;
    width: auto;
    object-fit: contain;
    border-radius: 4px;
}

/* ================= MARQUEE (PARTENAIRES & OUTILS) ================= */
.marquee-wrapper {
    overflow: hidden;
    width: 100%;
    padding: 30px 0;
    position: relative;
    background: transparent;
    border-top: 1px solid rgba(255,255,255,0.05);
    border-bottom: 1px solid rgba(255,255,255,0.05);
    margin: 40px 0;
}

/* Faded inner edges so items disappear gracefully */
.marquee-container-mask {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: linear-gradient(90deg, var(--bg-dark) 0%, transparent 15%, transparent 85%, var(--bg-dark) 100%);
    pointer-events: none;
    z-index: 2;
}

.marquee-content {
    display: inline-flex;
    animation: marquee 70s linear infinite;
    white-space: nowrap;
}

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

.marquee-item {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    margin: 0 40px;
    opacity: 0.6;
    transition: all 0.3s ease;
    font-weight: 700;
    font-size: 1.2rem;
    color: #FFF;
    font-family: 'Inter', sans-serif;
    cursor: pointer;
}

.marquee-item span {
    transition: color 0.3s ease;
}

.marquee-item:hover {
    opacity: 1;
    transform: scale(1.05);
}

.marquee-item:hover span {
    color: var(--brand-color, #ffffff);
}

/* Force pure white defaults */
.marquee-item img.svg-icon,
.marquee-item svg.ag-img-logo,
.marquee-item .emoji-icon {
    height: 35px;
    width: auto;
    filter: brightness(0) invert(1);
    transition: all 0.3s ease;
}

/* Specific size override if needed */
.marquee-item .emoji-icon {
    font-style: normal;
    font-size: 1.6rem;
    height: auto;
    display: inline-block;
}

/* Reveal true brand color on hover */
.marquee-item:hover img.svg-icon,
.marquee-item:hover svg.ag-img-logo,
.marquee-item:hover .emoji-icon {
    filter: brightness(1) invert(0);
}

/* Exception for OpenAI: Since simpleicons default is black, reverting filter would make it black. 
   We want it to remain white on black background, but you can also color it green.
   Let's keep it white since black is invisible. */
.marquee-item:hover img.svg-openai {
    filter: brightness(0) invert(1);
}

.ag-img-logo {
    height: 32px !important;
    border-radius: 6px;
    /* optional: a small glow behind the logo can be nice */
    box-shadow: 0 0 10px rgba(255, 255, 255, 0.1);
}

/* ================= METRICS BLOCK ================= */
.metrics-section {
    padding: 60px 6%;
    max-width: 1200px;
    margin: 0 auto;
}
.metrics-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}
.metric-card {
    background: var(--glass-bg);
    border: 1px solid rgba(0, 255, 135, 0.1);
    border-radius: 12px;
    padding: 40px 20px;
    text-align: center;
    backdrop-filter: blur(8px);
    transition: transform 0.3s, border-color 0.3s;
    box-shadow: 0 10px 40px rgba(0,0,0,0.4);
}
.metric-card:hover {
    transform: translateY(-5px);
    border-color: rgba(0, 255, 135, 0.4);
}
.metric-number {
    font-size: 3.5rem;
    font-weight: 800;
    color: var(--neon-green);
    margin: 0 0 10px 0;
    text-shadow: 0 0 20px rgba(0, 255, 135, 0.2);
}
.metric-text {
    font-size: 1rem;
    color: var(--text-muted);
    margin: 0;
    font-weight: 500;
}
@media (max-width: 768px) {
    .metrics-grid {
        grid-template-columns: 1fr;
    }
}

/* ================= EXPERTISES ================= */
.services {
    padding: 30px 6% 80px 6%;
    max-width: 1400px;
    margin: 0 auto;
}

.services h2 {
    text-align: center;
    font-size: 3.2rem;
    margin-bottom: 80px;
    letter-spacing: -1.5px;
    font-weight: 800;
}

.grid-services {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 30px;
}

.glass-card {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 40px;
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

/* Hover fx */
.glass-card:hover {
    transform: translateY(-8px);
    border-color: rgba(0, 255, 135, 0.4);
    box-shadow: 0 15px 35px rgba(0,0,0,0.5);
    background: rgba(0, 255, 135, 0.02);
}

.glass-card.no-green-bg:hover {
    background: var(--glass-bg);
}

.formation-card {
    border-color: rgba(255,255,255,0.15); /* Slightly pop out CPF */
}

.glass-card .icon {
    font-size: 2.8rem;
    margin-bottom: 25px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.glass-card:hover .icon {
    filter: grayscale(0%);
    opacity: 1;
}

.icon-svg {
    width: 45px;
    height: 45px;
    color: var(--neon-green);
    margin-bottom: 25px;
    filter: grayscale(100%);
    opacity: 0.7;
    transition: all 0.3s ease;
}

.glass-card:hover .icon-svg {
    filter: grayscale(0%);
    opacity: 1;
}

.glass-card h3 {
    font-size: 1.6rem;
    margin-top: 0;
    margin-bottom: 15px;
    color: #FFF;
    font-weight: 700;
    letter-spacing: -0.5px;
}

.glass-card p {
    color: var(--text-muted);
    line-height: 1.6;
    margin: 0;
    font-size: 1.05rem;
}

/* ================= CUSTOM FORM & N8N WEBHOOK ================= */
.form-section {
    padding: 40px 20px 80px 20px;
    display: flex;
    justify-content: center;
    /* Subtile radial light above form */
    background: radial-gradient(circle at bottom center, rgba(0,255,135,0.06) 0%, var(--bg-dark) 60%);
}

.glass-form-container {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    padding: 60px;
    width: 100%;
    max-width: 650px;
    backdrop-filter: blur(20px);
    text-align: center;
    box-shadow: 0 20px 40px rgba(0,0,0,0.4);
}

.glass-form-container h2 {
    margin-top: 0;
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -1px;
}

.glass-form-container p {
    color: var(--text-muted);
    margin-bottom: 40px;
    font-size: 1.1rem;
    line-height: 1.5;
}

.glass-form-container input,
.glass-form-container textarea {
    width: 100%;
    padding: 18px 20px;
    margin-bottom: 20px;
    box-sizing: border-box;
    background: rgba(0,0,0,0.4);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: #FFF;
    font-family: inherit;
    font-size: 1.05rem;
    transition: all 0.3s ease;
}

.glass-form-container input:focus,
.glass-form-container textarea:focus {
    outline: none;
    border-color: var(--neon-green);
    background: rgba(0,0,0,0.6);
    box-shadow: 0 0 10px rgba(0,255,135,0.1);
}

.glass-form-container textarea {
    height: 140px;
    resize: vertical;
}

.glass-form-container button {
    width: 100%;
    margin-top: 10px;
}

.success-message {
    color: var(--neon-green);
    font-size: 1.2rem;
    font-weight: 600;
    margin-top: 20px;
    padding: 20px;
    border: 1px dashed var(--neon-green);
    border-radius: 8px;
    background: rgba(0,255,135,0.05);
}

/* ================= FOOTER ================= */
.main-footer {
    padding: 60px 6% 30px 6%;
    background: var(--bg-darker);
    border-top: 1px solid var(--glass-border);
}

.footer-content {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 80px;
    max-width: 1200px;
    margin: 0 auto;
}

.footer-column {
    flex: 1;
    min-width: 200px;
}

.footer-column h4 {
    color: var(--text-main);
    margin-bottom: 20px;
    font-size: 1.1rem;
    font-weight: 600;
}

.footer-column a {
    display: block;
    color: var(--text-muted);
    text-decoration: none;
    margin-bottom: 12px;
    font-size: 0.95rem;
    transition: color 0.3s ease;
}

.footer-column a:hover {
    color: var(--neon-green);
}

.footer-bottom {
    margin-top: 40px;
    padding-top: 20px;
    text-align: center;
    border-top: 1px solid rgba(255,255,255,0.05);
    color: var(--text-muted);
    font-size: 0.85rem;
}

/* ================= ANIMATIONS & INTERACTION ================= */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(50px);
    transition: opacity 1s cubic-bezier(0.16, 1, 0.3, 1), transform 1s cubic-bezier(0.16, 1, 0.3, 1);
    will-change: opacity, transform;
}

.animate-on-scroll.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.delay-100 { transition-delay: 100ms; }
.delay-200 { transition-delay: 200ms; }
.delay-300 { transition-delay: 300ms; }
.delay-400 { transition-delay: 400ms; }


/* ================= FAQ ACCORDION ================= */
.faq-section {
    padding: 20px 6% 80px 6%;
    max-width: 800px;
    margin: 0 auto;
}
.faq-title {
    text-align: center;
    margin-bottom: 50px;
    font-size: 2.2rem;
}
.faq-box {
    margin-bottom: 15px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    border-radius: 8px;
    overflow: hidden;
    backdrop-filter: blur(10px);
    transition: border-color 0.3s;
}
.faq-box:hover {
    border-color: rgba(255,255,255,0.2);
}
.faq-question {
    padding: 20px;
    cursor: pointer;
    font-weight: 600;
    font-size: 1.05rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    color: var(--text-main);
}
.faq-toggle {
    color: var(--neon-green);
    font-size: 1.5rem;
    font-weight: 300;
    transition: transform 0.3s ease;
}
.faq-box.active .faq-toggle {
    transform: rotate(45deg);
    color: #FFF;
}
.faq-answer {
    padding: 0 20px;
    max-height: 0;
    opacity: 0;
    color: var(--text-muted);
    line-height: 1.6;
    transition: all 0.4s ease;
}
.faq-box.active .faq-answer {
    padding: 0 20px 20px 20px;
    max-height: 500px;
    opacity: 1;
}

/* ================= SEO BLOCKS ================= */
.seo-section {
    padding: 80px 20px;
    background: var(--bg-dark);
    border-top: 1px solid rgba(255,255,255,0.02);
}

.seo-block {
    max-width: 900px;
    margin: 0 auto 60px auto;
}

.seo-block h2 {
    font-size: 2.2rem;
    color: #FFF;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.seo-block h3 {
    font-size: 1.6rem;
    color: var(--neon-green);
    margin-bottom: 15px;
    margin-top: 30px;
}

.seo-block p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Responsive adjustments */
@media (max-width: 900px) {
    .glass-header { 
        padding: 0 20px; 
    }
    .nav-links { 
        display: none; /* simple hidden on mobile for demo, Needs JS toggle for full prod */ 
    }
    .hero h1 { font-size: 3.2rem; }
    .hero p { font-size: 1.1rem; }
    
    .contact-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 600px) {
    .hero h1 { font-size: 2.5rem; letter-spacing: -1px; }
    .services { padding: 80px 20px; }
    .glass-form-container { padding: 40px 20px; }
    .process-step::after { display: none; }
}

/* =========================================================
   INNER PAGES (Expertises, Contact) - SHARED STYLES 
   ========================================================= */

.expertise-hero {
    min-height: auto;
    padding-top: 160px;
    padding-bottom: 40px;
    align-items: center;
}

.hero-glow-cyan {
    position: absolute;
    width: 60vh;
    height: 60vh;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 168, 255, 0.1) 0%, rgba(10,10,10,0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.hero-glow-green {
    position: absolute;
    width: 60vh;
    height: 60vh;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(0, 255, 135, 0.1) 0%, rgba(10,10,10,0) 70%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.overline {
    color: var(--text-muted);
    font-weight: 700;
    letter-spacing: 2px;
    margin-bottom: 10px;
    font-size: 0.9rem;
}

.text-gradient-cyan {
    background: linear-gradient(to right, #FFFFFF, #00A8FF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.wrapper {
    max-width: 1000px;
    margin: 0 auto;
}

.expertise-content {
    padding-top: 20px;
}

.highlight-title {
    color: var(--neon-green);
    font-size: 2rem;
    margin-bottom: 20px;
    letter-spacing: -0.5px;
}

.text-block p {
    font-size: 1.15rem;
    color: #FFF;
    line-height: 1.8;
    margin-bottom: 30px;
}

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

/* Glass Showcase (for images/n8n) */
.glass-showcase {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    padding: 20px;
    backdrop-filter: blur(10px);
    margin-bottom: 60px;
    text-align: center;
    position: relative;
}

.image-placeholder {
    width: 100%;
    height: 300px; /* Placeholder height */
    background: rgba(0,0,0,0.4);
    border: 1px dashed rgba(255,255,255,0.1);
    border-radius: 8px;
    display: flex;
    justify-content: center;
    align-items: center;
    color: var(--text-muted);
    font-family: monospace;
    overflow: hidden;
}

.image-placeholder img {
    max-width: 100%;
    height: auto;
    border-radius: 8px;
}

.caption {
    margin-top: 15px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ROI Box */
.roi-box {
    background: rgba(0,255,135,0.02);
    border: 1px solid var(--neon-green);
    border-radius: 16px;
    padding: 40px;
    margin-bottom: 60px;
    box-shadow: 0 0 20px rgba(0,255,135,0.05);
}

.roi-box h4 {
    margin-top: 0;
    color: #FFF;
    font-size: 1.4rem;
    margin-bottom: 20px;
}

.roi-box ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.roi-box ul li {
    font-size: 1.1rem;
    color: #EEE;
    margin-bottom: 15px;
    display: flex;
    gap: 15px;
}

.case-study-box {
    border-color: rgba(255,255,255,0.2);
    box-shadow: none;
}

.case-study-box h4 {
    font-size: 1.6rem;
    color: var(--text-main);
}

.case-study-box p {
    color: var(--text-muted);
    font-size: 1.1rem;
    line-height: 1.6;
}

/* Processes & Grids */
.process-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    margin-bottom: 60px;
}

.process-step {
    text-align: center;
    padding: 30px 20px;
}

.step-number {
    width: 40px;
    height: 40px;
    background: var(--neon-green);
    color: var(--bg-dark);
    font-weight: 800;
    font-size: 1.2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    margin: 0 auto 20px auto;
}

.tech-list {
    list-style: none;
    padding: 0;
    max-width: 600px;
    margin: 0 auto 60px auto;
}

.tech-list li {
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    margin-bottom: 15px;
    padding: 20px;
    border-radius: 8px;
    font-size: 1.1rem;
    font-weight: 500;
    display: flex;
    gap: 15px;
    align-items: center;
}

/* Contact Specific */
.contact-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 30px;
    width: 100%;
}

.contact-info {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    width: 100%;
}

.info-card {
    padding: 30px;
    border-radius: 12px;
}

.glass-form-container select {
    width: 100%;
    padding: 18px 20px;
    margin-bottom: 20px;
    box-sizing: border-box;
    background: rgba(0,0,0,0.6);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 8px;
    color: var(--text-muted);
    font-family: inherit;
    font-size: 1.05rem;
    transition: all 0.3s ease;
    appearance: none;
}

.glass-form-container select:focus {
    outline: none;
    border-color: var(--neon-green);
    color: #FFF;
    box-shadow: 0 0 10px rgba(0,255,135,0.1);
}

.cta-container {
    text-align: center;
    margin-top: 40px;
    margin-bottom: 60px;
}

/* ================= CUSTOM SCROLLBAR FOR WORKFLOW VIEWER ================= */
.custom-scrolling-container::-webkit-scrollbar { width: 6px; }
.custom-scrolling-container::-webkit-scrollbar-track { background: rgba(0, 0, 0, 0.2); border-radius: 10px; }
.custom-scrolling-container::-webkit-scrollbar-thumb { background: rgba(255, 255, 255, 0.2); border-radius: 10px; }
.custom-scrolling-container::-webkit-scrollbar-thumb:hover { background: rgba(255, 255, 255, 0.4); }

/* ================= EMOJI DEACTIVATION HACK FOR WINDOWS ================= */
.hover-emoji { filter: grayscale(1); opacity: 0.25; transition: all 0.3s ease; display: inline-block; }
.glass-card:hover .hover-emoji, .hover-trigger:hover .hover-emoji { filter: grayscale(0) !important; opacity: 1 !important; transform: scale(1.1); }

/* ================= CUSTOM LOGOS HOVER ================= */
.logo-lcl, .logo-sdj, .logo-tf, .logo-pc, .logo-sdc {
    transition: all 0.3s ease;
}

.logo-lcl {
    filter: brightness(0.6) opacity(0.6);
}

.logo-lcl:hover {
    filter: brightness(2) drop-shadow(0 0 10px rgba(255, 255, 255, 0.4)) opacity(1);
}

.logo-sdj {
    filter: grayscale(1) brightness(0.6) opacity(0.6);
}

.logo-sdj:hover {
    filter: grayscale(0) brightness(1) drop-shadow(0 0 10px rgba(138, 196, 59, 0.4)) opacity(1);
}

.logo-tf {
    filter: grayscale(1) brightness(0.6) opacity(0.6);
}

.logo-tf:hover {
    filter: grayscale(0) brightness(1) drop-shadow(0 0 10px rgba(255, 69, 0, 0.4)) opacity(1);
}

.logo-pc {
    filter: grayscale(1) brightness(0.6) opacity(0.6);
}

.logo-pc:hover {
    filter: grayscale(0) brightness(1) drop-shadow(0 0 10px rgba(0, 255, 135, 0.4)) opacity(1);
}

.logo-sdc {
    filter: grayscale(1) brightness(0.6) opacity(0.6);
}

.logo-sdc:hover {
    filter: grayscale(0) brightness(1) drop-shadow(0 0 10px rgba(255, 30, 80, 0.4)) opacity(1);
}
