/* ==========================================================================
   Marketing Pas Cher Paris - Main Styles
   ========================================================================== */

:root {
    --primary: #667eea;
    --primary-dark: #5a67d8;
    --secondary: #764ba2;
    --accent: #f093fb;
    --success: #48bb78;
    --warning: #ed8936;
    --danger: #f56565;
    --dark: #1a202c;
    --gray-900: #1a202c;
    --gray-800: #2d3748;
    --gray-700: #4a5568;
    --gray-600: #718096;
    --gray-500: #a0aec0;
    --gray-400: #cbd5e0;
    --gray-300: #e2e8f0;
    --gray-200: #edf2f7;
    --gray-100: #f7fafc;
    --white: #ffffff;
    --gradient-primary: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    --gradient-accent: linear-gradient(135deg, var(--accent) 0%, var(--primary) 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    --shadow-md: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    --shadow-lg: 0 20px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
    --shadow-xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --radius: 8px;
    --radius-lg: 16px;
    --radius-xl: 24px;
}

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

html {
    scroll-behavior: smooth;
    overflow-x: hidden;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    line-height: 1.6;
    color: var(--gray-800);
    background: var(--white);
    overflow-x: hidden;
}

/* ==========================================================================
   Typography
   ========================================================================== */

h1, h2, h3, h4, h5, h6 {
    font-weight: 700;
    line-height: 1.2;
    color: var(--gray-900);
}

h1 { font-size: clamp(2rem, 5vw, 3.5rem); }
h2 { font-size: clamp(1.75rem, 4vw, 2.5rem); }
h3 { font-size: clamp(1.25rem, 3vw, 1.75rem); }

p {
    color: var(--gray-600);
    font-size: 1.1rem;
}

/* ==========================================================================
   Sidebar Navigation (Desktop)
   ========================================================================== */

.sidebar {
    position: fixed;
    top: 0;
    left: 0;
    width: 260px;
    height: 100vh;
    background: var(--white);
    border-right: 1px solid var(--gray-200);
    z-index: 1001;
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.sidebar-header {
    padding: 1.5rem;
    border-bottom: 1px solid var(--gray-200);
}

.sidebar-account-top {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    padding: 0.4rem 0.75rem;
    margin-top: 0.75rem;
    border-radius: var(--radius);
    font-size: 0.75rem;
    font-weight: 600;
    text-decoration: none;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--white);
    transition: all 0.2s ease;
    width: fit-content;
}

.sidebar-account-top:hover {
    transform: translateY(-1px);
    box-shadow: 0 3px 10px rgba(16, 185, 129, 0.3);
}

.sidebar-account-top svg {
    width: 14px;
    height: 14px;
}

.sidebar-logo {
    display: block;
    text-decoration: none;
}

.sidebar-logo .logo-img {
    height: 50px;
    width: auto;
    object-fit: contain;
}

.sidebar-nav {
    flex: 1;
    overflow-y: auto;
    padding: 1rem 0;
}

.sidebar-menu {
    list-style: none;
    padding: 0 0.75rem;
}

.sidebar-menu li {
    margin-bottom: 0.25rem;
}

.sidebar-menu a {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.7rem 1rem;
    color: var(--gray-700);
    text-decoration: none;
    font-size: 0.95rem;
    font-weight: 500;
    border-radius: var(--radius);
    transition: all 0.2s ease;
}

.sidebar-menu a:hover {
    background: rgba(102, 126, 234, 0.08);
    color: var(--primary);
}

.sidebar-menu a.active {
    background: var(--gradient-primary);
    color: var(--white);
}

.sidebar-menu a svg {
    width: 20px;
    height: 20px;
    flex-shrink: 0;
}

.sidebar-menu .menu-section {
    font-size: 0.75rem;
    font-weight: 700;
    color: var(--gray-500);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    padding: 1.25rem 1rem 0.5rem;
    margin-top: 0.5rem;
}

/* E-Shops PACK special menu item */
.sidebar-menu .menu-item-pack {
    margin-bottom: 0.5rem;
}

.sidebar-menu .menu-item-pack a {
    background: linear-gradient(135deg, rgba(102,126,234,0.15) 0%, rgba(118,75,162,0.15) 100%);
    border: 1px solid rgba(102,126,234,0.3);
    border-radius: var(--radius);
    color: var(--primary);
    font-weight: 600;
    position: relative;
    flex-wrap: wrap;
}

.sidebar-menu .menu-item-pack a:hover {
    background: linear-gradient(135deg, rgba(102,126,234,0.25) 0%, rgba(118,75,162,0.25) 100%);
    border-color: var(--primary);
    transform: translateX(3px);
}

.sidebar-menu .menu-item-pack a svg {
    color: var(--primary);
}

.pack-tag {
    font-size: 0.6rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    padding: 2px 8px;
    border-radius: 10px;
    margin-left: auto;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.sidebar-footer {
    padding: 1rem;
    border-top: 1px solid var(--gray-200);
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.sidebar-cta {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.75rem 1rem;
    border-radius: var(--radius);
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s ease;
    background: var(--gray-100);
    color: var(--gray-700);
}

.sidebar-cta:hover {
    background: var(--gray-200);
}

.sidebar-cta.primary {
    background: var(--gradient-primary);
    color: var(--white);
}

.sidebar-cta.primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.sidebar-cta.account {
    display: none;
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    color: var(--white);
}

.sidebar-cta.account:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 15px rgba(16, 185, 129, 0.4);
}

.sidebar-cta svg {
    width: 18px;
    height: 18px;
}

/* Mobile Header */
.mobile-header {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 60px;
    background: var(--white);
    border-bottom: 1px solid var(--gray-200);
    z-index: 1002;
    padding: 0 1rem;
    align-items: center;
    justify-content: space-between;
}

.mobile-logo .logo-img {
    height: 40px;
}

.menu-toggle {
    display: flex;
    flex-direction: column;
    gap: 6px;
    cursor: pointer;
    padding: 10px;
    background: none;
    border: none;
    z-index: 1003;
}

.menu-toggle span {
    width: 26px;
    height: 3px;
    background: var(--gray-800);
    border-radius: 3px;
    transition: all 0.3s ease;
    display: block;
}

.menu-toggle.active span:nth-child(1) {
    transform: rotate(45deg) translate(6px, 6px);
}

.menu-toggle.active span:nth-child(2) {
    opacity: 0;
}

.menu-toggle.active span:nth-child(3) {
    transform: rotate(-45deg) translate(6px, -6px);
}

.sidebar-overlay {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.5);
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transition: all 0.3s ease;
    display: none;
}

.sidebar-overlay.active {
    opacity: 1;
    visibility: visible;
}

/* Main content offset for sidebar */
.hero,
.section,
.services-section,
.features-section,
.challenge-section,
.testimonials-section,
.cta-section,
.footer {
    margin-left: 260px;
}

.footer-logo {
    height: 60px;
}

/* ==========================================================================
   Buttons
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-size: 1rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: 0 4px 15px rgba(102, 126, 234, 0.4);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(102, 126, 234, 0.5);
}

.btn-secondary {
    background: var(--white);
    color: var(--primary);
    border: 2px solid var(--primary);
}

.btn-secondary:hover {
    background: var(--primary);
    color: var(--white);
}

.btn-lg {
    padding: 1rem 2.5rem;
    font-size: 1.1rem;
}

/* ==========================================================================
   Hero Section
   ========================================================================== */

.hero {
    min-height: 100vh;
    display: flex;
    align-items: center;
    position: relative;
    background: linear-gradient(180deg, var(--gray-100) 0%, var(--white) 100%);
    padding-top: 2rem;
}

.hero-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 2rem;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 4rem;
    align-items: center;
}

.hero-content {
    z-index: 10;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(102, 126, 234, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease;
}

.hero-badge .badge-icon {
    width: 20px;
    height: 20px;
}

.hero-title {
    margin-bottom: 1.5rem;
    animation: fadeInUp 0.6s ease 0.1s backwards;
}

.hero-title .highlight {
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    animation: fadeInUp 0.6s ease 0.2s backwards;
}

.hero-buttons {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    animation: fadeInUp 0.6s ease 0.3s backwards;
}

.hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 3rem;
    animation: fadeInUp 0.6s ease 0.4s backwards;
}

.stat-item {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--gray-600);
    font-weight: 500;
}

/* ==========================================================================
   Device Mockups - Premium Design
   ========================================================================== */

.hero-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
    perspective: 1000px;
}

