/* ===================================
   AYOUB WEB SOLUTION - PREMIUM STYLES
   =================================== */

/* CSS Variables */
:root {
    /* Primary Colors */
    --primary: #6366f1;
    --primary-dark: #4f46e5;
    --primary-light: #818cf8;
    --primary-glow: rgba(99, 102, 241, 0.4);

    /* Accent Colors */
    --accent: #f59e0b;
    --accent-light: #fbbf24;
    --success: #10b981;
    --danger: #ef4444;

    /* Neutrals */
    --bg-dark: #0f0f1a;
    --bg-card: #1a1a2e;
    --bg-card-hover: #252542;
    --text-primary: #ffffff;
    --text-secondary: #a1a1aa;
    --text-muted: #71717a;
    --border: rgba(255, 255, 255, 0.1);

    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #6366f1 0%, #8b5cf6 50%, #a855f7 100%);
    --gradient-accent: linear-gradient(135deg, #f59e0b 0%, #f97316 100%);
    --gradient-success: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --gradient-dark: linear-gradient(180deg, #0f0f1a 0%, #1a1a2e 100%);

    /* Spacing */
    --container-max: 1200px;
    --section-padding: 100px;

    /* Transitions */
    --transition-fast: 0.2s ease;
    --transition-normal: 0.3s ease;
    --transition-slow: 0.5s ease;

    /* Shadows */
    --shadow-sm: 0 2px 8px rgba(0, 0, 0, 0.3);
    --shadow-md: 0 4px 20px rgba(0, 0, 0, 0.4);
    --shadow-lg: 0 10px 40px rgba(0, 0, 0, 0.5);
    --shadow-glow: 0 0 30px var(--primary-glow);

    /* Border Radius */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 20px;
    --radius-xl: 30px;
}

/* Reset & Base */
*,
*::before,
*::after {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

html {
    scroll-behavior: smooth;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg-dark);
    color: var(--text-primary);
    line-height: 1.6;
    overflow-x: hidden;
}

.container {
    max-width: var(--container-max);
    margin: 0 auto;
    padding: 0 20px;
}

a {
    text-decoration: none;
    color: inherit;
}

img {
    max-width: 100%;
    height: auto;
}

/* ===================================
   SCROLL PROGRESS BAR
   =================================== */
.scroll-progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 4px;
    background: var(--gradient-primary);
    width: 0%;
    z-index: 9999;
    transition: width 0.1s ease-out;
}

/* ===================================
   BACK TO TOP BUTTON
   =================================== */
.back-to-top {
    position: fixed;
    bottom: 100px;
    left: 30px;
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border: none;
    border-radius: 50%;
    color: white;
    font-size: 1.5rem;
    cursor: pointer;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-normal);
    z-index: 997;
    box-shadow: var(--shadow-lg);
}

.back-to-top.visible {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.back-to-top:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-glow);
}

@media (max-width: 768px) {
    .back-to-top {
        bottom: 180px;
        left: 15px;
        width: 45px;
        height: 45px;
        font-size: 1.2rem;
    }
}

/* ===================================
   SOCIAL PROOF TOAST
   =================================== */
.social-proof-toast {
    position: fixed;
    bottom: 30px;
    left: 30px;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border: none;
    border-radius: var(--radius-lg);
    padding: 15px 20px;
    display: flex;
    align-items: center;
    gap: 12px;
    box-shadow: 0 10px 30px rgba(239, 68, 68, 0.4);
    z-index: 996;
    transform: translateX(-120%);
    opacity: 0;
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
}

.social-proof-toast.show {
    transform: translateX(0);
    opacity: 1;
}

.toast-icon {
    font-size: 1.5rem;
}

.toast-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.toast-content strong {
    color: white;
    font-size: 0.95rem;
}

.toast-content span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
}

.toast-close {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 1.2rem;
    cursor: pointer;
    padding: 5px;
    margin-left: 10px;
    transition: var(--transition-fast);
}

.toast-close:hover {
    color: var(--text-primary);
}

@media (max-width: 768px) {
    .social-proof-toast {
        left: 15px;
        right: 15px;
        bottom: 100px;
    }
}

/* ===================================
   HEADER
   =================================== */
.announcement-bar {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 44px;
    background: var(--success);
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    z-index: 1010;
    box-shadow: var(--shadow-sm);
    text-align: center;
    padding: 0 20px;
}

.announce-desktop {
    display: inline;
}

.announce-mobile {
    display: none;
}

@media (max-width: 768px) {
    .announcement-bar {
        font-size: 0.85rem;
        height: 40px;
        padding: 0 15px;
    }

    .announce-desktop {
        display: none;
    }

    .announce-mobile {
        display: inline;
    }
}

.header {
    position: fixed;
    top: 44px;
    left: 0;
    right: 0;
    z-index: 1000;
    padding: 15px 0;
    background: rgba(15, 15, 26, 0.8);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--border);
    transition: var(--transition-normal);
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
}

.logo-icon {
    font-size: 1.8rem;
}

.logo-icon-img {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    object-fit: cover;
}

.logo-text {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.logo-highlight {
    color: var(--accent);
    -webkit-text-fill-color: var(--accent);
}

.nav {
    display: flex;
    gap: 30px;
}

.nav-link {
    color: var(--text-secondary);
    font-weight: 500;
    font-size: 0.95rem;
    transition: var(--transition-fast);
    position: relative;
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--gradient-primary);
    transition: var(--transition-normal);
}

.nav-link:hover {
    color: var(--text-primary);
}

.nav-link:hover::after {
    width: 100%;
}

.btn-header {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.9rem;
    transition: var(--transition-normal);
}

.btn-header:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow);
}

.mobile-menu-btn {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 5px;
}

.mobile-menu-btn span {
    width: 25px;
    height: 2px;
    background: var(--text-primary);
    transition: var(--transition-normal);
}

@media (max-width: 768px) {
    .header {
        top: 40px;
    }

    .nav {
        display: none;
    }

    .btn-header {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }
}

/* ===================================
   HERO SECTION
   =================================== */
.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    padding: 164px 0 80px;
    position: relative;
    overflow: hidden;
}

.hero-bg-elements {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.hero-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.5;
}

.hero-orb-1 {
    width: 600px;
    height: 600px;
    background: var(--primary);
    top: -200px;
    right: -100px;
    animation: float 8s ease-in-out infinite;
}

.hero-orb-2 {
    width: 400px;
    height: 400px;
    background: #8b5cf6;
    bottom: -100px;
    left: -100px;
    animation: float 10s ease-in-out infinite reverse;
}

.hero-orb-3 {
    width: 300px;
    height: 300px;
    background: var(--accent);
    top: 50%;
    left: 50%;
    animation: float 12s ease-in-out infinite;
}

