@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Barlow+Condensed:wght@300;400;500;600;700;800;900&family=Oswald:wght@400;500;600;700&display=swap');

/* ============================================
   VOLKANIKA - THE FUTURE OF SHOPPING IS NOW
   Design System: Magmatic Luxury
   ============================================ */

/* ========== RESET & BASE ========== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

:root {
    /* Color Palette - Obsidian & Gold */
    --volcanic-black: #0a0a0a;
    --obsidian: #1a1a1a;
    --charcoal: #2a2a2a;
    --gold: #d4af37;
    --gold-light: #f4d477;
    --gold-dark: #b8941f;
    --white: #ffffff;
    --off-white: #f5f5f5;
    --gray: #666666;

    /* Typography - Bold & Modern comme le logo */
    --font-display: 'Bebas Neue', sans-serif;
    --font-body: 'Barlow Condensed', sans-serif;
    --font-accent: 'Oswald', sans-serif;

    /* Magma Effects */
    --magma: #ff4d00;
    --magma-glow: rgba(255, 77, 0, 0.15);
    --molten-gold: #ffcc33;

    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    --spacing-xxl: 8rem;

    /* Transitions */
    --transition-smooth: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
    --transition-fast: all 0.3s ease;

    /* Shadows */
    --shadow-gold: 0 0 15px rgba(212, 175, 55, 0.1);
    --shadow-magma: 0 0 20px rgba(255, 77, 0, 0.05);
    --shadow-heavy: 0 15px 40px rgba(0, 0, 0, 0.7);
}

/* Fix table column highlight contrast */
.table-cell.highlight-column {
    background-color: var(--gold) !important;
    color: var(--volcanic-black) !important;
}

.table-cell.highlight-column * {
    color: var(--volcanic-black) !important;
    -webkit-text-fill-color: var(--volcanic-black) !important;
    background: none !important;
    text-shadow: none !important;
}

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: var(--font-body);
    background-color: #050505;
    color: var(--white);
    line-height: 1.5;
    overflow-x: hidden;
    position: relative;
    width: 100%;
}

img {
    max-width: 100%;
    height: auto;
}

/* Overlay pour assombrir la texture */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(5, 5, 5, 0.75);
    pointer-events: none;
    z-index: 0;
}

/* Touches d'or très subtiles */
body::after {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image:
        radial-gradient(circle at 30% 40%, rgba(212, 175, 55, 0.03) 0%, transparent 50%),
        radial-gradient(circle at 70% 60%, rgba(212, 175, 55, 0.02) 0%, transparent 50%);
    pointer-events: none;
    z-index: 0;
}

/* ========== TYPOGRAPHY ========== */
h1,
h2,
h3,
h4,
h5,
h6 {
    font-family: var(--font-display);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: 0.02em;
    margin-bottom: var(--spacing-md);
}

h1 {
    font-size: clamp(2rem, 10vw, 7rem);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 900;
}

h2 {
    font-size: clamp(1.8rem, 6vw, 4.5rem);
    text-transform: uppercase;
    letter-spacing: 0.15em;
    font-weight: 800;
    line-height: 1.1;
}

h3 {
    font-size: clamp(1.4rem, 4vw, 2.8rem);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    color: var(--gold);
}

p {
    font-size: clamp(1rem, 1.5vw, 1.125rem);
    line-height: 1.6;
    margin-bottom: var(--spacing-sm);
    font-weight: 400;
}

.gold-text {
    color: var(--gold);
    background: linear-gradient(135deg, var(--gold-light), var(--gold), var(--gold-dark));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    padding-bottom: 0.1em;
    /* Prevent clipping of descenders */
    line-height: 1.3;
}

.subtitle {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    color: var(--gold);
    margin-bottom: var(--spacing-md);
}

/* ========== LAYOUT UTILITIES ========== */
.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.section {
    padding: var(--spacing-lg) 0;
    position: relative;
    z-index: 1;
}

.section-dark {
    background-color: rgba(5, 5, 5, 0.95);
}

.section-obsidian {
    background-color: rgba(20, 20, 20, 0.95);
}

.section-charcoal {
    background-color: rgba(35, 35, 35, 0.95);
}

