/* === ULTRA-PREMIUM ABOUT PAGE STYLES === */
@import url('https://fonts.googleapis.com/css2?family=Poppins:wght@300;400;500;600;700;800;900&display=swap');

/* Root Variables */
:root {
    --primary-orange: #ff7a00;
    --orange-light: #ff9533;
    --orange-dark: #e66a00;
    --white: #ffffff;
    --cream: #f5e7da;
    --dark: #111111;
    --dark-light: #1a1a1a;
    --dark-medium: #222222;
    --gradient-primary: linear-gradient(135deg, #ff7a00, #ff9533);
    --gradient-secondary: linear-gradient(135deg, #1a1a1a, #333333);
    --gradient-glass: linear-gradient(135deg, rgba(255, 122, 0, 0.1), rgba(255, 149, 51, 0.05));
    --shadow-primary: 0 20px 60px rgba(255, 122, 0, 0.3);
    --shadow-secondary: 0 10px 40px rgba(0, 0, 0, 0.5);
    --blur-glass: blur(20px);
}

/* Global Styles */
.about-page-wrapper {
    position: relative;
    min-height: 100vh;
    background: linear-gradient(135deg, #0a0a0a, #1a1a1a, #111111);
    color: var(--white);
    font-family: 'Poppins', sans-serif;
    overflow-x: hidden;
}

/* Advanced Particle System */
.particles-container {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    pointer-events: none;
    z-index: 1;
}

.particle-layer {
    position: absolute;
    width: 100%;
    height: 100%;
}

.particles-orange .particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--primary-orange), transparent);
    opacity: 0.4;
    animation: floatOrbit linear infinite;
}

.particles-white .particle {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, var(--cream), transparent);
    opacity: 0.3;
    animation: floatOrbit linear infinite reverse;
}

.particles-glow .glow-orb {
    position: absolute;
    border-radius: 50%;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.2), transparent);
    filter: blur(40px);
    animation: pulse 4s ease-in-out infinite;
}

/* Particle Definitions */
.particles-orange .particle-1 { width: 4px; height: 4px; left: 10%; top: 20%; animation-duration: 20s; animation-delay: 0s; }
.particles-orange .particle-2 { width: 6px; height: 6px; left: 80%; top: 15%; animation-duration: 25s; animation-delay: -3s; }
.particles-orange .particle-3 { width: 3px; height: 3px; left: 60%; top: 70%; animation-duration: 18s; animation-delay: -6s; }
.particles-orange .particle-4 { width: 5px; height: 5px; left: 30%; top: 80%; animation-duration: 22s; animation-delay: -9s; }
.particles-orange .particle-5 { width: 2px; height: 2px; left: 90%; top: 50%; animation-duration: 16s; animation-delay: -12s; }
.particles-orange .particle-6 { width: 4px; height: 4px; left: 20%; top: 60%; animation-duration: 24s; animation-delay: -2s; }
.particles-orange .particle-7 { width: 3px; height: 3px; left: 70%; top: 30%; animation-duration: 19s; animation-delay: -5s; }
.particles-orange .particle-8 { width: 5px; height: 5px; left: 40%; top: 90%; animation-duration: 21s; animation-delay: -8s; }
.particles-orange .particle-9 { width: 2px; height: 2px; left: 85%; top: 25%; animation-duration: 17s; animation-delay: -11s; }
.particles-orange .particle-10 { width: 6px; height: 6px; left: 15%; top: 40%; animation-duration: 23s; animation-delay: -1s; }
.particles-orange .particle-11 { width: 3px; height: 3px; left: 55%; top: 10%; animation-duration: 20s; animation-delay: -4s; }
.particles-orange .particle-12 { width: 4px; height: 4px; left: 75%; top: 85%; animation-duration: 18s; animation-delay: -7s; }