.hero-grid {
    position: absolute;
    inset: 0;
    background-image:
        linear-gradient(rgba(99, 102, 241, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(99, 102, 241, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
}

@keyframes float {

    0%,
    100% {
        transform: translateY(0) rotate(0deg);
    }

    50% {
        transform: translateY(-30px) rotate(5deg);
    }
}

.hero .container {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 60px;
    align-items: center;
    position: relative;
    z-index: 1;
}

.hero-content {
    max-width: 600px;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 16px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    color: var(--primary-light);
    margin-bottom: 25px;
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--success);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {

    0%,
    100% {
        opacity: 1;
        transform: scale(1);
    }

    50% {
        opacity: 0.5;
        transform: scale(1.2);
    }
}

.hero-title {
    font-family: 'Outfit', sans-serif;
    font-size: 3.5rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 25px;
}

.hero-title-highlight {
    display: block;
    position: relative;
}

.price-tag {
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.price-tag::after {
    content: '';
    position: absolute;
    bottom: 5px;
    left: 0;
    right: 0;
    height: 8px;
    background: var(--accent);
    opacity: 0.3;
    border-radius: 4px;
    z-index: -1;
}

.hero-subtitle-line {
    display: block;
    font-size: 2rem;
    font-weight: 600;
    color: var(--text-secondary);
    margin-top: 10px;
}

.hero-description {
    font-size: 1.15rem;
    color: var(--text-secondary);
    margin-bottom: 35px;
    line-height: 1.8;
}

.hero-description strong {
    color: var(--text-primary);
}

.hero-highlight {
    display: block;
    margin-top: 15px;
    color: var(--success);
    font-weight: 500;
}

.hero-cta-group {
    display: flex;
    gap: 15px;
    margin-bottom: 40px;
    flex-wrap: wrap;
}

.btn-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: var(--gradient-primary);
    border: none;
    border-radius: var(--radius-xl);
    color: white;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
    overflow: hidden;
}

.btn-primary::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transform: translateX(-100%);
    transition: 0.5s;
}

.btn-primary:hover::before {
    transform: translateX(100%);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-glow);
}

.btn-xl {
    padding: 18px 40px;
    font-size: 1.1rem;
}

.btn-sparkle {
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {

    0%,
    100% {
        transform: scale(1) rotate(0deg);
    }

    50% {
        transform: scale(1.2) rotate(10deg);
    }
}

.btn-arrow {
    transition: var(--transition-fast);
}

.btn-primary:hover .btn-arrow {
    transform: translateX(5px);
}

.btn-secondary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    background: transparent;
    border: 2px solid var(--border);
    border-radius: var(--radius-xl);
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: var(--transition-normal);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.05);
    border-color: var(--primary);
}

.hero-trust {
    display: flex;
    gap: 30px;
    flex-wrap: wrap;
}

.trust-item {
    display: flex;
    align-items: center;
    gap: 8px;
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.trust-icon {
    font-size: 1.2rem;
}

/* Hero Visual */
.hero-visual {
    position: relative;
    display: flex;
    justify-content: center;
}

.hero-mockup {
    position: relative;
    perspective: 1000px;
}

.mockup-browser {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow-lg);
    border: 1px solid var(--border);
    transform: rotateY(-10deg) rotateX(5deg);
    animation: mockupFloat 6s ease-in-out infinite;
}

@keyframes mockupFloat {

    0%,
    100% {
        transform: rotateY(-10deg) rotateX(5deg) translateY(0);
    }

    50% {
        transform: rotateY(-10deg) rotateX(5deg) translateY(-15px);
    }
}

.browser-header {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid var(--border);
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
}

.browser-dots span:nth-child(1) {
    background: #ef4444;
}

.browser-dots span:nth-child(2) {
    background: #f59e0b;
}

.browser-dots span:nth-child(3) {
    background: #10b981;
}

.browser-url {
    flex: 1;
    background: rgba(255, 255, 255, 0.1);
    padding: 6px 12px;
    border-radius: 6px;
    font-size: 0.8rem;
    color: var(--text-muted);
}

.browser-content {
    padding: 20px;
    min-width: 400px;
    min-height: 280px;
}

.mockup-preview {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.preview-header {
    height: 40px;
    background: linear-gradient(90deg, var(--primary) 30%, transparent 30%);
    border-radius: var(--radius-sm);
}

.preview-hero {
    height: 100px;
    background: var(--gradient-primary);
    border-radius: var(--radius-sm);
    opacity: 0.3;
}

.preview-cards {
    display: flex;
    gap: 10px;
}

.preview-card {
    flex: 1;
    height: 60px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-sm);
}

.mockup-phone {
    position: absolute;
    right: -60px;
    bottom: -30px;
    width: 140px;
    height: 280px;
    background: var(--bg-card);
    border-radius: 30px;
    border: 3px solid var(--border);
    box-shadow: var(--shadow-lg);
    padding: 10px;
    transform: rotate(10deg);
    animation: phoneFloat 5s ease-in-out infinite reverse;
}

@keyframes phoneFloat {

    0%,
    100% {
        transform: rotate(10deg) translateY(0);
    }

    50% {
        transform: rotate(10deg) translateY(-10px);
    }
}

.phone-notch {
    width: 60px;
    height: 20px;
    background: var(--bg-dark);
    border-radius: 10px;
    margin: 0 auto 10px;
}

.phone-content {
    height: calc(100% - 30px);
    background: var(--gradient-primary);
    border-radius: 20px;
    opacity: 0.3;
}

/* ===================================
   PROBLEM/SOLUTION SECTION
   =================================== */
.problem-section {
    padding: var(--section-padding) 0;
    background: var(--bg-card);
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 60px;
}

.section-tag {
    display: inline-block;
    padding: 6px 16px;
    background: rgba(99, 102, 241, 0.1);
    border: 1px solid rgba(99, 102, 241, 0.3);
    border-radius: var(--radius-xl);
    font-size: 0.85rem;
    color: var(--primary-light);
    margin-bottom: 20px;
}

.section-title {
    font-family: 'Outfit', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}

.highlight-red {
    color: var(--danger);
}

.highlight-gradient {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-description {
    font-size: 1.1rem;
    color: var(--text-secondary);
}

/* Stars Display */
.stars-display {
    font-size: 3rem;
    margin: 20px 0;
    letter-spacing: 10px;
    animation: starPulse 2s ease-in-out infinite;
}

@keyframes starPulse {

    0%,
    100% {
        transform: scale(1);
    }

    50% {
        transform: scale(1.05);
    }
}

.problem-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.problem-card {
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.problem-card-bad {
    background: rgba(239, 68, 68, 0.05);
    border-color: rgba(239, 68, 68, 0.2);
}

.problem-card-good {
    background: rgba(16, 185, 129, 0.05);
    border-color: rgba(16, 185, 129, 0.2);
}

.problem-icon {
    font-size: 2.5rem;
    margin-bottom: 20px;
}

.problem-card h3 {
    font-size: 1.5rem;
    margin-bottom: 20px;
}

.problem-card ul {
    list-style: none;
}

.problem-card li {
    padding: 10px 0;
    color: var(--text-secondary);
    border-bottom: 1px solid var(--border);
}

.problem-card li:last-child {
    border-bottom: none;
}

/* ===================================
   QUESTIONNAIRE SECTION
   =================================== */
.questionnaire-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--bg-dark) 0%, var(--bg-card) 100%);
}

.questionnaire-container {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    padding: 50px;
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
}

.questionnaire-progress {
    margin-bottom: 40px;
}

.progress-bar {
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 3px;
    overflow: hidden;
    margin-bottom: 10px;
}

.progress-fill {
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 3px;
    transition: width 0.5s ease;
    width: 33%;
}

.progress-text {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.questionnaire-step {
    display: none;
}

.questionnaire-step.active {
    display: block;
    animation: fadeIn 0.5s ease;
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(20px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.step-title {
    font-size: 1.8rem;
    margin-bottom: 30px;
    text-align: center;
}

.options-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 15px;
}

.option-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.02);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-normal);
    font-family: inherit;
    color: var(--text-primary);
}

.option-card:hover {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
    transform: translateY(-5px);
}

.option-card.selected {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.15);
}

