/* ==========================================
   ZENSITE.FR - TECH & DYNAMIC STYLESHEET
   Design moderne avec animations et effets
   ========================================== */

/* ==========================================
   IMPORT FONTS - Plus de caractère
   ========================================== */
@import url('https://fonts.googleapis.com/css2?family=Cal+Sans:wght@600;700;800&family=Plus+Jakarta+Sans:wght@400;500;600;700;800&display=swap');

/* ==========================================
   VARIABLES CSS
   ========================================== */
:root {
    /* Couleurs - Palette dynamique et vibrante */
    --primary: #0066FF;
    --primary-dark: #0052CC;
    --primary-light: #4D94FF;
    --primary-glow: rgba(0, 102, 255, 0.3);
    
    --secondary: #1A1A2E;
    --secondary-light: #2D2D44;
    
    --accent: #00FFA3;
    --accent-hover: #00D98F;
    --accent-glow: rgba(0, 255, 163, 0.3);
    
    /* Gradients */
    --gradient-primary: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    --gradient-accent: linear-gradient(135deg, #00FFA3 0%, #00B8FF 100%);
    --gradient-hero: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    
    /* Nuances de gris */
    --gray-50: #F9FAFB;
    --gray-100: #F3F4F6;
    --gray-200: #E5E7EB;
    --gray-300: #D1D5DB;
    --gray-400: #9CA3AF;
    --gray-500: #6B7280;
    --gray-600: #4B5563;
    --gray-700: #374151;
    --gray-800: #1F2937;
    --gray-900: #111827;
    
    /* Texte */
    --text-primary: #0F172A;
    --text-secondary: #475569;
    --text-light: #64748B;
    
    /* Backgrounds */
    --bg-white: #FFFFFF;
    --bg-light: #F8FAFC;
    --bg-dark: #0F172A;
    
    /* Typographie */
    --font-heading: 'Cal Sans', 'Poppins', sans-serif;
    --font-body: 'Plus Jakarta Sans', -apple-system, BlinkMacSystemFont, sans-serif;
    
    /* Espacements */
    --spacing-xs: 0.5rem;
    --spacing-sm: 1rem;
    --spacing-md: 1.5rem;
    --spacing-lg: 2rem;
    --spacing-xl: 3rem;
    --spacing-2xl: 4rem;
    --spacing-3xl: 6rem;
    
    /* Bordures */
    --radius-sm: 8px;
    --radius-md: 12px;
    --radius-lg: 16px;
    --radius-xl: 24px;
    --radius-2xl: 32px;
    --radius-full: 9999px;
    
    /* Ombres */
    --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);
    --shadow-glow: 0 0 20px var(--primary-glow);
    --shadow-glow-accent: 0 0 20px var(--accent-glow);
    
    /* Transitions */
    --transition-fast: 150ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-base: 300ms cubic-bezier(0.4, 0, 0.2, 1);
    --transition-slow: 500ms cubic-bezier(0.4, 0, 0.2, 1);
}

/* ==========================================
   RESET ET BASE
   ========================================== */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

body {
    font-family: var(--font-body);
    color: var(--text-primary);
    background-color: var(--bg-white);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    overflow-x: hidden;
}

/* ==========================================
   TYPOGRAPHIE
   ========================================== */
h1, h2, h3, h4, h5, h6 {
    font-family: var(--font-heading);
    font-weight: 700;
    line-height: 1.2;
    color: var(--text-primary);
    margin-bottom: var(--spacing-md);
}

h1 {
    font-size: clamp(2.5rem, 6vw, 4rem);
    font-weight: 800;
    letter-spacing: -0.02em;
}

h2 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    letter-spacing: -0.01em;
}

h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    font-weight: 600;
}

p {
    margin-bottom: var(--spacing-md);
    color: var(--text-secondary);
    font-size: 1.0625rem;
    line-height: 1.7;
}

/* ==========================================
   HERO SECTION - DYNAMIC
   ========================================== */
.hero-dynamic {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    padding: 8rem 2rem 4rem;
}

/* Animated particles background */
.hero-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 255, 163, 0.1) 0%, transparent 50%);
    animation: particlesFloat 20s ease-in-out infinite;
    pointer-events: none; /* CRITIQUE : N'intercepte pas les clics */
}