.particles-white .particle-1 { width: 3px; height: 3px; left: 25%; top: 30%; animation-duration: 22s; animation-delay: -1s; }
.particles-white .particle-2 { width: 5px; height: 5px; left: 65%; top: 20%; animation-duration: 19s; animation-delay: -4s; }
.particles-white .particle-3 { width: 2px; height: 2px; left: 35%; top: 75%; animation-duration: 26s; animation-delay: -7s; }
.particles-white .particle-4 { width: 4px; height: 4px; left: 80%; top: 60%; animation-duration: 17s; animation-delay: -10s; }
.particles-white .particle-5 { width: 3px; height: 3px; left: 50%; top: 45%; animation-duration: 24s; animation-delay: -2s; }
.particles-white .particle-6 { width: 6px; height: 6px; left: 95%; top: 35%; animation-duration: 21s; animation-delay: -5s; }
.particles-white .particle-7 { width: 2px; height: 2px; left: 45%; top: 15%; animation-duration: 23s; animation-delay: -8s; }
.particles-white .particle-8 { width: 4px; height: 4px; left: 75%; top: 90%; animation-duration: 20s; animation-delay: -3s; }
.particles-white .particle-9 { width: 3px; height: 3px; left: 5%; top: 70%; animation-duration: 18s; animation-delay: -6s; }
.particles-white .particle-10 { width: 5px; height: 5px; left: 60%; top: 55%; animation-duration: 25s; animation-delay: -9s; }

.particles-glow .glow-1 { width: 200px; height: 200px; left: 20%; top: 30%; animation-delay: 0s; }
.particles-glow .glow-2 { width: 300px; height: 300px; left: 70%; top: 60%; animation-delay: -2s; }
.particles-glow .glow-3 { width: 150px; height: 150px; left: 50%; top: 10%; animation-delay: -4s; }

/* Gradient Overlay */
.gradient-overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(circle at 30% 50%, rgba(255, 122, 0, 0.05), transparent),
                radial-gradient(circle at 70% 80%, rgba(245, 231, 218, 0.03), transparent);
    pointer-events: none;
    z-index: 1;
}

/* Container */
.about-container {
    position: relative;
    z-index: 2;
    padding: 0 20px;
    max-width: 1400px;
    margin: 0 auto;
}

/* Hero Section */
.about-hero {
    position: relative;
    display: flex;
    align-items: center;
    min-height: 100vh;
    padding: 100px 0;
    gap: 60px;
    z-index: 3;
}

.hero-background-accent {
    position: absolute;
    top: 20%;
    left: -10%;
    width: 60%;
    height: 60%;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.1), transparent);
    border-radius: 50%;
    filter: blur(100px);
    z-index: -1;
}

.about-hero-content {
    flex: 1;
    max-width: 600px;
}

.title-container {
    position: relative;
    margin-bottom: 30px;
}

.about-title {
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 800;
    line-height: 1.2;
    margin-bottom: 20px;
    color: white;
}

.title-word {
    display: inline-block;
    color: white;
    text-shadow: 0 0 30px rgba(255, 122, 0, 0.5);
}

.title-highlight {
    display: inline-block;
    background: var(--gradient-primary);
    background-clip: text;
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    position: relative;
}

.title-underline {
    width: 100px;
    height: 4px;
    background: var(--gradient-primary);
    border-radius: 2px;
    margin: 10px 0;
    box-shadow: 0 0 20px rgba(255, 122, 0, 0.5);
}

.about-subtitle {
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 20px;
    color: rgba(255, 255, 255, 0.9);
}

.subtitle-accent {
    font-size: 1rem;
    color: var(--primary-orange);
    font-weight: 500;
    margin-bottom: 40px;
    text-shadow: 0 0 20px rgba(255, 122, 0, 0.3);
}

.hero-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.btn-primary, .btn-secondary {
    position: relative;
    padding: 18px 40px;
    border-radius: 50px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.4s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    z-index: 1;
}

.btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-primary);
}

.btn-primary:hover {
    transform: translateY(-5px) scale(1.05);
    box-shadow: 0 25px 80px rgba(255, 122, 0, 0.4);
}

.btn-secondary {
    background: transparent;
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
}

.btn-secondary:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateY(-5px);
    box-shadow: var(--shadow-primary);
}

.btn-glow {
    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.6s;
}

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

