/* ═══════════════════════════════════════════════════════════════
   ABOUT US PAGE - STYLES EXTERNALISÉS
   Fichier: assets/css/about.css
   ═══════════════════════════════════════════════════════════════ */

/* ═══════════════════════════════════════════════════════════════
   GLOBAL OVERFLOW FIX
   ═══════════════════════════════════════════════════════════════ */
html, body {
    max-width: 100vw;
    overflow-x: hidden;
}

/* ═══════════════════════════════════════════════════════════════
   HERO SECTION - ULTRA STYLÉ PREMIUM
   ═══════════════════════════════════════════════════════════════ */

.hero-about {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 120px 2rem 80px 2rem;
    overflow: visible;
    background: linear-gradient(135deg, 
        #0f172a 0%, 
        #1e293b 25%, 
        #334155 50%, 
        #1e293b 75%, 
        #0f172a 100%);
    background-size: 400% 400%;
    animation: heroGradientFlow 20s ease infinite;
}

@keyframes heroGradientFlow {
    0% { background-position: 0% 50%; }
    50% { background-position: 100% 50%; }
    100% { background-position: 0% 50%; }
}

.hero-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 0;
    pointer-events: none;
    overflow: hidden;
    background-image: 
        linear-gradient(rgba(59, 130, 246, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(59, 130, 246, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    animation: gridPulse 10s ease-in-out infinite;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 50%, black 40%, transparent 100%);
}

@keyframes gridPulse {
    0%, 100% { opacity: 0.3; }
    50% { opacity: 0.6; }
}

.hero-about::after {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    top: -10%;
    left: -5%;
    border-radius: 50%;
    background: radial-gradient(circle, 
        rgba(59, 130, 246, 0.6) 0%, 
        rgba(99, 102, 241, 0.4) 35%, 
        transparent 70%);
    filter: blur(120px);
    opacity: 0.6;
    animation: floatOrb1 25s ease-in-out infinite;
    mix-blend-mode: screen;
    z-index: 0;
}

@keyframes floatOrb1 {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% { 
        transform: translate(30px, -50px) scale(1.1);
        opacity: 0.8;
    }
    50% { 
        transform: translate(-20px, -80px) scale(0.95);
        opacity: 0.7;
    }
    75% { 
        transform: translate(40px, -30px) scale(1.05);
        opacity: 0.65;
    }
}

.hero-about .container-fluid::before {
    content: '';
    position: absolute;
    width: 550px;
    height: 550px;
    bottom: -15%;
    right: -10%;
    border-radius: 50%;
    background: radial-gradient(circle, 
        rgba(139, 92, 246, 0.6) 0%, 
        rgba(168, 85, 247, 0.4) 35%, 
        transparent 70%);
    filter: blur(120px);
    opacity: 0.6;
    animation: floatOrb2 30s ease-in-out infinite -5s;
    mix-blend-mode: screen;
    z-index: 0;
    pointer-events: none;
}

@keyframes floatOrb2 {
    0%, 100% { 
        transform: translate(0, 0) scale(1);
        opacity: 0.6;
    }
    25% { 
        transform: translate(-30px, 50px) scale(1.1);
        opacity: 0.8;
    }
    50% { 
        transform: translate(20px, 80px) scale(0.95);
        opacity: 0.7;
    }
    75% { 
        transform: translate(-40px, 30px) scale(1.05);
        opacity: 0.65;
    }
}

.hero-about .container-fluid {
    position: relative;
    z-index: 1;
    width: 100%;
    max-width: 1400px;
    margin: 0 auto;
    height: auto;
    overflow: visible;
}

.hero-about-content {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2rem;
    overflow: visible;
    height: auto;
}

.hero-about .about-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 0.75rem 1.5rem;
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 50px;
    color: white;
    font-size: 0.9375rem;
    font-weight: 600;
    letter-spacing: 0.3px;
    box-shadow: 
        0 8px 32px rgba(59, 130, 246, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.hero-about .about-badge::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.1), 
        transparent);
    transition: left 0.6s;
}

.hero-about .about-badge:hover::before {
    left: 100%;
}

