/* ==========================================================================
   DESIGN SYSTEM & VARIABLES - DESIGN TRACKER PREMIUM CHARCOAL & GOLD
   ========================================================================== */
:root {
    /* Color Palette (French Grey / Charcoal & Metallic Gold / Urgency Red) */
    --bg-primary: #121214;       /* Deep French Grey/Charcoal */
    --bg-secondary: #1a1a1e;     /* Card / Sidebar Background */
    --bg-tertiary: #252529;      /* Inputs, select, active items background */
    --border-color: #2d2d33;     /* Dark grey border */

    --primary: #bf953f;          /* Design Tracker Gold */
    --primary-hover: #d4af37;    /* Classic Gold */
    --primary-glow: rgba(191, 149, 63, 0.25);

    --secondary: #d90429;        /* Urgency Red */
    --secondary-hover: #ff2a4b;  /* Soft Red */
    --secondary-glow: rgba(217, 4, 41, 0.2);

    --accent: #bf953f;           /* Gold Accent */
    --accent-glow: rgba(191, 149, 63, 0.15);

    --success: #25a18e;          /* Teal/Turquoise for PAYÉ and relances */
    --success-glow: rgba(37, 161, 142, 0.15);

    --text-main: #f3f4f6;        /* Light Grey for readability */
    --text-muted: #8e95a5;       /* Muted French Grey/Slate */
    --text-dark: #121214;

    /* Glassmorphism Styles */
    --glass-bg: rgba(26, 26, 30, 0.85);
    --glass-border: rgba(191, 149, 63, 0.08);
    --glass-border-hover: rgba(191, 149, 63, 0.22);

    /* Shadows & Transitions */
    --shadow-sm: 0 4px 6px -1px rgba(0, 0, 0, 0.2), 0 2px 4px -1px rgba(0, 0, 0, 0.1);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.4), 0 4px 6px -2px rgba(0, 0, 0, 0.2);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.7), 0 10px 10px -5px rgba(0, 0, 0, 0.3);
    --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 (Gold 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 (GLOW EFFECTS)
   ========================================================================== */
.bg-blur {
    position: fixed;
    border-radius: 50%;
    filter: blur(160px);
    z-index: -1;
    pointer-events: none;
    opacity: 0.05;
    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: var(--success);
    opacity: 0.02;
    animation-delay: 4s;
}

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

/* ==========================================================================
   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(212, 175, 55, 0.06);
    transform: translateY(-2px);
}

.gradient-text {
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}
.text-glow {
    text-shadow: 0 0 15px rgba(212, 175, 55, 0.35);
}
.text-glow-gold {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.25);
}
.highlight {
    color: var(--primary);
    text-shadow: 0 0 10px rgba(212, 175, 55, 0.2);
}
.text-success {
    color: var(--success) !important;
}
.text-red {
    color: var(--secondary) !important;
}

/* Section 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;
    color: var(--text-main);
}
.section-description {
    color: var(--text-muted);
    font-size: 1.1rem;
}

/* Badges */
.badge {
    background: rgba(212, 175, 55, 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(--text-dark);
    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);
}
.badge-free {
    background: var(--success);
    color: var(--text-dark);
    padding: 0.25rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 4px;
}
.badge-upcoming {
    background: var(--bg-tertiary);
    color: var(--text-muted);
    padding: 0.25rem 0.6rem;
    font-size: 0.75rem;
    font-weight: 800;
    border-radius: 4px;
    border: 1px solid var(--border-color);
}

/* 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(--text-dark);
    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), #f0d575);
}
.btn-secondary {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    color: var(--text-main);
}
.btn-secondary:hover {
    background: rgba(212, 175, 55, 0.06);
    border-color: var(--primary);
    color: var(--primary-hover);
    transform: translateY(-3px);
    box-shadow: 0 0 15px rgba(212, 175, 55, 0.12);
}
.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);
    z-index: -1;
}
.btn-glow:hover::after {
    opacity: 0.7;
}

/* Gradients for features */
.bg-gradient-gold {
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: var(--text-dark);
}
.bg-gradient-red {
    background: linear-gradient(135deg, var(--secondary), var(--secondary-hover));
    color: var(--text-main);
}
.bg-gradient-grey {
    background: linear-gradient(135deg, var(--text-muted), #5a6275);
    color: var(--text-dark);
}

/* ==========================================================================
   HEADER & NAVBAR
   ========================================================================== */
.navbar-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    z-index: 1000;
    padding: 1.25rem 0;
    transition: var(--transition);
    background: transparent;
}
.navbar-container.scrolled {
    background: rgba(14, 15, 17, 0.85);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.8rem 0;
}
.navbar {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
}
.nav-logo .logo-link {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.logo-img {
    height: 38px;
    width: auto;
}
.logo-text {
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    color: var(--text-main);
}
.nav-menu {
    display: flex;
    list-style: none;
    gap: 1.8rem;
}
.nav-link {
    font-weight: 500;
    font-size: 0.95rem;
    color: var(--text-muted);
    padding: 0.5rem 0;
    position: relative;
}
.nav-link i {
    margin-right: 0.35rem;
    font-size: 0.9rem;
}
.nav-link:hover, .nav-link.active {
    color: var(--primary-hover);
}
.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--primary);
    transition: var(--transition);
}
.nav-link:hover::after, .nav-link.active::after {
    width: 100%;
}
.nav-actions {
    display: flex;
    align-items: center;
    gap: 1rem;
}
.mobile-toggle {
    display: none;
    background: none;
    border: none;
    color: var(--text-main);
    font-size: 1.5rem;
    cursor: pointer;
    padding: 0.2rem;
}

