/* Preptika Dark Industrial Theme */
:root {
  /* Couleurs primaires */
  --bg-matte-black: #0c0d10;      /* Noir de fonderie profond */
  --bg-panel-dark: #15181f;       /* Gris technique pour les cartes et modules */
  --industrial-orange: #ff5500;   /* Orange mécanique - Attention / Action / CTA */
  
  /* Textes et détails */
  --surgical-white: #f4f5f6;      /* Blanc pur pour la lisibilité critique */
  --zinc-gray: #7d8595;           /* Gris outil pour les textes secondaires */
  --pure-k100: #000000;           /* Le vrai Noir Pur K100 de contrôle */

  /* Typographies */
  --font-interface: 'Inter', system-ui, sans-serif;
  --font-technical: 'JetBrains Mono', 'Roboto Mono', monospace; /* Pour les chiffres et la data */
}

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

html {
    scroll-behavior: smooth;
}

body {
  background-color: var(--bg-matte-black);
  color: var(--surgical-white);
  font-family: var(--font-interface);
  line-height: 1.6;
  overflow-x: hidden;
}

/* Background Glow Effects */
.background-glow {
    position: fixed;
    border-radius: 50%;
    filter: blur(150px);
    z-index: -1;
    opacity: 0.15;
}
.glow-1 {
    width: 600px;
    height: 600px;
    background: var(--industrial-orange);
    top: -200px;
    left: -200px;
}
.glow-2 {
    width: 500px;
    height: 500px;
    background: #2a1208;
    bottom: -100px;
    right: -100px;
}

/* Typography */
h1, h2, h3, .brand-name {
    font-family: 'Outfit', sans-serif;
}
h1.hero-title {
    font-size: 4rem !important;
    font-weight: 900 !important;
    line-height: 1.1 !important;
    margin-bottom: 1.5rem !important;
    color: #ffffff !important;
    -webkit-text-fill-color: #ffffff !important;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}
h1.hero-title span.highlight {
    background: none !important;
    -webkit-text-fill-color: var(--industrial-orange) !important;
    color: var(--industrial-orange) !important;
}
h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
}
.highlight {
    color: var(--industrial-orange);
}

/* Buttons */
.btn {
    display: inline-block;
    padding: 0.8rem 1.5rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    cursor: pointer;
}
.btn-primary {
    background-color: var(--bg-panel-dark);
    color: var(--surgical-white);
    border: 1px solid var(--zinc-gray);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}
.btn-primary:hover {
    transform: translateY(-2px);
    border-color: var(--industrial-orange);
    color: var(--industrial-orange);
}
.btn-secondary {
    background: transparent;
    color: var(--zinc-gray);
    border: 1px solid #232834;
}
.btn-secondary:hover {
    color: var(--surgical-white);
    border-color: var(--zinc-gray);
}
.btn-gold-premium {
    background: linear-gradient(135deg, #fbbf24 0%, #d97706 100%);
    color: #0c0d10 !important;
    font-weight: 800 !important;
    border: 1px solid rgba(251, 191, 36, 0.7) !important;
    border-radius: 50px !important;
    padding: 0.5rem 1.15rem !important;
    box-shadow: 0 4px 14px rgba(251, 191, 36, 0.35), inset 0 1px 0 rgba(255, 255, 255, 0.4);
    transition: all 0.3s cubic-bezier(0.34, 1.56, 0.64, 1) !important;
    text-decoration: none !important;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.35rem;
    font-size: 0.88rem;
    letter-spacing: 0.01em;
}
.btn-gold-premium:hover {
    background: linear-gradient(135deg, #fcd34d 0%, #f59e0b 100%);
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.55), inset 0 1px 0 rgba(255, 255, 255, 0.6);
    color: #000000 !important;
    border-color: #fef08a !important;
}
.nav-gold-counter {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.45rem 0.95rem;
    background: rgba(251, 191, 36, 0.12);
    border: 1px solid rgba(251, 191, 36, 0.5);
    border-radius: 50px;
    color: #fbbf24 !important;
    font-weight: 700 !important;
    font-size: 0.88rem;
    text-decoration: none !important;
    backdrop-filter: blur(8px);
    box-shadow: 0 2px 10px rgba(251, 191, 36, 0.2);
    transition: all 0.3s ease !important;
    cursor: pointer;
}
.nav-gold-counter:hover {
    background: rgba(251, 191, 36, 0.25);
    border-color: #fbbf24;
    color: #ffffff !important;
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.4);
}
.cta-button-primary {
  background-color: var(--industrial-orange);
  color: var(--pure-k100);
  font-family: var(--font-technical);
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  border: none;
  transition: background 0.2s ease;
  display: inline-block;
  padding: 0.8rem 1.5rem;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
}
.cta-button-primary:hover {
  background-color: #ff661a;
  transform: translateY(-2px);
}

.btn-instagram {
    background-color: var(--bg-panel-dark);
    color: var(--surgical-white);
    border: 1px solid #232834;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0 1.2rem;
    transition: all 0.3s ease;
}
.btn-instagram:hover {
    transform: translateY(-2px);
    border-color: var(--industrial-orange);
    color: var(--industrial-orange);
}
.btn-instagram svg {
    width: 24px;
    height: 24px;
    fill: currentColor;
}

.btn-large {
    padding: 1rem 2rem;
    font-size: 1.1rem;
}

/* Glassmorphism Classes */
.tool-card {
  background-color: var(--bg-panel-dark);
  border: 1px solid #232834;
  border-left: 3px solid var(--industrial-orange);
  border-radius: 4px; /* Angles droits et industriels */
  padding: 2rem;
  transition: transform 0.3s ease, border-color 0.3s ease;
}
.tool-card:hover {
  border-color: var(--industrial-orange);
  transform: translateY(-5px);
}