/* Hero Image */
.about-hero-image {
    flex: 1;
    position: relative;
    max-width: 600px;
}

.image-frame {
    position: relative;
    border-radius: 30px;
    overflow: hidden;
    box-shadow: var(--shadow-secondary);
}

.image-glow {
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: conic-gradient(transparent, var(--primary-orange), transparent);
    animation: rotate 4s linear infinite;
    z-index: -1;
}

.about-hero-image img {
    width: 100%;
    height: auto;
    display: block;
    border-radius: 30px;
    transition: transform 0.6s ease;
}

.about-hero-image:hover img {
    transform: scale(1.05);
}

.image-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 122, 0, 0.1), transparent);
    border-radius: 30px;
}

.floating-stats {
    position: absolute;
    bottom: -23px;
    right: 60px;
    display: flex;
    gap: 20px;
}

.stat-item-about {
    background: rgba(26, 26, 26, 0.95);
    backdrop-filter: var(--blur-glass);
    padding: 20px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 122, 0, 0.2);
    box-shadow: var(--shadow-secondary);
}

.stat-number-about {
    display: block;
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 5px;
}

.stat-label-about {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.8);
}

/* Section Headers */
.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-title {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--primary-orange);
    margin-bottom: 20px;
    text-shadow: 0 0 30px rgba(255, 122, 0, 0.3);
}

.section-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 30px;
}

.section-divider {
    width: 80px;
    height: 4px;
    background: var(--gradient-primary);
    margin: 0 auto;
    border-radius: 2px;
    box-shadow: 0 0 20px rgba(255, 122, 0, 0.5);
}

