/* ==========================================================================
   DESIGN SYSTEM & VARIABLES - ULTRA-SOMBRÉ GREEN & BLACK LIGHTNING
   ========================================================================== */
:root {
    /* Color Palette (Jet Black & Electric Neon Green/Lightning Yellow) */
    --bg-primary: #000000;       /* Solid Jet Black for maximum text contrast */
    --bg-secondary: #050608;     /* Very Dark Gray/Black Card Background */
    --bg-tertiary: #0b0c10;      /* Dark Obsidian Inputs/Badges */
    
    --primary: #00ff66;          /* Energetic Neon Green */
    --primary-hover: #39ff14;    /* Electric Lime Green */
    --primary-glow: rgba(0, 255, 102, 0.35);
    
    --secondary: #facc15;        /* Electric Lightning Yellow */
    --secondary-hover: #fde047;  /* Bright Flash Yellow */
    --secondary-glow: rgba(250, 204, 21, 0.35);
    
    --accent: #facc15;           /* Gold/Yellow Lightning Accent */
    --accent-glow: rgba(250, 204, 21, 0.25);
    
    --success: #00ff66;          /* Neon Green */
    --success-glow: rgba(0, 255, 102, 0.2);
    
    --text-main: #ffffff;        /* Pure White for maximum legibility */
    --text-muted: #a3b0c0;       /* Light Silver Gray for readable body text */
    --text-dark: #000000;
    
    /* Glassmorphism Styles (Slightly darker overlays for text legibility) */
    --glass-bg: rgba(5, 6, 8, 0.88);
    --glass-border: rgba(0, 255, 102, 0.08);
    --glass-border-hover: rgba(0, 255, 102, 0.22);
    
    /* Shadows & Transitions */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.3), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.8), 0 10px 10px -5px rgba(0, 0, 0, 0.06);
    --transition: all 0.25s cubic-bezier(0.2, 0.8, 0.2, 1);
    
    /* Fonts */
    --font-title: 'Outfit', sans-serif;
    --font-text: 'Plus Jakarta Sans', sans-serif;
}

/* ==========================================================================
   BASE STYLES & RESET
   ========================================================================== */
*, *::before, *::after {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    background-color: var(--bg-primary);
    color: var(--text-main);
    font-family: var(--font-text);
    line-height: 1.6;
    overflow-x: hidden;
    min-height: 100vh;
    position: relative;
}

a {
    color: inherit;
    text-decoration: none;
    transition: var(--transition);
}

button, input, select {
    font-family: inherit;
}

/* Custom Scrollbar (Electric Green Accent) */
::-webkit-scrollbar {
    width: 8px;
}
::-webkit-scrollbar-track {
    background: var(--bg-primary);
}
::-webkit-scrollbar-thumb {
    background: var(--bg-tertiary);
    border-radius: 4px;
    border: 2px solid var(--bg-primary);
}
::-webkit-scrollbar-thumb:hover {
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary-glow);
}

/* ==========================================================================
   BACKGROUND BLURS (SUBDUED FOR TEXT HIGHLIGHT)
   ========================================================================== */
.bg-blur {
    position: fixed;
    border-radius: 50%;
    filter: blur(160px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.06; /* Subdued opacity to keep background extremely dark */
    transition: var(--transition);
    animation: pulse-glow 9s infinite alternate ease-in-out;
}
.blob-1 {
    top: -10%;
    left: -10%;
    width: 50vw;
    height: 50vw;
    background: var(--primary);
    animation-delay: 0s;
}
.blob-2 {
    bottom: -10%;
    right: -10%;
    width: 60vw;
    height: 60vw;
    background: var(--secondary);
    animation-delay: 2s;
}
.blob-3 {
    top: 40%;
    left: 45%;
    width: 40vw;
    height: 40vw;
    background: #00ffff;
    opacity: 0.03;
    animation-delay: 4s;
}

@keyframes pulse-glow {
    0% {
        transform: scale(1) translate(0, 0);
        opacity: 0.05;
    }
    50% {
        opacity: 0.09;
    }
    100% {
        transform: scale(1.15) translate(3%, 3%);
        opacity: 0.06;
    }
}

/* ==========================================================================
   REUSABLE UTILITIES & GLASS PANEL
   ========================================================================== */
.glass-panel {
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--glass-border);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
    will-change: transform;
    backface-visibility: hidden;
    -webkit-backface-visibility: hidden;
}
.glass-panel:hover {
    border-color: var(--glass-border-hover);
    box-shadow: 0 15px 35px rgba(0, 255, 102, 0.08);
    transform: translateY(-2px);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.text-glow {
    text-shadow: 0 0 15px rgba(0, 255, 102, 0.45);
}
.highlight {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(0, 255, 102, 0.3);
}

/* Section Common Header */
.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 3.5rem auto;
    position: relative;
    z-index: 2;
}
.section-title {
    font-family: var(--font-title);
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1rem;
    letter-spacing: -0.5px;
}
.section-description {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Common Badges */
.badge {
    background: rgba(0, 255, 102, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary-hover);
    padding: 0.2rem 0.5rem;
    font-size: 0.75rem;
    font-weight: 700;
    border-radius: 6px;
    vertical-align: middle;
}
.badge-new {
    background: var(--primary);
    color: var(--bg-primary);
    padding: 0.25rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 4px;
    margin-right: 0.5rem;
    letter-spacing: 0.5px;
    box-shadow: 0 0 10px var(--primary-glow);
}

/* Common Buttons */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.8rem 1.8rem;
    font-weight: 600;
    font-size: 0.95rem;
    border-radius: 12px;
    border: 1px solid transparent;
    cursor: pointer;
    transition: var(--transition);
}
.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: var(--bg-primary);
    box-shadow: 0 0 15px var(--primary-glow);
}
.btn-primary:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 25px var(--primary);
    background: linear-gradient(135deg, var(--primary-hover), #52ff88);
}
.btn-secondary {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: var(--text-main);
}
.btn-secondary:hover {
    background: rgba(0, 255, 102, 0.06);
    border-color: var(--primary);
    color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(0, 255, 102, 0.15);
}
.btn-success {
    background: linear-gradient(135deg, var(--primary), #33ff85);
    color: var(--bg-primary);
    font-weight: 700;
}
.btn-success:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 0 25px var(--primary);
}
.btn-lg {
    padding: 1rem 2.2rem;
    font-size: 1.05rem;
    border-radius: 14px;
}
.btn-sm {
    padding: 0.5rem 1.2rem;
    font-size: 0.85rem;
    border-radius: 8px;
}
.btn-block {
    display: flex;
    width: 100%;
}
.btn-glow {
    position: relative;
}
.btn-glow::after {
    content: '';
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    border-radius: inherit;
    box-shadow: 0 0 20px var(--primary);
    opacity: 0;
    transition: var(--transition);
}
.btn-glow:hover::after {
    opacity: 0.4;
}