/* ==========================================================================
   PAGES / ROUTING TRANSITIONS
   ========================================================================== */
.content-wrapper {
    margin-top: 80px;
    min-height: calc(100vh - 80px);
}
.page-section {
    display: none;
    opacity: 0;
    transform: translateY(15px);
    transition: opacity 0.4s ease, transform 0.4s ease;
    padding: 4rem 1.5rem;
    max-width: 1200px;
    margin: 0 auto;
}
.page-section.active {
    display: block;
    opacity: 1;
    transform: translateY(0);
}

/* ==========================================================================
   HERO SECTION
   ========================================================================== */
.hero-section {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding: 2.5rem 0 4rem 0;
    position: relative;
}
.sales-banner {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    backdrop-filter: blur(10px);
}
.avatar-stack {
    display: flex;
    align-items: center;
}
.stack-avatar {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    border: 2px solid var(--bg-primary);
    margin-left: -8px;
}
.stack-avatar:first-child {
    margin-left: 0;
}
.ring-gold {
    border-color: var(--primary) !important;
}
.ring-red {
    border-color: var(--secondary) !important;
}
.banner-text-wrapper {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}
.sales-text {
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-main);
}
.sales-count {
    color: var(--primary);
    font-weight: 700;
}
.live-indicator {
    width: 8px;
    height: 8px;
    background-color: var(--success);
    border-radius: 50%;
    position: relative;
}
.live-indicator::after {
    content: '';
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 1.5s infinite;
}
@keyframes pulse {
    0% { transform: scale(1); opacity: 1; }
    100% { transform: scale(2.5); opacity: 0; }
}

.hero-title {
    font-family: var(--font-title);
    font-size: clamp(2.2rem, 6vw, 3.8rem);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -1px;
    max-width: 900px;
    margin-bottom: 2.5rem;
}
.hero-media {
    width: 100%;
    max-width: 480px;
    margin: 0 auto 3rem auto;
    position: relative;
}
.hero-image-wrapper {
    position: relative;
    border-radius: 24px;
    padding: 10px;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.1) 0%, transparent 70%);
}
.hero-mockup-img {
    width: 100%;
    height: auto;
    max-height: 520px;
    object-fit: contain;
    filter: drop-shadow(0 15px 30px rgba(0,0,0,0.6));
    transition: transform 0.5s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.hero-mockup-img:hover {
    transform: scale(1.03) rotate(1deg);
}
.floating-badge {
    position: absolute;
    background: rgba(22, 24, 27, 0.9);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    padding: 0.6rem 1.2rem;
    border-radius: 50px;
    display: flex;
    flex-direction: column;
    align-items: center;
    box-shadow: var(--shadow-lg);
    z-index: 10;
}
.badge-bottom-left {
    bottom: 5%;
    left: -5%;
}
.floating-badge .stars {
    color: var(--primary);
    font-size: 0.85rem;
    letter-spacing: 1px;
}
.floating-badge .label {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--text-main);
    margin-top: 0.15rem;
}

.hero-subtitle {
    color: var(--text-muted);
    font-size: 1.2rem;
    max-width: 750px;
    margin: 0 auto 2.5rem auto;
    line-height: 1.6;
}
.hero-ctas {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 3rem;
}
.hero-ctas .btn {
    min-width: 250px;
    display: inline-flex;
    justify-content: center;
    align-items: center;
}
.hero-ctas .btn.nav-link,
.hero-ctas .btn.nav-link i,
.hero-ctas .btn.nav-link:hover,
.hero-ctas .btn.nav-link:hover i {
    color: var(--text-dark) !important;
}
.hero-ctas .btn.nav-link::after {
    display: none !important;
}
.hero-features-sub {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 2rem;
    color: var(--text-muted);
    font-size: 0.9rem;
    font-weight: 500;
}
.feat-item {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
}

/* ==========================================================================
   HOTSPOTS INTERFACE SECTION
   ========================================================================== */
.interface-section {
    padding: 6rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}
