:root {
    /* Modern Color Palette */
    --primary: #6366F1;
    --primary-dark: #4F46E5;
    --primary-light: #EEF2FF;
    --accent: #F59E0B;
    --accent-pink: #EC4899;
    --text-dark: #0F172A;
    --text-light: #475569;
    --text-muted: #94A3B8;
    --bg-light: #F8FAFC;
    --bg-dark: #0F172A;
    --white: #FFFFFF;
    --glass: rgba(255, 255, 255, 0.1);
    --glass-border: rgba(255, 255, 255, 0.2);
    
    /* Modern Shadows */
    --shadow-sm: 0 1px 3px rgba(0,0,0,0.12), 0 1px 2px rgba(0,0,0,0.08);
    --shadow-md: 0 4px 6px rgba(0,0,0,0.07), 0 2px 4px rgba(0,0,0,0.06);
    --shadow-lg: 0 10px 15px rgba(0,0,0,0.1), 0 4px 6px rgba(0,0,0,0.05);
    --shadow-xl: 0 20px 25px rgba(0,0,0,0.15), 0 10px 10px rgba(0,0,0,0.04);
    --shadow-glow: 0 0 40px rgba(99, 102, 241, 0.3);
    
    /* Spacing */
    --section-padding: 120px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', sans-serif;
    color: var(--text-dark);
    line-height: 1.6;
    overflow-x: hidden;
    background: var(--white);
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 24px;
}

/* ============================================
   MODERN HERO SECTION
   ============================================ */

.about-hero {
    position: relative;
    min-height: 100vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    background: linear-gradient(135deg, #0F172A 0%, #1E293B 50%, #334155 100%);
    padding: 140px 0 100px;
}

/* Animated gradient mesh background */
.hero-video-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 0;
    overflow: hidden;
}

.hero-video-bg::before {
    content: '';
    position: absolute;
    width: 150%;
    height: 150%;
    background: 
        radial-gradient(circle at 20% 50%, rgba(99, 102, 241, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 80% 80%, rgba(236, 72, 153, 0.15) 0%, transparent 50%),
        radial-gradient(circle at 40% 20%, rgba(245, 158, 11, 0.1) 0%, transparent 50%);
    animation: mesh-move 20s ease-in-out infinite;
    opacity: 0.6;
}

@keyframes mesh-move {
    0%, 100% {
        transform: translate(0, 0) rotate(0deg);
    }
    33% {
        transform: translate(50px, -50px) rotate(120deg);
    }
    66% {
        transform: translate(-30px, 30px) rotate(240deg);
    }
}

.hero-video-bg video {
    position: absolute;
    top: 50%;
    left: 50%;
    min-width: 100%;
    min-height: 100%;
    width: auto;
    height: auto;
    transform: translate(-50%, -50%);
    object-fit: cover;
    opacity: 0.2;
    filter: blur(0px);
}

/* Floating orbs effect */
.hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.hero-overlay::before,
.hero-overlay::after {
    content: '';
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: float 8s ease-in-out infinite;
    opacity: 0.4;
}

.hero-overlay::before {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, #6366F1 0%, transparent 70%);
    top: -100px;
    left: -100px;
    animation-delay: 0s;
}

.hero-overlay::after {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, #EC4899 0%, transparent 70%);
    bottom: -100px;
    right: -100px;
    animation-delay: 4s;
}

@keyframes float {
    0%, 100% {
        transform: translate(0, 0) scale(1);
    }
    50% {
        transform: translate(50px, -50px) scale(1.1);
    }
}

/* Grid pattern overlay */
.hero-content::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 50px 50px;
    mask-image: linear-gradient(to bottom, transparent, black 20%, black 80%, transparent);
    pointer-events: none;
}

.hero-content {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    min-height: 80vh;
}

.hero-text {
    animation: fadeInUp 0.8s ease-out;
}

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(30px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

/* Modern badge design */
.badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 8px 20px;
    background: rgba(99, 102, 241, 0.15);
    backdrop-filter: blur(20px);
    color: #A5B4FC;
    border-radius: 100px;
    font-weight: 600;
    font-size: 13px;
    margin-bottom: 32px;
    border: 1px solid rgba(99, 102, 241, 0.3);
    transition: all 0.3s ease;
    animation: fadeInUp 0.8s ease-out 0.1s both;
}

.badge:hover {
    background: rgba(99, 102, 241, 0.25);
    border-color: rgba(99, 102, 241, 0.5);
    transform: translateY(-2px);
}

