/* Variables CSS modernes pour une meilleure lisibilité */
:root {
  --bg: #0b0f14;
  --surface: #10161d;
  --surface-2: #0f172a;
  --border: rgba(255,255,255,0.06);

  --text: #e5e7eb;
  --text-muted: #9ca3af;

  --accent: #f5b643;   /* or doux (plus moderne que #fbbf24) */
  --accent-strong: #f29a2e;

  --ring: rgba(245,182,67,0.25);
  --shadow: 0 8px 24px rgba(0,0,0,0.18);
}

/* Reset et styles de base */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

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

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Animations globales optimisées */
@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translate3d(0, 16px, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInLeft {
    from {
        opacity: 0;
        transform: translate3d(-16px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes fadeInRight {
    from {
        opacity: 0;
        transform: translate3d(16px, 0, 0);
    }
    to {
        opacity: 1;
        transform: translate3d(0, 0, 0);
    }
}

@keyframes scaleIn {
    from {
        opacity: 0;
        transform: scale3d(0.98, 0.98, 1);
    }
    to {
        opacity: 1;
        transform: scale3d(1, 1, 1);
    }
}

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

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

/* Navigation avec animations */
.navbar {
    position: fixed;
    top: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    backdrop-filter: blur(20px);
    z-index: 1000;
    padding: 1rem 0;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.nav-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.nav-logo {
    display: flex;
    align-items: center;
    gap: 12px;
    animation: fadeInLeft 0.8s ease-out;
}

.logo-icon {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.logo-icon:hover {
    transform: rotate(5deg) scale(1.1);
    filter: brightness(1.1);
}

.logo-text {
    color: #fbbf24;
    font-weight: 700;
    font-size: 1.5rem;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    transition: all 0.3s ease;
}

.logo-text:hover {
    background: linear-gradient(135deg, #FFD700, #FFA500, #FF6B35);
    -webkit-background-clip: text;
    background-clip: text;
}

.nav-menu {
    display: flex;
    gap: 2rem;
    align-items: center;
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-menu li {
    margin: 0;
}

.nav-menu a {
    text-decoration: none;
    color: #fff;
    font-weight: 500;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    padding: 0.5rem 0;
}

.nav-menu a::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    width: 0;
    height: 2px;
    background: #fbbf24;
    transition: width 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

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

.nav-menu a:hover {
    color: #fbbf24;
    transform: translateY(-2px);
}

.cta-nav {
    background: linear-gradient(135deg, #fbbf24, #f59e0b) !important;
    color: #000 !important;
    padding: 12px 24px !important;
    border-radius: 50px;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(251, 191, 36, 0.3);
    font-weight: 600;
    letter-spacing: 0.5px;
    white-space: nowrap;
    text-decoration: none !important;
}

/* Effet shimmer désactivé temporairement pour debug */

.cta-nav:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 6px 20px rgba(251, 191, 36, 0.4);
    color: #000 !important;
    background: linear-gradient(135deg, #FFD700, #FFA500) !important;
}

.cta-nav::after {
    display: none !important;
}

.hamburger {
    display: none;
    flex-direction: column;
    cursor: pointer;
}

.hamburger span {
    width: 25px;
    height: 3px;
    background: #fff;
    margin: 3px 0;
    transition: 0.3s;
}

/* Hero Section avec animations avancées */
.hero {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 50%, #f093fb 100%);
    background-size: 400% 400%;
    animation: gradientShift 8s ease infinite;
    color: white;
    position: relative;
    overflow: hidden;
    min-height: 100vh;
    display: flex;
    align-items: center;
}

.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 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
    animation: float 6s ease-in-out infinite;
}

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

.hero-content {
    animation: fadeInLeft 0.45s ease-out 0.12s both;
}

.hero-title {
    font-size: 4rem;
    font-weight: 800;
    line-height: 1.1;
    margin-bottom: 1.5rem;
    position: relative;
    min-height: 4.4rem;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.hero-title .highlight {
    color: #fbbf24;
    position: relative;
    display: inline-block;
}

.hero-title .highlight::after {
    content: '';
    position: absolute;
    bottom: -5px;
    left: 0;
    width: 100%;
    height: 4px;
    background: #fbbf24;
    border-radius: 2px;
    animation: scaleIn 0.35s ease-out 0.28s both;
}

.hero-subtitle {
    font-size: 1.4rem;
    margin-bottom: 2rem;
    opacity: 0.9;
    line-height: 1.6;
    animation: fadeInUp 0.42s ease-out 0.18s both;
}

.hero-benefits {
    display: flex;
    gap: 2rem;
    margin-bottom: 2.5rem;
    animation: fadeInUp 0.42s ease-out 0.24s both;
}

.benefit {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-weight: 500;
    transition: transform 0.3s ease;
}

.benefit:hover {
    transform: translateY(-5px);
}

.benefit i {
    color: #fbbf24;
    font-size: 1.2rem;
    animation: float 3s ease-in-out infinite;
}

.hero-cta {
    text-align: center;
    animation: fadeInUp 0.42s ease-out 0.32s both;
}

.btn-primary {
    display: inline-block;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #000;
    padding: 1.2rem 2.5rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    font-size: 1.2rem;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 8px 25px rgba(251, 191, 36, 0.4);
    position: relative;
    overflow: hidden;
}

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

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

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 15px 35px rgba(251, 191, 36, 0.5);
}

.cta-subtitle {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    opacity: 0.8;
    animation: fadeInUp 1s ease-out 1.5s both;
}

.hero-visual {
    display: flex;
    justify-content: center;
    align-items: center;
    animation: fadeInRight 0.45s ease-out 0.18s both;
}

.mockup-container {
    position: relative;
    width: 100%;
    max-width: 450px;
    animation: float 6s ease-in-out infinite;
}

.mockup-screen {
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 25px;
    padding: 2.5rem;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.3);
    position: relative;
    transform: perspective(1000px) rotateY(-5deg) rotateX(5deg);
    transition: transform 0.3s ease;
}

.mockup-screen:hover {
    transform: perspective(1000px) rotateY(-2deg) rotateX(2deg) scale(1.02);
}

.mockup-header {
    height: 25px;
    background: rgba(255, 255, 255, 0.2);
    border-radius: 15px;
    margin-bottom: 1.5rem;
    position: relative;
    overflow: hidden;
}

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

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

.mockup-content {
    display: flex;
    flex-direction: column;
    gap: 1.2rem;
}

.mockup-element {
    height: 18px;
    background: rgba(255, 255, 255, 0.15);
    border-radius: 10px;
    position: relative;
    overflow: hidden;
}

.mockup-element::after {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.2), transparent);
    animation: shimmer 3s infinite;
}

.mockup-element:nth-child(2) {
    width: 80%;
    animation-delay: 0.5s;
}

.mockup-element:nth-child(3) {
    width: 60%;
    animation-delay: 1s;
}

/* Services Section avec animations */
.services {
    padding: 120px 0;
    background: #000;
    color: white;
    position: relative;
}

.services::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 30% 20%, rgba(37, 99, 235, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 70% 80%, rgba(251, 191, 36, 0.1) 0%, transparent 50%);
}

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

.section-header h2 {
    font-size: 3.5rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-header p {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto;
}

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

.service-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.service-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, transparent, rgba(251, 191, 36, 0.1), transparent);
    transition: left 0.5s;
}

.service-card:hover::before {
    left: 100%;
}

.service-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 10px 20px rgba(0,0,0,.18);
    border-color: rgba(251, 191, 36, 0.3);
}

.service-icon {
    width: 100px;
    height: 100px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 2rem;
    position: relative;
    animation: float 4s ease-in-out infinite;
}

.service-icon::after {
    content: '';
    position: absolute;
    top: -5px;
    left: -5px;
    right: -5px;
    bottom: -5px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    z-index: -1;
    opacity: 0.3;
    animation: pulse 2s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% {
        transform: scale(1);
        opacity: 0.3;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.1;
    }
}

.service-icon i {
    font-size: 2.5rem;
    color: #000;
}

.service-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #fff;
}

.service-card p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

/* Offres Section avec animations */
.offres {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    position: relative;
}

.offres::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="white" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23dots)"/></svg>');
}

