:root {
    --primary: #6C63FF;
    --primary-dark: #5a52d6;
    --secondary: #FF6584;
    --dark: #0F0E17;
    --dark-light: #1A1926;
    --gray: #2A2938;
    --gray-light: #3E3D4D;
    --text: #E4E4E7;
    --text-muted: #A1A0AE;
    --white: #FFFFFF;
    --gradient: linear-gradient(135deg, var(--primary) 0%, var(--secondary) 100%);
}

* { margin: 0; padding: 0; box-sizing: border-box; }
html { scroll-behavior: smooth; }
body { font-family: 'Inter', sans-serif; background-color: var(--dark); color: var(--text); line-height: 1.6; overflow-x: hidden; }

/* Preloader */
.preloader { position: fixed; top: 0; left: 0; width: 100%; height: 100%; background: var(--dark); display: flex; flex-direction: column; justify-content: center; align-items: center; z-index: 10000; transition: opacity 0.5s, visibility 0.5s; }
.preloader.hide { opacity: 0; visibility: hidden; }
.loader { width: 60px; height: 60px; border: 3px solid var(--gray); border-top-color: var(--primary); border-radius: 50%; animation: spin 1s linear infinite; }
.loader-text { margin-top: 20px; font-size: 18px; letter-spacing: 4px; background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
@keyframes spin { to { transform: rotate(360deg); } }

/* Navigation */
.navbar { position: fixed; top: 0; left: 0; width: 100%; padding: 15px 0; z-index: 1000; transition: all 0.3s ease; background: transparent; }
.navbar.scrolled { background: rgba(15, 14, 23, 0.95); backdrop-filter: blur(10px); padding: 12px 0; border-bottom: 1px solid rgba(108, 99, 255, 0.2); }
.nav-container { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: flex; justify-content: space-between; align-items: center; }
.logo { font-size: 24px; font-weight: 700; text-decoration: none; background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.logo-dot { color: var(--secondary); }
.nav-menu { display: flex; list-style: none; gap: 30px; }
.nav-link { text-decoration: none; color: var(--text); font-weight: 500; transition: color 0.3s; position: relative; font-size: 14px; }
.nav-link::after { content: ''; position: absolute; bottom: -5px; left: 0; width: 0; height: 2px; background: var(--gradient); transition: width 0.3s; }
.nav-link:hover::after, .nav-link.active::after { width: 100%; }
.nav-link:hover, .nav-link.active { color: var(--primary); }
.btn-cv { background: var(--gradient); color: white; text-decoration: none; padding: 8px 18px; border-radius: 30px; font-weight: 600; transition: transform 0.3s, box-shadow 0.3s; display: inline-flex; align-items: center; gap: 8px; font-size: 13px; }
.btn-cv:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(108, 99, 255, 0.3); }
.menu-toggle { display: none; flex-direction: column; cursor: pointer; }
.menu-toggle span { width: 25px; height: 3px; background: var(--text); margin: 3px 0; transition: 0.3s; }

/* Hero Section */
.hero { min-height: 100vh; display: flex; align-items: center; position: relative; overflow: hidden; padding: 80px 0 50px; }
.hero-bg { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at 30% 50%, rgba(108, 99, 255, 0.1) 0%, transparent 50%); z-index: 0; }
.hero-content { max-width: 1200px; margin: 0 auto; padding: 0 20px; display: grid; grid-template-columns: 1fr 1fr; gap: 40px; align-items: center; position: relative; z-index: 1; }
.hero-badge { display: inline-block; background: rgba(108, 99, 255, 0.2); padding: 5px 14px; border-radius: 30px; font-size: 12px; color: var(--primary); margin-bottom: 20px; }
.hero-title { font-size: 52px; font-weight: 800; line-height: 1.1; margin-bottom: 20px; }
.title-line { display: block; background: linear-gradient(135deg, var(--white) 0%, var(--primary) 100%); -webkit-background-clip: text; background-clip: text; color: transparent; }
.hero-description { font-size: 16px; color: var(--text-muted); margin-bottom: 28px; }
.hero-buttons { display: flex; gap: 15px; margin-bottom: 40px; flex-wrap: wrap; }
.btn-primary, .btn-secondary { padding: 12px 28px; border-radius: 40px; text-decoration: none; font-weight: 600; transition: all 0.3s; display: inline-flex; align-items: center; gap: 10px; font-size: 14px; }
.btn-primary { background: var(--gradient); color: white; }
.btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(108, 99, 255, 0.3); }
.btn-secondary { border: 2px solid var(--primary); color: var(--primary); }
.btn-secondary:hover { background: var(--primary); color: white; }
.hero-stats { display: flex; gap: 30px; flex-wrap: wrap; }
.stat { display: flex; flex-direction: column; }
.stat-number { font-size: 28px; font-weight: 700; color: var(--primary); }
.stat-label { font-size: 12px; color: var(--text-muted); }
.profile-image-container { display: flex; flex-direction: column; align-items: center; gap: 20px; }
.profile-image { position: relative; width: 220px; height: 220px; border-radius: 50%; overflow: hidden; border: 3px solid var(--primary); box-shadow: 0 0 30px rgba(108, 99, 255, 0.3); }
.profile-image img { width: 100%; height: 100%; object-fit: cover; }
.profile-glow { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at 30% 50%, rgba(108,99,255,0.2), transparent); pointer-events: none; }
.hero-scroll { position: absolute; bottom: 20px; left: 50%; transform: translateX(-50%); text-align: center; animation: bounce 2s infinite; }
.hero-scroll span { display: block; font-size: 10px; margin-bottom: 5px; }
@keyframes bounce { 0%, 100% { transform: translateX(-50%) translateY(0); } 50% { transform: translateX(-50%) translateY(10px); } }