.badge::before {
    content: '✨';
    font-size: 16px;
    animation: sparkle 2s ease-in-out infinite;
}

@keyframes sparkle {
    0%, 100% {
        transform: scale(1) rotate(0deg);
        opacity: 1;
    }
    50% {
        transform: scale(1.2) rotate(180deg);
        opacity: 0.8;
    }
}

.hero-text h1 {
    font-size: clamp(40px, 6vw, 72px);
    color: var(--white);
    margin-bottom: 24px;
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -0.03em;
    animation: fadeInUp 0.8s ease-out 0.2s both;
}

/* Modern gradient text effect */
.gradient-text {
    background: linear-gradient(135deg, #6366F1 0%, #EC4899 50%, #F59E0B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    background-size: 200% 200%;
    animation: gradient-shift 5s ease infinite;
    display: inline-block;
    position: relative;
}

.gradient-text::after {
    content: attr(data-text);
    position: absolute;
    left: 0;
    top: 0;
    z-index: -1;
    background: linear-gradient(135deg, #6366F1 0%, #EC4899 50%, #F59E0B 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    filter: blur(20px);
    opacity: 0.5;
}

@keyframes gradient-shift {
    0%, 100% {
        background-position: 0% 50%;
    }
    50% {
        background-position: 100% 50%;
    }
}

.hero-text p {
    font-size: clamp(16px, 2vw, 20px);
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.8;
    margin-bottom: 40px;
    max-width: 600px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

/* Modern CTA buttons */
.hero-cta-buttons {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    animation: fadeInUp 0.8s ease-out 0.4s both;
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 16px 32px;
    border-radius: 12px;
    text-decoration: none;
    font-weight: 600;
    font-size: 16px;
    transition: all 0.3s ease;
    cursor: pointer;
    border: none;
    position: relative;
    overflow: hidden;
}

.btn::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 0;
    height: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.2);
    transform: translate(-50%, -50%);
    transition: width 0.6s, height 0.6s;
}

.btn:hover::before {
    width: 300px;
    height: 300px;
}

.btn-primary {
    background: linear-gradient(135deg, #6366F1 0%, #4F46E5 100%);
    color: var(--white);
    box-shadow: 0 10px 30px rgba(99, 102, 241, 0.3);
}

.btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 40px rgba(99, 102, 241, 0.4);
}

.btn-secondary {
    background: rgba(255, 255, 255, 0.1);
    color: var(--white);
    border: 2px solid rgba(255, 255, 255, 0.2);
    backdrop-filter: blur(10px);
}

.btn-secondary:hover {
    background: rgba(255, 255, 255, 0.15);
    border-color: rgba(255, 255, 255, 0.3);
    transform: translateY(-3px);
}

/* 3D LAPTOP SCENE - Enhanced */
#laptopScene {
    position: relative;
    width: 100%;
    height: 600px;
    border-radius: 24px;
    perspective: 1000px;
    animation: fadeInUp 0.8s ease-out 0.3s both;
}

#laptopScene canvas {
    border-radius: 24px;
    box-shadow: var(--shadow-xl), var(--shadow-glow);
}

/* Floating elements around laptop */
.hero-floating-elements {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
}

.floating-card {
    position: absolute;
    background: rgba(255, 255, 255, 0.1);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 16px;
    padding: 20px;
    box-shadow: var(--shadow-lg);
    animation: float-card 6s ease-in-out infinite;
}

.floating-card:nth-child(1) {
    top: 10%;
    right: -10%;
    animation-delay: 0s;
}

.floating-card:nth-child(2) {
    bottom: 20%;
    left: -5%;
    animation-delay: 2s;
}

.floating-card:nth-child(3) {
    top: 40%;
    right: -8%;
    animation-delay: 4s;
}

@keyframes float-card {
    0%, 100% {
        transform: translateY(0) rotate(0deg);
    }
    50% {
        transform: translateY(-20px) rotate(2deg);
    }
}

/* Hero feature cards - Modern redesign */
.hero-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    margin-top: 60px;
    animation: fadeInUp 0.8s ease-out 0.5s both;
}

.hero-feature-item {
    padding: 24px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 20px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.hero-feature-item::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: linear-gradient(90deg, #6366F1, #EC4899, #F59E0B);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.hero-feature-item:hover::before {
    transform: scaleX(1);
}

.hero-feature-item:hover {
    background: rgba(255, 255, 255, 0.08);
    transform: translateY(-8px);
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.2);
}