.offres-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.offre-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 20px;
    padding: 2.5rem;
    position: relative;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.offre-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(37, 99, 235, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

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

.offre-card:hover {
    transform: translateY(-6px) scale(1.01);
    box-shadow: 0 18px 30px rgba(0,0,0,.24);
    border-color: rgba(251, 191, 36, 0.3);
}

.offre-card.featured {
    border-color: #fbbf24;
    transform: scale(1.05);
    box-shadow: 0 20px 40px rgba(251, 191, 36, 0.2);
    position: relative;
    display: flex;
    flex-direction: column;
}

.offre-card.featured::after {
    content: '';
    position: absolute;
    top: -2px;
    left: -2px;
    right: -2px;
    bottom: -2px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 20px;
    z-index: -1;
    animation: borderGlow 2s ease-in-out infinite;
}

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

.offre-badge {
    position: absolute;
    top: -15px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    color: #000;
    padding: 0.75rem 1.5rem;
    border-radius: 25px;
    font-size: 0.9rem;
    font-weight: 700;
    box-shadow: 0 5px 15px rgba(251, 191, 36, 0.3);
}

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

.offre-header h3 {
    font-size: 2rem;
    font-weight: 800;
    color: #fff;
    margin-bottom: 1rem;
}

.price {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 0.25rem;
    margin-bottom: 0.5rem;
}

.currency {
    font-size: 1.5rem;
    font-weight: 600;
    color: rgba(255, 255, 255, 0.7);
}

.amount {
    font-size: 4rem;
    font-weight: 800;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.price-mad {
  margin-top: 4px;
  margin-bottom: 8px;
  text-align: center;
  font-size: 0.95rem;
  color: rgba(255, 255, 255, 0.85);
}

.offre-card:not(.featured) .price-mad {
  color: rgba(255, 255, 255, 0.8);
}

.offre-card.featured .price-mad {
  color: #ffffff;
  text-shadow: 0 1px 6px rgba(0, 0, 0, 0.35);
}

.offre-subtitle {
    color: rgba(255, 255, 255, 0.7);
    font-size: 1rem;
}

.offre-features {
    list-style: none;
    margin-bottom: 2.5rem;
    position: relative;
    z-index: 2;
}

.offre-features li {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 0.75rem 0;
    color: rgba(255, 255, 255, 0.9);
    transition: transform 0.3s ease;
}

.offre-features li:hover {
    transform: translateX(10px);
}

.offre-features i {
    color: #10b981;
    font-size: 1.2rem;
    animation: pulse 2s ease-in-out infinite;
}

.btn-secondary {
    display: inline-block;
    background: transparent;
    color: #fbbf24;
    border: 2px solid #fbbf24;
    padding: 1rem 2rem;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    width: 100%;
    text-align: center;
    position: relative;
    overflow: hidden;
    z-index: 2;
    margin-top: auto;
}

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

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

.btn-secondary:hover {
    background: #fbbf24;
    color: #000;
    transform: translateY(-2px);
    box-shadow: 0 8px 18px rgba(251,191,36,.25);
}

/* Témoignages Section avec animations */
.temoignages {
    padding: 120px 0;
    background: #000;
    color: white;
    position: relative;
}

.temoignages::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at 20% 80%, rgba(251, 191, 36, 0.1) 0%, transparent 50%),
                radial-gradient(circle at 80% 20%, rgba(37, 99, 235, 0.1) 0%, transparent 50%);
}

