/* ==========================================================================
   AGENCE PEZS - STYLES CSS
   Design professionnel pour agence web locale
   ========================================================================== */

:root {
    /* Couleurs principales */
    --color-primary: #2563eb;        /* Bleu professionnel */
    --color-primary-dark: #1e40af;
    --color-secondary: #f97316;       /* Orange accent */
    --color-secondary-dark: #ea580c;
    --color-success: #10b981;
    --color-dark: #0f172a;
    --color-dark-2: #1e293b;
    --color-gray: #64748b;
    --color-light: #f8fafc;
    --color-white: #ffffff;
    
    /* Typographie */
    --font-primary: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    --font-heading: 'Poppins', sans-serif;
    
    /* Spacing */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 2rem;
    --spacing-lg: 4rem;
    --spacing-xl: 6rem;
    
    /* Transitions */
    --transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    
    /* Shadows */
    --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);
}

/* ==========================================================================
   RESET & BASE
   ========================================================================== */

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

html {
    scroll-behavior: smooth;
    font-size: 16px;
}

body {
    font-family: var(--font-primary);
    color: var(--color-dark);
    background-color: var(--color-white);
    line-height: 1.6;
    overflow-x: hidden;
}

img {
    max-width: 100%;
    height: auto;
    display: block;
}

a {
    text-decoration: none;
    color: inherit;
    transition: var(--transition);
}

ul {
    list-style: none;
}

/* ==========================================================================
   UTILITIES
   ========================================================================== */

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 var(--spacing-md);
}

.gradient-text {
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* ==========================================================================
   HEADER
   ========================================================================== */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: var(--shadow-md);
    z-index: 1000;
    transition: var(--transition);
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 1rem 0;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--color-dark);
}

.logo i {
    color: var(--color-primary);
    font-size: 1.75rem;
}

.logo strong {
    color: var(--color-secondary);
}

.nav-list {
    display: flex;
    gap: 2rem;
    align-items: center;
}

.nav-link {
    font-weight: 500;
    color: var(--color-gray);
    padding: 0.5rem 0;
    position: relative;
}

.nav-link:hover,
.nav-link:focus {
    color: var(--color-primary);
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--color-primary);
    transition: width 0.3s ease;
}

.nav-link:hover::after {
    width: 100%;
}

.nav-social {
    font-size: 1.5rem;
    color: var(--color-secondary);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    gap: 0.4rem;
    background: none;
    border: none;
    cursor: pointer;
    padding: 0.5rem;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: var(--color-dark);
    border-radius: 3px;
    transition: var(--transition);
}

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

.hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    background-image: 
        linear-gradient(135deg, rgba(37, 99, 235, 0.95) 0%, rgba(249, 115, 22, 0.9) 100%),
        url('https://images.unsplash.com/photo-1460925895917-afdab827c52f?w=1920&q=80');
    background-size: cover;
    background-position: center;
    background-attachment: fixed;
    padding: var(--spacing-xl) 0 var(--spacing-lg);
    margin-top: 80px;
    overflow: hidden;
}

.hero-overlay {
    position: absolute;
    inset: 0;
    background: radial-gradient(circle at 30% 50%, rgba(37, 99, 235, 0.3) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(249, 115, 22, 0.3) 0%, transparent 50%);
}

.hero-content {
    position: relative;
    z-index: 10;
    text-align: center;
    color: var(--color-white);
    max-width: 900px;
    margin: 0 auto;
    animation: fadeInUp 1s ease-out;
}

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

.hero-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(255, 255, 255, 0.2);
}

.hero-title {
    font-family: var(--font-heading);
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 1.5rem;
    text-shadow: 0 2px 20px rgba(0, 0, 0, 0.2);
}

.hero-subtitle {
    font-size: clamp(1.1rem, 2vw, 1.3rem);
    margin-bottom: 2.5rem;
    opacity: 0.95;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin: 3rem 0;
    flex-wrap: wrap;
}

.stat {
    text-align: center;
}

.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--color-white);
}

.stat-label {
    font-size: 0.95rem;
    opacity: 0.9;
}

.hero-cta {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
    margin-bottom: 2rem;
}

.hero-social {
    margin-top: 2rem;
}