.hero-feature-item .icon {
    font-size: 36px;
    margin-bottom: 12px;
    display: block;
    transition: transform 0.4s ease;
}

.hero-feature-item:hover .icon {
    transform: scale(1.1) rotateY(180deg);
}

.hero-feature-item h4 {
    color: var(--white);
    font-size: 18px;
    margin-bottom: 8px;
    font-weight: 600;
}

.hero-feature-item p {
    color: rgba(255, 255, 255, 0.6);
    font-size: 14px;
    margin: 0;
    line-height: 1.6;
}

/* ============================================
   MODERN STORY SECTION
   ============================================ */

.story-section {
    padding: var(--section-padding) 0;
    background: var(--white);
    position: relative;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 100px;
    align-items: center;
}

.section-badge {
    display: inline-block;
    padding: 10px 24px;
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    color: var(--primary);
    border-radius: 100px;
    font-weight: 600;
    font-size: 14px;
    margin-bottom: 20px;
    border: 2px solid #C7D2FE;
    transition: all 0.3s ease;
}

.section-badge:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-md);
}

.story-content h2 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 24px;
    color: var(--text-dark);
    font-weight: 800;
    line-height: 1.2;
    letter-spacing: -0.02em;
}

.story-content p {
    color: var(--text-light);
    margin-bottom: 20px;
    font-size: 18px;
    line-height: 1.8;
}

.story-stats {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
    margin-top: 48px;
}

.stat-box {
    text-align: center;
    padding: 32px 24px;
    background: linear-gradient(135deg, #F8FAFC 0%, #EEF2FF 100%);
    border-radius: 20px;
    transition: all 0.3s ease;
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.stat-box::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6366F1, #EC4899);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.stat-box:hover::before {
    transform: scaleX(1);
}

.stat-box:hover {
    transform: translateY(-8px);
    border-color: var(--primary);
    box-shadow: var(--shadow-lg);
}

.stat-box h3 {
    font-size: 48px;
    background: linear-gradient(135deg, #6366F1 0%, #EC4899 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 8px;
    font-weight: 800;
}

.stat-box p {
    color: var(--text-light);
    font-size: 14px;
    margin: 0;
    font-weight: 500;
}

/* 3D Tech Icon Grid - Enhanced */
.story-3d-card {
    perspective: 1500px;
    position: relative;
}

.tech-icon-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 20px;
    padding: 48px;
    background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
    border-radius: 32px;
    box-shadow: var(--shadow-xl);
    position: relative;
    overflow: hidden;
}

.tech-icon-grid::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.1) 0%, transparent 70%);
    animation: rotate-gradient 10s linear infinite;
}

@keyframes rotate-gradient {
    from {
        transform: rotate(0deg);
    }
    to {
        transform: rotate(360deg);
    }
}

.tech-icon {
    width: 100px;
    height: 100px;
    background: rgba(255, 255, 255, 0.05);
    backdrop-filter: blur(20px);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 48px;
    border: 2px solid rgba(255, 255, 255, 0.1);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    z-index: 1;
}

.tech-icon:hover {
    transform: scale(1.15) translateZ(30px);
    background: rgba(99, 102, 241, 0.2);
    border-color: rgba(99, 102, 241, 0.5);
    box-shadow: 0 20px 40px rgba(99, 102, 241, 0.3);
}

/* ============================================
   MODERN VALUES SECTION
   ============================================ */

.values-section {
    padding: var(--section-padding) 0;
    background: linear-gradient(180deg, var(--bg-light) 0%, var(--white) 100%);
}

.section-header {
    text-align: center;
    margin-bottom: 80px;
}

.section-header h2 {
    font-size: clamp(32px, 5vw, 48px);
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 800;
    letter-spacing: -0.02em;
}