.interface-grid {
    display: grid;
    grid-template-columns: 1fr 1.1fr 1.4fr;
    gap: 2rem;
    align-items: center;
}
.interface-media {
    display: flex;
    justify-content: center;
    background: radial-gradient(circle, rgba(212, 175, 55, 0.05) 0%, transparent 60%);
    padding: 0;
}
.interface-img-wrapper-3d {
    position: relative;
    max-width: 380px;
    width: 100%;
}
.interface-img-clipper {
    border-radius: 20px;
    overflow: hidden;
    box-shadow: var(--shadow-lg);
}
.interface-img-naked {
    width: 100%;
    height: auto;
    display: block;
}

/* Hotspots core */
.panel-hotspot {
    position: absolute;
    cursor: pointer;
    z-index: 20;
    border: 2px solid transparent;
    background: transparent;
    transition: all 0.2s ease;
    border-radius: 4px;
}
.panel-hotspot:hover,
.panel-hotspot.active {
    border: 2px solid var(--primary);
    background: rgba(191, 149, 63, 0.12);
    box-shadow: 0 0 10px rgba(191, 149, 63, 0.4);
}

.interface-info-panel {
    padding: 2.5rem;
    position: relative;
    border-radius: 24px;
}
.info-header {
    margin-bottom: 1.5rem;
}
.info-zone-badge {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary);
    background: rgba(212, 175, 55, 0.1);
    border: 1px solid var(--primary);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    margin-bottom: 0.75rem;
    letter-spacing: 0.5px;
}
.info-title {
    font-family: var(--font-title);
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-main);
}
.info-description {
    color: var(--text-muted);
    font-size: 1.05rem;
    line-height: 1.6;
    margin-bottom: 2rem;
}
.info-icon-container {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--primary);
}
.arrow-bounce {
    animation: bounce-left 1s infinite alternate;
}
@keyframes bounce-left {
    0% { transform: translateX(0); }
    100% { transform: translateX(-8px); }
}

/* ==========================================================================
   WHY CHOOSE
   ========================================================================== */
.why-section {
    padding: 5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}
.why-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
@media (max-width: 1024px) {
    .why-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 768px) {
    .why-grid {
        grid-template-columns: repeat(3, 1fr) !important;
        gap: 0.5rem !important;
    }
    .why-card {
        padding: 0.8rem 0.5rem !important;
        border-radius: 12px !important;
        text-align: center;
    }
    .why-icon-box {
        width: 32px !important;
        height: 32px !important;
        border-radius: 8px !important;
        font-size: 0.9rem !important;
        margin: 0 auto 0.5rem auto !important;
    }
    .why-card h3 {
        font-size: 0.75rem !important;
        margin-bottom: 0.3rem !important;
        line-height: 1.2 !important;
    }
    .why-card p {
        font-size: 0.62rem !important;
        line-height: 1.3 !important;
    }
}
.why-card {
    padding: 2.5rem;
    border-radius: 24px;
    position: relative;
    overflow: hidden;
}
.why-icon-box {
    width: 54px;
    height: 54px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1.5rem;
}
.why-card h3 {
    font-family: var(--font-title);
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.8rem;
    color: var(--text-main);
}
.why-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.55;
}

/* ==========================================================================
   TESTIMONIALS (WHATSAPP ACCORDION/MARQUEE)
   ========================================================================== */
.testimonials-section {
    padding: 5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}
.testimonials-marquee {
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    overflow: hidden;
    padding: 1rem 0;
}
.marquee-track {
    display: flex;
    gap: 2rem;
    width: max-content;
    animation: scroll-marquee 25s linear infinite;
}
.marquee-track:hover {
    animation-play-state: paused;
}
@keyframes scroll-marquee {
    0% { transform: translateX(0); }
    100% { transform: translateX(calc(-50% - 1rem)); }
}

.testimonial-card {
    width: 380px;
    padding: 1.75rem;
    border-radius: 20px;
}
.card-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    margin-bottom: 1.25rem;
}
.user-info {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}
.user-avatar {
    width: 44px !important;
    height: 44px !important;
    border-radius: 50%;
    object-fit: cover;
    border: 2px solid var(--border-color);
    flex-shrink: 0 !important;
}
.user-info h4 {
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-main);
}
.user-info span {
    font-size: 0.75rem;
    color: var(--text-muted);
    display: block;
}
.whatsapp-badge {
    background: rgba(37, 211, 102, 0.1);
    color: #25d366;
    border: 1px solid rgba(37, 211, 102, 0.2);
    font-size: 0.7rem;
    font-weight: 700;
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
}
.card-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.55;
    font-style: italic;
}

/* ==========================================================================
   WHO IS IT FOR (AUDIENCE)
   ========================================================================== */
.audience-section {
    padding: 5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}