.temoignages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 2.5rem;
    margin-top: 4rem;
    position: relative;
    z-index: 2;
}

.temoignage-card {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 2.5rem;
    border-radius: 20px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.temoignage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 4px;
    height: 100%;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    transform: scaleY(0);
    transition: transform 0.3s ease;
}

.temoignage-card:hover::before {
    transform: scaleY(1);
}

.temoignage-card:hover {
    transform: translateY(-4px) scale(1.005);
    box-shadow: 0 14px 24px rgba(0, 0, 0, 0.2);
    border-color: rgba(251, 191, 36, 0.3);
}

.temoignage-content {
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.temoignage-content p {
    font-style: italic;
    color: rgba(255, 255, 255, 0.9);
    line-height: 1.7;
    font-size: 1.2rem;
    position: relative;
}

.temoignage-content p::before {
    content: '"';
    font-size: 4rem;
    color: #fbbf24;
    position: absolute;
    top: -20px;
    left: -20px;
    opacity: 0.3;
}

.temoignage-author {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    position: relative;
    z-index: 2;
}

.author-avatar {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    animation: float 4s ease-in-out infinite;
    flex-shrink: 0;
    aspect-ratio: 1;
}

.author-avatar i {
    color: #000;
    font-size: 1.5rem;
}

.author-info h4 {
    font-weight: 700;
    color: #fff;
    margin-bottom: 0.25rem;
    font-size: 1.1rem;
}

.author-info p {
    color: rgba(255, 255, 255, 0.7);
    font-size: 0.9rem;
}

/* Contact Section avec animations */
.contact {
    padding: 120px 0;
    background: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    color: white;
    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="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="white" stroke-width="0.5" opacity="0.1"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
}

.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    position: relative;
    z-index: 2;
}

