/* ============================================
   LANDING PAGE STYLES - COMPLETE REDESIGN
   ============================================ */

/* Variables CSS - Thème Blanc/Bleu Électrique */
:root {
    --color-black: #0a0a0a;
    --color-white: #ffffff;
    --color-gray-100: #f8fafc;
    --color-gray-200: #e2e8f0;
    --color-gray-300: #cbd5e1;
    --color-gray-400: #94a3b8;
    --color-gray-500: #64748b;
    --color-gray-600: #475569;
    --color-gray-700: #334155;
    --color-gray-800: #1e293b;
    --color-gray-900: #0f172a;
    --color-accent: #2563eb;
    --color-accent-light: #3b82f6;
    --color-success: #10b981;
    --color-warning: #f59e0b;
    --color-error: #ef4444;
    --gradient-primary: linear-gradient(135deg, #2563eb 0%, #3b82f6 100%);
    --gradient-secondary: linear-gradient(135deg, #3b82f6 0%, #2563eb 100%);
    --gradient-success: linear-gradient(135deg, #10b981 0%, #059669 100%);
    --shadow-sm: 0 1px 2px 0 rgba(0, 0, 0, 0.05);
    --shadow-md: 0 4px 6px -1px rgba(0, 0, 0, 0.1);
    --shadow-lg: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
    --shadow-xl: 0 20px 25px -5px rgba(0, 0, 0, 0.1);
    --shadow-2xl: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    --color-bg-primary: #ffffff;
    --color-bg-secondary: #f8fafc;
    --color-text-primary: #0a0a0a;
    --color-text-secondary: #4b5563;
}

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

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

.container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* ============================================
   HERO SECTION
   ============================================ */

.hero {
    position: relative;
    padding: 120px 0 60px;
    overflow: hidden;
    margin-top: 40px;
    background: #ffffff;
}

.hero-content {
    position: relative;
    z-index: 2;
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 3rem;
    margin-bottom: 2rem;
}

.hero-text {
    flex: 1;
    text-align: left;
    z-index: 2;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    padding-top: 0;
}

.hero-text .hero-cta {
    margin-top: 2rem;
    margin-bottom: 0;
}

/* Hero Separator */
.hero-separator {
    display: flex;
    justify-content: center;
    align-items: center;
    margin: 1rem 0;
    position: relative;
}

.hero-separator::before,
.hero-separator::after {
    content: '';
    flex: 1;
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
}

.separator-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    background: var(--gradient-primary);
    border-radius: 50%;
    margin: 0 1rem;
    color: white;
    animation: pulse 2s infinite;
}

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

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

.hero-description {
    font-size: 1rem;
    line-height: 1.5;
    color: var(--color-text-secondary);
    text-align: center;
    margin-bottom: 1rem;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--color-success);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

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

.hero-title {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.25rem;
    color: var(--color-text-primary);
    letter-spacing: -0.02em;
}

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

.hero-subtitle {
    font-size: 1.125rem;
    line-height: 1.6;
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
    max-width: 600px;
}

.hero-stats {
    display: flex;
    gap: 2rem;
    margin-bottom: 2rem;
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text-primary);
    line-height: 1;
}

.stat-label {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
    margin-top: 0.25rem;
}

.hero-cta {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-start;
    margin-top: 1.5rem;
}

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 1rem 2rem;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--color-white);
    box-shadow: 0 8px 24px rgba(91, 91, 214, 0.3);
}

.btn-primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(91, 91, 214, 0.5);
}

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

.btn-secondary:hover {
    background: #1a1a1a;
    transform: translateY(-2px);
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.2);
}

.hero-guarantee {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-success);
    font-size: 0.875rem;
    font-weight: 500;
}

.hero-image {
    flex: 0 0 auto;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
    max-width: 600px;
    width: 100%;
    margin-left: auto;
}

.hero-mockup {
    position: relative;
    width: 100%;
    display: flex;
    align-items: flex-start;
    justify-content: flex-end;
}

.floating-image {
    max-width: 100%;
    width: 100%;
    height: auto;
    max-height: 700px;
    object-fit: contain;
    animation: floating 3s ease-in-out infinite;
    filter: drop-shadow(0 10px 30px rgba(91, 91, 214, 0.2));
}

.mockup-badge {
    position: absolute;
    top: 1rem;
    right: 1rem;
    background: var(--gradient-success);
    color: var(--color-white);
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(16, 185, 129, 0.3);
}

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

/* ============================================
   PROBLEM SECTION - ULTRA IMPACTANT
   ============================================ */

