/* ============================================
   ABOUT PAGE STYLES
   ============================================ */

/* About Hero Section - Polished & Professional */
.about-hero {
    position: relative;
    min-height: 85vh;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 160px 48px 120px;
    overflow: hidden;
    margin-top: 80px;
}

.about-hero-bg {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: linear-gradient(135deg, #08080c 0%, #0f0f18 30%, #151525 60%, #1a1a2e 100%);
    z-index: 0;
}

.about-hero-bg .orb-1 {
    position: absolute;
    width: 700px;
    height: 700px;
    background: radial-gradient(circle, rgba(229, 62, 62, 0.12) 0%, transparent 60%);
    top: -250px;
    right: -150px;
    animation: floatOrb 20s ease-in-out infinite;
    filter: blur(40px);
}

.about-hero-bg .orb-2 {
    position: absolute;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.08) 0%, transparent 60%);
    bottom: -200px;
    left: -150px;
    animation: floatOrb 25s ease-in-out infinite reverse;
    filter: blur(40px);
}

.about-hero-bg .orb-3 {
    position: absolute;
    width: 400px;
    height: 400px;
    background: radial-gradient(circle, rgba(229, 62, 62, 0.06) 0%, transparent 60%);
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    animation: pulseOrb 8s ease-in-out infinite;
    filter: blur(60px);
}

@keyframes pulseOrb {
    0%, 100% { opacity: 0.5; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 0.8; transform: translate(-50%, -50%) scale(1.2); }
}

.about-hero-bg .hero-grid-pattern {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background-image: url("data:image/svg+xml,%3Csvg width='60' height='60' viewBox='0 0 60 60' xmlns='http://www.w3.org/2000/svg'%3E%3Cg fill='none' fill-rule='evenodd'%3E%3Cg fill='%23ffffff' fill-opacity='0.015'%3E%3Cpath d='M36 34v-4h-2v4h-4v2h4v4h2v-4h4v-2h-4zm0-30V0h-2v4h-4v2h4v4h2V6h4V4h-4zM6 34v-4H4v4H0v2h4v4h2v-4h4v-2H6zM6 4V0H4v4H0v2h4v4h2V6h4V4H6z'/%3E%3C/g%3E%3C/g%3E%3C/svg%3E");
    opacity: 0.8;
}

@keyframes floatOrb {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(30px, -30px) scale(1.1); }
}

.about-hero-container {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
    text-align: center;
}

.about-hero-content {
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Badge with dot indicator */
.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(229, 62, 62, 0.1);
    color: var(--primary);
    padding: 12px 24px;
    border-radius: var(--radius-full);
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 32px;
    border: 1px solid rgba(229, 62, 62, 0.15);
    backdrop-filter: blur(10px);
    transition: all 0.3s ease;
}

.hero-badge:hover {
    background: rgba(229, 62, 62, 0.15);
    border-color: rgba(229, 62, 62, 0.25);
    transform: translateY(-2px);
}

.badge-dot {
    width: 8px;
    height: 8px;
    background: var(--primary);
    border-radius: 50%;
    animation: pulseDot 2s ease-in-out infinite;
}

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

/* Large bold headline */
.about-hero-title {
    font-family: var(--font-display);
    font-size: clamp(2.75rem, 6vw, 4rem);
    font-weight: 800;
    color: white;
    line-height: 1.1;
    margin-bottom: 28px;
    letter-spacing: -0.03em;
}

/* Gradient underline highlight */
.title-highlight-gradient {
    position: relative;
    display: inline-block;
    color: white;
}

.title-highlight-gradient::after {
    content: '';
    position: absolute;
    bottom: 4px;
    left: 0;
    width: 100%;
    height: 8px;
    background: linear-gradient(90deg, var(--primary) 0%, #ff8a7a 50%, var(--primary-light) 100%);
    border-radius: 4px;
    opacity: 0.6;
    z-index: -1;
}

/* Improved description */
.about-hero-description {
    font-size: 1.25rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.85;
    max-width: 580px;
    margin: 0 auto 56px;
    font-weight: 400;
}

/* Stats Grid with Glass Cards */
.hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px;
    width: 100%;
    max-width: 900px;
}

.hero-stat-card {
    background: rgba(255, 255, 255, 0.03);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 20px;
    padding: 32px 24px;
    text-align: center;
    transition: all 0.4s ease;
}