.contact-info h2 {
    font-size: 3.5rem;
    font-weight: 800;
    margin-bottom: 2rem;
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-info p {
    font-size: 1.3rem;
    margin-bottom: 2.5rem;
    opacity: 0.9;
    line-height: 1.6;
}

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

.benefit-item {
    display: flex;
    align-items: center;
    gap: 1rem;
    transition: transform 0.3s ease;
}

.benefit-item:hover {
    transform: translateX(10px);
}

.benefit-item i {
    color: #fbbf24;
    font-size: 1.5rem;
    animation: float 3s ease-in-out infinite;
}

.contact-form {
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 3rem;
    border-radius: 25px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    position: relative;
    overflow: hidden;
}

.contact-form::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(251, 191, 36, 0.1), rgba(37, 99, 235, 0.1));
    opacity: 0;
    transition: opacity 0.3s ease;
}

.contact-form:hover::before {
    opacity: 1;
}

.form-group {
    margin-bottom: 2rem;
    position: relative;
    z-index: 2;
}

.form-group input,
.form-group select,
.form-group textarea {
    width: 100%;
    padding: 1.2rem;
    background: rgba(255, 255, 255, 0.1);
    border: 2px solid rgba(255, 255, 255, 0.2);
    border-radius: 12px;
    font-size: 1rem;
    color: white;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    font-family: inherit;
}

.form-group input::placeholder,
.form-group textarea::placeholder {
    color: rgba(255, 255, 255, 0.6);
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus {
    outline: none;
    border-color: #fbbf24;
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-2px);
    box-shadow: 0 10px 25px rgba(251, 191, 36, 0.2);
}

.form-group textarea {
    resize: vertical;
    min-height: 120px;
}

/* Footer avec animations */
.footer {
    background: #000;
    color: white;
    padding: 4rem 0 2rem;
    position: relative;
}

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

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 3rem;
    margin-bottom: 3rem;
    position: relative;
    z-index: 2;
}

.footer-section h3,
.footer-section h4 {
    margin-bottom: 1.5rem;
    color: #fbbf24;
    font-weight: 700;
}

.footer-section p {
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.6;
}

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

.footer-section ul li {
    margin-bottom: 0.75rem;
    transition: transform 0.3s ease;
}

.footer-section ul li:hover {
    transform: translateX(5px);
}

.footer-section ul li a {
    color: rgba(255, 255, 255, 0.7);
    text-decoration: none;
    transition: color 0.3s ease;
}

.footer-section ul li a:hover {
    color: #fbbf24;
}

.footer-section ul li i {
    margin-right: 0.75rem;
    color: #fbbf24;
    animation: float 3s ease-in-out infinite;
}

.footer-bottom {
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    padding-top: 2rem;
    text-align: center;
    color: rgba(255, 255, 255, 0.5);
    position: relative;
    z-index: 2;
}