/* Gradients mapped to Green & Black theme */
.bg-gradient-purple { background: linear-gradient(135deg, #00ff66, #00ffff); }
.bg-gradient-cyan { background: linear-gradient(135deg, #00ff66, #facc15); }
.bg-gradient-yellow { background: linear-gradient(135deg, #facc15, #ffffff); }
.bg-gradient-red { background: linear-gradient(135deg, #00ff66, #ffffff); }
.bg-gradient-blue { background: linear-gradient(135deg, #0f111a, #00ff66); }
.bg-gradient-green { background: linear-gradient(135deg, #00ff66, #10b981); }

/* Text Glows */
.text-glow-purple { text-shadow: 0 0 15px rgba(0, 255, 102, 0.4); color: var(--primary); }
.text-glow-cyan { text-shadow: 0 0 15px rgba(250, 204, 21, 0.4); color: var(--secondary); }
.text-glow-yellow { text-shadow: 0 0 15px rgba(250, 204, 21, 0.4); color: var(--secondary-hover); }
.text-glow-green { text-shadow: 0 0 15px rgba(0, 255, 102, 0.4); color: var(--primary); }

.text-success { color: var(--primary-hover); }

/* Common Lists (Lightning bullet style) */
.bullet-list {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.bullet-list li {
    position: relative;
    padding-left: 1.5rem;
    color: var(--text-muted);
}
.bullet-list li::before {
    content: '\f0e7'; /* Lightning bolt */
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--secondary);
    text-shadow: 0 0 5px rgba(250, 204, 21, 0.5);
}

.bullet-list-check {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.bullet-list-check li {
    position: relative;
    padding-left: 1.8rem;
    color: var(--text-muted);
}
.bullet-list-check li::before {
    content: '\f00c';
    font-family: 'Font Awesome 6 Free';
    font-weight: 900;
    position: absolute;
    left: 0;
    color: var(--primary);
    text-shadow: 0 0 5px rgba(0, 255, 102, 0.5);
}

/* ==========================================================================
   HEADER & NAVIGATION BAR
   ========================================================================== */
.navbar-container {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 1rem 2rem;
    transition: var(--transition);
}
.navbar-container.scrolled {
    padding: 0.6rem 2rem;
    background: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--glass-border);
}
.navbar {
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.nav-logo .logo-link {
    display: flex;
    align-items: center;
    gap: 0.6rem;
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}
.nav-logo .logo-img {
    height: 32px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 8px rgba(0, 255, 102, 0.4));
    transition: var(--transition);
}
.nav-logo .logo-link:hover .logo-img {
    transform: scale(1.08) rotate(3deg);
    filter: drop-shadow(0 0 12px rgba(0, 255, 102, 0.6));
}

.nav-menu {
    list-style: none;
    display: flex;
    align-items: center;
    gap: 1.5rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    padding: 0.4rem 1.5rem;
    border-radius: 30px;
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}
.nav-link {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-muted);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
}
.nav-link:hover, .nav-link.active {
    color: var(--text-main);
    background: rgba(0, 255, 102, 0.06);
}
.nav-link.active {
    border-bottom: 2px solid var(--primary);
    border-radius: 20px 20px 0 0;
    color: var(--primary-hover);
    text-shadow: 0 0 8px rgba(0, 255, 102, 0.2);
}

.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.mobile-toggle {
    display: none;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.2rem;
}

/* ==========================================================================
   PAGES INTERFACES (SINGLE PAGE APP SYSTEMS)
   ========================================================================== */
.content-wrapper {
    max-width: 1200px;
    margin: 0 auto;
    padding: 7.5rem 1.5rem 3rem 1.5rem;
    position: relative;
    z-index: 1;
}

.page-section {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
}
.page-section.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   SECTION ACCUEIL - HERO & ACCUEIL DETAILS
   ========================================================================== */
.hero-section {
    margin-bottom: 5.5rem;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}
.sales-banner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(90deg, rgba(10, 26, 10, 0.5) 0%, rgba(0, 77, 38, 0.4) 100%);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #e0ffe0;
    padding: 0.5rem 1.2rem;
    border-radius: 50px;
    font-family: var(--font-main);
    box-shadow: 0 0 20px rgba(0, 255, 102, 0.15), inset 0 0 10px rgba(0, 255, 102, 0.05);
    margin-bottom: 2rem;
    border: 1px solid rgba(0, 255, 102, 0.25);
    position: relative;
    overflow: hidden;
}
.live-indicator {
    width: 10px;
    height: 10px;
    background-color: var(--primary);
    border-radius: 50%;
    margin-right: 12px;
    flex-shrink: 0;
    position: relative;
    box-shadow: 0 0 12px var(--primary), 0 0 20px var(--primary);
    animation: lightning-flicker 0.25s infinite;
}
.live-indicator::after {
    content: '';
    width: 10px;
    height: 10px;
    background-color: #fff;
    border-radius: 50%;
    position: absolute;
    top: 0;
    left: 0;
    animation: electric-burst 1.5s infinite;
}
.sales-text {
    font-size: 0.88rem;
    font-weight: 500;
    letter-spacing: 0.5px;
    text-shadow: 0 0 5px rgba(0, 255, 102, 0.3);
}
.sales-text strong {
    color: #ffffff;
    font-weight: 700;
}
.sales-count {
    font-family: var(--font-title);
    font-weight: 900;
    font-size: 1.1rem;
    color: var(--primary);
    display: inline-block;
    animation: jitter 0.4s infinite;
    text-shadow: 0 0 10px var(--primary);
}

@keyframes lightning-flicker {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.75; transform: scale(1.1); }
    95% { opacity: 0.3; }
}
@keyframes electric-burst {
    0% { transform: scale(1); opacity: 1; box-shadow: 0 0 0px var(--primary); }
    20% { transform: scale(1.6); opacity: 0.8; box-shadow: 0 0 12px #fff; }
    100% { transform: scale(3.5); opacity: 0; }
}
@keyframes jitter {
    0% { transform: translate(0,0); }
    25% { transform: translate(0.4px, -0.4px); }
    50% { transform: translate(-0.4px, 0.4px); }
    75% { transform: translate(0.4px, 0.4px); }
    100% { transform: translate(0,0); }
}
.hero-title {
    font-family: var(--font-title);
    font-size: 3.5rem;
    line-height: 1.15;
    font-weight: 800;
    letter-spacing: -1.5px;
    margin-bottom: 2rem;
    max-width: 900px;
}
.hero-subtitle {
    color: var(--text-muted);
    font-size: 1.25rem;
    line-height: 1.65;
    margin-bottom: 2.2rem;
    max-width: 750px;
}
.hero-ctas {
    display: flex;
    gap: 1.2rem;
    margin-bottom: 2rem;
    justify-content: center;
}
.hero-features-sub {
    display: flex;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 500;
    justify-content: center;
}
.hero-features-sub .feat-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

/* Hero Media Display (Video Wrapper) */
.hero-media {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
    max-width: 980px;
    margin-bottom: 2.5rem;
}
.hero-video-wrapper {
    position: relative;
    width: 100%;
    border-radius: 20px;
    overflow: visible;
}
.hero-video {
    width: 100%;
    height: auto;
    border-radius: 16px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 0 35px rgba(0, 255, 102, 0.15);
    background: #000000;
    display: block;
    object-fit: cover;
    transition: var(--transition);
}
.hero-video-wrapper::before {
    content: '';
    position: absolute;
    top: -5px; left: -5px; right: -5px; bottom: -5px;
    border-radius: 21px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    z-index: -1;
    opacity: 0.25;
    filter: blur(8px);
    animation: border-spark 5s infinite ease-in-out alternate;
}

@keyframes border-spark {
    0% {
        opacity: 0.2;
        filter: blur(8px);
    }
    50% {
        opacity: 0.4;
        filter: blur(14px);
    }
    100% {
        opacity: 0.25;
        filter: blur(6px);
    }
}

.hero-video-wrapper:hover .hero-video {
    transform: scale(1.02) translateY(-5px);
    box-shadow: 0 0 45px rgba(0, 255, 102, 0.35);
}

/* Floating Badges */
.floating-badge {
    position: absolute;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid var(--glass-border-hover);
    padding: 0.8rem 1.2rem;
    border-radius: 14px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.9);
    z-index: 10;
    transition: var(--transition);
}
.floating-badge:hover {
    transform: translateY(-3px);
}
.badge-top-right {
    top: 5%;
    right: -8%;
    border-bottom: 3px solid var(--primary);
    box-shadow: 0 0 15px rgba(0, 255, 102, 0.15);
}
.badge-bottom-left {
    bottom: 5%;
    left: -8%;
    border-top: 3px solid var(--secondary);
    box-shadow: 0 0 15px rgba(250, 204, 21, 0.15);
}
.floating-badge .number {
    font-size: 1.6rem;
    font-weight: 800;
    font-family: var(--font-title);
    color: var(--primary);
    line-height: 1.1;
    text-shadow: 0 0 8px var(--primary-glow);
}
.floating-badge .stars {
    color: var(--secondary);
    font-size: 0.85rem;
    display: flex;
    gap: 0.1rem;
}
.floating-badge .label {
    font-size: 0.75rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-top: 0.2rem;
}

/* ==========================================================================
   ROI SIMULATOR (DYNAMIC COMPONENT)
   ========================================================================== */
.simulator-section {
    margin-bottom: 5.5rem;
    position: relative;
}
.simulator-card {
    padding: 2.5rem;
}
.simulator-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 3rem;
    align-items: center;
}
.simulator-inputs {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}
.input-group {
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.input-group label {
    font-weight: 600;
    font-size: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.input-group label i {
    color: var(--primary);
}

.slider-container {
    display: flex;
    align-items: center;
    gap: 1.2rem;
}
.range-slider {
    flex-grow: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 6px;
    border-radius: 3px;
    background: var(--bg-tertiary);
    outline: none;
    transition: background 450ms ease-in;
}
.range-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 20px;
    height: 20px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    cursor: pointer;
    box-shadow: 0 0 10px var(--primary-glow);
    transition: var(--transition);
}
.range-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}
.slider-val {
    min-width: 60px;
    text-align: right;
    font-weight: 700;
    color: var(--primary-hover);
    font-size: 1.15rem;
}

/* Outputs Box */
.simulator-outputs {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}
.output-box {
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid rgba(255, 255, 255, 0.03);
    padding: 1.5rem;
    border-radius: 14px;
    text-align: center;
    transition: var(--transition);
}
.output-box:hover {
    transform: translateY(-2px);
}
.output-box.savings {
    border-left: 4px solid var(--primary);
    box-shadow: 0 0 15px rgba(0, 255, 102, 0.05);
}
.output-box.time {
    border-left: 4px solid var(--secondary);
    box-shadow: 0 0 15px rgba(250, 204, 21, 0.05);
}
.output-label {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.3rem;
}
.output-value {
    display: block;
    font-family: var(--font-title);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.1;
}
.output-box.savings .output-value { color: var(--primary); text-shadow: 0 0 10px var(--primary-glow); }
.output-box.time .output-value { color: var(--secondary); text-shadow: 0 0 10px var(--secondary-glow); }
.output-sub {
    font-size: 0.75rem;
    color: var(--text-muted);
}

/* ==========================================================================
   INTERFACE SECTION (PHOTOSHOP EXTENSION MOCKUP)
   ========================================================================== */
.interface-section {
    margin-bottom: 5.5rem;
}
.interface-grid {
    display: grid;
    grid-template-columns: 0.95fr 1.05fr;
    gap: 3.5rem;
    align-items: center;
}
.interface-media {
    display: flex;
    justify-content: center;
    align-items: center;
    perspective: 1200px;
}
.interface-img-wrapper-3d {
    position: relative;
    overflow: visible;
    border-radius: 20px;
    border: 1px solid var(--glass-border);
    background: rgba(255, 255, 255, 0.01);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.5);
    transition: all 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
    transform-style: preserve-3d;
    max-width: 100%;
}
.interface-img-clipper {
    position: relative;
    overflow: hidden;
    border-radius: 19px;
    width: 100%;
    height: 100%;
    transform-style: preserve-3d;
}
.interface-img-naked {
    width: auto;
    height: auto;
    max-width: 100%;
    max-height: 480px; /* Slightly enlarged */
    display: block;
    object-fit: contain;
    transition: transform 0.6s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.interface-img-wrapper-3d:hover {
    transform: rotateY(-10deg) rotateX(6deg) scale(1.04);
    border-color: rgba(0, 255, 102, 0.25);
    box-shadow: 
        -25px 25px 55px rgba(0, 255, 102, 0.18),
        0 15px 35px rgba(0, 0, 0, 0.6);
}
.interface-img-wrapper-3d:hover .interface-img-naked {
    transform: translateZ(20px) scale(1.02);
}
.interface-img-clipper::after {
    content: '';
    position: absolute;
    top: 0;
    left: -150%;
    width: 60%;
    height: 100%;
    background: linear-gradient(
        to right,
        rgba(255, 255, 255, 0) 0%,
        rgba(255, 255, 255, 0.02) 20%,
        rgba(255, 255, 255, 0.35) 50%,
        rgba(255, 255, 255, 0.02) 80%,
        rgba(255, 255, 255, 0) 100%
    );
    transform: skewX(-25deg);
    pointer-events: none;
    animation: lightSweep 4.5s infinite ease-in-out;
}

@keyframes lightSweep {
    0% {
        left: -150%;
    }
    30% {
        left: 150%;
    }
    100% {
        left: 150%;
    }
}
.interface-title {
    font-family: var(--font-title);
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.25;
    margin-bottom: 1.2rem;
}
.interface-desc {
    color: var(--text-muted);
    font-size: 1.05rem;
    margin-bottom: 1.8rem;
}

/* ==========================================================================
   EXTENSION COMPARTMENTS GRID SECTION
   ========================================================================== */
.compartments-section {
    margin-bottom: 5.5rem;
}
.composition-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr); /* Compact 6-column layout to save vertical space */
    gap: 1rem;
    margin-top: 2rem;
    align-items: stretch; /* Stretch cards to have uniform height on the same row */
}
.comp-card {
    overflow: hidden;
    position: relative;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    background: var(--glass-bg);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    display: flex;
    flex-direction: column;
    transition: var(--transition);
    height: 100%; /* Makes all cards in a row have identical height */
}
.comp-card:hover {
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(0, 255, 102, 0.12);
    transform: translateY(-3px);
}
.comp-img-wrapper {
    position: relative;
    width: 100%;
    height: 80px; /* Reduced uniform height for all images */
    background: rgba(0, 0, 0, 0.35); /* Translucent dark background */
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0.4rem;
    border-bottom: 1px solid var(--glass-border);
    overflow: hidden;
    cursor: pointer;
}
.comp-img {
    max-width: 100%;
    max-height: 100%;
    object-fit: contain; /* Fitting image entirely without crop */
    width: auto;
    height: auto;
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.comp-card:hover .comp-img {
    transform: scale(1.08);
}
.comp-info {
    padding: 0.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    flex-grow: 1; /* Pushes content down uniformly */
}
.comp-badge {
    align-self: flex-start;
    font-size: 0.6rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    display: flex;
    align-items: center;
    gap: 0.2rem;
}
.comp-title {
    font-family: var(--font-title);
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-main);
}
.comp-desc {
    color: var(--text-muted);
    font-size: 0.75rem;
    line-height: 1.35;
}

/* Pricing separator */
.cta-separator {
    display: flex;
    align-items: center;
    text-align: center;
    width: 100%;
    margin: 1.2rem 0;
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 700;
}
.cta-separator::before, .cta-separator::after {
    content: '';
    flex: 1;
    border-bottom: 1px solid var(--glass-border);
}
.cta-separator::before {
    margin-right: .75rem;
}
.cta-separator::after {
    margin-left: .75rem;
}
.cta-separator span {
    background: #080a0f;
    padding: 0 0.5rem;
    border-radius: 4px;
}

/* ==========================================================================
   FEATURES GRID (WHY CHOOSE AFFICHE MINUTE)
   ========================================================================== */
.features-section {
    margin-bottom: 5.5rem;
}
.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.feature-card {
    padding: 2.2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.feature-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    font-weight: 800;
    font-size: 1.3rem;
    box-shadow: var(--shadow-sm);
}
.feature-title {
    font-family: var(--font-title);
    font-size: 1.3rem;
    font-weight: 700;
}
.feature-text {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================================================
   HOW IT WORKS SECTION
   ========================================================================== */
.how-it-works {
    margin-bottom: 5.5rem;
}
.steps-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    position: relative;
}
.step-card {
    position: relative;
    padding: 2.5rem 1.5rem 1.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.01);
    border: 1px solid var(--glass-border);
    border-radius: 16px;
    text-align: center;
    transition: var(--transition);
}
.step-card:hover {
    transform: translateY(-5px);
    border-color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 255, 102, 0.1);
}
.step-num {
    position: absolute;
    top: -20px;
    left: 50%;
    transform: translateX(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: var(--bg-primary);
    font-family: var(--font-title);
    font-size: 1.3rem;
    font-weight: 800;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 0 15px var(--primary-glow);
}
.step-title {
    font-family: var(--font-title);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
}
.step-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ==========================================================================
   SHOWCASE GRID (FILTERABLE GALLERY)
   ========================================================================== */
.showcase-section {
    margin-bottom: 5.5rem;
}
.showcase-filters {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.8rem;
    margin-bottom: 2.5rem;
}
.filter-btn {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    padding: 0.55rem 1.4rem;
    border-radius: 30px;
    font-size: 0.9rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition);
}
.filter-btn:hover {
    color: var(--text-main);
    border-color: rgba(0, 255, 102, 0.3);
}
.filter-btn.active {
    background: linear-gradient(135deg, var(--primary), #00ffcc);
    border-color: transparent;
    color: var(--bg-primary);
    font-weight: 700;
    box-shadow: 0 0 15px var(--primary-glow);
}

.showcase-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
}
.template-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.template-img-container {
    position: relative;
    width: 100%;
    padding-top: 135%;
    background: var(--bg-tertiary);
    overflow: hidden;
}
.template-img {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s cubic-bezier(0.16, 1, 0.3, 1);
}
.template-overlay {
    position: absolute;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(2, 3, 4, 0.85);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    transition: var(--transition);
    backdrop-filter: blur(4px);
    -webkit-backdrop-filter: blur(4px);
}
.zoom-icon {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary);
    color: var(--bg-primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transform: scale(0.8);
    transition: var(--transition);
    cursor: pointer;
    box-shadow: 0 0 10px var(--primary-glow);
}
.template-card:hover .template-img {
    transform: scale(1.05);
}
.template-card:hover .template-overlay {
    opacity: 1;
}
.template-card:hover .zoom-icon {
    transform: scale(1);
}

.template-info {
    padding: 1.5rem;
}
.template-tag {
    display: inline-block;
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 0.6rem;
}
.tag-event { background: rgba(0, 255, 102, 0.12); color: #00ff88; border: 1px solid rgba(0, 255, 102, 0.3); }
.tag-food { background: rgba(250, 204, 21, 0.12); color: #facc15; border: 1px solid rgba(250, 204, 21, 0.3); }
.tag-corp { background: rgba(0, 255, 255, 0.12); color: #00ffff; border: 1px solid rgba(0, 255, 255, 0.3); }
.tag-sport { background: rgba(57, 255, 20, 0.12); color: #39ff14; border: 1px solid rgba(57, 255, 20, 0.3); }

.template-title {
    font-family: var(--font-title);
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.4rem;
}
.template-details {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.3rem;
}
.template-details i {
    color: var(--primary);
    text-shadow: 0 0 5px var(--primary-glow);
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */
.testimonials-section {
    margin-bottom: 5.5rem;
    overflow: hidden;
}
.testimonials-marquee {
    overflow: hidden;
    width: 100vw;
    position: relative;
    left: 50%;
    margin-left: -50vw;
    padding: 1.5rem 0;
    mask-image: linear-gradient(to right, transparent, white 15%, white 85%, transparent);
    -webkit-mask-image: linear-gradient(to right, transparent, white 15%, white 85%, transparent);
}
.marquee-track {
    display: flex;
    width: max-content;
}
.testimonials-marquee.scroll-left .marquee-track {
    animation: scroll-marquee-left 35s linear infinite;
}
.testimonials-marquee.scroll-right .marquee-track {
    animation: scroll-marquee-right 35s linear infinite;
}
.testimonials-marquee:hover .marquee-track {
    animation-play-state: paused;
}
.marquee-group {
    display: flex;
    gap: 2rem;
    padding-right: 2rem;
    flex-shrink: 0;
}
.testimonials-marquee .testimonial-card {
    width: 420px;
    padding: 1.5rem 1.8rem;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
    flex-shrink: 0;
    border-radius: 16px;
    background: var(--glass-bg);
    border: 1px solid var(--glass-border);
    box-shadow: var(--shadow-lg);
    transition: var(--transition);
}
.testimonials-marquee .testimonial-card:hover {
    border-color: var(--glass-border-hover);
    box-shadow: 0 15px 35px rgba(0, 255, 102, 0.08);
    transform: translateY(-2px);
}
.testimonial-verified-badge {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 0.2rem;
}
.wa-badge {
    background: rgba(37, 211, 102, 0.12);
    border: 1px solid rgba(37, 211, 102, 0.25);
    color: #25D366;
    font-size: 0.65rem;
    font-weight: 700;
    padding: 3px 8px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.font-avatar-green {
    color: #25D366 !important;
}
.font-avatar-blue {
    color: #00e5ff !important;
}
.font-avatar-purple {
    color: #bd00ff !important;
}
.font-avatar-yellow {
    color: #ffeb3b !important;
}
.stars-rating {
    color: var(--secondary);
    display: flex;
    gap: 0.2rem;
    text-shadow: 0 0 8px rgba(250, 204, 21, 0.4);
}
.testimonial-quote {
    font-size: 0.98rem;
    font-style: italic;
    color: var(--text-main);
    line-height: 1.55;
}
.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-top: auto;
}
.author-avatar {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    border: 1px solid var(--glass-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.3rem;
    color: var(--primary);
}
.author-name {
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 700;
}
.author-role {
    font-size: 0.8rem;
    color: var(--text-muted);
}

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

/* ==========================================================================
   AUDIENCE SECTION
   ========================================================================== */
.audience-section {
    margin-bottom: 5.5rem;
}
.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
.audience-card {
    padding: 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.2rem;
}
.audience-icon {
    font-size: 2.2rem;
}
.audience-title {
    font-family: var(--font-title);
    font-size: 1.2rem;
    font-weight: 700;
}
.audience-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}

/* ==========================================================================
   PRICING / OFFER
   ========================================================================== */
.pricing-section {
    margin-bottom: 4rem;
}
.pricing-card-wrapper {
    max-width: 900px;
    margin: 0 auto;
}
.premium-card {
    position: relative;
    padding: 1.5rem 2rem;
    text-align: center;
    border-top: 4px solid var(--primary);
    box-shadow: 0 0 40px rgba(0, 255, 102, 0.08);
}
.premium-card:hover {
    box-shadow: 0 0 50px rgba(0, 255, 102, 0.18);
}
.card-badge {
    position: absolute;
    top: -16px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--secondary), #ca8a04);
    color: var(--bg-primary);
    padding: 0.3rem 1.2rem;
    border-radius: 30px;
    font-size: 0.8rem;
    font-weight: 800;
    letter-spacing: 1px;
    box-shadow: 0 0 15px var(--secondary-glow);
}
.price-block-vertical {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: 0.2rem;
    margin-top: 0.5rem;
    margin-bottom: 0.8rem;
}
.price-old-small {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--text-muted);
    text-decoration: line-through;
}
.price-new-large {
    font-size: 4.6rem;
    font-weight: 900;
    color: var(--primary);
    text-shadow: 0 0 35px var(--primary-glow);
    line-height: 1;
    letter-spacing: -2px;
    white-space: nowrap !important; /* Force pricing text to stay on a single line */
}
.pricing-meta-badges {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.6rem;
    flex-wrap: wrap;
    margin: 0.8rem 0 1.2rem 0;
}
.meta-badge {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid var(--glass-border);
    padding: 0.35rem 0.8rem;
    border-radius: 50px;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-main);
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    transition: var(--transition);
}
.meta-badge:hover {
    background: rgba(0, 255, 102, 0.05);
    border-color: rgba(0, 255, 102, 0.3);
    transform: translateY(-1px);
}
.meta-badge i {
    color: var(--primary);
    font-size: 0.8rem;
    text-shadow: 0 0 5px var(--primary-glow);
}

.pricing-features {
    list-style: none;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.6rem 2rem;
    text-align: left;
    margin-bottom: 1.5rem;
}
.pricing-features li {
    font-size: 0.95rem;
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    color: var(--text-muted);
}
.pricing-features li i {
    color: var(--primary);
    margin-top: 0.2rem;
    text-shadow: 0 0 5px var(--primary-glow);
}
.pricing-features li strong {
    color: var(--text-main);
}

.pricing-cta-block {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
    width: 100%;
}
#chariow-widget {
    width: 100%;
}
.secure-checkout-notice {
    font-size: 0.8rem;
    color: var(--text-muted);
    display: flex;
    align-items: center;
    gap: 0.4rem;
}
.secure-checkout-notice i {
    color: var(--primary);
}

/* ==========================================================================
   FAQ SECTION (ACCORDION)
   ========================================================================== */
.faq-section {
    margin-bottom: 3rem;
}
.faq-accordion-container {
    max-width: 750px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}
.faq-item {
    border-radius: 12px;
    padding: 0;
    overflow: hidden;
}
.faq-question {
    width: 100%;
    padding: 1.5rem;
    background: transparent;
    border: none;
    color: var(--text-main);
    font-weight: 700;
    font-size: 1.05rem;
    text-align: left;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: var(--transition);
}
.faq-question:hover {
    background: rgba(0, 255, 102, 0.02);
    color: var(--primary-hover);
}
.faq-icon {
    font-size: 0.9rem;
    color: var(--primary);
    transition: transform 0.3s ease;
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    background: rgba(255, 255, 255, 0.01);
}
.faq-answer p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Open State */
.faq-item.open {
    border-color: rgba(0, 255, 102, 0.2);
}
.faq-item.open .faq-icon {
    transform: rotate(45deg);
    color: var(--secondary);
}
.faq-item.open .faq-answer {
    max-height: 250px;
}

/* ==========================================================================
   SECTION AIDE & TUTOS - HELP LAYOUT & VIDEO GRID
   ========================================================================== */
.help-layout {
    display: flex;
    flex-direction: column;
    gap: 3rem;
    margin-top: 1rem;
}

.guide-installation-panel {
    padding: 2.5rem;
}
.help-sub-title {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    border-bottom: 1px solid var(--glass-border);
    padding-bottom: 0.8rem;
}
.help-sub-title i {
    color: var(--primary);
}

.guide-steps-horizontal {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    margin-top: 1rem;
}
.guide-step-box {
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    position: relative;
}
.guide-step-box h4 {
    font-family: var(--font-title);
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-main);
    margin-top: 0.4rem;
}
.guide-step-box p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
}
.guide-step-box code {
    background: var(--bg-tertiary);
    padding: 0.05rem 0.3rem;
    border-radius: 4px;
    font-family: monospace;
    color: var(--primary-hover);
}
.step-badge {
    width: 28px;
    height: 28px;
    border-radius: 50%;
    background: rgba(0, 255, 102, 0.1);
    border: 1px solid var(--primary);
    color: var(--primary);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.85rem;
    font-weight: 800;
}

/* Tutorials Course Grid */
.help-videos-container {
    display: flex;
    flex-direction: column;
}
.help-videos-desc {
    color: var(--text-muted);
    font-size: 1rem;
    margin-bottom: 2rem;
}
.video-tutorials-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr); /* 2 columns for comfortable watching */
    gap: 2rem;
}
.video-card {
    overflow: hidden;
    display: flex;
    flex-direction: column;
    border-radius: 16px;
    transition: var(--transition);
}
.video-iframe-wrapper {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background: #000000;
}
.video-iframe-wrapper iframe {
    position: absolute;
    top: 0; left: 0;
    width: 100%;
    height: 100%;
    border: 0;
}
.video-info {
    padding: 1.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.4rem;
    background: rgba(8, 10, 15, 0.4);
}
.video-step {
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}
.video-info h4 {
    font-family: var(--font-title);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
}
.video-card:hover {
    border-color: var(--primary);
    box-shadow: 0 5px 25px rgba(0, 255, 102, 0.08);
}

/* Support Help Card Footer */
.help-support-footer-card {
    padding: 2.5rem;
}
.support-footer-grid {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}
.support-footer-text h3 {
    font-family: var(--font-title);
    font-size: 1.4rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.support-footer-text p {
    color: var(--text-muted);
    font-size: 0.95rem;
    max-width: 600px;
}

/* ==========================================================================
   SECTION MISES À JOUR - TIMELINE
   ========================================================================== */
.updates-timeline-container {
    padding: 3rem 2.5rem;
    margin-top: 2rem;
}
.timeline {
    position: relative;
    border-left: 2px solid var(--bg-tertiary);
    padding-left: 2rem;
    margin-left: 1rem;
    display: flex;
    flex-direction: column;
    gap: 3rem;
}
.timeline-item {
    position: relative;
}
.timeline-dot {
    position: absolute;
    left: calc(-2rem - 6px);
    top: 6px;
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 10px var(--primary);
}
.timeline-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 0.8rem;
}
.version-badge {
    background: var(--primary);
    color: var(--bg-primary);
    padding: 0.25rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 4px;
    letter-spacing: 0.5px;
    box-shadow: 0 0 10px var(--primary-glow);
}
.timeline-date {
    color: var(--text-muted);
    font-size: 0.85rem;
    font-weight: 600;
}
.timeline-content h3 {
    font-family: var(--font-title);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-main);
}
.timeline-content p {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

/* --- Updates Gallery & Compositions --- */
.update-gallery {
    margin: 2rem 0;
}
.update-gallery h4, .update-download-section h4 {
    font-family: var(--font-title);
    font-size: 1rem;
    font-weight: 700;
    color: var(--text-main);
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.update-gallery h4 i, .update-download-section h4 i {
    color: var(--primary);
}
.update-gallery-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(130px, 1fr));
    gap: 1rem;
}
.update-gallery-item {
    position: relative;
    border-radius: 12px;
    border: 1px solid var(--glass-border);
    overflow: hidden;
    aspect-ratio: 3/4.2;
    cursor: pointer;
    background: rgba(255, 255, 255, 0.01);
    transition: transform 0.4s cubic-bezier(0.165, 0.84, 0.44, 1), 
                border-color 0.3s ease, 
                box-shadow 0.3s ease;
}
.update-gallery-item img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease, filter 0.3s ease;
    filter: brightness(0.9);
}
.update-gallery-item:hover {
    transform: translateY(-4px) scale(1.03);
    border-color: var(--primary);
    box-shadow: 0 8px 25px rgba(0, 255, 102, 0.15);
}
.update-gallery-item:hover img {
    transform: scale(1.05);
    filter: brightness(1.05);
}