.section-header p {
    color: var(--text-light);
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.value-card-3d {
    background: var(--white);
    padding: 48px;
    border-radius: 32px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.value-card-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #6366F1, #EC4899, #F59E0B);
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.value-card-3d:hover::before {
    transform: scaleX(1);
}

.value-card-3d:hover {
    transform: translateY(-12px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.value-icon {
    font-size: 64px;
    margin-bottom: 24px;
    display: block;
    transition: transform 0.4s ease;
}

.value-card-3d:hover .value-icon {
    transform: scale(1.1) rotateY(180deg);
}

.value-card-3d h3 {
    font-size: 28px;
    margin-bottom: 16px;
    color: var(--text-dark);
    font-weight: 700;
}

.value-card-3d p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 16px;
}

/* ============================================
   MODERN TEAM SECTION
   ============================================ */

.team-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 32px;
}

.team-member-card {
    text-align: center;
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
    overflow: hidden;
}

.team-member-card::after {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, rgba(99, 102, 241, 0.05) 0%, rgba(236, 72, 153, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.4s ease;
}

.team-member-card:hover::after {
    opacity: 1;
}

.team-member-card:hover {
    transform: translateY(-12px);
    border-color: var(--primary);
    box-shadow: var(--shadow-xl);
}

.member-image {
    position: relative;
    z-index: 1;
    width: 100%;
    height: 500px;
    overflow: hidden;
    border-radius: 24px 24px 0 0;
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
}

.image-placeholder {
    width: 100%;
    height: 100%;
    position: relative;
    overflow: hidden;
}

.image-placeholder img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
    display: block;
    transition: transform 0.4s ease;
}

.team-member-card:hover .image-placeholder img {
    transform: scale(1.05);
}

/* Fallback for when no image is present */
.image-placeholder:not(:has(img)) {
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    font-size: 120px;
    font-weight: 700;
}

.team-info {
    padding: 32px 24px;
    position: relative;
    z-index: 1;
}

.team-member-card h3 {
    font-size: 26px;
    margin-bottom: 8px;
    color: var(--text-dark);
    font-weight: 700;
}

.role {
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 12px;
    font-size: 16px;
}

.bio {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

/* ============================================
   MODERN TIMELINE SECTION
   ============================================ */

.timeline-section {
    padding: var(--section-padding) 0;
    background: var(--bg-light);
}

.timeline {
    position: relative;
    max-width: 900px;
    margin: 0 auto;
    padding: 60px 0;
}

.timeline::before {
    content: '';
    position: absolute;
    left: 50%;
    top: 0;
    bottom: 0;
    width: 3px;
    background: linear-gradient(180deg, #6366F1 0%, #EC4899 50%, #F59E0B 100%);
    transform: translateX(-50%);
    border-radius: 10px;
}

.timeline-item {
    position: relative;
    margin-bottom: 80px;
    display: flex;
    align-items: center;
}

.timeline-item:nth-child(odd) {
    flex-direction: row;
}

.timeline-item:nth-child(even) {
    flex-direction: row-reverse;
}

.timeline-dot {
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #6366F1 0%, #EC4899 100%);
    border-radius: 50%;
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    box-shadow: 0 0 0 12px rgba(99, 102, 241, 0.15), var(--shadow-md);
    z-index: 2;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-dot {
    transform: translateX(-50%) scale(1.3);
    box-shadow: 0 0 0 16px rgba(99, 102, 241, 0.2), var(--shadow-lg);
}

.timeline-content {
    width: 45%;
    padding: 36px;
    background: var(--white);
    border-radius: 24px;
    box-shadow: var(--shadow-md);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    position: relative;
}

.timeline-content::before {
    content: '';
    position: absolute;
    width: 20px;
    height: 20px;
    background: var(--white);
    transform: rotate(45deg);
    top: 40px;
    border: 2px solid transparent;
    transition: all 0.4s ease;
}

.timeline-item:nth-child(odd) .timeline-content::before {
    right: -12px;
    border-right-color: transparent;
    border-bottom-color: transparent;
}

.timeline-item:nth-child(even) .timeline-content::before {
    left: -12px;
    border-left-color: transparent;
    border-top-color: transparent;
}

.timeline-content:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary);
}

.timeline-content:hover::before {
    border-color: var(--primary);
}

.timeline-year {
    display: inline-block;
    padding: 8px 20px;
    background: linear-gradient(135deg, #EEF2FF 0%, #E0E7FF 100%);
    color: var(--primary);
    border-radius: 100px;
    font-weight: 700;
    font-size: 14px;
    margin-bottom: 16px;
    border: 2px solid #C7D2FE;
}

.timeline-content h3 {
    font-size: 22px;
    margin-bottom: 12px;
    color: var(--text-dark);
    font-weight: 700;
}

.timeline-content p {
    color: var(--text-light);
    font-size: 15px;
    line-height: 1.7;
}

/* ============================================
   MODERN CTA SECTION
   ============================================ */

.cta-section {
    padding: var(--section-padding) 0;
    background: var(--white);
}

.cta-card {
    background: linear-gradient(135deg, #1E293B 0%, #0F172A 100%);
    border-radius: 40px;
    padding: 100px 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-xl);
}

.cta-card::before {
    content: '';
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(99, 102, 241, 0.3) 0%, transparent 70%);
    top: -300px;
    right: -200px;
    border-radius: 50%;
    animation: pulse-glow 4s ease-in-out infinite;
}

.cta-card::after {
    content: '';
    position: absolute;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.2) 0%, transparent 70%);
    bottom: -250px;
    left: -150px;
    border-radius: 50%;
    animation: pulse-glow 4s ease-in-out infinite 2s;
}

@keyframes pulse-glow {
    0%, 100% {
        transform: scale(1);
        opacity: 0.6;
    }
    50% {
        transform: scale(1.1);
        opacity: 0.8;
    }
}

.cta-content {
    position: relative;
    z-index: 1;
}

.cta-card h2 {
    font-size: clamp(32px, 5vw, 48px);
    color: var(--white);
    margin-bottom: 20px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.cta-card p {
    color: rgba(255,255,255,0.8);
    font-size: 20px;
    max-width: 700px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.cta-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    flex-wrap: wrap;
}

.btn-large {
    padding: 20px 40px;
    font-size: 18px;
}

/* ============================================
   RESPONSIVE DESIGN
   ============================================ */

@media (max-width: 1200px) {
    :root {
        --section-padding: 100px;
    }
    
    .hero-content {
        gap: 60px;
    }
    
    #laptopScene {
        height: 500px;
    }
}

@media (max-width: 968px) {
    :root {
        --section-padding: 80px;
    }
    
    .about-hero {
        padding: 120px 0 80px;
    }
    
    .hero-content {
        grid-template-columns: 1fr;
        gap: 60px;
        text-align: center;
    }
    
    .hero-text {
        max-width: 100%;
    }
    
    .hero-text p {
        margin: 0 auto 40px;
    }
    
    .hero-cta-buttons {
        justify-content: center;
    }
    
    #laptopScene {
        max-width: 600px;
        margin: 0 auto;
        height: 450px;
    }
    
    .hero-features {
        grid-template-columns: 1fr;
    }
    
    .story-grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .member-image {
        height: 450px;
    }
    
    .tech-icon-grid {
        padding: 32px;
    }
}