/* Navbar */
.navbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 5%;
    background: rgba(13, 15, 18, 0.8);
    backdrop-filter: blur(20px);
    position: sticky;
    top: 0;
    z-index: 100;
    border-bottom: 1px solid var(--glass-border);
}
.logo-container {
    display: flex;
    align-items: center;
    gap: 10px;
}
.logo {
    height: 58px;
}
.brand-name {
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}
.nav-links {
    display: flex;
    align-items: center;
    gap: 1.5rem;
}
.nav-links a {
    color: var(--zinc-gray);
    text-decoration: none;
    font-weight: 600;
    transition: color 0.2s;
    white-space: nowrap;
}
.nav-links a:hover {
    color: var(--surgical-white);
}
.lang-switcher {
    display: flex;
    gap: 10px;
    margin-left: 1rem;
    padding-left: 1rem;
    border-left: 1px solid var(--glass-border);
}
.lang-switcher a {
    font-size: 0.9rem;
    opacity: 0.5;
}
.lang-switcher a.active {
    opacity: 1;
    color: var(--industrial-orange);
}

/* Hero Section */
.hero {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    min-height: 85vh;
    padding: 2rem 5% 4rem 5%;
    gap: 4rem;
    flex-wrap: wrap;
}
.hero-content {
    flex: 1;
    max-width: 600px;
}

@media (max-width: 1600px) {
    .hero {
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 3rem;
        padding-top: 4rem;
    }
    .hero-content {
        max-width: 800px;
    }
}
.badge {
    display: inline-block;
    padding: 0.4rem 1rem;
    background: rgba(0, 229, 255, 0.1);
    color: var(--industrial-orange);
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 229, 255, 0.2);
}
.hero-subtitle {
    font-size: 1.15rem;
    color: var(--zinc-gray);
    margin-bottom: 2.5rem;
}
/* Center hero-subtitle on secondary pages with centered hero headers */
.hero[style*="text-align: center"] .hero-subtitle,
.hero[style*="text-align:center"] .hero-subtitle,
.hero-content[style*="text-align: center"] .hero-subtitle,
.hero-content[style*="text-align:center"] .hero-subtitle {
    margin-left: auto !important;
    margin-right: auto !important;
    text-align: center !important;
}
.hero-actions {
    display: flex;
    gap: 1rem;
}
.hero-image-container {
    flex: 1;
    width: 100%;
    position: relative;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: stretch;
    box-sizing: border-box;
}

/* Real-time Counter Banner above Chat */
.chat-counter-banner {
    width: 100%;
    box-sizing: border-box;
    background: linear-gradient(165deg, rgba(22, 27, 38, 0.95) 0%, rgba(10, 12, 16, 0.98) 100%);
    border: 1px solid rgba(255, 85, 0, 0.35);
    border-radius: 16px;
    padding: 0.65rem 1.1rem;
    margin-bottom: 0.85rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.5), 0 0 20px rgba(255, 85, 0, 0.12);
    backdrop-filter: blur(16px);
}

/* High-Impact Animated Highlight for Dropzone Subtitle */
.dz-subtitle {
    font-size: 1.18rem !important;
    font-weight: 900 !important;
    font-family: 'Outfit', 'Inter', sans-serif !important;
    color: #ff5500 !important;
    margin: 0.6rem 0 !important;
    display: inline-block;
    background: linear-gradient(135deg, #ff9944 0%, #ff5500 50%, #fbbf24 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    filter: drop-shadow(0 2px 12px rgba(255, 85, 0, 0.5));
    animation: dzPulseGlow 2.4s infinite ease-in-out;
    letter-spacing: 0.01em;
}

@keyframes dzPulseGlow {
    0%, 100% {
        transform: scale(1);
        filter: drop-shadow(0 2px 10px rgba(255, 85, 0, 0.5));
    }
    50% {
        transform: scale(1.04);
        filter: drop-shadow(0 4px 20px rgba(255, 85, 0, 0.9));
    }
}

.live-counter-pulse {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: #4ade80;
    box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6);
    animation: livePulse 1.8s infinite ease-in-out;
    display: inline-block;
    flex-shrink: 0;
}

@keyframes livePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(74, 222, 128, 0.6); transform: scale(1); }
    50% { box-shadow: 0 0 0 6px rgba(74, 222, 128, 0); transform: scale(1.15); }
}

.live-counter-tag {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #0c0d10 !important;
    font-size: 0.78rem;
    font-weight: 900;
    padding: 0.35rem 0.8rem;
    border-radius: 50px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    box-shadow: 0 4px 14px rgba(251, 191, 36, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    border: none;
}

/* Chat Suggestion Chips */
.chat-chips-container {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.6rem;
    animation: fadeInSlideUp 0.35s ease forwards;
}

.chat-chip {
    background: rgba(255, 85, 0, 0.1);
    border: 1px solid rgba(255, 85, 0, 0.35);
    border-radius: 50px;
    color: #f1f5f9;
    padding: 0.45rem 0.95rem;
    font-size: 0.82rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-family: 'Outfit', 'Inter', sans-serif;
}

.chat-chip:hover {
    background: rgba(255, 85, 0, 0.25);
    border-color: var(--industrial-orange);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 4px 14px rgba(255, 85, 0, 0.4);
}

/* Scroll Indicator Banner in Hero - Style Outils Premium Preptika */
.hero-scroll-wrapper {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 1rem;
    position: relative;
    z-index: 5;
}

.hero-scroll-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 0.9rem 1.4rem;
    background: linear-gradient(135deg, rgba(30, 20, 15, 0.96) 0%, rgba(18, 20, 26, 0.98) 100%);
    border: 1px solid rgba(255, 85, 0, 0.45);
    border-radius: 20px;
    color: #ffffff;
    text-decoration: none;
    backdrop-filter: blur(16px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.6), 0 0 25px rgba(255, 85, 0, 0.18), inset 0 1px 0 rgba(255, 255, 255, 0.15);
    transition: all 0.35s cubic-bezier(0.34, 1.56, 0.64, 1);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.hero-scroll-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 85, 0, 0.25), transparent);
    transform: skewX(-25deg);
    animation: shimmerSweep 3.5s infinite ease-in-out;
}