/* Responsive Design avec animations */
@media (max-width: 1200px) {
    .services-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    /* Header mobile */
    .nav-container {
        padding: 0 15px;
    }
    
    .nav-logo {
        flex: 1;
    }
    
    .logo-text {
        font-size: 1.3rem;
    }
    
    .logo-icon {
        width: 35px;
        height: 35px;
    }
    
    .nav-menu {
        display: none;
        position: fixed;
        top: 80px;
        left: 0;
        width: 100%;
        height: calc(100vh - 80px);
        background: rgba(0, 0, 0, 0.95);
        backdrop-filter: blur(10px);
        flex-direction: column;
        justify-content: flex-start;
        align-items: center;
        padding-top: 3rem;
        gap: 2rem;
        z-index: 1000;
        list-style: none;
        margin: 0;
    }
    
    .nav-menu.active {
        display: flex;
    }
    
    .nav-menu li {
        width: 100%;
        text-align: center;
    }
    
    .nav-menu a {
        display: block;
        padding: 1rem 2rem;
        font-size: 1.2rem;
        width: 100%;
    }
    
    .cta-nav {
        margin-top: 1rem;
        padding: 15px 30px !important;
        font-size: 1.1rem !important;
    }
    
    .hamburger {
        display: flex;
        flex-direction: column;
        cursor: pointer;
        gap: 4px;
        padding: 5px;
        background: none;
        border: none;
    }
    
    .hamburger span {
        width: 25px;
        height: 3px;
        background: #fbbf24;
        transition: all 0.3s ease;
        border-radius: 2px;
    }
    
    .hamburger.active span:nth-child(1) {
        transform: rotate(45deg) translate(7px, 7px);
    }
    
    .hamburger.active span:nth-child(2) {
        opacity: 0;
    }
    
    .hamburger.active span:nth-child(3) {
        transform: rotate(-45deg) translate(7px, -7px);
    }
    
    /* Calendly mobile fix */
    .calendly-inline-widget {
        min-width: 100% !important;
        width: 100% !important;
        max-width: 100% !important;
        margin: 0 !important;
        padding: 0 !important;
        height: 600px !important;
    }
    
    .contact-form {
        max-width: 100%;
        margin: 0;
        padding: 0;
    }
    
    .hero-container {
        grid-template-columns: 1fr;
        text-align: center;
        gap: 3rem;
    }
    
    .hero-title {
        font-size: 2.5rem;
        min-height: 3rem;
    }
    
    .hero-benefits {
        flex-direction: column;
        gap: 1rem;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
        gap: 3rem;
    }
    
    .services-grid,
    .offres-grid,
    .temoignages-grid {
        grid-template-columns: 1fr;
    }
    
    .offre-card.featured {
        transform: none;
    }
    
    .section-header h2 {
        font-size: 2.5rem;
    }
    
    .contact-info h2 {
        font-size: 2.5rem;
    }
    
    /* Témoignages mobile */
    .author-avatar {
        width: 50px;
        height: 50px;
        flex-shrink: 0;
    }
    
    .author-avatar i {
        font-size: 1.3rem;
    }
    
    .author-info {
        flex: 1;
        min-width: 0;
    }
    
    .testimonial-author {
        gap: 1rem;
    }
}

@media (max-width: 480px) {
    /* Header ultra-mobile */
    .nav-container {
        padding: 0 10px;
    }
    
    .logo-text {
        font-size: 1.1rem;
    }
    
    .logo-icon {
        width: 30px;
        height: 30px;
    }
    
    .nav-menu {
        top: 70px;
        height: calc(100vh - 70px);
        padding-top: 2rem;
    }
    
    .nav-menu a {
        font-size: 1.1rem;
        padding: 0.8rem 1.5rem;
    }
    
    .cta-nav {
        padding: 12px 25px !important;
        font-size: 1rem !important;
    }
    
    /* Calendly ultra-mobile */
    .calendly-inline-widget {
        height: 500px !important;
        border-radius: 10px !important;
        margin: 0 !important;
        overflow: hidden !important;
    }
    
    .contact-content {
        padding: 0 10px;
    }
    
    .contact-form {
        padding: 0;
        margin: 0;
    }
    
    /* Container général mobile */
    .container {
        padding: 0 15px;
    }
    
    /* Titres mobile */
    .hero-title {
        font-size: 2rem;
    }
    
    .section-header h2 {
        font-size: 2rem;
    }
    
    .contact-info h2 {
        font-size: 2rem;
    }
    
    /* Boutons mobile */
    .btn-primary {
        padding: 1rem 2rem;
        font-size: 1rem;
    }
    
    .btn-primary,
    .btn-secondary {
        margin-top: auto;
    }
    
    /* Menu mobile padding fix */
    .nav-menu.active {
        animation: slideDown 0.3s ease-out;
    }
}

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

