/* TECHNOLOGYPRO - ULTRA MODERNE & PROFESSIONNEL */

@import url('https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700;800;900&family=Plus+Jakarta+Sans:wght@300;400;500;600;700;800&display=swap');

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

:root {
    --primary: #7c3aed;
    --primary-light: #a78bfa;
    --secondary: #ec4899;
    --accent: #0ea5e9;
    --success: #10b981;
    --danger: #ef4444;
    --dark: #0f172a;
    --light: #f8fafc;
    --gray-50: #f9fafb;
    --gray-100: #f3f4f6;
    --gray-200: #e5e7eb;
    --gray-300: #d1d5db;
    --gray-400: #9ca3af;
    --gray-500: #6b7280;
    --gray-600: #4b5563;
    --gray-700: #374151;
    --text-primary: #1f2937;
    --text-secondary: #6b7280;
}

body {
    font-family: 'Inter', 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    color: var(--text-primary);
    background: white;
    line-height: 1.6;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
}

html {
    scroll-behavior: smooth;
}


/* ===== HEADER & NAVIGATION ===== */
.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    height: 76px;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.header.scrolled {
    background: rgba(255, 255, 255, 0.85);
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border-bottom: 1px solid rgba(0, 0, 0, 0.1);
}

.navbar {
    height: 76px;
    display: flex;
    align-items: center;
    padding: 0 3rem;
    max-width: 1400px;
    margin: 0 auto;
}

.nav-container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
}

.logo {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    text-decoration: none;
    transition: all 0.3s ease;
    letter-spacing: -0.5px;
}

.logo:hover {
    transform: scale(1.05);
}

.logo-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.4rem;
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
    transition: all 0.3s ease;
}

.logo:hover .logo-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(124, 58, 237, 0.4);
}

.nav-menu {
    display: flex;
    gap: 0.5rem;
    align-items: center;
}

.whatsapp-float {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    text-decoration: none;
    box-shadow: 0 4px 20px rgba(37, 211, 102, 0.4);
    z-index: 1000;
    transition: all 0.3s ease;
}

.whatsapp-float:hover {
    background: #128C7E;
    transform: scale(1.1);
    box-shadow: 0 6px 25px rgba(37, 211, 102, 0.5);
}

.whatsapp-float i {
    font-size: 1.8rem;
    animation: pulse 2s infinite;
}

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

.nav-link {
    color: var(--text-secondary);
    text-decoration: none;
    font-weight: 500;
    font-size: 0.95rem;
    transition: all 0.3s ease;
    padding: 8px 14px;
    border-radius: 8px;
    position: relative;
}

.nav-link::before {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: right;
    transition: transform 0.3s ease;
}

.nav-link:hover {
    color: var(--primary);
    background: rgba(124, 58, 237, 0.05);
}

.nav-link:hover::before {
    transform: scaleX(1);
    transform-origin: left;
}

.nav-link.active {
    color: var(--primary);
    background: rgba(124, 58, 237, 0.1);
}

.nav-link.active::before {
    transform: scaleX(1);
}

/* ===== HERO SECTION ===== */
.hero {
    margin-top: 76px;
    min-height: 100vh;
    display: flex;
    align-items: center;
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 50%, #334155 100%);
    color: white;
    position: relative;
    overflow: hidden;
}

.hero::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 80 80"><defs><pattern id="grid" width="40" height="40" patternUnits="userSpaceOnUse"><path d="M 40 0 L 0 0 0 40" fill="none" stroke="rgba(255,255,255,0.03)" stroke-width="1"/></pattern></defs><rect width="80" height="80" fill="url(%23grid)"/></svg>');
    opacity: 0.4;
    pointer-events: none;
}

.hero::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 300%;
    height: 300%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.08) 0%, transparent 70%);
    animation: heroGlow 20s ease-in-out infinite;
    pointer-events: none;
}

@keyframes heroGlow {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(-30px, 30px) scale(1.1);
    }
}

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