.hero-stat-card:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(229, 62, 62, 0.2);
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.2);
}

.hero-stat-card .stat-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 10px;
    letter-spacing: -0.02em;
}

.hero-stat-card .stat-text {
    font-size: 0.8rem;
    color: rgba(255, 255, 255, 0.5);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 500;
}

/* Our Story Section - Enhanced */
.our-story {
    padding: 120px 48px;
    background: var(--bg-primary);
    position: relative;
    overflow: hidden;
}

/* Background Parallax Shapes */
.story-bg-shapes {
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    pointer-events: none;
    overflow: hidden;
}

.bg-shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.4;
    will-change: transform;
}

.bg-shape.shape-1 {
    width: 300px;
    height: 300px;
    background: radial-gradient(circle, rgba(229, 62, 62, 0.08) 0%, transparent 70%);
    top: 10%;
    right: 5%;
}

.bg-shape.shape-2 {
    width: 200px;
    height: 200px;
    background: radial-gradient(circle, rgba(78, 205, 196, 0.06) 0%, transparent 70%);
    bottom: 20%;
    left: 10%;
}

.bg-shape.shape-3 {
    width: 150px;
    height: 150px;
    background: radial-gradient(circle, rgba(229, 62, 62, 0.05) 0%, transparent 70%);
    top: 60%;
    right: 15%;
}

.story-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: start;
    position: relative;
    z-index: 1;
}

/* Left Column - Sticky Content */
.story-content {
    position: sticky;
    top: 96px;
    height: fit-content;
}

.story-content-inner {
    max-width: 580px;
}

.story-content .section-tag {
    margin-bottom: 20px;
}

.section-heading {
    font-family: var(--font-display);
    font-size: clamp(1.85rem, 3.5vw, 2.5rem);
    font-weight: 700;
    color: var(--text-primary);
    line-height: 1.2;
    margin-bottom: 28px;
    letter-spacing: -0.02em;
}

.section-heading .title-highlight {
    color: var(--primary);
}

.story-text p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    line-height: 1.9;
    margin-bottom: 22px;
}

.story-text p:last-child {
    margin-bottom: 0;
}

/* Right Column - Timeline */
.story-visual {
    position: relative;
}

.story-timeline {
    position: relative;
    padding-left: 40px;
}

/* Timeline Track & Progress */
.timeline-track {
    position: absolute;
    left: 11px;
    top: 20px;
    bottom: 20px;
    width: 3px;
    background: rgba(229, 62, 62, 0.12);
    border-radius: 3px;
    overflow: hidden;
}

.timeline-progress {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 0%;
    background: linear-gradient(180deg, var(--primary) 0%, var(--primary-light) 100%);
    border-radius: 3px;
    transition: height 0.1s linear;
    will-change: height;
}

/* Timeline Item */
.timeline-item {
    position: relative;
    padding-bottom: 48px;
    padding-left: 32px;
    opacity: 0;
    transform: translateY(16px) scale(0.98);
    transition: opacity 0.5s ease-out, transform 0.5s ease-out;
    will-change: opacity, transform;
}

.timeline-item.is-visible {
    opacity: 1;
    transform: translateY(0) scale(1);
}

.timeline-item:last-child {
    padding-bottom: 0;
}

/* Timeline Dot */
.timeline-dot {
    position: absolute;
    left: -29px;
    top: 24px;
    width: 14px;
    height: 14px;
    background: var(--bg-primary);
    border: 3px solid rgba(229, 62, 62, 0.3);
    border-radius: 50%;
    transition: all 0.4s ease-out;
    z-index: 2;
}

.timeline-item.is-visible .timeline-dot {
    background: var(--primary);
    border-color: var(--primary);
    box-shadow: 0 0 0 4px rgba(229, 62, 62, 0.15);
}

/* Ripple Effect */
.dot-ripple {
    position: absolute;
    top: 50%;
    left: 50%;
    width: 40px;
    height: 40px;
    transform: translate(-50%, -50%) scale(0);
    background: rgba(229, 62, 62, 0.2);
    border-radius: 50%;
    opacity: 0;
}

.timeline-item.is-visible .dot-ripple {
    animation: rippleOut 0.6s ease-out forwards;
}

@keyframes rippleOut {
    0% {
        transform: translate(-50%, -50%) scale(0);
        opacity: 1;
    }
    100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0;
    }
}

