html {
    scrollbar-gutter: stable; /* Force l'espace de la scrollbar partout */
}

:root {
    --bg-dark: #05070a;
    --bg-card: rgba(15, 20, 30, 0.6);
    --accent-cyan: #00f2ff;
    --accent-blue: #0072ff;
    --text-main: #ffffff;
    --text-muted: #94a3b8;
    --glass-border: rgba(255, 255, 255, 0.1);
    --font-heading: 'Rajdhani', sans-serif;
    --font-body: 'Inter', sans-serif;
}

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

body {
    background-color: var(--bg-dark);
    color: var(--text-main);
    font-family: var(--font-body);
    line-height: 1.6;
    overflow-x: hidden;
}

/* Background Elements */
.background-grid {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        linear-gradient(rgba(0, 242, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 242, 255, 0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    z-index: -2;
}

.glow-orb {
    position: fixed;
    top: -20%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(0, 114, 255, 0.15) 0%, transparent 70%);
    z-index: -1;
    filter: blur(50px);
    animation: pulse 10s infinite alternate;
}

@keyframes pulse {
    from { transform: scale(1); opacity: 0.5; }
    to { transform: scale(1.2); opacity: 0.8; }
}

/* Header & Nav */
header {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    background: rgba(2, 6, 23, 0.7);
    backdrop-filter: blur(15px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1.2rem 10%;
    width: 100%;
}

main {
    padding-top: 0; /* Géré par les sections hero pour plus de précision */
}

.logo {
    font-size: 2.2rem;
    font-weight: 800;
    letter-spacing: 2px;
    font-family: 'Montserrat', sans-serif;
    display: flex;
    align-items: center;
    gap: 0;
    text-decoration: none; /* Pas de soulignement */
    color: inherit; /* Garde ses couleurs */
}

.logo-n {
    width: 100px;
    height: 100px;
    filter: drop-shadow(0 0 12px rgba(0, 242, 255, 0.5));
    margin-right: -25px; /* On fusionne encore plus */
}

.nex { color: #ffffff; }
.trade { color: #ffffff; }

.shared-t {
    font-size: 1.6em; /* Encore plus gros */
    font-weight: 900;
    color: #ffffff; /* Tout blanc */
    display: inline-block;
    vertical-align: middle;
    transform: scaleX(1.1); /* On l'élargit un peu */
}

nav ul {
    display: flex;
    list-style: none;
    gap: 2.5rem;
    align-items: center;
}

nav a {
    text-decoration: none;
    color: #b0c4c9; /* Gris acier plus sombre */
    font-weight: 500;
    transition: color 0.3s;
    font-size: 0.95rem;
}

nav a.active {
    color: var(--accent-cyan);
    text-shadow: 0 0 10px rgba(0, 242, 255, 0.5);
}

/* Language Switcher */
.lang-switcher {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    margin-left: 1rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.lang-btn {
    background: none;
    border: none;
    color: var(--text-muted);
    cursor: pointer;
    font-weight: 600;
    transition: color 0.3s;
    padding: 0;
}

.lang-btn:hover, .lang-btn.active {
    color: var(--accent-cyan);
}

/* Buttons */
.btn-primary {
    background: linear-gradient(135deg, var(--accent-blue), var(--accent-cyan));
    color: white;
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
    display: inline-block;
    box-shadow: 0 4px 15px rgba(0, 242, 255, 0.3);
    transition: transform 0.3s, box-shadow 0.3s;
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 242, 255, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    backdrop-filter: blur(5px);
    padding: 0.6rem 1.5rem;
    border-radius: 6px;
}

.btn-outline {
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    padding: 1rem 2rem;
    border-radius: 8px;
    text-decoration: none;
    font-weight: 600;
}

/* Hero Section */
/* Home Page Specific (Zero Scroll) */
.home-page {
    height: 100vh;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.home-page main {
    flex: 1;
    display: flex;
    align-items: center;
}

.home-page .hero {
    min-height: auto;
    height: 100%;
    padding-top: 140px; /* Aligné avec les autres pages */
    width: 100%;
}

.hero {
    min-height: calc(100vh - 120px);
    display: flex;
    align-items: center;
    padding: 140px 10% 80px; /* Base commune */
    gap: 4rem;
    position: relative;
}

.hero-content {
    flex: 1;
}

.badge {
    background: rgba(0, 242, 255, 0.1);
    color: var(--accent-cyan);
    display: inline-block;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(0, 242, 255, 0.2);
}

h1 {
    font-family: var(--font-heading);
    font-size: 4rem;
    line-height: 1.1;
    margin-bottom: 1.5rem;
}

h1 span {
    background: linear-gradient(to right, var(--accent-cyan), var(--accent-blue));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero p {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.hero-actions {
    display: flex;
    gap: 1.5rem;
}

/* Visuals */
.hero-visual {
    flex: 1;
    display: flex;
    justify-content: center;
}

.glass-card {
    background: var(--bg-card);
    backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    width: 450px;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.5);
    overflow: hidden;
}

.hero-image {
    width: 100%;
    height: 300px;
    object-fit: cover;
    border-bottom: 1px solid var(--glass-border);
    opacity: 0.8;
}

.viz-header {
    padding: 1rem;
    border-bottom: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.dot {
    width: 10px;
    height: 10px;
    background: var(--accent-cyan);
    border-radius: 50%;
    box-shadow: 0 0 10px var(--accent-cyan);
}

.viz-title {
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 1px;
    color: var(--text-muted);
}

.viz-body {
    padding: 1.5rem;
}

.data-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 1rem;
}

.label { font-size: 0.8rem; color: var(--text-muted); }
.value { font-weight: 600; }
.cyan { color: var(--accent-cyan); }

/* Hero Sections */
.hero, .hero-small, .hero-sub {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 140px 10% 80px; /* Aligné au pixel près */
    gap: 4rem;
    position: relative;
}

.hero-small, .hero-sub {
    min-height: 50vh;
    text-align: center;
    justify-content: center;
    background: linear-gradient(to bottom, rgba(0, 114, 255, 0.05), transparent);
}

.hero-small h1, .hero-sub h1 {
    font-size: 3.5rem;
}

.guarantee {
    margin-top: 1.5rem;
    font-size: 0.8rem;
    color: var(--text-muted);
    font-style: italic;
}

.section-title {
    text-align: center;
    font-size: 3rem;
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}

.grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    background: var(--bg-card);
    padding: 3rem 2rem;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    transition: all 0.3s;
    position: relative;
}

.feature-card:hover {
    transform: translateY(-10px);
    border-color: var(--accent-cyan);
    box-shadow: 0 15px 35px rgba(0, 242, 255, 0.1);
}

.icon {
    font-size: 2.5rem;
    margin-bottom: 1.5rem;
}

.section-subtitle {
    color: var(--text-muted);
    font-size: 1.1rem;
    max-width: 700px;
    margin: 1rem auto 0;
}

.modules-grid {
    gap: 1.5rem;
}

.module-card {
    background: var(--bg-card);
    padding: 2.5rem 2rem;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    position: relative;
    overflow: hidden;
    transition: all 0.3s;
}

.module-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-5px);
    box-shadow: 0 10px 30px rgba(0, 242, 255, 0.1);
}

.module-num {
    font-family: var(--font-heading);
    font-size: 4rem;
    font-weight: 900;
    position: absolute;
    top: -10px;
    right: -10px;
    opacity: 0.05;
    color: var(--accent-cyan);
}

.module-card h3 {
    color: var(--accent-cyan);
    font-size: 1.25rem;
    margin-bottom: 0.5rem;
}

/* Badges */
.badge-mini {
    background: rgba(0, 242, 255, 0.1);
    color: var(--accent-cyan);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    display: inline-block;
    margin-bottom: 1rem;
    text-transform: uppercase;
    letter-spacing: 1px;
    border: 1px solid rgba(0, 242, 255, 0.2);
}

/* Pricing */
.pricing {
    padding: 100px 10%;
    display: flex;
    justify-content: center;
}

.pricing-card {
    max-width: 500px;
    width: 100%;
    padding: 4rem 3rem;
    text-align: center;
}

.pricing-header h2 {
    font-family: var(--font-heading);
    margin-bottom: 1rem;
}

.price {
    font-size: 4rem;
    font-weight: 900;
    color: var(--accent-cyan);
    font-family: var(--font-heading);
}

.price span {
    font-size: 1rem;
    color: var(--text-muted);
}

.pricing-list {
    list-style: none;
    margin: 2.5rem 0;
    text-align: left;
}

.pricing-list li {
    margin-bottom: 1rem;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.btn-block {
    display: block;
    width: 100%;
    text-align: center;
}

/* Auth Page */
.auth-page {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 100px 5%;
}

.auth-card {
    width: 100%;
    max-width: 450px;
    padding: 3rem;
    text-align: center;
}

.auth-card h2 {
    font-family: var(--font-heading);
    font-size: 2rem;
    margin-bottom: 0.5rem;
}

.auth-card p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}

.form-group {
    text-align: left;
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 0.5rem;
}

.form-group input {
    width: 100%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    padding: 1rem;
    border-radius: 8px;
    color: white;
    font-family: var(--font-body);
    transition: border-color 0.3s;
}

.form-group input:focus {
    outline: none;
    border-color: var(--accent-cyan);
}

.auth-footer {
    margin-top: 2rem;
    font-size: 0.9rem;
}

.auth-footer a {
    color: var(--accent-cyan);
    text-decoration: none;
}

/* --- CATALOG SECTION --- */
.catalog-section {
    padding: 2rem 10% 5rem;
}

.filter-bar {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.filter-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 50px;
    cursor: pointer;
    font-family: var(--font-body);
    font-size: 0.9rem;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    min-width: 140px; /* Taille uniforme */
    text-align: center;
}

.filter-btn:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: var(--accent-cyan);
}

.filter-btn.active {
    background: var(--accent-cyan);
    color: var(--bg-dark);
    font-weight: 600;
    box-shadow: 0 0 20px rgba(0, 242, 255, 0.4);
    border-color: var(--accent-cyan);
}

.filter-legend {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.8rem;
    margin-top: 5rem;
    padding: 2rem 0;
    opacity: 0.5;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.legend-item {
    font-size: 0.8rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--text-muted);
}

.legend-item span.dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dot.addon { background: #a855f7; }      /* Purple */
.dot.indicator { background: var(--accent-cyan); }
.dot.smart { background: var(--accent-orange); }
.dot.strategy { background: #ef4444; }   /* Red */

.product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(300px, 1fr));
    gap: 2.5rem;
}

.product-card {
    background: var(--glass-bg);
    backdrop-filter: blur(15px);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    overflow: hidden;
    transition: transform 0.3s, box-shadow 0.3s;
}

.product-card:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
    border-color: rgba(0, 242, 255, 0.3);
}

.product-thumb {
    height: 200px;
    position: relative;
    overflow: hidden;
}

.product-thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s;
}

.product-card:hover .product-thumb img {
    transform: scale(1.1);
}

.product-badge {
    position: absolute;
    top: 12px;
    right: 12px;
    background: rgba(2, 6, 23, 0.6);
    backdrop-filter: blur(5px);
    padding: 0.3rem 0.6rem;
    border-radius: 4px;
    font-size: 0.6rem; /* Plus petit */
    font-weight: 600;
    letter-spacing: 1.5px; /* Plus espacé */
    text-transform: uppercase;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.product-badge.smart {
    border-color: var(--accent-orange);
    color: var(--accent-orange);
    box-shadow: 0 0 10px rgba(245, 158, 11, 0.3);
}

.product-info {
    padding: 1.5rem;
}

.product-cat {
    font-size: 0.7rem;
    color: var(--accent-cyan);
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 0.5rem;
}

.product-info h3 {
    font-family: var(--font-title);
    font-size: 1.4rem;
    margin-bottom: 0.8rem;
}

.product-info p {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.6;
    margin-bottom: 1.5rem;
    min-height: 3rem;
}

.product-footer {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 1.5rem;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
}

.product-price {
    font-size: 0.85rem;
    font-weight: 400;
    color: var(--text-muted);
    letter-spacing: 0.5px;
}

.btn-mini {
    padding: 0.5rem 1.2rem;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--glass-border);
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-size: 0.85rem;
    transition: all 0.3s;
}

.btn-mini:hover {
    background: var(--accent-cyan);
    color: var(--bg-dark);
    border-color: var(--accent-cyan);
}

footer {
    padding: 1.5rem 10%; /* Padding réduit pour gagner de la place */
    text-align: left;
    color: var(--text-muted);
    font-size: 0.7rem;
    opacity: 0.5;
    border-top: 1px solid var(--glass-border);
}

/* --- RESPONSIVE --- */

@media (max-width: 1024px) {
    h1 { font-size: 3rem; }
    .hero { gap: 2rem; padding: 120px 5% 0; }
    .glass-card { width: 100%; }
}

@media (max-width: 768px) {
    header { padding: 1rem 5%; }
    nav ul { display: none; } /* On pourra ajouter un menu burger plus tard */
    .hero { 
        flex-direction: column; 
        text-align: center; 
        justify-content: center;
        min-height: auto;
        padding-top: 100px;
        padding-bottom: 4rem;
    }
    .hero-actions { justify-content: center; flex-direction: column; }
    h1 { font-size: 2.5rem; }
    .hero-visual { width: 100%; }
    .glass-card { width: 100%; max-width: none; }
    .hero-image { height: 200px; }
}
/* --- PRODUCT PAGE TEMPLATE --- */
.product-hero {
    padding: 140px 10% 80px;
}

.product-hero-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: stretch; /* Force l'alignement sur la hauteur */
}