.hero-content {
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.brand-title {
    font-size: 3.8rem;
    font-weight: 900;
    line-height: 1.15;
    margin-bottom: 1.5rem;
    color: white;
    letter-spacing: -1.5px;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.1s backwards;
}

.hero-accent {
    background: linear-gradient(135deg, #60a5fa, #a78bfa, #ec4899, #f43f5e);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShift 4s ease-in-out infinite;
}

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

.hero-sub {
    font-size: 1.4rem;
    font-weight: 400;
    margin-bottom: 1.5rem;
    color: rgba(255, 255, 255, 0.88);
    line-height: 1.6;
    letter-spacing: -0.3px;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.2s backwards;
}

.hero-bullets {
    font-size: 1rem;
    margin-bottom: 2.5rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 500;
    display: flex;
    gap: 2rem;
    flex-wrap: wrap;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.3s backwards;
}

.hero-bullets::before {
    content: '✓ ';
    color: var(--accent);
    font-weight: 800;
}

.cta-row {
    display: flex;
    gap: 1.2rem;
    flex-wrap: nowrap;
    align-items: center;
    justify-content: flex-start;
    animation: fadeInUp 1s cubic-bezier(0.4, 0, 0.2, 1) 0.4s backwards;
    width: 100%;
}

.btn {
    padding: 1rem 2.2rem;
    border-radius: 12px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.7rem;
    font-size: 1rem;
    border: none;
    cursor: pointer;
    position: relative;
    overflow: hidden;
    height: 50px;
    white-space: nowrap;
    text-align: center;
    flex-shrink: 0;
}

.btn-small {
    padding: 0.6rem 1.2rem;
    font-size: 0.85rem;
    height: 38px;
    border-radius: 8px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    transition: all 0.3s ease;
    color: white;
}

.btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.25), transparent);
    transition: left 0.7s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.btn-cta-gradient {
    background: linear-gradient(135deg, #7c3aed 0%, #667eea 100%);
    color: white;
    box-shadow: 0 12px 30px rgba(124, 58, 237, 0.35);
}

.btn-cta-gradient:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 50px rgba(124, 58, 237, 0.45);
    background: linear-gradient(135deg, #667eea 0%, #5a67d8 100%);
}

.btn-subscribe {
    background: linear-gradient(135deg, #ec4899 0%, #f87171 100%);
    color: white;
    box-shadow: 0 12px 30px rgba(236, 72, 153, 0.35);
}

.btn-subscribe:hover {
    transform: translateY(-4px) scale(1.05);
    box-shadow: 0 20px 50px rgba(236, 72, 153, 0.45);
    background: linear-gradient(135deg, #f87171 0%, #fb7185 100%);
}

.btn-ghost {
    background: rgba(255, 255, 255, 0.08);
    color: white;
    border: 1.5px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    box-shadow: 0 8px 20px rgba(0, 0, 0, 0.15);
}

.btn-ghost:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-4px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.25);
    color: white;
}

.hero-image {
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    height: 400px;
}

.hero-image::before {
    content: '';
    position: absolute;
    width: 300px;
    height: 300px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(124, 58, 237, 0.12) 0%, transparent 70%);
    animation: float 8s ease-in-out infinite;
    filter: blur(40px);
}

.hero-image::after {
    content: '';
    position: absolute;
    width: 250px;
    height: 250px;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.1) 0%, transparent 70%);
    animation: float 10s ease-in-out infinite reverse;
    filter: blur(40px);
}

.hero-image i {
    font-size: 12rem;
    opacity: 0.15;
    position: relative;
    z-index: 1;
    color: white;
    animation: heroIconFloat 6s ease-in-out infinite;
}

@keyframes heroIconFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
    }
    50% {
        transform: translateY(-20px) scale(1.05);
    }
}

@keyframes float {
    0%, 100% { 
        transform: translateY(0) scale(1); 
    }
    50% { 
        transform: translateY(-30px) scale(1.1); 
    }
}

/* ===== SECTIONS ===== */
section {
    padding: 4rem 2rem;
}

.section-title {
    font-size: 2.8rem;
    font-weight: 800;
    text-align: center;
    margin-bottom: 1rem;
    color: var(--primary);
    letter-spacing: 1px;
    text-transform: uppercase;
    position: relative;
    padding-bottom: 1rem;
    font-family: 'Plus Jakarta Sans', 'Inter', sans-serif;
}

.section-title::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 2px;
}

.section-subtitle {
    text-align: center;
    color: var(--text-secondary);
    font-size: 1rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

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

/* ===== SERVICES SECTION ===== */
.services {
    background: linear-gradient(135deg, #f8fafc 0%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="30" height="30" patternUnits="userSpaceOnUse"><circle cx="15" cy="15" r="1.5" fill="rgba(59, 130, 246, 0.06)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 1;
    pointer-events: none;
}

.services-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1400px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.service-card {
    background: white;
    padding: 1.8rem 1.5rem;
    border-radius: 16px;
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.06);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
    height: 100%;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s ease;
}

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

.service-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 15px 40px rgba(124, 58, 237, 0.15);
    border-color: rgba(124, 58, 237, 0.2);
}