@keyframes particlesFloat {
    0%, 100% { transform: translate(0, 0); }
    25% { transform: translate(-20px, 20px); }
    50% { transform: translate(20px, -20px); }
    75% { transform: translate(-20px, -20px); }
}

.hero-gradient-mesh {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(at 0% 0%, rgba(102, 126, 234, 0.8) 0px, transparent 50%),
        radial-gradient(at 50% 0%, rgba(118, 75, 162, 0.8) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(240, 147, 251, 0.8) 0px, transparent 50%);
    filter: blur(60px);
    opacity: 0.6;
    animation: meshMove 15s ease-in-out infinite;
    pointer-events: none; /* CRITIQUE : N'intercepte pas les clics */
}

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

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

.hero-content-dynamic {
    animation: fadeInUp 0.8s ease-out;
}

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

/* Hero badge */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    border: 1px solid rgba(255, 255, 255, 0.2);
    font-size: 0.9375rem;
    font-weight: 600;
    color: white;
    margin-bottom: 2rem;
    animation: badgePulse 3s ease-in-out infinite;
}

@keyframes badgePulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(255, 255, 255, 0.4); }
    50% { box-shadow: 0 0 0 10px rgba(255, 255, 255, 0); }
}

.badge-pulse {
    width: 8px;
    height: 8px;
    background: var(--accent);
    border-radius: 50%;
    animation: pulse 2s ease-in-out infinite;
}

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

/* Hero title */
.hero-title-dynamic {
    font-size: clamp(2.5rem, 7vw, 4.5rem);
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    letter-spacing: -0.03em;
}

.typing-text {
    display: inline-block;
    background: linear-gradient(135deg, var(--accent) 0%, #00B8FF 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
}

.typing-text::after {
    content: '|';
    animation: blink 1s step-end infinite;
    -webkit-text-fill-color: var(--accent);
}

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

/* Hero subtitle */
.hero-subtitle {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.hero-subtitle strong {
    color: white;
    font-weight: 700;
}

/* Hero CTA buttons */
.hero-cta-dynamic {
    display: flex;
    gap: 1rem;
    flex-wrap: wrap;
    margin-bottom: 3rem;
}

.btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    /* Style complet avec hover et animation */
}

.btn-primary-glow {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: var(--primary);
    padding: 1.25rem 2.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.0625rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.3);
    position: relative;
    overflow: hidden;
}

.btn-primary-glow::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: var(--accent);
    transition: width var(--transition-slow), height var(--transition-slow);
    transform: translate(-50%, -50%);
    z-index: 0;
}

.btn-primary-glow:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary-glow span,
.btn-primary-glow i {
    position: relative;
    z-index: 1;
}

.btn-primary-glow:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(255, 255, 255, 0.4);
    color: white;
}

.btn-secondary-dynamic {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1.0625rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-secondary-dynamic:hover {
    background: rgba(255, 255, 255, 0.2);
    border-color: white;
    transform: translateY(-3px);
}

/* Trust indicators */
.hero-trust {
    display: flex;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

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

.trust-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    font-family: var(--font-heading);
}

.trust-number span {
    font-size: 1.5rem;
    color: rgba(255, 255, 255, 0.7);
}

.trust-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 0.5rem;
}

.trust-separator {
    width: 1px;
    height: 40px;
    background: rgba(255, 255, 255, 0.3);
}

/* Hero visual */
.hero-visual-dynamic {
    position: relative;
    height: 500px;
    animation: fadeInRight 1s ease-out 0.3s both;
}

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

/* Floating cards */
.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 1rem 1.5rem;
    border-radius: var(--radius-lg);
    display: flex;
    align-items: center;
    gap: 0.75rem;
    color: white;
    font-weight: 600;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
    animation: float 3s ease-in-out infinite;
}

.floating-card i {
    font-size: 1.5rem;
}

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

.card-2 {
    top: 50%;
    right: -10%;
    animation-delay: 1s;
}

.card-3 {
    bottom: 5%;
    left: 10%;
    animation-delay: 2s;
}

.card-4 {
    top: 50%;
    left: -20%;
    animation-delay: 3s;
}

.card-5 {
    bottom: 5%;
    right: -10%;
    animation-delay: 4s;
}

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