.problem-section {
    padding: 6rem 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.problem-hero {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}


.problem-hero .section-title {
    font-size: 2.8rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    color: var(--color-text-primary);
    letter-spacing: -0.02em;
    max-width: 900px;
    margin-left: auto;
    margin-right: auto;
}

.problem-hero .section-subtitle {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

.problem-stats-hero {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.stat-mega {
    background: var(--color-bg-primary);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 2.5rem 2rem;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.stat-mega::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(91, 91, 214, 0.1) 0%, transparent 50%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.stat-mega:hover {
    transform: translateY(-8px) scale(1.02);
    border-color: rgba(91, 91, 214, 0.4);
    box-shadow: 0 20px 40px rgba(91, 91, 214, 0.2);
}

.stat-mega:hover::before {
    opacity: 1;
}

.stat-mega .stat-number {
    font-size: 4rem;
    font-weight: 900;
    color: var(--color-accent);
    display: block;
    margin-bottom: 0.75rem;
    text-shadow: 0 0 20px rgba(91, 91, 214, 0.5);
    animation: count-up 2s ease-out;
}

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

.stat-mega .stat-label {
    color: var(--color-text-primary);
    font-size: 1.1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
    display: block;
}

.stat-mega .stat-description {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    line-height: 1.4;
}

.problem-showcase {
    position: relative;
    z-index: 2;
}

.problem-intro {
    text-align: center;
    margin-bottom: 3rem;
}

.problem-intro h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
}

.problem-intro p {
    font-size: 1.1rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.problem-grid-enhanced {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.problem-card-enhanced {
    background: var(--color-bg-primary);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 2.5rem;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.problem-card-enhanced::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-accent-light) 50%, var(--color-accent) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.problem-card-enhanced:hover {
    transform: translateY(-5px);
    border-color: rgba(37, 99, 235, 0.3);
    box-shadow: 0 15px 35px rgba(37, 99, 235, 0.15);
}

.problem-card-enhanced:hover::before {
    opacity: 1;
}

.problem-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
}

.problem-icon {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, rgba(91, 91, 214, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 2px solid rgba(91, 91, 214, 0.3);
}

.problem-number {
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
    color: white;
    font-weight: 800;
    font-size: 1.2rem;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 4px 15px rgba(91, 91, 214, 0.4);
}

.problem-card-enhanced h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.problem-card-enhanced p {
    color: var(--color-text-secondary);
    font-size: 1rem;
    line-height: 1.6;
    margin-bottom: 1.5rem;
}

.problem-impact-enhanced {
    background: rgba(239, 68, 68, 0.1);
    border: 1px solid rgba(239, 68, 68, 0.2);
    border-radius: 12px;
    padding: 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.impact-stats {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.impact-number {
    font-size: 1.8rem;
    font-weight: 800;
    color: #ef4444;
}

.impact-label {
    color: var(--color-text-secondary);
    font-size: 0.9rem;
    font-weight: 500;
}

.impact-cost {
    text-align: right;
}

.cost-label {
    color: var(--color-text-secondary);
    font-size: 0.8rem;
    display: block;
    margin-bottom: 0.25rem;
}

.cost-amount {
    color: #ef4444;
    font-size: 1.2rem;
    font-weight: 700;
}

/* Responsive styles for problem impact cards */
@media (max-width: 768px) {
    .problem-impact-enhanced {
        flex-direction: column;
        align-items: flex-start;
        gap: 1rem;
        padding: 1rem;
    }
    
    .impact-stats {
        flex-direction: column;
        align-items: flex-start;
        gap: 0.25rem;
    }
    
    .impact-number {
        font-size: 1.5rem;
    }
    
    .impact-label {
        font-size: 0.8rem;
    }
    
    .impact-cost {
        text-align: left;
        width: 100%;
    }
    
    .cost-label {
        font-size: 0.75rem;
    }
    
    .cost-amount {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .problem-impact-enhanced {
        padding: 0.75rem;
    }
    
    .impact-number {
        font-size: 1.25rem;
    }
    
    .impact-label {
        font-size: 0.75rem;
    }
    
    .cost-amount {
        font-size: 0.9rem;
    }
}

.problem-total-cost {
    margin: 3rem 0;
    text-align: center;
}

.total-cost-card {

    border-radius: 16px;
    padding: 2rem 1.5rem;
    position: relative;
    overflow: hidden;
}

.total-cost-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 0.75rem;
    position: relative;
    z-index: 2;
}

.total-amount {
    font-size: 2.5rem;
    font-weight: 900;
    color: #ef4444;
    margin-bottom: 0.75rem;
    text-shadow: 0 0 20px rgba(239, 68, 68, 0.5);
    position: relative;
    z-index: 2;
    animation: pulse-cost 2s infinite;
}

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

.total-cost-card p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    position: relative;
    z-index: 2;
}

.problem-cta-enhanced {
    text-align: center;
    margin-top: 4rem;
}

.cta-content h3 {
    font-size: 2.2rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.cta-content p {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    margin-bottom: 2.5rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    gap: 1.5rem;
    justify-content: center;
    align-items: center;
    margin-bottom: 2rem;
    flex-wrap: wrap;
}

/* Uniformiser la taille des boutons dans les CTA */
.cta-buttons .btn {
    min-width: 250px;
    padding: 1rem 1rem;
    font-size: 1rem;
    justify-content: center;
    text-align: center;
}

.btn-large {
    padding: 1.25rem 2.5rem;
    font-size: 1.1rem;
    font-weight: 600;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: linear-gradient(135deg, var(--color-accent) 0%, var(--color-accent-light) 100%);
    border: none;
    border-radius: 12px;
    color: white;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(91, 91, 214, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-large::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    transition: left 0.5s ease;
}

.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(91, 91, 214, 0.4);
}

.btn-large:hover::before {
    left: 100%;
}


.cta-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    color: var(--color-success);
    font-weight: 600;
    font-size: 1rem;
}

.cta-guarantee svg {
    animation: check-pulse 2s infinite;
}

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

/* Responsive Design */
@media (max-width: 1024px) {
    .problem-stats-hero {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .problem-grid-enhanced {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .problem-hero .section-title {
        font-size: 2.8rem;
    }
}

@media (max-width: 768px) {
    .problem-section {
        padding: 6rem 0;
    }
    
    .problem-hero .section-title {
        font-size: 2.2rem;
    }
    
    .stat-mega {
        padding: 2rem 1.5rem;
    }
    
    .stat-mega .stat-number {
        font-size: 3rem;
    }
    
    .problem-card-enhanced {
        padding: 2rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: stretch;
    }
    
    .btn-large {
        justify-content: center;
    }
    
    .cta-buttons .btn {
        min-width: auto;
        width: 100%;
    }
}

/* ============================================
   BOUTONS FLOTTANTS DISCORD & WHATSAPP
   ============================================ */

   .floating-btns-left {
    position: fixed;
    bottom: 30px;
    left: 30px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    z-index: 998;
}

/* Bouton Discord */
.discord-btn-left {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #5865F2 0%, #4752C4 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 4px 12px rgba(88, 101, 242, 0.4),
        0 8px 24px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
}

.discord-btn-left:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 6px 16px rgba(88, 101, 242, 0.5),
        0 12px 32px rgba(0, 0, 0, 0.4);
}

.discord-btn-left svg {
    width: 32px;
    height: 32px;
    fill: white;
    transition: transform 0.3s ease;
}

.discord-btn-left:hover svg {
    transform: scale(1.1);
}

/* Bouton WhatsApp */
.whatsapp-btn {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #25D366 0%, #128C7E 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 
        0 4px 12px rgba(37, 211, 102, 0.4),
        0 8px 24px rgba(0, 0, 0, 0.3);
    transition: all 0.3s ease;
    text-decoration: none;
    color: white;
}

.whatsapp-btn:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 
        0 6px 16px rgba(37, 211, 102, 0.5),
        0 12px 32px rgba(0, 0, 0, 0.4);
}

.whatsapp-btn svg {
    width: 32px;
    height: 32px;
    fill: white;
    transition: transform 0.3s ease;
}

.whatsapp-btn:hover svg {
    transform: scale(1.1);
}

/* Responsive */
@media (max-width: 767px) {
    .floating-btns-left {
        bottom: 20px;
        left: 20px;
        gap: 10px;
    }
    
    .discord-btn-left,
    .whatsapp-btn {
        width: 54px;
        height: 54px;
    }
    
    .discord-btn-left svg,
    .whatsapp-btn svg {
        width: 28px;
        height: 28px;
    }
}

@media (max-width: 479px) {
    .floating-btns-left {
        bottom: 16px;
        left: 16px;
        gap: 8px;
    }
    
    .discord-btn-left,
    .whatsapp-btn {
        width: 50px;
        height: 50px;
    }
    
    .discord-btn-left svg,
    .whatsapp-btn svg {
        width: 26px;
        height: 26px;
    }
}
/* ============================================
   SOLUTION SECTION
   ============================================ */

.solution-section {
    padding: 8rem 0;
    background: #ffffff;
    position: relative;
    overflow: hidden;
}

.solution-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 50% 50%, rgba(91, 91, 214, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.solution-header {
    text-align: center;
    margin-bottom: 4rem;
    position: relative;
    z-index: 2;
}

.solution-header h2 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    color: var(--color-text-primary);
    letter-spacing: -0.02em;
    position: relative;
}


.solution-header p {
    font-size: 1.2rem;
    color: var(--color-text-secondary);
    max-width: 700px;
    margin: 0 auto;
    line-height: 1.6;
    font-weight: 400;
}

.solution-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.solution-card {
    background: var(--color-bg-primary);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    padding: 2.5rem 2rem;
    text-align: center;
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.solution-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-accent-light) 50%, var(--color-accent) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.solution-card:hover {
    background: var(--color-bg-secondary);
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(91, 91, 214, 0.15);
    border-color: rgba(91, 91, 214, 0.4);
}

.solution-card:hover::before {
    opacity: 1;
}

.solution-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(91, 91, 214, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 12px;
    color: var(--color-accent);
    transition: all 0.3s ease;
}

.solution-card:hover .solution-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(91, 91, 214, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
}

.solution-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.solution-card p {
    color: var(--color-text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

.solution-cta {
    text-align: center;
}

/* ============================================
   WHY LANDING SECTION
   ============================================ */

.why-landing {
    padding: 8rem 0;
    background: var(--color-bg-secondary);
    position: relative;
    overflow: hidden;
}

.why-landing::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 70%, rgba(91, 91, 214, 0.03) 0%, transparent 70%);
    pointer-events: none;
}

.why-landing h2 {
    font-size: 3rem;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    text-align: center;
    color: var(--color-text-primary);
    letter-spacing: -0.02em;
    position: relative;
    z-index: 2;
}


.why-landing p {
    color: var(--color-text-secondary);
    font-size: 1.2rem;
    margin-bottom: 4rem;
    text-align: center;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
    font-weight: 400;
    position: relative;
    z-index: 2;
}

.benefits-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-bottom: 3rem;
}

.benefit-card {
    background: var(--color-bg-primary);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    transition: all 0.4s ease;
    position: relative;
    overflow: hidden;
}

.benefit-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--color-accent) 0%, var(--color-accent-light) 50%, var(--color-accent) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.benefit-card:hover {
    background: var(--color-bg-secondary);
    transform: translateY(-8px);
    box-shadow: 0 25px 50px rgba(37, 99, 235, 0.15);
    border-color: rgba(37, 99, 235, 0.3);
}

.benefit-card:hover::before {
    opacity: 1;
}

.benefit-icon {
    width: 60px;
    height: 60px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(91, 91, 214, 0.1) 0%, rgba(139, 92, 246, 0.1) 100%);
    border-radius: 12px;
    color: var(--color-accent);
    transition: all 0.3s ease;
}

.benefit-card:hover .benefit-icon {
    transform: scale(1.1);
    background: linear-gradient(135deg, rgba(91, 91, 214, 0.2) 0%, rgba(139, 92, 246, 0.2) 100%);
}

.benefit-card h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
    line-height: 1.3;
}

.benefit-card p {
    color: var(--color-text-secondary);
    line-height: 1.6;
    font-size: 1rem;
}

.benefits-cta {
    text-align: center;
}

/* ============================================
   SOCIAL PROOF SECTION
   ============================================ */

.social-proof-section {
    padding: 6rem 0;
    background: var(--color-bg-secondary);
}

.social-proof-header {
    text-align: center;
    margin-bottom: 3rem;
}

.social-proof-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--color-text-primary);
}