/* Laptop Mockup - MacBook Style */
.laptop-mockup {
    position: absolute;
    width: 420px;
    height: 280px;
    background: linear-gradient(180deg, #2d2d2d 0%, #1a1a1a 100%);
    border-radius: 16px 16px 0 0;
    padding: 12px 12px 8px 12px;
    animation: floatLaptop 6s ease-in-out infinite;
    z-index: 2;
    box-shadow:
        0 25px 50px -12px rgba(0, 0, 0, 0.4),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset,
        0 -1px 0 0 rgba(255, 255, 255, 0.05) inset;
}

/* Camera dot */
.laptop-mockup::before {
    content: '';
    position: absolute;
    top: 6px;
    left: 50%;
    transform: translateX(-50%);
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, #1a1a1a 40%, #0a0a0a 100%);
    border-radius: 50%;
    box-shadow: 0 0 0 1px rgba(255,255,255,0.1);
}

/* Screen reflection */
.laptop-mockup::after {
    content: '';
    position: absolute;
    top: 20px;
    left: 12px;
    right: 12px;
    bottom: 8px;
    background: linear-gradient(135deg, rgba(255,255,255,0.1) 0%, transparent 50%);
    border-radius: 6px;
    pointer-events: none;
    z-index: 10;
}

.laptop-screen {
    width: 100%;
    height: 100%;
    background: #0f0f0f;
    border-radius: 6px;
    overflow: hidden;
    position: relative;
    box-shadow: 0 0 0 2px #0a0a0a inset;
}

.laptop-browser {
    height: 32px;
    background: linear-gradient(180deg, #3a3a3a 0%, #2d2d2d 100%);
    display: flex;
    align-items: center;
    padding: 0 12px;
    gap: 8px;
    border-bottom: 1px solid #1a1a1a;
}

.browser-dots {
    display: flex;
    gap: 6px;
}

.browser-dots span {
    width: 10px;
    height: 10px;
    border-radius: 50%;
    box-shadow: 0 1px 2px rgba(0,0,0,0.3) inset;
}

.browser-dots span:nth-child(1) {
    background: linear-gradient(180deg, #ff6058 0%, #e04a42 100%);
}
.browser-dots span:nth-child(2) {
    background: linear-gradient(180deg, #ffbe30 0%, #dea123 100%);
}
.browser-dots span:nth-child(3) {
    background: linear-gradient(180deg, #2ace44 0%, #1db33a 100%);
}

.browser-url {
    flex: 1;
    background: linear-gradient(180deg, #1e1e1e 0%, #171717 100%);
    border-radius: 6px;
    padding: 5px 12px;
    font-size: 11px;
    color: #888;
    margin-left: 12px;
    overflow: hidden;
    white-space: nowrap;
    display: flex;
    align-items: center;
    gap: 6px;
    border: 1px solid #333;
}

.browser-url::before {
    content: '';
    width: 10px;
    height: 10px;
    background: var(--success);
    border-radius: 50%;
    flex-shrink: 0;
}

.url-typing {
    display: inline-block;
    overflow: hidden;
    white-space: nowrap;
    animation: typing 4s steps(25) infinite;
    color: #aaa;
}

.url-typing::after {
    content: '|';
    animation: blink 1s infinite;
    color: var(--primary);
}

.laptop-content {
    padding: 12px;
    height: calc(100% - 32px);
    display: flex;
    flex-direction: column;
    gap: 10px;
    background: linear-gradient(180deg, #fafbfc 0%, #f0f2f5 100%);
}

.content-header {
    height: 44px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 8px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 16px;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.content-nav {
    display: flex;
    gap: 12px;
}

.content-nav span {
    width: 50px;
    height: 6px;
    background: rgba(255,255,255,0.4);
    border-radius: 3px;
    animation: navPulse 2s ease infinite;
}

.content-nav span:nth-child(1) { animation-delay: 0s; }
.content-nav span:nth-child(2) { animation-delay: 0.2s; }
.content-nav span:nth-child(3) { animation-delay: 0.4s; }

.content-body {
    flex: 1;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 10px;
}

.content-card {
    background: white;
    border-radius: 10px;
    padding: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid rgba(0,0,0,0.04);
    animation: cardSlideUp 0.6s ease backwards;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.content-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(0,0,0,0.1);
}

.content-card:nth-child(1) { animation-delay: 0.3s; }
.content-card:nth-child(2) { animation-delay: 0.5s; }
.content-card:nth-child(3) { animation-delay: 0.7s; }

.card-icon {
    width: 32px;
    height: 32px;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(102, 126, 234, 0.3);
    position: relative;
    overflow: hidden;
}

.card-icon::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 14px;
    height: 14px;
    background: rgba(255,255,255,0.3);
    border-radius: 3px;
}

.card-lines {
    display: flex;
    flex-direction: column;
    gap: 5px;
}

.card-lines span {
    height: 6px;
    background: linear-gradient(90deg, #e2e8f0 0%, #edf2f7 100%);
    border-radius: 3px;
    animation: lineShimmer 2s ease infinite;
}

.card-lines span:last-child {
    width: 70%;
}

/* Laptop Base - Premium */
.laptop-base {
    position: absolute;
    bottom: -18px;
    left: 50%;
    transform: translateX(-50%);
    width: 480px;
    height: 18px;
    background: linear-gradient(180deg, #3a3a3a 0%, #1a1a1a 100%);
    border-radius: 0 0 12px 12px;
    box-shadow:
        0 8px 20px rgba(0,0,0,0.3),
        0 1px 0 0 rgba(255,255,255,0.05) inset;
}

.laptop-base::before {
    content: '';
    position: absolute;
    top: 2px;
    left: 50%;
    transform: translateX(-50%);
    width: 100px;
    height: 6px;
    background: linear-gradient(180deg, #555 0%, #333 100%);
    border-radius: 0 0 6px 6px;
}

.laptop-base::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent 0%, rgba(255,255,255,0.1) 50%, transparent 100%);
}

/* Phone Mockup - iPhone Style */
.phone-mockup {
    position: absolute;
    right: -30px;
    bottom: 30px;
    width: 150px;
    height: 310px;
    background: linear-gradient(180deg, #1f1f1f 0%, #0a0a0a 100%);
    border-radius: 32px;
    padding: 10px;
    animation: floatPhone 5s ease-in-out infinite;
    animation-delay: -2s;
    z-index: 3;
    box-shadow:
        0 30px 60px -15px rgba(0, 0, 0, 0.5),
        0 0 0 1px rgba(255, 255, 255, 0.1) inset,
        -3px 0 0 0 #2a2a2a,
        3px 0 0 0 #2a2a2a;
}

/* Side buttons */
.phone-mockup::before {
    content: '';
    position: absolute;
    left: -3px;
    top: 80px;
    width: 3px;
    height: 30px;
    background: #2a2a2a;
    border-radius: 2px 0 0 2px;
}

.phone-mockup::after {
    content: '';
    position: absolute;
    right: -3px;
    top: 100px;
    width: 3px;
    height: 50px;
    background: #2a2a2a;
    border-radius: 0 2px 2px 0;
}

.phone-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #111 0%, #000 100%);
    border-radius: 24px;
    overflow: hidden;
    position: relative;
}

/* Dynamic Island */
.phone-notch {
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 70px;
    height: 22px;
    background: #000;
    border-radius: 20px;
    z-index: 10;
    box-shadow: 0 0 0 3px #111 inset;
    animation: islandPulse 3s ease infinite;
}

.phone-notch::before {
    content: '';
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: radial-gradient(circle, #1a3a1a 0%, #0a1a0a 100%);
    border-radius: 50%;
}

.phone-status-bar {
    height: 44px;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    padding: 0 20px 8px;
    font-size: 12px;
    font-weight: 600;
    background: linear-gradient(180deg, rgba(102, 126, 234, 0.9) 0%, rgba(118, 75, 162, 0.9) 100%);
}

.phone-time {
    color: white;
    font-weight: 600;
}

.phone-icons {
    display: flex;
    gap: 4px;
    align-items: center;
}

.phone-icons span {
    height: 10px;
    background: white;
    border-radius: 2px;
}

.phone-icons span:nth-child(1) {
    width: 16px;
    background: linear-gradient(90deg, white 70%, transparent 70%);
}

.phone-icons span:nth-child(2) {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    border: 2px solid white;
    background: transparent;
}

.phone-content {
    padding: 8px 10px 10px;
    height: calc(100% - 44px);
    display: flex;
    flex-direction: column;
    gap: 8px;
    background: linear-gradient(180deg, rgba(118, 75, 162, 0.3) 0%, #f8f9fa 20%);
}

.phone-header {
    text-align: center;
    padding: 8px 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.phone-header h4 {
    font-size: 11px;
    color: var(--gray-800);
    font-weight: 700;
    letter-spacing: 0.5px;
}

.phone-chart {
    background: white;
    border-radius: 12px;
    padding: 10px;
    flex: 1;
    display: flex;
    align-items: flex-end;
    gap: 6px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}

.chart-bar {
    flex: 1;
    background: linear-gradient(180deg, var(--primary) 0%, var(--secondary) 100%);
    border-radius: 4px 4px 0 0;
    animation: growBar 1.5s ease forwards;
    box-shadow: 0 -4px 8px rgba(102, 126, 234, 0.2);
    position: relative;
}

.chart-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 50%;
    background: linear-gradient(180deg, rgba(255,255,255,0.3) 0%, transparent 100%);
    border-radius: 4px 4px 0 0;
}

.chart-bar:nth-child(1) { --bar-height: 35%; animation-delay: 0.1s; }
.chart-bar:nth-child(2) { --bar-height: 60%; animation-delay: 0.2s; }
.chart-bar:nth-child(3) { --bar-height: 45%; animation-delay: 0.3s; }
.chart-bar:nth-child(4) { --bar-height: 85%; animation-delay: 0.4s; }
.chart-bar:nth-child(5) { --bar-height: 55%; animation-delay: 0.5s; }

.phone-stats {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 6px;
}

.phone-stat {
    background: white;
    border-radius: 10px;
    padding: 10px 6px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    animation: statPop 0.5s ease backwards;
}

.phone-stat:nth-child(1) { animation-delay: 0.8s; }
.phone-stat:nth-child(2) { animation-delay: 1s; }

.phone-stat .number {
    font-size: 14px;
    font-weight: 800;
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.phone-stat .label {
    font-size: 8px;
    color: var(--gray-500);
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Floating Notifications - Premium */
.floating-notifications {
    position: absolute;
    top: 0;
    right: 0;
    bottom: 0;
    left: 0;
    pointer-events: none;
    z-index: 4;
}

.notification {
    position: absolute;
    background: white;
    border-radius: 12px;
    padding: 12px 16px;
    box-shadow:
        0 10px 40px rgba(0,0,0,0.12),
        0 0 0 1px rgba(0,0,0,0.05);
    display: flex;
    align-items: center;
    gap: 12px;
    animation: notifSlide 5s ease infinite;
    opacity: 0;
    backdrop-filter: blur(10px);
}

.notification-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    font-weight: 700;
}

.notification-icon.success {
    background: linear-gradient(135deg, #48bb78 0%, #38a169 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(72, 187, 120, 0.3);
}

.notification-icon.warning {
    background: linear-gradient(135deg, #ed8936 0%, #dd6b20 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(237, 137, 54, 0.3);
}

.notification-icon.primary {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    color: white;
    box-shadow: 0 4px 12px rgba(102, 126, 234, 0.3);
}

.notification-content {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.notification-text {
    font-size: 12px;
    font-weight: 600;
    color: var(--gray-800);
}

.notification-subtext {
    font-size: 10px;
    color: var(--gray-500);
}

.notif-1 {
    top: 15%;
    left: -10px;
    animation-delay: 0s;
}

.notif-2 {
    top: 45%;
    right: -10px;
    animation-delay: 2s;
}

.notif-3 {
    bottom: 25%;
    left: 5%;
    animation-delay: 4s;
}

/* ==========================================================================
   Sections
   ========================================================================== */

section {
    padding: 6rem 2rem;
}

.section-header {
    text-align: center;
    max-width: 700px;
    margin: 0 auto 4rem;
}

.section-header h2 {
    margin-bottom: 1rem;
}

.section-header p {
    font-size: 1.1rem;
}

/* Premium Section Headers */
.section-header-premium {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 3rem;
    position: relative;
}

.section-header-premium .section-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(118, 75, 162, 0.1) 100%);
    border: 1px solid rgba(102, 126, 234, 0.2);
    padding: 0.5rem 1.25rem;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--primary);
    margin-bottom: 1.25rem;
    animation: badgePulse 3s ease-in-out infinite;
}

.section-header-premium .section-badge svg {
    width: 16px;
    height: 16px;
}

@keyframes badgePulse {
    0%, 100% { transform: scale(1); box-shadow: 0 0 0 0 rgba(102, 126, 234, 0.4); }
    50% { transform: scale(1.02); box-shadow: 0 0 20px 0 rgba(102, 126, 234, 0.2); }
}

.section-header-premium h2 {
    font-size: clamp(2rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
    line-height: 1.2;
}

.section-header-premium h2 .gradient-text {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 50%, var(--accent) 100%);
    background-size: 200% 200%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
}

.section-header-premium .section-subtitle {
    font-size: 1.15rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.7;
}

.section-header-premium .section-subtitle strong {
    color: var(--gray-800);
    font-weight: 600;
}

/* ==========================================================================
   Ultra Premium Advantages Section
   ========================================================================== */

.advantages-premium {
    background: linear-gradient(180deg, #0a0a1a 0%, #1a1a3a 50%, #0a0a1a 100%);
    padding: 6rem 2rem;
    position: relative;
    overflow: hidden;
    margin-left: 280px;
}

@media (max-width: 1024px) {
    .advantages-premium {
        margin-left: 0;
    }
}

/* Animated Background Orbs */
.advantages-premium::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background:
        radial-gradient(circle at 20% 30%, rgba(102, 126, 234, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 70%, rgba(118, 75, 162, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 50% 50%, rgba(236, 72, 153, 0.08) 0%, transparent 50%);
    animation: orbFloat 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes orbFloat {
    0%, 100% { transform: translate(0, 0) rotate(0deg); }
    25% { transform: translate(2%, 3%) rotate(5deg); }
    50% { transform: translate(-2%, 1%) rotate(-5deg); }
    75% { transform: translate(1%, -2%) rotate(3deg); }
}

/* Floating Particles Container */
.advantages-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    overflow: hidden;
}

.advantages-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.6);
    border-radius: 50%;
    animation: particleFloat 8s ease-in-out infinite;
    box-shadow: 0 0 10px rgba(102, 126, 234, 0.8), 0 0 20px rgba(102, 126, 234, 0.4);
}

.advantages-particles .particle:nth-child(1) { left: 10%; top: 20%; animation-delay: 0s; animation-duration: 10s; }
.advantages-particles .particle:nth-child(2) { left: 20%; top: 60%; animation-delay: 1s; animation-duration: 12s; }
.advantages-particles .particle:nth-child(3) { left: 35%; top: 30%; animation-delay: 2s; animation-duration: 9s; }
.advantages-particles .particle:nth-child(4) { left: 50%; top: 70%; animation-delay: 0.5s; animation-duration: 11s; }
.advantages-particles .particle:nth-child(5) { left: 65%; top: 25%; animation-delay: 1.5s; animation-duration: 8s; }
.advantages-particles .particle:nth-child(6) { left: 80%; top: 55%; animation-delay: 2.5s; animation-duration: 13s; }
.advantages-particles .particle:nth-child(7) { left: 90%; top: 35%; animation-delay: 0.8s; animation-duration: 10s; }
.advantages-particles .particle:nth-child(8) { left: 5%; top: 80%; animation-delay: 1.8s; animation-duration: 9s; }
.advantages-particles .particle:nth-child(9) { left: 45%; top: 15%; animation-delay: 2.2s; animation-duration: 11s; }
.advantages-particles .particle:nth-child(10) { left: 75%; top: 85%; animation-delay: 0.3s; animation-duration: 12s; }

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) translateX(0) scale(1);
        opacity: 0.6;
    }
    25% {
        transform: translateY(-30px) translateX(15px) scale(1.2);
        opacity: 1;
    }
    50% {
        transform: translateY(-15px) translateX(-10px) scale(0.8);
        opacity: 0.4;
    }
    75% {
        transform: translateY(-40px) translateX(5px) scale(1.1);
        opacity: 0.8;
    }
}

/* Premium Section Header Dark Theme */
.advantages-premium .section-header-premium {
    position: relative;
    z-index: 2;
}

.advantages-premium .section-badge {
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(236, 72, 153, 0.2) 100%);
    border-color: rgba(102, 126, 234, 0.4);
    color: #a5b4fc;
}

.advantages-premium h2 {
    color: white;
    font-size: 2.5rem;
}

.advantages-premium .section-subtitle {
    color: rgba(255, 255, 255, 0.7);
}

.advantages-premium .section-subtitle strong {
    color: white;
}

/* Ultra Premium Cards Grid */
.advantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

/* Glassmorphism Card */
.advantage-card-premium {
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.08) 0%, rgba(255, 255, 255, 0.02) 100%);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 24px;
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.5s cubic-bezier(0.23, 1, 0.32, 1);
}

.advantage-card-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.1) 0%, rgba(236, 72, 153, 0.1) 100%);
    opacity: 0;
    transition: opacity 0.5s ease;
    border-radius: 24px;
}

.advantage-card-premium::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary), var(--accent));
    border-radius: 26px;
    z-index: -1;
    opacity: 0;
    transition: opacity 0.5s ease;
}

