/* ========================================
   ABOUT PAGE 2100 - ULTRA PREMIUM DESIGN
   Modern, futuristic styling for about page
======================================== */

/* ===== HERO SECTION 2100 ===== */
.about-hero-2100 {
    min-height: 85vh;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
    padding: 140px 0 100px;
    background: linear-gradient(135deg, #020617 0%, #0f172a 50%, #1e1b4b 100%);
}

/* Background Effects */
.hero-bg-2100 {
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #020617 0%, #0f172a 50%, #1e1b4b 100%);
    z-index: 0;
}

.hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    animation: orb-float 20s ease-in-out infinite;
}

.hero-gradient-orb.orb-1 {
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.4) 0%, transparent 70%);
    top: -200px;
    right: -100px;
    animation-delay: 0s;
}

.hero-gradient-orb.orb-2 {
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.3) 0%, transparent 70%);
    bottom: -150px;
    left: -100px;
    animation-delay: 5s;
}

.hero-gradient-orb.orb-3 {
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(59, 130, 246, 0.25) 0%, transparent 70%);
    top: 40%;
    left: 30%;
    animation-delay: 10s;
}

@keyframes orb-float {
    0%, 100% { transform: translate(0, 0) scale(1); }
    25% { transform: translate(30px, -40px) scale(1.05); }
    50% { transform: translate(-20px, 30px) scale(0.95); }
    75% { transform: translate(40px, 20px) scale(1.02); }
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.02) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.02) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse 80% 60% at 50% 40%, black 30%, transparent 70%);
}

.hero-particles span {
    position: absolute;
    width: 4px;
    height: 4px;
    background: rgba(255, 255, 255, 0.4);
    border-radius: 50%;
    animation: particle-float 15s linear infinite;
}

.hero-particles span:nth-child(1) { left: 5%; top: 20%; animation-delay: 0s; }
.hero-particles span:nth-child(2) { left: 15%; top: 60%; animation-delay: 1s; }
.hero-particles span:nth-child(3) { left: 25%; top: 30%; animation-delay: 2s; }
.hero-particles span:nth-child(4) { left: 35%; top: 70%; animation-delay: 3s; }
.hero-particles span:nth-child(5) { left: 45%; top: 25%; animation-delay: 4s; }
.hero-particles span:nth-child(6) { left: 55%; top: 65%; animation-delay: 5s; }
.hero-particles span:nth-child(7) { left: 65%; top: 35%; animation-delay: 6s; }
.hero-particles span:nth-child(8) { left: 75%; top: 55%; animation-delay: 7s; }
.hero-particles span:nth-child(9) { left: 85%; top: 40%; animation-delay: 8s; }
.hero-particles span:nth-child(10) { left: 90%; top: 75%; animation-delay: 9s; }
.hero-particles span:nth-child(11) { left: 10%; top: 80%; animation-delay: 0.5s; }
.hero-particles span:nth-child(12) { left: 20%; top: 15%; animation-delay: 1.5s; }

@keyframes particle-float {
    0% { transform: translateY(0) rotate(0deg); opacity: 0; }
    10% { opacity: 0.8; }
    90% { opacity: 0.8; }
    100% { transform: translateY(-100vh) rotate(720deg); opacity: 0; }
}

/* Hero Container */
.hero-container-2100 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
    position: relative;
    z-index: 1;
}

/* Breadcrumb */
.breadcrumb-2100 {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 40px;
    justify-content: center;
}

.breadcrumb-2100 a {
    display: flex;
    align-items: center;
    gap: 8px;
    color: rgba(255, 255, 255, 0.6);
    text-decoration: none;
    font-size: 0.9rem;
    transition: color 0.3s ease;
}

.breadcrumb-2100 a:hover {
    color: #ec4899;
}

.breadcrumb-2100 .separator {
    color: rgba(255, 255, 255, 0.3);
    font-size: 0.7rem;
}

.breadcrumb-2100 .current {
    color: rgba(255, 255, 255, 0.9);
    font-weight: 500;
}

/* Hero Content */
.hero-content-2100 {
    text-align: center;
    max-width: 900px;
    margin: 0 auto;
}

.hero-badge-2100 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(236, 72, 153, 0.1);
    border: 1px solid rgba(236, 72, 153, 0.3);
    border-radius: 50px;
    color: #f472b6;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 32px;
    position: relative;
    overflow: hidden;
}