/* Hero mockup */
.hero-mockup {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 400px;
    height: 300px;
}

.mockup-browser {
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    border-radius: var(--radius-lg);
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    overflow: hidden;
    animation: browserPulse 4s ease-in-out infinite;
}

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

.browser-bar {
    height: 40px;
    background: rgba(0, 0, 0, 0.05);
    display: flex;
    align-items: center;
    padding: 0 1rem;
}

.browser-dots {
    display: flex;
    gap: 0.5rem;
}

.browser-dots span {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-400);
}

.browser-dots span:nth-child(1) { background: #FF5F57; }
.browser-dots span:nth-child(2) { background: #FFBD2E; }
.browser-dots span:nth-child(3) { background: #28CA42; }

.browser-content {
    height: calc(100% - 40px);
    position: relative;
}

.mockup-gradient {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    animation: gradientShift 5s ease-in-out infinite;
}

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

/* Scroll indicator */
.scroll-indicator {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    animation: bounce 2s ease-in-out infinite;
}

@keyframes bounce {
    0%, 100% {
        transform: translateX(-50%) translateY(0);
    }
    50% {
        transform: translateX(-50%) translateY(-10px);
    }
}

.scroll-mouse {
    width: 30px;
    height: 50px;
    border: 2px solid rgba(255, 255, 255, 0.5);
    border-radius: 15px;
    position: relative;
}

.scroll-mouse::before {
    content: '';
    position: absolute;
    top: 10px;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 8px;
    background: rgba(255, 255, 255, 0.5);
    border-radius: 2px;
    animation: scrollAnim 1.5s ease-in-out infinite;
}

@keyframes scrollAnim {
    0% {
        opacity: 1;
        transform: translateX(-50%) translateY(0);
    }
    100% {
        opacity: 0;
        transform: translateX(-50%) translateY(15px);
    }
}

/* ==========================================
   LOGOS SECTION
   ========================================== */
.logos-section {
    padding: 2rem 2rem;
    background: var(--bg-white);
    border-bottom: 1px solid var(--gray-200);
}

.logos-title {
    text-align: center;
    font-size: 0.875rem;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    font-weight: 600;
    margin-bottom: 1.5rem;
}

.logos-marquee {
    overflow: hidden;
    position: relative;
    width: 100%;
}

.logos-track {
    display: flex;
    gap: 3rem;
    animation: marquee 30s linear infinite;
    white-space: nowrap;
}

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

.logo-item {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--text-secondary);
    opacity: 0.7;
    transition: opacity var(--transition-base);
}

.logo-item:hover {
    opacity: 1;
}

/* ==========================================
   WHY SECTION - BENTO GRID
   ========================================== */
.why-section {
    padding: var(--spacing-3xl) 2rem;
    background: var(--bg-light);
}

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

.section-tag-dynamic {
    display: inline-block;
    background: rgba(102, 126, 234, 0.1);
    color: var(--primary);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.9375rem;
    font-weight: 600;
    margin-bottom: 1rem;
}

.bento-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1.5rem;
    margin-top: 3rem;
}

.bento-card {
    background: white;
    border-radius: var(--radius-xl);
    padding: 2rem;
    border: 2px solid var(--gray-200);
    transition: all var(--transition-base);
    position: relative;
    overflow: hidden;
}

.bento-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    opacity: 0;
    transition: opacity var(--transition-base);
}

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

.bento-card:hover::before {
    opacity: 0.05;
}

.bento-large {
    grid-column: span 3;
    grid-row: span 2;
}

.bento-medium {
    grid-column: span 3;
}

.bento-small {
    grid-column: span 2;
}

.bento-colored {
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-dark) 100%);
    color: white;
    border-color: var(--primary);
}

.bento-colored h3,
.bento-card.bento-colored p {
    color: white;
}

.bento-colored .bento-icon {
    background: rgba(255, 255, 255, 0.2);
    color: white;
}

.bento-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: white;
    margin-bottom: 1.5rem;
}

.bento-icon-small {
    width: 50px;
    height: 50px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    color: white;
    margin-bottom: 1rem;
}

.bento-card h3 {
    font-size: 1.5rem;
    margin-bottom: 1rem;
}