.hero-scroll-btn:hover {
    transform: translateY(-4px) scale(1.01);
    background: linear-gradient(135deg, rgba(45, 25, 18, 0.98) 0%, rgba(24, 27, 35, 0.99) 100%);
    border-color: var(--industrial-orange);
    box-shadow: 0 16px 45px rgba(255, 85, 0, 0.45), 0 0 35px rgba(255, 85, 0, 0.3), inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.scroll-btn-left {
    display: flex;
    align-items: center;
    gap: 0.85rem;
}

.scroll-badge-fun {
    background: linear-gradient(135deg, #fbbf24 0%, #f59e0b 100%);
    color: #0c0d10;
    font-size: 0.78rem;
    font-weight: 900;
    padding: 0.35rem 0.8rem;
    border-radius: 50px;
    letter-spacing: 0.03em;
    text-transform: uppercase;
    box-shadow: 0 4px 14px rgba(251, 191, 36, 0.35);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.scroll-text-fun {
    font-family: 'Outfit', 'Inter', sans-serif;
    font-size: 0.98rem;
    font-weight: 800;
    color: #ffffff;
    letter-spacing: 0.01em;
    text-shadow: 0 2px 6px rgba(0, 0, 0, 0.5);
}

.scroll-arrow-fun {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--industrial-orange) 0%, #ff7733 100%);
    border: 1px solid rgba(255, 255, 255, 0.3);
    color: #ffffff;
    transition: all 0.3s ease;
    animation: superBounce 1.8s infinite ease-in-out;
    box-shadow: 0 4px 14px rgba(255, 85, 0, 0.5);
    flex-shrink: 0;
}

.hero-scroll-btn:hover .scroll-arrow-fun {
    background: linear-gradient(135deg, #ff7733 0%, #ff5500 100%);
    box-shadow: 0 6px 20px rgba(255, 85, 0, 0.7);
    transform: scale(1.15);
    animation-play-state: paused;
}

@keyframes shimmerSweep {
    0% { left: -100%; }
    30%, 100% { left: 200%; }
}

@keyframes superBounce {
    0%, 20%, 50%, 80%, 100% {
        transform: translateY(0);
    }
    40% {
        transform: translateY(7px);
    }
    60% {
        transform: translateY(3px);
    }
}


/* Features Section */
.features-section {
    padding: 5rem 5%;
}
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem auto;
}
.section-header p {
    color: var(--zinc-gray);
    font-size: 1.1rem;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}
.feature-icon {
    height: 60px;
    margin-bottom: 1.5rem;
}
.icon-placeholder {
    width: 60px;
    height: 60px;
    border-radius: 12px;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, rgba(255,255,255,0.1), rgba(255,255,255,0.05));
    border: 1px solid var(--glass-border);
}
.feature-card h3 {
    margin-bottom: 1rem;
}
.feature-card p {
    color: var(--zinc-gray);
    font-size: 0.95rem;
}

/* Batch Section */
.batch-section {
    padding: 5rem 5%;
    display: flex;
    justify-content: center;
}
.batch-content {
    max-width: 900px;
    text-align: center;
    background: linear-gradient(135deg, rgba(20,25,30,0.6), rgba(10,12,15,0.8));
}
.batch-content h2 {
    margin-bottom: 1.5rem;
}
.batch-content p {
    color: var(--zinc-gray);
    margin-bottom: 2rem;
    font-size: 1.1rem;
}
.check-list {
    display: flex;
    justify-content: center;
    gap: 2rem;
    list-style: none;
}
.check-list li {
    font-weight: 600;
}
.check-list li::before {
    content: "✓";
    color: var(--industrial-orange);
    margin-right: 8px;
    font-weight: bold;
}

/* Apps / Pricing Section */
.apps-section {
    padding: 5rem 5%;
}
.apps-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    max-width: 1100px;
    margin: 0 auto;
}
.app-card {
    position: relative;
    display: flex;
    flex-direction: column;
    text-align: center;
}
.pro-card {
    background: linear-gradient(145deg, rgba(20,25,30,0.8), rgba(0,229,255,0.05));
    border: 1px solid rgba(0,229,255,0.2);
    transform: scale(1.05);
}
.pro-card:hover {
    border-color: rgba(0,229,255,0.5);
    transform: scale(1.05) translateY(-5px);
}
.badge-lite, .badge-pro {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    padding: 0.3rem 1rem;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 800;
}
.badge-lite {
    background: #333;
    color: #fff;
}
.badge-pro {
    background: linear-gradient(135deg, var(--industrial-orange), #2a1208);
    color: #fff;
    box-shadow: 0 4px 10px rgba(0,229,255,0.3);
}
.app-card h3 {
    font-size: 1.8rem;
    margin: 1.5rem 0 1rem;
}
.app-card p {
    color: var(--zinc-gray);
    flex-grow: 1;
    margin-bottom: 2rem;
}
.price {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: var(--surgical-white);
}
.store-btn {
    width: 100%;
}

/* Footer */
footer {
    padding: 4rem 5% 2rem 5%;
    border-top: 1px solid var(--glass-border);
    margin-top: 5rem;
}
.footer-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 1.5rem;
    font-weight: 900;
    font-family: 'Outfit', sans-serif;
}
.logo-small {
    height: 36px;
    filter: grayscale(100%);
    opacity: 0.7;
}
.footer-links {
    display: flex;
    gap: 2rem;
}
.footer-links a {
    color: var(--zinc-gray);
    text-decoration: none;
    font-size: 0.9rem;
}
.footer-links a:hover {
    color: var(--surgical-white);
}
.copyright {
    color: rgba(255,255,255,0.3);
    font-size: 0.8rem;
}