.social-link {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    border-radius: 50px;
    border: 2px solid rgba(255, 255, 255, 0.2);
    font-weight: 600;
    transition: var(--transition);
}

.social-link:hover {
    background: rgba(255, 255, 255, 0.2);
    transform: translateY(-2px);
}

.social-link i {
    font-size: 1.5rem;
}

.hero-wave {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    overflow: hidden;
    line-height: 0;
}

.hero-wave svg {
    position: relative;
    display: block;
    width: calc(100% + 1.3px);
    height: 60px;
}

/* ==========================================================================
   BUTTONS
   ========================================================================== */

.btn {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.875rem 2rem;
    font-weight: 600;
    font-size: 1rem;
    border-radius: 8px;
    border: 2px solid transparent;
    cursor: pointer;
    transition: var(--transition);
    text-align: center;
    justify-content: center;
}

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

.btn-primary:hover {
    background: var(--color-primary-dark);
    border-color: var(--color-primary-dark);
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.15);
    color: var(--color-white);
    border-color: rgba(255, 255, 255, 0.3);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
}

.btn-outline {
    background: var(--color-white);
    color: var(--color-primary);
    border-color: var(--color-primary);
    font-weight: 700;
}

.btn-outline:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
}

.btn-large {
    padding: 1.125rem 2.5rem;
    font-size: 1.1rem;
}

.btn-block {
    width: 100%;
}

/* ==========================================================================
   PÉZENAS ADVANTAGE SECTION
   ========================================================================== */

.pezenas-advantage {
    background: linear-gradient(135deg, var(--color-secondary) 0%, var(--color-secondary-dark) 100%);
    color: var(--color-white);
    padding: 3rem 0;
}

.advantage-content {
    display: flex;
    align-items: center;
    gap: 2rem;
}

.advantage-icon {
    flex-shrink: 0;
    width: 80px;
    height: 80px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    font-size: 2.5rem;
}

.advantage-text h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
}

.advantage-text p {
    font-size: 1.1rem;
    line-height: 1.7;
    opacity: 0.95;
}

/* ==========================================================================
   SECTION STYLES
   ========================================================================== */

.services,
.avantages,
.processus,
.temoignages,
.contact {
    padding: var(--spacing-xl) 0;
}

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

.section-badge {
    display: inline-block;
    padding: 0.5rem 1.25rem;
    background: rgba(37, 99, 235, 0.1);
    color: var(--color-primary);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.section-title {
    font-family: var(--font-heading);
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.section-subtitle {
    font-size: 1.125rem;
    color: var(--color-gray);
    line-height: 1.8;
}

/* ==========================================================================
   PACKS / SERVICES
   ========================================================================== */

.services {
    background: var(--color-light);
}

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

.pack-card {
    background: var(--color-white);
    border-radius: 20px;
    padding: 2.5rem;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    position: relative;
    border: 2px solid transparent;
    display: flex;
    flex-direction: column;
}

.pack-card:hover {
    transform: translateY(-10px);
    box-shadow: var(--shadow-xl);
}

.pack-featured {
    border-color: var(--color-primary);
    transform: scale(1.05);
}

.pack-featured:hover {
    transform: scale(1.08) translateY(-10px);
}

.pack-badge {
    position: absolute;
    top: -15px;
    right: 20px;
    background: var(--color-secondary);
    color: var(--color-white);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 700;
    box-shadow: var(--shadow-md);
}

.pack-header {
    text-align: center;
    margin-bottom: 2rem;
}

.pack-icon {
    width: 80px;
    height: 80px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: 20px;
    color: var(--color-white);
    font-size: 2.5rem;
}

.pack-name {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.pack-price {
    display: flex;
    flex-direction: column;
    align-items: center;
}

.price-amount {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--color-primary);
    line-height: 1;
}

.price-label {
    font-size: 0.9rem;
    color: var(--color-dark-2);
    margin-top: 0.25rem;
    font-weight: 500;
}

.pack-features {
    flex-grow: 1;
}

.pack-features ul {
    margin-bottom: 2rem;
}

.pack-features li {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.75rem 0;
    border-bottom: 1px solid rgba(0, 0, 0, 0.05);
    color: var(--color-dark);
    font-weight: 500;
}

.pack-features li:last-child {
    border-bottom: none;
}

.pack-features i {
    color: var(--color-success);
    font-size: 1.25rem;
    flex-shrink: 0;
    margin-top: 0.15rem;
}

.pack-ideal {
    background: var(--color-light);
    padding: 1rem;
    border-radius: 10px;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
    color: var(--color-dark);
}

.services-note {
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(249, 115, 22, 0.1) 100%);
    border-left: 4px solid var(--color-primary);
    padding: 1.5rem 2rem;
    border-radius: 10px;
    display: flex;
    align-items: flex-start;
    gap: 1rem;
}

.services-note i {
    color: var(--color-primary);
    font-size: 1.5rem;
    flex-shrink: 0;
}

.services-note p {
    line-height: 1.7;
    color: var(--color-dark);
}

/* ==========================================================================
   AVANTAGES
   ========================================================================== */

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

.avantage-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
    border-top: 4px solid var(--color-primary);
}

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