.bento-card h4 {
    font-size: 1.125rem;
    margin-bottom: 0;
}

.bento-card p {
    color: var(--text-light);
    font-size: 1rem;
    margin-bottom: 0;
}

/* Bento visual elements */
.bento-visual {
    margin-top: 2rem;
}

.timeline-visual {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.timeline-step {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 0.5rem;
}

.timeline-step span {
    width: 50px;
    height: 50px;
    background: var(--gray-200);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: var(--text-secondary);
    transition: all var(--transition-base);
}

.timeline-step.active span {
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    color: white;
    box-shadow: 0 0 20px var(--primary-glow);
}

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

.timeline-arrow {
    font-size: 1.5rem;
    color: var(--gray-400);
}

.price-badge {
    position: absolute;
    bottom: 2rem;
    right: 2rem;
    background: rgba(255, 255, 255, 0.9);
    color: var(--primary);
    padding: 0.75rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.125rem;
    box-shadow: var(--shadow-md);
}

/* ==========================================
   OFFERS SECTION
   ========================================== */
.offers-section {
    padding: var(--spacing-3xl) 2rem;
    background: white;
}

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

.offer-card {
    background: white;
    border: 2px solid var(--gray-200);
    border-radius: var(--radius-xl);
    padding: 2.5rem 2rem;
    transition: all var(--transition-base);
    position: relative;
    display: flex;
    flex-direction: column;
}

.offer-card:hover {
    border-color: var(--primary);
    transform: translateY(-10px);
    box-shadow: var(--shadow-2xl);
}

.offer-popular {
    border-color: var(--primary);
    box-shadow: 0 10px 40px rgba(102, 126, 234, 0.2);
    transform: scale(1.05);
}

.offer-popular:hover {
    transform: scale(1.05) translateY(-10px);
}

.popular-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 0.5rem 1.5rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 0.875rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: var(--shadow-lg);
}

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

.offer-header h3 {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

.offer-price {
    margin: 1.5rem 0;
}

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

.price-period {
    font-size: 1.25rem;
    color: var(--text-light);
    font-weight: 500;
    margin-left: 0.5rem;
}

.offer-desc {
    font-size: 1.0625rem;
    color: var(--text-secondary);
    margin-bottom: 0;
}

.offer-features {
    list-style: none;
    margin-bottom: 2rem;
    flex-grow: 1;
}

.offer-features li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 1rem;
    color: var(--text-secondary);
    font-size: 1rem;
}

.offer-features i {
    color: var(--primary);
    font-size: 1.125rem;
    flex-shrink: 0;
}

.offer-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 0.75rem;
    padding: 1.25rem 2rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.0625rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    text-align: center;
}