/* ========== HERO SECTION ========== */
/* ========== HERO SECTION ========== */
.hero {
    min-height: 100vh;
    height: auto;
    /* Permet à la section de grandir si le contenu est plus haut */
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: transparent;
    padding: 0px 0;
    /* Marge interne encore réduite */
    padding-bottom: var(--spacing-xl);
    /* Espace vital en bas pour éviter la superposition */
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: #000000;
    z-index: 0;
}

.hero-content {
    position: relative;
    z-index: 2;
    text-align: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: var(--spacing-md);
}

.logo-hero {
    width: 100%;
    max-width: 800px;
    height: auto;
    margin: 6rem auto 3rem;
    border-radius: 20px;
    border: 1px solid rgba(212, 175, 55, 0.4);
    box-shadow:
        0 15px 40px rgba(0, 0, 0, 0.8),
        0 0 15px rgba(212, 175, 55, 0.1);
    position: relative;
    display: block;
    transition: var(--transition-smooth);
}

.logo-hero:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: var(--gold);
    box-shadow:
        0 20px 50px rgba(0, 0, 0, 0.9),
        0 0 25px rgba(212, 175, 55, 0.2);
}

@keyframes logoGlow {

    0%,
    100% {
        filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.2)) brightness(1);
    }

    50% {
        filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.4)) brightness(1.05);
    }
}

.hero-headline {
    font-size: clamp(2.5rem, 8vw, 5.5rem);
    color: var(--white);
    margin-bottom: var(--spacing-md);
    letter-spacing: 0.15em;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.1), 0 0 10px rgba(255, 77, 0, 0.1);
    font-weight: 900;
    line-height: 1.1;
}

.hero-subheadline {
    font-size: clamp(0.9rem, 2.5vw, 1.4rem);
    font-family: var(--font-display);
    text-transform: uppercase;
    letter-spacing: clamp(0.1em, 1.5vw, 0.3em);
    color: var(--off-white);
    max-width: 900px;
    margin: 0 auto var(--spacing-lg);
    line-height: 1.6;
    opacity: 0.9;
}

.scroll-indicator {
    position: absolute;
    bottom: var(--spacing-lg);
    left: 50%;
    transform: translateX(-50%);
    z-index: 3;
}

.scroll-arrow {
    width: 30px;
    height: 50px;
    border: 2px solid var(--gold);
    border-radius: 20px;
    position: relative;
    animation: scrollBounce 2s ease-in-out infinite;
}

.scroll-arrow::before {
    content: '';
    width: 6px;
    height: 6px;
    background-color: var(--gold);
    border-radius: 50%;
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    animation: scrollDot 2s ease-in-out infinite;
}

@keyframes scrollBounce {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(10px);
    }
}

@keyframes scrollDot {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }

    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(20px);
    }
}

/* ========== SECTION HEADERS ========== */
.section-header {
    text-align: center;
    margin-bottom: var(--spacing-lg);
    padding: 0 1rem;
}

.section-number {
    font-family: var(--font-display);
    font-size: clamp(1rem, 1.5vw, 1.2rem);
    color: var(--off-white);
    letter-spacing: 0.2em;
    margin-bottom: var(--spacing-sm);
    font-weight: 600;
}

.section-title {
    font-family: var(--font-display);
    font-size: clamp(1.8rem, 7vw, 5rem);
    position: relative;
    display: inline-block;
    letter-spacing: 0.15em;
    text-indent: 0.15em;
    /* Centrage optique */
    background: linear-gradient(to bottom, #fff, #aaa);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.section-title.title-long {
    font-size: clamp(1.5rem, 5vw, 3.5rem);
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: -15px;
    left: 25%;
    width: 50%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--magma), var(--gold), var(--magma), transparent);
    box-shadow: 0 0 10px var(--magma);
}

/* ========== CONTENT BLOCKS ========== */
.content-block,
.experience-card {
    background: linear-gradient(135deg, rgba(26, 26, 26, 0.8), rgba(42, 42, 42, 0.6));
    padding: var(--spacing-lg);
    border-radius: 10px;
    margin-bottom: var(--spacing-md);
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 2;
}

.content-block::before,
.experience-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(212, 175, 55, 0.1), transparent);
    transition: var(--transition-smooth);
}

.content-block:hover::before,
.experience-card:hover::before {
    left: 100%;
}