/* Container */
.container { max-width: 1200px; margin: 0 auto; padding: 0 20px; }

/* Section Header */
.section-header { text-align: center; margin-bottom: 40px; }
.section-tag { display: inline-block; background: rgba(108, 99, 255, 0.2); padding: 4px 12px; border-radius: 30px; font-size: 11px; color: var(--primary); margin-bottom: 12px; }
.section-title { font-size: 36px; font-weight: 700; margin-bottom: 12px; }
.gradient-text { background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.section-divider { width: 50px; height: 3px; background: var(--gradient); margin: 15px auto 0; border-radius: 3px; }
.section-subtitle { color: var(--text-muted); max-width: 600px; margin: 15px auto 0; font-size: 14px; }

/* About Section */
.about { padding: 60px 0; }
.about-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); gap: 25px; margin-bottom: 50px; }
.about-card { background: var(--dark-light); padding: 30px 20px; border-radius: 20px; text-align: center; transition: transform 0.3s; }
.about-card:hover { transform: translateY(-5px); }
.about-icon { width: 60px; height: 60px; background: var(--gradient); border-radius: 50%; display: flex; align-items: center; justify-content: center; margin: 0 auto 20px; }
.about-icon i { font-size: 26px; color: white; }
.about-card h3 { font-size: 20px; margin-bottom: 12px; }
.about-card p { color: var(--text-muted); font-size: 14px; }
.formation-section, .skills-section, .languages-section { margin-top: 50px; }
.subsection-title { font-size: 22px; margin-bottom: 25px; display: flex; align-items: center; gap: 10px; flex-wrap: wrap; }
.timeline { display: grid; grid-template-columns: repeat(auto-fill, minmax(260px, 1fr)); gap: 15px; }
.timeline-item { background: var(--dark-light); padding: 15px; border-radius: 12px; }
.timeline-year { font-size: 12px; color: var(--primary); font-weight: 600; margin-bottom: 6px; }
.timeline-content { font-size: 13px; color: var(--text-muted); }
.skills-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.skill-item { background: var(--dark-light); padding: 8px 18px; border-radius: 40px; display: flex; align-items: center; gap: 8px; font-size: 13px; transition: all 0.3s; }
.skill-item:hover { background: var(--gradient); transform: translateY(-2px); }
.languages-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(220px, 1fr)); gap: 15px; }
.language { background: var(--dark-light); padding: 15px; border-radius: 12px; display: flex; justify-content: space-between; align-items: center; flex-wrap: wrap; gap: 10px; }
.lang-name { font-weight: 600; font-size: 14px; }
.lang-level { color: var(--primary); font-size: 12px; }