.audience-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}
@media (max-width: 768px) {
    .audience-grid {
        gap: 0.5rem;
    }
    .audience-card {
        padding: 1rem 0.5rem !important;
        border-radius: 12px !important;
    }
    .audience-icon {
        font-size: 1.5rem !important;
        margin-bottom: 0.5rem !important;
    }
    .audience-card h3 {
        font-size: 0.75rem !important;
    }
}
.audience-card {
    padding: 2.5rem;
    border-radius: 24px;
    text-align: center;
}
.audience-icon {
    font-size: 2.5rem;
    color: var(--primary);
    margin-bottom: 1.5rem;
    display: inline-block;
}
.audience-card h3 {
    font-family: var(--font-title);
    font-size: 1.35rem;
    margin-bottom: 0.8rem;
}
.audience-card p {
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================================================
   HELP & VIDEOS SECTION
   ========================================================================== */
.help-section-container {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}
.video-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2.5rem;
}
@media (min-width: 768px) {
    .video-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
.video-card {
    border-radius: 20px;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}
.video-thumbnail {
    position: relative;
    width: 100%;
    padding-top: 56.25%; /* 16:9 Aspect Ratio */
    background: #000000;
}
.video-thumbnail iframe {
    position: absolute;
    top: 0; left: 0; width: 100%; height: 100%;
    border: none;
}
.video-info {
    padding: 1.5rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.6rem;
}
.video-tag {
    align-self: flex-start;
    font-size: 0.7rem;
    font-weight: 800;
    color: var(--primary);
    background: rgba(212, 175, 55, 0.1);
    padding: 0.15rem 0.5rem;
    border-radius: 4px;
    letter-spacing: 0.5px;
}
.video-info h3 {
    font-family: var(--font-title);
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-main);
}
.video-info p {
    color: var(--text-muted);
    font-size: 0.85rem;
    line-height: 1.5;
}

.help-cta-banner {
    padding: 2.5rem;
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 2rem;
    border-color: rgba(212, 175, 55, 0.15);
}
.help-cta-banner h3 {
    font-family: var(--font-title);
    font-size: 1.45rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}
.help-cta-banner p {
    color: var(--text-muted);
    max-width: 650px;
    font-size: 0.95rem;
}

/* ==========================================================================
   CHANGELOG & DOWNLOAD SECTION
   ========================================================================== */
.updates-container {
    display: flex;
    flex-direction: column;
    gap: 3.5rem;
}
.changelog-timeline {
    position: relative;
    max-width: 800px;
    margin: 0 auto;
}
.changelog-item {
    padding: 2.5rem;
    border-radius: 24px;
}
.changelog-meta {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 1.5rem;
    border-bottom: 1px solid var(--border-color);
    padding-bottom: 1rem;
}
.changelog-version {
    font-family: var(--font-title);
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--primary);
}
.changelog-date {
    font-size: 0.85rem;
    color: var(--text-muted);
    font-weight: 600;
}
.changelog-body h3 {
    font-family: var(--font-title);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.changelog-body p {
    color: var(--text-muted);
    margin-bottom: 1.25rem;
}
.changelog-body ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.changelog-body li {
    font-size: 0.95rem;
    color: var(--text-muted);
    line-height: 1.5;
}
.changelog-body li i {
    margin-right: 0.5rem;
}

.download-section-card {
    padding: 3rem;
    border-radius: 24px;
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    border-color: rgba(212, 175, 55, 0.15);
}
.download-section-card h3 {
    font-family: var(--font-title);
    font-size: 1.8rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
}
.download-section-card p {
    color: var(--text-muted);
    margin-bottom: 2rem;
}
.download-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
}

/* ==========================================================================
   RESOURCES SECTION
   ========================================================================== */
.resources-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}
.resource-card {
    padding: 2.5rem;
    border-radius: 24px;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}
.resource-badge {
    position: absolute;
    top: 1.5rem;
    right: 1.5rem;
}
.resource-icon {
    width: 50px;
    height: 50px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.35rem;
    margin-bottom: 1.5rem;
}
.resource-title {
    font-family: var(--font-title);
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}
.resource-text {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.55;
    margin-bottom: 2rem;
    flex: 1;
}