.content-block:hover,
.experience-card:hover {
    border-color: rgba(212, 175, 55, 0.3);
    transform: translateY(-5px);
    box-shadow: var(--shadow-heavy);
}

.content-block {
    background: rgba(15, 15, 15, 0.8);
    padding: clamp(1.5rem, 4vw, 3rem);
    border-radius: 8px;
    border: 1px solid rgba(212, 175, 55, 0.08);
    position: relative;
    z-index: 2;
    color: var(--off-white);
}

.content-block p {
    color: var(--off-white);
    line-height: 1.8;
    margin-bottom: 0.8rem;
}

.content-block h3 {
    margin-bottom: var(--spacing-sm);
}

.content-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-lg);
}

.framework-list {
    display: flex;
    flex-direction: column;
    gap: var(--spacing-md);
    max-width: 1000px;
    margin: var(--spacing-lg) auto 0;
}

/* Carousel pour les grilles avec beaucoup de cartes */
.content-grid.has-carousel {
    display: flex;
    overflow: hidden;
    position: relative;
    -webkit-mask-image: linear-gradient(to right, transparent, black 1rem, black calc(100% - 1rem), transparent);
    mask-image: linear-gradient(to right, transparent, black 1rem, black calc(100% - 1rem), transparent);
}

.content-grid.has-carousel .carousel-track {
    display: flex;
    gap: var(--spacing-md);
    animation: scrollCarousel 40s linear infinite;
    width: max-content;
}

.content-grid.has-carousel:hover .carousel-track {
    animation-play-state: paused;
}

@keyframes scrollCarousel {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ========== FEATURE CARDS ========== */
.feature-card {
    background: rgba(15, 15, 15, 0.9);
    padding: clamp(2rem, 5vw, 4rem) clamp(1rem, 3vw, 2.5rem);
    border-radius: 2px;
    text-align: center;
    border: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition-smooth);
    position: relative;
    overflow: hidden;
    z-index: 2;
    min-width: min(330px, 100%);
    flex-shrink: 0;
    backdrop-filter: blur(10px);
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.feature-card::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--magma), transparent);
    box-shadow: 0 0 15px var(--magma);
    transform: scaleX(0);
    transition: var(--transition-smooth);
}

.feature-card:hover {
    transform: translateY(-15px);
    border-color: rgba(255, 77, 0, 0.4);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.9), 0 0 15px var(--magma-glow);
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-card>* {
    position: relative;
    z-index: 1;
}

.feature-icon {
    font-size: 4rem;
    margin-bottom: var(--spacing-md);
}

.feature-title {
    font-size: clamp(1.3rem, 2vw, 1.8rem);
    margin-bottom: var(--spacing-sm);
    color: var(--gold);
}

.feature-description {
    color: var(--off-white);
    /* Changé de gold-light à off-white pour dominance blanche */
    font-size: 1rem;
}

/* ========== IMAGE GALLERY ========== */
.image-gallery {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(min(300px, 100%), 1fr));
    gap: var(--spacing-md);
    margin-top: var(--spacing-md);
    margin-bottom: 0;
}

.gallery-item {
    position: relative;
    overflow: hidden;
    border-radius: 10px;
    aspect-ratio: 16/9;
    /* Mieux adapté aux images HD pour éviter le crop latéral */
    cursor: pointer;
}

.gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
    filter: grayscale(0.1);
    /* Réduit pour laisser paraître les couleurs premium */
}

.gallery-item:hover img {
    transform: scale(1.1);
    filter: grayscale(0);
}

.gallery-overlay {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: linear-gradient(to top, rgba(10, 10, 10, 0.95), transparent);
    padding: var(--spacing-md);
    transform: translateY(100%);
    transition: var(--transition-smooth);
}

.gallery-item:hover .gallery-overlay {
    transform: translateY(0);
}

.gallery-title {
    font-family: var(--font-display);
    font-size: 1.3rem;
    color: var(--white);
    margin-bottom: 0.5rem;
}

.gallery-description {
    font-size: 0.9rem;
    color: var(--off-white);
}

.gallery-single .gallery-item {
    aspect-ratio: auto;
    max-height: 85vh;
    /* Plus d'espace pour l'image */
}