.offer-btn-primary {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

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

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

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

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

.btn-link {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    color: var(--primary);
    font-weight: 600;
    font-size: 1.0625rem;
    transition: gap var(--transition-base);
}

.btn-link:hover {
    gap: 1rem;
}

/* ==========================================
   PROCESS SECTION
   ========================================== */
.process-section {
    padding: var(--spacing-3xl) 2rem;
    background: var(--bg-light);
}

.process-timeline {
    max-width: 900px;
    margin: 3rem auto 0;
    position: relative;
}

.process-step {
    display: grid;
    grid-template-columns: 80px 1fr 80px;
    gap: 2rem;
    align-items: center;
    margin-bottom: 3rem;
    opacity: 0;
    animation: fadeInStep 0.6s ease-out forwards;
}

.process-step[data-step="1"] { animation-delay: 0s; }
.process-step[data-step="2"] { animation-delay: 0.2s; }
.process-step[data-step="3"] { animation-delay: 0.4s; }
.process-step[data-step="4"] { animation-delay: 0.6s; }

@keyframes fadeInStep {
    to {
        opacity: 1;
    }
}

.process-number {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 10px 30px rgba(102, 126, 234, 0.3);
}

.process-number span {
    font-size: 2rem;
    font-weight: 800;
    color: white;
    font-family: var(--font-heading);
}

.process-content {
    background: white;
    padding: 2rem;
    border-radius: var(--radius-lg);
    border: 2px solid var(--gray-200);
    transition: all var(--transition-base);
}

.process-step:hover .process-content {
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.process-content h3 {
    font-size: 1.5rem;
    margin-bottom: 0.75rem;
}

.process-content p {
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.process-time {
    display: inline-block;
    background: var(--gray-100);
    padding: 0.5rem 1rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-primary);
}

.process-visual {
    width: 80px;
    height: 80px;
    background: var(--gray-100);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--primary);
}

.process-connector {
    height: 60px;
    width: 3px;
    background: linear-gradient(180deg, var(--primary) 0%, var(--gray-300) 100%);
    margin: -1.5rem auto;
    position: relative;
    left: 40px;
}

/* ==========================================
   TESTIMONIALS SECTION
   ========================================== */
.testimonials-section {
    padding: var(--spacing-3xl) 2rem;
    background: white;
}

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

.testimonial-card {
    background: var(--bg-light);
    border-radius: var(--radius-lg);
    padding: 2rem;
    transition: all var(--transition-base);
}

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

.testimonial-stars {
    font-size: 1.25rem;
    margin-bottom: 1rem;
}

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

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

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

.author-name {
    font-weight: 700;
    color: var(--text-primary);
    font-size: 1rem;
}

.author-role {
    font-size: 0.875rem;
    color: var(--text-light);
}

/* ==========================================
   CTA FINAL SECTION
   ========================================== */
.cta-final-section {
    padding: var(--spacing-3xl) 2rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.cta-background-effect {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(240, 147, 251, 0.4) 0%, transparent 50%),
        radial-gradient(circle at 80% 50%, rgba(0, 255, 163, 0.3) 0%, transparent 50%);
    filter: blur(80px);
    animation: ctaPulse 8s ease-in-out infinite;
    pointer-events: none; /* CRITIQUE : N'intercepte pas les clics */
}

@keyframes ctaPulse {
    0%, 100% {
        opacity: 0.5;
    }
    50% {
        opacity: 0.8;
    }
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-content h2 {
    font-size: clamp(2rem, 5vw, 3.5rem);
    color: white;
    margin-bottom: 1rem;
}

.cta-content p {
    font-size: clamp(1.125rem, 2vw, 1.5rem);
    color: rgba(255, 255, 255, 0.9);
    margin-bottom: 2.5rem;
}

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

.btn-cta-primary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: var(--primary);
    padding: 1.5rem 3rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1.125rem;
    border: none;
    cursor: pointer;
    transition: all var(--transition-base);
    box-shadow: 0 10px 40px rgba(255, 255, 255, 0.3);
}

.btn-cta-primary:hover {
    transform: translateY(-3px) scale(1.05);
    box-shadow: 0 15px 50px rgba(255, 255, 255, 0.4);
}

.btn-cta-secondary {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    color: white;
    padding: 1.5rem 3rem;
    border-radius: var(--radius-full);
    font-weight: 600;
    font-size: 1.125rem;
    border: 2px solid rgba(255, 255, 255, 0.3);
    cursor: pointer;
    transition: all var(--transition-base);
}

.btn-cta-secondary:hover {
    background: rgba(255, 255, 255, 0.25);
    border-color: white;
    transform: translateY(-3px);
}

.cta-reassurance {
    display: flex;
    justify-content: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.cta-reassurance span {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.9375rem;
    font-weight: 500;
}

.cta-reassurance i {
    color: var(--accent);
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    .hero-container {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .hero-visual-dynamic {
        order: -1;
        height: 400px;
    }
    
    .bento-grid {
        grid-template-columns: repeat(4, 1fr);
    }
    
    .bento-large {
        grid-column: span 4;
        grid-row: span 1;
    }
    
    .bento-medium {
        grid-column: span 2;
    }
    
    .process-step {
        grid-template-columns: 60px 1fr 60px;
        gap: 1.5rem;
    }
    
    .process-number,
    .process-visual {
        width: 60px;
        height: 60px;
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    section {
        padding: 3rem 1.5rem;
    }
    
    .hero-dynamic {
        padding: 6rem 1.5rem 3rem;
    }
    
    .hero-cta-dynamic {
        flex-direction: column;
    }
    
    .hero-cta-dynamic a {
        width: 100%;
        justify-content: center;
    }
    
    .hero-trust {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .trust-separator {
        display: none;
    }
    
    .floating-card {
        display: none;
    }
    
    .hero-mockup {
        /*width: 300px;
        height: 220px;*/
		display: none;
    }
	
	/* Ajouté pour cacher espace fenêtre sur mobile */
	.hero-visual-dynamic {
		display: none;
	}
    
    .bento-grid {
        grid-template-columns: 1fr;
    }
    
    .bento-large,
    .bento-medium,
    .bento-small {
        grid-column: span 1;
    }
    
    .offers-grid {
        grid-template-columns: 1fr;
    }
    
    .offer-popular {
        transform: scale(1);
    }
    
    .process-step {
        grid-template-columns: 1fr;
        text-align: center;
    }
    
    .process-number,
    .process-visual {
        margin: 0 auto;
    }
    
    .process-connector {
        display: none;
    }
    
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .btn-cta-primary,
    .btn-cta-secondary {
        width: 100%;
        justify-content: center;
    }
}
/* ==========================================
   HEADER & FOOTER - TECH & DYNAMIC
   Styles additionnels pour index.php
   ========================================== */

/* ==========================================
   HEADER / NAVIGATION - AMÉLIORÉ
   ========================================== */
.site-header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    background: rgba(255, 255, 255, 0.98);
    backdrop-filter: blur(20px);
    border-bottom: 1px solid var(--gray-200);
    transition: all var(--transition-base);
}

.site-header.scrolled {
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    background: rgba(255, 255, 255, 0.95);
}

.header-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 1rem 2rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 2rem;
}

/* Logo */
.logo {
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: transform var(--transition-fast);
    text-decoration: none;
}

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

.logo i {
    font-size: 1.5rem;
    animation: pulse 2s ease-in-out infinite;
}

.logo span {
    color: var(--text-primary);
}

/* Navigation */
.main-nav {
    flex: 1;
    display: flex;
    justify-content: center;
}

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

.nav-link {
    position: relative;
    padding: 0.75rem 1.25rem;
    font-weight: 600;
    font-size: 1rem;
    color: var(--text-secondary);
    border-radius: var(--radius-md);
    transition: all var(--transition-base);
    display: inline-block;
}

.nav-link:hover {
    color: var(--primary);
    background: rgba(0, 102, 255, 0.05);
}

.nav-link.active {
    color: var(--primary);
    background: linear-gradient(135deg, rgba(0, 102, 255, 0.1), rgba(0, 217, 163, 0.1));
}

.nav-link::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--primary), var(--accent));
    border-radius: 2px;
    transition: width var(--transition-base);
}