/* Timeline Card */
.timeline-card {
    background: var(--bg-secondary);
    border-radius: 16px;
    padding: 28px;
    border: 1px solid transparent;
    transition: all 0.35s ease-out;
    cursor: pointer;
    position: relative;
    overflow: hidden;
}

.timeline-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 32px rgba(0, 0, 0, 0.08);
    border-color: rgba(229, 62, 62, 0.15);
}

.timeline-card:hover .timeline-hint {
    opacity: 1;
    transform: translateY(0);
}

/* View Details Hint */
.timeline-hint {
    position: absolute;
    bottom: 12px;
    right: 16px;
    font-size: 0.75rem;
    color: var(--primary);
    font-weight: 600;
    opacity: 0;
    transform: translateY(4px);
    transition: all 0.3s ease;
}

.timeline-year {
    display: inline-block;
    font-family: var(--font-display);
    font-size: 0.8rem;
    font-weight: 700;
    color: var(--primary);
    background: rgba(229, 62, 62, 0.1);
    padding: 6px 14px;
    border-radius: var(--radius-full);
    margin-bottom: 14px;
}

.timeline-content h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 8px;
}

.timeline-content p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0;
}

/* Count-up numbers */
.count-up {
    font-weight: 700;
    color: var(--primary);
}

/* Reduced Motion */
@media (prefers-reduced-motion: reduce) {
    .timeline-item {
        opacity: 1;
        transform: none;
        transition: none;
    }
    
    .timeline-progress {
        transition: none;
    }
    
    .timeline-card {
        transition: box-shadow 0.2s ease, border-color 0.2s ease;
    }
    
    .timeline-card:hover {
        transform: none;
    }
    
    .dot-ripple {
        display: none;
    }
    
    .bg-shape {
        display: none;
    }
    
    .timeline-dot {
        transition: none;
    }
    
    .timeline-item.is-visible .timeline-dot {
        background: var(--primary);
        border-color: var(--primary);
    }
}

/* Mission & Vision Section - Enhanced */
.mission-vision {
    padding: 80px 48px;
    background: var(--bg-secondary);
}

.mv-container {
    max-width: 1000px;
    margin: 0 auto;
}

/* Mission & Vision Cards */
.mv-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 28px;
}

.mv-card {
    background: var(--bg-primary);
    padding: 36px 40px;
    border-radius: 26px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04), 0 1px 3px rgba(0, 0, 0, 0.02);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    transition: transform 0.35s ease-out, box-shadow 0.35s ease-out;
    will-change: transform, opacity;
    
    /* Animation initial state */
    opacity: 0;
    transform: translateY(14px);
}

.mv-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.mv-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08), 0 4px 12px rgba(0, 0, 0, 0.04);
}

/* Icon Chip */
.mv-icon-chip {
    width: 56px;
    height: 56px;
    background: rgba(229, 62, 62, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary);
    margin-bottom: 24px;
    transition: all 0.4s ease-out;
    will-change: transform, box-shadow;
    
    /* Animation initial state */
    transform: scale(0.96);
}

.mv-card.is-visible .mv-icon-chip {
    transform: scale(1);
}

.mv-icon-chip:hover {
    transform: translateY(-2px) scale(1.02);
    box-shadow: 0 8px 24px rgba(229, 62, 62, 0.2);
    background: rgba(229, 62, 62, 0.15);
}

.mv-icon-chip svg {
    width: 26px;
    height: 26px;
}

.mv-card h3 {
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 14px;
    letter-spacing: -0.01em;
}

.mv-card p {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.8;
    max-width: 60ch;
}

/* Reduced Motion for Mission/Vision */
@media (prefers-reduced-motion: reduce) {
    .mv-card {
        opacity: 1;
        transform: none;
        transition: box-shadow 0.2s ease, border-color 0.2s ease;
    }
    
    .mv-card:hover {
        transform: none;
    }
    
    .mv-icon-chip {
        transform: scale(1);
        transition: background 0.2s ease;
    }
    
    .mv-icon-chip:hover {
        transform: none;
    }
}

/* Core Values Section */
.core-values {
    padding: 100px 48px;
    background: var(--bg-primary);
}

.values-container {
    max-width: 1200px;
    margin: 0 auto;
}

.values-header {
    text-align: center;
    margin-bottom: 64px;
}

.values-header .section-tag {
    margin-bottom: 20px;
}