.gallery-single .gallery-item img {
    object-fit: contain;
    /* Évite le crop */
}

.no-margin-bottom {
    margin-bottom: 0 !important;
}

.mt-sm {
    margin-top: 1rem;
}

.mt-md {
    margin-top: 2rem;
}

.mt-lg {
    margin-top: 4rem;
}

.mb-lg {
    margin-bottom: 4rem;
}

.gallery-single {
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.gallery-small {
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

/* ========== COMPARISON TABLE ========== */
.comparison-table {
    display: grid;
    grid-template-columns: 1fr 1fr 1fr;
    gap: 2px;
    background-color: var(--gold);
    border-radius: 10px;
    overflow: hidden;
    margin: var(--spacing-lg) 0;
    position: relative;
    z-index: 2;
}

.table-header {
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    padding: var(--spacing-md);
    font-family: var(--font-display);
    font-weight: 700;
    text-align: center;
    color: var(--volcanic-black);
    font-size: 1.2rem;
}

.table-cell {
    background-color: var(--obsidian);
    padding: var(--spacing-md);
    text-align: center;
    color: var(--white);
    transition: var(--transition-fast);
    display: flex;
    align-items: center;
    justify-content: center;
}

.table-cell:hover {
    background-color: var(--gold);
    color: var(--volcanic-black) !important;
}

.table-cell:hover * {
    color: var(--volcanic-black) !important;
    -webkit-text-fill-color: var(--volcanic-black) !important;
    background: none !important;
    background-color: transparent !important;
    background-clip: border-box !important;
    -webkit-background-clip: border-box !important;
    text-shadow: none !important;
}

/* Fix for Volkanika column that has yellow background: force black text always */
.table-cell[style*="background"] {
    color: var(--volcanic-black) !important;
}

.table-cell[style*="background"] * {
    color: var(--volcanic-black) !important;
    -webkit-text-fill-color: var(--volcanic-black) !important;
    background: none !important;
    text-shadow: none !important;
}

/* En-têtes avec fond doré : texte noir impératif */
.table-header[style*="background"],
.table-header {
    color: var(--volcanic-black) !important;
}

.table-label {
    font-weight: 600;
    color: var(--gold-light);
}

/* ========== QUOTE BLOCKS ========== */
.quote-block {
    background: linear-gradient(135deg, rgba(212, 175, 55, 0.1), rgba(212, 175, 55, 0.05));
    border-left: 5px solid var(--gold);
    padding: var(--spacing-lg);
    margin: var(--spacing-lg) 0;
    font-family: var(--font-accent);
    font-style: italic;
    font-size: clamp(1.2rem, 2vw, 1.8rem);
    line-height: 1.8;
    position: relative;
}

.quote-block::before {
    content: '"';
    font-size: 6rem;
    color: var(--gold);
    opacity: 0.2;
    position: absolute;
    top: -20px;
    left: 20px;
    font-family: Georgia, serif;
}

.signature-icon {
    display: block;
    max-width: 600px;
    margin: 0 auto var(--spacing-md);
    border-radius: 10px;
    box-shadow: 0 0 30px rgba(212, 175, 55, 0.3);
    filter: drop-shadow(0 0 15px rgba(212, 175, 55, 0.2));
    transition: var(--transition-smooth);
}

.signature-icon:hover {
    transform: scale(1.05);
    filter: drop-shadow(0 0 25px rgba(212, 175, 55, 0.4));
}

/* ========== BULLETS & LISTS ========== */
.styled-list {
    list-style: none;
    padding-left: 0;
}

.styled-list li {
    position: relative;
    padding-left: var(--spacing-lg);
    margin-bottom: var(--spacing-md);
    font-size: 1.125rem;
}

.styled-list li::before {
    content: '🦖';
    position: absolute;
    left: 0;
    font-size: 1.5rem;
}

.styled-list.check-list li::before {
    content: '✓';
    color: var(--gold);
    font-weight: bold;
    font-size: 1.5rem;
}

/* ========== BUTTONS & CTAs ========== */
.cta-button {
    display: inline-block;
    padding: 1.2rem 3rem;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--volcanic-black);
    font-family: var(--font-display);
    font-size: 1.1rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.1em;
    text-decoration: none;
    border-radius: 50px;
    border: none;
    cursor: pointer;
    transition: var(--transition-smooth);
    box-shadow: 0 10px 30px rgba(212, 175, 55, 0.3);
    position: relative;
    overflow: hidden;
}

.cta-button::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.3), transparent);
    transition: var(--transition-smooth);
}