.advantage-card-premium:hover {
    transform: translateY(-10px) scale(1.02);
    border-color: rgba(255, 255, 255, 0.2);
    box-shadow:
        0 25px 50px rgba(102, 126, 234, 0.3),
        0 0 100px rgba(102, 126, 234, 0.1);
}

.advantage-card-premium:hover::before {
    opacity: 1;
}

.advantage-card-premium:hover::after {
    opacity: 0.3;
}

/* Card Icon */
.advantage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    position: relative;
}

.advantage-icon-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 20px;
    transform: rotate(45deg);
    transition: all 0.5s ease;
}

.advantage-card-premium:hover .advantage-icon-bg {
    transform: rotate(45deg) scale(1.1);
    box-shadow: 0 15px 30px rgba(102, 126, 234, 0.4);
}

.advantage-icon svg {
    position: relative;
    z-index: 2;
    width: 36px;
    height: 36px;
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
}

/* Card Content */
.advantage-card-premium h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: white;
    margin-bottom: 1rem;
    position: relative;
}

.advantage-card-premium p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    font-size: 1rem;
    position: relative;
}

/* Premium Banner Alexandra */
.alexandra-banner-premium {
    position: relative;
    z-index: 2;
    margin-top: 4rem;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.2) 0%, rgba(236, 72, 153, 0.2) 100%);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 24px;
    padding: 2.5rem 3rem;
    display: flex;
    align-items: center;
    gap: 2rem;
    overflow: hidden;
}

.alexandra-banner-premium::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(90deg, transparent 0%, rgba(255, 255, 255, 0.05) 50%, transparent 100%);
    animation: shimmer 3s ease-in-out infinite;
}

@keyframes shimmer {
    0%, 100% { transform: translateX(-100%); }
    50% { transform: translateX(100%); }
}

.alexandra-avatar {
    width: 90px;
    height: 90px;
    border-radius: 50%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.4);
    position: relative;
}

.alexandra-avatar::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    right: -3px;
    bottom: -3px;
    background: linear-gradient(135deg, var(--primary), var(--accent));
    border-radius: 50%;
    z-index: -1;
    animation: pulseGlow 2s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 1; transform: scale(1.05); }
}

.alexandra-avatar svg {
    width: 45px;
    height: 45px;
}

.alexandra-content h4 {
    color: white;
    font-size: 1.3rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.alexandra-content h4 span {
    background: linear-gradient(135deg, #a5b4fc, #f9a8d4);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.alexandra-content p {
    color: rgba(255, 255, 255, 0.8);
    font-size: 1.1rem;
    line-height: 1.6;
    margin: 0;
}

/* Responsive */
@media (max-width: 768px) {
    .advantages-premium {
        padding: 4rem 1.5rem;
    }

    .advantages-premium h2 {
        font-size: 1.8rem;
    }

    .alexandra-banner-premium {
        flex-direction: column;
        text-align: center;
        padding: 2rem;
    }

    .alexandra-content h4,
    .alexandra-content p {
        text-align: center;
    }
}

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

.service-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    box-shadow: var(--shadow);
    transition: all 0.3s ease;
    border: 1px solid var(--gray-200);
    text-decoration: none;
    display: block;
}

.service-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
    border-color: var(--primary);
}

.service-icon {
    width: 60px;
    height: 60px;
    background: var(--gradient-primary);
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    margin-bottom: 1.5rem;
}

.service-card h3 {
    margin-bottom: 0.75rem;
    font-size: 1.25rem;
}

.service-card p {
    font-size: 0.95rem;
    margin-bottom: 1rem;
}

.service-price {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
    margin-top: auto;
}