.back-link {
    display: inline-block;
    color: var(--text-muted);
    text-decoration: none;
    font-size: 0.9rem;
    margin-bottom: 2rem;
    transition: color 0.3s;
}

.back-link:hover {
    color: var(--accent-cyan);
}

.product-title {
    font-size: 2.8rem; /* Plus fin, plus chic */
    letter-spacing: 1px;
    margin-bottom: 1.2rem;
}

.product-lead {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 2.5rem;
    max-width: 600px;
}

.product-highlights {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
}

.h-item {
    display: flex;
    gap: 1rem;
    align-items: flex-start;
}

.h-item i {
    color: var(--accent-cyan);
    font-size: 1.2rem;
    margin-top: 0.3rem;
}

.h-item strong {
    display: block;
    font-size: 1rem;
    margin-bottom: 0.3rem;
}

.h-item span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.product-cta-box {
    display: flex;
    align-items: center;
    justify-content: space-between; /* Aligne les deux éléments aux extrémités */
    gap: 2rem;
    padding: 2rem;
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
}

/* --- PRICING MODAL --- */
.modal-overlay {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.9);
    backdrop-filter: blur(15px);
    z-index: 3000;
    display: none; /* JS Toggle */
    justify-content: center;
    align-items: center;
    padding: 2rem;
}