.nav-link.active::after {
    width: 60%;
}

/* CTA Button Header */
.cta-button-header {
    background: linear-gradient(135deg, var(--primary), var(--primary-dark));
    color: white;
    padding: 0.875rem 1.75rem;
    border-radius: var(--radius-full);
    font-weight: 700;
    font-size: 1rem;
    transition: all var(--transition-base);
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    box-shadow: 0 4px 15px rgba(0, 102, 255, 0.3);
    text-decoration: none;
}

.cta-button-header:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 25px rgba(0, 102, 255, 0.4);
}

.cta-button-header i {
    transition: transform var(--transition-fast);
}

.cta-button-header:hover i {
    transform: translateX(3px);
}

/* Hamburger Menu */
.hamburger {
    display: none;
    flex-direction: column;
    gap: 6px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 8px;
    border-radius: var(--radius-sm);
    transition: all var(--transition-base);
}

.hamburger:hover {
    background: var(--gray-100);
}

.hamburger span {
    width: 28px;
    height: 3px;
    background: var(--text-primary);
    border-radius: 3px;
    transition: all var(--transition-base);
}

.hamburger.active span:nth-child(1) {
    transform: rotate(45deg) translateY(9px);
}

.hamburger.active span:nth-child(2) {
    opacity: 0;
    transform: translateX(-20px);
}

.hamburger.active span:nth-child(3) {
    transform: rotate(-45deg) translateY(-9px);
}

/* ==========================================
   PAGE 404 - STYLISÉE
   ========================================== */
.error-404 {
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    overflow: hidden;
    background: linear-gradient(135deg, var(--bg-light) 0%, var(--gray-100) 100%);
    padding: 8rem 2rem 4rem;
}