/* --- Updates Download Action Buttons --- */
.update-download-section {
    margin-top: 2rem;
    border-top: 1px dashed var(--glass-border);
    padding-top: 1.5rem;
}
.update-download-actions {
    display: flex;
    gap: 1.2rem;
    flex-wrap: wrap;
    margin-top: 0.8rem;
}
.download-btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.8rem;
    padding: 0.9rem 1.8rem;
    font-size: 0.95rem;
    font-weight: 700;
    border-radius: 8px;
    transition: all 0.3s cubic-bezier(0.165, 0.84, 0.44, 1);
    cursor: pointer;
    text-decoration: none;
}
.win-btn {
    background: linear-gradient(135deg, #0078d4, #005a9e);
    color: #ffffff;
    border: 1px solid rgba(0, 120, 212, 0.2);
    box-shadow: 0 4px 15px rgba(0, 120, 212, 0.2);
}
.win-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0, 120, 212, 0.4);
    filter: brightness(1.1);
    color: #ffffff;
}
.mac-btn {
    background: rgba(255, 255, 255, 0.08);
    border: 1px solid var(--glass-border);
    color: var(--text-main);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
}
.mac-btn:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.4);
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(255, 255, 255, 0.1);
}

/* ==========================================================================
   SECTION RESSOURCES - DOWNLOAD CARDS & PACKS
   ========================================================================== */