/* Responsive */
.hamburger {
    display: none;
    background: none;
    border: none;
    color: var(--surgical-white);
    cursor: pointer;
    margin-left: auto;
}

@media (max-width: 1450px) {
    body .navbar .hamburger {
        display: block !important;
    }
    
    body .navbar .nav-links {
        position: absolute !important;
        top: 100% !important;
        left: 0 !important;
        right: 0 !important;
        background: rgba(13, 15, 18, 0.98) !important;
        backdrop-filter: blur(20px) !important;
        -webkit-backdrop-filter: blur(20px) !important;
        flex-direction: column !important;
        align-items: stretch !important;
        gap: 0 !important;
        padding: 0 0 1rem 0 !important;
        border-bottom: 1px solid var(--glass-border) !important;
        box-shadow: 0 20px 40px rgba(0,0,0,0.8) !important;
        
        opacity: 0 !important;
        visibility: hidden !important;
        transform: translateY(-20px) !important;
        transition: all 0.3s ease !important;
        display: flex !important;
    }
    
    body .navbar .nav-links.mobile-active {
        opacity: 1 !important;
        visibility: visible !important;
        transform: translateY(0) !important;
    }
    
    body .navbar .nav-links > a:not(.btn) {
        display: block !important;
        padding: 1rem 2rem !important;
        text-align: center !important;
        font-size: 1.1rem !important;
        border-bottom: 1px solid rgba(255,255,255,0.05) !important;
    }
    
    body .navbar .nav-links > .btn {
        margin: 1.5rem auto 1rem auto !important;
        display: block !important;
        width: max-content !important;
    }

    .lang-switcher {
        margin: 0 auto;
        padding: 1rem;
        border-left: none;
        justify-content: center;
    }
    
    body .navbar #navbar-auth-portal {
        display: flex !important;
        justify-content: center !important;
        align-items: center !important;
        margin: 1rem auto !important;
        width: 100% !important;
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding-top: 4rem;
    }
    .hero-actions {
        justify-content: center;
    }

    .check-list {
        flex-direction: column;
        gap: 1rem;
    }
}

@media (max-width: 768px) {
    h1 { font-size: 2.5rem; }
    h2 { font-size: 2rem; }
}

/* Comparison Table */
.comparison-section {
    padding: 5rem 5%;
}
.comparison-table-wrapper {
    max-width: 900px;
    margin: 0 auto;
    overflow-x: auto;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.5);
}
.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--glass-bg);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid var(--glass-border);
}
.comparison-table th,
.comparison-table td {
    padding: 1.5rem;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}
.comparison-table th {
    background: rgba(0, 0, 0, 0.3);
    font-size: 1.1rem;
    font-family: 'Outfit', sans-serif;
    font-weight: 700;
}
.comparison-table th:first-child,
.comparison-table td:first-child {
    text-align: left;
    font-weight: 600;
    color: var(--surgical-white);
}
.comparison-table tr:last-child td {
    border-bottom: none;
}
.comparison-table .check {
    color: #10b981;
    font-size: 1.5rem;
}
.comparison-table .cross {
    color: var(--zinc-gray);
    font-size: 1.2rem;
    opacity: 0.3;
}
.badge-table-app {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    background: linear-gradient(135deg, var(--industrial-orange), #2a1208);
    color: white;
    margin-left: 8px;
    vertical-align: middle;
    text-transform: uppercase;
}
.badge-table-web {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 12px;
    font-size: 0.7rem;
    background: linear-gradient(90deg, #f59e0b, #d97706);
    color: white;
    margin-left: 8px;
    vertical-align: middle;
    text-transform: uppercase;
}

/* FAQ Header */
.faq-header {
    padding-top: 5rem;
    padding-bottom: 1rem;
    text-align: center;
    display: flex;
    justify-content: center;
    position: relative;
    z-index: 1;
}
.faq-header .hero-content {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* FAQ Section */
.faq-container {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
    counter-reset: faq-counter;
}
.faq-item {
    background: rgba(21, 24, 31, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-left: 3px solid transparent;
    border-radius: 4px;
    padding: 0;
    overflow: hidden;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    counter-increment: faq-counter;
}
.faq-item:hover {
    border-color: rgba(255, 85, 0, 0.3);
    background: rgba(21, 24, 31, 0.85);
}
.faq-item.active {
    border-color: rgba(255, 85, 0, 0.5);
    border-left-color: var(--industrial-orange);
    background: rgba(21, 24, 31, 0.95);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.4), 0 0 15px rgba(255, 85, 0, 0.05);
}
.faq-question {
    width: 100%;
    text-align: left;
    background: none;
    border: none;
    color: var(--surgical-white);
    font-size: 1rem;
    font-weight: 600;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-family: var(--font-interface);
    transition: color 0.2s ease;
}
.faq-question span:first-child {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.faq-question span:first-child::before {
    content: "FAQ-" counter(faq-counter, decimal-leading-zero);
    font-family: var(--font-technical);
    font-size: 0.75rem;
    color: var(--industrial-orange);
    background: rgba(255, 85, 0, 0.1);
    padding: 2px 6px;
    border-radius: 3px;
    font-weight: 700;
    letter-spacing: 0.05em;
    flex-shrink: 0;
}
.faq-question:hover {
    color: var(--industrial-orange);
}
.faq-question .icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    border-radius: 4px;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    transition: all 0.3s ease;
    font-size: 0.7rem;
    color: var(--zinc-gray);
}
.faq-item:hover .icon {
    border-color: rgba(255, 85, 0, 0.3);
    color: var(--industrial-orange);
}
.faq-item.active .faq-question .icon {
    background: var(--industrial-orange);
    border-color: var(--industrial-orange);
    color: var(--bg-matte-black);
    transform: rotate(180deg);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1), padding 0.3s ease;
    background: rgba(0, 0, 0, 0.15);
    padding: 0 1.5rem;
}
.faq-item.active .faq-answer {
    max-height: 400px;
    padding-top: 1.25rem;
    padding-bottom: 1.25rem;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}
.faq-answer p {
    color: var(--zinc-gray);
    font-size: 0.92rem;
    line-height: 1.6;
    margin: 0;
}

/* Hero Dropzone */
.hero-dropzone {
    background: var(--bg-panel-dark);
    border: 2px dashed var(--zinc-gray);
    border-radius: 8px;
    padding: 2rem;
    text-align: center;
    position: relative;
    cursor: pointer;
    transition: all 0.3s ease;
    margin: 2rem 0;
}
.hero-dropzone:hover {
    border-color: var(--industrial-orange);
    background: rgba(255, 85, 0, 0.05);
}
.hero-dropzone .dz-icon {
    width: 48px;
    height: 48px;
    stroke: var(--industrial-orange);
    margin-bottom: 1rem;
}
.hero-dropzone .dz-title {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--surgical-white);
    margin-bottom: 0.5rem;
}
.hero-dropzone .dz-subtitle {
    color: var(--zinc-gray);
    font-size: 0.9rem;
    margin-bottom: 0.5rem;
}
.hero-dropzone .dz-bonus {
    color: var(--industrial-orange);
    font-size: 0.85rem;
    font-weight: 600;
    font-family: var(--font-technical);
}
.hero-dropzone input[type='file'] {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    opacity: 0;
    cursor: pointer;
}


.hero {
    position: relative;
}
.forge-crosshair {
    position: absolute;
    right: -5%;
    top: 50%;
    transform: translateY(-50%);
    height: 120%;
    max-height: 900px;
    opacity: 0.85;
    mix-blend-mode: screen;
    z-index: 0;
    pointer-events: none;
    animation: pulse-fire 4s infinite alternate;
}

@keyframes pulse-fire {
    0% { opacity: 0.7; filter: brightness(0.9); }
    100% { opacity: 1; filter: brightness(1.2); }
}

@media (max-width: 968px) {
    .forge-crosshair {
        height: 80%;
        right: -20%;
        top: 20%;
        transform: translateY(0);
        opacity: 0.4;
    }
}

/* Hide SaaS home header on root landing pages */
#root .saas-home-header {
    display: none;
}