.error-particles {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(0, 102, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(0, 217, 163, 0.1) 0%, transparent 50%);
    animation: particlesFloat 20s ease-in-out infinite;
    pointer-events: none; /* CRITIQUE : N'intercepte pas les clics */
}

.error-container {
    position: relative;
    z-index: 1;
    text-align: center;
}

.error-content {
    animation: fadeInUp 0.8s ease-out;
}

.error-number {
    font-size: clamp(8rem, 20vw, 15rem);
    font-weight: 900;
    font-family: var(--font-heading);
    background: linear-gradient(135deg, var(--primary), var(--accent));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
    margin-bottom: 1rem;
    animation: float 3s ease-in-out infinite;
}

.error-404 h1 {
    font-size: clamp(2rem, 4vw, 3rem);
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.error-404 p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    margin-bottom: 2.5rem;
}

/* ==========================================
   FOOTER - MODERNISÉ
   ========================================== */
.site-footer {
    background: var(--secondary);
    color: var(--gray-300);
    padding: 4rem 2rem 2rem;
    position: relative;
    overflow: hidden;
}

.site-footer::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 1px;
    background: linear-gradient(90deg, transparent, var(--primary), transparent);
}

.footer-container {
    max-width: 1280px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 2fr 1fr 1fr 1fr;
    gap: 3rem;
    margin-bottom: 3rem;
}

/* Footer Brand */
.footer-brand {
    padding-right: 2rem;
}

.footer-logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-family: var(--font-heading);
    font-size: 1.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: 1rem;
}

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

.footer-brand p {
    color: var(--gray-400);
    font-size: 0.9375rem;
    line-height: 1.7;
    margin-bottom: 1.5rem;
}

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

.footer-social a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.05);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-400);
    transition: all var(--transition-base);
    font-size: 1.125rem;
}

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

/* Footer Links */
.footer-links h4 {
    color: white;
    font-size: 1.125rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    font-family: var(--font-heading);
}

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

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

.footer-links a {
    color: var(--gray-400);
    display: flex;
    align-items: center;
    gap: 0.5rem;
    transition: all var(--transition-fast);
    font-size: 0.9375rem;
}

.footer-links a:hover {
    color: white;
    transform: translateX(5px);
}

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

/* Footer Bottom */
.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
}

.footer-bottom-content {
    max-width: 1280px;
    margin: 0 auto;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 0.875rem;
    color: var(--gray-400);
    flex-wrap: wrap;
    gap: 1rem;
}