.modal-overlay.active {
    display: flex;
}

.modal-content {
    width: 100%;
    max-width: 750px; /* Plus compact */
    padding: 2rem 2.5rem; /* Réduit */
    position: relative;
    animation: slideUp 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

@keyframes slideUp {
    from { transform: translateY(30px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

.modal-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 2rem;
}

.modal-header h2 {
    font-family: var(--font-heading);
    font-size: 1.5rem; /* Plus discret */
    letter-spacing: 2px;
    text-transform: uppercase;
}

.close-modal {
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
    opacity: 0.5;
    transition: opacity 0.3s;
}

.close-modal:hover {
    opacity: 1;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.plan-card {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    border-radius: 12px;
    padding: 2.2rem 1.5rem 1.5rem; /* Augmenté en haut pour le badge */
    text-align: center;
    transition: transform 0.3s, border-color 0.3s;
    position: relative;
}

.plan-card:hover {
    border-color: var(--accent-cyan);
    transform: translateY(-5px);
}

.plan-card.featured {
    background: rgba(0, 242, 255, 0.05);
    border-color: var(--accent-cyan);
    box-shadow: 0 0 30px rgba(0, 242, 255, 0.1);
}

.plan-badge {
    position: absolute;
    top: -10px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--accent-cyan);
    color: var(--bg-dark);
    font-size: 0.55rem; /* Plus petit pour le chic */
    font-weight: 800;
    padding: 0.2rem 1.2rem; /* Plus large */
    border-radius: 50px;
    text-transform: uppercase;
    white-space: nowrap; /* Force une seule ligne */
    letter-spacing: 0.5px;
}

.plan-name {
    font-size: 0.85rem;
    font-weight: 600;
    margin-bottom: 0.8rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.pricing-group {
    margin-bottom: 2.5rem;
}

.pricing-group:last-child {
    margin-bottom: 0;
}

.group-title {
    font-family: var(--font-heading);
    font-size: 1rem; /* Raffiné */
    color: var(--accent-cyan);
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 2px;
}

.group-title i {
    font-size: 1.2rem;
    opacity: 0.8;
}

.plan-price {
    font-family: var(--font-heading);
    font-size: 1.6rem; /* Beaucoup plus chic */
    font-weight: 700;
    margin-bottom: 1rem;
}

@media (max-width: 768px) {
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    .modal-content {
        padding: 2rem;
        height: 90vh;
        overflow-y: auto;
    }
}

.price-display {
    font-family: var(--font-heading);
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--accent-cyan);
}

.price-display small {
    font-size: 1rem;
    color: var(--text-muted);
}

/* ZOOM BOX */
.product-visual-container {
    perspective: 1000px;
}

.zoom-box {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    cursor: pointer;
    border: 1px solid var(--glass-border);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.5);
    transition: transform 0.5s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    height: 100%; /* Remplit toute la hauteur */
}

.zoom-box:hover {
    transform: rotateY(-10deg) rotateX(5deg) scale(1.02);
}

.zoom-box img {
    width: 100%;
    height: 100%; /* Force la hauteur */
    object-fit: cover; /* Évite la déformation */
    display: block;
    transition: transform 0.5s;
}

.zoom-hint {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, 0.4);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    opacity: 0;
    transition: opacity 0.3s;
    backdrop-filter: blur(2px);
}

.zoom-box:hover .zoom-hint {
    opacity: 1;
}

.zoom-hint i {
    font-size: 2rem;
    color: white;
}

.zoom-hint span {
    font-weight: 600;
    letter-spacing: 1px;
    text-transform: uppercase;
    font-size: 0.8rem;
}

/* LIGHTBOX */
.lightbox {
    position: fixed;
    inset: 0;
    background: rgba(2, 6, 23, 0.95);
    z-index: 2000;
    display: none; /* JS Toggle */
    justify-content: center;
    align-items: center;
    backdrop-filter: blur(20px);
    cursor: zoom-out;
}

.lightbox img {
    max-width: 90%;
    max-height: 90%;
    border-radius: 12px;
    box-shadow: 0 0 100px rgba(0, 242, 255, 0.2);
    transform: scale(0.9);
    transition: transform 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
}

.lightbox.active {
    display: flex;
}

.lightbox.active img {
    transform: scale(1);
}

.close-btn {
    position: absolute;
    top: 30px;
    right: 40px;
    font-size: 3rem;
    color: white;
    cursor: pointer;
    opacity: 0.6;
}

.product-details-content {
    padding: 0 10% 5rem;
}

.content-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem; /* Aligné sur la grille du haut */
}