/* --- Animated Stats Box (Hero) --- */
.preptika-hyper-bench { 
    background-color: var(--panel-dark); 
    border: 2px solid var(--border-color); 
    width: 100%;
    max-width: 900px; 
    margin: auto; 
    box-shadow: 0 30px 60px rgba(0,0,0,0.7); 
    border-radius: 6px; 
    display: grid;
    grid-template-columns: 1fr 1.3fr;
    overflow: hidden;
    font-family: var(--font-technical);
}

@media (max-width: 768px) {
    .preptika-hyper-bench { grid-template-columns: 1fr; }
}

/* --- ZONE GAUCHE : L'IMPACT FINANCIER MASSIIF --- */
.hud-profit-zone {
    background-color: #171a24;
    border-right: 2px solid var(--border-color);
    padding: 35px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    position: relative;
}

.hud-header { margin-bottom: 25px; }
.pulse-tag {
    font-size: 0.75rem;
    font-weight: bold;
    color: var(--industrial-orange);
    letter-spacing: 1px;
    background: rgba(255, 85, 0, 0.08);
    padding: 4px 8px;
    border: 1px solid rgba(255, 85, 0, 0.2);
}

.counter-box { margin-bottom: 30px; }
.hud-label { font-size: 0.75rem; color: var(--zinc-gray); letter-spacing: 0.5px; display: block; margin-bottom: 5px; }
.hud-label-orange { font-size: 0.75rem; color: var(--industrial-orange); font-weight: bold; letter-spacing: 0.5px; display: block; margin-bottom: 5px; }

/* LES CHIFFRES GÉANTS */
.hud-value { font-size: 3.4rem; font-weight: 900; letter-spacing: -1px; display: block; line-height: 1; }
.hud-value small { font-size: 1.2rem; color: var(--zinc-gray); margin-left: 5px; }