.section-intro {
    font-size: 1.1rem;
    color: var(--text-secondary);
    max-width: 550px;
    margin: 0 auto;
    line-height: 1.75;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 24px;
}

.value-card {
    background: var(--bg-secondary);
    padding: 36px 32px;
    border-radius: var(--radius-lg);
    position: relative;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(229, 62, 62, 0.1);
}

.value-card:hover .value-icon {
    transform: scale(1.1);
}

.value-number {
    position: absolute;
    top: 20px;
    right: 24px;
    font-family: var(--font-display);
    font-size: 2.5rem;
    font-weight: 700;
    color: rgba(229, 62, 62, 0.08);
    line-height: 1;
}

.value-icon {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    margin-bottom: 20px;
    transition: transform 0.3s ease;
}

.value-icon svg {
    width: 22px;
    height: 22px;
}

.value-card h4 {
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.value-card p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.7;
}

/* Team Section */
.team-section {
    padding: 100px 48px;
    background: var(--bg-secondary);
}

.team-container {
    max-width: 1200px;
    margin: 0 auto;
}

.team-header {
    text-align: center;
    margin-bottom: 64px;
}

.team-header .section-tag {
    margin-bottom: 20px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 28px;
    margin-bottom: 48px;
}

.team-card {
    background: var(--bg-primary);
    padding: 36px 28px;
    border-radius: var(--radius-lg);
    text-align: center;
    transition: all 0.3s ease;
    border: 1px solid transparent;
}

.team-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-md);
    border-color: rgba(229, 62, 62, 0.1);
}

.team-avatar {
    margin-bottom: 20px;
}

.avatar-placeholder {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    font-family: var(--font-display);
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.team-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 4px;
}

.team-role {
    display: block;
    font-size: 0.85rem;
    color: var(--primary);
    font-weight: 600;
    margin-bottom: 12px;
}

.team-card p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 16px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 12px;
}

.team-social a {
    width: 36px;
    height: 36px;
    background: var(--bg-secondary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--text-secondary);
    transition: all 0.3s ease;
}

.team-social a:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

.team-social svg {
    width: 16px;
    height: 16px;
}

.team-cta {
    text-align: center;
    padding-top: 32px;
    border-top: 1px solid rgba(0, 0, 0, 0.06);
}

.team-cta p {
    font-size: 1.1rem;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

/* Why Choose Us Section */
.why-choose {
    padding: 100px 48px;
    background: var(--bg-primary);
}

.choose-container {
    max-width: 1200px;
    margin: 0 auto;
    display: grid;
    grid-template-columns: 1.1fr 0.9fr;
    gap: 60px;
    align-items: center;
}

.choose-content .section-tag {
    margin-bottom: 20px;
}

.choose-intro {
    font-size: 1.05rem;
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 36px;
}

.choose-features {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.choose-feature {
    display: flex;
    gap: 16px;
    padding: 20px;
    background: var(--bg-secondary);
    border-radius: var(--radius-lg);
    transition: all 0.3s ease;
}

.choose-feature:hover {
    transform: translateX(8px);
    box-shadow: var(--shadow-sm);
}

.choose-icon {
    width: 48px;
    height: 48px;
    min-width: 48px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
}

.choose-icon svg {
    width: 22px;
    height: 22px;
}

.choose-text h4 {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 6px;
}

.choose-text p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
}

.choose-visual {
    display: flex;
    justify-content: center;
}

.choose-card {
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a2e 50%, #2d1f3d 100%);
    border-radius: var(--radius-xl);
    padding: 48px 40px;
    position: relative;
    overflow: hidden;
    box-shadow: 
        var(--shadow-lg),
        0 0 60px rgba(229, 62, 62, 0.1);
}

.choose-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(229, 62, 62, 0.15) 0%, transparent 40%),
        radial-gradient(circle at 80% 20%, rgba(78, 205, 196, 0.1) 0%, transparent 40%);
}

.choose-card-inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
}

.card-stat {
    text-align: center;
}

.card-stat .big-number {
    display: block;
    font-family: var(--font-display);
    font-size: 2.75rem;
    font-weight: 700;
    color: white;
    line-height: 1;
    margin-bottom: 8px;
}

.card-stat .stat-desc {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.6);
}

/* Technologies Section */
.technologies {
    padding: 100px 48px;
    background: var(--bg-secondary);
}