/* Upcoming lock overlays */
.resource-card.upcoming {
    border-color: rgba(255, 255, 255, 0.04);
}
.upcoming-lock {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: rgba(14, 15, 17, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: var(--text-muted);
    z-index: 10;
}
.resource-card.upcoming .resource-icon,
.resource-card.upcoming .resource-title,
.resource-card.upcoming .resource-text {
    opacity: 0.45;
}

/* ==========================================================================
   PRICING / TARIFS SECTION
   ========================================================================== */
.pricing-section {
    padding: 6rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}
.pricing-container {
    max-width: 540px;
    margin: 0 auto 3rem auto;
}
.pricing-card {
    padding: 3.5rem 2.5rem;
    border-radius: 28px;
    text-align: center;
    position: relative;
    overflow: hidden;
}
.pricing-badge {
    position: absolute;
    top: 0; right: 0;
    background: var(--primary);
    color: var(--text-dark);
    font-size: 0.7rem;
    font-weight: 800;
    padding: 0.4rem 1.8rem;
    transform: rotate(45deg) translate(30%, -20%);
    transform-origin: top right;
    letter-spacing: 1px;
    box-shadow: 0 0 10px var(--primary-glow);
}
.plan-name {
    font-family: var(--font-title);
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
}
.plan-desc {
    color: var(--text-muted);
    font-size: 0.95rem;
    margin-bottom: 2rem;
}
.pricing-rates {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 2.5rem;
    gap: 0.25rem;
}
.price-old {
    color: var(--text-muted);
    text-decoration: line-through;
    font-size: 1.5rem;
    font-weight: 600;
}
.price-new {
    font-family: var(--font-title);
    font-size: 4rem;
    font-weight: 800;
    color: var(--primary-hover);
    line-height: 1;
    letter-spacing: -1.5px;
    text-shadow: 0 0 20px rgba(212, 175, 55, 0.3);
}
.pricing-features-horizontal {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 2rem;
    padding: 0.6rem 1rem;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 50px;
    max-width: 100%;
    margin-left: auto;
    margin-right: auto;
}
.pricing-feature-inline {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-main);
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    white-space: nowrap;
}
.pricing-feature-inline i {
    color: var(--primary);
    font-size: 0.85rem;
}
.pricing-actions {
    margin-bottom: 1.5rem;
    max-width: 440px;
    margin-left: auto;
    margin-right: auto;
}
#chariow-widget iframe {
    border-radius: 12px;
    background-color: #121214 !important;
    border: 1px solid rgba(255, 255, 255, 0.05) !important;
}
.pricing-footer-info {
    color: var(--text-muted);
    font-size: 0.8rem;
}

.payment-help-bar {
    max-width: 540px;
    margin: 0 auto;
    border-radius: 16px;
    padding: 0.8rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    font-size: 0.85rem;
    color: var(--text-muted);
}

/* ==========================================================================
   FAQ ACCORDIONS
   ========================================================================== */
.faq-section {
    padding: 5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}
.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.faq-item {
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 16px;
    overflow: hidden;
    transition: var(--transition);
}
.faq-item:hover, .faq-item.open {
    border-color: rgba(212, 175, 55, 0.2);
}
.faq-question {
    width: 100%;
    background: none;
    border: none;
    padding: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    font-size: 1.05rem;
    font-weight: 600;
    color: var(--text-main);
    cursor: pointer;
    transition: var(--transition);
}
.faq-question i {
    font-size: 0.95rem;
    color: var(--text-muted);
    transition: transform 0.3s ease;
}
.faq-item.open .faq-question i {
    transform: rotate(180deg);
    color: var(--primary);
}
.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s ease-out;
}
.faq-item.open .faq-answer {
    max-height: 500px; /* high value to allow expansion */
}
.faq-answer p {
    padding: 0 1.5rem 1.5rem 1.5rem;
    color: var(--text-muted);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* ==========================================================================
   AUTHOR SECTION (DERRIÈRE LE CODE)
   ========================================================================== */
.author-section {
    padding: 5rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.03);
}
.author-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 1.5rem;
    padding: 2.5rem 2rem;
    border-radius: 28px;
    text-align: center;
    max-width: 650px;
    margin: 0 auto;
}
.author-avatar-wrapper {
    max-width: 160px;
    width: 100%;
    position: relative;
    border-radius: 24px;
    overflow: hidden;
    padding: 3px;
    background: linear-gradient(135deg, var(--primary), #25a18e);
    box-shadow: 0 0 20px rgba(191, 149, 63, 0.3), 0 0 20px rgba(37, 161, 142, 0.3);
}
.author-avatar-wrapper::after {
    content: '';
    position: absolute;
    top: 3px; left: 3px; right: 3px; bottom: 3px;
    background: var(--bg-secondary);
    border-radius: 21px;
    z-index: 1;
}
.author-img {
    position: relative;
    z-index: 2;
    border-radius: 21px;
    width: 100%;
    height: auto;
    display: block;
    filter: grayscale(0.15) contrast(1.05);
}
.author-info-body {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.8rem;
}
.author-tag {
    align-self: center;
    font-size: 0.75rem;
    font-weight: 800;
    color: var(--primary);
    background: rgba(212, 175, 55, 0.1);
    padding: 0.2rem 0.6rem;
    border-radius: 4px;
    letter-spacing: 0.5px;
}
.author-info-body h2 {
    font-family: var(--font-title);
    font-size: 2.2rem;
    font-weight: 800;
}
.author-bio {
    color: var(--text-muted);
    font-size: 1rem;
    line-height: 1.6;
}
.author-links {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
}

/* ==========================================================================
   FOOTER
   ========================================================================== */
.footer-container {
    background: #090a0b;
    border-top: 1px solid var(--border-color);
    padding: 4.5rem 1.5rem 2rem 1.5rem;
    position: relative;
    z-index: 10;
}
.footer-content {
    max-width: 1200px;
    margin: 0 auto 3rem auto;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
}
.footer-brand {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}
.footer-logo {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    font-family: var(--font-title);
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-main);
}
.footer-logo-img {
    height: 32px;
}
.footer-desc {
    color: var(--text-muted);
    font-size: 0.9rem;
    line-height: 1.5;
}
.footer-socials {
    display: flex;
    gap: 1rem;
}
.footer-socials a {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1rem;
    color: var(--text-muted);
    transition: var(--transition);
}
.footer-socials a:hover {
    background: var(--primary);
    color: var(--text-dark);
    border-color: var(--primary);
    transform: translateY(-2px);
}
.footer-links h4, .footer-support h4 {
    font-family: var(--font-title);
    font-size: 0.95rem;
    font-weight: 700;
    color: var(--text-main);
    text-transform: uppercase;
    margin-bottom: 1.25rem;
    letter-spacing: 0.5px;
}
.footer-links ul, .footer-support ul {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}
.footer-links a, .footer-support a {
    font-size: 0.9rem;
    color: var(--text-muted);
}
.footer-links a:hover, .footer-support a:hover {
    color: var(--primary-hover);
}
.footer-bottom {
    max-width: 1200px;
    margin: 0 auto;
    border-top: 1px solid rgba(255, 255, 255, 0.05);
    padding-top: 2rem;
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr;
    gap: 4rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}