.hero-about .about-badge:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-2px);
    box-shadow: 
        0 12px 48px rgba(59, 130, 246, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.hero-about .about-badge i {
    font-size: 1.125rem;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% { opacity: 1; transform: scale(1) rotate(0deg); }
    50% { opacity: 0.8; transform: scale(1.1) rotate(10deg); }
}

.hero-about h1 {
    font-size: clamp(2.75rem, 6vw, 5rem);
    font-weight: 900;
    line-height: 1.1;
    color: white;
    margin: 0;
    letter-spacing: -0.03em;
    text-shadow: 
        0 4px 20px rgba(0, 0, 0, 0.5),
        0 0 60px rgba(59, 130, 246, 0.3);
    animation: titleReveal 1s cubic-bezier(0.16, 1, 0.3, 1);
    text-align: center;
}

@keyframes titleReveal {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.hero-about .highlight-gradient {
    background: linear-gradient(135deg, 
        #60a5fa 0%, 
        #818cf8 25%, 
        #a78bfa 50%, 
        #c084fc 75%, 
        #e879f9 100%);
    background-size: 200% auto;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    animation: gradientShine 8s linear infinite;
    filter: drop-shadow(0 0 40px rgba(168, 85, 247, 0.5));
    display: inline-block;
}

@keyframes gradientShine {
    0% { background-position: 0% center; }
    100% { background-position: 200% center; }
}

.hero-about p {
    font-size: clamp(1.125rem, 2vw, 1.375rem);
    line-height: 1.7;
    color: rgba(255, 255, 255, 0.85);
    margin: 0;
    max-width: 800px;
    text-shadow: 0 2px 12px rgba(0, 0, 0, 0.3);
    font-weight: 400;
    text-align: center;
}

/* Hero Stats Cards */
.hero-stats {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(180px, 1fr));
    gap: 1.5rem;
    max-width: 900px;
    margin: 2rem auto 0;
    width: 100%;
}

.hero-stat-card {
    background: rgba(255, 255, 255, 0.08);
    backdrop-filter: blur(20px) saturate(180%);
    border: 1px solid rgba(255, 255, 255, 0.15);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    box-shadow: 
        0 8px 32px rgba(59, 130, 246, 0.15),
        inset 0 1px 0 rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    position: relative;
    overflow: hidden;
}

.hero-stat-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.1), 
        transparent);
    transition: left 0.6s;
}

.hero-stat-card:hover::before {
    left: 100%;
}

.hero-stat-card:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: rgba(255, 255, 255, 0.25);
    transform: translateY(-8px);
    box-shadow: 
        0 12px 48px rgba(59, 130, 246, 0.25),
        inset 0 1px 0 rgba(255, 255, 255, 0.15);
}

.hero-stat-value {
    font-size: 2.5rem;
    font-weight: 900;
    color: white;
    margin-bottom: 0.5rem;
    text-shadow: 
        0 2px 12px rgba(0, 0, 0, 0.3),
        0 0 30px rgba(59, 130, 246, 0.5);
}

.hero-stat-label {
    font-size: 0.9375rem;
    color: rgba(255, 255, 255, 0.8);
    font-weight: 600;
}

/* ═══════════════════════════════════════════════════════════════
   MISSION & VISION SECTION
   ═══════════════════════════════════════════════════════════════ */

.mission-vision-section {
    padding: 100px 1rem;
    background: linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

body.dark-mode .mission-vision-section {
    background: linear-gradient(180deg, #0f172a 0%, #1e293b 100%);
}

.mission-vision-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(450px, 1fr));
    gap: 3rem;
    max-width: 1200px;
    margin: 0 auto;
}