.hero-badge-2100 .badge-glow {
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, transparent, rgba(236, 72, 153, 0.3), transparent);
    animation: badge-shine 3s ease-in-out infinite;
}

@keyframes badge-shine {
    0% { transform: translateX(-100%); }
    50%, 100% { transform: translateX(100%); }
}

.hero-title-2100 {
    margin-bottom: 28px;
}

.hero-title-2100 .title-line {
    display: block;
    font-size: clamp(2.5rem, 5vw, 4rem);
    font-weight: 700;
    color: #f8fafc;
    line-height: 1.1;
}

.hero-title-2100 .title-gradient {
    background: linear-gradient(135deg, #ec4899, #8b5cf6, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.hero-description-2100 {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.7);
    line-height: 1.7;
    margin-bottom: 40px;
}

/* Stats Row */
.hero-stats-2100 {
    display: flex;
    justify-content: center;
    gap: 60px;
    margin-top: 50px;
    flex-wrap: wrap;
}

.hero-stat-item {
    text-align: center;
}

.hero-stat-value {
    font-size: 3rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1;
}

.hero-stat-label {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
    margin-top: 8px;
}

/* ===== STORY SECTION 2100 ===== */
.story-section-2100 {
    padding: 120px 0;
    background: var(--bg-primary);
    position: relative;
}

.section-container-2100 {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 2rem;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.story-content h2 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 30px;
}

.story-content h2 span {
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-content p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 20px;
}

/* Story Visual */
.story-visual {
    position: relative;
}

.story-card-3d {
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.1), rgba(236, 72, 153, 0.05));
    border: 1px solid rgba(139, 92, 246, 0.2);
    border-radius: 32px;
    padding: 50px;
    position: relative;
    overflow: hidden;
    transform: perspective(1000px) rotateY(-5deg);
    transition: transform 0.5s ease;
}

.story-card-3d:hover {
    transform: perspective(1000px) rotateY(0deg);
}

.story-card-3d::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, #ec4899, #8b5cf6, #3b82f6);
}

.story-year-badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background: rgba(236, 72, 153, 0.1);
    border: 1px solid rgba(236, 72, 153, 0.3);
    border-radius: 50px;
    color: #f472b6;
    font-weight: 600;
    margin-bottom: 30px;
}

.story-milestone {
    display: flex;
    align-items: center;
    gap: 20px;
    padding: 20px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.story-milestone:last-child {
    border-bottom: none;
}

.milestone-year {
    font-size: 1.5rem;
    font-weight: 700;
    color: #8b5cf6;
    min-width: 80px;
}

.milestone-text {
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== VALUES SECTION 2100 ===== */
.values-section-2100 {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-primary) 0%, var(--bg-secondary) 100%);
    position: relative;
}

.section-header-2100 {
    text-align: center;
    margin-bottom: 80px;
}

.section-badge-2100 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(139, 92, 246, 0.1);
    border: 1px solid rgba(139, 92, 246, 0.3);
    border-radius: 50px;
    color: #a78bfa;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.section-title-2100 {
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
}