/* Animations au scroll améliorées */
.animate-on-scroll {
    opacity: 0;
    transform: translateY(16px);
    transition: all 0.45s cubic-bezier(0.22, 1, 0.36, 1);
}

.animate-on-scroll.animated {
    opacity: 1;
    transform: translateY(0);
}

/* Smooth scrolling */
html {
    scroll-behavior: smooth;
}

/* Accessibilité */
.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

/* Navigation liste - styles de base déjà définis plus haut */

/* Respect des préférences utilisateur pour les animations réduites */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
        scroll-behavior: auto !important;
    }
    
    .service-icon,
    .mockup-container,
    .author-avatar {
        animation: none !important;
        transform: none !important;
    }
}

/* Scrollbar personnalisée */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #000;
}

::-webkit-scrollbar-thumb {
    background: linear-gradient(135deg, #fbbf24, #f59e0b);
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: linear-gradient(135deg, #f59e0b, #d97706);
} 

/* Calendly responsive fixes */
.calendly-inline-widget {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(251, 191, 36, 0.1);
}

.contact-form {
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    position: relative;
}

/* Override des styles Calendly */
.calendly-inline-widget iframe {
    width: 100% !important;
    max-width: 100% !important;
    border-radius: 15px;
}

/* Correction du décalage Calendly */
.calendly-inline-widget,
.calendly-inline-widget * {
    box-sizing: border-box !important;
} 

.offre-card.featured .price .amount {
    background: none !important;
    -webkit-text-fill-color: #ffffff !important;
    color: #ffffff !important;
    text-shadow: 0 2px 10px rgba(0, 0, 0, 0.4);
}

.offre-card.featured .price .currency {
    color: rgba(255, 255, 255, 0.95) !important;
} 

/* Bouton de la carte Pro (featured) – version charte orange/noir */
.offre-card.featured .btn-primary {
  background: linear-gradient(135deg, #0f172a, #111827) !important; /* noir profond */
  color: #fbbf24 !important; /* or de la charte */
  border: 1px solid #fbbf24 !important;
  text-shadow: 0 1px 4px rgba(0, 0, 0, 0.35);
  box-shadow: 0 8px 24px rgba(251, 191, 36, 0.2);
}

.offre-card.featured .btn-primary:hover {
  transform: translateY(-2px) scale(1.02);
  background: linear-gradient(135deg, #0b1220, #0f172a) !important;
  box-shadow: 0 12px 32px rgba(251, 191, 36, 0.3);
} 

/* Section Hébergement Premium */
.hebergement-section {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg) 0%, #0d1320 100%);
    position: relative;
    overflow: hidden;
}

.hebergement-section::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.15;
    pointer-events: none;
}

.hebergement-content {
    max-width: 900px;
    margin: 0 auto;
}

.hebergement-card {
    background: #1a1f2e;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 48px;
    box-shadow: 0 8px 24px rgba(0,0,0,0.18);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.hebergement-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--accent), var(--accent-strong));
}

.hebergement-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 20px 40px rgba(0,0,0,0.25);
    border-color: var(--accent);
}

.hebergement-icon {
    width: 80px;
    height: 80px;
    background: radial-gradient(circle at 50% 50%, rgba(245,182,67,0.12), rgba(0,0,0,0) 60%);
    border: 1px solid var(--border);
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 32px;
    color: var(--accent);
}

.hebergement-details h3 {
    font-size: 28px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 16px;
    line-height: 1.2;
}

.hebergement-description {
    font-size: 18px;
    color: #d1d5db;
    line-height: 1.6;
    margin-bottom: 32px;
}

.hebergement-features {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 16px;
    margin-bottom: 40px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 16px;
    background: #0f172a;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    transition: all 0.2s ease;
}

.feature-item:hover {
    border-color: var(--accent);
    background: rgba(245,182,67,0.05);
}

.feature-icon {
    font-size: 20px;
    flex-shrink: 0;
}

.feature-item span:last-child {
    color: #ffffff;
    font-weight: 500;
    font-size: 15px;
}

.hebergement-pricing {
    text-align: center;
    margin-bottom: 32px;
    padding: 24px;
    background: #0f172a;
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 16px;
}