.resources-subheader {
    margin-top: 3rem;
    margin-bottom: 1.5rem;
    display: flex;
    flex-direction: column;
    gap: 0.3rem;
}
.resources-subheader h3 {
    font-family: var(--font-title);
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-main);
    display: flex;
    align-items: center;
    gap: 0.6rem;
}
.resources-sub-desc {
    color: var(--text-muted);
    font-size: 0.85rem;
}

.resources-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-top: 1rem;
    margin-bottom: 2.5rem;
}
.resource-card {
    position: relative;
    padding: 2.2rem 2rem;
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.resource-badge {
    position: absolute;
    top: 1.2rem;
    right: 1.2rem;
    padding: 0.25rem 0.6rem;
    border-radius: 4px;
    font-size: 0.65rem;
    font-weight: 800;
    letter-spacing: 0.5px;
}
.badge-premium {
    background: rgba(250, 204, 21, 0.12);
    color: #facc15;
    border: 1px solid rgba(250, 204, 21, 0.3);
}
.badge-free {
    background: rgba(0, 255, 102, 0.12);
    color: #00ff88;
    border: 1px solid rgba(0, 255, 102, 0.3);
}
.badge-upcoming {
    background: rgba(255, 255, 255, 0.05);
    color: var(--text-muted);
    border: 1px solid rgba(255, 255, 255, 0.15);
}
.resource-price {
    font-family: var(--font-title);
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--primary);
    margin-top: auto;
    margin-bottom: 0.3rem;
    text-shadow: 0 0 15px var(--primary-glow);
}