@media (max-width: 768px) {
    :root {
        --section-padding: 60px;
    }
    
    .container {
        padding: 0 20px;
    }
    
    .about-hero {
        padding: 100px 0 60px;
    }
    
    #laptopScene {
        height: 400px;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
    }
    
    .member-image {
        height: 500px;
    }
    
    .timeline::before {
        left: 30px;
    }
    
    .timeline-item {
        flex-direction: row !important;
    }
    
    .timeline-dot {
        left: 30px;
    }
    
    .timeline-content {
        width: calc(100% - 100px);
        margin-left: 100px;
    }
    
    .timeline-content::before {
        left: -12px !important;
        right: auto !important;
        border-left-color: transparent !important;
        border-top-color: transparent !important;
    }
    
    .cta-card {
        padding: 60px 40px;
        border-radius: 32px;
    }
    
    .cta-buttons {
        flex-direction: column;
    }
    
    .stat-box {
        padding: 24px 20px;
    }
    
    .value-card-3d,
    .team-member-card {
        padding: 32px 24px;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 80px 0 40px;
    }
    
    #laptopScene {
        height: 350px;
    }
    
    .hero-features {
        gap: 16px;
    }
    
    .hero-feature-item {
        padding: 20px;
    }
    
    .story-stats {
        grid-template-columns: 1fr;
    }
    
    .tech-icon-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 16px;
        padding: 24px;
    }
    
    .tech-icon {
        width: 80px;
        height: 80px;
        font-size: 36px;
    }
    
    .member-image {
        height: 450px;
    }
    
    .team-info {
        padding: 24px 20px;
    }
    
    .timeline {
        padding: 40px 0;
    }
    
    .timeline-content {
        padding: 24px;
    }
    
    .cta-card {
        padding: 48px 24px;
        border-radius: 24px;
    }
    
    .btn {
        padding: 14px 24px;
        font-size: 15px;
    }
    
    .btn-large {
        padding: 16px 32px;
        font-size: 16px;
    }
}

/* Performance optimizations */
@media (prefers-reduced-motion: reduce) {
    *,
    *::before,
    *::after {
        animation-duration: 0.01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: 0.01ms !important;
    }
}

/* Dark mode support (optional) */
@media (prefers-color-scheme: dark) {
    /* Add dark mode styles if needed */
}

/* Print styles */
@media print {
    .hero-video-bg,
    .hero-overlay,
    .floating-card {
        display: none;
    }
}