/* Carousel Logos */
.smooth-carousel { position: relative; width: 100%; overflow: hidden; padding: 15px 0; }
.carousel-track { display: flex; gap: 15px; transition: transform 0.5s cubic-bezier(0.2, 0.9, 0.4, 1.1); }
.carousel-slide { flex: 0 0 240px; background: var(--dark-light); border-radius: 16px; overflow: hidden; cursor: pointer; border: 1px solid rgba(108, 99, 255, 0.2); }
.carousel-slide img { width: 100%; height: 240px; object-fit: cover; transition: transform 0.5s ease; }
.carousel-slide:hover img { transform: scale(1.05); }
.slide-caption { padding: 12px; text-align: center; font-size: 12px; color: var(--text-muted); }
.carousel-nav { position: absolute; top: 50%; transform: translateY(-50%); width: 36px; height: 36px; background: var(--gradient); border: none; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; color: white; font-size: 14px; }
.carousel-nav.prev { left: 5px; }
.carousel-nav.next { right: 5px; }
.carousel-indicators { display: flex; justify-content: center; gap: 8px; margin-top: 20px; }
.indicator { width: 8px; height: 8px; background: var(--gray); border-radius: 50%; cursor: pointer; transition: all 0.3s; }
.indicator.active { background: var(--primary); width: 25px; border-radius: 10px; }

/* Visuels Filters */
.visuel-filters { display: flex; justify-content: center; flex-wrap: wrap; gap: 10px; margin-bottom: 35px; }
.filter-btn { background: transparent; border: 1.5px solid var(--gray); color: var(--text-muted); padding: 8px 18px; border-radius: 40px; cursor: pointer; font-size: 13px; transition: all 0.3s; }
.filter-btn:hover, .filter-btn.active { background: var(--gradient); border-color: transparent; color: white; }
.smooth-grid { display: grid; grid-template-columns: repeat(auto-fill, minmax(280px, 1fr)); gap: 20px; }
.grid-item { background: var(--dark-light); border-radius: 16px; overflow: hidden; cursor: pointer; opacity: 0; transform: translateY(30px); transition: all 0.4s cubic-bezier(0.2, 0.9, 0.4, 1.1); }
.grid-item.visible { opacity: 1; transform: translateY(0); }
.grid-item img { width: 100%; height: 250px; object-fit: cover; transition: transform 0.5s; }
.grid-item:hover img { transform: scale(1.05); }
.grid-overlay { position: absolute; bottom: 0; left: 0; right: 0; background: linear-gradient(to top, rgba(0,0,0,0.9), transparent); padding: 15px; transform: translateY(100%); transition: transform 0.4s; }
.grid-item:hover .grid-overlay { transform: translateY(0); }
.grid-overlay h3 { color: white; font-size: 15px; }
.grid-overlay p { color: var(--primary); font-size: 11px; }