.social-proof-header p {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.results-showcase {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.result-card {
    background: var(--color-bg-primary);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 2rem;
    display: flex;
    gap: 1.5rem;
    align-items: center;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.result-card:hover {
    background: var(--color-bg-secondary);
    transform: translateY(-4px);
    border-color: rgba(37, 99, 235, 0.3);
}

.result-stats {
    text-align: center;
    flex-shrink: 0;
}

.result-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-success);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.result-label {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

.result-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 0.5rem;
}

.result-content p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin-bottom: 0.75rem;
}

.result-author strong {
    color: var(--color-text-primary);
    font-weight: 600;
}

.result-author span {
    color: var(--color-text-secondary);
    font-size: 0.875rem;
}

.social-proof-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.proof-stat {
    text-align: center;
    padding: 1.5rem;
    background: var(--color-bg-primary);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.proof-stat:hover {
    background: var(--color-bg-secondary);
    transform: translateY(-2px);
    border-color: rgba(37, 99, 235, 0.3);
}

.proof-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text-primary);
    line-height: 1;
    margin-bottom: 0.5rem;
}

.proof-label {
    color: var(--color-text-secondary);
    font-size: 0.875rem;
}

/* ============================================
   PRICING SECTION
   ============================================ */

.pricing-section {
    padding: 6rem 0;
    background: var(--color-bg-secondary);
}