.resource-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--bg-primary);
    font-weight: 800;
    font-size: 1.3rem;
}
.resource-title {
    font-family: var(--font-title);
    font-size: 1.25rem;
    font-weight: 700;
    text-transform: capitalize;
}
.resource-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
    flex-grow: 1;
}

/* Upcoming section */
.upcoming-resources-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.2rem;
    margin-top: 1rem;
    margin-bottom: 4rem;
}
.resource-card.upcoming {
    opacity: 0.6;
    cursor: not-allowed;
    position: relative;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
    padding: 1.5rem;
    border-color: rgba(255, 255, 255, 0.03);
    text-align: left;
    transition: var(--transition);
}
.resource-card.upcoming:hover {
    border-color: rgba(255, 255, 255, 0.08);
    background: rgba(255, 255, 255, 0.01);
}
.upcoming-lock {
    font-size: 1.2rem;
    color: var(--text-muted);
    margin-bottom: 0.2rem;
}
.upcoming-title {
    font-family: var(--font-title);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-main);
}
.upcoming-desc {
    font-size: 0.75rem;
    color: var(--text-muted);
    line-height: 1.4;
}

.font-suggestions {
    padding: 2.5rem;
}
.font-suggestions h3 {
    font-family: var(--font-title);
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 1rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.font-suggestions p {
    color: var(--text-muted);
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}
.font-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
}
.font-tag {
    background: var(--bg-tertiary);
    border: 1px solid var(--glass-border);
    padding: 0.5rem 1rem;
    border-radius: 8px;
    font-size: 0.85rem;
    color: var(--text-muted);
}
.font-tag strong {
    color: var(--text-main);
}

/* ==========================================================================
   FOOTER SECTION
   ========================================================================== */
.footer-container {
    background: #000000;
    border-top: 1px solid var(--glass-border);
    padding: 4.5rem 2rem 2rem 2rem;
    margin-top: 5rem;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    margin-bottom: 3.5rem;
}
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}
.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-title);
    font-size: 1.4rem;
    font-weight: 800;
    letter-spacing: -0.5px;
}
.footer-logo-img {
    height: 28px;
    width: auto;
    object-fit: contain;
    filter: drop-shadow(0 0 6px rgba(0, 255, 102, 0.4));
}
.footer-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    max-width: 320px;
}
.footer-socials {
    display: flex;
    gap: 0.8rem;
}
.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--bg-tertiary);
    border: 1px solid var(--glass-border);
    color: var(--text-muted);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
}
.footer-socials a:hover {
    color: var(--bg-primary);
    border-color: var(--primary);
    background: var(--primary);
    box-shadow: 0 0 12px var(--primary);
}