.avantage-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(37, 99, 235, 0.1) 0%, rgba(249, 115, 22, 0.1) 100%);
    border-radius: 12px;
    font-size: 1.75rem;
    color: var(--color-primary);
    margin-bottom: 1.5rem;
}

.avantage-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--color-dark);
}

.avantage-card p {
    color: var(--color-gray);
    line-height: 1.7;
}

/* ==========================================================================
   PROCESSUS / TIMELINE
   ========================================================================== */

.processus {
    background: var(--color-light);
}

.processus-timeline {
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    padding-left: 80px;
}

.processus-timeline::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 30px;
    bottom: 30px;
    width: 3px;
    background: linear-gradient(180deg, var(--color-primary) 0%, var(--color-secondary) 100%);
}

.timeline-item {
    position: relative;
    margin-bottom: 3rem;
}

.timeline-item:last-child {
    margin-bottom: 0;
}

.timeline-number {
    position: absolute;
    left: -80px;
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    color: var(--color-white);
    border-radius: 50%;
    font-size: 1.5rem;
    font-weight: 800;
    box-shadow: 0 0 0 6px var(--color-light);
}

.timeline-content {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.timeline-content:hover {
    transform: translateX(10px);
    box-shadow: var(--shadow-lg);
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--color-dark);
}

.timeline-content p {
    color: var(--color-gray);
    line-height: 1.7;
}

/* ==========================================================================
   TÉMOIGNAGES
   ========================================================================== */

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

.temoignage-card {
    background: var(--color-white);
    padding: 2rem;
    border-radius: 15px;
    box-shadow: var(--shadow-md);
    transition: var(--transition);
}

.temoignage-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.temoignage-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1.5rem;
    color: #fbbf24;
    font-size: 1.25rem;
}

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

.temoignage-author strong {
    display: block;
    color: var(--color-dark);
    font-weight: 700;
    margin-bottom: 0.25rem;
}

.temoignage-author span {
    color: var(--color-gray);
    font-size: 0.9rem;
}

/* ==========================================================================
   CONTACT
   ========================================================================== */

.contact {
    background: var(--color-light);
}

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

.contact-info h2 {
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.contact-intro {
    font-size: 1.1rem;
    color: var(--color-gray);
    line-height: 1.7;
    margin-bottom: 2.5rem;
}

.contact-methods {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
    margin-bottom: 2rem;
}

.contact-method {
    display: flex;
    align-items: center;
    gap: 1.25rem;
}

.method-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-primary) 0%, var(--color-secondary) 100%);
    border-radius: 12px;
    color: var(--color-white);
    font-size: 1.25rem;
    flex-shrink: 0;
}

.method-content h4 {
    font-size: 0.875rem;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: var(--color-gray);
    margin-bottom: 0.25rem;
}

.method-content a {
    color: var(--color-dark);
    font-weight: 600;
    font-size: 1.1rem;
}

.method-content a:hover {
    color: var(--color-primary);
}

.contact-social {
    margin-top: 2rem;
}

.social-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1rem 2rem;
    background: linear-gradient(135deg, #E1306C 0%, #F77737 50%, #FCAF45 100%);
    color: var(--color-white);
    border-radius: 50px;
    font-weight: 600;
    transition: var(--transition);
    box-shadow: var(--shadow-md);
}

.social-btn:hover {
    transform: translateY(-3px);
    box-shadow: var(--shadow-xl);
}