.service-icon {
    width: 56px;
    height: 56px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.6rem;
    margin-bottom: 1.5rem;
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.25);
    transition: all 0.4s ease;
}

.service-card:hover .service-icon {
    transform: scale(1.1) rotate(5deg);
    box-shadow: 0 12px 30px rgba(124, 58, 237, 0.35);
}

.service-card h3 {
    font-size: 1.3rem;
    margin-bottom: 0.8rem;
    color: var(--text-primary);
    font-weight: 700;
    letter-spacing: -0.3px;
}

.service-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
    font-weight: 400;
}

/* ===== PRICING SECTION ===== */
.pricing {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    position: relative;
    overflow: hidden;
    padding: 2rem 2rem;
}

.pricing-grid {
    display: flex;
    gap: 1.5rem;
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    align-items: stretch;
    justify-content: center;
}

.pricing-card {
    background: white;
    padding: 2rem 1.5rem;
    border-radius: 20px;
    border: 2px solid rgba(124, 58, 237, 0.1);
    transition: all 0.3s ease;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    height: 750px;
    width: 300px;
    box-shadow: 0 10px 30px rgba(124, 58, 237, 0.08);
}

.pricing-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(135deg, var(--primary), var(--secondary));
}

.pricing-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(124, 58, 237, 0.15);
    border-color: rgba(124, 58, 237, 0.3);
}