.footer-copy {
    text-align: left;
}
.footer-dev {
    text-align: left;
}

/* ==========================================================================
   IMAGE ZOOM MODAL
   ========================================================================== */
.zoom-modal {
    position: fixed;
    top: 0; left: 0; width: 100vw; height: 100vh;
    background: rgba(9, 10, 11, 0.95);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    pointer-events: none;
    transition: opacity 0.3s ease;
}
.zoom-modal.open {
    opacity: 1;
    pointer-events: auto;
}
.zoom-modal-img {
    max-width: 85%;
    max-height: 85%;
    object-fit: contain;
    border-radius: 12px;
    box-shadow: var(--shadow-lg);
    border: 1px solid rgba(255, 255, 255, 0.1);
    transform: scale(0.95);
    transition: transform 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}
.zoom-modal.open .zoom-modal-img {
    transform: scale(1);
}
.zoom-modal-close {
    position: absolute;
    top: 2rem;
    right: 2rem;
    color: var(--text-main);
    font-size: 1.8rem;
    cursor: pointer;
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255,255,255,0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}
.zoom-modal-close:hover {
    background: var(--secondary);
    transform: rotate(90deg);
}

/* ==========================================================================
   RESPONSIVE DESIGN (MEDIA QUERIES)
   ========================================================================== */
@media (max-width: 1024px) {
    .interface-grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .interface-media {
        order: 1;
    }
    .interface-callout-container {
        order: 2;
    }
    .interface-desc-content {
        order: 3;
    }
    .ps-workspace-body {
        grid-template-columns: 1fr;
    }
    .ps-toolbar,
    .ps-panels-sidebar {
        display: none !important;
    }
    .dt-panel {
        border-right: none;
        border-bottom: 1px solid #141517;
    }
    .author-container {
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        text-align: center !important;
        gap: 1.2rem !important;
        padding: 2rem 1.5rem !important;
    }
    .author-avatar-wrapper {
        max-width: 130px !important;
        margin: 0 auto !important;
    }
    .author-info-body {
        align-items: center !important;
    }
    .author-tag {
        align-self: center !important;
    }
    @media (max-width: 540px) {
        .author-container {
            padding: 1.5rem 1rem !important;
            gap: 1rem !important;
        }
        .author-avatar-wrapper {
            max-width: 110px !important;
        }
    }
}
@media (max-width: 768px) {
    .ps-top-bar-menu,
    .ps-tool-options {
        display: none !important;
    }
}