.price-display {
    display: flex;
    align-items: baseline;
    justify-content: center;
    gap: 4px;
    margin-bottom: 8px;
}

.price-amount {
    font-size: 48px;
    font-weight: 800;
    color: var(--accent);
    line-height: 1;
}

.price-currency {
    font-size: 24px;
    font-weight: 700;
    color: var(--accent);
}

.price-period {
    font-size: 18px;
    color: #9ca3af;
    font-weight: 500;
}

.price-mad {
    font-size: 16px;
    color: #9ca3af;
    margin-bottom: 12px;
}

.price-note {
    font-size: 14px;
    color: #9ca3af;
    font-weight: 500;
}

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

.hebergement-btn {
    font-size: 18px;
    padding: 16px 32px;
    font-weight: 600;
    margin-bottom: 12px;
}

.cta-note {
    font-size: 14px;
    color: #9ca3af;
    font-weight: 500;
}

/* Responsive pour hébergement */
@media (max-width: 768px) {
    .hebergement-section {
        padding: 60px 0;
    }
    
    .hebergement-card {
        padding: 32px 24px;
        margin: 0 16px;
    }
    
    .hebergement-icon {
        width: 64px;
        height: 64px;
        margin-bottom: 24px;
    }
    
    .hebergement-details h3 {
        font-size: 24px;
    }
    
    .hebergement-description {
        font-size: 16px;
    }
    
    .hebergement-features {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .feature-item {
        padding: 10px 14px;
    }
    
    .price-amount {
        font-size: 36px;
    }
    
    .price-currency {
        font-size: 20px;
    }
    
    .hebergement-btn {
        font-size: 16px;
        padding: 14px 28px;
    }
}

@media (max-width: 480px) {
    .hebergement-card {
        padding: 24px 20px;
    }
    
    .hebergement-details h3 {
        font-size: 22px;
    }
    
    .hebergement-description {
        font-size: 15px;
    }
    
    .price-amount {
        font-size: 32px;
    }
    
    .hebergement-btn {
        width: 100%;
    }
} 

/* Section Pourquoi nous choisir */
.pourquoi-nous {
    padding: 80px 0;
    background: linear-gradient(180deg, var(--bg) 0%, #0d1320 100%);
    position: relative;
    overflow: hidden;
}

.pourquoi-nous::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="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="%23ffffff" opacity="0.02"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.15;
    pointer-events: none;
}

.avantages-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 24px;
    margin-top: 48px;
}

.avantage-card {
    background: #1a1f2e;
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 16px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.avantage-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, var(--accent), var(--accent-strong));
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.avantage-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 16px 32px rgba(0,0,0,0.25);
    border-color: var(--accent);
}

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

.avantage-icon {
    width: 64px;
    height: 64px;
    background: radial-gradient(circle at 50% 50%, rgba(245,182,67,0.12), rgba(0,0,0,0) 60%);
    border: 1px solid rgba(255,255,255,0.08);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--accent);
    font-size: 24px;
    transition: all 0.3s ease;
}

.avantage-card:hover .avantage-icon {
    background: radial-gradient(circle at 50% 50%, rgba(245,182,67,0.2), rgba(0,0,0,0) 60%);
    border-color: var(--accent);
    transform: scale(1.1);
}

.avantage-card h3 {
    font-size: 20px;
    font-weight: 700;
    color: #ffffff;
    margin-bottom: 12px;
    line-height: 1.3;
}

.avantage-card p {
    font-size: 15px;
    color: #d1d5db;
    line-height: 1.6;
    margin: 0;
}

/* Responsive pour pourquoi-nous */
@media (max-width: 768px) {
    .pourquoi-nous {
        padding: 60px 0;
    }
    
    .avantages-grid {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 32px;
    }
    
    .avantage-card {
        padding: 24px 20px;
    }
    
    .avantage-icon {
        width: 56px;
        height: 56px;
        font-size: 20px;
        margin-bottom: 16px;
    }
    
    .avantage-card h3 {
        font-size: 18px;
    }
    
    .avantage-card p {
        font-size: 14px;
    }
}

@media (max-width: 480px) {
    .avantage-card {
        padding: 20px 16px;
    }
    
    .avantage-card h3 {
        font-size: 16px;
    }
} 