.section-title-2100 span {
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.section-desc-2100 {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 600px;
    margin: 0 auto;
}

/* Values Grid */
.values-grid-2100 {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 30px;
}

.value-card-2100 {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px 30px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.value-card-2100::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, var(--card-accent, #ec4899), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.value-card-2100:hover {
    transform: translateY(-10px);
    border-color: var(--card-accent, #ec4899);
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.2);
}

.value-card-2100:hover::before {
    opacity: 1;
}

.value-card-2100:nth-child(1) { --card-accent: #ec4899; }
.value-card-2100:nth-child(2) { --card-accent: #8b5cf6; }
.value-card-2100:nth-child(3) { --card-accent: #3b82f6; }
.value-card-2100:nth-child(4) { --card-accent: #06b6d4; }

.value-icon-2100 {
    width: 80px;
    height: 80px;
    margin: 0 auto 24px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(139, 92, 246, 0.1));
    border: 1px solid rgba(236, 72, 153, 0.2);
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    color: var(--card-accent, #ec4899);
    transition: all 0.3s ease;
}

.value-card-2100:hover .value-icon-2100 {
    transform: scale(1.1) rotate(5deg);
    background: linear-gradient(135deg, var(--card-accent, #ec4899), rgba(139, 92, 246, 0.5));
    color: white;
}

.value-card-2100 h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.value-card-2100 p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== TEAM SECTION 2100 ===== */
.team-section-2100 {
    padding: 120px 0;
    background: var(--bg-primary);
    position: relative;
}

/* Team Grid */
.team-grid-2100 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team-card-2100 {
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 28px;
    padding: 40px;
    text-align: center;
    position: relative;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
}

.team-card-2100::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(180deg, transparent 60%, rgba(236, 72, 153, 0.05) 100%);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.team-card-2100:hover {
    transform: translateY(-15px);
    border-color: rgba(236, 72, 153, 0.3);
    box-shadow: 0 30px 80px rgba(236, 72, 153, 0.15);
}

.team-card-2100:hover::before {
    opacity: 1;
}

.team-avatar-2100 {
    width: 140px;
    height: 140px;
    margin: 0 auto 24px;
    background: linear-gradient(145deg, rgba(236, 72, 153, 0.1), rgba(139, 92, 246, 0.1));
    border: 3px solid rgba(236, 72, 153, 0.2);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
    color: #ec4899;
    position: relative;
    transition: all 0.4s ease;
}

.team-avatar-2100::before {
    content: '';
    position: absolute;
    inset: -5px;
    border-radius: 50%;
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    opacity: 0;
    z-index: -1;
    transition: opacity 0.3s ease;
}

.team-card-2100:hover .team-avatar-2100 {
    transform: scale(1.05);
    border-color: transparent;
}

.team-card-2100:hover .team-avatar-2100::before {
    opacity: 0.3;
}

.team-card-2100 h3 {
    font-size: 1.4rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.team-role-2100 {
    font-size: 1rem;
    color: #ec4899;
    font-weight: 600;
    margin-bottom: 16px;
}

.team-bio-2100 {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 20px;
}

.team-social-2100 {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.team-social-2100 a {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--bg-secondary);
    border: 1px solid var(--border-color);
    border-radius: 12px;
    color: var(--text-secondary);
    font-size: 1rem;
    transition: all 0.3s ease;
}

.team-social-2100 a:hover {
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    border-color: transparent;
    color: white;
    transform: translateY(-3px);
}

/* ===== TIMELINE SECTION 2100 ===== */
.timeline-section-2100 {
    padding: 120px 0;
    background: linear-gradient(180deg, var(--bg-secondary) 0%, var(--bg-primary) 100%);
    position: relative;
    overflow: hidden;
}

.timeline-section-2100::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 800px;
    height: 800px;
    background: radial-gradient(circle, rgba(139, 92, 246, 0.08) 0%, transparent 70%);
    pointer-events: none;
}

/* Timeline */
.timeline-2100 {
    position: relative;
    max-width: 1000px;
    margin: 0 auto;
}

.timeline-2100::before {
    content: '';
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 4px;
    height: 100%;
    background: linear-gradient(180deg, #ec4899, #8b5cf6, #3b82f6, #06b6d4);
    border-radius: 4px;
}

.timeline-item-2100 {
    display: flex;
    align-items: center;
    margin-bottom: 60px;
    position: relative;
}

.timeline-item-2100:nth-child(odd) {
    flex-direction: row-reverse;
}

.timeline-item-2100:nth-child(odd) .timeline-content-2100 {
    text-align: right;
    padding-right: 60px;
    padding-left: 0;
}

.timeline-item-2100:nth-child(even) .timeline-content-2100 {
    text-align: left;
    padding-left: 60px;
}

.timeline-dot-2100 {
    position: absolute;
    left: 50%;
    transform: translateX(-50%);
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    border: 4px solid var(--bg-primary);
    border-radius: 50%;
    z-index: 2;
    box-shadow: 0 0 30px rgba(236, 72, 153, 0.4);
}

.timeline-content-2100 {
    width: 50%;
    padding: 30px;
    background: var(--bg-primary);
    border: 1px solid var(--border-color);
    border-radius: 20px;
    transition: all 0.3s ease;
}

.timeline-content-2100:hover {
    border-color: rgba(236, 72, 153, 0.3);
    transform: scale(1.02);
    box-shadow: 0 20px 50px rgba(0, 0, 0, 0.15);
}

.timeline-year-2100 {
    font-size: 1.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 10px;
}

.timeline-title-2100 {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.timeline-desc-2100 {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

/* ===== CULTURE SECTION 2100 ===== */
.culture-section-2100 {
    padding: 120px 0;
    background: var(--bg-primary);
    position: relative;
}

.culture-grid-2100 {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 30px;
}

.culture-card-2100 {
    background: linear-gradient(145deg, var(--bg-secondary), var(--bg-primary));
    border: 1px solid var(--border-color);
    border-radius: 24px;
    padding: 40px;
    position: relative;
    overflow: hidden;
    transition: all 0.4s ease;
}

.culture-card-2100::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: linear-gradient(90deg, var(--culture-color, #ec4899), transparent);
}

.culture-card-2100:nth-child(1) { --culture-color: #ec4899; }
.culture-card-2100:nth-child(2) { --culture-color: #8b5cf6; }
.culture-card-2100:nth-child(3) { --culture-color: #3b82f6; }
.culture-card-2100:nth-child(4) { --culture-color: #06b6d4; }
.culture-card-2100:nth-child(5) { --culture-color: #10b981; }
.culture-card-2100:nth-child(6) { --culture-color: #f59e0b; }

.culture-card-2100:hover {
    transform: translateY(-10px);
    border-color: var(--culture-color, #ec4899);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.2);
}

.culture-icon-2100 {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    color: var(--culture-color, #ec4899);
    margin-bottom: 24px;
    transition: all 0.3s ease;
}

.culture-card-2100:hover .culture-icon-2100 {
    transform: scale(1.1) rotate(-5deg);
    background: linear-gradient(135deg, var(--culture-color, #ec4899), rgba(139, 92, 246, 0.5));
    color: white;
}

.culture-card-2100 h3 {
    font-size: 1.3rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.culture-card-2100 p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* ===== CTA SECTION 2100 ===== */
.about-cta-2100 {
    padding: 120px 0;
    background: linear-gradient(135deg, #020617 0%, #0f172a 50%, #1e1b4b 100%);
    position: relative;
    overflow: hidden;
}

.about-cta-2100::before {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 1000px;
    height: 1000px;
    background: radial-gradient(circle, rgba(236, 72, 153, 0.15) 0%, transparent 60%);
    pointer-events: none;
}

.cta-content-2100 {
    text-align: center;
    position: relative;
    z-index: 1;
}

.cta-badge-2100 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(236, 72, 153, 0.1);
    border: 1px solid rgba(236, 72, 153, 0.3);
    border-radius: 50px;
    color: #f472b6;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.cta-title-2100 {
    font-size: clamp(2rem, 4vw, 3.5rem);
    font-weight: 700;
    color: #f8fafc;
    margin-bottom: 20px;
}

.cta-title-2100 span {
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-desc-2100 {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.7);
    max-width: 600px;
    margin: 0 auto 40px;
    line-height: 1.7;
}

.cta-buttons-2100 {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn-primary-2100 {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: linear-gradient(135deg, #ec4899, #8b5cf6);
    border: none;
    border-radius: 16px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.cta-btn-primary-2100::before {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, #8b5cf6, #ec4899);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.cta-btn-primary-2100:hover {
    transform: translateY(-3px);
    box-shadow: 0 20px 50px rgba(236, 72, 153, 0.4);
}

.cta-btn-primary-2100:hover::before {
    opacity: 1;
}

.cta-btn-primary-2100 span,
.cta-btn-primary-2100 i {
    position: relative;
    z-index: 1;
}

.cta-btn-secondary-2100 {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    background: transparent;
    border: 2px solid rgba(255, 255, 255, 0.3);
    border-radius: 16px;
    color: white;
    font-size: 1.1rem;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.3s ease;
}

.cta-btn-secondary-2100:hover {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.5);
    transform: translateY(-3px);
}

/* ===== LIGHT THEME SUPPORT ===== */
[data-theme="light"] .about-hero-2100,
[data-theme="light"] .about-cta-2100 {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%) !important;
}

[data-theme="light"] .hero-bg-2100 {
    background: linear-gradient(135deg, #f8fafc 0%, #e2e8f0 50%, #f1f5f9 100%) !important;
}

[data-theme="light"] .hero-gradient-orb.orb-1 {
    background: radial-gradient(circle, rgba(236, 72, 153, 0.2) 0%, transparent 70%);
}

[data-theme="light"] .hero-gradient-orb.orb-2 {
    background: radial-gradient(circle, rgba(139, 92, 246, 0.2) 0%, transparent 70%);
}

[data-theme="light"] .hero-gradient-orb.orb-3 {
    background: radial-gradient(circle, rgba(59, 130, 246, 0.15) 0%, transparent 70%);
}

[data-theme="light"] .hero-grid-pattern {
    background-image: 
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
}

[data-theme="light"] .hero-particles span {
    background: rgba(0, 0, 0, 0.2);
}

[data-theme="light"] .hero-title-2100 .title-line,
[data-theme="light"] .cta-title-2100 {
    color: #1e293b !important;
}

[data-theme="light"] .hero-title-2100 .title-gradient,
[data-theme="light"] .cta-title-2100 span {
    background: linear-gradient(135deg, #ec4899, #8b5cf6, #3b82f6);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

[data-theme="light"] .hero-description-2100,
[data-theme="light"] .cta-desc-2100 {
    color: #64748b !important;
}

[data-theme="light"] .breadcrumb-2100 a {
    color: #64748b;
}

[data-theme="light"] .breadcrumb-2100 .separator {
    color: #94a3b8;
}

[data-theme="light"] .breadcrumb-2100 .current {
    color: #1e293b;
}

[data-theme="light"] .hero-stat-label {
    color: #64748b !important;
}

[data-theme="light"] .story-card-3d {
    background: linear-gradient(145deg, rgba(139, 92, 246, 0.08), rgba(236, 72, 153, 0.04));
    border-color: rgba(139, 92, 246, 0.15);
}

[data-theme="light"] .milestone-text {
    color: #64748b;
}

[data-theme="light"] .timeline-content-2100,
[data-theme="light"] .value-card-2100,
[data-theme="light"] .team-card-2100,
[data-theme="light"] .culture-card-2100 {
    background: #ffffff;
    border-color: #e2e8f0;
}

[data-theme="light"] .timeline-dot-2100 {
    border-color: #ffffff;
}

[data-theme="light"] .team-social-2100 a {
    background: #f1f5f9;
    border-color: #e2e8f0;
}

[data-theme="light"] .cta-btn-secondary-2100 {
    border-color: #94a3b8;
    color: #1e293b;
}

[data-theme="light"] .cta-btn-secondary-2100:hover {
    background: rgba(0, 0, 0, 0.05);
    border-color: #64748b;
}

/* ===== RESPONSIVE DESIGN ===== */
@media (max-width: 1200px) {
    .values-grid-2100 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid-2100 {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .culture-grid-2100 {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .story-card-3d {
        transform: none;
    }
    
    .timeline-2100::before {
        left: 30px;
    }
    
    .timeline-item-2100,
    .timeline-item-2100:nth-child(odd) {
        flex-direction: column;
        align-items: flex-start;
        padding-left: 70px;
    }
    
    .timeline-item-2100:nth-child(odd) .timeline-content-2100,
    .timeline-item-2100:nth-child(even) .timeline-content-2100 {
        text-align: left;
        padding: 25px;
        width: 100%;
    }
    
    .timeline-dot-2100 {
        left: 30px;
    }
}

@media (max-width: 768px) {
    .about-hero-2100 {
        min-height: auto;
        padding: 120px 0 80px;
    }
    
    .hero-stats-2100 {
        gap: 30px;
    }
    
    .hero-stat-value {
        font-size: 2.5rem;
    }
    
    .values-grid-2100,
    .team-grid-2100,
    .culture-grid-2100 {
        grid-template-columns: 1fr;
    }
    
    .cta-buttons-2100 {
        flex-direction: column;
        align-items: center;
    }
    
    .cta-btn-primary-2100,
    .cta-btn-secondary-2100 {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .hero-container-2100 {
        padding: 0 1rem;
    }
    
    .section-container-2100 {
        padding: 0 1rem;
    }
    
    .story-card-3d {
        padding: 30px 20px;
    }
    
    .value-card-2100,
    .team-card-2100,
    .culture-card-2100 {
        padding: 30px 20px;
    }
}