@media (max-width: 768px) {
    .navbar-container {
        padding: 1rem 0;
    }
    .mobile-toggle {
        display: block;
    }
    .nav-menu {
        position: fixed;
        top: 70px;
        left: 0;
        width: 100vw;
        height: calc(100vh - 70px);
        background: #0e0f11;
        border-top: 1px solid var(--border-color);
        flex-direction: column;
        align-items: center;
        padding-top: 3rem;
        gap: 2.2rem;
        transform: translateX(100%);
        transition: transform 0.4s cubic-bezier(0.2, 0.8, 0.2, 1);
    }
    .nav-menu.open {
        transform: translateX(0);
    }
    .nav-link {
        font-size: 1.15rem;
    }
    .nav-actions {
        gap: 0.5rem;
    }
    .nav-cta-btn {
        display: none; /* Hide primary CTA inside header on small screens */
    }
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .footer-bottom {
        grid-template-columns: 1fr !important;
        gap: 0.8rem !important;
        text-align: center !important;
        padding-top: 1.5rem !important;
    }
    .footer-bottom .footer-empty {
        display: none !important;
    }
    .footer-copy, .footer-dev {
        text-align: center !important;
    }
    .roi-results {
        grid-template-columns: 1fr;
    }
    .pricing-card {
        padding: 3rem 1.5rem;
    }
    .pricing-features-horizontal {
        border-radius: 16px;
        gap: 0.75rem;
        padding: 0.75rem;
    }
    
    /* Hero mobile responsiveness */
    .hero-ctas {
        flex-wrap: nowrap !important;
        gap: 0.5rem !important;
        padding: 0 1rem !important;
        width: 100% !important;
    }
    .hero-ctas .btn {
        min-width: 0 !important;
        flex: 1 !important;
        padding: 0.8rem 0.4rem !important;
        font-size: 0.8rem !important;
        white-space: nowrap !important;
    }
    .hero-features-sub {
        flex-wrap: nowrap !important;
        gap: 0.4rem !important;
        justify-content: center !important;
        width: 100% !important;
        padding: 0 0.25rem !important;
    }
    .hero-features-sub .feat-item {
        font-size: 0.68rem !important;
        white-space: nowrap !important;
        gap: 0.2rem !important;
    }
}

@keyframes fadeIn {
    0% { opacity: 0; }
    100% { opacity: 1; }
}

/* ==========================================================================
   SIMULATOR MODALS, FORMS, PRIVACY & CUSTOM CONTROLS
   ========================================================================== */
.sim-panel-modal {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(18, 18, 20, 0.96);
    z-index: 100;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 12px;
    box-sizing: border-box;
    backdrop-filter: blur(4px);
    transition: opacity 0.3s ease;
}

.sim-panel-modal-content {
    background: #1c1e22;
    border: 1px solid var(--border-color);
    border-radius: 8px;
    padding: 15px;
    width: 100%;
    max-width: 280px;
    text-align: center;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.5);
    animation: simScaleUp 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes simScaleUp {
    from { transform: scale(0.9); opacity: 0; }
    to { transform: scale(1); opacity: 1; }
}

.lock-icon-area {
    font-size: 1.8rem;
    color: var(--primary);
    margin-bottom: 2px;
    animation: lock-bounce 2s infinite ease-in-out;
}

@keyframes lock-bounce {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

.sim-panel-modal-content h3 {
    font-size: 0.85rem;
    font-weight: 800;
    color: var(--text-main);
    margin-bottom: 2px;
}

.sim-panel-modal-content p {
    font-size: 0.65rem;
    color: var(--text-muted);
    line-height: 1.3;
    margin-bottom: 4px;
}

.system-id-container {
    background: #121214;
    border: 1px dashed var(--border-color);
    border-radius: 4px;
    padding: 4px 8px;
    margin: 2px 0 6px 0;
}

.system-lbl {
    font-size: 0.5rem;
    color: var(--text-muted);
    font-weight: 700;
    display: block;
    margin-bottom: 1px;
}

.system-id-display-box {
    font-family: monospace;
    font-size: 0.75rem;
    color: var(--primary-hover);
    font-weight: bold;
    cursor: pointer;
    letter-spacing: 0.5px;
}

.input-lbl {
    font-size: 0.55rem;
    color: var(--text-muted);
    font-weight: 700;
    text-align: left;
    margin-top: 2px;
    text-transform: uppercase;
}

.sim-panel-modal-content input[type="text"],
.sim-panel-modal-content select {
    background: #121214;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: #fff;
    padding: 5px 8px;
    font-size: 0.7rem;
    outline: none;
    text-align: center;
    width: 100%;
}

.sim-panel-modal-content input[type="text"]:focus,
.sim-panel-modal-content select:focus {
    border-color: var(--primary);
}

.btn-activate-pro {
    background: linear-gradient(135deg, var(--primary), var(--primary-hover));
    color: var(--text-dark);
    font-weight: 800;
    border: none;
    border-radius: 4px;
    padding: 6px 12px;
    font-size: 0.7rem;
    cursor: pointer;
    transition: var(--transition);
    height: 26px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.btn-activate-pro:hover {
    transform: translateY(-1px);
    box-shadow: 0 0 10px var(--primary-glow);
}

.btn-mock-file {
    background: #252529;
    border: 1px solid var(--border-color);
    color: var(--text-main);
    border-radius: 4px;
    font-size: 0.7rem;
    cursor: pointer;
    height: 24px;
    transition: var(--transition);
}

.btn-mock-file:hover {
    background: #2b2b30;
    border-color: var(--primary);
}

/* Simulated collapsible fieldset */
#project-form-fieldset {
    border: 1px solid var(--border-color);
    border-radius: 6px;
    padding: 8px 10px;
    background: #1c1e22;
    display: flex;
    flex-direction: column;
    gap: 6px;
    animation: slideDown 0.3s cubic-bezier(0.2, 0.8, 0.2, 1);
}

@keyframes slideDown {
    from { transform: translateY(-10px); opacity: 0; }
    to { transform: translateY(0); opacity: 1; }
}

#project-form-fieldset legend {
    font-size: 0.65rem;
    font-weight: 800;
    color: var(--primary);
    padding: 0 5px;
}