.footer-content h4 {
    font-family: var(--font-title);
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 1.2rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--text-main);
}
.footer-links ul, .footer-support ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.8rem;
}
.footer-links a, .footer-support a {
    color: var(--text-muted);
    font-size: 0.9rem;
}
.footer-links a:hover, .footer-support a:hover {
    color: var(--primary-hover);
    padding-left: 2px;
}

.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    padding-top: 2rem;
    border-top: 1px solid var(--glass-border);
    text-align: center;
    color: var(--text-muted);
    font-size: 0.8rem;
}

/* ==========================================================================
   IMAGE ZOOM MODAL SYSTEM
   ========================================================================== */
.zoom-modal {
    position: fixed;
    top: 0; left: 0; right: 0; bottom: 0;
    background: rgba(0, 0, 0, 0.97);
    z-index: 2000;
    display: none;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    opacity: 0;
    transition: opacity 0.3s ease;
}
.zoom-modal.open {
    display: flex;
    opacity: 1;
}
.zoom-modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: white;
    font-size: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: var(--transition);
}
.zoom-modal-close:hover {
    background: var(--primary);
    color: var(--bg-primary);
    transform: scale(1.1);
    box-shadow: 0 0 15px var(--primary-glow);
}
.zoom-modal-img {
    max-width: 100%;
    max-height: 90vh;
    object-fit: contain;
    border-radius: 8px;
    border: 1px solid var(--glass-border);
    box-shadow: 0 0 50px rgba(0, 0, 0, 0.95);
    transform: scale(0.9);
    transition: transform 0.3s ease;
}
.zoom-modal.open .zoom-modal-img {
    transform: scale(1);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
    .hero-title {
        font-size: 3rem;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .upcoming-resources-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .guide-steps-horizontal {
        grid-template-columns: repeat(2, 1fr);
    }
    .composition-grid {
        grid-template-columns: repeat(4, 1fr);
    }
}

@media (max-width: 900px) {
    .navbar-container {
        padding: 1rem;
    }
    .navbar-container.scrolled {
        padding: 0.6rem 1rem;
    }
    .mobile-toggle {
        display: block;
        z-index: 1001;
    }
    
    .nav-menu {
        position: fixed;
        top: 0;
        right: -100%;
        width: 280px;
        height: 100vh;
        background: var(--bg-secondary);
        flex-direction: column;
        align-items: flex-start;
        justify-content: flex-start;
        padding: 6rem 2rem 2rem 2rem;
        border-radius: 0;
        border-left: 1px solid var(--glass-border);
        transition: right 0.4s cubic-bezier(0.16, 1, 0.3, 1);
        backdrop-filter: blur(25px);
        -webkit-backdrop-filter: blur(25px);
        gap: 1rem;
    }
    .nav-menu.open {
        right: 0;
    }
    .nav-link {
        width: 100%;
        padding: 0.8rem 1rem;
        font-size: 1.05rem;
    }
    .nav-link.active {
        border-bottom: none;
        border-left: 3px solid var(--primary);
        border-radius: 0 10px 10px 0;
    }
    .nav-actions {
        gap: 0.5rem;
    }
    .nav-cta-btn {
        padding: 0.6rem 1.2rem;
        font-size: 0.85rem;
    }
    
    .hero-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    .hero-ctas {
        justify-content: center;
    }
    .hero-features-sub {
        justify-content: center;
    }
    .simulator-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    
    .interface-grid {
        grid-template-columns: 1fr;
        text-align: center;
    }
    .interface-img-wrapper-3d {
        max-height: 340px; /* Slightly enlarged */
        margin: 0 auto 1.5rem auto;
    }
    .interface-img-naked {
        max-height: 340px; /* Match height */
    }
    
    .composition-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1rem;
    }
    
    .video-tutorials-grid {
        grid-template-columns: 1fr;
    }
    
    .support-footer-grid {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
        gap: 2.5rem;
    }
    .footer-brand {
        grid-column: span 2;
        text-align: center;
        align-items: center;
    }
    .footer-desc {
        max-width: 100%;
    }
}

@media (max-width: 768px) {
    .content-wrapper {
        padding-top: 7.8rem; /* More space to prevent header from overlapping title */
    }
    .section-title {
        font-size: 2rem;
    }
    .features-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 0.8rem;
    }
    .feature-card {
        padding: 1.2rem 1rem;
        gap: 0.8rem;
    }
    .feature-title {
        font-size: 1rem;
    }
    .feature-text {
        font-size: 0.82rem;
    }
    .steps-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
    }
    .step-card {
        padding: 1.8rem 0.6rem 0.8rem 0.6rem;
        border-radius: 12px;
    }
    .step-num {
        width: 32px;
        height: 32px;
        font-size: 0.95rem;
        top: -16px;
    }
    .step-title {
        font-size: 0.82rem;
        margin-bottom: 0;
    }
    .showcase-grid {
        grid-template-columns: 1fr;
    }
    .audience-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 0.8rem;
    }
    .audience-card {
        padding: 1.2rem 0.6rem;
        gap: 0.6rem;
        border-radius: 12px;
    }
    .audience-icon {
        font-size: 1.6rem;
    }
    .audience-title {
        font-size: 0.8rem;
    }
    .resources-grid {
        grid-template-columns: 1fr;
    }
    .composition-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    .pricing-features {
        grid-template-columns: 1fr;
        gap: 0.8rem;
    }
    .price-new-large {
        font-size: clamp(3.8rem, 12vw, 4.6rem) !important;
        white-space: nowrap !important;
    }
    .price-old-small {
        font-size: 1.8rem !important;
    }
    .update-gallery-grid {
        grid-template-columns: repeat(auto-fill, minmax(100px, 1fr));
        gap: 0.8rem;
    }
    .update-download-actions {
        flex-direction: column;
        gap: 0.8rem;
    }
    .update-download-actions .download-btn {
        width: 100%;
    }
}

@media (max-width: 480px) {
    .cta-text-sub {
        display: none;
    }
    .nav-logo .logo-link {
        font-size: 1.15rem;
    }
    .nav-cta-btn {
        padding: 0.5rem 0.8rem;
        font-size: 0.8rem;
    }
    .hero-title {
        font-size: 2.2rem;
    }
    .hero-subtitle {
        font-size: 1rem;
    }
    .hero-ctas {
        flex-direction: row;
        gap: 0.5rem;
    }
    .hero-ctas .btn {
        flex: 1;
        font-size: clamp(0.7rem, 3.2vw, 0.85rem);
        padding: 0.8rem 0.4rem;
        min-width: 0;
        white-space: nowrap;
    }
    .floating-badge {
        display: none;
    }
    .timeline {
        padding-left: 1.2rem;
        margin-left: 0.5rem;
    }
    .timeline-dot {
        left: calc(-1.2rem - 6px);
    }
    .guide-steps-horizontal {
        grid-template-columns: 1fr;
    }
    .upcoming-resources-grid {
        grid-template-columns: 1fr;
    }
    .sales-banner {
        padding: 0.4rem 0.8rem;
        margin-bottom: 1.5rem;
        max-width: 100%;
        box-sizing: border-box;
    }
    .sales-text {
        font-size: 0.76rem;
    }
    .sales-count {
        font-size: 0.95rem;
    }
    .live-indicator {
        margin-right: 8px;
        width: 8px;
        height: 8px;
    }
    .live-indicator::after {
        width: 8px;
        height: 8px;
    }
    .premium-card {
        padding: 1.2rem 1rem !important;
    }
    .price-block-vertical {
        margin-top: 0.3rem !important;
        margin-bottom: 0.5rem !important;
        gap: 0.1rem !important;
    }
    .pricing-meta-badges {
        gap: 0.3rem !important;
        margin: 0.6rem 0 1rem 0 !important;
    }
    .meta-badge {
        padding: 0.25rem 0.5rem !important;
        font-size: 0.7rem !important;
    }
    .price-new-large {
        font-size: clamp(3rem, 12vw, 4.2rem) !important;
        white-space: nowrap !important;
    }
    .price-old-small {
        font-size: 1.6rem !important;
    }
    .testimonials-marquee .testimonial-card {
        width: 300px;
        padding: 1.2rem;
        gap: 0.6rem;
        border-radius: 12px;
    }
    .testimonial-quote {
        font-size: 0.88rem;
        line-height: 1.5;
    }
    .author-avatar {
        width: 38px;
        height: 38px;
        font-size: 1.1rem;
    }
    
    /* Interactive panel mockup smartphone overrides */
    .interface-img-wrapper-3d {
        max-height: 560px !important;
        width: 85vw !important;
        max-width: 290px !important;
        margin: 0 auto 1rem auto !important;
    }
    .interface-img-naked {
        max-height: 560px !important;
        width: 100% !important;
        object-fit: contain !important;
    }
    .panel-info-box-mobile {
        margin: 0.8rem auto 0 auto !important;
        padding: 6px 12px !important;
        max-width: 85vw !important;
        box-sizing: border-box !important;
    }
    .panel-info-box-mobile .info-box-header {
        margin-bottom: 3px !important;
    }
    .panel-info-box-mobile .info-box-tag {
        font-size: 0.58rem !important;
    }
    .panel-info-box-mobile .info-box-icon {
        font-size: 0.75rem !important;
    }
    .panel-info-box-mobile .info-box-title {
        font-size: 0.88rem !important;
        margin-bottom: 2px !important;
    }
    .panel-info-box-mobile .info-box-desc {
        font-size: 0.72rem !important;
        line-height: 1.3 !important;
    }
}