.pricing-card.featured {
    background: linear-gradient(135deg, #7c3aed 0%, #667eea 100%);
    color: white;
    border: 2px solid transparent;
    box-shadow: 0 15px 35px rgba(124, 58, 237, 0.25);
    transform: scale(1.05);
    position: relative;
    z-index: 10;
    height: 800px;
}

.pricing-card.featured::after {
    content: 'POPULAIRE';
    position: absolute;
    top: 12px;
    right: -28px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    padding: 0.3rem 2rem;
    font-size: 0.65rem;
    font-weight: 900;
    transform: rotate(45deg);
    backdrop-filter: blur(10px);
    letter-spacing: 1px;
}

.pricing-header {
    text-align: center;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid rgba(124, 58, 237, 0.1);
}

.pricing-card h3 {
    font-size: 1.3rem;
    font-weight: 800;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.price {
    font-size: 2.5rem;
    font-weight: 900;
    color: var(--primary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: baseline;
    justify-content: center;
}

.price-period {
    font-size: 0.9rem;
    font-weight: 400;
    opacity: 0.7;
    margin-left: 0.3rem;
}

.pricing-card p {
    font-size: 0.95rem;
    opacity: 0.8;
    margin-bottom: 0;
    font-style: italic;
}

.pricing-features {
    list-style: none;
    padding: 0;
    margin: 1rem 0;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.pricing-features li {
    font-size: 0.85rem;
    font-weight: 500;
    margin-bottom: 0.6rem;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.8rem;
}

.pricing-features li i {
    color: var(--primary);
    font-size: 0.8rem;
    flex-shrink: 0;
}

.pricing-card.featured h3 {
    color: white;
    font-size: 1.4rem;
}

.pricing-card.featured .price {
    color: white;
}

.pricing-card.featured .price-period {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-card.featured p {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-card.featured .pricing-features {
    margin: 0.6rem 0;
}

.pricing-card.featured .pricing-features li {
    margin-bottom: 0.4rem;
    color: white;
}

.pricing-card.featured .pricing-features li i {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-price {
    font-size: 2rem;
    font-weight: 900;
    margin-bottom: 0.4rem;
    color: var(--text-primary);
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.2rem;
    letter-spacing: -1px;
}

.pricing-card.featured .pricing-price {
    color: white;
}

.pricing-price .currency {
    font-size: 1.2rem;
    font-weight: 700;
}

.pricing-price .period {
    font-size: 0.85rem;
    font-weight: 500;
    opacity: 0.8;
    color: var(--text-secondary);
}

.pricing-card.featured .pricing-price .period {
    color: rgba(255, 255, 255, 0.8);
}

.pricing-features {
    list-style: none;
    margin-bottom: 1rem;
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

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

.pricing-features li::before {
    content: '✓';
    display: flex;
    align-items: center;
    justify-content: center;
    width: 18px;
    height: 18px;
    background: linear-gradient(135deg, #10b981, #059669);
    color: white;
    border-radius: 50%;
    font-size: 0.6rem;
    font-weight: 900;
    flex-shrink: 0;
}

.pricing-card.featured .pricing-features li {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-card.featured .pricing-features li::before {
    background: rgba(255, 255, 255, 0.3);
    box-shadow: 0 4px 12px rgba(255, 255, 255, 0.2);
}

.pricing-cta {
    width: 100%;
    padding: 1rem 0;
    margin-top: auto;
    border: none;
    display: flex;
    justify-content: center;
    align-items: center;
    border-radius: 8px;
    font-weight: 700;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    font-size: 0.8rem;
    position: relative;
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 0.6px;
}

.pricing-card:not(.featured) .pricing-cta {
    background: linear-gradient(135deg, #7c3aed, #667eea);
    color: white;
    box-shadow: 0 8px 20px rgba(124, 58, 237, 0.3);
}

.pricing-card:not(.featured) .pricing-cta:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(124, 58, 237, 0.4);
    background: linear-gradient(135deg, #667eea, #5a67d8);
}

.pricing-card.featured .pricing-cta {
    background: rgba(255, 255, 255, 0.2);
    color: white;
    font-weight: 800;
    border: 1.5px solid rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.pricing-card.featured .pricing-cta:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
    box-shadow: 0 12px 30px rgba(255, 255, 255, 0.2);
}

/* ===== ABOUT SECTION ===== */
.about {
    background: linear-gradient(135deg, #ffffff 0%, #f9fafb 100%);
    padding: 6rem 2rem;
}

.about-content {
    max-width: 1000px;
    margin: 0 auto;
    background: white;
    padding: 3.5rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 10px 40px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.05);
    position: relative;
    overflow: hidden;
}

.about-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary), var(--secondary), var(--accent));
}

.about-content p {
    font-size: 1.25rem;
    line-height: 1.8;
    color: var(--text-primary);
    font-weight: 500;
}

/* ===== FOOTER ===== */
.footer {
    background: linear-gradient(135deg, #0f172a 0%, #1e293b 100%);
    color: white;
    padding: 4rem 2rem;
    position: relative;
}

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

.footer-section h3 {
    font-size: 1.1rem;
    margin-bottom: 1.5rem;
    color: white;
    font-weight: 700;
    letter-spacing: -0.3px;
}

.footer-section p {
    opacity: 0.75;
    line-height: 1.7;
    font-size: 0.95rem;
    color: white;
}

.footer-logo {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-bottom: 1.5rem;
}

.footer-logo i {
    font-size: 2.5rem;
    color: var(--primary);
    background: rgba(255, 255, 255, 0.1);
    padding: 1rem;
    border-radius: 50%;
    transition: all 0.3s ease;
}

.footer-logo:hover i {
    transform: scale(1.1);
    color: white;
    background: var(--primary);
}

.payment-methods {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 1rem;
}

.payment-methods i {
    font-size: 1.8rem;
    color: rgba(255, 255, 255, 0.8);
    background: rgba(255, 255, 255, 0.1);
    padding: 0.8rem;
    border-radius: 8px;
    transition: all 0.3s ease;
}

.payment-methods i:hover {
    color: white;
    background: var(--primary);
    transform: translateY(-3px);
}

.security-badges {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1rem;
}

.security-item {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 0.8rem;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    transition: all 0.3s ease;
}

.security-item i {
    color: var(--accent);
    font-size: 1.2rem;
    flex-shrink: 0;
}

.security-item span {
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.85rem;
    font-weight: 500;
}

.security-item:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateX(5px);
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-image {
        height: 300px;
    }
    
    .services-grid,
    .pricing-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    .navbar {
        padding: 0 1.5rem;
    }
    
    .brand-title {
        font-size: 2.5rem;
    }
    
    .hero-sub {
        font-size: 1.1rem;
    }
    
    .cta-row {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }
    
    .btn {
        width: 100%;
        max-width: none;
    }
    
    .hero-container {
        padding: 0 1.5rem;
    }
    
    .services-grid,
    .pricing-grid {
        grid-template-columns: 1fr;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .about-content {
        padding: 2rem;
    }
    
    section {
        padding: 4rem 1.5rem;
    }
}

/* ADVANTAGES SECTION */
.advantages {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.advantages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(59, 130, 246, 0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.advantages-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    justify-content: space-between;
    align-items: stretch;
}

.advantage-item {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
    flex: 1;
    min-width: 250px;
    max-width: 280px;
}

.advantage-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    transition: all 0.4s ease;
}

.advantage-item:hover {
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(59, 130, 246, 0.2);
    border-color: #3b82f6;
}

.advantage-item:hover::before {
    height: 6px;
    background: linear-gradient(135deg, #667eea, #764ba2);
}

.advantage-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: white;
    transition: all 0.4s ease;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.3);
}

.advantage-item:hover .advantage-icon {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, #667eea, #764ba2);
    box-shadow: 0 15px 35px rgba(102, 126, 234, 0.4);
}

.advantage-item h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
    transition: all 0.3s ease;
}

.advantage-item:hover h3 {
    color: #3b82f6;
}

.advantage-item p {
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
}

/* ABOUT SECTION */
.about {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(59, 130, 246, 0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.about::after {
    content: '';
    position: absolute;
    top: -50%;
    right: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.03) 0%, transparent 70%);
    animation: float 20s ease-in-out infinite;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(30px, -30px) rotate(120deg);
    }
    66% {
        transform: translate(-20px, 20px) rotate(240deg);
    }
}

.about-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.about-content {
    background: white;
    padding: 4rem;
    border-radius: 30px;
    text-align: center;
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.15);
    position: relative;
    overflow: hidden;
    border: 2px solid rgba(59, 130, 246, 0.1);
}

.about-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 6px;
    background: linear-gradient(90deg, #3b82f6, #60a5fa, #a5b4fc, #3b82f6);
    background-size: 300% 100%;
    animation: gradientFlow 3s ease-in-out infinite;
}

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

.about-content p {
    font-size: 1.3rem;
    line-height: 1.8;
    color: #1f2937;
    margin-bottom: 3rem;
    font-weight: 500;
    position: relative;
    z-index: 2;
}

.about-content p::before {
    content: '"';
    position: absolute;
    top: -20px;
    left: -20px;
    font-size: 4rem;
    color: #3b82f6;
    opacity: 0.1;
    font-family: Georgia, serif;
}

.about-content p::after {
    content: '"';
    position: absolute;
    bottom: -40px;
    right: -20px;
    font-size: 4rem;
    color: #3b82f6;
    opacity: 0.1;
    font-family: Georgia, serif;
}

.about-dots {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.dot {
    width: 16px;
    height: 16px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    animation: pulse 2s ease-in-out infinite;
    cursor: pointer;
    transition: all 0.4s ease;
    box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
}

.dot:hover {
    transform: scale(1.3);
    box-shadow: 0 8px 25px rgba(59, 130, 246, 0.5);
}

.dot:nth-child(2) {
    animation-delay: 0.5s;
}

.dot:nth-child(3) {
    animation-delay: 1s;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.7;
        box-shadow: 0 4px 15px rgba(59, 130, 246, 0.3);
    }
    50% {
        transform: scale(1.2);
        opacity: 1;
        box-shadow: 0 8px 25px rgba(59, 130, 246, 0.6);
    }
}

/* TESTIMONIALS SECTION */
.testimonials {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.testimonials::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(102, 126, 234, 0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.testimonials-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.testimonials-list {
    margin-bottom: 3rem;
}

.testimonials-page {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s ease;
    position: absolute;
    width: 100%;
}

.testimonials-page.active {
    opacity: 1;
    transform: translateY(0);
    position: relative;
}

.testimonials-page blockquote {
    background: white;
    padding: 2rem;
    border-radius: 20px;
    border-left: 4px solid #3b82f6;
    font-style: italic;
    font-size: 1.1rem;
    line-height: 1.6;
    color: #475569;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.1);
    transition: all 0.4s ease;
    position: relative;
}

.testimonials-page blockquote::before {
    content: '"';
    position: absolute;
    top: 10px;
    left: 15px;
    font-size: 3rem;
    color: #3b82f6;
    opacity: 0.2;
}

.testimonials-page blockquote:hover {
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.2);
    border-left-color: #667eea;
}

/* PAGINATION MODERN */
.pagination-modern {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.pagination-btn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 1.5rem;
    background: white;
    border: 2px solid #e2e8f0;
    border-radius: 12px;
    color: #64748b;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.4s ease;
    font-size: 0.9rem;
}

.pagination-btn:hover:not(:disabled) {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    color: white;
    border-color: #3b82f6;
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.pagination-btn:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-dots {
    display: flex;
    gap: 1rem;
}

.pagination-dot {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    border: 2px solid #e2e8f0;
    background: white;
    cursor: pointer;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: center;
}

.pagination-dot:hover {
    border-color: #3b82f6;
    transform: scale(1.1);
}

.pagination-dot.active {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    border-color: #3b82f6;
    transform: scale(1.15);
}

.dot-inner {
    color: white;
    font-weight: 700;
    font-size: 0.9rem;
}

.pagination-dot:not(.active) .dot-inner {
    color: #64748b;
}

/* FAQ SECTION */
.faq {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(59, 130, 246, 0.05)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.faq-list {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq details {
    background: white;
    border-radius: 15px;
    margin-bottom: 1rem;
    overflow: hidden;
    box-shadow: 0 5px 15px rgba(59, 130, 246, 0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.faq details:hover {
    border-color: #3b82f6;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.2);
}

.faq summary {
    padding: 1.5rem 2rem;
    font-size: 1.1rem;
    font-weight: 600;
    color: #1f2937;
    cursor: pointer;
    list-style: none;
    position: relative;
    transition: all 0.4s ease;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.faq summary::before {
    content: '+';
    font-size: 1.5rem;
    color: #3b82f6;
    font-weight: 700;
    transition: all 0.4s ease;
}

.faq details[open] summary::before {
    content: '−';
    transform: rotate(180deg);
}

.faq details[open] summary {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    color: white;
}

.faq details[open] summary::before {
    color: white;
}

.faq p {
    padding: 0 2rem 1.5rem;
    color: #64748b;
    line-height: 1.6;
    font-size: 1rem;
}

/* CONTACT SECTION */
.contact {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%);
    position: relative;
    overflow: hidden;
}

.contact::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="dots" width="20" height="20" patternUnits="userSpaceOnUse"><circle cx="10" cy="10" r="1" fill="rgba(59, 130, 246, 0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
    opacity: 0.5;
    pointer-events: none;
}

.contact-container {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
    align-items: start;
}

.contact-form-section {
    background: white;
    padding: 3rem;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.2);
    position: relative;
    overflow: hidden;
}

.contact-form-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(135deg, #3b82f6, #60a5fa, #a5b4fc);
}

.contact-form-section h3 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #1f2937;
}

.contact-form-section p {
    color: #64748b;
    line-height: 1.6;
    margin-bottom: 2rem;
}

.declaration-button-container {
    text-align: center;
    margin-bottom: 2rem;
}

.btn-large {
    padding: 1.2rem 2.5rem;
    font-size: 1.1rem;
    border-radius: 15px;
}

.feature-grid-compact {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1rem;
}

.feature-card-compact {
    display: flex;
    align-items: center;
    gap: 0.8rem;
    padding: 1rem;
    background: linear-gradient(135deg, #f8fafc, #e2e8f0);
    border-radius: 12px;
    transition: all 0.4s ease;
}

.feature-card-compact:hover {
    background: linear-gradient(135deg, #3b82f6, #60a5fa);
    color: white;
    transform: translateY(-3px);
    box-shadow: 0 8px 20px rgba(59, 130, 246, 0.3);
}

.feature-card-compact i {
    font-size: 1.2rem;
    color: #3b82f6;
    transition: all 0.4s ease;
}

.feature-card-compact:hover i {
    color: white;
}

.feature-card-compact span {
    font-weight: 600;
    font-size: 0.9rem;
    color: #64748b;
    transition: all 0.4s ease;
}

.feature-card-compact:hover span {
    color: white;
}

.contact-info-section {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.info-item {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    padding: 2rem;
    background: white;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(59, 130, 246, 0.1);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.info-item:hover {
    border-color: #3b82f6;
    transform: translateY(-5px);
    box-shadow: 0 15px 35px rgba(59, 130, 246, 0.2);
}

.info-item i {
    font-size: 2rem;
    color: #3b82f6;
    width: 50px;
    text-align: center;
}

.info-item strong {
    color: #1f2937;
    font-size: 1.1rem;
    display: block;
    margin-bottom: 0.5rem;
}

.info-item p {
    color: #64748b;
    line-height: 1.5;
    margin: 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    .advantages-grid {
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }
    
    .advantage-item {
        max-width: 100%;
        min-width: auto;
    }
    
    .pricing-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
    }
    
    .pricing-card.featured {
        transform: scale(1);
    }
    
    .testimonials-page {
        grid-template-columns: 1fr;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .feature-grid-compact {
        grid-template-columns: 1fr;
    }
    
    .pagination-modern {
        flex-direction: column;
        gap: 1rem;
    }
    
    .advantage-item,
    .about-content,
    .testimonials-page blockquote,
    .faq details,
    .contact-form-section,
    .info-item {
        padding: 1.5rem;
    }
}

/* ===== RÉPONSE COMPLÈTE MOBILE & RESPONSIVE ===== */
@media (max-width: 1024px) {
    /* Hero et navbar */
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .hero-image {
        height: 300px;
    }

    .services-grid,
    .pricing-grid,
    .advantages-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
    }
}

@media (max-width: 768px) {
    /* Barre de menu visible et au-dessus */
    .header {
        background: rgba(255, 255, 255, 0.95);
        z-index: 2000;
    }

    .navbar {
        padding: 0 1.5rem;
    }

    .brand-title {
        font-size: 2.5rem;
    }

    .hero-sub {
        font-size: 1.1rem;
    }

    .cta-row {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
    }

    .btn {
        width: 100%;
        max-width: none;
    }

    .hero-container {
        padding: 0 1.5rem;
    }

    /* Formules / Pricing cards verticales */
    .pricing-grid {
        display: flex !important;
        flex-direction: column !important;
        align-items: center;
        gap: 1.5rem;
    }

    .pricing-card {
        width: 90% !important;
        max-width: 350px;
    }

    /* Services et avantages vertical */
    .services-grid,
    .advantages-grid {
        display: flex !important;
        flex-direction: column;
        align-items: center;
        gap: 1.5rem;
    }

    /* Footer responsive */
    .footer-content {
        grid-template-columns: 1fr;
        text-align: center;
    }

    /* About content responsive */
    .about-content {
        padding: 2rem;
    }

    /* Sections padding */
    section {
        padding: 4rem 1.5rem;
    }
}

/* ===== GRAND ÉCRAN - cartes horizontales ===== */
@media (min-width: 769px) {
    .pricing-grid {
        display: flex;
        flex-direction: row;
        justify-content: center;
        align-items: flex-start;
        gap: 1.5rem;
    }

    .pricing-card {
        width: 300px;
    }

    .services-grid,
    .advantages-grid {
        display: grid;
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
}

/* ===== RESPONSIVE NAVIGATION MOBILE ===== */
@media (max-width: 768px) {
    .nav-menu {
        display: none; /* cache le menu par défaut */
        flex-direction: column;
        gap: 1rem;
        background: rgba(255, 255, 255, 0.95);
        position: absolute;
        top: 76px; /* juste en dessous de la barre */
        left: 0;
        width: 100%;
        padding: 1rem 2rem;
        border-top: 1px solid rgba(0,0,0,0.1);
        box-shadow: 0 8px 20px rgba(0,0,0,0.1);
        z-index: 999;
    }

    .nav-menu.show {
        display: flex; /* affiché quand on ajoute la classe .show */
    }

    .navbar {
        justify-content: space-between;
    }

    /* Le menu contact passe dans le menu pour mobile */
    .nav-container > a.nav-link {
        display: none; 
    }

    /* Optionnel : cursor pour indiquer qu'on peut cliquer */
    .logo {
        cursor: pointer;
    }
}

/* ===== ALIGNEMENT SERVICES ET AVANTAGES ===== */
.services-grid,
.advantages-grid {
    display: flex;
    flex-wrap: wrap;
    gap: 2rem;
    justify-content: space-between;
}

.service-card,
.advantage-item {
    flex: 1 1 250px; /* Chaque carte prend au moins 250px, mais reste flexible */
    max-width: 300px; /* Maximum pour ne pas trop étirer */
    box-sizing: border-box;
}

/* Responsive mobile */
@media (max-width: 768px) {
    .services-grid,
    .advantages-grid {
        flex-direction: column;
        align-items: center;
    }

    .service-card,
    .advantage-item {
        flex: 1 1 100%;
        max-width: 100%;
    }
}