.social-btn i {
    font-size: 1.5rem;
}

/* CONTACT CTA */

.contact-cta-wrapper {
    background: var(--color-white);
    padding: 3rem;
    border-radius: 20px;
    box-shadow: var(--shadow-xl);
}

.contact-cta-box {
    text-align: center;
}

.contact-cta-box h3 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--color-dark);
}

.contact-cta-box p {
    font-size: 1.1rem;
    color: var(--color-gray);
    margin-bottom: 2rem;
    line-height: 1.7;
}

.contact-cta-box .btn {
    margin-bottom: 2rem;
    font-size: 1.2rem;
    padding: 1.25rem 2.5rem;
}

.contact-cta-divider {
    position: relative;
    text-align: center;
    margin: 2rem 0;
}

.contact-cta-divider::before,
.contact-cta-divider::after {
    content: '';
    position: absolute;
    top: 50%;
    width: 40%;
    height: 1px;
    background: #e2e8f0;
}

.contact-cta-divider::before {
    left: 0;
}

.contact-cta-divider::after {
    right: 0;
}

.contact-cta-divider span {
    background: var(--color-white);
    padding: 0 1rem;
    color: var(--color-gray);
    font-weight: 600;
}

.contact-alternatives {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.alt-contact-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: var(--color-light);
    border-radius: 10px;
    transition: var(--transition);
    font-weight: 600;
    color: var(--color-dark);
}