/* ==========================================================================
   PHOTOSHOP SIMULATOR WORKSPACE STYLING (FROZEN CANVAS, REACTIVE PANEL)
   ========================================================================== */
.ps-simulator-wrapper {
    margin: 2.5rem auto;
    width: 100%;
    max-width: 1024px;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    border-radius: 12px;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.8);
    border: 1px solid rgba(0, 255, 102, 0.1);
}

.ps-screenshot-container {
    position: relative;
    width: 100%;
    min-width: 1024px; /* Maintain scale for coordinate mapping */
    aspect-ratio: 1024 / 550;
    background: #141416;
}

.ps-screenshot-bg {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    pointer-events: none;
    filter: brightness(0.22) contrast(1.1) saturate(0.8);
}

.ps-iframe-overlay {
    position: absolute;
    /* coordinates of the panel in the 1024x550 mockup:
       Left X = 416 (40.625%)
       Width = 183px (17.871%)
       Top Y = 114 (20.727%)
       Height stretched down to 75% (412.5px instead of 314px)
    */
    left: 40.625%;
    width: 17.871%;
    top: 20.727%;
    height: 75%;
    z-index: 10;
}

.ps-panel-iframe {
    width: 100%;
    height: 100%;
    border: none;
    background: #08080a;
}

/* Floating interactive pointer styling pointing at the virtual extension panel (placed on the right, pointing left) */
.ps-helper-pointer {
    position: absolute;
    /* Positioned just to the right of the panel (panel right boundary is at 58.496%) */
    left: 60.5%;
    top: 32%;
    display: flex;
    align-items: center;
    gap: 8px;
    z-index: 20;
    pointer-events: none; /* Never blocks mouse events under it */
    animation: pointerFloat 2s ease-in-out infinite;
}

@keyframes pointerFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

.pointer-card {
    background: rgba(5, 5, 7, 0.95);
    border: 1.5px solid var(--primary, #00ff66);
    box-shadow: 0 0 20px rgba(0, 255, 102, 0.5);
    border-radius: 10px;
    padding: 10px 16px; /* Larger padding */
    color: #fff;
    font-family: 'Outfit', sans-serif;
    font-size: 13px; /* Increased font size */
    font-weight: 800; /* Bolder text */
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 10px;
}

.pointer-card i {
    color: var(--primary, #00ff66);
    font-size: 15px; /* Larger icon */
    animation: pulseIcon 1.5s infinite;
}

@keyframes pulseIcon {
    0%, 100% { transform: scale(1); }
    50% { transform: scale(1.2); }
}

.pointer-arrow {
    width: 0;
    height: 0;
    border-top: 8px solid transparent;
    border-bottom: 8px solid transparent;
    border-right: 12px solid var(--primary, #00ff66); /* Arrow pointing left */
    filter: drop-shadow(-2px 0 5px rgba(0, 255, 102, 0.5));
}

.pointer-pulse {
    width: 14px; /* Larger pulse ring */
    height: 14px;
    background: var(--primary, #00ff66);
    border-radius: 50%;
    position: relative;
    box-shadow: 0 0 0 0 rgba(0, 255, 102, 0.7);
    animation: pulseRing 1.5s infinite;
}

@keyframes pulseRing {
    0% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 255, 102, 0.7);
    }
    70% {
        transform: scale(1);
        box-shadow: 0 0 0 12px rgba(0, 255, 102, 0);
    }
    100% {
        transform: scale(0.95);
        box-shadow: 0 0 0 0 rgba(0, 255, 102, 0);
    }
}

/* ==========================================================================
   INTERACTIVE PANEL MOCKUP HOTSPOTS (GLOW & ZOOM EFFECTS WITH CALLOUT CARDS)
   ========================================================================== */
.panel-hotspot {
    position: absolute;
    border-radius: 8px;
    border: 1px solid rgba(0, 255, 102, 0);
    background: rgba(0, 255, 102, 0);
    cursor: pointer;
    z-index: 15;
    transition: all 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    pointer-events: auto;
    
    /* 3D layering - pop them out in front of the image base! */
    transform: translateZ(35px); 
    transform-style: preserve-3d;
}

/* Precise borders shown ONLY on mouse hover or active */
.panel-hotspot::before {
    content: '';
    position: absolute;
    inset: 0px;
    border-radius: inherit;
    border: 1.5px solid rgba(0, 255, 102, 0.6);
    opacity: 0; /* Fully invisible by default */
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
    box-shadow: 
        0 0 15px rgba(0, 255, 102, 0.4),
        inset 0 0 12px rgba(0, 255, 102, 0.15);
}

/* Hover Zoom & Highlight Glow */
.panel-hotspot:hover,
.panel-hotspot.active {
    background: rgba(0, 255, 102, 0.04);
    transform: translateZ(50px) scale(1.01) !important;
}

.panel-hotspot:hover::before,
.panel-hotspot.active::before {
    opacity: 1; /* Revealed only on mouse hover or active */
}

/* Callout wrapper */
.hotspot-callout {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    transform-style: preserve-3d;
}

/* Connector Line extending to the left */
.callout-connector {
    position: absolute;
    right: 100%;
    top: 50%;
    width: 0; /* Animates to 45px on hover */
    height: 1.5px;
    background: linear-gradient(to left, rgba(0, 255, 102, 0.8), rgba(0, 255, 102, 0));
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    pointer-events: none;
}

/* Connecting Dot at the panel edge */
.callout-connector::after {
    content: '';
    position: absolute;
    right: 0;
    top: -3px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--primary);
    box-shadow: 0 0 8px var(--primary);
}

/* Glassmorphic Callout Description Card on the left */
.callout-card {
    position: absolute;
    right: calc(100% + 45px); /* Floats 45px to the left of the image */
    top: 50%;
    transform: translateY(-50%) translateZ(25px) scale(0.9);
    width: 280px;
    padding: 16px 20px;
    border-radius: 14px;
    background: rgba(10, 11, 15, 0.9);
    border: 1.5px solid rgba(0, 255, 102, 0.15);
    backdrop-filter: blur(16px);
    -webkit-backdrop-filter: blur(16px);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.6), 
        0 0 20px rgba(0, 255, 102, 0.05);
    opacity: 0;
    transition: all 0.35s cubic-bezier(0.2, 0.8, 0.2, 1);
    text-align: left;
    pointer-events: auto;
}

/* Reveal Callout elements on hover or active */
.panel-hotspot:hover .callout-card,
.panel-hotspot.active .callout-card {
    opacity: 1;
    transform: translateY(-50%) translateZ(25px) scale(1);
    border-color: rgba(0, 255, 102, 0.4);
    box-shadow: 
        0 15px 35px rgba(0, 0, 0, 0.7), 
        0 0 25px rgba(0, 255, 102, 0.15);
}

.panel-hotspot:hover .callout-connector,
.panel-hotspot.active .callout-connector {
    opacity: 1;
    width: 45px;
}

/* Inside Callout Styling */
.callout-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.callout-tag {
    font-family: var(--font-title);
    font-size: 0.72rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 1.5px;
    text-transform: uppercase;
    text-shadow: 0 0 8px rgba(0, 255, 102, 0.35);
}

.callout-number {
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.45);
    text-shadow: 0 0 5px rgba(255, 255, 255, 0.1);
}

.callout-title {
    font-family: var(--font-title);
    font-size: 1.1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 6px 0;
}

.callout-desc {
    font-size: 0.82rem;
    color: var(--text-muted);
    line-height: 1.45;
    margin: 0;
}