.option-icon {
    font-size: 2.5rem;
}

.option-text {
    font-weight: 500;
    text-align: center;
}

.btn-back {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 30px;
    padding: 10px 20px;
    background: none;
    border: none;
    color: var(--text-secondary);
    cursor: pointer;
    transition: var(--transition-fast);
    font-family: inherit;
    font-size: 0.95rem;
}

.btn-back:hover {
    color: var(--text-primary);
}

/* Result */
.result-container {
    text-align: center;
}

.result-badge {
    display: inline-block;
    padding: 8px 20px;
    background: var(--gradient-success);
    border-radius: var(--radius-xl);
    font-weight: 600;
    margin-bottom: 20px;
}

.result-title {
    font-size: 1.5rem;
    margin-bottom: 30px;
}

.result-card {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 30px;
    text-align: left;
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    padding: 25px;
    margin-bottom: 30px;
}

.result-preview {
    background: var(--bg-dark);
    border-radius: var(--radius-sm);
    overflow: hidden;
    aspect-ratio: 16/10;
}

.result-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.result-info {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.result-name {
    font-size: 1.4rem;
    margin-bottom: 10px;
}

.result-desc {
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.result-features {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.result-features span {
    padding: 6px 12px;
    background: rgba(16, 185, 129, 0.1);
    border-radius: var(--radius-sm);
    font-size: 0.85rem;
    color: var(--success);
}

.result-cta {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 25px;
}

.btn-order {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 20px 40px;
    background: var(--gradient-accent);
    border-radius: var(--radius-xl);
    font-size: 1.2rem;
    font-weight: 700;
    color: white;
    transition: var(--transition-normal);
    animation: pulseBtn 2s ease-in-out infinite;
}

@keyframes pulseBtn {

    0%,
    100% {
        box-shadow: 0 0 0 0 rgba(245, 158, 11, 0.4);
    }

    50% {
        box-shadow: 0 0 0 15px rgba(245, 158, 11, 0);
    }
}

.btn-order:hover {
    transform: scale(1.05);
}

.result-urgency {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 20px;
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.3);
    border-radius: var(--radius-md);
    font-size: 0.95rem;
    color: var(--danger);
}

.urgency-icon {
    font-size: 1.2rem;
}

/* ===================================
   PORTFOLIO SECTION
   =================================== */
.portfolio-section {
    padding: var(--section-padding) 0;
    background: var(--bg-dark);
}

.portfolio-filters {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-bottom: 50px;
    flex-wrap: wrap;
}

.filter-btn {
    padding: 10px 24px;
    background: rgba(255, 255, 255, 0.05);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    color: var(--text-secondary);
    font-family: inherit;
    font-size: 0.95rem;
    cursor: pointer;
    transition: var(--transition-normal);
}

.filter-btn:hover {
    border-color: var(--primary);
    color: var(--text-primary);
}

.filter-btn.active {
    background: var(--gradient-primary);
    border-color: transparent;
    color: white;
}

.portfolio-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(350px, 1fr));
    gap: 30px;
}

.portfolio-card {
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    overflow: hidden;
    border: 1px solid var(--border);
    transition: var(--transition-normal);
}

.portfolio-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.portfolio-image {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
}

.portfolio-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: var(--transition-slow);
}

.portfolio-card:hover .portfolio-image img {
    transform: scale(1.05);
}

.portfolio-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 0%, rgba(0, 0, 0, 0.8) 100%);
    display: flex;
    align-items: flex-end;
    justify-content: center;
    padding: 20px;
    opacity: 0;
    transition: var(--transition-normal);
}

.portfolio-card:hover .portfolio-overlay {
    opacity: 1;
}

.portfolio-overlay a {
    padding: 10px 25px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    font-weight: 600;
    font-size: 0.9rem;
}

.portfolio-info {
    padding: 25px;
}

.portfolio-category {
    display: inline-block;
    padding: 4px 12px;
    background: rgba(99, 102, 241, 0.1);
    border-radius: var(--radius-sm);
    font-size: 0.8rem;
    color: var(--primary-light);
    margin-bottom: 12px;
}

.portfolio-title {
    font-size: 1.3rem;
    margin-bottom: 8px;
}