#project-form-fieldset .row {
    display: flex;
    gap: 6px;
    width: 100%;
}

#project-form-fieldset input, 
#project-form-fieldset select {
    background: #121214;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: #fff;
    font-size: 0.65rem;
    padding: 4px 6px;
    height: 24px;
    outline: none;
}

#project-form-fieldset input:focus, 
#project-form-fieldset select:focus {
    border-color: var(--primary);
}

.st-btn {
    flex: 1;
    background: #121214;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    color: var(--text-muted);
    font-size: 0.65rem;
    font-weight: 700;
    cursor: pointer;
    height: 24px;
    transition: var(--transition);
}

.st-btn.att.active {
    background: var(--secondary);
    color: #fff;
    border-color: var(--secondary);
}

.st-btn.pay.active {
    background: var(--success);
    color: #fff;
    border-color: var(--success);
}

/* Privacy blur mode */
.privacy-mode .stat-value,
.privacy-mode .proj-price,
.privacy-mode .recap-val,
.privacy-mode td:nth-child(2),
.privacy-mode td:nth-child(3) {
    filter: blur(5px) !important;
    pointer-events: none;
    user-select: none;
}

/* General Layout Tweaks for Replica alignment */
.config-icon {
    cursor: pointer;
    font-size: 0.85rem;
    transition: var(--transition);
}

.config-icon:hover {
    color: var(--primary-hover);
}

.mode-toggle-icon {
    cursor: pointer;
    font-size: 0.85rem;
    transition: var(--transition);
}

.mode-toggle-icon:hover {
    color: var(--primary-hover);
}

.whatsapp-header-btn {
    color: var(--text-muted);
    transition: var(--transition);
}

.whatsapp-header-btn:hover {
    color: var(--success);
}

.btn-round-add {
    background: var(--primary);
    border: none;
    color: var(--text-dark);
    font-size: 0.95rem;
    font-weight: 800;
    width: 22px;
    height: 22px;
    border-radius: 4px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
}

.btn-round-add:hover {
    background: var(--primary-hover);
    transform: scale(1.05);
}

/* Align list-box */
.list-box {
    margin-top: 0.2rem;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    height: 220px;
    overflow-y: auto;
    padding-right: 2px;
}

/* Table styles */
.recap-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.65rem;
    text-align: left;
}

.recap-table th {
    background: #181a1d;
    color: var(--text-muted);
    font-weight: 700;
    padding: 6px 8px;
    border-bottom: 1px solid var(--border-color);
}

.recap-table td {
    padding: 6px 8px;
    border-bottom: 1px solid var(--border-color);
    color: var(--text-main);
}

.recap-table tr:hover {
    background: #25282d;
}

/* Timer SVG indicator */
.timer-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
}

.timer-circle-wrap {
    position: relative;
    width: 140px;
    height: 140px;
}

.circle-svg {
    transform: rotate(-90deg);
    width: 140px;
    height: 140px;
}

.circle-bg {
    fill: none;
    stroke: #181a1d;
    stroke-width: 6;
}

.circle-progress {
    fill: none;
    stroke: var(--primary);
    stroke-width: 6;
    stroke-linecap: round;
    transition: stroke-dashoffset 1s linear;
}

.timer-text {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-family: var(--font-title);
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-main);
}

/* Tabs list styling override */
.dt-panel-tabs .tab {
    flex: 1;
    color: var(--text-muted);
    font-size: 0.62rem;
    font-weight: 700;
    padding: 0.45rem 0.15rem;
    cursor: pointer;
    border-radius: 4px;
    transition: var(--transition);
    white-space: nowrap;
    text-align: center;
}

.dt-panel-tabs .tab:hover, 
.dt-panel-tabs .tab.active {
    background: #25282d;
    color: var(--primary);
}

/* WhatsApp message templates styling */
.whatsapp-chat-bubble strong {
    color: var(--primary);
}