.service-price .amount {
    font-size: 2rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.service-price .amount small {
    font-size: 0.9rem;
    font-weight: 600;
}

.service-price .engagement {
    font-size: 0.8rem;
    color: var(--gray-500);
    font-weight: 500;
}

/* ==========================================================================
   Service Mockups - All 8 Services
   ========================================================================== */

.service-mockup {
    width: 100%;
    height: 140px;
    margin-bottom: 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, #f8f9ff 0%, #f0f4ff 100%);
    overflow: hidden;
    position: relative;
    perspective: 1000px;
}

/* Animation for all mockups on hover */
.service-card:hover .service-mockup > * {
    transform: scale(1.05);
}

/* 1. Site Internet - Browser with multiple pages */
.mockup-site .mock-browser {
    width: 100%;
    height: 130px;
    background: #fff;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: 0 12px 35px rgba(0,0,0,0.15);
    animation: mockFloat 4s ease-in-out infinite;
}

.browser-bar {
    height: 18px;
    background: linear-gradient(180deg, #e8e8e8 0%, #d5d5d5 100%);
    display: flex;
    align-items: center;
    padding: 0 8px;
    gap: 8px;
}

.browser-dots {
    display: flex;
    gap: 4px;
}

.browser-dots span {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.dot-r { background: #ff5f56; }
.dot-y { background: #ffbd2e; }
.dot-g { background: #27ca3f; }

.browser-url {
    flex: 1;
    height: 12px;
    background: #fff;
    border-radius: 4px;
    display: flex;
    align-items: center;
    padding: 0 6px;
    gap: 4px;
}

.url-icon {
    width: 6px;
    height: 6px;
    background: #27ca3f;
    border-radius: 50%;
}

.url-text {
    font-size: 6px;
    color: #666;
    font-weight: 500;
}

.browser-content {
    height: calc(100% - 18px);
    position: relative;
    overflow: hidden;
    background: #f8f9fa;
}

/* Site pages */
.site-page {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    opacity: 0;
    transform: translateY(20px);
    padding: 6px;
    display: flex;
    flex-direction: column;
}

.site-page.page-home {
    animation: sitePageSwitch 12s infinite;
}

.site-page.page-services {
    animation: sitePageSwitch 12s infinite 4s;
}

.site-page.page-contact {
    animation: sitePageSwitch 12s infinite 8s;
}

/* Page navigation */
.page-nav {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 6px;
}

.nav-logo {
    width: 25px;
    height: 8px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.nav-links {
    width: 50px;
    height: 4px;
    background: #ddd;
    border-radius: 2px;
}

/* Page Home */
.page-hero {
    flex: 1;
    display: flex;
    gap: 6px;
    background: linear-gradient(135deg, #1a1a2e, #2d2d44);
    border-radius: 6px;
    padding: 8px;
    overflow: hidden;
}

.hero-text {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.h-title {
    width: 90%;
    height: 8px;
    background: #fff;
    border-radius: 2px;
}

.h-desc {
    width: 70%;
    height: 5px;
    background: rgba(255,255,255,0.5);
    border-radius: 2px;
}

.h-btn {
    margin-top: auto;
    width: fit-content;
    padding: 3px 8px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: #fff;
    font-size: 6px;
    font-weight: 600;
    border-radius: 8px;
    animation: heroBtnPulse 2s ease infinite;
}

.hero-img {
    width: 35%;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 6px;
    opacity: 0.8;
}

/* Page Services */
.page-title {
    font-size: 8px;
    font-weight: 700;
    color: var(--gray-800);
    text-align: center;
    margin-bottom: 6px;
}

.services-cards {
    display: flex;
    gap: 4px;
    flex: 1;
}

.s-card {
    flex: 1;
    background: #fff;
    border-radius: 6px;
    padding: 6px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    animation: cardAppear 0.4s ease backwards;
}

.s-card:nth-child(1) { animation-delay: 0.1s; }
.s-card:nth-child(2) { animation-delay: 0.2s; }
.s-card:nth-child(3) { animation-delay: 0.3s; }

.s-icon {
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
}

.s-txt {
    width: 100%;
    height: 4px;
    background: #eee;
    border-radius: 2px;
}

/* Page Contact */
.contact-form {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 5px;
    background: #fff;
    border-radius: 6px;
    padding: 8px;
}

.form-input {
    height: 12px;
    background: #f5f5f5;
    border-radius: 4px;
    border: 1px solid #eee;
}

.form-textarea {
    flex: 1;
    background: #f5f5f5;
    border-radius: 4px;
    border: 1px solid #eee;
}

.form-btn {
    padding: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary));
    color: #fff;
    font-size: 6px;
    font-weight: 700;
    text-align: center;
    border-radius: 4px;
    animation: formBtnPulse 1.5s ease infinite;
}

/* Cursor */
.mockup-site .mock-cursor {
    position: absolute;
    width: 14px;
    height: 14px;
    border-left: 2px solid var(--primary);
    border-top: 2px solid var(--primary);
    transform: rotate(-45deg);
    animation: cursorMove 12s ease infinite;
    z-index: 10;
    pointer-events: none;
}

.mock-seo-badge {
    position: absolute;
    top: 8px;
    left: 8px;
    background: #fff;
    padding: 3px 8px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    animation: seoBadgePop 4s ease-in-out infinite;
    z-index: 15;
}

.seo-icon {
    font-size: 10px;
    font-weight: 700;
    background: linear-gradient(135deg, #4285f4, #34a853, #fbbc05, #ea4335);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
}

.seo-text {
    font-size: 8px;
    font-weight: 700;
    color: var(--success);
}

/* 2. Application Mobile - Phone mockup with multiple screens */
.mockup-app .mock-phone {
    width: 80px;
    height: 140px;
    background: #1a1a1a;
    border-radius: 16px;
    padding: 6px;
    box-shadow: 0 15px 40px rgba(0,0,0,0.25);
    position: relative;
}

.mock-phone-notch {
    position: absolute;
    top: 8px;
    left: 50%;
    transform: translateX(-50%);
    width: 30px;
    height: 8px;
    background: #000;
    border-radius: 10px;
    z-index: 10;
}

.mock-phone-content {
    width: 100%;
    height: 100%;
    background: #f8f9fa;
    border-radius: 12px;
    overflow: hidden;
    position: relative;
}

/* App screens container */
.app-screen {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: calc(100% - 20px);
    padding: 16px 6px 6px;
    opacity: 0;
    transform: translateX(100%);
    transition: none;
}

.app-screen.screen-1 {
    animation: screenSwitch 9s infinite;
}

.app-screen.screen-2 {
    animation: screenSwitch 9s infinite 3s;
}

.app-screen.screen-3 {
    animation: screenSwitch 9s infinite 6s;
}

/* Screen 1: Dashboard */
.app-header-bar {
    display: flex;
    align-items: center;
    gap: 4px;
    margin-bottom: 6px;
}

.app-avatar {
    width: 14px;
    height: 14px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
}

.app-title {
    flex: 1;
    height: 6px;
    background: #ddd;
    border-radius: 3px;
}

.app-notif-icon {
    width: 14px;
    height: 14px;
    background: #ff4757;
    border-radius: 50%;
    font-size: 7px;
    color: white;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    animation: notifPulse 1s ease infinite;
}

.app-stats {
    display: flex;
    gap: 4px;
    margin-bottom: 6px;
}

.stat-box {
    flex: 1;
    background: white;
    border-radius: 6px;
    padding: 4px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
}

.stat-num {
    display: block;
    font-size: 9px;
    font-weight: 800;
    color: var(--primary);
}

.stat-lbl {
    font-size: 5px;
    color: #999;
}

.app-chart {
    display: flex;
    align-items: flex-end;
    gap: 3px;
    height: 30px;
    padding: 4px;
    background: white;
    border-radius: 6px;
}

.app-chart span {
    flex: 1;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    border-radius: 2px;
    animation: chartBarGrow 2s ease infinite;
}

.app-chart span:nth-child(1) { height: 40%; animation-delay: 0s; }
.app-chart span:nth-child(2) { height: 70%; animation-delay: 0.1s; }
.app-chart span:nth-child(3) { height: 50%; animation-delay: 0.2s; }
.app-chart span:nth-child(4) { height: 90%; animation-delay: 0.3s; }
.app-chart span:nth-child(5) { height: 60%; animation-delay: 0.4s; }

/* Screen 2: Product List */
.app-search-bar {
    height: 12px;
    background: white;
    border-radius: 6px;
    margin-bottom: 6px;
    position: relative;
}

.app-search-bar::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    border: 1px solid #999;
    border-radius: 50%;
}

.app-product-list {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.product-item {
    display: flex;
    align-items: center;
    gap: 4px;
    background: white;
    padding: 4px;
    border-radius: 6px;
    animation: productSlide 0.4s ease backwards;
}

.product-item:nth-child(1) { animation-delay: 0.1s; }
.product-item:nth-child(2) { animation-delay: 0.2s; }
.product-item:nth-child(3) { animation-delay: 0.3s; }

.prod-img {
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, #f0f0f0, #e0e0e0);
    border-radius: 4px;
}

.prod-info {
    flex: 1;
    height: 6px;
    background: #eee;
    border-radius: 3px;
}

.prod-price {
    font-size: 6px;
    font-weight: 700;
    color: var(--primary);
}

/* Screen 3: Cart */
.cart-header {
    font-size: 8px;
    font-weight: 700;
    color: var(--gray-800);
    margin-bottom: 6px;
    text-align: center;
}

.cart-items {
    display: flex;
    flex-direction: column;
    gap: 4px;
    margin-bottom: 6px;
}

.cart-item {
    height: 16px;
    background: white;
    border-radius: 4px;
    box-shadow: 0 1px 3px rgba(0,0,0,0.08);
}

.cart-total {
    display: flex;
    justify-content: space-between;
    font-size: 7px;
    padding: 4px;
    background: white;
    border-radius: 4px;
    margin-bottom: 6px;
}

.cart-amount {
    font-weight: 800;
    color: var(--primary);
}

.cart-btn {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    color: white;
    font-size: 7px;
    font-weight: 700;
    text-align: center;
    padding: 5px;
    border-radius: 6px;
    animation: btnPulseApp 1.5s ease infinite;
}

/* Navigation bar */
.mock-app-nav {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 20px;
    background: white;
    display: flex;
    justify-content: space-around;
    align-items: center;
    border-top: 1px solid #eee;
}

.mock-app-nav span {
    width: 10px;
    height: 10px;
    background: var(--gray-300);
    border-radius: 3px;
    transition: all 0.3s ease;
}

.mock-app-nav span.nav-active {
    background: var(--primary);
    transform: scale(1.2);
}

/* Tap indicator */
.mock-tap-indicator {
    position: absolute;
    bottom: 35px;
    right: 15px;
    width: 20px;
    height: 20px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    animation: tapPulse 2s ease infinite;
    opacity: 0;
}

/* Push notification */
.mockup-app .mock-push-notif {
    position: absolute;
    top: 15px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 4px 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    animation: pushSlideDown 9s ease infinite;
    z-index: 20;
}

.mockup-app .push-icon {
    width: 12px;
    height: 12px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 4px;
}

.mockup-app .push-text {
    font-size: 6px;
    font-weight: 600;
    color: var(--gray-800);
    white-space: nowrap;
}

/* 3. CRM - Liste contacts avec actions */
.mockup-crm .mock-contacts-list {
    width: 95%;
    height: 115px;
    background: #fff;
    border-radius: 8px;
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 4px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
    animation: mockFloat 4.5s ease-in-out infinite;
}

.contact-row {
    display: flex;
    align-items: center;
    gap: 8px;
    padding: 6px 8px;
    background: #f8f9fa;
    border-radius: 6px;
    animation: contactSlide 0.4s ease backwards;
}

.contact-row:nth-child(1) { animation-delay: 0.1s; }
.contact-row:nth-child(2) { animation-delay: 0.2s; }
.contact-row:nth-child(3) { animation-delay: 0.3s; }

.contact-avatar {
    width: 22px;
    height: 22px;
    border-radius: 50%;
    color: #fff;
    font-size: 7px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.contact-info {
    flex: 1;
    min-width: 0;
}

.contact-name {
    display: block;
    font-size: 8px;
    font-weight: 600;
    color: var(--gray-800);
    white-space: nowrap;
    overflow: hidden;
    text-overflow: ellipsis;
}

.contact-company {
    display: block;
    font-size: 6px;
    color: var(--gray-500);
}

.contact-actions {
    display: flex;
    gap: 4px;
}

.action-btn {
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s;
}

.action-btn.call {
    background: linear-gradient(135deg, #48bb78, #38a169);
}

.action-btn.email {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.action-btn.call::after {
    content: '';
    width: 8px;
    height: 8px;
    background: white;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M20.01 15.38c-1.23 0-2.42-.2-3.53-.56a.977.977 0 00-1.01.24l-1.57 1.97c-2.83-1.35-5.48-3.9-6.89-6.83l1.95-1.66c.27-.28.35-.67.24-1.02-.37-1.11-.56-2.3-.56-3.53 0-.54-.45-.99-.99-.99H4.19C3.65 3 3 3.24 3 3.99 3 13.28 10.73 21 20.01 21c.71 0 .99-.63.99-1.18v-3.45c0-.54-.45-.99-.99-.99z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.action-btn.email::after {
    content: '';
    width: 8px;
    height: 6px;
    background: white;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='white'%3E%3Cpath d='M20 4H4c-1.1 0-1.99.9-1.99 2L2 18c0 1.1.9 2 2 2h16c1.1 0 2-.9 2-2V6c0-1.1-.9-2-2-2zm0 4l-8 5-8-5V6l8 5 8-5v2z'/%3E%3C/svg%3E") center/contain no-repeat;
}

.action-btn.active {
    animation: callRing 1s ease infinite;
}

.mock-relance {
    position: absolute;
    top: 8px;
    right: 8px;
    background: var(--warning);
    padding: 4px 8px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 4px;
    animation: relancePop 4s ease-in-out infinite;
    box-shadow: 0 2px 10px rgba(237, 137, 54, 0.3);
}

.relance-icon {
    font-size: 8px;
    font-weight: 700;
    color: white;
}

.relance-text {
    font-size: 7px;
    font-weight: 600;
    color: white;
}

/* 4. Carte de Fidelite - Mini Card + QR Code */
.mockup-fidelite .fidelite-layout {
    width: 100%;
    display: flex;
    gap: 15px;
    align-items: center;
    justify-content: center;
    animation: mockFloat 4s ease-in-out infinite;
}

/* Mini carte */
.mock-mini-card {
    width: 110px;
    height: 140px;
    background: linear-gradient(135deg, #1a1a2e 0%, #2d2d44 40%, #1a1a2e 100%);
    border-radius: 12px;
    padding: 12px;
    box-shadow: 0 12px 30px rgba(0,0,0,0.35);
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
}

.mini-card-shine {
    position: absolute;
    top: 0;
    left: -100%;
    width: 60%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.2), transparent);
    transform: skewX(-20deg);
    animation: cardShineMove 3s ease-in-out infinite;
}

.mini-brand {
    font-size: 10px;
    font-weight: 800;
    letter-spacing: 1px;
    background: linear-gradient(90deg, #c9a227, #f4d03f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.mini-chip {
    width: 32px;
    height: 24px;
    background: linear-gradient(135deg, #c9a227, #f4d03f);
    border-radius: 5px;
    margin-bottom: auto;
    position: relative;
}

.mini-chip::after {
    content: '';
    position: absolute;
    top: 5px;
    left: 5px;
    right: 5px;
    bottom: 5px;
    border: 1px solid rgba(0,0,0,0.2);
    border-radius: 2px;
}

.mini-bottom {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.mini-name {
    font-size: 9px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    letter-spacing: 0.5px;
}

.mini-tier {
    font-size: 8px;
    font-weight: 700;
    color: #f4d03f;
    letter-spacing: 1px;
}

/* QR Code scanner */
.mock-qr-scan {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

.qr-frame {
    width: 90px;
    height: 90px;
    background: white;
    border-radius: 12px;
    padding: 10px;
    position: relative;
    box-shadow: 0 10px 25px rgba(0,0,0,0.15);
}

.qr-frame::before,
.qr-frame::after {
    content: '';
    position: absolute;
    width: 16px;
    height: 16px;
    border: 3px solid var(--primary);
}

.qr-frame::before {
    top: -2px;
    left: -2px;
    border-right: none;
    border-bottom: none;
    border-radius: 4px 0 0 0;
}

.qr-frame::after {
    bottom: -2px;
    right: -2px;
    border-left: none;
    border-top: none;
    border-radius: 0 0 4px 0;
}

.qr-grid {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    grid-template-rows: repeat(3, 1fr);
    gap: 3px;
}

.qr-grid span {
    background: #1a1a2e;
    border-radius: 2px;
}

.qr-grid span:nth-child(2),
.qr-grid span:nth-child(4),
.qr-grid span:nth-child(6),
.qr-grid span:nth-child(8) {
    background: transparent;
}

.qr-scanner {
    position: absolute;
    left: 4px;
    right: 4px;
    height: 3px;
    background: linear-gradient(90deg, transparent, #00e676, transparent);
    border-radius: 2px;
    box-shadow: 0 0 10px #00e676, 0 0 20px #00e676;
    animation: qrScanLine 2s ease-in-out infinite;
}

.qr-points {
    font-size: 14px;
    font-weight: 800;
    color: #00c853;
    animation: qrPointsPop 2s ease-in-out infinite;
}

/* 5. Gestion de Caisse - POS mockup */
.mockup-caisse .mock-pos {
    width: 100px;
    height: 110px;
    background: #1a1a1a;
    border-radius: 10px;
    padding: 6px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.2);
}

.mock-pos-screen {
    background: #fff;
    border-radius: 6px;
    padding: 6px;
    margin-bottom: 6px;
    height: 55px;
}

.mock-pos-items {
    display: flex;
    flex-direction: column;
    gap: 3px;
    margin-bottom: 6px;
}

.mock-pos-items span {
    height: 8px;
    background: #f0f0f0;
    border-radius: 2px;
}

.mock-pos-total {
    display: flex;
    justify-content: space-between;
    font-size: 8px;
    font-weight: 700;
    color: var(--primary);
    border-top: 1px dashed #ddd;
    padding-top: 4px;
}

.mock-pos-buttons {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 3px;
}

.mock-pos-buttons span {
    height: 12px;
    background: #333;
    border-radius: 3px;
}

.mock-pos-buttons span:last-child {
    background: var(--success);
}

/* 6. Logiciel Sur Mesure - Split Screen Code + Result */
.mockup-custom .mock-split-screen {
    width: 95%;
    height: 115px;
    display: flex;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.15);
    animation: mockFloat 5s ease-in-out infinite;
}

.split-code {
    flex: 1;
    background: #1e1e2e;
    padding: 6px;
    display: flex;
    flex-direction: column;
}

.code-header {
    display: flex;
    gap: 4px;
    margin-bottom: 6px;
}

.code-header .dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
}

.code-header .dot.red { background: #ff5f56; }
.code-header .dot.yellow { background: #ffbd2e; }
.code-header .dot.green { background: #27ca3f; }

.code-content {
    flex: 1;
    overflow: hidden;
    position: relative;
    font-family: 'Courier New', monospace;
}

.code-scroll {
    display: flex;
    flex-direction: column;
    gap: 4px;
    animation: codeScrollUp 8s linear infinite;
}

.code-line {
    font-size: 7px;
    line-height: 1.4;
    white-space: nowrap;
}

.code-line.purple { color: #c678dd; }
.code-line.blue { color: #61afef; }
.code-line.green { color: #98c379; }
.code-line.yellow { color: #e5c07b; }

.split-result {
    flex: 1;
    background: #f8f9fa;
    display: flex;
    flex-direction: column;
}

.result-header {
    height: 14px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    position: relative;
}

.result-header::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 50%;
    transform: translateY(-50%);
    width: 30px;
    height: 4px;
    background: rgba(255,255,255,0.5);
    border-radius: 2px;
}

.result-content {
    flex: 1;
    padding: 6px;
    display: flex;
    flex-direction: column;
    gap: 6px;
}

.result-card {
    height: 24px;
    background: white;
    border-radius: 4px;
    box-shadow: 0 2px 6px rgba(0,0,0,0.08);
    animation: resultFadeIn 0.5s ease 0.8s backwards;
}

.result-chart {
    flex: 1;
    display: flex;
    align-items: flex-end;
    gap: 4px;
    padding: 4px;
}

.result-chart span {
    flex: 1;
    background: linear-gradient(180deg, var(--primary), var(--secondary));
    border-radius: 2px 2px 0 0;
    animation: chartGrow 0.6s ease backwards;
}

.result-chart span:nth-child(1) {
    height: 60%;
    animation-delay: 0.9s;
}

.result-chart span:nth-child(2) {
    height: 100%;
    animation-delay: 1s;
}

.result-chart span:nth-child(3) {
    height: 80%;
    animation-delay: 1.1s;
}

.mockup-custom .mock-deploy {
    position: absolute;
    top: 8px;
    right: 8px;
    background: linear-gradient(135deg, #00c853, #00e676);
    padding: 4px 8px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 4px;
    animation: deployPop 4s ease-in-out infinite;
    box-shadow: 0 2px 12px rgba(0,200,83,0.4);
}

.deploy-icon {
    font-size: 8px;
    font-weight: 800;
    color: white;
}

.deploy-text {
    font-size: 7px;
    font-weight: 600;
    color: white;
}

/* 7. Agenda en Ligne - Calendar mockup */
.mockup-agenda .mock-calendar {
    width: 120px;
    height: 100px;
    background: #fff;
    border-radius: 10px;
    padding: 8px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.1);
}

.mock-cal-header {
    text-align: center;
    margin-bottom: 8px;
    padding-bottom: 6px;
    border-bottom: 1px solid #eee;
}

.mock-cal-header span {
    font-size: 9px;
    font-weight: 700;
    color: var(--primary);
}

.mock-cal-grid {
    display: grid;
    grid-template-columns: repeat(7, 1fr);
    gap: 2px;
}

.mock-cal-grid span {
    aspect-ratio: 1;
    background: #f5f5f5;
    border-radius: 2px;
}

.mock-cal-grid span.booked {
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

/* 8. Moyens de Paiement - Payment mockup */
.mockup-paiement .mock-payment {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
}

.mock-terminal {
    width: 55px;
    height: 70px;
    background: #1a1a1a;
    border-radius: 8px;
    padding: 6px;
}

.mock-terminal-screen {
    background: #4ade80;
    border-radius: 4px;
    height: 35px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 6px;
}

.mock-terminal-screen span {
    font-size: 9px;
    font-weight: 700;
    color: #000;
}

.mock-terminal-slot {
    height: 10px;
    background: #333;
    border-radius: 2px;
    position: relative;
}

.mock-terminal-slot::after {
    content: '';
    position: absolute;
    top: 3px;
    left: 50%;
    transform: translateX(-50%);
    width: 20px;
    height: 4px;
    background: #555;
    border-radius: 1px;
}

.mock-cards-icons {
    display: flex;
    gap: 6px;
}

.mock-cards-icons span {
    width: 28px;
    height: 18px;
    border-radius: 3px;
    background: #fff;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
}

.mock-visa {
    background: linear-gradient(135deg, #1a1f71, #00579f) !important;
}

.mock-mc {
    background: linear-gradient(135deg, #eb001b, #f79e1b) !important;
}

.mock-applepay {
    background: #000 !important;
}

/* ==========================================================================
   Service Mockups - ANIMATIONS
   ========================================================================== */

/* 1. Site Internet - Float + content loading */
.mockup-site .mock-browser {
    animation: mockFloat 4s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.mockup-site .mock-header {
    animation: shimmerLoad 2s ease-in-out infinite;
    background-size: 200% 100%;
    background-image: linear-gradient(90deg, var(--primary) 0%, var(--secondary) 50%, var(--primary) 100%);
}

.mockup-site .mock-cards span {
    animation: cardPop 0.5s ease backwards;
}
.mockup-site .mock-cards span:nth-child(1) { animation-delay: 0.5s; }
.mockup-site .mock-cards span:nth-child(2) { animation-delay: 0.7s; }
.mockup-site .mock-cards span:nth-child(3) { animation-delay: 0.9s; }

/* 2. Application Mobile - Float + screen transitions */
.mockup-app .mock-phone {
    animation: mockFloatPhone 5s ease-in-out infinite;
    transition: transform 0.3s ease;
}

/* 3. CRM - Dashboard stats animation */
.mockup-crm .mock-dashboard {
    animation: mockFloat 4.5s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.mockup-crm .mock-stats span {
    animation: statGrow 0.6s ease backwards;
}
.mockup-crm .mock-stats span:nth-child(1) { animation-delay: 0.2s; }
.mockup-crm .mock-stats span:nth-child(2) { animation-delay: 0.4s; }
.mockup-crm .mock-stats span:nth-child(3) { animation-delay: 0.6s; }

.mockup-crm .mock-table span {
    animation: tableRowSlide 0.3s ease backwards;
}
.mockup-crm .mock-table span:nth-child(1) { animation-delay: 0.8s; }
.mockup-crm .mock-table span:nth-child(2) { animation-delay: 0.9s; }
.mockup-crm .mock-table span:nth-child(3) { animation-delay: 1s; }

.mockup-crm .mock-sidebar span:first-child {
    animation: sidebarPulse 2s ease infinite;
}

/* 4. Carte de Fidelite - QR scan animation */
/* Animations are defined in the main mockup CSS above */

/* 5. Gestion de Caisse - Items adding + total */
.mockup-caisse .mock-pos {
    animation: mockFloat 4.5s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.mockup-caisse .mock-pos-items span {
    animation: itemScan 0.3s ease backwards;
}
.mockup-caisse .mock-pos-items span:nth-child(1) { animation-delay: 0.3s; }
.mockup-caisse .mock-pos-items span:nth-child(2) { animation-delay: 0.6s; }

.mockup-caisse .mock-pos-total {
    animation: totalFlash 2s ease infinite;
}

.mockup-caisse .mock-pos-buttons span:last-child {
    animation: btnPulse 1.5s ease infinite;
}

/* 6. Logiciel Sur Mesure - Code typing + result appearing */
/* Animations are defined in the main mockup CSS above */

/* 7. Agenda en Ligne - Slots filling in */
.mockup-agenda .mock-calendar {
    animation: mockFloat 4s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.mockup-agenda .mock-cal-grid span.booked {
    animation: slotBook 0.5s ease backwards;
}
.mockup-agenda .mock-cal-grid span:nth-child(3) { animation-delay: 0.3s; }
.mockup-agenda .mock-cal-grid span:nth-child(5) { animation-delay: 0.5s; }
.mockup-agenda .mock-cal-grid span:nth-child(8) { animation-delay: 0.7s; }
.mockup-agenda .mock-cal-grid span:nth-child(11) { animation-delay: 0.9s; }
.mockup-agenda .mock-cal-grid span:nth-child(13) { animation-delay: 1.1s; }

/* 8. Moyens de Paiement - Card insert + screen blink */
.mockup-paiement .mock-terminal {
    animation: mockFloat 4.5s ease-in-out infinite;
    transition: transform 0.3s ease;
}

.mockup-paiement .mock-terminal-screen {
    animation: screenBlink 3s ease infinite;
}

.mockup-paiement .mock-cards-icons span {
    animation: cardSlideIn 0.4s ease backwards;
}
.mockup-paiement .mock-cards-icons span:nth-child(1) { animation-delay: 0.3s; }
.mockup-paiement .mock-cards-icons span:nth-child(2) { animation-delay: 0.5s; }
.mockup-paiement .mock-cards-icons span:nth-child(3) { animation-delay: 0.7s; }

/* ==========================================================================
   Service Mockups - KEYFRAMES
   ========================================================================== */

@keyframes mockFloat {
    0%, 100% { transform: translateY(0) rotate(-1deg); }
    50% { transform: translateY(-8px) rotate(1deg); }
}

@keyframes mockFloatPhone {
    0%, 100% { transform: translateY(0) rotate(2deg); }
    50% { transform: translateY(-10px) rotate(-1deg); }
}

@keyframes shimmerLoad {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes cardPop {
    from { opacity: 0; transform: scale(0.8); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes slideInRight {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes statGrow {
    from { opacity: 0; transform: scaleY(0); transform-origin: bottom; }
    to { opacity: 1; transform: scaleY(1); }
}

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

@keyframes sidebarPulse {
    0%, 100% { opacity: 0.8; }
    50% { opacity: 1; box-shadow: 0 0 10px rgba(255,255,255,0.5); }
}

@keyframes cardFloat {
    0%, 100% { transform: translateY(0) rotate(-2deg); }
    50% { transform: translateY(-6px) rotate(2deg); }
}

@keyframes cardShine {
    0% { transform: translateX(-100%) rotate(45deg); }
    100% { transform: translateX(100%) rotate(45deg); }
}

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

@keyframes progressFill {
    from { width: 0; }
    to { width: 70%; }
}

@keyframes itemScan {
    from { opacity: 0; transform: translateX(-100%); background: var(--primary); }
    50% { background: var(--primary); }
    to { opacity: 1; transform: translateX(0); background: #f0f0f0; }
}

@keyframes totalFlash {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

@keyframes btnPulse {
    0%, 100% { transform: scale(1); box-shadow: none; }
    50% { transform: scale(1.05); box-shadow: 0 0 10px rgba(72, 187, 120, 0.5); }
}

@keyframes gearRotate {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes moduleAppear {
    from { opacity: 0; transform: scale(0.5); }
    to { opacity: 1; transform: scale(1); }
}

@keyframes arrowBounce {
    0%, 100% { transform: translateX(0); }
    50% { transform: translateX(5px); }
}

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

@keyframes screenBlink {
    0%, 90%, 100% { opacity: 1; }
    95% { opacity: 0.5; }
}

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

/* ==========================================================================
   Service Mockups - CONTEXTUAL ELEMENTS
   ========================================================================== */

/* 1. Site Internet - Cursor + Visitors */
.mock-cursor {
    position: absolute;
    width: 12px;
    height: 12px;
    background: var(--primary);
    border-radius: 50%;
    top: 50%;
    left: 40%;
    animation: cursorMove 3s ease-in-out infinite;
    box-shadow: 0 0 10px var(--primary);
    z-index: 10;
}

.mock-cursor::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    width: 22px;
    height: 22px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    animation: cursorRipple 3s ease-in-out infinite;
    opacity: 0;
}

.mock-visitors {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: white;
    padding: 4px 8px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
    font-size: 8px;
    font-weight: 600;
    color: var(--success);
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    animation: visitorsPop 4s ease-in-out infinite;
}

.visitor-dot {
    width: 6px;
    height: 6px;
    background: var(--success);
    border-radius: 50%;
    animation: dotPulse 1s ease infinite;
}

/* 2. Application - Push notification + Store badges */
.mock-push-notif {
    position: absolute;
    top: 10px;
    right: 5px;
    background: white;
    padding: 6px 10px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    animation: pushSlide 4s ease-in-out infinite;
    z-index: 10;
}

.push-icon {
    width: 16px;
    height: 16px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 4px;
}

.push-text {
    font-size: 7px;
    font-weight: 600;
    color: var(--gray-800);
}

.mock-stores {
    position: absolute;
    bottom: 8px;
    left: 8px;
    display: flex;
    gap: 4px;
}

.store-badge {
    width: 35px;
    height: 12px;
    border-radius: 3px;
    animation: badgePop 0.5s ease backwards;
}

.store-badge.ios {
    background: #000;
    animation-delay: 0.3s;
}

.store-badge.android {
    background: linear-gradient(135deg, #00c853, #69f0ae);
    animation-delay: 0.5s;
}

/* 3. CRM - Lead notification + Pipeline */
.mock-lead-notif {
    position: absolute;
    top: 10px;
    right: 5px;
    background: white;
    padding: 5px 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    animation: leadPop 5s ease-in-out infinite;
    z-index: 10;
}

.lead-avatar {
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 50%;
    color: white;
    font-size: 7px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.lead-text {
    font-size: 7px;
    font-weight: 600;
    color: var(--success);
}

.mock-pipeline {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    gap: 3px;
}

.pipe-stage {
    width: 20px;
    height: 4px;
    background: var(--gray-300);
    border-radius: 2px;
    animation: pipeProgress 3s ease-in-out infinite;
}

.pipe-stage.active {
    background: linear-gradient(90deg, var(--primary), var(--secondary));
}

/* 4. Fidelite - Points gain + Reward */
.mock-points-gain {
    position: absolute;
    top: 20px;
    right: 10px;
    background: var(--success);
    color: white;
    padding: 4px 8px;
    border-radius: 10px;
    font-size: 9px;
    font-weight: 700;
    animation: pointsFloat 3s ease-in-out infinite;
    box-shadow: 0 4px 10px rgba(72, 187, 120, 0.3);
}

.mock-reward {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 5px 10px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    animation: rewardPop 4s ease-in-out infinite;
}

.reward-icon {
    color: #fbbf24;
    font-size: 12px;
}

.reward-text {
    font-size: 8px;
    font-weight: 600;
    color: var(--gray-800);
}

/* 5. Caisse - Scan line + Receipt */
.mock-scan-line {
    position: absolute;
    top: 30%;
    left: 10%;
    width: 30px;
    height: 2px;
    background: #ff0000;
    box-shadow: 0 0 10px #ff0000;
    animation: scanMove 2s ease-in-out infinite;
    z-index: 10;
}

.mock-receipt {
    position: absolute;
    bottom: 5px;
    right: 10px;
    background: white;
    width: 30px;
    padding: 4px;
    border-radius: 2px;
    display: flex;
    flex-direction: column;
    gap: 2px;
    animation: receiptPrint 4s ease-in-out infinite;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
}

.mock-receipt span {
    height: 2px;
    background: var(--gray-300);
    border-radius: 1px;
}

/* 6. Custom - Particles + Code */
.mock-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--primary);
    border-radius: 50%;
    animation: particleFlow 3s linear infinite;
}

.particle:nth-child(1) { left: 20%; animation-delay: 0s; }
.particle:nth-child(2) { left: 50%; animation-delay: 1s; }
.particle:nth-child(3) { left: 80%; animation-delay: 2s; }

.mock-code {
    position: absolute;
    bottom: 8px;
    right: 8px;
    background: var(--gray-900);
    color: var(--success);
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 10px;
    font-family: monospace;
    animation: codeBlink 2s ease infinite;
}

/* 7. Agenda - Booking confirm + Time */
.mock-booking-confirm {
    position: absolute;
    top: 10px;
    right: 5px;
    background: var(--success);
    padding: 5px 8px;
    border-radius: 8px;
    display: flex;
    align-items: center;
    gap: 4px;
    animation: confirmPop 4s ease-in-out infinite;
    box-shadow: 0 4px 10px rgba(72, 187, 120, 0.3);
}

.confirm-check {
    width: 14px;
    height: 14px;
    background: white;
    border-radius: 50%;
    color: var(--success);
    font-size: 8px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.confirm-text {
    font-size: 7px;
    font-weight: 600;
    color: white;
}

.mock-time-slot {
    position: absolute;
    bottom: 8px;
    left: 8px;
    background: white;
    padding: 4px 8px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.1);
    animation: timeSlide 3s ease-in-out infinite;
}

.time-icon {
    width: 10px;
    height: 10px;
    border: 2px solid var(--primary);
    border-radius: 50%;
    position: relative;
}

.time-icon::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 3px;
    width: 1px;
    height: 4px;
    background: var(--primary);
    transform-origin: bottom;
    animation: clockHand 2s linear infinite;
}

.time-text {
    font-size: 8px;
    font-weight: 700;
    color: var(--primary);
}

/* 8. Paiement - Contactless + Success */
.mock-contactless {
    position: absolute;
    top: 15px;
    right: 15px;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2px;
}

.wave {
    width: 15px;
    height: 8px;
    border: 2px solid var(--primary);
    border-bottom: none;
    border-radius: 15px 15px 0 0;
    animation: waveExpand 1.5s ease-in-out infinite;
    opacity: 0;
}

.wave:nth-child(1) { animation-delay: 0s; }
.wave:nth-child(2) { animation-delay: 0.2s; width: 20px; }
.wave:nth-child(3) { animation-delay: 0.4s; width: 25px; }

.mock-payment-success {
    position: absolute;
    bottom: 8px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--success);
    padding: 5px 10px;
    border-radius: 15px;
    display: flex;
    align-items: center;
    gap: 4px;
    animation: successPop 4s ease-in-out infinite;
    box-shadow: 0 4px 10px rgba(72, 187, 120, 0.3);
}

.success-check {
    width: 14px;
    height: 14px;
    background: white;
    border-radius: 50%;
    color: var(--success);
    font-size: 7px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
}

.success-text {
    font-size: 7px;
    font-weight: 600;
    color: white;
}

/* ==========================================================================
   Service Mockups - CONTEXTUAL KEYFRAMES
   ========================================================================== */

@keyframes cursorMove {
    0%, 100% { top: 50%; left: 40%; }
    25% { top: 60%; left: 55%; }
    50% { top: 45%; left: 65%; transform: scale(0.8); }
    75% { top: 55%; left: 50%; }
}

@keyframes cursorRipple {
    0%, 50%, 100% { opacity: 0; transform: scale(0.5); }
    55% { opacity: 0.5; transform: scale(1); }
    70% { opacity: 0; transform: scale(1.5); }
}

@keyframes visitorsPop {
    0%, 100% { transform: scale(1); }
    10% { transform: scale(1.1); }
    20% { transform: scale(1); }
}

@keyframes dotPulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.4; }
}

@keyframes pushSlide {
    0%, 100% { transform: translateX(100px); opacity: 0; }
    15%, 85% { transform: translateX(0); opacity: 1; }
}

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

@keyframes leadPop {
    0%, 100% { transform: translateY(-20px); opacity: 0; }
    20%, 80% { transform: translateY(0); opacity: 1; }
}

@keyframes pipeProgress {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 1; }
}

@keyframes pointsFloat {
    0%, 100% { transform: translateY(0); opacity: 0; }
    20%, 80% { transform: translateY(-10px); opacity: 1; }
}

@keyframes rewardPop {
    0%, 100% { transform: translateX(-50%) scale(0); opacity: 0; }
    30%, 70% { transform: translateX(-50%) scale(1); opacity: 1; }
}

@keyframes scanMove {
    0%, 100% { left: 10%; opacity: 0; }
    10% { opacity: 1; }
    50% { left: 40%; opacity: 1; }
    90% { opacity: 1; }
    95% { opacity: 0; }
}

@keyframes receiptPrint {
    0%, 100% { transform: translateY(20px); opacity: 0; }
    30%, 70% { transform: translateY(0); opacity: 1; }
}

@keyframes particleFlow {
    0% { top: 100%; opacity: 0; }
    10% { opacity: 1; }
    90% { opacity: 1; }
    100% { top: -10%; opacity: 0; }
}

@keyframes codeBlink {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.5; }
}

@keyframes confirmPop {
    0%, 100% { transform: scale(0); opacity: 0; }
    25%, 75% { transform: scale(1); opacity: 1; }
}

@keyframes timeSlide {
    0%, 100% { transform: translateX(-20px); opacity: 0; }
    20%, 80% { transform: translateX(0); opacity: 1; }
}

@keyframes clockHand {
    from { transform: rotate(0deg); }
    to { transform: rotate(360deg); }
}

@keyframes waveExpand {
    0%, 100% { opacity: 0; transform: scale(0.5); }
    50% { opacity: 1; transform: scale(1); }
}

@keyframes successPop {
    0%, 100% { transform: translateX(-50%) scale(0); opacity: 0; }
    40%, 60% { transform: translateX(-50%) scale(1); opacity: 1; }
}

/* New mockup animations */
@keyframes qrScan {
    0%, 100% { top: 25%; opacity: 0; }
    20%, 80% { opacity: 1; }
    50% { top: 75%; }
}

@keyframes scanSuccessPop {
    0%, 70%, 100% { transform: scale(0); opacity: 0; }
    75%, 95% { transform: scale(1); opacity: 1; }
}

@keyframes codeType {
    from { opacity: 0; transform: translateX(-5px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes cursorBlink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

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

@keyframes chartGrow {
    from { transform: scaleY(0); }
    to { transform: scaleY(1); }
}

@keyframes deployPop {
    0%, 70%, 100% { transform: scale(0); opacity: 0; }
    75%, 95% { transform: scale(1); opacity: 1; }
}

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

@keyframes callRing {
    0%, 100% { transform: rotate(0deg); }
    10%, 30% { transform: rotate(-15deg); }
    20%, 40% { transform: rotate(15deg); }
    50% { transform: rotate(0deg); }
}

@keyframes relancePop {
    0%, 80%, 100% { transform: scale(0); opacity: 0; }
    85%, 95% { transform: scale(1); opacity: 1; }
}

@keyframes cardShineMove {
    0%, 100% { left: -100%; }
    50% { left: 150%; }
}

@keyframes qrScanLine {
    0%, 100% { top: 6px; }
    50% { top: calc(100% - 9px); }
}

@keyframes qrPointsPop {
    0%, 40%, 100% { opacity: 0; transform: scale(0.5); }
    50%, 90% { opacity: 1; transform: scale(1); }
}

@keyframes codeScrollUp {
    0% { transform: translateY(0); }
    100% { transform: translateY(-50%); }
}

@keyframes screenSwitch {
    0%, 5% { opacity: 0; transform: translateX(100%); }
    10%, 30% { opacity: 1; transform: translateX(0); }
    35%, 100% { opacity: 0; transform: translateX(-100%); }
}

@keyframes chartBarGrow {
    0%, 100% { transform: scaleY(1); }
    50% { transform: scaleY(0.6); }
}

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

@keyframes productSlide {
    from { opacity: 0; transform: translateX(20px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes btnPulseApp {
    0%, 100% { transform: scale(1); box-shadow: 0 2px 8px rgba(102,126,234,0.3); }
    50% { transform: scale(1.05); box-shadow: 0 4px 15px rgba(102,126,234,0.5); }
}

@keyframes tapPulse {
    0%, 70%, 100% { opacity: 0; transform: scale(0.5); }
    75%, 95% { opacity: 0.8; transform: scale(1); }
}

@keyframes pushSlideDown {
    0%, 85%, 100% { opacity: 0; transform: translateX(-50%) translateY(-20px); }
    10%, 80% { opacity: 1; transform: translateX(-50%) translateY(0); }
}

@keyframes sitePageSwitch {
    0%, 5% { opacity: 0; transform: translateY(20px); }
    10%, 28% { opacity: 1; transform: translateY(0); }
    33%, 100% { opacity: 0; transform: translateY(-20px); }
}

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

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

@keyframes formBtnPulse {
    0%, 100% { box-shadow: 0 2px 8px rgba(102,126,234,0.3); }
    50% { box-shadow: 0 4px 15px rgba(102,126,234,0.5); }
}

@keyframes cursorMove {
    0%, 100% { top: 60px; left: 70px; opacity: 0; }
    5%, 30% { top: 80px; left: 100px; opacity: 1; }
    35%, 60% { top: 50px; left: 60px; opacity: 1; }
    65%, 90% { top: 90px; left: 80px; opacity: 1; }
    95% { opacity: 0; }
}

@keyframes seoBadgePop {
    0%, 70%, 100% { transform: scale(0); opacity: 0; }
    75%, 95% { transform: scale(1); opacity: 1; }
}

/* ========== E-Shops PACK Mockup ========== */
.card-pack-eshops {
    position: relative;
    background: linear-gradient(135deg, rgba(102,126,234,0.08) 0%, rgba(118,75,162,0.08) 100%) !important;
    border: 2px solid rgba(102,126,234,0.3) !important;
    overflow: visible;
}

.card-pack-eshops:hover {
    border-color: var(--primary) !important;
    box-shadow: 0 20px 60px rgba(102,126,234,0.3) !important;
}

.pack-badge-top {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    padding: 6px 20px;
    border-radius: 20px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 1px;
    box-shadow: 0 4px 15px rgba(102,126,234,0.4);
    z-index: 10;
    white-space: nowrap;
}

.mockup-pack {
    position: relative;
    display: flex;
    align-items: center;
    justify-content: center;
    min-height: 160px;
}

.pack-central-device {
    width: 130px;
    height: 130px;
    background: linear-gradient(145deg, #1a1a2e 0%, #16162a 100%);
    border-radius: 20px;
    border: 3px solid #333;
    padding: 10px;
    position: relative;
    z-index: 2;
    box-shadow: 0 15px 40px rgba(0,0,0,0.3);
    animation: packDeviceFloat 3s ease-in-out infinite;
}

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

.pack-screen {
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, #667eea 0%, #764ba2 100%);
    border-radius: 12px;
    padding: 8px;
    display: flex;
    flex-direction: column;
}

.pack-header {
    display: flex;
    align-items: center;
    gap: 5px;
    margin-bottom: 8px;
}

.pack-logo {
    width: 18px;
    height: 18px;
    background: white;
    border-radius: 5px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 10px;
    font-weight: 800;
    color: var(--primary);
}

.pack-title {
    font-size: 10px;
    font-weight: 700;
    color: white;
}

.pack-modules-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 4px;
    flex: 1;
}

.pack-module {
    background: rgba(255,255,255,0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: packModulePulse 2s ease-in-out infinite;
}

.pack-module:nth-child(2) { animation-delay: 0.2s; }
.pack-module:nth-child(3) { animation-delay: 0.4s; }
.pack-module:nth-child(4) { animation-delay: 0.6s; }
.pack-module:nth-child(5) { animation-delay: 0.8s; }
.pack-module:nth-child(6) { animation-delay: 1s; }

@keyframes packModulePulse {
    0%, 100% { background: rgba(255,255,255,0.2); }
    50% { background: rgba(255,255,255,0.35); }
}

.pm-icon {
    font-size: 14px;
}

.pack-more {
    text-align: center;
    font-size: 8px;
    font-weight: 600;
    color: rgba(255,255,255,0.9);
    margin-top: 5px;
}

/* Floating badges */
.pack-float-badge {
    position: absolute;
    background: white;
    padding: 5px 10px;
    border-radius: 20px;
    display: flex;
    align-items: center;
    gap: 4px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.15);
    z-index: 3;
    animation: packBadgeFloat 3s ease-in-out infinite;
}

.pack-float-badge.badge-users {
    top: 5px;
    left: -10px;
    animation-delay: 0s;
}

.pack-float-badge.badge-modules {
    top: 5px;
    right: -10px;
    animation-delay: 0.5s;
}

.pack-float-badge.badge-updates {
    bottom: 15px;
    left: -5px;
    animation-delay: 1s;
}

.pack-float-badge.badge-support {
    bottom: 15px;
    right: -5px;
    animation-delay: 1.5s;
}

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

.pfb-icon {
    font-size: 12px;
}

.pfb-text {
    font-size: 8px;
    font-weight: 700;
    color: var(--gray-700);
    white-space: nowrap;
}

.pack-glow {
    position: absolute;
    width: 180px;
    height: 180px;
    background: radial-gradient(circle, rgba(102,126,234,0.3) 0%, transparent 70%);
    border-radius: 50%;
    z-index: 1;
    animation: packGlow 2s ease-in-out infinite;
}

@keyframes packGlow {
    0%, 100% { opacity: 0.5; transform: scale(1); }
    50% { opacity: 0.8; transform: scale(1.1); }
}

/* Pack price styling */
.pack-price .amount {
    background: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.pack-features-list {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
    margin-top: 12px;
    justify-content: center;
}

.pack-features-list span {
    font-size: 9px;
    font-weight: 600;
    color: var(--primary);
    background: rgba(102,126,234,0.1);
    padding: 4px 8px;
    border-radius: 10px;
}

/* Mobile adjustments for pack */
@media (max-width: 768px) {
    .pack-badge-top {
        font-size: 10px;
        padding: 5px 15px;
    }

    .pack-central-device {
        width: 110px;
        height: 110px;
    }

    .pack-float-badge {
        padding: 4px 8px;
    }

    .pfb-text {
        font-size: 7px;
    }

    .pack-float-badge.badge-users,
    .pack-float-badge.badge-updates {
        left: 0;
    }

    .pack-float-badge.badge-modules,
    .pack-float-badge.badge-support {
        right: 0;
    }
}

/* Features */
.features-section {
    background: var(--gray-100);
}

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

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

.feature-icon {
    width: 50px;
    height: 50px;
    min-width: 50px;
    background: var(--white);
    border-radius: var(--radius);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    box-shadow: var(--shadow);
}

.feature-item h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.feature-item p {
    font-size: 0.9rem;
    color: var(--gray-600);
}

/* ==========================================================================
   Features Grid New - Pourquoi Nous Choisir
   ========================================================================== */

.features-grid-new {
    max-width: 1100px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.feature-card {
    background: var(--white);
    border-radius: var(--radius-xl);
    padding: 2rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    border: 1px solid rgba(102, 126, 234, 0.1);
}

.feature-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(102, 126, 234, 0.2);
    border-color: rgba(102, 126, 234, 0.3);
}

.feature-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--gradient-primary);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

.feature-card:hover::before {
    transform: scaleX(1);
}

.feature-icon-wrapper {
    position: relative;
    width: 70px;
    height: 70px;
    margin-bottom: 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-direction: column;
}

.feature-icon-bg {
    position: absolute;
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: 20px;
    opacity: 0.1;
    transition: all 0.4s ease;
}

.feature-card:hover .feature-icon-bg {
    opacity: 0.2;
    transform: scale(1.1) rotate(5deg);
}

.feature-icon-text {
    font-size: 1.5rem;
    font-weight: 800;
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.feature-icon-sub {
    font-size: 0.7rem;
    font-weight: 600;
    color: var(--primary);
    position: relative;
    z-index: 1;
    margin-top: -4px;
}

.feature-svg {
    width: 32px;
    height: 32px;
    color: var(--primary);
    position: relative;
    z-index: 1;
}

.feature-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.5rem;
}

.feature-card > p {
    font-size: 0.95rem;
    color: var(--gray-600);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.feature-badge {
    display: inline-block;
    padding: 0.4rem 0.9rem;
    background: rgba(102, 126, 234, 0.1);
    color: var(--primary);
    border-radius: 50px;
    font-size: 0.8rem;
    font-weight: 600;
    letter-spacing: 0.3px;
}

.feature-badge.green {
    background: rgba(72, 187, 120, 0.1);
    color: var(--success);
}

.feature-badge.orange {
    background: rgba(237, 137, 54, 0.1);
    color: var(--warning);
}

.feature-stats {
    display: flex;
    gap: 1rem;
    margin-top: 0.5rem;
}

.feature-stats span {
    font-size: 0.85rem;
    color: var(--gray-600);
    padding: 0.3rem 0.6rem;
    background: var(--gray-100);
    border-radius: var(--radius);
}

.feature-stats strong {
    color: var(--primary);
    font-weight: 700;
}

.feature-progress {
    margin-top: 0.5rem;
}

.progress-bar {
    height: 6px;
    background: var(--gray-200);
    border-radius: 3px;
    overflow: hidden;
    position: relative;
}

.progress-bar::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    height: 100%;
    width: 0;
    background: var(--gradient-primary);
    border-radius: 3px;
    animation: progressGrow 2s ease-out forwards;
    animation-delay: 0.5s;
}

@keyframes progressGrow {
    0% { width: 0; }
    100% { width: 85%; }
}

/* Responsive Features Grid */
@media (max-width: 900px) {
    .features-grid-new {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 600px) {
    .features-grid-new {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .feature-card {
        padding: 1.5rem;
    }
}

/* Challenge Section */
.challenge-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: var(--white);
    position: relative;
    overflow: hidden;
    padding: 5rem 2rem;
    min-height: 600px;
}

/* Animated Gradient Background */
.challenge-section::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 30%, rgba(102, 126, 234, 0.15) 0%, transparent 50%),
                radial-gradient(circle at 70% 70%, rgba(240, 147, 251, 0.1) 0%, transparent 50%);
    animation: rotateGradient 20s linear infinite;
}

@keyframes rotateGradient {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Floating Particles */
.challenge-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    overflow: hidden;
    pointer-events: none;
}

.particle {
    position: absolute;
    width: 6px;
    height: 6px;
    background: rgba(255, 255, 255, 0.3);
    border-radius: 50%;
    animation: floatParticle 15s infinite ease-in-out;
}

.particle:nth-child(1) { left: 10%; animation-delay: 0s; animation-duration: 12s; }
.particle:nth-child(2) { left: 20%; animation-delay: 2s; animation-duration: 14s; }
.particle:nth-child(3) { left: 35%; animation-delay: 4s; animation-duration: 11s; }
.particle:nth-child(4) { left: 50%; animation-delay: 1s; animation-duration: 16s; }
.particle:nth-child(5) { left: 65%; animation-delay: 3s; animation-duration: 13s; }
.particle:nth-child(6) { left: 75%; animation-delay: 5s; animation-duration: 15s; }
.particle:nth-child(7) { left: 85%; animation-delay: 2.5s; animation-duration: 12s; }
.particle:nth-child(8) { left: 95%; animation-delay: 0.5s; animation-duration: 14s; }

@keyframes floatParticle {
    0%, 100% {
        transform: translateY(100vh) scale(0);
        opacity: 0;
    }
    10% {
        opacity: 1;
        transform: translateY(90vh) scale(1);
    }
    90% {
        opacity: 1;
        transform: translateY(-10vh) scale(1);
    }
    100% {
        transform: translateY(-20vh) scale(0);
        opacity: 0;
    }
}

/* Floating Notifications */
.challenge-notifications {
    position: absolute;
    top: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 130%;
    max-width: 950px;
    height: 100%;
    pointer-events: none;
    z-index: 5;
}

.challenge-notif {
    position: absolute;
    display: flex;
    align-items: center;
    gap: 0.6rem;
    background: rgba(255, 255, 255, 0.98);
    padding: 0.6rem 1rem;
    border-radius: 10px;
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.3);
    opacity: 0;
    transform: scale(0.7) translateY(15px);
    animation: popInOut 10s ease-in-out infinite;
}

.challenge-notif.notif-1 {
    top: 10%;
    left: 0;
    animation-delay: 0s;
}

.challenge-notif.notif-2 {
    top: 35%;
    right: 0;
    left: auto;
    animation-delay: 2.5s;
}

.challenge-notif.notif-3 {
    top: 55%;
    left: 0;
    animation-delay: 5s;
}

.challenge-notif.notif-4 {
    top: 75%;
    right: 0;
    left: auto;
    animation-delay: 7.5s;
}

@keyframes popInOut {
    0%, 100% {
        opacity: 0;
        transform: scale(0.7) translateY(15px);
    }
    8% {
        opacity: 1;
        transform: scale(1) translateY(0);
    }
    20% {
        opacity: 1;
        transform: scale(1) translateY(-5px);
    }
    25% {
        opacity: 0;
        transform: scale(0.7) translateY(-15px);
    }
}

.notif-icon {
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.notif-icon svg {
    width: 18px;
    height: 18px;
}

.notif-icon.success {
    background: linear-gradient(135deg, #48bb78, #38a169);
    color: white;
}

.notif-icon.primary {
    background: var(--gradient-primary);
    color: white;
}

.notif-icon.warning {
    background: linear-gradient(135deg, #ed8936, #dd6b20);
    color: white;
}

.notif-icon.accent {
    background: linear-gradient(135deg, #f093fb, #f5576c);
    color: white;
}

.notif-content {
    display: flex;
    flex-direction: column;
    gap: 0.1rem;
}

.notif-title {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--gray-900);
}

.notif-text {
    font-size: 0.75rem;
    color: var(--gray-600);
}

/* Main Container */
.challenge-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 10;
}

/* Pulse Badge */
.challenge-badge.pulse-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: linear-gradient(135deg, rgba(240, 147, 251, 0.3), rgba(102, 126, 234, 0.3));
    color: var(--white);
    padding: 0.6rem 1.5rem;
    border-radius: 50px;
    font-size: 0.95rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    letter-spacing: 1px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    animation: pulseBadge 2s ease-in-out infinite;
}

.badge-icon {
    font-size: 1.1rem;
}

@keyframes pulseBadge {
    0%, 100% {
        box-shadow: 0 0 0 0 rgba(240, 147, 251, 0.4);
    }
    50% {
        box-shadow: 0 0 0 15px rgba(240, 147, 251, 0);
    }
}

/* Title with effect */
.challenge-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 2rem;
    line-height: 1.3;
}

.title-line {
    display: block;
    opacity: 0.9;
}

.title-highlight {
    display: block;
    background: linear-gradient(90deg, #f093fb, #f5576c, #ffecd2);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease infinite;
}

@keyframes gradientShift {
    0%, 100% { background-position: 0% center; }
    50% { background-position: 100% center; }
}

/* Counter Section */
.challenge-counter {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.counter-item {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.counter-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--white);
    text-shadow: 0 0 30px rgba(240, 147, 251, 0.5);
}

.counter-label {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.7);
    text-transform: uppercase;
    letter-spacing: 1px;
}

.counter-divider {
    width: 1px;
    height: 50px;
    background: linear-gradient(to bottom, transparent, rgba(255,255,255,0.3), transparent);
}

/* Challenge Text */
.challenge-text {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

.challenge-text strong {
    color: #f093fb;
    font-weight: 700;
}

/* Steps */
.challenge-steps {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 1rem;
    margin-bottom: 2.5rem;
    flex-wrap: wrap;
}

.step-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    padding: 0.75rem 1.25rem;
    border-radius: 50px;
    border: 1px solid rgba(255, 255, 255, 0.15);
}

.step-number {
    width: 28px;
    height: 28px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 0.85rem;
}

.step-item span {
    font-size: 0.9rem;
    font-weight: 500;
}

.step-arrow {
    color: rgba(255, 255, 255, 0.4);
}

.step-arrow svg {
    width: 20px;
    height: 20px;
}

/* CTA Button */
.btn-challenge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, #f093fb 0%, #f5576c 100%);
    color: white;
    padding: 1.1rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
    box-shadow: 0 10px 40px rgba(240, 147, 251, 0.4);
}

.btn-challenge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
    animation: shimmer 2s infinite;
}

@keyframes shimmer {
    100% { left: 100%; }
}

.btn-challenge:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 50px rgba(240, 147, 251, 0.5);
}

.btn-arrow svg {
    width: 20px;
    height: 20px;
    transition: transform 0.3s ease;
}

.btn-challenge:hover .btn-arrow svg {
    transform: translateX(5px);
}

/* Trust Badge */
.challenge-trust {
    margin-top: 2rem;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.6);
    font-size: 0.85rem;
}

.trust-icon {
    font-size: 1rem;
}

@keyframes tickerScroll {
    0% { transform: translateX(0); }
    100% { transform: translateX(-50%); }
}

.challenge-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2rem;
    line-height: 1.7;
}

/* Guarantee Items */
.challenge-guarantee {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

.guarantee-item {
    text-align: center;
    padding: 1rem 1.25rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: var(--radius-lg);
    min-width: 110px;
}

.guarantee-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--white);
    line-height: 1.2;
}

.guarantee-label {
    font-size: 0.75rem;
    color: rgba(255, 255, 255, 0.8);
}

.challenge-section .btn-primary {
    background: var(--white);
    color: var(--primary);
    font-size: 1rem;
}

.challenge-section .btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

/* Mobile responsive for challenge */
@media (max-width: 768px) {
    .challenge-section {
        padding: 3rem 1rem;
        min-height: auto;
    }

    .challenge-notifications {
        display: none;
    }

    .challenge-counter {
        gap: 1rem;
    }

    .counter-number {
        font-size: 1.8rem;
    }

    .counter-label {
        font-size: 0.7rem;
    }

    .counter-divider {
        height: 40px;
    }

    .challenge-steps {
        flex-direction: column;
        gap: 0.75rem;
    }

    .step-arrow {
        transform: rotate(90deg);
    }

    .step-item {
        width: 100%;
        justify-content: center;
    }

    .btn-challenge {
        width: 100%;
        justify-content: center;
    }

    .particle {
        width: 4px;
        height: 4px;
    }
}

@media (max-width: 480px) {
    .counter-divider {
        display: none;
    }

    .challenge-counter {
        flex-direction: row;
        justify-content: space-around;
    }

    .counter-item {
        flex: 1;
    }

    .counter-number {
        font-size: 1.5rem;
    }
}

/* Testimonials */
.testimonials-section {
    background: var(--white);
}

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

.testimonial-card {
    background: var(--gray-100);
    border-radius: var(--radius-xl);
    padding: 2rem;
}

.testimonial-text {
    font-size: 1.1rem;
    font-style: italic;
    color: var(--gray-700);
    margin-bottom: 1.5rem;
    line-height: 1.7;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.author-avatar {
    width: 50px;
    height: 50px;
    background: var(--gradient-primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--white);
    font-weight: 700;
}

.author-info h4 {
    font-size: 1rem;
    margin-bottom: 0.25rem;
}

.author-info p {
    font-size: 0.875rem;
    color: var(--gray-500);
}

/* CTA Section */
.cta-section {
    background: var(--gray-900);
    color: var(--white);
}

.cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.cta-section h2 {
    color: var(--white);
    margin-bottom: 1rem;
}

.cta-section p {
    color: var(--gray-400);
    margin-bottom: 2rem;
}

/* Footer */
.footer {
    background: var(--gray-900);
    color: var(--gray-400);
    padding: 4rem 2rem 2rem;
    border-top: 1px solid var(--gray-800);
}

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

.footer-brand .logo {
    display: inline-block;
    margin-bottom: 1rem;
}

.footer-brand p {
    font-size: 0.9rem;
    color: var(--gray-500);
}

.footer-links h4 {
    color: var(--white);
    font-size: 1rem;
    margin-bottom: 1rem;
}

.footer-links ul {
    list-style: none;
}

.footer-links a {
    color: var(--gray-500);
    text-decoration: none;
    font-size: 0.9rem;
    display: block;
    padding: 0.25rem 0;
    transition: color 0.2s ease;
}

.footer-links a:hover {
    color: var(--white);
}

.footer-bottom {
    max-width: 1200px;
    margin: 3rem auto 0;
    padding-top: 2rem;
    border-top: 1px solid var(--gray-800);
    text-align: center;
    font-size: 0.875rem;
}

/* ==========================================================================
   Animations - Premium
   ========================================================================== */

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

@keyframes floatLaptop {
    0%, 100% {
        transform: translateY(0) rotate(-1deg);
    }
    50% {
        transform: translateY(-12px) rotate(1deg);
    }
}

@keyframes floatPhone {
    0%, 100% {
        transform: translateY(0) rotate(3deg);
    }
    50% {
        transform: translateY(-18px) rotate(1deg);
    }
}

@keyframes typing {
    0%, 100% { width: 0; }
    20%, 80% { width: 100%; }
}

@keyframes blink {
    0%, 50% { opacity: 1; }
    51%, 100% { opacity: 0; }
}

@keyframes shimmer {
    0% { background-position: -200% center; }
    100% { background-position: 200% center; }
}

@keyframes growBar {
    from {
        height: 0;
        opacity: 0;
    }
    to {
        height: var(--bar-height);
        opacity: 1;
    }
}

@keyframes notifSlide {
    0%, 100% {
        opacity: 0;
        transform: translateX(30px) scale(0.9);
    }
    15%, 85% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

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

@keyframes navPulse {
    0%, 100% { opacity: 0.4; }
    50% { opacity: 0.8; }
}

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

@keyframes lineShimmer {
    0% {
        background-position: -100% 0;
    }
    100% {
        background-position: 200% 0;
    }
}

@keyframes islandPulse {
    0%, 100% {
        transform: translateX(-50%) scaleX(1);
    }
    50% {
        transform: translateX(-50%) scaleX(1.05);
    }
}

@keyframes statPop {
    from {
        opacity: 0;
        transform: scale(0.8);
    }
    to {
        opacity: 1;
        transform: scale(1);
    }
}

@keyframes glow {
    0%, 100% {
        box-shadow: 0 0 20px rgba(102, 126, 234, 0.3);
    }
    50% {
        box-shadow: 0 0 40px rgba(102, 126, 234, 0.5);
    }
}

/* ==========================================================================
   Responsive Design
   ========================================================================== */

@media (max-width: 992px) {
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    .hero-visual {
        height: 350px;
        width: 100%;
        margin: 2rem auto 0;
        display: flex;
        align-items: center;
        justify-content: center;
    }

    .laptop-mockup {
        width: 300px;
        height: 200px;
        position: relative;
        left: -30px;
    }

    .laptop-base {
        width: 340px;
        left: -30px;
    }

    .phone-mockup {
        width: 100px;
        height: 200px;
        right: -30px;
        bottom: 20px;
    }

    .hero-stats {
        justify-content: center;
    }

    .hero-buttons {
        justify-content: center;
    }
}

@media (max-width: 768px) {
    /* Hide sidebar on mobile */
    .sidebar {
        transform: translateX(-100%);
        transition: transform 0.3s ease;
        height: 100dvh;
        height: -webkit-fill-available;
        max-height: 100vh;
        padding-bottom: env(safe-area-inset-bottom, 20px);
    }

    .sidebar.active {
        transform: translateX(0);
    }

    /* Hide sidebar header logo on mobile (already in mobile-header) */
    .sidebar-header {
        display: none;
    }

    /* Fix sidebar nav on mobile */
    .sidebar-nav {
        flex: 1;
        overflow-y: auto;
        padding-top: 75px;
        padding-bottom: 1rem;
        max-height: calc(100vh - 180px);
    }

    .sidebar-footer {
        position: relative;
        padding: 1rem;
        padding-bottom: calc(1rem + env(safe-area-inset-bottom, 10px));
        margin-top: auto;
        flex-shrink: 0;
    }

    .sidebar-cta.account {
        display: flex;
    }

    .sidebar-menu .menu-section:first-of-type {
        padding-top: 0.5rem;
        margin-top: 0.25rem;
    }

    /* Show mobile header */
    .mobile-header {
        display: flex;
    }

    .sidebar-overlay {
        display: block;
    }

    /* Remove margin-left from all sections */
    .hero,
    .section,
    .services-section,
    .features-section,
    .challenge-section,
    .testimonials-section,
    .cta-section,
    .footer {
        margin-left: 0;
    }

    .hero {
        padding-top: 80px;
        min-height: auto;
        padding-bottom: 3rem;
    }

    .hero-container {
        display: flex !important;
        flex-direction: column !important;
        gap: 0 !important;
    }

    .hero-content {
        display: contents !important;
    }

    .hero-badge {
        order: 1 !important;
    }

    .hero-title {
        order: 2 !important;
    }

    .hero-description {
        order: 3 !important;
        margin-bottom: 1rem !important;
    }

    .hero-visual {
        order: 4 !important;
        height: auto !important;
        min-height: 400px !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 1rem auto !important;
        position: relative !important;
        display: flex !important;
        flex-direction: column !important;
        align-items: center !important;
        justify-content: center !important;
        padding: 10px !important;
    }

    .hero-buttons {
        order: 5 !important;
        margin-top: 1rem !important;
    }

    .hero-stats {
        order: 6 !important;
        margin-top: 2rem !important;
    }

    /* Laptop - Centered on mobile */
    .laptop-mockup {
        width: 85% !important;
        max-width: 320px !important;
        height: 220px !important;
        position: relative !important;
        left: 0 !important;
        top: auto !important;
        right: auto !important;
        transform: none !important;
        z-index: 2 !important;
        animation: floatLaptop 6s ease-in-out infinite !important;
        padding: 10px 10px 6px 10px !important;
        margin: 0 auto !important;
    }

    .laptop-screen {
        overflow: visible !important;
    }

    .laptop-base {
        width: calc(85% + 40px) !important;
        max-width: 360px !important;
        position: relative !important;
        bottom: auto !important;
        top: -12px !important;
        left: 50% !important;
        transform: translateX(-50%) !important;
        margin-top: -12px !important;
    }

    /* Phone - Positioned on bottom right, overlapping */
    .phone-mockup {
        width: 100px !important;
        height: 210px !important;
        position: absolute !important;
        right: 10% !important;
        bottom: 10px !important;
        left: auto !important;
        top: auto !important;
        z-index: 5 !important;
        animation: floatPhone 5s ease-in-out infinite !important;
        padding: 8px !important;
    }

    .phone-screen {
        border-radius: 20px !important;
    }

    .phone-notch {
        width: 45px !important;
        height: 14px !important;
        top: 6px !important;
    }

    .phone-status-bar {
        height: 32px !important;
        padding: 0 10px 5px !important;
    }

    .phone-time {
        font-size: 9px !important;
    }

    .phone-content {
        padding: 5px 6px 6px !important;
        height: calc(100% - 32px) !important;
        gap: 5px !important;
    }

    .phone-header {
        padding: 5px 0 !important;
        border-radius: 8px !important;
    }

    .phone-header h4 {
        font-size: 8px !important;
    }

    .phone-chart {
        padding: 6px !important;
        border-radius: 8px !important;
        gap: 4px !important;
    }

    .chart-bar {
        border-radius: 3px 3px 0 0 !important;
    }

    .phone-stats {
        gap: 4px !important;
    }

    .phone-stat {
        padding: 5px 3px !important;
        border-radius: 6px !important;
    }

    .phone-stat .number {
        font-size: 10px !important;
    }

    .phone-stat .label {
        font-size: 5px !important;
    }

    .hero-stats {
        gap: 2rem;
    }

    .stat-number {
        font-size: 2rem;
    }

    /* Notifications on mobile - smaller and repositioned */
    .floating-notifications {
        display: block !important;
        position: absolute !important;
        top: 0 !important;
        left: 0 !important;
        right: 0 !important;
        bottom: 0 !important;
        pointer-events: none !important;
        z-index: 10 !important;
    }

    .notification {
        padding: 8px 12px !important;
        border-radius: 10px !important;
        gap: 8px !important;
    }

    .notification-icon {
        width: 28px !important;
        height: 28px !important;
        border-radius: 8px !important;
        font-size: 12px !important;
    }

    .notification-text {
        font-size: 10px !important;
    }

    .notification-subtext {
        font-size: 8px !important;
    }

    .notif-1 {
        top: 5% !important;
        left: 5px !important;
        right: auto !important;
    }

    .notif-2 {
        top: auto !important;
        bottom: 45% !important;
        right: auto !important;
        left: 5px !important;
    }

    .notif-3 {
        display: none !important;
    }

    section {
        padding: 4rem 1.5rem;
    }

    .footer-container {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* Better laptop content on mobile */
    .laptop-browser {
        height: 24px !important;
        padding: 0 8px !important;
        gap: 6px !important;
    }

    .browser-dots {
        gap: 4px !important;
    }

    .browser-dots span {
        width: 7px !important;
        height: 7px !important;
    }

    .browser-url {
        font-size: 8px !important;
        padding: 3px 6px !important;
        margin-left: 8px !important;
    }

    .browser-url::before {
        width: 6px !important;
        height: 6px !important;
    }

    .laptop-content {
        padding: 8px !important;
        gap: 6px !important;
        height: calc(100% - 24px) !important;
    }

    .content-header {
        height: 28px !important;
        padding: 0 8px !important;
        border-radius: 6px !important;
    }

    .content-nav span {
        width: 24px !important;
        height: 3px !important;
    }

    .content-body {
        gap: 5px !important;
        flex: 1 !important;
    }

    .content-card {
        padding: 6px !important;
        gap: 4px !important;
        border-radius: 6px !important;
    }

    .card-icon {
        width: 18px !important;
        height: 18px !important;
        border-radius: 4px !important;
    }

    .card-icon::after {
        width: 7px !important;
        height: 7px !important;
        border-radius: 2px !important;
    }

    .card-lines {
        gap: 3px !important;
    }

    .card-lines span {
        height: 3px !important;
        border-radius: 2px !important;
    }
}

@media (max-width: 480px) {
    .hero-container {
        padding: 1rem;
    }

    .hero-visual {
        min-height: 380px !important;
        padding: 0 10px !important;
    }

    .laptop-mockup {
        max-width: 300px !important;
        height: 200px !important;
    }

    .laptop-base {
        max-width: 340px !important;
    }

    .phone-mockup {
        width: 95px !important;
        height: 200px !important;
        right: -5px !important;
        bottom: -10px !important;
    }

    .content-body {
        grid-template-columns: repeat(3, 1fr) !important;
    }

    .hero-buttons {
        flex-direction: column;
    }

    .btn {
        width: 100%;
    }

    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
    }
}

/* Footer Legal Info */
.footer-legal {
    font-size: 0.75rem;
    opacity: 0.7;
    margin-top: 0.5rem;
}

.footer-gouv {
    margin-top: 0.5rem;
}
.footer-gouv a {
    color: #667eea;
    text-decoration: none;
    font-size: 0.8rem;
    opacity: 0.8;
}
.footer-gouv a:hover {
    opacity: 1;
    text-decoration: underline;
}