.detail-card {
    background: rgba(255, 255, 255, 0.02);
    padding: 2.5rem;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
}

.detail-card h3 {
    color: var(--accent-cyan);
    margin-bottom: 1rem;
}
/* --- DOCUMENTATION SECTION --- */
.product-docs {
    padding: 0 10% 5rem;
}

.docs-card {
    display: flex;
    align-items: center;
    gap: 2rem;
    background: linear-gradient(90deg, rgba(0, 242, 255, 0.05), transparent);
    border: 1px solid var(--glass-border);
    padding: 2rem 3rem;
    border-radius: 16px;
    position: relative;
    overflow: hidden;
}

.docs-icon {
    font-size: 2.5rem;
    color: var(--accent-cyan);
    filter: drop-shadow(0 0 10px rgba(0, 242, 255, 0.3));
}

.docs-info {
    flex: 1;
}

.docs-info h3 {
    font-family: var(--font-heading);
    font-size: 1.1rem; /* Beaucoup plus discret */
    letter-spacing: 2px;
    text-transform: uppercase;
    margin-bottom: 0.3rem;
}

.docs-info p {
    color: var(--text-muted);
    font-size: 0.85rem; /* Plus fin */
    opacity: 0.8;
}

.docs-actions {
    display: flex;
    gap: 1rem;
}

@media (max-width: 768px) {
    .docs-card {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }
    .docs-actions {
        width: 100%;
        flex-direction: column;
    }
}