.pricing-header {
    text-align: center;
    margin-bottom: 3rem;
}

.pricing-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--color-text-primary);
}

.pricing-header p {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    margin-bottom: 1.5rem;
}

.pricing-guarantee {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--color-success);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
}

.pricing-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.pricing-card {
    background: var(--color-bg-primary);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 20px;
    padding: 2.5rem 2rem;
    position: relative;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.pricing-card:hover {
    background: var(--color-bg-secondary);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.15);
    border-color: rgba(37, 99, 235, 0.3);
}

.pricing-card.featured {
    background: rgba(37, 99, 235, 0.05);
    border: 2px solid var(--color-accent);
    transform: scale(1.05);
}

.pricing-badge {
    position: absolute;
    top: -12px;
    left: 50%;
    transform: translateX(-50%);
    background: var(--gradient-primary);
    color: var(--color-white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    box-shadow: 0 4px 12px rgba(91, 91, 214, 0.3);
}

.pricing-header h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
    margin-bottom: 1.5rem;
}

.currency {
    font-size: 1rem;
    color: var(--color-text-secondary);
}

.amount {
    font-size: 3rem;
    font-weight: 700;
    color: var(--color-text-primary);
    line-height: 1;
}

.period {
    font-size: 1rem;
    color: var(--color-text-secondary);
}

.price-savings {
    margin-bottom: 1.5rem;
}

.savings-badge {
    display: inline-block;
    background: rgba(16, 185, 129, 0.1);
    color: var(--color-success);
    padding: 0.25rem 0.75rem;
    border-radius: 50px;
    font-size: 0.75rem;
    font-weight: 600;
}

.pricing-features {
    list-style: none;
    margin-bottom: 2rem;
}

.pricing-features li {
    padding: 0.5rem 0;
    color: var(--color-text-secondary);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 0.95rem;
}

.pricing-footer {
    text-align: center;
}

.delivery {
    color: var(--color-text-secondary);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.pricing-cta {
    text-align: center;
    margin-top: 3rem;
}

.pricing-note {
    color: var(--color-text-secondary);
    font-size: 0.875rem;
    margin-bottom: 1.5rem;
}

.cta-large {
    padding: 1rem 2rem;
    font-size: 1rem;
}

/* ============================================
   URGENCY SECTION
   ============================================ */

.urgency-section {
    padding: 6rem 0;
    background: var(--color-bg-primary);
    text-align: center;
}

.urgency-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--color-text-primary);
}

.urgency-header p {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
}

.countdown-timer {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-bottom: 3rem;
}

.timer-item {
    background: var(--color-bg-primary);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 1.5rem 1rem;
    min-width: 80px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.timer-item:hover {
    background: var(--color-bg-secondary);
    transform: translateY(-2px);
    border-color: rgba(37, 99, 235, 0.3);
}

.timer-number {
    display: block;
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-warning);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.timer-label {
    font-size: 0.875rem;
    color: var(--color-text-secondary);
}

.urgency-benefits {
    display: flex;
    justify-content: center;
    gap: 2rem;
    margin-bottom: 3rem;
    flex-wrap: wrap;
}

.urgency-benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--color-success);
    font-size: 0.95rem;
    font-weight: 500;
}

.urgency-cta {
    margin-top: 2rem;
}

.urgency-btn {
    background: var(--gradient-primary);
    color: var(--color-white);
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    border-radius: 12px;
    text-decoration: none;
    display: inline-block;
    box-shadow: 0 8px 24px rgba(91, 91, 214, 0.3);
    transition: all 0.3s ease;
}

.urgency-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 12px 32px rgba(91, 91, 214, 0.5);
}

.urgency-note {
    color: var(--color-warning);
    font-size: 0.875rem;
    font-weight: 600;
    margin-top: 1rem;
}

/* ============================================
   FINAL CTA SECTION
   ============================================ */

.final-cta-section {
    padding: 4rem 0;
    background: var(--color-bg-secondary);
    text-align: center;
}

.cta-header h2 {
    font-size: 2rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 0.75rem;
    color: var(--color-text-primary);
}

.cta-header p {
    font-size: 1rem;
    color: var(--color-text-secondary);
    margin-bottom: 3rem;
}

.cta-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.cta-benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--color-bg-primary);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.cta-benefit:hover {
    background: var(--color-bg-secondary);
    transform: translateY(-2px);
    border-color: rgba(37, 99, 235, 0.3);
}

.benefit-icon {
    font-size: 2rem;
    flex-shrink: 0;
}

.benefit-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 0.25rem;
}

.benefit-content p {
    color: var(--color-text-secondary);
    font-size: 0.875rem;
}

.cta-actions {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
}

.cta-note {
    color: var(--color-text-secondary);
    font-size: 0.875rem;
    margin-top: 1rem;
}



.cta-social-proof {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
}

.social-proof-item {
    text-align: center;
}

.social-proof-item .proof-number {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--color-text-primary);
    line-height: 1;
    margin-bottom: 0.25rem;
}

.social-proof-item .proof-label {
    color: var(--color-text-secondary);
    font-size: 0.875rem;
}

/* ============================================
   BOOKING SECTION
   ============================================ */

.booking-section {
    padding: 6rem 0;
    background: var(--color-bg-primary);
}