/* EFFET DE GLOW ET REVELATION */
.time-glow { color: #ffffff; opacity: 0; animation: revealStat 5s infinite; }
.cash-glow { 
    color: var(--industrial-orange); 
    text-shadow: 0 0 20px rgba(255, 85, 0, 0.5); 
    opacity: 0;
    animation: revealStat 5s infinite;
    animation-delay: 0.2s;
}

.hud-meta { font-size: 0.7rem; color: var(--zinc-gray); margin-top: auto; }

/* --- ZONE DROITE : LES JAUGES --- */
.hud-graph-zone { padding: 35px; display: flex; flex-direction: column; justify-content: center; }
.graph-title { font-size: 0.8rem; font-weight: bold; color: #e4e7ed; letter-spacing: 0.5px; margin-bottom: 25px; }

.graph-row { margin-bottom: 20px; }
.meta-line { display: flex; justify-content: space-between; font-size: 0.75rem; color: var(--zinc-gray); margin-bottom: 6px; }
.meta-line.highlight { color: #e4e7ed; font-weight: bold; }
.orange-text { color: var(--industrial-orange); }
.red-text { color: #ff3333; font-weight: bold; }

.track { background: rgba(255,255,255,0.01); border: 1px solid var(--border-color); height: 30px; position: relative; display: flex; align-items: center; padding: 0 10px; }
.preptika-track { border-color: rgba(255, 85, 0, 0.2); background: rgba(255, 85, 0, 0.02); }
.fill { height: 100%; position: absolute; left: 0; top: 0; }

.fill-old { background: linear-gradient(90deg, #1f232d 0%, #3a1a16 100%); animation: fOld 5s linear infinite; }
.fill-suite { background: linear-gradient(90deg, #1f232d 0%, #242933 100%); animation: fSuite 5s linear infinite; }
.fill-preptika { background: linear-gradient(90deg, rgba(255,85,0,0.2) 0%, var(--industrial-orange) 100%); box-shadow: 0 0 15px rgba(255, 85, 0, 0.4); animation: fPrep 5s cubic-bezier(0.05, 0.9, 0.1, 1) infinite; }

.track-text { position: relative; z-index: 2; font-size: 0.75rem; font-weight: bold; margin-left: auto; color: #e4e7ed; }
.orange-badge { color: #0c0d10; background-color: var(--industrial-orange); padding: 2px 5px; border-radius: 1px; }

.efficiency-multiplier { margin-top: 15px; border-top: 1px dashed var(--border-color); padding-top: 20px; font-size: 0.75rem; color: var(--zinc-gray); }
.efficiency-multiplier span { color: var(--industrial-orange); font-weight: bold; }

/* --- TIMINGS SYNCHRONISÉS (BOUCLE 5s) --- */
@keyframes fOld { 0%, 12% { width: 0%; } 60%, 100% { width: 100%; } }
@keyframes fSuite { 0%, 12% { width: 0%; } 45%, 100% { width: 40%; } }
@keyframes fPrep { 0%, 12% { width: 0%; } 15%, 100% { width: 3%; } }

/* Apparition type flash d'alarme sur les gros compteurs dès que Preptika a fini */
@keyframes revealStat {
0%, 14% { opacity: 0; transform: scale(0.98); filter: blur(3px); }
18% { opacity: 1; transform: scale(1.02); filter: blur(0); }
20%, 100% { opacity: 1; transform: scale(1); filter: blur(0); }
}

/* Pricing Modal Styles */
.pricing-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(8, 9, 12, 0.85);
    backdrop-filter: blur(12px);
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 10000;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.4s cubic-bezier(0.16, 1, 0.3, 1), visibility 0.4s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.pricing-modal {
    background: linear-gradient(145deg, #15181f 0%, #0d0f12 100%);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 24px;
    padding: 3.5rem 2.5rem 2.5rem 2.5rem;
    max-width: 760px;
    width: 90%;
    position: relative;
    box-shadow: 0 30px 70px rgba(0, 0, 0, 0.8), 
                inset 0 1px 0 rgba(255, 255, 255, 0.1),
                0 0 40px rgba(255, 85, 0, 0.03);
    transform: translateY(30px) scale(0.95);
    transition: transform 0.5s cubic-bezier(0.16, 1, 0.3, 1);
    overflow: hidden;
}

.pricing-modal::before {
    content: "";
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 300px;
    height: 150px;
    background: radial-gradient(circle, rgba(255, 85, 0, 0.12) 0%, rgba(255, 85, 0, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.pricing-modal-overlay.active .pricing-modal {
    transform: translateY(0) scale(1);
}

.pricing-modal-close {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    color: var(--zinc-gray);
    width: 36px;
    height: 36px;
    border-radius: 50%;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.4rem;
    cursor: pointer;
    transition: all 0.2s ease;
    line-height: 1;
    z-index: 2;
}

.pricing-modal-close:hover {
    color: var(--surgical-white);
    background: rgba(255, 255, 255, 0.08);
    border-color: rgba(255, 255, 255, 0.15);
    transform: rotate(90deg);
}

.pricing-modal-title {
    position: relative;
    z-index: 1;
    text-align: center;
    margin-bottom: 2.5rem;
    font-size: 2rem;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 2px;
    background: linear-gradient(135deg, #ffffff 50%, #7d8595 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.pricing-modal-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 680px) {
    .pricing-modal-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .pricing-modal {
        padding: 2.5rem 1.5rem 1.5rem 1.5rem;
    }
}

.pricing-modal-card {
    background: rgba(255, 255, 255, 0.015);
    border: 1px solid rgba(255, 255, 255, 0.06);
    border-radius: 20px;
    padding: 2.5rem 2rem 2rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    position: relative;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.pricing-modal-card:hover {
    border-color: rgba(255, 255, 255, 0.15);
    transform: translateY(-4px);
    background: rgba(255, 255, 255, 0.03);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.2);
}

.pricing-modal-card.popular {
    border-color: rgba(255, 85, 0, 0.45);
    background: linear-gradient(180deg, rgba(255, 85, 0, 0.04) 0%, rgba(255, 85, 0, 0.01) 100%);
    box-shadow: 0 15px 35px rgba(255, 85, 0, 0.05),
                inset 0 1px 0 rgba(255, 85, 0, 0.15);
}

.pricing-modal-card.popular:hover {
    border-color: rgba(255, 85, 0, 0.85);
    transform: translateY(-6px);
    box-shadow: 0 20px 40px rgba(255, 85, 0, 0.12),
                inset 0 1px 0 rgba(255, 85, 0, 0.25);
}

.pricing-modal-card.popular::before {
    content: "";
    position: absolute;
    top: -10%;
    left: 50%;
    transform: translateX(-50%);
    width: 80%;
    height: 40%;
    background: radial-gradient(circle, rgba(255, 85, 0, 0.1) 0%, rgba(255, 85, 0, 0) 75%);
    pointer-events: none;
    border-radius: 50%;
}

.pricing-badge {
    position: absolute;
    top: -14px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #ff5500 0%, #ff8833 100%);
    color: #fff;
    font-size: 0.75rem;
    font-weight: 900;
    letter-spacing: 1px;
    padding: 4px 14px;
    border-radius: 20px;
    text-transform: uppercase;
    box-shadow: 0 4px 12px rgba(255, 85, 0, 0.35);
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.pricing-card-name {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--zinc-gray);
    letter-spacing: 0.5px;
    transition: color 0.3s;
}

.pricing-modal-card:hover .pricing-card-name {
    color: var(--surgical-white);
}

.pricing-modal-card.popular .pricing-card-name {
    color: var(--surgical-white);
}

.pricing-card-price {
    font-size: 3.2rem;
    font-weight: 900;
    color: var(--surgical-white);
    margin: 0.5rem 0;
    letter-spacing: -1px;
    line-height: 1;
}

.pricing-modal-card.popular .pricing-card-price {
    color: #fff;
    text-shadow: 0 0 20px rgba(255, 255, 255, 0.1);
}

.pricing-card-tokens {
    font-size: 1.25rem;
    font-family: var(--font-technical);
    color: var(--industrial-orange);
    margin-bottom: 0.2rem;
    font-weight: 800;
}

.pricing-modal-card.popular .pricing-card-tokens {
    color: #ff7733;
    text-shadow: 0 0 10px rgba(255, 85, 0, 0.2);
}

.pricing-card-per-token {
    font-size: 0.85rem;
    color: var(--zinc-gray);
    margin-bottom: 1.5rem;
}

.pricing-card-desc {
    font-size: 0.95rem;
    color: #94a3b8;
    line-height: 1.5;
    margin-bottom: 2rem;
    margin-top: auto;
    min-height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Premium Action Buttons */
.pricing-card-btn {
    width: 100%;
    padding: 0.9rem 1.5rem;
    border-radius: 12px;
    font-size: 0.95rem;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    border: none;
    outline: none;
    text-decoration: none;
    display: inline-block;
    box-sizing: border-box;
}

.pricing-card-btn.rescue-btn {
    background: rgba(255, 255, 255, 0.05);
    color: var(--surgical-white);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card-btn.rescue-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.pricing-card-btn.std-btn {
    background: linear-gradient(90deg, #ff5500 0%, #ff7733 100%);
    color: #fff;
    box-shadow: 0 6px 20px rgba(255, 85, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.pricing-card-btn.std-btn:hover {
    background: linear-gradient(90deg, #ff661a 0%, #ff8844 100%);
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(255, 85, 0, 0.4);
}

.pricing-card-btn:active {
    transform: translateY(0);
}

.pricing-card-desc {
    font-size: 0.9rem;
    color: var(--zinc-gray);
    line-height: 1.4;
    margin-top: auto;
}

/* Promo Banner Design (Newsletter Checklist) */
.promo-banner {
    background: linear-gradient(135deg, var(--bg-panel-dark) 0%, #0d0f12 100%);
    color: var(--surgical-white);
    border-radius: 15px;
    padding: 40px;
    text-align: center;
    margin: 0 auto;
    max-width: 800px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.7);
    border: 2px solid rgba(255, 85, 0, 0.25);
    position: relative;
    overflow: hidden;
}

.promo-banner h2 {
    font-size: 2.2rem;
    margin-bottom: 15px;
    color: var(--surgical-white);
}

.promo-banner p {
    color: var(--zinc-gray) !important;
    font-size: 1.1rem;
    margin-bottom: 30px;
    line-height: 1.5;
}

.promo-banner input[type="email"] {
    border: 1px solid rgba(255, 255, 255, 0.1) !important;
    background: rgba(12, 13, 16, 0.6) !important;
    color: var(--surgical-white) !important;
    transition: all 0.3s ease !important;
}

.promo-banner input[type="email"]:focus {
    border-color: var(--industrial-orange) !important;
    box-shadow: 0 0 10px rgba(255, 85, 0, 0.2) !important;
}

.promo-banner .btn-yellow, .promo-banner .cta-button-primary {
    background-color: var(--industrial-orange) !important;
    color: var(--pure-k100) !important;
    border: none !important;
    box-shadow: 0 4px 15px rgba(255, 85, 0, 0.3) !important;
    transition: all 0.3s ease !important;
}

.promo-banner .btn-yellow:hover, .promo-banner .cta-button-primary:hover {
    background-color: #ff661a !important;
    box-shadow: 0 6px 20px rgba(255, 85, 0, 0.5) !important;
    transform: translateY(-2px) !important;
}

/* Pricing Modal Styles */
.pricing-modal-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(13, 15, 18, 0.85);
    backdrop-filter: blur(8px);
    z-index: 9999;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity 0.3s ease, visibility 0.3s ease;
}

.pricing-modal-overlay.active {
    opacity: 1;
    visibility: visible;
}

.pricing-modal {
    background: var(--bg-panel-dark);
    border: 1px solid rgba(255, 102, 26, 0.2);
    border-radius: 20px;
    padding: 2.5rem;
    max-width: 800px;
    width: 90%;
    position: relative;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5), 0 0 40px rgba(255, 102, 26, 0.1);
    transform: translateY(20px) scale(0.95);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.pricing-modal-overlay.active .pricing-modal {
    transform: translateY(0) scale(1);
}

.pricing-modal-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--zinc-gray);
    font-size: 2rem;
    cursor: pointer;
    line-height: 1;
    transition: color 0.2s;
}

.pricing-modal-close:hover {
    color: var(--surgical-white);
}

.pricing-modal-title {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 2rem;
    color: var(--surgical-white);
}

.pricing-modal-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
}

@media (max-width: 768px) {
    .pricing-modal-grid {
        grid-template-columns: 1fr;
    }
}

.pricing-modal-card {
    background: rgba(21, 24, 31, 0.6);
    border: 1px solid rgba(125, 133, 149, 0.2);
    border-radius: 16px;
    padding: 2rem;
    text-align: center;
    position: relative;
    z-index: 1;
    transition: transform 0.3s, border-color 0.3s;
}

.pricing-modal-card:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 102, 26, 0.4);
}

.pricing-modal-card.popular {
    border-color: var(--industrial-orange);
    background: linear-gradient(180deg, rgba(255, 102, 26, 0.05) 0%, rgba(21, 24, 31, 0.8) 100%);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: #15181f !important;
    border: 1.5px solid var(--industrial-orange) !important;
    color: #fff;
    padding: 4px 12px;
    border-radius: 20px;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
    z-index: 99 !important;
}

.pricing-card-name {
    font-size: 1.2rem;
    color: var(--zinc-gray);
    margin-bottom: 1rem;
    font-weight: 600;
}

.pricing-card-price {
    font-size: 3rem;
    font-weight: 800;
    color: var(--surgical-white);
    margin-bottom: 0.5rem;
}

.pricing-card-tokens {
    font-size: 1.1rem;
    color: var(--industrial-orange);
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.pricing-card-per-token {
    font-size: 0.9rem;
    color: var(--zinc-gray);
    margin-bottom: 1.5rem;
}

.pricing-card-desc {
    font-size: 0.9rem;
    color: #94a3b8;
    line-height: 1.5;
}

/* Accordion / Collapsible list for Extensions */
.extensions-accordion {
    max-width: 800px;
    margin: 40px auto;
    display: flex;
    flex-direction: column;
    gap: 15px;
    padding: 0 20px;
}

.accordion-item {
    background: rgba(21, 24, 31, 0.6);
    border: 1px solid rgba(125, 133, 149, 0.2);
    border-radius: 8px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.accordion-item:hover {
    border-color: rgba(255, 85, 0, 0.4);
    box-shadow: 0 4px 15px rgba(255, 85, 0, 0.05);
}

.accordion-item.active {
    border-color: var(--industrial-orange);
    background: rgba(21, 24, 31, 0.85);
}

.accordion-header {
    padding: 18px 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    user-select: none;
    gap: 15px;
}

.accordion-title {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--surgical-white);
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 4px;
}

.accordion-role {
    font-size: 0.9rem;
    color: var(--zinc-gray);
    font-weight: 400;
}

.accordion-arrow {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: transform 0.3s ease;
    flex-shrink: 0;
}

.accordion-arrow svg {
    fill: var(--zinc-gray);
    transition: fill 0.3s ease;
}

.accordion-item.active .accordion-arrow {
    transform: rotate(180deg);
}

.accordion-item.active .accordion-arrow svg {
    fill: var(--industrial-orange);
}

.accordion-content {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease-out, padding 0.3s ease;
    padding: 0 24px;
}

.accordion-item.active .accordion-content {
    padding-bottom: 24px;
}

.accordion-description {
    font-size: 0.95rem;
    color: #cbd5e1;
    line-height: 1.6;
    border-top: 1px solid rgba(125, 133, 149, 0.1);
    padding-top: 15px;
}

/* Ensure hero subtitles are centered across all pages */
.hero-subtitle {
    text-align: center !important;
}

/* Ensure hero titles are centered across all pages */
.hero-title {
    text-align: center !important;
}

/* Background artwork for empty sides (grim dark printing press style) */
.grimdark-bg-artwork {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background-image: url('assets/images/grimdark_press_bg.png');
    background-size: cover;
    background-position: center;
    opacity: 0.08; /* Subtile opacity so it doesn't disturb content */
    mix-blend-mode: luminosity; /* Blends nicely with the dark matte theme */
    pointer-events: none; /* Make sure it doesn't block clicks */
    z-index: -1;
    mask-image: linear-gradient(to left, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
}

@media (max-width: 1024px) {
    .grimdark-bg-artwork {
        width: 100%;
        opacity: 0.04;
        mask-image: linear-gradient(to top, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 100%);
        -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 100%);
    }
}

/* Hero page background artwork (Option B: Dynamic Press) */
.hero-bg-artwork {
    position: absolute;
    top: 0;
    right: 0;
    width: 55%;
    height: 100%;
    background-image: url('assets/images/hero_press_dynamic.png');
    background-size: cover;
    background-position: center right;
    opacity: 0.07; /* Very subtle and clean */
    mix-blend-mode: luminosity;
    pointer-events: none;
    z-index: 0;
    mask-image: linear-gradient(to left, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
}

.hero-content, .hero-image-container {
    position: relative;
    z-index: 1;
}

@media (max-width: 1600px) {
    .hero-bg-artwork {
        width: 100%;
        opacity: 0.04;
        mask-image: linear-gradient(to top, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
        -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,1) 40%, rgba(0,0,0,0) 100%);
    }
}

/* About page background artwork (Option B: CMYK Rollers) */
.about-bg-artwork {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background-image: url('assets/images/about_cmyk_rollers.png');
    background-size: cover;
    background-position: center;
    opacity: 0.08; /* Subtile opacity */
    mix-blend-mode: luminosity;
    pointer-events: none;
    z-index: -1;
    mask-image: linear-gradient(to left, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
}

@media (max-width: 1024px) {
    .about-bg-artwork {
        width: 100%;
        opacity: 0.04;
        mask-image: linear-gradient(to top, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 100%);
        -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 100%);
    }
}

/* Tools page background artwork (Option A: Ink Spectrometry) */
.tools-bg-artwork {
    position: fixed;
    bottom: 0;
    right: 0;
    width: 45%;
    height: 100%;
    background-image: url('assets/images/lab_ink_spectrometry.png');
    background-size: cover;
    background-position: center;
    opacity: 0.08; /* Subtile opacity */
    mix-blend-mode: luminosity;
    pointer-events: none;
    z-index: -1;
    mask-image: linear-gradient(to left, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
    -webkit-mask-image: linear-gradient(to left, rgba(0,0,0,1) 50%, rgba(0,0,0,0) 100%);
}

@media (max-width: 1024px) {
    .tools-bg-artwork {
        width: 100%;
        opacity: 0.04;
        mask-image: linear-gradient(to top, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 100%);
        -webkit-mask-image: linear-gradient(to top, rgba(0,0,0,1) 30%, rgba(0,0,0,0) 100%);
    }
}