/* Features Section */
.about-features {
    padding: 120px 0;
    position: relative;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(350px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.feature-card {
    position: relative;
    padding: 50px 30px;
    border-radius: 25px;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    z-index: 1;
}

.glass-morphism {
    background: rgba(26, 26, 26, 0.7);
    backdrop-filter: var(--blur-glass);
    border: 1px solid rgba(255, 122, 0, 0.2);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.feature-card:hover {
    transform: translateY(-20px) scale(1.02);
    box-shadow: 0 40px 100px rgba(255, 122, 0, 0.2);
}

.feature-icon-container {
    position: relative;
    display: inline-block;
    margin-bottom: 30px;
}

.feature-icon {
    font-size: 3rem;
    color: var(--primary-orange);
    position: relative;
    z-index: 2;
}

.icon-pulse {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 80px;
    height: 80px;
    background: rgba(255, 122, 0, 0.2);
    border-radius: 50%;
    transform: translate(-50%, -50%);
    animation: pulse 2s infinite;
}

.feature-heading {
    font-size: 1.5rem;
    font-weight: 600;
    margin-bottom: 20px;
    color: var(--white);
}

.feature-text {
    font-size: 1rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.8);
}

.card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: var(--gradient-glass);
    opacity: 0;
    transition: opacity 0.6s ease;
    border-radius: 25px;
    z-index: -1;
}

.feature-card:hover .card-glow {
    opacity: 1;
}

/* Statistics Section */
.about-stats {
    padding: 100px 0;
    background: linear-gradient(135deg, rgba(255, 122, 0, 0.05), transparent);
}

.stats-container-about {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.stat-card {
    background: rgba(26, 26, 26, 0.8);
    backdrop-filter: var(--blur-glass);
    padding: 40px 20px;
    border-radius: 20px;
    text-align: center;
    border: 1px solid rgba(255, 122, 0, 0.2);
    transition: all 0.6s ease;
    position: relative;
    overflow: hidden;
}

.stat-card:hover {
    transform: translateY(-15px);
    box-shadow: 0 30px 80px rgba(255, 122, 0, 0.3);
}

.stat-card .stat-icon {
    font-size: 2.5rem;
    color: var(--primary-orange);
    margin-bottom: 20px;
}

.stat-card .stat-number-about {
    font-size: 3rem;
    font-weight: 800;
    color: var(--white);
    margin-bottom: 10px;
}

.stat-card .stat-label-about {
    font-size: 1rem;
    color: rgba(255, 255, 255, 0.8);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Team Section */
.about-team {
    padding: 120px 0;
    background: var(--dark-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 50px;
    max-width: 1200px;
    margin: 0 auto;
}

.team-card {
    position: relative;
    background: rgba(34, 34, 34, 0.8);
    backdrop-filter: var(--blur-glass);
    border-radius: 25px;
    padding: 40px 30px;
    text-align: center;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    border: 1px solid rgba(255, 122, 0, 0.1);
    overflow: hidden;
}

.team-card:hover {
    transform: translateY(-20px) rotateY(5deg);
    box-shadow: 0 40px 100px rgba(255, 122, 0, 0.2);
}

.team-image-container {
    position: relative;
    width: 150px;
    height: 150px;
    margin: 0 auto 30px;
    border-radius: 50%;
    overflow: hidden;
    border: 3px solid var(--primary-orange);
    box-shadow: 0 0 30px rgba(255, 122, 0, 0.3);
}

.team-image-container img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team-card:hover .team-image-container img {
    transform: scale(1.1);
}

.image-overlay-team {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(45deg, rgba(255, 122, 0, 0.2), transparent);
    opacity: 0;
    transition: opacity 0.6s ease;
}

.team-card:hover .image-overlay-team {
    opacity: 1;
}

.social-links-about {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    display: flex;
    gap: 15px;
    opacity: 0;
    transition: all 0.6s ease;
}

.team-card:hover .social-links-about {
    opacity: 1;
}

.social-links-about a {
    width: 40px;
    height: 40px;
    background: var(--primary-orange);
    color: var(--white);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    transition: all 0.3s ease;
}

.social-links-about a:hover {
    background: var(--white);
    color: var(--primary-orange);
    transform: scale(1.2);
}

.team-info {
    position: relative;
    z-index: 2;
}

.team-name {
    font-size: 1.4rem;
    font-weight: 600;
    color: var(--white);
    margin-bottom: 10px;
}

.team-role {
    font-size: 1rem;
    color: var(--primary-orange);
    margin-bottom: 15px;
    font-weight: 500;
}

.team-bio {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.5;
}

.team-card-glow {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(circle at center, rgba(255, 122, 0, 0.1), transparent);
    opacity: 0;
    transition: opacity 0.6s ease;
    border-radius: 25px;
    z-index: 1;
}

.team-card:hover .team-card-glow {
    opacity: 1;
}

/* CTA Section */
.about-cta {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(135deg, var(--dark), var(--dark-light));
    text-align: center;
    overflow: hidden;
}

.cta-background {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 30% 20%, rgba(255, 122, 0, 0.1), transparent),
        radial-gradient(circle at 70% 80%, rgba(245, 231, 218, 0.05), transparent);
}

.cta-content {
    position: relative;
    z-index: 2;
    max-width: 800px;
    margin: 0 auto;
}

.cta-title {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: var(--white);
    margin-bottom: 20px;
    text-shadow: 0 0 40px rgba(255, 122, 0, 0.3);
}

.cta-subtitle {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 50px;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 30px;
    flex-wrap: wrap;
}

.cta-btn-primary, .cta-btn-secondary {
    position: relative;
    padding: 20px 50px;
    border-radius: 60px;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.6s cubic-bezier(0.25, 0.46, 0.45, 0.94);
    overflow: hidden;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.cta-btn-primary {
    background: var(--gradient-primary);
    color: var(--white);
    box-shadow: var(--shadow-primary);
}

.cta-btn-primary:hover {
    transform: translateY(-10px) scale(1.05);
    box-shadow: 0 30px 100px rgba(255, 122, 0, 0.4);
}

.cta-btn-secondary {
    background: transparent;
    color: var(--primary-orange);
    border: 2px solid var(--primary-orange);
}

.cta-btn-secondary:hover {
    background: var(--primary-orange);
    color: var(--white);
    transform: translateY(-10px);
    box-shadow: var(--shadow-primary);
}

.btn-particles {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    opacity: 0;
    transition: opacity 0.6s ease;
}

.cta-btn-primary:hover .btn-particles {
    opacity: 1;
}

.btn-particles .particle {
    position: absolute;
    width: 4px;
    height: 4px;
    background: var(--white);
    border-radius: 50%;
    animation: particleFloat 2s infinite;
}

.btn-particles .particle:nth-child(1) {
    top: 20%;
    left: 20%;
    animation-delay: 0s;
}

.btn-particles .particle:nth-child(2) {
    top: 50%;
    right: 30%;
    animation-delay: 0.7s;
}

.btn-particles .particle:nth-child(3) {
    bottom: 30%;
    left: 50%;
    animation-delay: 1.4s;
}

.cta-glow-effect {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 122, 0, 0.1), transparent);
    transform: translate(-50%, -50%);
    filter: blur(100px);
    animation: pulse 4s ease-in-out infinite;
}

/* Keyframe Animations */
@keyframes floatOrbit {
    0% {
        transform: rotate(0deg) translateX(100px) rotate(0deg);
        opacity: 0.4;
    }
    50% {
        opacity: 0.8;
    }
    100% {
        transform: rotate(360deg) translateX(100px) rotate(-360deg);
        opacity: 0.4;
    }
}

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

@keyframes rotate {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

@keyframes particleFloat {
    0%, 100% {
        transform: translateY(0) scale(1);
        opacity: 0;
    }
    50% {
        transform: translateY(-20px) scale(1.2);
        opacity: 1;
    }
}

@keyframes slideInFromLeft {
    0% {
        transform: translateX(-100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideInFromRight {
    0% {
        transform: translateX(100px);
        opacity: 0;
    }
    100% {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes fadeInUp {
    0% {
        transform: translateY(50px);
        opacity: 0;
    }
    100% {
        transform: translateY(0);
        opacity: 1;
    }
}

/* Responsive Design */
@media screen and (max-width: 1200px) {
    .about-container {
        padding: 0 40px;
    }
    
    .about-hero {
        gap: 40px;
    }
    
    .floating-stats {
        position: static;
        justify-content: center;
        margin-top: 30px;
    }
}

@media screen and (max-width: 992px) {
    .about-hero {
        flex-direction: column;
        text-align: center;
        padding: 80px 0;
    }
    
    .about-hero-content {
        max-width: 100%;
    }
    
    .hero-buttons {
        justify-content: center;
    }
    
    .features-grid {
        grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
        gap: 30px;
    }
    
    .stats-container-about {
        grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
        gap: 30px;
    }
    
    .team-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 40px;
    }
    
    .cta-buttons {
        flex-direction: column;
        align-items: center;
        gap: 20px;
    }
}

@media screen and (max-width: 768px) {
    .about-container {
        padding: 0 20px;
    }
    
    .about-hero {
        padding: 60px 0;
    }
    
    .about-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 2rem;
    }
    
    .features-grid {
        grid-template-columns: 1fr;
    }
    
    .feature-card {
        padding: 40px 20px;
    }
    
    .stats-container-about {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .floating-stats {
        flex-direction: column;
        gap: 15px;
    }
}

@media screen and (max-width: 480px) {
    .about-title {
        font-size: 2rem;
    }
    
    .section-title {
        font-size: 1.8rem;
    }
    
    .hero-buttons {
        flex-direction: column;
        align-items: center;
    }
    
    .btn-primary, .btn-secondary {
        width: 100%;
        max-width: 280px;
        text-align: center;
    }
    
    .stats-container-about {
        grid-template-columns: 1fr;
    }
    
    .cta-btn-primary, .cta-btn-secondary {
        padding: 18px 40px;
        font-size: 1rem;
        width: 100%;
        max-width: 280px;
    }
}

/* High Performance Optimizations */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Touch Device Optimizations */
@media (hover: none) and (pointer: coarse) {
    .feature-card:hover,
    .team-card:hover,
    .stat-card:hover {
        transform: none;
    }
    
    .btn-primary:hover,
    .btn-secondary:hover,
    .cta-btn-primary:hover,
    .cta-btn-secondary:hover {
        transform: none;
    }
}