.tech-container {
    max-width: 1000px;
    margin: 0 auto;
}

.tech-header {
    text-align: center;
    margin-bottom: 56px;
}

.tech-header .section-tag {
    margin-bottom: 20px;
}

.tech-categories {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 32px;
}

.tech-category {
    background: var(--bg-primary);
    padding: 28px 32px;
    border-radius: var(--radius-lg);
}

.tech-category:last-child {
    grid-column: span 2;
    max-width: 50%;
    margin: 0 auto;
}

.tech-category h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 16px;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.tech-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.tech-pill {
    display: inline-block;
    padding: 8px 16px;
    background: var(--bg-secondary);
    color: var(--text-secondary);
    font-size: 0.85rem;
    font-weight: 500;
    border-radius: var(--radius-full);
    transition: all 0.3s ease;
}

.tech-pill:hover {
    background: var(--primary);
    color: white;
    transform: translateY(-2px);
}

/* Clients Section */
.clients-section {
    padding: 100px 48px;
    background: var(--bg-primary);
}

.clients-container {
    max-width: 1000px;
    margin: 0 auto;
}

.clients-header {
    text-align: center;
    margin-bottom: 48px;
}

.clients-header .section-tag {
    margin-bottom: 20px;
}

.clients-logos {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 24px;
    margin-bottom: 64px;
}

.client-logo {
    aspect-ratio: 2/1;
    background: var(--bg-secondary);
    border-radius: var(--radius-md);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
}

.client-logo:hover {
    transform: scale(1.05);
    box-shadow: var(--shadow-sm);
}

.logo-placeholder {
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--text-light);
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.testimonial-highlight {
    max-width: 700px;
    margin: 0 auto;
    overflow: hidden;
    position: relative;
}

.testimonial-carousel {
    display: flex;
    gap: 0;
    overflow-x: auto;
    overflow-y: hidden;
    scroll-behavior: smooth;
    scroll-snap-type: x mandatory;
    scrollbar-width: none;
    -ms-overflow-style: none;
    position: relative;
}

.testimonial-carousel::-webkit-scrollbar {
    display: none;
}

.testimonial-card {
    background: var(--bg-secondary);
    padding: 40px;
    border-radius: var(--radius-xl);
    text-align: center;
    position: relative;
    width: 100%;
    min-width: 100%;
    flex-shrink: 0;
    scroll-snap-align: start;
    scroll-snap-stop: always;
    box-sizing: border-box;
}

.quote-icon {
    width: 48px;
    height: 48px;
    background: var(--primary);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 24px;
}

.quote-icon svg {
    width: 20px;
    height: 20px;
    color: white;
}

.testimonial-text {
    font-size: 1.15rem;
    color: var(--text-primary);
    line-height: 1.8;
    font-style: italic;
    margin-bottom: 28px;
}

.testimonial-author {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px;
}