.cta-button:hover::before {
    left: 100%;
}

.cta-button:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 40px rgba(212, 175, 55, 0.5);
}

/* ========== NAVIGATION ========== */
.navbar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(10, 10, 10, 0.95);
    backdrop-filter: blur(10px);
    z-index: 1000;
    padding: var(--spacing-sm) 0;
    border-bottom: 1px solid rgba(212, 175, 55, 0.1);
    transition: var(--transition-smooth);
}

.navbar.scrolled {
    background: rgba(10, 10, 10, 0.98);
    box-shadow: 0 5px 30px rgba(0, 0, 0, 0.5);
}

.navbar .container {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo-nav {
    height: 60px;
    width: auto;
    flex-shrink: 0;
    filter: drop-shadow(0 2px 8px rgba(212, 175, 55, 0.3));
    transition: var(--transition-fast);
}

.logo-nav:hover {
    filter: drop-shadow(0 4px 12px rgba(212, 175, 55, 0.5));
    transform: scale(1.05);
}

.nav-links {
    display: flex;
    gap: clamp(0.8rem, 1.5vw, 2rem);
    list-style: none;
    flex-wrap: wrap;
    align-items: center;
}

.nav-links a {
    color: var(--white);
    text-decoration: none;
    font-family: var(--font-display);
    font-weight: 600;
    font-size: 0.95rem;
    letter-spacing: 0.05em;
    transition: var(--transition-fast);
    position: relative;
}

.nav-links a::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gold);
    transition: var(--transition-fast);
}

.nav-links a:hover {
    color: var(--gold);
}

.nav-links a:hover::after {
    width: 100%;
}

/* ========== FOOTER ========== */
.footer {
    background: #000000;
    padding: var(--spacing-xl) 0;
    border-top: 1px solid #2db333;
    position: relative;
    z-index: 2;
}

.footer-split {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 4rem;
}

.footer-left {
    flex: 1;
    max-width: 450px;
}

.footer-right {
    flex: 1.5;
}

@media (max-width: 768px) {
    .footer-split {
        flex-direction: column;
        gap: 2rem;
        text-align: center;
    }

    .footer-left,
    .footer-right {
        max-width: 100%;
        text-align: center !important;
    }
}

.footer-logo,
.reanimator-logo {
    max-width: 350px;
    height: auto;
    margin: 0 auto;
    display: block;
    filter: drop-shadow(0 0 8px rgba(57, 255, 20, 0.1));
    transition: var(--transition-smooth);
}

.reanimator-logo:hover {
    filter: drop-shadow(0 0 15px rgba(57, 255, 20, 0.2));
    transform: scale(1.02);
}

.brand-reanimator-section {
    margin-bottom: var(--spacing-xl);
}

.reanimator-name {
    font-family: var(--font-display);
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 800;
    /* Bolder */
    color: #ffffff;
    margin-bottom: 0.2rem;
    letter-spacing: 1px;
    opacity: 1 !important;
}

.reanimator-title {
    font-family: var(--font-display);
    font-size: clamp(1.2rem, 3vw, 1.8rem);
    color: #2db333;
    text-shadow: 0 0 25px rgba(45, 179, 51, 0.5);
    /* Max glow */
    text-transform: uppercase;
    letter-spacing: 0.2em;
    margin-bottom: 0.2rem;
    opacity: 1 !important;
}

.reanimator-subtitle {
    font-family: var(--font-accent);
    font-style: italic;
    font-size: 1.1rem;
    color: #ffffff;
    /* Brighter */
    margin-bottom: 1.5rem;
    opacity: 1 !important;
}

.reanimator-contact {
    font-size: 1.1rem;
    color: #2db333;
    line-height: 1.6;
    opacity: 1 !important;
    text-shadow: 0 0 15px rgba(45, 179, 51, 0.3);
}

.reanimator-contact a {
    color: inherit;
    text-decoration: none;
}