/* Videos Reels */
.videos-grid-reels { display: grid; grid-template-columns: repeat(auto-fill, minmax(240px, 1fr)); gap: 20px; justify-items: center; }
.video-item-reel { background: var(--dark-light); border-radius: 20px; overflow: hidden; opacity: 0; transform: translateY(30px); transition: all 0.4s; width: 100%; max-width: 260px; }
.video-item-reel.visible { opacity: 1; transform: translateY(0); }
.video-thumbnail-reel { position: relative; aspect-ratio: 9 / 16; background: #000; }
.video-thumbnail-reel video { width: 100%; height: 100%; object-fit: cover; }
.video-item-reel h3 { padding: 12px 15px 6px; font-size: 15px; }
.video-item-reel p { padding: 0 15px 15px; color: var(--text-muted); font-size: 12px; }

/* ========== SECTION COMMUNITY MANAGER ========== */
.community-section { padding: 100px 0; background: linear-gradient(135deg, var(--dark) 0%, #0a0a14 100%); position: relative; overflow: hidden; }
.floating-shapes { position: absolute; top: 0; left: 0; width: 100%; height: 100%; overflow: hidden; z-index: 0; pointer-events: none; }
.shape { position: absolute; background: linear-gradient(135deg, rgba(108, 99, 255, 0.08), rgba(255, 101, 132, 0.05)); border-radius: 50%; filter: blur(60px); }
.shape-1 { width: 400px; height: 400px; top: -100px; right: -100px; }
.shape-2 { width: 300px; height: 300px; bottom: 20%; left: -100px; }
.shape-3 { width: 250px; height: 250px; top: 40%; right: 20%; }
.shape-4 { width: 180px; height: 180px; bottom: 10%; right: 15%; }
.shape-5 { width: 350px; height: 350px; top: 60%; left: 30%; }

/* Statistiques */
.community-stats-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 30px; margin-bottom: 70px; position: relative; z-index: 2; }
.stat-card { background: rgba(26, 25, 38, 0.7); backdrop-filter: blur(10px); padding: 35px 25px; border-radius: 28px; text-align: center; transition: all 0.4s; border: 1px solid rgba(108, 99, 255, 0.15); position: relative; }
.stat-card:hover { transform: translateY(-8px); border-color: var(--primary); box-shadow: 0 20px 40px rgba(108, 99, 255, 0.15); }
.stat-icon { margin-bottom: 20px; }
.stat-icon i { font-size: 42px; background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; }
.stat-card .stat-number { font-size: 48px; font-weight: 800; background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; margin-bottom: 10px; line-height: 1; display: inline-block; }
.stat-plus { position: absolute; top: 30px; right: 35px; font-size: 24px; font-weight: 700; background: var(--gradient); -webkit-background-clip: text; background-clip: text; color: transparent; opacity: 0.8; }
.stat-card .stat-label { font-size: 14px; color: var(--text-muted); letter-spacing: 0.5px; }

/* Présentation CM - Vidéos à gauche, photo à droite */
.cm-presentation { display: grid; grid-template-columns: 1.2fr 0.8fr; gap: 50px; margin-bottom: 30px; background: linear-gradient(135deg, rgba(26, 25, 38, 0.6), rgba(26, 25, 38, 0.3)); border-radius: 40px; padding: 40px; border: 1px solid rgba(108, 99, 255, 0.2); position: relative; z-index: 2; backdrop-filter: blur(5px); align-items: center; }

/* Photo style carré */
.cm-presentation-image { position: relative; }
.cm-image-wrapper { position: relative; width: 280px; height: 280px; margin: 0 auto; border-radius: 24px; overflow: hidden; border: 3px solid var(--primary); box-shadow: 0 0 30px rgba(108, 99, 255, 0.3); }
.cm-image-wrapper img { width: 100%; height: 100%; object-fit: cover; transition: transform 0.5s; }
.cm-image-wrapper:hover img { transform: scale(1.02); }
.cm-image-glow { position: absolute; top: 0; left: 0; width: 100%; height: 100%; background: radial-gradient(circle at 30% 40%, rgba(108, 99, 255, 0.2), transparent); pointer-events: none; }
.cm-badge { position: absolute; bottom: 15px; left: 15px; background: var(--gradient); padding: 6px 14px; border-radius: 30px; font-size: 11px; font-weight: 600; color: white; display: flex; align-items: center; gap: 6px; }

/* Carrousel Diagonal 3D */
.cm-video-showcase { position: relative; overflow: hidden; }
.diagonal-carousel-container { position: relative; width: 100%; overflow: hidden; perspective: 1200px; padding: 20px 0; }
.diagonal-carousel { width: 100%; overflow: visible; }
.diagonal-track { display: flex; gap: 20px; transition: transform 0.7s cubic-bezier(0.2, 0.9, 0.4, 1.2); transform-style: preserve-3d; }
.diagonal-slide { flex: 0 0 220px; background: var(--dark-light); border-radius: 20px; overflow: hidden; transition: all 0.4s ease; transform: rotateY(0deg) translateZ(0); border: 1px solid rgba(108, 99, 255, 0.2); cursor: pointer; }
.diagonal-slide:hover { transform: rotateY(6deg) translateZ(25px) scale(1.02); border-color: var(--primary); box-shadow: 0 25px 40px rgba(108, 99, 255, 0.3); }
.diagonal-slide video { width: 100%; aspect-ratio: 9 / 16; object-fit: cover; display: block; }
.carousel-indicators-cm { display: flex; justify-content: center; gap: 10px; margin-top: 25px; }
.cm-indicator { width: 8px; height: 8px; background: var(--gray); border-radius: 50%; cursor: pointer; transition: all 0.3s; }
.cm-indicator.active { background: var(--primary); width: 25px; border-radius: 10px; }
.cm-indicator:hover { background: var(--primary); transform: scale(1.2); }

/* Testimonials */
.testimonials-section { padding: 60px 0; background: var(--dark-light); }
.testimonials-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; }
.testimonial-card { background: var(--dark); border-radius: 20px; padding: 25px; transition: all 0.4s; border: 1px solid rgba(108, 99, 255, 0.1); }
.testimonial-card:hover { transform: translateY(-5px); border-color: rgba(108, 99, 255, 0.3); }
.testimonial-quote i { font-size: 30px; color: var(--primary); opacity: 0.5; margin-bottom: 15px; }
.testimonial-text { color: var(--text-muted); font-size: 13px; line-height: 1.6; margin-bottom: 20px; font-style: italic; }
.testimonial-author { display: flex; align-items: center; gap: 12px; border-top: 1px solid var(--gray); padding-top: 15px; }
.author-avatar { width: 45px; height: 45px; background: var(--gradient); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.author-avatar i { font-size: 20px; color: white; }
.author-info h4 { font-size: 14px; margin-bottom: 3px; }
.author-info p { font-size: 11px; color: var(--primary); margin-bottom: 4px; }
.author-rating i { font-size: 10px; color: #FFD700; margin-right: 1px; }

/* Experience */
.experience-section { padding: 60px 0; background: var(--dark); }
.experience-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(300px, 1fr)); gap: 25px; }
.exp-card { background: var(--dark-light); border-radius: 20px; padding: 25px; transition: transform 0.3s; }
.exp-card:hover { transform: translateY(-5px); }
.exp-header { display: flex; align-items: center; gap: 15px; margin-bottom: 12px; }
.exp-icon { width: 45px; height: 45px; background: var(--gradient); border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.exp-icon i { font-size: 18px; color: white; }
.exp-title h3 { font-size: 18px; margin-bottom: 3px; }
.exp-date { font-size: 11px; color: var(--primary); }
.exp-company { color: var(--text-muted); margin-bottom: 12px; font-size: 13px; }
.exp-list { list-style: none; padding-left: 0; }
.exp-list li { padding: 6px 0; padding-left: 18px; position: relative; color: var(--text-muted); font-size: 13px; }
.exp-list li::before { content: '▹'; position: absolute; left: 0; color: var(--primary); }

/* Contact */
.contact-section { padding: 60px 0; background: var(--dark-light); }
.contact-wrapper { display: grid; grid-template-columns: 1fr 1fr; gap: 40px; }
.contact-info h2 { font-size: 32px; margin: 12px 0 15px; }
.contact-info > p { color: var(--text-muted); margin-bottom: 30px; font-size: 14px; }
.contact-details { margin-bottom: 30px; }
.contact-item { display: flex; align-items: center; gap: 15px; margin-bottom: 20px; }
.contact-item i { width: 42px; height: 42px; background: var(--gradient); border-radius: 50%; display: flex; align-items: center; justify-content: center; font-size: 18px; }
.contact-item h4 { font-size: 14px; margin-bottom: 3px; }
.contact-item a, .contact-item span { color: var(--text-muted); text-decoration: none; font-size: 13px; }
.contact-item a:hover { color: var(--primary); }
.contact-form-wrapper { background: var(--dark); padding: 30px; border-radius: 20px; }
.form-group { position: relative; margin-bottom: 25px; }
.form-group input, .form-group textarea { width: 100%; padding: 10px 0; background: transparent; border: none; border-bottom: 2px solid var(--gray); color: var(--text); font-size: 14px; outline: none; }
.form-group label { position: absolute; left: 0; top: 10px; color: var(--text-muted); transition: all 0.3s; pointer-events: none; font-size: 13px; }
.form-group input:focus ~ label, .form-group input:valid ~ label, .form-group textarea:focus ~ label, .form-group textarea:valid ~ label { top: -15px; font-size: 11px; color: var(--primary); }
.form-group input:focus, .form-group textarea:focus { border-bottom-color: var(--primary); }
.btn-submit { width: 100%; padding: 12px; background: var(--gradient); border: none; border-radius: 40px; color: white; font-weight: 600; cursor: pointer; display: flex; align-items: center; justify-content: center; gap: 8px; transition: all 0.3s; font-size: 14px; }
.btn-submit:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(108, 99, 255, 0.3); }

/* Footer */
.footer { background: var(--dark); padding: 30px 0; text-align: center; border-top: 1px solid var(--gray); }
.footer-logo h3 { font-size: 18px; margin-bottom: 6px; }
.footer-logo p { color: var(--text-muted); font-size: 12px; margin-bottom: 15px; }
.footer-copyright p { color: var(--text-muted); font-size: 11px; }

/* Back to Top */
.back-to-top { position: fixed; bottom: 20px; right: 20px; width: 42px; height: 42px; background: var(--gradient); border: none; border-radius: 50%; cursor: pointer; display: flex; align-items: center; justify-content: center; color: white; font-size: 18px; opacity: 0; visibility: hidden; transition: all 0.3s; z-index: 999; }
.back-to-top.show { opacity: 1; visibility: visible; }

/* Modal */
.modal { display: none; position: fixed; z-index: 10000; left: 0; top: 0; width: 100%; height: 100%; background: rgba(0, 0, 0, 0.9); justify-content: center; align-items: center; }
.modal-content { max-width: 90%; max-height: 90%; object-fit: contain; }
.modal-close { position: absolute; top: 15px; right: 20px; color: white; font-size: 35px; cursor: pointer; }

/* Responsive */
@media (max-width: 968px) {
    .hero-content { grid-template-columns: 1fr; text-align: center; gap: 30px; }
    .hero-stats { justify-content: center; }
    .hero-buttons { justify-content: center; }
    .hero-title { font-size: 42px; }
    .section-title { font-size: 30px; }
    .community-stats-grid { grid-template-columns: repeat(2, 1fr); gap: 20px; }
    .cm-presentation { grid-template-columns: 1fr; padding: 30px; text-align: center; gap: 30px; }
    .cm-presentation-image { order: 2; }
    .cm-video-showcase { order: 1; }
    .cm-image-wrapper { width: 220px; height: 220px; }
    .diagonal-slide { flex: 0 0 180px; }
    .contact-wrapper { grid-template-columns: 1fr; gap: 30px; }
    .testimonials-grid { grid-template-columns: 1fr; }
    .nav-menu { position: fixed; top: 60px; left: -100%; width: 100%; height: calc(100vh - 60px); background: var(--dark-light); flex-direction: column; align-items: center; justify-content: center; transition: left 0.3s; gap: 20px; }
    .nav-menu.active { left: 0; }
    .menu-toggle { display: flex; }
    .menu-toggle.active span:nth-child(1) { transform: rotate(45deg) translate(5px, 5px); }
    .menu-toggle.active span:nth-child(2) { opacity: 0; }
    .menu-toggle.active span:nth-child(3) { transform: rotate(-45deg) translate(7px, -6px); }
}

@media (max-width: 768px) {
    .community-stats-grid { grid-template-columns: 1fr; }
    .stat-card .stat-number { font-size: 36px; }
    .diagonal-slide { flex: 0 0 150px; }
    .smooth-grid { grid-template-columns: 1fr; }
    .videos-grid-reels { grid-template-columns: 1fr; justify-items: center; }
    .experience-grid { grid-template-columns: 1fr; }
    .stat-plus { right: 20px; font-size: 20px; top: 25px; }
}

@media (max-width: 480px) {
    .hero-title { font-size: 32px; }
    .section-title { font-size: 24px; }
    .profile-image { width: 150px; height: 150px; }
    .diagonal-slide { flex: 0 0 130px; }
    .filter-btn { padding: 6px 12px; font-size: 11px; }
}