.mission-card, .vision-card {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px) saturate(180%);
    border-radius: 32px;
    padding: 3.5rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.1),
        0 0 0 1px rgba(255, 255, 255, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(255, 255, 255, 0.5);
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

body.dark-mode .mission-card,
body.dark-mode .vision-card {
    background: rgba(30, 41, 59, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.mission-card:hover,
.vision-card:hover {
    transform: translateY(-12px);
    box-shadow: 
        0 30px 80px rgba(59, 130, 246, 0.2),
        0 0 0 1px rgba(59, 130, 246, 0.3);
}

.mission-icon, .vision-icon {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, #3b82f6, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    color: white;
    margin-bottom: 2rem;
    box-shadow: 0 12px 36px rgba(59, 130, 246, 0.3);
    position: relative;
    z-index: 1;
}

.mission-card h2,
.vision-card h2 {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #3B82F6, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.mission-card p,
.vision-card p {
    font-size: 1.125rem;
    line-height: 1.9;
    color: var(--text-secondary);
    margin-bottom: 1.5rem;
    position: relative;
    z-index: 1;
}

/* ═══════════════════════════════════════════════════════════════
   WHY CHOOSE US SECTION
   ═══════════════════════════════════════════════════════════════ */

.why-choose-section {
    padding: 100px 1rem;
    background: var(--bg-primary);
    position: relative;
}

.section-header-custom {
    text-align: center;
    margin-bottom: 3rem;
}

.section-header-custom h2 {
    font-size: 3rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.section-header-custom p {
    font-size: 1.25rem;
    color: var(--text-secondary);
    max-width: 700px;
    margin: 0 auto;
}

.why-choose-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.why-card {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 2.5rem;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.why-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #06b6d4, #3b82f6, #8b5cf6);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.why-card:hover::before {
    transform: scaleX(1);
}

.why-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(59, 130, 246, 0.2),
        0 0 0 1px rgba(59, 130, 246, 0.3);
}

.why-icon-wrapper {
    width: 70px;
    height: 70px;
    border-radius: 16px;
    background: linear-gradient(135deg, #06b6d4, #8b5cf6);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
    box-shadow: 
        0 10px 30px rgba(6, 182, 212, 0.3),
        inset 0 -2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.why-card:hover .why-icon-wrapper {
    transform: rotateY(360deg) scale(1.1);
}

.why-icon-wrapper i {
    font-size: 2rem;
    color: white;
}

.why-card h3 {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.why-card p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Swipe Indicator (Hidden on Desktop) */
.swipe-indicator {
    display: none;
    text-align: center;
    margin-top: 2rem;
    color: var(--text-secondary);
    font-size: 0.9375rem;
    font-weight: 600;
}

.swipe-indicator i {
    font-size: 1.125rem;
    color: var(--ml-primary);
}

/* ═══════════════════════════════════════════════════════════════
   TECHNOLOGY SECTION
   ═══════════════════════════════════════════════════════════════ */

.technology-section {
    padding: 100px 1rem;
    background: linear-gradient(135deg, #06b6d4 0%, #3b82f6 50%, #8b5cf6 100%);
    position: relative;
    overflow: hidden;
}

.technology-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath d='M11 18c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm48 25c3.866 0 7-3.134 7-7s-3.134-7-7-7-7 3.134-7 7 3.134 7 7 7zm-43-7c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm63 31c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM34 90c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zm56-76c1.657 0 3-1.343 3-3s-1.343-3-3-3-3 1.343-3 3 1.343 3 3 3zM12 86c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm28-65c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm23-11c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-6 60c2.21 0 4-1.79 4-4s-1.79-4-4-4-4 1.79-4 4 1.79 4 4 4zm29 22c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zM32 63c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm57-13c2.76 0 5-2.24 5-5s-2.24-5-5-5-5 2.24-5 5 2.24 5 5 5zm-9-21c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM60 91c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM35 41c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2zM12 60c1.105 0 2-.895 2-2s-.895-2-2-2-2 .895-2 2 .895 2 2 2z' fill='%23ffffff' fill-opacity='0.05' fill-rule='evenodd'/%3E%3C/svg%3E");
    opacity: 0.4;
}

.tech-content {
    max-width: 1100px;
    margin: 0 auto;
    background: rgba(255, 255, 255, 0.95);
    border-radius: 32px;
    padding: 4rem;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
    position: relative;
    z-index: 1;
    overflow: visible;
    height: auto;
}

body.dark-mode .tech-content {
    background: rgba(30, 41, 59, 0.95);
}

.tech-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
    margin-top: 3rem;
    overflow: visible;
    height: auto;
}

.tech-item {
    padding: 2rem;
    background: linear-gradient(135deg, rgba(6, 182, 212, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 20px;
    border: 2px solid rgba(59, 130, 246, 0.2);
    transition: all 0.3s ease;
    overflow: visible;
    height: auto;
}

.tech-item:hover {
    transform: translateY(-8px);
    border-color: rgba(59, 130, 246, 0.5);
    box-shadow: 0 12px 36px rgba(59, 130, 246, 0.2);
}

.tech-item h4 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.75rem;
}

.tech-item h4 i {
    margin-right: 0.5rem;
    color: #3b82f6;
}

.tech-item p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

/* ═══════════════════════════════════════════════════════════════
   VALUES SECTION
   ═══════════════════════════════════════════════════════════════ */

.values-section {
    padding: 100px 1rem;
    background: var(--bg-primary);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: var(--card-bg);
    border-radius: 24px;
    padding: 3rem;
    box-shadow: 
        0 10px 40px rgba(0, 0, 0, 0.08),
        inset 0 1px 0 rgba(255, 255, 255, 0.5);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, #3B82F6, #8B5CF6);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.5s ease;
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-card:hover {
    transform: translateY(-12px) scale(1.02);
    box-shadow: 
        0 20px 60px rgba(59, 130, 246, 0.2),
        0 0 0 1px rgba(59, 130, 246, 0.3);
}

.value-icon-wrapper {
    width: 80px;
    height: 80px;
    border-radius: 20px;
    background: linear-gradient(135deg, #3B82F6, #8B5CF6);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 2rem;
    box-shadow: 
        0 10px 30px rgba(59, 130, 246, 0.3),
        inset 0 -2px 8px rgba(0, 0, 0, 0.2);
    transition: all 0.4s ease;
}

.value-card:hover .value-icon-wrapper {
    transform: rotateY(360deg) scale(1.1);
    box-shadow: 
        0 15px 40px rgba(59, 130, 246, 0.4),
        inset 0 -2px 8px rgba(0, 0, 0, 0.3);
}

.value-icon-wrapper i {
    font-size: 2.5rem;
    color: white;
}

.value-card h3 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: var(--text-primary);
}

.value-card p {
    font-size: 1.0625rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* ═══════════════════════════════════════════════════════════════
   FOUNDER SECTION
   ═══════════════════════════════════════════════════════════════ */

.founder-section {
    padding: 100px 1rem;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
}

.founder-container {
    max-width: 700px;
    margin: 0 auto;
    text-align: center;
}

.founder-card {
    background: var(--card-bg);
    border-radius: 32px;
    padding: 4rem;
    box-shadow: 
        0 20px 60px rgba(0, 0, 0, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.6);
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

.founder-card::after {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.05) 0%, transparent 70%);
    animation: rotate 20s linear infinite;
}

@keyframes rotate {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

.founder-card:hover {
    transform: translateY(-16px);
    box-shadow: 
        0 30px 80px rgba(59, 130, 246, 0.25),
        0 0 0 1px rgba(59, 130, 246, 0.3);
}

.founder-avatar-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    margin: 0 auto 2rem;
    z-index: 1;
}

.founder-avatar-wrapper::before {
    content: '';
    position: absolute;
    inset: -6px;
    border-radius: 50%;
    background: linear-gradient(135deg, #3B82F6, #8B5CF6, #EC4899);
    animation: rotate 4s linear infinite;
    z-index: -1;
}

.founder-avatar {
    width: 200px;
    height: 200px;
    border-radius: 50%;
    border: 6px solid var(--card-bg);
    box-shadow: 
        0 15px 40px rgba(0, 0, 0, 0.2),
        inset 0 4px 8px rgba(255, 255, 255, 0.2);
    transition: all 0.4s ease;
    position: relative;
    z-index: 1;
    object-fit: cover;
}

.founder-card:hover .founder-avatar {
    transform: scale(1.05);
}

.founder-name {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #3B82F6, #8B5CF6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    position: relative;
    z-index: 1;
}

.founder-title {
    font-size: 1.5rem;
    color: #3B82F6;
    font-weight: 600;
    position: relative;
    z-index: 1;
}

/* ═══════════════════════════════════════════════════════════════
   CTA SECTION
   ═══════════════════════════════════════════════════════════════ */

.cta-about {
    padding: 100px 1rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    position: relative;
    overflow: hidden;
}

.cta-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 30%, rgba(255, 255, 255, 0.1) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(139, 92, 246, 0.2) 0%, transparent 50%);
    animation: pulse 8s ease-in-out infinite;
}

@keyframes pulse {
    0%, 100% { opacity: 1; }
    50% { opacity: 0.7; }
}

.cta-about-content {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-about h2 {
    font-size: 3rem;
    font-weight: 900;
    color: white;
    margin-bottom: 1.5rem;
    text-shadow: 0 4px 24px rgba(0, 0, 0, 0.3);
}

.cta-about p {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.95);
    margin-bottom: 3rem;
    line-height: 1.8;
}

.btn-cta-about {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    padding: 1.25rem 2.5rem;
    font-size: 1.125rem;
    font-weight: 700;
    color: white;
    background: linear-gradient(135deg, #3b82f6 0%, #8b5cf6 100%);
    background-size: 200% auto;
    border: none;
    border-radius: 14px;
    cursor: pointer;
    transition: all 0.4s cubic-bezier(0.175, 0.885, 0.32, 1.275);
    box-shadow: 
        0 12px 40px rgba(59, 130, 246, 0.4),
        0 0 0 0 rgba(59, 130, 246, 0.5),
        inset 0 1px 0 rgba(255, 255, 255, 0.2);
    position: relative;
    overflow: hidden;
}

.btn-cta-about::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    background: linear-gradient(90deg, 
        transparent, 
        rgba(255, 255, 255, 0.2), 
        transparent);
    transition: left 0.5s;
}

.btn-cta-about:hover::before {
    left: 100%;
}

.btn-cta-about:hover {
    transform: translateY(-3px) scale(1.02);
    background-position: right center;
    box-shadow: 
        0 16px 56px rgba(59, 130, 246, 0.6),
        0 0 60px rgba(139, 92, 246, 0.4),
        inset 0 1px 0 rgba(255, 255, 255, 0.3);
}

.btn-cta-about i {
    transition: transform 0.3s;
}

.btn-cta-about:hover i {
    transform: translateX(4px);
}

/* ═══════════════════════════════════════════════════════════════
   RESPONSIVE MOBILE
   ═══════════════════════════════════════════════════════════════ */

@media (max-width: 1024px) {
    .hero-about {
        padding: 120px 1.5rem 80px 1.5rem;
    }

    .hero-about h1 {
        font-size: clamp(2.25rem, 8vw, 3.5rem);
    }

    .hero-about .container-fluid::before,
    .hero-about::after {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .hero-about {
        min-height: 100vh;
        padding: 140px 1.5rem 100px 1.5rem;
        overflow: visible;
    }

    .hero-about-content {
        gap: 1.75rem;
        overflow: visible;
    }

    .hero-about .about-badge {
        padding: 0.625rem 1.25rem;
        font-size: 0.875rem;
        gap: 0.5rem;
    }

    .hero-about h1 {
        font-size: clamp(2rem, 9vw, 2.75rem);
        line-height: 1.15;
    }

    .hero-about p {
        font-size: clamp(1rem, 4vw, 1.125rem);
        line-height: 1.6;
    }

    .hero-about p br {
        display: none;
    }

    .hero-about .container-fluid::before,
    .hero-about::after {
        width: 300px;
        height: 300px;
        filter: blur(80px);
    }

    .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .hero-stat-card {
        padding: 1.5rem 1rem;
    }

    .hero-stat-value {
        font-size: 2rem;
    }

    /* Mission & Vision - Stack Mobile */
    .mission-vision-grid {
        grid-template-columns: 1fr;
        gap: 2rem;
    }

    .mission-card, .vision-card {
        padding: 2.5rem 2rem;
    }

    .mission-card h2, .vision-card h2 {
        font-size: 2rem;
    }

    .mission-card p, .vision-card p {
        font-size: 1rem;
    }

    /* Why Choose - Scroll Horizontal */
    .why-choose-grid {
        display: flex !important;
        flex-direction: row !important;
        gap: 1rem !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory !important;
        scroll-behavior: smooth !important;
        -webkit-overflow-scrolling: touch !important;
        padding: 1rem !important;
        margin: 0 -1rem !important;
        max-width: 100vw !important;
    }

    .why-choose-grid::-webkit-scrollbar {
        display: none;
    }

    .why-choose-grid {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .why-card {
        flex: 0 0 85vw !important;
        min-width: 85vw !important;
        max-width: 85vw !important;
        scroll-snap-align: center !important;
        margin: 0 !important;
        padding: 2rem 1.5rem !important;
        min-height: 320px !important;
        height: auto !important;
        display: flex;
        flex-direction: column;
    }

    .why-card:first-child {
        margin-left: 0.5rem !important;
    }

    .why-card:last-child {
        margin-right: 0.5rem !important;
    }

    .swipe-indicator {
        display: block !important;
    }

    /* Technology Section Mobile */
    .tech-content {
        padding: 2.5rem 2rem;
    }

    .tech-grid {
        grid-template-columns: 1fr;
        gap: 1.5rem;
    }

    /* Values - Scroll Horizontal */
    .values-grid {
        display: flex !important;
        flex-direction: row !important;
        gap: 1rem !important;
        overflow-x: auto !important;
        overflow-y: hidden !important;
        scroll-snap-type: x mandatory !important;
        scroll-behavior: smooth !important;
        -webkit-overflow-scrolling: touch !important;
        padding: 1rem !important;
        margin: 0 -1rem !important;
        max-width: 100vw !important;
    }

    .values-grid::-webkit-scrollbar {
        display: none;
    }

    .values-grid {
        -ms-overflow-style: none;
        scrollbar-width: none;
    }

    .value-card {
        flex: 0 0 85vw !important;
        min-width: 85vw !important;
        max-width: 85vw !important;
        scroll-snap-align: center !important;
        margin: 0 !important;
        padding: 2rem 1.5rem !important;
        min-height: 320px !important;
        height: auto !important;
        display: flex;
        flex-direction: column;
    }

    .value-card:first-child {
        margin-left: 0.5rem !important;
    }

    .value-card:last-child {
        margin-right: 0.5rem !important;
    }

    /* Founder Section Mobile */
    .founder-card {
        padding: 3rem 2rem;
    }

    .founder-name {
        font-size: 2rem;
    }

    .founder-title {
        font-size: 1.25rem;
    }

    /* CTA Mobile */
    .cta-about h2 {
        font-size: 2rem;
    }

    .cta-about p {
        font-size: 1.125rem;
    }

    .btn-cta-about {
        padding: 1rem 2rem;
        font-size: 1rem;
    }

    /* Section Headers Mobile */
    .section-header-custom h2 {
        font-size: 2rem;
    }

    .section-header-custom p {
        font-size: 1.0625rem;
    }
}

@media (max-width: 640px) {
    .hero-about {
        min-height: 100vh;
        padding: 130px 1.25rem 90px 1.25rem;
    }

    .hero-about-content {
        gap: 1.5rem;
    }

    .hero-about .about-badge {
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
    }

    .hero-about h1 {
        font-size: clamp(1.875rem, 10vw, 2.5rem);
    }

    .hero-about p {
        font-size: clamp(0.9375rem, 4.5vw, 1.0625rem);
    }

    .hero-stats {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .hero-about {
        min-height: 100vh;
        padding: 120px 1rem 80px 1rem;
    }

    .hero-about-content {
        gap: 1.5rem;
    }

    .hero-about .about-badge {
        padding: 0.5rem 1rem;
        font-size: 0.8125rem;
    }

    .hero-about h1 {
        font-size: clamp(1.75rem, 11vw, 2.25rem);
    }

    .hero-about p {
        font-size: clamp(0.875rem, 5vw, 1rem);
    }

    .why-card,
    .value-card {
        flex: 0 0 90vw !important;
        min-width: 90vw !important;
        max-width: 90vw !important;
        padding: 1.5rem 1.125rem !important;
        min-height: 300px !important;
    }

    .btn-cta-about {
        width: 100%;
        justify-content: center;
    }
}