.alt-contact-btn:hover {
    background: var(--color-primary);
    color: var(--color-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.alt-contact-btn i {
    font-size: 1.25rem;
}

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

.footer {
    background: var(--color-dark);
    color: var(--color-white);
    padding: var(--spacing-lg) 0 var(--spacing-md);
}

.footer-content {
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1.5fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.footer-logo i {
    color: var(--color-primary);
    font-size: 1.75rem;
}

.footer-logo strong {
    color: var(--color-secondary);
}

.footer-brand p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: var(--transition);
}

.footer-social a:hover {
    background: var(--color-primary);
    transform: translateY(-3px);
}

.footer-links h4 {
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.footer-links ul li {
    margin-bottom: 0.75rem;
}

.footer-links a {
    color: rgba(255, 255, 255, 0.7);
    transition: var(--transition);
}

.footer-links a:hover {
    color: var(--color-white);
    padding-left: 5px;
}

.footer-contact ul li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.75rem;
    color: rgba(255, 255, 255, 0.7);
}

.footer-contact i {
    color: var(--color-primary);
    width: 20px;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-bottom p {
    color: rgba(255, 255, 255, 0.5);
}

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

.footer-legal a {
    color: rgba(255, 255, 255, 0.5);
    font-size: 0.9rem;
}

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

/* ==========================================================================
   SCROLL TO TOP BUTTON
   ========================================================================== */

.scroll-top {
    position: fixed;
    bottom: 30px;
    right: 30px;
    width: 50px;
    height: 50px;
    background: var(--color-primary);
    color: var(--color-white);
    border: none;
    border-radius: 50%;
    font-size: 1.25rem;
    cursor: pointer;
    box-shadow: var(--shadow-lg);
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
    z-index: 999;
}

.scroll-top.visible {
    opacity: 1;
    visibility: visible;
}

.scroll-top:hover {
    background: var(--color-primary-dark);
    transform: translateY(-5px);
}

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

@media (max-width: 1024px) {
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .footer-content {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    /* Header Mobile */
    .menu-toggle {
        display: flex;
    }
    
    .nav {
        position: fixed;
        top: 80px;
        left: 0;
        right: 0;
        background: var(--color-white);
        box-shadow: var(--shadow-lg);
        padding: 2rem;
        transform: translateY(-150%);
        opacity: 0;
        visibility: hidden;
        transition: var(--transition);
        max-height: calc(100vh - 80px);
        overflow-y: auto;
    }
    
    .nav.active {
        transform: translateY(0);
        opacity: 1;
        visibility: visible;
    }
    
    .nav-list {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    /* Hero */
    .hero {
        padding: var(--spacing-lg) 0 var(--spacing-md);
        min-height: auto;
        background-attachment: scroll;
    }
    
    .hero-title {
        font-size: 2rem;
        line-height: 1.3;
    }
    
    .hero-subtitle {
        font-size: 1rem;
    }
    
    .hero-stats {
        gap: 1.5rem;
        margin: 2rem 0;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .hero-cta {
        flex-direction: column;
        width: 100%;
        gap: 1rem;
    }
    
    .hero-cta .btn {
        width: 100%;
        padding: 1rem 1.5rem;
    }
    
    .hero-social {
        margin-top: 1.5rem;
    }
    
    .social-link {
        padding: 0.75rem 1.5rem;
        font-size: 0.9rem;
    }
    
    /* Advantage */
    .advantage-content {
        flex-direction: column;
        text-align: center;
        padding: 1.5rem;
    }
    
    .advantage-icon {
        margin: 0 auto 1rem;
    }
    
    .advantage-text h3 {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }
    
    .advantage-text p {
        font-size: 1rem;
        line-height: 1.6;
    }
    
    /* Sections */
    .services, .avantages, .processus, .temoignages, .contact {
        padding: 3rem 0;
    }
    
    .section-title {
        font-size: 1.75rem;
    }
    
    .section-subtitle {
        font-size: 1rem;
    }
    
    /* Packs */
    .packs-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .pack-card {
        padding: 2rem;
    }
    
    .pack-featured {
        transform: scale(1);
    }
    
    .pack-name {
        font-size: 1.5rem;
    }
    
    .price-amount {
        font-size: 2rem;
    }
    
    /* Avantages Grid */
    .avantages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .avantage-card {
        padding: 1.5rem;
    }
    
    .avantage-card h3 {
        font-size: 1.25rem;
    }
    
    /* Timeline */
    .processus-timeline {
        padding-left: 60px;
    }
    
    .processus-timeline::before {
        left: 20px;
    }
    
    .timeline-number {
        left: -60px;
        width: 40px;
        height: 40px;
        font-size: 1.125rem;
    }
    
    .timeline-content {
        padding: 1.5rem;
    }
    
    .timeline-content h3 {
        font-size: 1.25rem;
    }
    
    /* Témoignages */
    .temoignages-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }
    
    .temoignage-card {
        padding: 1.5rem;
    }
    
    /* Contact */
    .contact-wrapper {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .contact-info h2 {
        font-size: 1.75rem;
    }
    
    .contact-methods {
        gap: 1rem;
    }
    
    .contact-method {
        padding: 1rem;
    }
    
    .contact-cta-box {
        padding: 1.5rem;
    }
    
    .contact-cta-box h3 {
        font-size: 1.5rem;
    }
    
    /* Footer */
    .footer-content {
        grid-template-columns: 1fr;
        gap: 2rem;
        text-align: center;
    }
    
    .footer-bottom {
        flex-direction: column;
        text-align: center;
        gap: 1rem;
    }
    
    .footer-legal {
        flex-direction: column;
        gap: 0.5rem;
    }
}

@media (max-width: 480px) {
    :root {
        --spacing-xl: 3rem;
        --spacing-lg: 2rem;
        --spacing-md: 1.5rem;
    }
    
    .container {
        padding: 0 1rem;
    }
    
    /* Logo */
    .logo {
        font-size: 1.25rem;
    }
    
    .logo i {
        font-size: 1.5rem;
    }
    
    /* Hero */
    .hero {
        padding: 2rem 0 1.5rem;
    }
    
    .hero-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
    
    .hero-title {
        font-size: 1.75rem;
    }
    
    .hero-subtitle {
        font-size: 0.95rem;
    }
    
    .hero-stats {
        flex-direction: column;
        gap: 1.5rem;
        margin: 1.5rem 0;
    }
    
    .stat-number {
        font-size: 2rem;
    }
    
    .stat-label {
        font-size: 0.85rem;
    }
    
    .btn {
        padding: 0.875rem 1.5rem;
        font-size: 0.95rem;
    }
    
    .btn i {
        font-size: 1rem;
    }
    
    /* Sections */
    .services, .avantages, .processus, .temoignages, .contact {
        padding: 2.5rem 0;
    }
    
    .section-badge {
        font-size: 0.8rem;
        padding: 0.4rem 1rem;
    }
    
    .section-title {
        font-size: 1.5rem;
        margin-bottom: 0.75rem;
    }
    
    .section-subtitle {
        font-size: 0.95rem;
    }
    
    /* Advantage */
    .pezenas-advantage {
        padding: 2rem 0;
    }
    
    .advantage-content {
        padding: 1rem;
    }
    
    .advantage-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .advantage-text h3 {
        font-size: 1.25rem;
    }
    
    .advantage-text p {
        font-size: 0.9rem;
    }
    
    /* Pack Cards */
    .pack-card {
        padding: 1.5rem;
    }
    
    .pack-badge {
        font-size: 0.8rem;
        padding: 0.4rem 0.75rem;
    }
    
    .pack-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .pack-name {
        font-size: 1.25rem;
    }
    
    .price-amount {
        font-size: 1.75rem;
    }
    
    .price-label {
        font-size: 0.85rem;
    }
    
    .pack-features ul li {
        font-size: 0.9rem;
    }
    
    /* Avantages */
    .avantage-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .avantage-card h3 {
        font-size: 1.1rem;
    }
    
    .avantage-card p {
        font-size: 0.9rem;
    }
    
    /* Timeline */
    .processus-timeline {
        padding-left: 50px;
    }
    
    .processus-timeline::before {
        left: 15px;
    }
    
    .timeline-number {
        left: -50px;
        width: 35px;
        height: 35px;
        font-size: 1rem;
    }
    
    .timeline-content {
        padding: 1.25rem;
    }
    
    .timeline-content h3 {
        font-size: 1.1rem;
    }
    
    .timeline-content p {
        font-size: 0.9rem;
    }
    
    /* Témoignages */
    .temoignage-card {
        padding: 1.25rem;
    }
    
    .temoignage-text {
        font-size: 0.95rem;
    }
    
    .temoignage-author strong {
        font-size: 0.95rem;
    }
    
    .temoignage-author span {
        font-size: 0.85rem;
    }
    
    /* Contact */
    .contact-info h2 {
        font-size: 1.5rem;
    }
    
    .contact-intro {
        font-size: 0.95rem;
    }
    
    .contact-method {
        padding: 0.75rem;
    }
    
    .method-icon {
        width: 40px;
        height: 40px;
        font-size: 1.25rem;
    }
    
    .method-content h4 {
        font-size: 0.95rem;
    }
    
    .method-content a,
    .method-content p {
        font-size: 0.9rem;
    }
    
    .contact-cta-box {
        padding: 1.25rem;
    }
    
    .contact-cta-box h3 {
        font-size: 1.25rem;
    }
    
    .contact-cta-box p {
        font-size: 0.9rem;
    }
    
    .alt-contact-btn {
        font-size: 0.85rem;
        padding: 0.75rem 1rem;
    }
    
    /* Footer */
    .footer {
        padding: 2.5rem 0 1.5rem;
    }
    
    .footer-logo {
        font-size: 1.25rem;
    }
    
    .footer-brand p {
        font-size: 0.9rem;
    }
    
    .footer-links h4,
    .footer-contact h4 {
        font-size: 1rem;
    }
    
    .footer-links ul li,
    .footer-contact ul li {
        font-size: 0.9rem;
    }
    
    .footer-bottom {
        padding-top: 1.5rem;
        font-size: 0.85rem;
    }
    
    /* Scroll to top button */
    .scroll-top {
        width: 45px;
        height: 45px;
        bottom: 20px;
        right: 20px;
    }
}
/* ==========================================================================
   MEDIA QUERIES SUPPLÉMENTAIRES POUR RESPONSIVE
   ========================================================================== */

/* Tablettes en mode portrait */
@media (max-width: 992px) and (min-width: 769px) {
    .packs-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
    
    .pack-featured {
        grid-column: span 2;
    }
    
    .avantages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .temoignages-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* Très petits écrans */
@media (max-width: 360px) {
    .hero-title {
        font-size: 1.5rem;
    }
    
    .hero-subtitle {
        font-size: 0.875rem;
    }
    
    .section-title {
        font-size: 1.25rem;
    }
    
    .btn {
        padding: 0.75rem 1.25rem;
        font-size: 0.875rem;
    }
}
.gradient-text {
    /* Degradado más claro y luminoso */
    background: linear-gradient(90deg, #8fd0ff, #ffc28f);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;

    font-weight: 800;
}