.portfolio-desc {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

/* ===================================
   PRICING SECTION
   =================================== */
.pricing-section {
    padding: var(--section-padding) 0;
    background: var(--bg-card);
}

.pricing-card {
    max-width: 500px;
    margin: 0 auto 60px;
    background: linear-gradient(180deg, rgba(99, 102, 241, 0.1) 0%, var(--bg-dark) 100%);
    border-radius: var(--radius-lg);
    border: 2px solid var(--primary);
    padding: 50px 40px;
    position: relative;
    overflow: hidden;
}

.pricing-badge {
    position: absolute;
    top: 20px;
    right: -35px;
    padding: 8px 50px;
    background: var(--gradient-accent);
    font-size: 0.85rem;
    font-weight: 600;
    transform: rotate(45deg);
}

.pricing-header {
    text-align: center;
    margin-bottom: 35px;
}

.pricing-header h3 {
    font-size: 1.5rem;
    margin-bottom: 15px;
}

.pricing-price {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
}

.price-old {
    font-size: 1.2rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.price-current {
    font-size: 4rem;
    font-weight: 800;
    font-family: 'Outfit', sans-serif;
    background: var(--gradient-accent);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-currency {
    font-size: 2rem;
}

.price-note {
    font-size: 0.95rem;
    color: var(--text-secondary);
}

.pricing-features {
    list-style: none;
    margin-bottom: 35px;
}

.pricing-features li {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 0;
    border-bottom: 1px solid var(--border);
}

.pricing-features li:last-child {
    border-bottom: none;
}

.pricing-features .check {
    color: var(--success);
    font-weight: bold;
}

.pricing-features .bonus {
    background: rgba(245, 158, 11, 0.1);
    margin: 0 -40px;
    padding: 15px 40px;
    border-radius: 0;
}

.pricing-features .gift {
    font-size: 1.2rem;
}

.pricing-cta {
    width: 100%;
}

.pricing-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 8px;
    margin-top: 20px;
    color: var(--text-secondary);
    font-size: 0.9rem;
}

/* Comparison Table */
.pricing-comparison {
    max-width: 900px;
    margin: 0 auto;
}

.pricing-comparison h4 {
    text-align: center;
    margin-bottom: 25px;
    color: var(--text-secondary);
}

.comparison-table {
    background: var(--bg-dark);
    border-radius: var(--radius-lg);
    overflow-x: auto;
    border: 1px solid var(--border);
    -webkit-overflow-scrolling: touch;
}

.comparison-row {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr);
    gap: 0;
    min-width: 600px;
}

.comparison-row span {
    padding: 18px 15px;
    text-align: center;
    border-bottom: 1px solid var(--border);
    font-size: 0.95rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.comparison-row span:first-child {
    text-align: left;
    font-weight: 500;
    justify-content: flex-start;
}

.comparison-row:last-child span {
    border-bottom: none;
}

.comparison-header span {
    font-weight: 600;
    background: rgba(255, 255, 255, 0.02);
}

.comparison-row .highlight {
    background: rgba(99, 102, 241, 0.1);
    color: var(--primary-light);
    font-weight: 600;
}

/* ===================================
   URGENCY SECTION
   =================================== */
.urgency-section {
    padding: 80px 0;
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    position: relative;
    overflow: hidden;
}

.urgency-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.05'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
}

.urgency-content {
    position: relative;
    text-align: center;
    max-width: 700px;
    margin: 0 auto;
}

.urgency-icon {
    font-size: 3rem;
    margin-bottom: 20px;
    animation: shake 0.5s ease-in-out infinite;
}

@keyframes shake {

    0%,
    100% {
        transform: rotate(-5deg);
    }

    50% {
        transform: rotate(5deg);
    }
}

.urgency-content h2 {
    font-family: 'Outfit', sans-serif;
    font-size: 2.2rem;
    margin-bottom: 15px;
}

.urgency-content p {
    font-size: 1.1rem;
    opacity: 0.9;
    margin-bottom: 30px;
}

.urgency-section .btn-primary {
    background: white;
    color: #ef4444;
}

.urgency-section .btn-primary:hover {
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

/* ===================================
   CONTACT SECTION
   =================================== */
.contact-section {
    padding: var(--section-padding) 0;
    background: var(--bg-dark);
}

.contact-grid {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 60px;
}

.contact-info h3 {
    font-size: 1.8rem;
    margin-bottom: 15px;
}

.contact-info>p {
    color: var(--text-secondary);
    margin-bottom: 35px;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin-bottom: 35px;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: var(--bg-card);
    border-radius: var(--radius-md);
    border: 1px solid var(--border);
    transition: var(--transition-normal);
}

.contact-method:hover {
    border-color: var(--primary);
    transform: translateX(10px);
}

.contact-method-whatsapp:hover {
    border-color: #25d366;
}

.method-icon {
    font-size: 1.8rem;
}

.method-label {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.method-value {
    font-weight: 600;
}

.contact-hours h4 {
    margin-bottom: 10px;
    color: var(--text-secondary);
}

.contact-hours p {
    color: var(--text-muted);
    font-size: 0.95rem;
}

/* Contact Form */
.contact-form {
    background: var(--bg-card);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.form-group {
    margin-bottom: 20px;
}

.form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
    font-size: 0.95rem;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 14px 18px;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-family: inherit;
    font-size: 1rem;
    transition: var(--transition-fast);
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: var(--text-muted);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

.form-group select {
    cursor: pointer;
}

.form-submit {
    width: 100%;
    margin-top: 10px;
}

.form-note {
    text-align: center;
    margin-top: 15px;
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===================================
   FOOTER
   =================================== */
.footer {
    padding: 60px 0 30px;
    background: var(--bg-card);
    border-top: 1px solid var(--border);
}

.footer-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 40px;
}

.footer-brand p {
    color: var(--text-secondary);
    margin-top: 15px;
}

.footer-links {
    display: flex;
    gap: 30px;
}

.footer-links a {
    color: var(--text-secondary);
    transition: var(--transition-fast);
}

.footer-links a:hover {
    color: var(--primary-light);
}

.footer-bottom {
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border);
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* ===================================
   FLOATING CTA MOBILE
   =================================== */
.floating-cta-mobile {
    display: none;
    position: fixed;
    bottom: 20px;
    left: 20px;
    right: 20px;
    z-index: 999;
}

.btn-floating-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    width: 100%;
    padding: 18px;
    background: var(--gradient-accent);
    border-radius: var(--radius-xl);
    font-weight: 700;
    font-size: 1rem;
    box-shadow: var(--shadow-lg);
}

.pulse-dot {
    width: 10px;
    height: 10px;
    background: white;
    border-radius: 50%;
    animation: pulse 1.5s ease-in-out infinite;
}

/* ===================================
   MOBILE MENU
   =================================== */
.mobile-menu {
    position: fixed;
    inset: 0;
    background: rgba(0, 0, 0, 0.9);
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.mobile-menu.active {
    opacity: 1;
    visibility: visible;
}

.mobile-menu-content {
    text-align: center;
}

.mobile-menu-close {
    position: absolute;
    top: 20px;
    right: 20px;
    background: none;
    border: none;
    color: white;
    font-size: 2.5rem;
    cursor: pointer;
}

.mobile-nav {
    display: flex;
    flex-direction: column;
    gap: 25px;
    margin-bottom: 40px;
}

.mobile-nav a {
    font-size: 1.5rem;
    font-weight: 600;
}

/* ===================================
   RESPONSIVE
   =================================== */
@media (max-width: 1024px) {
    .hero .container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-content {
        max-width: 100%;
    }

    .hero-cta-group {
        justify-content: center;
    }

    .hero-trust {
        justify-content: center;
    }

    .hero-visual {
        margin-top: 50px;
    }

    .section-title {
        font-size: 2.2rem;
    }
}

@media (max-width: 768px) {
    .nav {
        display: none;
    }

    .btn-header {
        display: none;
    }

    .mobile-menu-btn {
        display: flex;
    }

    .floating-cta-mobile {
        display: block;
    }

    .hero {
        padding-bottom: 120px;
    }

    .hero-title {
        font-size: 2.5rem;
    }

    .hero-subtitle-line {
        font-size: 1.5rem;
    }

    .problem-grid {
        grid-template-columns: 1fr;
    }

    .questionnaire-container {
        padding: 30px 20px;
    }

    .result-card {
        grid-template-columns: 1fr;
    }

    .portfolio-grid {
        grid-template-columns: 1fr;
    }

    /* Tableau de comparaison scrollable sur mobile */
    .pricing-comparison {
        position: relative;
    }

    .pricing-comparison::after {
        content: '← Glissez pour voir →';
        display: block;
        text-align: center;
        font-size: 0.8rem;
        color: var(--text-muted);
        margin-top: 10px;
        padding: 8px;
        background: rgba(99, 102, 241, 0.1);
        border-radius: var(--radius-sm);
    }

    .comparison-row {
        min-width: 550px;
    }

    .comparison-row span {
        padding: 14px 10px;
        font-size: 0.85rem;
    }

    .contact-grid {
        grid-template-columns: 1fr;
    }

    .footer-content {
        flex-direction: column;
        gap: 30px;
        text-align: center;
    }

    .footer-links {
        flex-wrap: wrap;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-title {
        font-size: 2rem;
    }

    .section-title {
        font-size: 1.8rem;
    }

    .options-grid {
        grid-template-columns: 1fr;
    }

    .pricing-card {
        padding: 40px 25px;
    }

    .contact-form {
        padding: 25px;
    }
}

/* ===================================
   FLOATING WHATSAPP BUTTON
   =================================== */
.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    z-index: 1000;
    width: 60px;
    height: 60px;
    background: #25d366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    transition: var(--transition-normal);
    animation: whatsappPulse 2s ease-in-out infinite;
}

.whatsapp-float:hover {
    transform: scale(1.1);
    box-shadow: 0 6px 30px rgba(37, 211, 102, 0.6);
}

.whatsapp-icon {
    width: 32px;
    height: 32px;
}

.whatsapp-tooltip {
    position: absolute;
    right: 70px;
    background: #25d366;
    color: white;
    padding: 8px 15px;
    border-radius: var(--radius-md);
    font-size: 0.85rem;
    font-weight: 600;
    white-space: nowrap;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.whatsapp-tooltip::after {
    content: '';
    position: absolute;
    right: -6px;
    top: 50%;
    transform: translateY(-50%);
    border: 6px solid transparent;
    border-left-color: #25d366;
}

.whatsapp-float:hover .whatsapp-tooltip {
    opacity: 1;
    visibility: visible;
}

@keyframes whatsappPulse {

    0%,
    100% {
        box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    }

    50% {
        box-shadow: 0 4px 30px rgba(37, 211, 102, 0.6), 0 0 0 10px rgba(37, 211, 102, 0.1);
    }
}

@media (max-width: 768px) {
    .whatsapp-float {
        bottom: 90px;
        right: 20px;
        width: 55px;
        height: 55px;
    }

    .whatsapp-tooltip {
        display: none;
    }
}

/* ===================================
   STATISTICS COUNTER SECTION
   =================================== */
.stats-section {
    padding: 60px 0;
    background: linear-gradient(135deg, var(--primary) 0%, #8b5cf6 100%);
    position: relative;
    overflow: hidden;
}

.stats-section::before {
    content: '';
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M30 0L60 30L30 60L0 30z' fill='%23ffffff' fill-opacity='0.03'/%3E%3C/svg%3E");
}

.stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
    position: relative;
    z-index: 1;
}

.stat-card {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    transition: var(--transition-normal);
}

.stat-card:hover {
    transform: translateY(-5px);
    background: rgba(255, 255, 255, 0.15);
}

.stat-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.stat-number {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    display: inline;
}

.stat-suffix {
    font-family: 'Outfit', sans-serif;
    font-size: 2rem;
    font-weight: 700;
    display: inline;
}

.stat-label {
    font-size: 1rem;
    opacity: 0.9;
    margin-top: 10px;
}

@media (max-width: 768px) {
    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 15px;
    }

    .stat-number {
        font-size: 2rem;
    }

    .stat-suffix {
        font-size: 1.5rem;
    }
}

/* ===================================
   PROCESS TIMELINE SECTION
   =================================== */
.process-section {
    padding: var(--section-padding) 0;
    background: var(--bg-dark);
}

.process-timeline {
    display: flex;
    justify-content: space-between;
    gap: 30px;
    max-width: 1000px;
    margin: 0 auto;
}

.process-step {
    flex: 1;
    position: relative;
    text-align: center;
}

.step-number {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Outfit', sans-serif;
    font-size: 1.5rem;
    font-weight: 700;
    margin: 0 auto 25px;
    position: relative;
    z-index: 2;
}

.step-content {
    background: var(--bg-card);
    padding: 30px 25px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    transition: var(--transition-normal);
}

.step-content:hover {
    border-color: var(--primary);
    transform: translateY(-5px);
}

.step-icon {
    font-size: 2.5rem;
    margin-bottom: 15px;
}

.step-content h3 {
    font-size: 1.25rem;
    margin-bottom: 15px;
}

.step-content p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

.step-line {
    position: absolute;
    top: 25px;
    left: calc(50% + 35px);
    width: calc(100% - 70px);
    height: 3px;
    background: var(--gradient-primary);
    z-index: 1;
}

.process-step:last-child .step-line {
    display: none;
}

@media (max-width: 768px) {
    .process-timeline {
        flex-direction: column;
        gap: 20px;
    }

    .step-line {
        display: none;
    }
}

/* ===================================
   TESTIMONIALS SECTION
   =================================== */
.testimonials-section {
    padding: var(--section-padding) 0;
    background: var(--bg-card);
    overflow: hidden;
}

.testimonials-carousel {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.testimonials-track {
    display: flex;
    gap: 30px;
    transition: transform 0.5s ease;
}

.testimonial-card {
    min-width: 100%;
    background: var(--bg-dark);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.testimonial-stars {
    font-size: 1.25rem;
    margin-bottom: 20px;
}

.testimonial-text {
    font-size: 1.15rem;
    line-height: 1.8;
    color: var(--text-secondary);
    margin-bottom: 25px;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
}

.author-info {
    display: flex;
    flex-direction: column;
}

.author-info strong {
    font-size: 1rem;
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-muted);
}

.carousel-controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
}

.carousel-btn {
    width: 45px;
    height: 45px;
    border-radius: 50%;
    background: var(--bg-dark);
    border: 1px solid var(--border);
    color: var(--text-primary);
    font-size: 1.2rem;
    cursor: pointer;
    transition: var(--transition-normal);
}

.carousel-btn:hover {
    background: var(--primary);
    border-color: var(--primary);
}

.carousel-dots {
    display: flex;
    gap: 10px;
}

.carousel-dot {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    background: var(--border);
    cursor: pointer;
    transition: var(--transition-fast);
}

.carousel-dot.active {
    background: var(--primary);
    width: 30px;
    border-radius: 5px;
}

/* ===================================
   FAQ SECTION
   =================================== */
.faq-section {
    padding: var(--section-padding) 0;
    background: var(--bg-dark);
}

.faq-container {
    max-width: 800px;
    margin: 0 auto;
}

.faq-item {
    margin-bottom: 15px;
    border-radius: var(--radius-md);
    overflow: hidden;
    background: var(--bg-card);
    border: 1px solid var(--border);
}

.faq-question {
    width: 100%;
    padding: 20px 25px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    background: transparent;
    border: none;
    color: var(--text-primary);
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    text-align: left;
    transition: var(--transition-normal);
}

.faq-question:hover {
    background: rgba(99, 102, 241, 0.1);
}

.faq-icon {
    font-size: 1.5rem;
    font-weight: 300;
    transition: var(--transition-normal);
    color: var(--primary);
}

.faq-item.active .faq-icon {
    transform: rotate(45deg);
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease, padding 0.3s ease;
}

.faq-item.active .faq-answer {
    max-height: 300px;
    padding: 0 25px 20px;
}

.faq-answer p {
    color: var(--text-secondary);
    line-height: 1.7;
}

.faq-answer strong {
    color: var(--accent);
}

/* ===================================
   DARK MODE TOGGLE
   =================================== */
.dark-mode-toggle {
    position: fixed;
    top: 100px;
    right: 20px;
    z-index: 999;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid var(--border);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    transition: var(--transition-normal);
}

.dark-mode-toggle:hover {
    border-color: var(--primary);
    transform: scale(1.1);
}

.toggle-icon {
    font-size: 1.5rem;
    position: absolute;
    transition: var(--transition-normal);
}

.toggle-icon.sun {
    opacity: 0;
    transform: translateY(20px);
}

.toggle-icon.moon {
    opacity: 1;
    transform: translateY(0);
}

body.light-mode .toggle-icon.sun {
    opacity: 1;
    transform: translateY(0);
}

body.light-mode .toggle-icon.moon {
    opacity: 0;
    transform: translateY(-20px);
}

/* Light Mode Styles */
body.light-mode {
    --bg-dark: #f8fafc;
    --bg-card: #ffffff;
    --bg-card-hover: #f1f5f9;
    --text-primary: #1e293b;
    --text-secondary: #64748b;
    --text-muted: #94a3b8;
    --border: rgba(0, 0, 0, 0.1);
}

body.light-mode .header {
    background: rgba(248, 250, 252, 0.9);
}

body.light-mode .mobile-menu-btn span {
    background: var(--text-primary);
}

/* ===================================
   EXIT INTENT POPUP
   =================================== */
.exit-popup {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.exit-popup.active {
    opacity: 1;
    visibility: visible;
}

.exit-popup-content {
    background: var(--bg-card);
    padding: 50px;
    border-radius: var(--radius-lg);
    text-align: center;
    max-width: 500px;
    width: 90%;
    position: relative;
    transform: scale(0.9);
    transition: var(--transition-normal);
    border: 1px solid var(--border);
}

.exit-popup.active .exit-popup-content {
    transform: scale(1);
}

.exit-popup-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
    transition: var(--transition-fast);
}

.exit-popup-close:hover {
    color: var(--text-primary);
}

.exit-popup-icon {
    font-size: 4rem;
    margin-bottom: 20px;
    animation: shake 0.5s ease-in-out infinite;
}

@keyframes shake {

    0%,
    100% {
        transform: rotate(-5deg);
    }

    50% {
        transform: rotate(5deg);
    }
}

.exit-popup h3 {
    font-size: 2rem;
    margin-bottom: 10px;
}

.exit-popup-title {
    font-size: 1.25rem;
    color: var(--accent);
    margin-bottom: 15px;
}

.exit-popup-desc {
    color: var(--text-secondary);
    margin-bottom: 25px;
}

.exit-popup-code {
    background: rgba(99, 102, 241, 0.1);
    border: 2px dashed var(--primary);
    padding: 15px 25px;
    border-radius: var(--radius-md);
    display: inline-block;
    margin-bottom: 25px;
}

.exit-popup-code span {
    display: block;
    font-size: 0.85rem;
    color: var(--text-muted);
    margin-bottom: 5px;
}

.exit-popup-code strong {
    font-size: 1.5rem;
    color: var(--primary);
    letter-spacing: 3px;
}

.exit-popup-cta {
    width: 100%;
    margin-bottom: 15px;
}

.exit-popup-dismiss {
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 0.85rem;
    cursor: pointer;
    text-decoration: underline;
}

.exit-popup-dismiss:hover {
    color: var(--text-secondary);
}

/* ===================================
   CHATBOT WIDGET
   =================================== */
.chatbot-widget {
    position: fixed;
    bottom: 100px;
    right: 30px;
    z-index: 998;
}

.chatbot-toggle {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    background: var(--gradient-primary);
    border: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: var(--shadow-lg);
    transition: var(--transition-normal);
    position: relative;
}

.chatbot-toggle:hover {
    transform: scale(1.1);
}

.chatbot-icon-open,
.chatbot-icon-close {
    font-size: 1.5rem;
    position: absolute;
    transition: var(--transition-normal);
}

.chatbot-icon-close {
    opacity: 0;
    transform: scale(0);
}

.chatbot-widget.active .chatbot-icon-open {
    opacity: 0;
    transform: scale(0);
}

.chatbot-widget.active .chatbot-icon-close {
    opacity: 1;
    transform: scale(1);
}

.chatbot-badge {
    position: absolute;
    top: -5px;
    right: -5px;
    width: 22px;
    height: 22px;
    background: var(--danger);
    border-radius: 50%;
    font-size: 0.75rem;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
}

.chatbot-widget.active .chatbot-badge {
    display: none;
}

.chatbot-window {
    position: absolute;
    bottom: 70px;
    right: 0;
    width: 340px;
    max-height: 450px;
    background: var(--bg-card);
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
    box-shadow: var(--shadow-lg);
    display: flex;
    flex-direction: column;
    opacity: 0;
    visibility: hidden;
    transform: translateY(20px);
    transition: var(--transition-normal);
    overflow: hidden;
}

.chatbot-widget.active .chatbot-window {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.chatbot-header {
    padding: 12px 15px;
    background: var(--gradient-primary);
    display: flex;
    align-items: center;
    gap: 10px;
    flex-shrink: 0;
}

.chatbot-title {
    font-weight: 600;
    font-size: 0.95rem;
    flex: 1;
}

.chatbot-status {
    font-size: 0.75rem;
    color: #10b981;
}

.chatbot-close {
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: white;
    width: 26px;
    height: 26px;
    border-radius: 50%;
    cursor: pointer;
    font-size: 0.9rem;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition-fast);
}

.chatbot-close:hover {
    background: rgba(255, 255, 255, 0.3);
}

.chatbot-messages {
    padding: 12px;
    background: rgba(0, 0, 0, 0.3);
    flex-shrink: 0;
    max-height: 100px;
    overflow-y: auto;
}

.chat-message {
    font-size: 0.9rem;
    line-height: 1.4;
}

.chat-message.bot {
    color: var(--text-primary);
}

.chat-message.bot p {
    margin: 0;
    background: rgba(99, 102, 241, 0.15);
    padding: 10px 12px;
    border-radius: 10px;
}

.chat-message.user p {
    margin: 5px 0 0 0;
    background: var(--primary);
    padding: 8px 12px;
    border-radius: 10px;
    text-align: right;
    margin-left: 20%;
}

.chatbot-options {
    padding: 10px;
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    flex: 1;
    overflow-y: auto;
    max-height: 280px;
}

.chat-option {
    padding: 8px 12px;
    background: transparent;
    border: 1px solid var(--border);
    border-radius: 20px;
    color: var(--text-secondary);
    font-size: 0.8rem;
    cursor: pointer;
    transition: var(--transition-fast);
    flex: 1 1 45%;
    text-align: center;
    min-width: 0;
}

.chat-option:hover {
    background: var(--primary);
    color: white;
    border-color: var(--primary);
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .chatbot-widget {
        bottom: 160px;
        right: 15px;
    }

    .chatbot-toggle {
        width: 55px;
        height: 55px;
    }

    .chatbot-window {
        position: fixed;
        bottom: 80px;
        left: 10px;
        right: 10px;
        width: calc(100% - 20px);
        max-height: calc(100vh - 160px);
    }

    .chatbot-options {
        gap: 5px;
    }

    .chat-option {
        padding: 7px 10px;
        font-size: 0.75rem;
        flex: 1 1 30%;
    }
}

/* ===================================
   LIGHTBOX
   =================================== */
.lightbox {
    position: fixed;
    inset: 0;
    z-index: 10001;
    background: rgba(0, 0, 0, 0.95);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.lightbox.active {
    opacity: 1;
    visibility: visible;
}

.lightbox-close,
.lightbox-prev,
.lightbox-next {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    border: none;
    color: white;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    font-size: 1.5rem;
    cursor: pointer;
    transition: var(--transition-fast);
    z-index: 10;
}

.lightbox-close:hover,
.lightbox-prev:hover,
.lightbox-next:hover {
    background: var(--primary);
}

.lightbox-close {
    top: 20px;
    right: 20px;
}

.lightbox-prev {
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-next {
    right: 20px;
    top: 50%;
    transform: translateY(-50%);
}

.lightbox-content {
    max-width: 90%;
    max-height: 90%;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.lightbox-content img {
    max-width: 100%;
    max-height: 80vh;
    border-radius: var(--radius-md);
    box-shadow: var(--shadow-lg);
}

.lightbox-caption {
    margin-top: 20px;
    color: var(--text-secondary);
    font-size: 1rem;
    text-align: center;
}

/* ===================================
   PRICE CALCULATOR MODAL
   =================================== */
.calculator-modal {
    position: fixed;
    inset: 0;
    z-index: 10000;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(5px);
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition-normal);
}

.calculator-modal.active {
    opacity: 1;
    visibility: visible;
}

.calculator-content {
    background: var(--bg-card);
    padding: 30px;
    border-radius: var(--radius-lg);
    max-width: 450px;
    width: 90%;
    max-height: 85vh;
    overflow-y: auto;
    position: relative;
    border: 1px solid var(--border);
    transform: scale(0.9);
    transition: var(--transition-normal);
}

.calculator-modal.active .calculator-content {
    transform: scale(1);
}

.calculator-close {
    position: absolute;
    top: 15px;
    right: 20px;
    background: none;
    border: none;
    color: var(--text-muted);
    font-size: 2rem;
    cursor: pointer;
}

.calculator-content h3 {
    font-size: 1.75rem;
    margin-bottom: 10px;
    text-align: center;
}

.calculator-subtitle {
    text-align: center;
    color: var(--text-secondary);
    margin-bottom: 30px;
}

.calc-group {
    margin-bottom: 25px;
}

.calc-group label {
    display: block;
    font-weight: 600;
    margin-bottom: 12px;
}

.calc-options {
    display: flex;
    gap: 10px;
}

.calc-option {
    flex: 1;
    padding: 15px 10px;
    background: var(--bg-dark);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    cursor: pointer;
    text-align: center;
    transition: var(--transition-normal);
    color: var(--text-primary);
}

.calc-option:hover,
.calc-option.active {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
}

.calc-option-icon {
    display: block;
    font-size: 1.5rem;
    margin-bottom: 8px;
}

.calc-option-text {
    display: block;
    font-size: 0.85rem;
    margin-bottom: 5px;
}

.calc-option-price {
    display: block;
    font-weight: 700;
    color: var(--primary);
}

.calc-addons {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.calc-addon {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 15px;
    background: var(--bg-dark);
    border-radius: var(--radius-md);
    cursor: pointer;
    transition: var(--transition-fast);
}

.calc-addon:hover {
    background: var(--bg-card-hover);
}

.calc-addon input {
    display: none;
}

.addon-check {
    width: 22px;
    height: 22px;
    border: 2px solid var(--border);
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 0.8rem;
    color: transparent;
    transition: var(--transition-fast);
}

.calc-addon input:checked+.addon-check {
    background: var(--primary);
    border-color: var(--primary);
    color: white;
}

.addon-price {
    margin-left: auto;
    color: var(--text-muted);
    font-size: 0.9rem;
}

.calc-result {
    background: rgba(99, 102, 241, 0.1);
    padding: 25px;
    border-radius: var(--radius-md);
    text-align: center;
    margin-bottom: 20px;
}

.calc-total-label {
    font-size: 0.9rem;
    color: var(--text-secondary);
    margin-bottom: 10px;
}

.calc-total-price {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 15px;
}

.calc-old-price {
    font-size: 1.25rem;
    color: var(--text-muted);
    text-decoration: line-through;
}

.calc-final-price {
    font-family: 'Outfit', sans-serif;
    font-size: 3rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.calc-note {
    font-size: 0.85rem;
    color: var(--success);
    margin-top: 10px;
}

.calc-cta {
    width: 100%;
}

.calculator-trigger {
    position: fixed;
    left: 20px;
    bottom: 30px;
    z-index: 997;
    padding: 12px 20px;
    background: var(--gradient-accent);
    border: none;
    border-radius: var(--radius-xl);
    color: white;
    font-weight: 600;
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 8px;
    box-shadow: var(--shadow-md);
    transition: var(--transition-normal);
}

.calculator-trigger:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(245, 158, 11, 0.4);
}

.calc-trigger-icon {
    font-size: 1.2rem;
}

@media (max-width: 768px) {
    .calculator-trigger {
        bottom: 90px;
        left: 20px;
        padding: 10px 15px;
        font-size: 0.85rem;
    }

    .calc-trigger-text {
        display: none;
    }

    .calc-options {
        flex-direction: column;
    }

    .dark-mode-toggle {
        top: 80px;
        right: 10px;
        width: 40px;
        height: 40px;
    }

    .toggle-icon {
        font-size: 1.2rem;
    }
}

/* ===================================
   PREVIEW INPUT - NAME PREVIEW
   =================================== */
.preview-input-container {
    margin-top: 20px;
    text-align: center;
}

.preview-input-container label {
    display: block;
    color: var(--text-secondary);
    font-size: 0.9rem;
    margin-bottom: 10px;
}

.preview-input-container input {
    width: 100%;
    max-width: 280px;
    padding: 12px 20px;
    background: var(--bg-dark);
    border: 2px solid var(--border);
    border-radius: var(--radius-xl);
    color: var(--text-primary);
    font-size: 1rem;
    text-align: center;
    transition: var(--transition-normal);
}

.preview-input-container input:focus {
    outline: none;
    border-color: var(--primary);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
}

.preview-input-container input::placeholder {
    color: var(--text-muted);
}

.preview-logo {
    font-size: 0.6rem;
    color: white;
    font-weight: 600;
}

.preview-title {
    font-size: 0.5rem;
    color: white;
    text-align: center;
    display: block;
    line-height: 1.3;
}

.preview-title strong {
    color: var(--accent);
    font-size: 0.6rem;
}

/* ===================================
   ROI CALCULATOR SECTION
   =================================== */
.roi-section {
    padding: 100px 0;
    background: var(--bg-dark);
}

.roi-calculator {
    max-width: 800px;
    margin: 0 auto;
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 40px;
}

.roi-inputs {
    display: flex;
    flex-direction: column;
    gap: 30px;
    margin-bottom: 40px;
}

.roi-input-group label {
    display: block;
    color: var(--text-primary);
    font-weight: 600;
    margin-bottom: 15px;
}

.roi-slider-container {
    display: flex;
    align-items: center;
    gap: 20px;
}

.roi-slider {
    flex: 1;
    -webkit-appearance: none;
    appearance: none;
    height: 8px;
    background: var(--border);
    border-radius: 4px;
    outline: none;
}

.roi-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    appearance: none;
    width: 24px;
    height: 24px;
    border-radius: 50%;
    background: var(--gradient-primary);
    cursor: pointer;
    box-shadow: 0 4px 10px rgba(99, 102, 241, 0.4);
    transition: transform 0.2s;
}

.roi-slider::-webkit-slider-thumb:hover {
    transform: scale(1.2);
}

.roi-value {
    min-width: 120px;
    text-align: right;
    color: var(--primary-light);
    font-weight: 700;
    font-size: 1.1rem;
}

.roi-results {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-bottom: 30px;
}

.roi-result-card {
    background: rgba(0, 0, 0, 0.3);
    border-radius: var(--radius-md);
    padding: 25px 20px;
    text-align: center;
}

.roi-result-card.roi-loss {
    border: 2px solid var(--danger);
}

.roi-result-card.roi-annual {
    border: 2px solid var(--warning);
}

.roi-result-card.roi-investment {
    border: 2px solid var(--success);
}

.roi-result-icon {
    font-size: 2rem;
    margin-bottom: 10px;
}

.roi-result-label {
    color: var(--text-secondary);
    font-size: 0.85rem;
    margin-bottom: 8px;
}

.roi-result-value {
    font-size: 1.8rem;
    font-weight: 800;
    color: var(--text-primary);
}

.roi-result-value.highlight {
    color: var(--success);
}

.roi-loss .roi-result-value {
    color: var(--danger);
}

.roi-annual .roi-result-value {
    color: var(--warning);
}

.roi-cta {
    text-align: center;
}

.roi-message {
    font-size: 1.2rem;
    color: var(--text-primary);
    margin-bottom: 25px;
}

.roi-message span {
    color: var(--success);
    font-weight: 700;
}

@media (max-width: 768px) {
    .roi-calculator {
        padding: 25px 20px;
    }

    .roi-results {
        grid-template-columns: 1fr;
    }

    .roi-slider-container {
        flex-direction: column;
        align-items: stretch;
        gap: 10px;
    }

    .roi-value {
        text-align: center;
    }

    .roi-result-value {
        font-size: 1.5rem;
    }
}

/* ===================================
   CONFIGURATOR SECTION
   =================================== */
.configurator-section {
    padding: 100px 0;
    background: var(--bg-card);
}

.configurator-wrapper {
    display: grid;
    grid-template-columns: 1fr 1.2fr;
    gap: 50px;
    align-items: start;
}

.configurator-controls {
    background: var(--bg-dark);
    padding: 40px;
    border-radius: var(--radius-lg);
    border: 1px solid var(--border);
}

.control-group {
    margin-bottom: 35px;
}

.control-group h4 {
    font-size: 1.1rem;
    margin-bottom: 15px;
    color: var(--text-primary);
}

.color-options,
.color-btn-accent {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.color-btn,
.color-btn-accent {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    border: 3px solid transparent;
    cursor: pointer;
    transition: var(--transition-normal);
    position: relative;
}

.color-btn:hover,
.color-btn-accent:hover {
    transform: scale(1.1);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.3);
}

.color-btn.active,
.color-btn-accent.active {
    border-color: white;
    box-shadow: 0 0 0 2px var(--bg-dark), 0 0 20px rgba(255, 255, 255, 0.5);
}

.color-btn.active::after,
.color-btn-accent.active::after {
    content: '✓';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    color: white;
    font-size: 1.2rem;
    font-weight: 700;
}

.style-options {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 12px;
}

.style-btn {
    background: rgba(255, 255, 255, 0.05);
    border: 2px solid var(--border);
    border-radius: var(--radius-md);
    padding: 20px 15px;
    cursor: pointer;
    transition: var(--transition-normal);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: var(--text-primary);
    font-weight: 600;
}

.style-btn:hover {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.1);
    transform: translateY(-3px);
}

.style-btn.active {
    border-color: var(--primary);
    background: rgba(99, 102, 241, 0.15);
    box-shadow: 0 0 20px rgba(99, 102, 241, 0.3);
}

.style-icon {
    font-size: 2rem;
}

.configurator-cta {
    margin-top: 40px;
    text-align: center;
    padding-top: 30px;
    border-top: 1px solid var(--border);
}

.config-note {
    color: var(--text-secondary);
    margin-bottom: 20px;
    font-size: 0.95rem;
}

.configurator-preview {
    position: sticky;
    top: 100px;
}

.preview-window {
    background: var(--bg-dark);
    border: 2px solid var(--border);
    border-radius: var(--radius-lg);
    padding: 20px;
    box-shadow: var(--shadow-lg);
}

.preview-site {
    background: white;
    border-radius: var(--radius-md);
    overflow: hidden;
    min-height: 500px;
}

.preview-site-header {
    background: var(--config-primary, #6366f1);
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: background 0.3s ease;
}

.preview-site-logo {
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
}

.preview-site-nav {
    width: 100px;
    height: 8px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 4px;
}

.preview-site-hero {
    background: linear-gradient(135deg, var(--config-primary, #6366f1), var(--config-accent, #f59e0b));
    padding: 40px 20px;
    text-align: center;
    color: white;
    transition: background 0.3s ease;
}

.preview-site-hero h1 {
    font-size: 1.2rem;
    margin-bottom: 10px;
    font-weight: 700;
}

.preview-site-hero p {
    font-size: 0.75rem;
    opacity: 0.9;
    margin-bottom: 15px;
}

.preview-site-btn {
    display: inline-block;
    padding: 8px 20px;
    background: var(--config-accent, #f59e0b);
    border-radius: 20px;
    font-size: 0.7rem;
    font-weight: 600;
    transition: background 0.3s ease;
}

.preview-site-content {
    padding: 30px 20px;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 15px;
    background: #f8f8f8;
}

.preview-site-card {
    background: white;
    border-radius: 8px;
    height: 80px;
    border: 2px solid var(--config-primary, #6366f1);
    transition: border-color 0.3s ease;
}

.preview-label {
    text-align: center;
    color: var(--text-secondary);
    margin-top: 15px;
    font-size: 0.9rem;
}

@media (max-width: 968px) {
    .configurator-wrapper {
        grid-template-columns: 1fr;
    }

    .configurator-preview {
        position: static;
        order: -1;
    }

    .style-options {
        grid-template-columns: 1fr;
    }

    .preview-site-content {
        grid-template-columns: 1fr;
    }
}

/* ===================================
   TYPING EFFECT
   =================================== */
.typing-text {
    color: var(--accent);
    font-weight: 700;
    min-width: 250px;
    display: inline-block;
}

.typing-cursor {
    color: var(--accent);
    font-weight: 300;
    animation: blink 1s step-end infinite;
}

@keyframes blink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0;
    }
}

/* ===================================
   PRICE COUNTDOWN
   =================================== */
.price-countdown-container {
    background: linear-gradient(135deg, rgba(239, 68, 68, 0.15) 0%, rgba(220, 38, 38, 0.1) 100%);
    border: 2px dashed rgba(239, 68, 68, 0.4);
    border-radius: var(--radius-md);
    padding: 25px;
    margin-bottom: 30px;
    text-align: center;
}

.countdown-urgency {
    color: var(--danger);
    font-weight: 700;
    font-size: 1.1rem;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
    animation: urgencyPulse 2s ease-in-out infinite;
}

@keyframes urgencyPulse {

    0%,
    100% {
        opacity: 1;
    }

    50% {
        opacity: 0.7;
    }
}

.price-countdown {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 10px;
}

.countdown-block {
    display: flex;
    flex-direction: column;
    align-items: center;
    background: var(--bg-dark);
    padding: 15px 20px;
    border-radius: var(--radius-md);
    min-width: 80px;
    border: 1px solid rgba(239, 68, 68, 0.3);
}

.countdown-number {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--danger);
    line-height: 1;
    text-shadow: 0 0 20px rgba(239, 68, 68, 0.5);
}

.countdown-label {
    font-size: 0.75rem;
    color: var(--text-muted);
    margin-top: 5px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.countdown-separator {
    font-size: 2rem;
    color: var(--danger);
    font-weight: 700;
    animation: separatorBlink 1s step-end infinite;
}

@keyframes separatorBlink {

    0%,
    50% {
        opacity: 1;
    }

    51%,
    100% {
        opacity: 0.3;
    }
}

@media (max-width: 768px) {
    .typing-text {
        min-width: 180px;
        font-size: 0.9em;
    }

    .countdown-block {
        padding: 10px 12px;
        min-width: 60px;
    }

    .countdown-number {
        font-size: 1.8rem;
    }

    .countdown-label {
        font-size: 0.65rem;
    }

    .countdown-separator {
        font-size: 1.5rem;
    }
}

/* ===================================
   HERO PRICE POP
   =================================== */
.hero-price-pop {
    font-size: 1.5em;
    /* 50% plus grand que le texte autour */
    font-weight: 800;
    color: var(--accent);
    text-shadow: 0 0 20px rgba(245, 158, 11, 0.6);
    display: inline-block;
    padding: 0 10px;
    background: rgba(245, 158, 11, 0.1);
    border-radius: var(--radius-sm);
    border: 2px dashed rgba(245, 158, 11, 0.4);
    transform: rotate(-3deg);
    animation: pricePop 3s ease-in-out infinite;
    vertical-align: middle;
    margin: 0 5px;
}

@keyframes pricePop {

    0%,
    100% {
        transform: rotate(-3deg) scale(1);
    }

    50% {
        transform: rotate(3deg) scale(1.1);
        box-shadow: 0 0 30px rgba(245, 158, 11, 0.3);
    }
}