.testimonial-author .author-avatar {
    width: 48px;
    height: 48px;
    background: linear-gradient(135deg, var(--primary-light) 0%, var(--primary) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    color: white;
    font-size: 0.9rem;
}

.author-info {
    text-align: left;
}

.author-info strong {
    display: block;
    font-size: 1rem;
    color: var(--text-primary);
}

.author-info span {
    font-size: 0.85rem;
    color: var(--text-secondary);
}

/* About CTA Section */
.about-cta {
    padding: 100px 48px;
    background: linear-gradient(135deg, var(--bg-dark) 0%, #1a1a2e 50%, #2d1f3d 100%);
    position: relative;
    overflow: hidden;
}

.about-cta::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: 
        radial-gradient(circle at 20% 80%, rgba(229, 62, 62, 0.2) 0%, transparent 50%),
        radial-gradient(circle at 80% 20%, rgba(78, 205, 196, 0.15) 0%, transparent 50%);
}

.about-cta .cta-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-cta h2 {
    font-family: var(--font-display);
    font-size: clamp(2rem, 4vw, 2.75rem);
    color: white;
    margin-bottom: 20px;
}

.about-cta p {
    font-size: 1.15rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 36px;
}

.about-cta .cta-buttons {
    display: flex;
    justify-content: center;
    gap: 16px;
}

/* ============================================
   RESPONSIVE STYLES
   ============================================ */

@media (max-width: 1024px) {
    .our-story {
        padding: 80px 48px;
    }
    
    .story-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    /* Remove sticky on tablet/mobile */
    .story-content {
        position: static;
    }
    
    .story-content-inner {
        max-width: 100%;
        text-align: center;
    }
    
    .story-content .section-tag {
        margin-left: auto;
        margin-right: auto;
    }
    
    .section-heading {
        text-align: center;
    }
    
    .story-text p {
        text-align: center;
        max-width: 600px;
        margin-left: auto;
        margin-right: auto;
    }
    
    .story-timeline {
        max-width: 500px;
        margin: 0 auto;
    }
    
    /* Simplify animations on tablet */
    .timeline-item {
        opacity: 1;
        transform: translateY(8px);
    }
    
    .timeline-item.is-visible {
        transform: translateY(0);
    }
    
    /* Disable parallax */
    .bg-shape {
        display: none;
    }
    
    .mv-cards {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .choose-container {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .choose-visual {
        order: -1;
    }
    
    .tech-categories {
        grid-template-columns: 1fr;
    }
    
    .tech-category:last-child {
        grid-column: span 1;
        max-width: 100%;
    }
    
    .clients-logos {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 140px 24px 80px;
        min-height: auto;
    }
    
    .about-hero-title {
        font-size: 2.25rem;
    }
    
    .about-hero-description {
        font-size: 1.1rem;
        max-width: 100%;
    }
    
    .hero-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 14px;
    }
    
    .hero-stat-card {
        padding: 24px 16px;
        border-radius: 16px;
    }
    
    .hero-stat-card .stat-number {
        font-size: 2rem;
    }
    
    .hero-stat-card .stat-text {
        font-size: 0.7rem;
    }
    
    .our-story {
        padding: 60px 24px;
    }
    
    .story-timeline {
        padding-left: 32px;
        max-width: 100%;
    }
    
    .timeline-track {
        left: 8px;
    }
    
    .timeline-dot {
        left: -24px;
        width: 12px;
        height: 12px;
    }
    
    .timeline-item {
        padding-bottom: 32px;
        padding-left: 24px;
    }
    
    .timeline-card {
        padding: 20px;
        border-radius: 12px;
    }
    
    .timeline-year {
        font-size: 0.75rem;
        padding: 5px 12px;
    }
    
    .timeline-content h4 {
        font-size: 1.05rem;
    }
    
    .timeline-content p {
        font-size: 0.9rem;
    }
    
    .timeline-hint {
        display: none;
    }
    
    .story-text p {
        font-size: 1rem;
        line-height: 1.8;
    }
    
    .mission-vision {
        padding: 64px 24px;
    }
    
    .mv-card {
        padding: 28px 24px;
        border-radius: 20px;
    }
    
    .mv-card h3 {
        font-size: 1.35rem;
    }
    
    .mv-card p {
        font-size: 1rem;
    }
    
    .mv-icon-chip {
        width: 48px;
        height: 48px;
        margin-bottom: 20px;
    }
    
    .mv-icon-chip svg {
        width: 22px;
        height: 22px;
    }
    
    .core-values,
    .team-section,
    .why-choose,
    .technologies,
    .clients-section,
    .about-cta {
        padding: 70px 24px;
    }
    
    .section-heading {
        font-size: 1.75rem;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 20px;
    }
    
    .clients-logos {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .about-cta .cta-buttons {
        flex-direction: column;
        align-items: center;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 120px 20px 70px;
    }
    
    .about-hero-title {
        font-size: 1.85rem;
    }
    
    .title-highlight-gradient::after {
        height: 6px;
        bottom: 2px;
    }
    
    .hero-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 12px;
    }
    
    .hero-stat-card {
        padding: 20px 12px;
    }
    
    .hero-stat-card .stat-number {
        font-size: 1.75rem;
    }
    
    .hero-stat-card .stat-text {
        font-size: 0.65rem;
        letter-spacing: 0.05em;
    }
    
    .mv-card {
        padding: 32px 24px;
    }
    
    .value-card {
        padding: 28px 24px;
    }
    
    .choose-card {
        padding: 36px 28px;
    }
    
    .testimonial-card {
        padding: 28px 20px;
        min-width: 320px;
    }
    
    .testimonial-text {
        font-size: 1rem;
    }
    
    .testimonial-carousel {
        gap: 20px;
        padding-left: 20px;
        padding-right: 20px;
        margin: 0 -20px;
    }
}