.footer-made-by {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.footer-made-by i {
    color: var(--primary);
    animation: heartbeat 1.5s ease-in-out infinite;
}

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

/* ==========================================
   RESPONSIVE - HEADER & FOOTER
   ========================================== */
@media (max-width: 1024px) {
    .nav-menu {
        gap: 0.25rem;
    }
    
    .nav-link {
        padding: 0.625rem 1rem;
        font-size: 0.9375rem;
    }
    
    .footer-container {
        grid-template-columns: 1fr 1fr;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .header-container {
        padding: 1rem 1.5rem;
    }
    
    .hamburger {
        display: flex;
    }
    
    .main-nav {
        position: fixed;
        top: 70px;
        left: -100%;
        width: 100%;
        height: calc(100vh - 70px);
        background: white;
        transition: left var(--transition-base);
        display: block;
        padding: 2rem;
        overflow-y: auto;
        box-shadow: 0 10px 40px rgba(0, 0, 0, 0.1);
    }
    
    .main-nav.active {
        left: 0;
    }
    
    .nav-menu {
        flex-direction: column;
        gap: 0;
        width: 100%;
    }
    
    .nav-menu li {
        width: 100%;
        border-bottom: 1px solid var(--gray-200);
    }
    
    .nav-link {
        display: block;
        width: 100%;
        padding: 1.25rem 1rem;
        font-size: 1.125rem;
        text-align: left;
    }
    
    .nav-link::after {
        display: none;
    }
    
    .nav-link.active {
        background: linear-gradient(90deg, rgba(0, 102, 255, 0.1), transparent);
        border-left: 4px solid var(--primary);
    }
    
    .cta-button-header {
        display: none;
    }
    
    /* Ajouter le CTA dans le menu mobile */
    .nav-menu::after {
        content: 'Devis gratuit';
        display: block;
        margin-top: 2rem;
        padding: 1rem 2rem;
        background: linear-gradient(135deg, var(--primary), var(--primary-dark));
        color: white;
        text-align: center;
        border-radius: var(--radius-full);
        font-weight: 700;
        cursor: pointer;
    }
    
    .footer-container {
        grid-template-columns: 1fr;
        gap: 2rem;
    }
    
    .footer-brand {
        padding-right: 0;
    }
    
    .footer-bottom-content {
        flex-direction: column;
        text-align: center;
    }
}

/* ==========================================
   SCROLL PADDING (pour ancres avec header fixe)
   ========================================== */
html {
    scroll-padding-top: 80px;
}

/* ==========================================
   MAIN CONTENT SPACING
   ========================================== */
main {
    padding-top: 70px; /* Hauteur du header */
}

/* ==========================================
   ANIMATIONS SUPPLÉMENTAIRES
   ========================================== */
@keyframes slideDown {
    from {
        opacity: 0;
        transform: translateY(-20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Animation d'apparition du header */
.site-header {
    animation: slideDown 0.5s ease-out;
}

/* ==========================================
   TESTIMONIALS CAROUSEL & PLACEHOLDER
   Styles additionnels pour home.php
   ========================================== */

/* Carousel wrapper */
.testimonials-carousel-wrapper {
    position: relative;
}

/* Carousel navigation */
.carousel-navigation {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2rem;
    margin-top: 3rem;
}

.carousel-btn {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    border: 2px solid var(--primary);
    background: white;
    color: var(--primary);
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    transition: all var(--transition-base);
}

.carousel-btn:hover {
    background: var(--primary);
    color: white;
    transform: scale(1.1);
}

.carousel-btn:disabled {
    opacity: 0.3;
    cursor: not-allowed;
    transform: scale(1);
}

.carousel-dots {
    display: flex;
    gap: 0.75rem;
}

.carousel-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    background: var(--gray-300);
    cursor: pointer;
    transition: all var(--transition-base);
}

.carousel-dot.active {
    background: var(--primary);
    width: 32px;
    border-radius: 6px;
}

.carousel-dot:hover {
    background: var(--primary-light);
}

/* Animation du carousel */
.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
    margin-top: 3rem;
    transition: transform var(--transition-slow);
}

.testimonial-card {
    opacity: 1;
    transition: opacity var(--transition-base);
}

.testimonial-card.hidden {
    display: none;
}

/* ==========================================
   PLACEHOLDER QUAND PAS D'AVIS
   ========================================== */
.testimonials-placeholder {
    max-width: 800px;
    margin: 3rem auto;
    text-align: center;
    padding: 4rem 2rem;
    background: linear-gradient(135deg, rgba(102, 126, 234, 0.05) 0%, rgba(118, 75, 162, 0.05) 100%);
    border-radius: var(--radius-2xl);
    border: 2px dashed var(--gray-300);
}

.placeholder-icon {
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
    background: linear-gradient(135deg, var(--primary-light), var(--primary));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: white;
    animation: float 3s ease-in-out infinite;
}

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

.testimonials-placeholder h3 {
    font-size: clamp(1.5rem, 3vw, 2rem);
    color: var(--text-primary);
    margin-bottom: 1rem;
}

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

.placeholder-features {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    max-width: 500px;
    margin: 0 auto;
}

.placeholder-feature {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1rem 1.5rem;
    background: white;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
}

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

.placeholder-feature span {
    font-size: 1rem;
    font-weight: 500;
    color: var(--text-primary);
    text-align: left;
}

/* ==========================================
   RESPONSIVE
   ========================================== */
@media (max-width: 1024px) {
    .testimonials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
    
    .carousel-navigation {
        gap: 1rem;
    }
    
    .carousel-btn {
        width: 40px;
        height: 40px;
        font-size: 1rem;
    }
    
    .testimonials-placeholder {
        padding: 3rem 1.5rem;
    }
    
    .placeholder-icon {
        width: 80px;
        height: 80px;
        font-size: 2.5rem;
    }
    
    .placeholder-features {
        gap: 0.75rem;
    }
    
    .placeholder-feature {
        padding: 0.875rem 1.25rem;
    }
}