/* Legal Section - Neon Green */
.footer-legal {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding: 2rem var(--spacing-md);
    border-top: 1px solid rgba(45, 179, 51, 0.3);
    /* Green border-top */
    text-align: center;
    font-size: 1rem;
    /* Slightly larger */
    line-height: 1.6;
    color: #2db333;
    font-family: 'Barlow Condensed', sans-serif;
    opacity: 1 !important;
    font-weight: 500;
    /* More solid */
}

.legal-header {
    font-weight: bold;
    margin-bottom: 0.5rem;
}

.legal-notice {
    margin-bottom: 0.8rem;
}

.legal-contact {
    margin-top: 1.2rem;
    font-weight: bold;
}


/* ========== BRAND HIGHLIGHT ("Your Brand") ========== */
.brand-highlight {
    font-weight: 700;
    color: var(--gold);
    display: inline;
    line-height: 1.6;
    white-space: nowrap;
}

.brand-highlight-script {
    font-weight: 700;
    color: var(--gold);
    display: inline;
    line-height: 1.6;
}

.brand-highlight-table {
    font-weight: 700;
    color: var(--gold);
}

/* ========== LIFESTYLE SECTION ========== */
.lifestyle-capsule {
    position: relative;
    z-index: 2;
}

.lifestyle-grid {
    grid-template-columns: repeat(auto-fit, minmax(min(350px, 100%), 1fr)) !important;
    gap: 2rem !important;
}

.lifestyle-card {
    background: linear-gradient(135deg, rgba(15, 15, 15, 0.95), rgba(26, 26, 26, 0.9));
    border-radius: 12px;
    overflow: hidden;
    border: 1px solid rgba(212, 175, 55, 0.15);
    transition: var(--transition-smooth);
    position: relative;
    z-index: 2;
}

.lifestyle-card:hover {
    transform: translateY(-10px);
    border-color: rgba(212, 175, 55, 0.5);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8), 0 0 30px rgba(212, 175, 55, 0.15);
}

.lifestyle-card-image {
    width: 100%;
    height: 320px;
    overflow: hidden;
    position: relative;
}

.lifestyle-card-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-smooth);
}

.lifestyle-card:hover .lifestyle-card-image img {
    transform: scale(1.08);
}

.lifestyle-card-content {
    padding: 1.5rem 2rem 2rem;
}

.lifestyle-card-content h4 {
    font-family: var(--font-display);
    font-size: 1.4rem;
    letter-spacing: 0.05em;
    margin-bottom: 0.8rem;
}

.lifestyle-card-content p {
    font-size: 1rem;
    color: var(--off-white);
    line-height: 1.6;
}

.lifestyle-badge {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--volcanic-black);
    font-family: var(--font-display);
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.15em;
    padding: 0.3rem 0.8rem;
    border-radius: 3px;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.lifestyle-vibe {
    font-family: var(--font-accent);
    font-style: italic;
    color: var(--gold) !important;
    font-size: 1.05rem !important;
    margin-top: 0.5rem;
    padding-top: 0.5rem;
    border-top: 1px solid rgba(212, 175, 55, 0.2);
}

/* ========== FRAMEWORK PHASES ========== */
.framework-phase {
    position: relative;
}

.framework-phase-number {
    display: inline-block;
    background: linear-gradient(135deg, var(--gold-dark), var(--gold));
    color: var(--volcanic-black);
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    letter-spacing: 0.2em;
    padding: 0.25rem 0.8rem;
    border-radius: 3px;
    margin-bottom: 1rem;
}

/* ========== CLOSING SECTION ========== */
.section-closing {
    padding: 2rem 0;
    background: var(--volcanic-black);
    border-top: 1px solid rgba(212, 175, 55, 0.2);
    border-bottom: 1px solid rgba(212, 175, 55, 0.2);
    position: relative;
    z-index: 2;
}

.closing-text {
    font-family: var(--font-accent);
    font-size: 1.6rem;
    font-weight: 700;
    color: var(--gold) !important;
    -webkit-text-fill-color: var(--gold) !important;
    text-align: center;
    padding: 1.5rem 2.5rem;
    max-width: 850px;
    margin: 0 auto;
    letter-spacing: 0.03em;
    line-height: 1.6;
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.4);
}