.booking-header {
    text-align: center;
    margin-bottom: 3rem;
}

.booking-header h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    color: var(--color-text-primary);
}

.booking-header p {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

.booking-benefits {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.booking-benefit {
    display: flex;
    align-items: center;
    gap: 1rem;
    background: var(--color-bg-secondary);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 12px;
    padding: 1.5rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.booking-benefit:hover {
    background: var(--color-bg-primary);
    transform: translateY(-2px);
    border-color: rgba(37, 99, 235, 0.3);
}

.booking-benefit .benefit-icon {
    flex-shrink: 0;
}

.booking-benefit .benefit-content h3 {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 0.25rem;
}

.booking-benefit .benefit-content p {
    color: var(--color-text-secondary);
    font-size: 0.875rem;
}

.booking-calendar {
    background: var(--color-bg-primary);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 2rem;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
    margin-bottom: 2rem;
}

.calendar-container {
    border-radius: 12px;
    overflow: hidden;
}

.booking-guarantee {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    color: var(--color-success);
    font-size: 0.875rem;
    font-weight: 500;
}

/* ============================================
   FAQ SECTION
   ============================================ */

.faq {
    padding: 120px 0;
    background: #ffffff;
    position: relative;
}

.faq-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--color-black);
    color: white;
    padding: 0.5rem 1rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    margin: 0 auto 1.5rem;
    display: flex;
    width: fit-content;
}

.faq-badge svg {
    width: 16px;
    height: 16px;
    stroke: white;
}

.faq h2 {
    text-align: center;
    font-size: 2.5rem;
    color: var(--color-text-primary);
    margin-bottom: 3rem;
    font-weight: 700;
}

.faq-accordion {
    max-width: 800px;
    margin: 0 auto;
}

.faq-question {
    display: flex !important;
    justify-content: space-between;
    align-items: center;
    padding: 1.5rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    cursor: pointer;
    transition: all 0.3s ease;
    position: relative;
    visibility: visible !important;
    opacity: 1 !important;
    z-index: 1;
}

.faq-question:hover {
    background: rgba(37, 99, 235, 0.05);
    border-radius: 8px;
    padding-left: 1rem;
    padding-right: 1rem;
}

.faq-question h3 {
    color: var(--color-text-primary);
    font-size: 1.125rem;
    font-weight: 600;
    margin: 0;
    flex: 1;
    padding-right: 1rem;
    display: block !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.faq-toggle {
    color: var(--color-text-primary);
    font-size: 1.5rem;
    font-weight: 300;
    transition: all 0.3s ease;
    flex-shrink: 0;
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: rgba(91, 91, 214, 0.1);
}

.faq-question:hover .faq-toggle {
    background: rgba(37, 99, 235, 0.2);
    transform: scale(1.1);
}

.faq-question.active {
    display: flex !important;
    visibility: visible !important;
    opacity: 1 !important;
}

.faq-question.active .faq-toggle {
    transform: rotate(45deg);
    background: var(--color-black);
    color: white;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                padding 0.4s cubic-bezier(0.4, 0, 0.2, 1), 
                opacity 0.3s ease;
    background: rgba(0, 0, 0, 0.02);
    border-radius: 0 0 8px 8px;
    padding: 0;
    opacity: 0;
    margin: 0;
    display: block;
    box-sizing: border-box;
}

.faq-answer.active {
    max-height: 1000px;
    padding: 1.5rem;
    margin: 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
    opacity: 1;
}

.faq-answer p {
    color: var(--color-text-secondary);
    line-height: 1.6;
    font-size: 1rem;
    margin: 0;
}

/* FAQ Responsive */
@media (max-width: 767px) {
    .faq h2 {
        font-size: 2rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 1rem 0;
    }
    
    .faq-question:hover {
        padding-left: 0.75rem;
        padding-right: 0.75rem;
    }
}

/* ============================================
   RESPONSIVE DESIGN - MOBILE FIRST
   ============================================ */

/* Hero Section Mobile */
@media (max-width: 768px) {
    .hero {
        padding-top: 0;
        margin-top: 70px;
        min-height: auto;
        align-items: flex-start;
    }
    
    .hero-content {
        display: flex;
        flex-direction: column;
        align-items: center;
        text-align: center;
        gap: 1rem;
        margin-top: 75px;
        width: 100%;
        padding: 1.5rem 0 2rem 0;
    }

    
    .hero-text {
        width: 100%;
        max-width: 100%;
        order: 1;
    }
    
    .hero-title {
        font-size: 1.5rem;
        line-height: 1.2;
        margin-bottom: 0.75rem;
        text-align: center;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
        line-height: 1.4;
        margin-bottom: 1rem;
        text-align: center;
        max-width: 100%;
    }
    
    .hero-separator {
        margin: 0.5rem 0;
    }
    
    .separator-icon {
        width: 28px;
        height: 28px;
    }
    
    .hero-description {
        font-size: 0.875rem;
        margin-bottom: 0.5rem;
    }
    
    .hero-cta .btn-primary {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .hero-cta .btn-primary .arrow-icon {
        width: 14px;
        height: 14px;
    }
    
    .hero-cta {
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 0.5rem;
        width: 100%;
        margin-top: 0.25rem;
    }
    
    .hero-button {
        padding: 0.875rem 1.5rem;
        font-size: 0.9rem;
        width: 100%;
        max-width: 328px;
        justify-content: center;
    }
    
    .hero-guarantee {
        font-size: 0.85rem;
        text-align: center;
    }
    
    .hero-image {
        display: none;
    }
    
    .hero-mockup {
        display: none;
    }
    
    .floating-image {
        display: none;
    }
}

/* Problem Section Mobile */
@media (max-width: 768px) {
    .problem-section {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
        line-height: 1.3;
        margin-bottom: 1rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
        line-height: 1.5;
        margin-bottom: 2rem;
    }
    
    .problem-stats-hero {
        flex-direction: column;
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .stat-mega {
        padding: 1.5rem;
    }
    
    .stat-number {
        font-size: 2.5rem;
    }
    
    .stat-label {
        font-size: 1rem;
    }
    
    .problem-grid-enhanced {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .problem-card-enhanced {
        padding: 1.5rem;
    }
    
    .problem-card-enhanced h3 {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }
    
    .total-cost-card {
        padding: 1.5rem;
    }
    
    .total-cost-card h3 {
        font-size: 1.125rem;
    }
    
    .total-amount {
        font-size: 2rem;
    }
    
    .cta-content h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .cta-content p {
        font-size: 0.95rem;
        margin-bottom: 1.5rem;
    }
    
    .cta-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .cta-buttons .btn {
        width: 100%;
        justify-content: center;
    }
}

/* Solution Section Mobile */
@media (max-width: 768px) {
    .solution-section {
        padding: 3rem 0;
    }
    
    .solution-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .solution-card {
        padding: 1.5rem;
    }
    
    .solution-card h3 {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }
    
    .solution-card p {
        font-size: 0.95rem;
    }
}

/* Why Landing Section Mobile */
@media (max-width: 768px) {
    .why-landing {
        padding: 3rem 0;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefit-card {
        padding: 1.5rem;
    }
    
    .benefit-card h3 {
        font-size: 1.125rem;
        margin-bottom: 0.75rem;
    }
    
    .benefit-card p {
        font-size: 0.95rem;
    }
}

/* Testimonials Mobile */
@media (max-width: 768px) {
    .testimonials-section {
        padding: 3rem 0;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .testimonial-card {
        padding: 1.5rem;
    }
    
    .testimonial-content p {
        font-size: 0.95rem;
    }
}

/* Final CTA Mobile */
@media (max-width: 768px) {
    .final-cta-section {
        padding: 3rem 0;
    }
    
    .cta-header h2 {
        font-size: 1.75rem;
        margin-bottom: 0.75rem;
    }
    
    .cta-header p {
        font-size: 1rem;
        margin-bottom: 2rem;
    }
    
    .cta-large {
        padding: 1rem 1.5rem;
        font-size: 0.95rem;
    }
}

/* FAQ Mobile */
@media (max-width: 768px) {
    .faq {
        padding: 3rem 0;
    }
    
    .faq h2 {
        font-size: 1.75rem;
        margin-bottom: 2rem;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-question {
        padding: 1rem 0;
    }
    
    .faq-answer p {
        font-size: 0.95rem;
    }
}

/* General Mobile Spacing */
@media (max-width: 768px) {
    .container {
        padding: 0 1rem;
    }
    
    .section-separator {
        margin: 2rem 0;
    }
    
    .problem-total-cost {
        margin: 2rem 0;
    }
    
    .problem-cta-enhanced {
        margin-top: 2rem;
    }
}

/* ============================================
   SECTION SEPARATORS
   ============================================ */

.section-separator {
    height: 1px;
    background: linear-gradient(90deg, transparent, rgba(0, 0, 0, 0.1), transparent);
    margin: 0;
}


/* ============================================
   FOOTER
   ============================================ */

.footer {
    background: var(--color-bg-secondary);
    border-top: 1px solid rgba(0, 0, 0, 0.08);
    padding: 6rem 0 2rem;
    position: relative;
    width: 100%;
    clear: both;
    margin-top: auto;
    flex-shrink: 0;
    z-index: 10;
}

.footer-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

/* Footer Top Section */
.footer-top {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-brand {
    max-width: 400px;
}

.footer-logo-section {
    text-align: center;
    margin-bottom: 80px;
    display: flex;
    justify-content: center;
    align-items: center;
    width: 100%;
}

.footer-logo-main {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 100%;
}

.footer-logo-top {
    display: none;
}

.footer-logo-img {
    width: auto;
    height: 70px;
    max-width: 300px;
    object-fit: contain;
    display: block;
    transition: transform 0.3s ease, filter 0.3s ease;
    filter: brightness(1);
}

.footer-logo-section:hover .footer-logo-img {
    transform: scale(1.05);
    filter: brightness(1.1);
}

.footer-logo-text {
    font-family: 'Outfit', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    letter-spacing: -0.03em;
    background: linear-gradient(90deg, var(--color-text-primary), var(--color-accent), var(--color-text-primary));
    background-size: 200% 100%;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 3s ease-in-out infinite;
}

.footer-logo-agency {
    font-family: 'Outfit', sans-serif;
    font-size: 0.7rem;
    letter-spacing: 0.3em;
    color: #3b82f6;
    text-transform: uppercase;
    font-weight: 600;
    margin-top: -2px;
    line-height: 1.2;
}

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

.footer-description {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
    margin: 1.5rem 0;
}

.footer-social {
    display: flex;
    gap: 1rem;
    margin-top: 1.5rem;
}

.social-link {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 40px;
    height: 40px;
    background: var(--color-bg-secondary);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 8px;
    color: var(--color-text-secondary);
    transition: all 0.3s ease;
}

.social-link:hover {
    background: var(--color-accent);
    border-color: var(--color-accent);
    color: white;
    transform: translateY(-2px);
}

/* Footer Navigation */
.footer-nav,
.footer-services,
.footer-contact {
    display: flex;
    flex-direction: column;
}

.footer-title {
    font-size: 1rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 1.5rem;
    letter-spacing: 0.02em;
}

.footer-links {
    list-style: none;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.footer-link {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    position: relative;
}

.footer-link:hover {
    color: var(--color-accent);
    transform: translateX(4px);
}

.footer-link::before {
    content: '';
    position: absolute;
    left: -12px;
    top: 50%;
    transform: translateY(-50%);
    width: 4px;
    height: 4px;
    background: var(--color-accent);
    border-radius: 50%;
    opacity: 0;
    transition: all 0.3s ease;
}

.footer-link:hover::before {
    opacity: 1;
}

/* Contact Info */
.contact-info {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.contact-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: var(--color-text-secondary);
    font-size: 0.9rem;
}

.contact-item svg {
    color: var(--color-accent);
    flex-shrink: 0;
}

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(0, 0, 0, 0.06);
    padding-top: 2rem;
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.footer-bottom-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-copyright {
    color: var(--color-text-secondary);
    font-size: 0.85rem;
}

.footer-legal {
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
}

.legal-link {
    color: var(--color-text-secondary);
    text-decoration: none;
    font-size: 0.85rem;
    transition: color 0.3s ease;
}

.legal-link:hover {
    color: var(--color-accent);
}

.footer-bottom-badge {
    text-align: center;
    padding-top: 1rem;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.footer-bottom-badge span {
    color: var(--color-text-secondary);
    font-size: 0.8rem;
    font-style: italic;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1024px) {
    .container {
        padding: 0 1.5rem;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 3rem;
        text-align: center;
    }
    
    .hero-title {
        font-size: 2.5rem;
    }
    
    .problem-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr 1fr;
        gap: 2.5rem;
    }
    
    .footer-brand {
        grid-column: 1 / -1;
        text-align: center;
        max-width: none;
    }
}

@media (max-width: 768px) {
    .hero-title {
        font-size: 2rem;
    }
    
    .hero-stats {
        justify-content: center;
        gap: 1.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .benefits-grid,
    .solution-grid,
    .results-showcase,
    .pricing-grid,
    .cta-benefits,
    .booking-benefits {
        grid-template-columns: 1fr;
    }
    
    .solution-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .benefits-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .solution-header h2,
    .why-landing h2 {
        font-size: 2.2rem;
    }
    
    .solution-header p,
    .why-landing p {
        font-size: 1.1rem;
    }
    
    .countdown-timer {
        gap: 1rem;
    }
    
    .timer-item {
        padding: 1rem 0.75rem;
        min-width: 70px;
    }
    
    .urgency-benefits {
        flex-direction: column;
        gap: 1rem;
    }
    
    .footer-top {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-logo-section {
        margin-bottom: 50px;
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        text-align: center;
    }
    
    .footer-logo-main {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }

    .footer-logo-text {
        font-size: 2rem;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
    
    .footer-legal {
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .container {
        padding: 0 1rem;
    }
    
    .hero {
        padding-top: 0;
        margin-top: 65px;
        min-height: auto;
    }
    
    .footer-logo-section {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
        text-align: center;
    }
    
    .footer-logo-main {
        display: flex;
        justify-content: center;
        align-items: center;
        width: 100%;
    }
    
    .hero-content {
        gap: 0.75rem;
        padding: 1rem 0 1.5rem 0;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .btn {
        padding: 1rem 1rem;
        font-size: 0.95rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1rem;
    }
    
    .countdown-timer {
        flex-wrap: wrap;
        gap: 0.75rem;
    }
    
    .timer-item {
        flex: 1;
        min-width: 60px;
        padding: 0.75rem 0.5rem;
    }
    
    .footer {
        padding: 4rem 0 2rem;
    }
    
    .footer-container {
        padding: 0 1rem;
    }
    
    .footer-top {
        gap: 1.5rem;
    }
    
    .footer-social {
        justify-content: center;
    }
    
    .footer-legal {
        gap: 1rem;
    }
    
    .legal-link {
        font-size: 0.8rem;
    }
}

/* ============================================
   TESTIMONIALS SECTION
   ============================================ */

.testimonials-section {
    padding: 6rem 0;
    background: var(--color-bg-secondary);
    position: relative;
}

.testimonials-section h2 {
    font-size: 2.5rem;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 1rem;
    text-align: center;
    color: var(--color-text-primary);
}

.testimonials-section p {
    color: var(--color-text-secondary);
    font-size: 1.125rem;
    margin-bottom: 3rem;
    text-align: center;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

.testimonial-card {
    background: var(--color-bg-primary);
    border: 1px solid rgba(0, 0, 0, 0.08);
    border-radius: 16px;
    padding: 2rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.05);
}

.testimonial-card:hover {
    background: var(--color-bg-primary);
    transform: translateY(-4px);
    box-shadow: 0 20px 40px rgba(37, 99, 235, 0.1);
    border-color: rgba(37, 99, 235, 0.3);
}

.testimonial-content {
    margin-bottom: 1.5rem;
}

.testimonial-content p {
    color: var(--color-text-secondary);
    font-size: 0.95rem;
    line-height: 1.5;
    margin: 0;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

.testimonial-author strong {
    color: var(--color-text-primary);
    font-weight: 600;
    font-size: 1rem;
}

.testimonial-author span {
    color: var(--color-text-secondary);
    font-size: 0.875rem;
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-stars .star {
    color: #fbbf24;
    font-size: 1.125rem;
}

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

.testimonial-avatar {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    overflow: hidden;
    flex-shrink: 0;
}

.testimonial-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.testimonial-info {
    display: flex;
    flex-direction: column;
    gap: 0.25rem;
}

/* Responsive Design for Testimonials */
@media (max-width: 768px) {
    .testimonials-section h2 {
        font-size: 2rem;
    }
    
    .testimonials-section p {
        font-size: 1rem;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ============================================
   SCROLL ANIMATIONS
   ============================================ */

.fade-in-up {
    opacity: 0;
    transform: translateY(30px);
    transition: all 0.6s ease-out;
}

.fade-in-up.animate-in {
    opacity: 1;
    transform: translateY(0);
}

/* Animation delays for staggered effect */
.fade-in-up[data-delay="100"] {
    transition-delay: 0.1s;
}

.fade-in-up[data-delay="200"] {
    transition-delay: 0.2s;
}

.fade-in-up[data-delay="300"] {
    transition-delay: 0.3s;
}

.fade-in-up[data-delay="400"] {
    transition-delay: 0.4s;
}

.fade-in-up[data-delay="500"] {
    transition-delay: 0.5s;
}

/* ============================================
   HERO SECTION ANIMATIONS
   ============================================ */

.hero-title-animated {
    opacity: 0;
    transform: translateY(50px);
    animation: heroTitleAppear 1.2s ease-out forwards;
    animation-delay: 0.3s;
}

.hero-subtitle-animated {
    opacity: 0;
    transform: translateY(30px);
    animation: heroDescriptionAppear 1s ease-out forwards;
    animation-delay: 0.6s;
}

.hero-description-animated {
    opacity: 0;
    transform: translateY(30px);
    animation: heroDescriptionAppear 1s ease-out forwards;
    animation-delay: 0.8s;
}

.hero-button-animated {
    opacity: 0;
    transform: translateY(20px) scale(0.95);
    animation: heroButtonAppear 0.8s ease-out forwards;
    animation-delay: 1.2s;
}

.hero-image-animated {
    opacity: 0;
    transform: translateX(50px) scale(0.9);
    animation: heroImageAppear 1s ease-out forwards;
    animation-delay: 0.9s;
}

.hero-separator-animated {
    opacity: 0;
    transform: translateY(20px);
    animation: heroSeparatorAppear 0.8s ease-out forwards;
    animation-delay: 1.0s;
}

.hero-guarantee-animated {
    opacity: 0;
    transform: translateY(20px);
    animation: heroGuaranteeAppear 0.8s ease-out forwards;
    animation-delay: 1.4s;
}

@keyframes heroTitleAppear {
    0% {
        opacity: 0;
        transform: translateY(50px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroDescriptionAppear {
    0% {
        opacity: 0;
        transform: translateY(30px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroButtonAppear {
    0% {
        opacity: 0;
        transform: translateY(20px) scale(0.95);
    }
    100% {
        opacity: 1;
        transform: translateY(0) scale(1);
    }
}

@keyframes heroImageAppear {
    0% {
        opacity: 0;
        transform: translateX(50px) scale(0.9);
    }
    100% {
        opacity: 1;
        transform: translateX(0) scale(1);
    }
}

@keyframes heroSeparatorAppear {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

@keyframes heroGuaranteeAppear {
    0% {
        opacity: 0;
        transform: translateY(20px);
    }
    100% {
        opacity: 1;
        transform: translateY(0);
    }
}

/* ============================================
   PHONE ICON ANIMATION
   ============================================ */

.phone-icon {
    transition: all 0.3s ease;
    transform-origin: center;
}

.btn:hover .phone-icon {
    animation: phoneRing 0.6s ease-in-out;
    transform: scale(1.1);
}

@keyframes phoneRing {
    0%, 100% {
        transform: scale(1.1) rotate(0deg);
    }
    25% {
        transform: scale(1.2) rotate(-5deg);
    }
    75% {
        transform: scale(1.2) rotate(5deg);
    }
}

/* Animation pour les boutons secondaires */
.btn-secondary:hover .phone-icon {
    color: var(--color-accent);
    animation: phoneRing 0.6s ease-in-out;
}

/* Animation pour les boutons primaires */
.btn-primary:hover .phone-icon {
    color: var(--color-white);
    animation: phoneRing 0.6s ease-in-out;
}

/* ============================================
   CTA NOTES STYLING
   ============================================ */

.cta-note {
    color: var(--color-success) !important;
    font-weight: 500;
}

/* ============================================
   SOLUTION CTA STYLING
   ============================================ */

.solution-cta {
    margin-top: 4rem;
    text-align: center;
}

.solution-cta-content {
    max-width: 600px;
    margin: 0 auto;
}

.solution-cta-content h3 {
    font-size: 2rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 1rem;
}

.solution-cta-content p {
    font-size: 1.125rem;
    color: var(--color-text-secondary);
    margin-bottom: 2rem;
    line-height: 1.6;
}

.solution-cta-button {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 1rem;
    font-size: 1rem;
    font-weight: 600;
    background: var(--gradient-primary);
    color: var(--color-white);
    border: none;
    border-radius: 12px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 10px 30px rgba(91, 91, 214, 0.3);
}

.solution-cta-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(91, 91, 214, 0.4);
}

/* ============================================
   HERO BUTTON ANIMATIONS
   ============================================ */

.hero-button {
    transition: all 0.3s ease;
}

.hero-button:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(91, 91, 214, 0.4);
}

/* Animation de l'icône flèche au survol */
.hero-button:hover .arrow-icon {
    animation: arrowBounce 0.6s ease-in-out;
    transform: translateX(3px);
}

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

/* Animation de l'icône flèche pour tous les boutons */
.btn:hover .arrow-icon {
    animation: arrowBounce 0.6s ease-in-out;
    transform: translateX(3px);
}

/* ============================================
   CAL.COM POPUP STYLING
   ============================================ */

.cal-popup-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.8);
    backdrop-filter: blur(10px);
    z-index: 9999;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 2rem;
    animation: popupFadeIn 0.3s ease-out;
}

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

.cal-popup-container {
    background: #1a1a1a;
    border-radius: 16px;
    width: 100%;
    max-width: 800px;
    max-height: 90vh;
    overflow: hidden;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.5);
    animation: popupSlideIn 0.3s ease-out;
}

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

.cal-popup-close-overlay {
    position: absolute;
    top: 2rem;
    right: 2rem;
    background: none;
    border: none;
    width: 24px;
    height: 24px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 10000;
}

.cal-popup-close-overlay:hover {
    transform: scale(1.1);
    opacity: 0.8;
}



.cal-popup-container iframe {
    border: none;
    border-radius: 16px;
    width: 100%;
    height: 600px;
}

/* Responsive */
@media (max-width: 768px) {
    .cal-popup-overlay {
        padding: 1rem;
    }
    
    .cal-popup-container {
        max-height: 95vh;
    }
    
    .cal-popup-close-overlay {
        top: 1rem;
        right: 1rem;
        width: 20px;
        height: 20px;
    }
    
    .cal-popup-container iframe {
        height: 500px;
    }
}