/* Mobile Interactive Description Box (Hidden on Desktop) */
.panel-info-box-mobile {
    display: none;
    margin-top: 1.5rem;
    width: 100%;
    max-width: 400px;
    padding: 16px;
    border-radius: 12px;
    background: rgba(10, 11, 15, 0.85);
    border: 1.5px solid rgba(0, 255, 102, 0.2);
    box-shadow: 
        0 10px 25px rgba(0, 0, 0, 0.5), 
        0 0 15px rgba(0, 255, 102, 0.05);
    text-align: left;
    transition: all 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

.panel-info-box-mobile.pulse-active {
    animation: mobileBoxPulse 0.4s ease-out;
    border-color: var(--primary);
}

@keyframes mobileBoxPulse {
    0% { transform: scale(1); }
    50% { transform: scale(1.02); }
    100% { transform: scale(1); }
}

.info-box-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 8px;
}

.info-box-tag {
    font-family: var(--font-title);
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--primary);
    letter-spacing: 1px;
}

.info-box-icon {
    font-size: 0.95rem;
    color: var(--primary);
}

.info-box-title {
    font-family: var(--font-title);
    font-size: 1.05rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 6px 0;
}

.info-box-desc {
    font-size: 0.85rem;
    color: var(--text-muted);
    line-height: 1.4;
    margin: 0;
}

/* Responsive adjustments for hotspots and callouts */
@media (max-width: 1100px) {
    /* Slightly scale down the callout card size if viewport is tighter */
    .callout-card {
        width: 230px;
        padding: 12px 16px;
        right: calc(100% + 35px);
    }
    .panel-hotspot:hover .callout-connector,
    .panel-hotspot.active .callout-connector {
        width: 35px;
    }
}

@media (max-width: 950px) {
    /* Hide callout cards on tablet/mobile when layout is narrow */
    .hotspot-callout {
        display: none !important;
    }
    .interface-media {
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        width: 100% !important;
    }
    .panel-info-box-mobile {
        display: block !important; /* Show the mobile info box instead */
        margin: 1.5rem auto 0 auto !important;
    }
}

/* ==========================================================================
   HERO SOCIAL PROOF & CREATORS BANNER
   ========================================================================== */
.social-proof-banner {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 1.2rem;
    padding: 0.6rem 1.6rem;
    border-radius: 50px;
    background: linear-gradient(90deg, rgba(10, 26, 10, 0.65) 0%, rgba(0, 77, 38, 0.5) 100%);
    backdrop-filter: blur(12px);
    -webkit-backdrop-filter: blur(12px);
    border: 1px solid rgba(0, 255, 102, 0.25);
    box-shadow: 0 0 20px rgba(0, 255, 102, 0.12), inset 0 0 10px rgba(0, 255, 102, 0.05);
    margin-bottom: 2rem;
    transition: var(--transition);
    position: relative;
    z-index: 10;
}

.social-proof-banner:hover {
    transform: translateY(-2px);
    border-color: rgba(0, 255, 102, 0.45);
    box-shadow: 0 0 28px rgba(0, 255, 102, 0.35);
}

/* Unified Avatar Stack */
.social-proof-banner .avatar-stack {
    display: flex;
    align-items: center;
    position: relative;
}

.social-proof-banner .stack-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid #000000;
    margin-left: -10px;
    box-shadow: var(--shadow-sm);
    transition: var(--transition);
    position: relative;
    cursor: pointer;
}

.social-proof-banner .stack-avatar:first-child {
    margin-left: 0;
}

/* Highlight Main Creators in Stack */
.social-proof-banner .stack-avatar.creator-main {
    width: 38px;
    height: 38px;
    z-index: 5;
}

.social-proof-banner .stack-avatar.ring-orange {
    border: 2px solid #ff7700;
    box-shadow: 0 0 12px rgba(255, 119, 0, 0.55);
    z-index: 5;
}

.social-proof-banner .stack-avatar.ring-yellow {
    border: 2px solid var(--secondary);
    box-shadow: 0 0 12px rgba(250, 204, 21, 0.45);
    z-index: 6;
}

.social-proof-banner .stack-avatar:hover {
    transform: translateY(-4px) scale(1.18);
    z-index: 10;
    border-color: #ffffff;
    box-shadow: 0 0 15px rgba(255, 255, 255, 0.6);
}

.banner-text-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.social-proof-banner .live-indicator {
    margin-right: 0;
    margin-left: 12px;
}

/* Mobile Responsive */
@media (max-width: 600px) {
    .social-proof-banner {
        flex-direction: column;
        gap: 0.8rem;
        border-radius: 20px;
        padding: 0.8rem 1.2rem;
        width: 90%;
        max-width: 380px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .banner-text-wrapper {
        justify-content: center;
    }
}

/* Payment Retry & Video Help Buttons Styling */
.payment-retry-container {
    margin-top: 1.2rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.8rem;
    justify-content: center;
    width: 100%;
}
.btn-payment-retry, .btn-payment-help {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.5);
    padding: 0.6rem 1.2rem;
    border-radius: 8px;
    font-size: 0.8rem;
    font-weight: 600;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    text-decoration: none;
    transition: all 0.3s ease;
}
.btn-payment-retry:hover, .btn-payment-help:hover {
    background: rgba(0, 255, 102, 0.05);
    border-color: rgba(0, 255, 102, 0.3);
    color: var(--primary);
    box-shadow: 0 0 15px rgba(0, 255, 102, 0.15);
}
.btn-payment-retry i, .btn-payment-help i {
    transition: transform 0.4s ease;
}
.btn-payment-retry:hover i {
    transform: rotate(180deg);
}
.btn-payment-help:hover i {
    transform: scale(1.2);
}

/* ==========================================================================
   COUNTDOWN TIMER STYLES (PREMIUM GLASSMORPHIC DECAY & NEON GLOW)
   ========================================================================== */
.pricing-countdown-wrapper {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
    margin: 1.2rem 0;
    width: 100%;
}

.countdown-title {
    font-size: 0.8rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.6);
    text-transform: uppercase;
    letter-spacing: 1px;
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.countdown-container {
    display: flex;
    gap: 0.6rem;
    align-items: center;
    justify-content: center;
}

.countdown-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 10px;
    padding: 0.5rem 0.6rem;
    min-width: 55px;
    text-align: center;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
    backdrop-filter: blur(5px);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.countdown-item:hover {
    border-color: rgba(0, 255, 102, 0.2);
    transform: translateY(-2px);
}

.countdown-value {
    font-size: 1.3rem;
    font-weight: 800;
    color: var(--primary);
    text-shadow: 0 0 10px var(--primary-glow);
    display: block;
    line-height: 1.1;
}

.countdown-label {
    font-size: 0.6rem;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    font-weight: 600;
    display: block;
    margin-top: 0.2rem;
}

.countdown-separator {
    font-size: 1.2rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.3);
    animation: pulse-sep 1.5s infinite;
}

@keyframes pulse-sep {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.8; }
}

/* ==========================================================================
   ABOUT THE AUTHOR SECTION (PREMIUM CLASS & GLOW)
   ========================================================================== */
.author-section {
    padding: 60px 20px;
    max-width: 1000px;
    margin: 0 auto;
}

.author-container {
    display: flex;
    align-items: center;
    gap: 3rem;
    padding: 3rem;
    border-radius: 24px;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.08);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.4);
    overflow: hidden;
    backdrop-filter: blur(10px);
}

.author-image-wrapper {
    flex: 0 0 280px;
    height: 400px;
    border-radius: 20px;
    overflow: hidden;
    border: 2px solid rgba(0, 255, 102, 0.2);
    box-shadow: 0 10px 30px rgba(0, 255, 102, 0.1);
    transition: transform 0.3s ease, border-color 0.3s ease, box-shadow 0.3s ease;
}

.author-image-wrapper:hover {
    transform: scale(1.02);
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(0, 255, 102, 0.2);
}

.author-photo {
    width: 100%;
    height: 100%;
    display: block;
    object-fit: cover;
    object-position: top center;
}

.author-content {
    flex: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 1rem;
}

.author-badge {
    background: rgba(0, 0, 0, 0.6);
    border: 1px solid rgba(255, 255, 255, 0.1);
    color: #fff;
    padding: 0.4rem 1.2rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 700;
    letter-spacing: 1px;
    text-transform: uppercase;
}

.author-title {
    font-size: 2.2rem;
    font-weight: 800;
    line-height: 1.2;
    color: #fff;
}

.highlight-green {
    color: var(--primary);
    text-shadow: 0 0 20px var(--primary-glow);
}

.author-bio {
    font-size: 1.05rem;
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.7);
}

.author-bio strong {
    color: #fff;
    font-weight: 600;
}

/* Responsiveness for Author Section */
@media (max-width: 768px) {
    .author-container {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
        gap: 2rem;
    }
    
    .author-image-wrapper {
        flex: 0 0 240px;
        width: 240px;
        height: 240px;
        border-radius: 50%; /* Rounded crop avatar for mobile Safari */
    }
    
    .author-content {
        align-items: center;
    }
    
    .author-title {
        font-size: 1.8rem;
    }
    
    .author-bio {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}