/* ========== ANIMATIONS ========== */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.fade-in-up {
    animation: fadeInUp 0.8s ease-out forwards;
}

/* ========== RESPONSIVE ========== */
@media (max-width: 968px) {
    .nav-links {
        flex-direction: column;
        gap: var(--spacing-sm);
    }

    .comparison-table {
        grid-template-columns: 1fr;
        gap: 10px;
        background: transparent;
    }

    .table-header {
        display: none;
    }

    .table-cell {
        display: grid;
        grid-template-columns: 120px 1fr;
        gap: 1rem;
        align-items: start;
        padding: 1rem;
        border-radius: 5px;
        border: 1px solid rgba(212, 175, 55, 0.2);
        text-align: left;
    }

    .table-label {
        font-size: 0.9rem;
        text-transform: uppercase;
        color: var(--gold);
        text-align: center;
        display: block;
        width: 100%;
        background: rgba(212, 175, 55, 0.05);
        margin-top: 0.5rem;
    }

    .table-cell:not(.table-label) {
        background: rgba(20, 20, 20, 0.9);
    }

    .table-cell:not(.table-label)::before {
        content: attr(data-label);
        font-family: var(--font-display);
        color: var(--gold-light);
        font-size: 0.95rem;
        text-align: left;
        flex-shrink: 0;
        font-weight: 700;
        letter-spacing: 0.05em;
        padding-top: 0.1rem;
        /* Optical alignment */
    }

    .image-gallery {
        grid-template-columns: 1fr;
    }

    .content-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    .feature-card {
        padding: 2rem 1.5rem;
        min-width: 100%;
    }

    /* Fix for mobile table readability - High Specificity Override */
    body .comparison-table .table-cell[style*="background"] {
        color: var(--gold) !important;
        background: rgba(20, 20, 20, 0.95) !important;
    }

    body .comparison-table .table-cell[style*="background"] *,
    body .comparison-table .table-cell[style*="background"] strong,
    body .comparison-table .table-cell[style*="background"] .gold-text {
        color: var(--gold) !important;
        -webkit-text-fill-color: var(--gold) !important;
        background: none !important;
        text-shadow: none !important;
        white-space: normal !important;
        overflow-wrap: break-word !important;
    }

    /* Force visibility for the "Your Brand" (non-highlighted) cells */
    body .comparison-table .table-cell:not([style*="background"]):not(.table-label) {
        color: var(--white) !important;
        background: rgba(20, 20, 20, 0.9) !important;
        white-space: normal !important;
        overflow-wrap: break-word !important;
    }

    /* Ensure label stays on its own */
    .table-cell:not(.table-label)::before {
        margin-bottom: 0;
    }
}

@media (max-width: 768px) {
    :root {
        --spacing-lg: 2rem;
        --spacing-xl: 3rem;
        --spacing-xxl: 4rem;
    }

    .container {
        padding: 0 1.25rem;
    }

    .section {
        padding: var(--spacing-lg) 0;
    }

    .hero {
        min-height: 80vh;
    }

    .content-block {
        padding: 1.5rem 1.25rem;
    }
}

/* ========== UTILITY CLASSES ========== */
.text-center {
    text-align: center;
}

.mb-lg {
    margin-bottom: var(--spacing-lg);
}

.mt-lg {
    margin-top: var(--spacing-lg);
}

.hidden {
    display: none;
}

/* ========== EMOJI STYLING ========== */
/* Transforme les icônes/emojis isolés en noir et blanc */
.section-number,
.feature-icon {
    filter: none;
}

/* Force le grayscale sur tous les éléments pouvant contenir des emojis */
.gold-text {
    filter: none !important;
}

/* Cibler spécifiquement les emojis dans le contenu - exclude styled text elements */
body *:not(.gold-text):not(.brand-highlight):not(.brand-highlight-script):not(.brand-highlight-table) {
    -webkit-text-fill-color: initial;
}

/* Style global pour forcer tous les emojis en grayscale (noir et blanc) */
* {
    font-variant-emoji: text;
}

/* ========== VOLCANIC TEXTURE ========== */
/* Texture supprimée */
.volcanic-texture {
    position: relative;
}

.volcanic-texture::before {
    display: none !important;
    content: none !important;
    background-image: none !important;
}