      /* === MODERN ANIMATIONS SYSTEM === */
      
      /* Base Animation Variables */
      :root {
        --ease-out-expo: cubic-bezier(0.19, 1, 0.22, 1);
        --ease-out-quart: cubic-bezier(0.25, 1, 0.5, 1);
        --ease-in-out-quart: cubic-bezier(0.76, 0, 0.24, 1);
        --spring: cubic-bezier(0.34, 1.56, 0.64, 1);
      }
      
      /* === REVEAL ANIMATIONS === */
      .reveal {
        opacity: 0;
        transform: translateY(40px);
        transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
      }
      
      .reveal.active {
        opacity: 1;
        transform: translateY(0);
      }
      
      .reveal-left {
        opacity: 0;
        transform: translateX(-60px);
        transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
      }
      
      .reveal-left.active {
        opacity: 1;
        transform: translateX(0);
      }
      
      .reveal-right {
        opacity: 0;
        transform: translateX(60px);
        transition: opacity 0.8s var(--ease-out-expo), transform 0.8s var(--ease-out-expo);
      }
      
      .reveal-right.active {
        opacity: 1;
        transform: translateX(0);
      }
      
      .reveal-scale {
        opacity: 0;
        transform: scale(0.9);
        transition: opacity 0.6s var(--ease-out-expo), transform 0.6s var(--ease-out-expo);
      }
      
      .reveal-scale.active {
        opacity: 1;
        transform: scale(1);
      }
      
      /* Stagger delays */
      .stagger-1 { transition-delay: 0.1s; }
      .stagger-2 { transition-delay: 0.2s; }
      .stagger-3 { transition-delay: 0.3s; }
      .stagger-4 { transition-delay: 0.4s; }
      .stagger-5 { transition-delay: 0.5s; }
      .stagger-6 { transition-delay: 0.6s; }
      
      /* === HEADER SCROLL STYLES === */
      .header {
        transition: transform 0.3s ease, background 0.3s ease, box-shadow 0.3s ease;
      }
      
      .header.hidden {
        transform: translateY(-100%);
      }
      
      .header.scrolled {
        background: rgba(255, 255, 255, 0.95);
        backdrop-filter: blur(10px);
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.08);
      }
      
      /* === ABOUT HERO === */
      .about-hero {
        padding: 140px 0 80px;
        background: linear-gradient(180deg, #f8faf8 0%, #fff 100%);
        position: relative;
        overflow: hidden;
      }
      
      /* Animated Background Orbs */
      .about-hero::before {
        content: '';
        position: absolute;
        top: -30%;
        right: -10%;
        width: 700px;
        height: 700px;
        background: radial-gradient(circle, rgba(239,68,68,0.12) 0%, transparent 60%);
        border-radius: 50%;
        pointer-events: none;
        animation: orbFloat 20s ease-in-out infinite;
      }
      
      .about-hero::after {
        content: '';
        position: absolute;
        bottom: -20%;
        left: -15%;
        width: 500px;
        height: 500px;
        background: radial-gradient(circle, rgba(248,113,113,0.08) 0%, transparent 60%);
        border-radius: 50%;
        pointer-events: none;
        animation: orbFloat 25s ease-in-out infinite reverse;
      }
      
      @keyframes orbFloat {
        0%, 100% { transform: translate(0, 0) scale(1); }
        25% { transform: translate(30px, -20px) scale(1.05); }
        50% { transform: translate(-20px, 30px) scale(0.95); }
        75% { transform: translate(-30px, -10px) scale(1.02); }
      }
      
      /* Floating Particles */
      .hero-particles {
        position: absolute;
        inset: 0;
        overflow: hidden;
        pointer-events: none;
      }
      
      .particle {
        position: absolute;
        width: 6px;
        height: 6px;
        background: linear-gradient(135deg, #ef4444, #f87171);
        border-radius: 50%;
        opacity: 0.4;
        animation: particleFloat 15s ease-in-out infinite;
      }
      
      .particle:nth-child(1) { top: 20%; left: 10%; animation-delay: 0s; animation-duration: 18s; }
      .particle:nth-child(2) { top: 60%; left: 20%; animation-delay: -3s; animation-duration: 20s; }
      .particle:nth-child(3) { top: 30%; right: 15%; animation-delay: -6s; animation-duration: 16s; }
      .particle:nth-child(4) { top: 70%; right: 25%; animation-delay: -9s; animation-duration: 22s; }
      .particle:nth-child(5) { top: 40%; left: 30%; animation-delay: -12s; animation-duration: 19s; }
      .particle:nth-child(6) { top: 80%; left: 50%; animation-delay: -2s; animation-duration: 17s; }
      
      @keyframes particleFloat {
        0%, 100% { transform: translate(0, 0) rotate(0deg); opacity: 0.4; }
        25% { transform: translate(50px, -30px) rotate(90deg); opacity: 0.6; }
        50% { transform: translate(-20px, -60px) rotate(180deg); opacity: 0.3; }
        75% { transform: translate(30px, -40px) rotate(270deg); opacity: 0.5; }
      }
      
      .about-hero-content {
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
        position: relative;
        z-index: 2;
      }
      
      .about-hero-img {
        width: 100%;
        max-width: 480px;
        height: auto;
        border-radius: 20px;
        margin: 1.5rem auto;
        display: block;
        box-shadow: 0 16px 48px rgba(0,0,0,0.1);
      }
      
      /* Animated Badge */
      .about-badge {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: linear-gradient(135deg, rgba(239,68,68,0.1) 0%, rgba(248,113,113,0.1) 100%);
        border: 1px solid rgba(239,68,68,0.2);
        padding: 8px 18px;
        border-radius: 100px;
        font-size: 0.75rem;
        font-weight: 600;
        color: #dc2626;
        text-transform: uppercase;
        letter-spacing: 0.08em;
        margin-bottom: 1.5rem;
        position: relative;
        overflow: hidden;
        animation: badgePulse 3s ease-in-out infinite;
      }
      
      .about-badge::before {
        content: '';
        position: absolute;
        top: 0;
        left: -100%;
        width: 100%;
        height: 100%;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.4), transparent);
        animation: shimmer 3s ease-in-out infinite;
      }
      
      @keyframes shimmer {
        0% { left: -100%; }
        50%, 100% { left: 100%; }
      }
      
      @keyframes badgePulse {
        0%, 100% { box-shadow: 0 0 0 0 rgba(239,68,68,0.2); }
        50% { box-shadow: 0 0 0 8px rgba(239,68,68,0); }
      }
      
      /* Animated Title */
      .about-hero h1 {
        font-size: 2.5rem;
        font-weight: 800;
        line-height: 1.2;
        color: #0a0a0a;
        margin-bottom: 1.25rem;
      }
      
      .about-hero h1 span {
        background: linear-gradient(135deg, #ef4444 0%, #dc2626 50%, #f87171 100%);
        background-size: 200% 200%;
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        animation: gradientShift 4s ease infinite;
        position: relative;
      }
      
      @keyframes gradientShift {
        0%, 100% { background-position: 0% 50%; }
        50% { background-position: 100% 50%; }
      }
      
      .about-hero p {
        font-size: 1.125rem;
        color: #555;
        line-height: 1.7;
        max-width: 600px;
        margin: 0 auto;
      }
      
      /* === STATS SECTION === */
      .about-stats {
        display: grid;
        grid-template-columns: repeat(4, 1fr);
        gap: 2rem;
        margin-top: 4rem;
        padding: 2.5rem;
        background: #fff;
        border-radius: 24px;
        box-shadow: 0 10px 40px rgba(0,0,0,0.06);
        border: 1px solid rgba(0,0,0,0.04);
        position: relative;
        overflow: hidden;
      }
      
      .about-stats::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #ef4444, #f87171, #ef4444);
        background-size: 200% 100%;
        animation: gradientMove 3s linear infinite;
      }
      
      @keyframes gradientMove {
        0% { background-position: 0% 0%; }
        100% { background-position: 200% 0%; }
      }
      
      .about-stat {
        text-align: center;
        position: relative;
      }
      
      .about-stat::after {
        content: '';
        position: absolute;
        right: 0;
        top: 50%;
        transform: translateY(-50%);
        width: 1px;
        height: 50%;
        background: linear-gradient(to bottom, transparent, rgba(0,0,0,0.1), transparent);
      }
      
      .about-stat:last-child::after {
        display: none;
      }
      
      .about-stat-num {
        font-size: 2.5rem;
        font-weight: 800;
        background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1;
        margin-bottom: 0.5rem;
        display: inline-block;
      }
      
      .about-stat-label {
        font-size: 0.875rem;
        color: #666;
        font-weight: 500;
      }
      
      /* === STORY SECTION === */
      .about-story {
        padding: 100px 0;
        background: #fff;
        position: relative;
        overflow: hidden;
      }
      
      .about-story-grid {
        display: block;
        max-width: 800px;
        margin: 0 auto;
        text-align: center;
      }
      
      .about-story-content h2 {
        font-size: 2rem;
        font-weight: 700;
        color: #0a0a0a;
        margin-bottom: 1.5rem;
        line-height: 1.25;
      }
      
      .about-story-content h2 span {
        color: #ef4444;
        position: relative;
      }
      
      .about-story-content h2 span::after {
        content: '';
        position: absolute;
        bottom: -4px;
        left: 0;
        width: 100%;
        height: 3px;
        background: linear-gradient(90deg, #ef4444, #f87171);
        border-radius: 2px;
        transform: scaleX(0);
        transform-origin: left;
        transition: transform 0.6s var(--ease-out-expo);
      }
      
      .about-story-content.active h2 span::after {
        transform: scaleX(1);
      }
      
      .about-story-content p {
        font-size: 1rem;
        color: #555;
        line-height: 1.75;
        margin-bottom: 1.25rem;
      }
      
      /* 3D Card Visual */
      .about-story-image {
        position: relative;
        border-radius: 24px;
        overflow: visible;
        background: linear-gradient(135deg, #fef2f2 0%, #dcfce7 100%);
        padding: 3rem;
        display: flex;
        align-items: center;
        justify-content: center;
        min-height: 400px;
        perspective: 1000px;
      }
      
      .about-story-visual {
        position: relative;
        width: 100%;
        max-width: 300px;
        transform-style: preserve-3d;
        transition: transform 0.3s ease;
      }
      
      .about-story-image:hover .about-story-visual {
        transform: rotateY(-5deg) rotateX(5deg);
      }
      
      .about-visual-card {
        background: #fff;
        border-radius: 20px;
        padding: 2rem;
        box-shadow: 0 25px 50px rgba(0,0,0,0.15);
        position: relative;
        z-index: 2;
        transform: translateZ(30px);
        transition: all 0.4s var(--ease-out-expo);
      }
      
      .about-story-image:hover .about-visual-card {
        box-shadow: 0 35px 70px rgba(0,0,0,0.2);
      }
      
      .about-visual-card .rating {
        display: flex;
        align-items: center;
        gap: 0.75rem;
        margin-bottom: 1rem;
      }
      
      .about-visual-card .stars {
        color: #fbbf24;
        font-size: 1.25rem;
        letter-spacing: -2px;
      }
      
      .about-visual-card .stars span {
        display: inline-block;
        animation: starPop 0.4s var(--spring) backwards;
      }
      
      .about-visual-card .stars span:nth-child(1) { animation-delay: 0.1s; }
      .about-visual-card .stars span:nth-child(2) { animation-delay: 0.2s; }
      .about-visual-card .stars span:nth-child(3) { animation-delay: 0.3s; }
      .about-visual-card .stars span:nth-child(4) { animation-delay: 0.4s; }
      .about-visual-card .stars span:nth-child(5) { animation-delay: 0.5s; }
      
      @keyframes starPop {
        0% { transform: scale(0) rotate(-180deg); opacity: 0; }
        100% { transform: scale(1) rotate(0deg); opacity: 1; }
      }
      
      .about-visual-card .score {
        font-size: 1.5rem;
        font-weight: 800;
        color: #0a0a0a;
      }
      
      .about-visual-card .bar {
        height: 8px;
        background: #e5e7eb;
        border-radius: 4px;
        margin-bottom: 0.75rem;
        overflow: hidden;
        position: relative;
      }
      
      .about-visual-card .bar-fill {
        height: 100%;
        background: linear-gradient(90deg, #ef4444, #f87171);
        border-radius: 4px;
        width: 0;
        transition: width 1.5s var(--ease-out-expo);
        position: relative;
      }
      
      .about-visual-card .bar-fill::after {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: linear-gradient(90deg, transparent, rgba(255,255,255,0.3), transparent);
        animation: barShine 2s ease-in-out infinite;
      }
      
      @keyframes barShine {
        0% { transform: translateX(-100%); }
        50%, 100% { transform: translateX(100%); }
      }
      
      .about-visual-card.animated .bar-fill {
        width: 95%;
      }
      
      .about-visual-card .label {
        font-size: 0.875rem;
        color: #666;
      }
      
      /* Floating Elements with Parallax */
      .about-visual-floating {
        position: absolute;
        background: #fff;
        border-radius: 16px;
        padding: 1rem 1.25rem;
        box-shadow: 0 15px 40px rgba(0,0,0,0.15);
        z-index: 3;
        transform: translateZ(50px);
        transition: all 0.4s var(--ease-out-expo);
      }
      
      .about-visual-floating.top {
        top: -20px;
        right: -30px;
        animation: floatY 4s ease-in-out infinite;
      }
      
      .about-visual-floating.bottom {
        bottom: -15px;
        left: -25px;
        animation: floatY 4s ease-in-out infinite 1s;
      }
      
      @keyframes floatY {
        0%, 100% { transform: translateZ(50px) translateY(0); }
        50% { transform: translateZ(50px) translateY(-12px); }
      }
      
      .about-visual-floating .num {
        font-size: 1.25rem;
        font-weight: 800;
        color: #ef4444;
      }
      
      .about-visual-floating .txt {
        font-size: 0.6875rem;
        color: #666;
        text-transform: uppercase;
        letter-spacing: 0.02em;
      }
      
      /* === VALUES SECTION === */
      .about-values {
        padding: 100px 0;
        background: linear-gradient(180deg, #fafafa 0%, #fff 100%);
        position: relative;
      }
      
      .about-values-header {
        text-align: center;
        max-width: 600px;
        margin: 0 auto 3.5rem;
      }
      
      .about-values-header h2 {
        font-size: 2rem;
        font-weight: 700;
        color: #0a0a0a;
        margin-bottom: 1rem;
      }
      
      .about-values-header p {
        font-size: 1rem;
        color: #666;
        line-height: 1.6;
      }
      
      .about-values-grid {
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 2rem;
      }
      
      .value-card {
        background: #fff;
        border-radius: 24px;
        padding: 2rem;
        border: 1px solid rgba(0,0,0,0.05);
        transition: all 0.5s var(--ease-out-expo);
        position: relative;
        overflow: hidden;
        cursor: pointer;
      }
      
      /* Glow Effect */
      .value-card::before {
        content: '';
        position: absolute;
        top: 0;
        left: 0;
        right: 0;
        height: 3px;
        background: linear-gradient(90deg, #ef4444, #f87171);
        transform: scaleX(0);
        transition: transform 0.5s var(--ease-out-expo);
        transform-origin: left;
      }
      
      .value-card::after {
        content: '';
        position: absolute;
        inset: 0;
        background: radial-gradient(circle at 50% 0%, rgba(239,68,68,0.1) 0%, transparent 50%);
        opacity: 0;
        transition: opacity 0.5s ease;
      }
      
      .value-card:hover {
        transform: translateY(-8px);
        box-shadow: 0 25px 50px rgba(239,68,68,0.12);
        border-color: rgba(239,68,68,0.2);
      }
      
      .value-card:hover::before {
        transform: scaleX(1);
      }
      
      .value-card:hover::after {
        opacity: 1;
      }
      
      .value-icon {
        width: 60px;
        height: 60px;
        background: linear-gradient(135deg, rgba(239,68,68,0.1) 0%, rgba(248,113,113,0.15) 100%);
        border-radius: 18px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 1.25rem;
        position: relative;
        transition: all 0.4s var(--ease-out-expo);
      }
      
      .value-card:hover .value-icon {
        transform: scale(1.1) rotate(-5deg);
        background: linear-gradient(135deg, rgba(239,68,68,0.2) 0%, rgba(248,113,113,0.25) 100%);
      }
      
      .value-icon svg {
        width: 28px;
        height: 28px;
        color: #ef4444;
        transition: transform 0.4s var(--ease-out-expo);
      }
      
      .value-card:hover .value-icon svg {
        transform: scale(1.1);
      }
      
      .value-card h3 {
        font-size: 1.125rem;
        font-weight: 700;
        color: #0a0a0a;
        margin-bottom: 0.75rem;
        position: relative;
        z-index: 2;
      }
      
      .value-card p {
        font-size: 0.9375rem;
        color: #666;
        line-height: 1.6;
        position: relative;
        z-index: 2;
      }
      
      /* === TEAM SECTION - SHOWCASE STYLE === */
      .about-team {
        padding: 80px 0 100px;
        background: #fff;
        overflow: hidden;
      }
      
      .about-team-header {
        text-align: center;
        max-width: 700px;
        margin: 0 auto 50px;
        padding: 0 20px;
      }
      
      .about-team-header h2 {
        font-size: 2.25rem;
        font-weight: 800;
        color: #0a0a0a;
        margin-bottom: 12px;
      }
      
      .about-team-header p {
        font-size: 1.0625rem;
        color: #64748b;
      }
      
      .about-team-header p span {
        color: #ef4444;
      }
      
      .team-showcase {
        display: flex;
        align-items: center;
        gap: 40px;
        max-width: 1100px;
        margin: 0 auto;
        padding: 0 20px;
      }
      
      /* Thumbnails слева */
      .team-thumbs-wrap {
        flex-shrink: 0;
      }
      
      .team-thumbs {
        display: flex;
        flex-direction: column;
        gap: 14px;
      }
      
      .team-thumb {
        width: 68px;
        height: 68px;
        border-radius: 50%;
        overflow: hidden;
        cursor: pointer;
        border: 3px solid transparent;
        transition: all 0.3s ease;
        background: linear-gradient(135deg, #e2e8f0, #cbd5e1);
        display: flex;
        align-items: center;
        justify-content: center;
      }
      
      .team-thumb img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      
      .team-thumb.active {
        border-color: #ef4444;
        box-shadow: 0 0 0 4px rgba(16, 185, 129, 0.2);
      }
      
      .team-thumb:hover:not(.active) {
        transform: scale(1.08);
        border-color: #e2e8f0;
      }
      
      /* Навигация */
      .team-nav {
        display: flex;
        gap: 10px;
        margin-top: 20px;
      }
      
      .team-nav-btn {
        width: 46px;
        height: 46px;
        border-radius: 50%;
        border: 2px solid #e2e8f0;
        background: #fff;
        cursor: pointer;
        display: flex;
        align-items: center;
        justify-content: center;
        transition: all 0.3s ease;
        color: #64748b;
      }
      
      .team-nav-btn:hover {
        border-color: #ef4444;
        background: #ef4444;
        color: #fff;
      }
      
      .team-nav-btn svg {
        width: 20px;
        height: 20px;
      }
      
      /* Main Card */
      .team-main {
        position: relative;
        width: 300px;
        height: 400px;
        flex-shrink: 0;
      }
      
      .team-card {
        position: relative;
        width: 100%;
        height: 100%;
        border-radius: 30px 30px 100px 30px;
        overflow: hidden;
        transition: all 0.5s ease;
      }
      
      /* Цвета карточек */
      .team-card[data-color="blue"] { background: linear-gradient(180deg, #38bdf8 0%, #0ea5e9 100%); }
      .team-card[data-color="green"] { background: linear-gradient(180deg, #f87171 0%, #ef4444 100%); }
      .team-card[data-color="pink"] { background: linear-gradient(180deg, #f472b6 0%, #ec4899 100%); }
      .team-card[data-color="purple"] { background: linear-gradient(180deg, #a78bfa 0%, #8b5cf6 100%); }
      .team-card[data-color="orange"] { background: linear-gradient(180deg, #fb923c 0%, #f97316 100%); }
      .team-card[data-color="dark"] { background: linear-gradient(180deg, #334155 0%, #1e293b 100%); }
      .team-card[data-color="teal"] { background: linear-gradient(180deg, #2dd4bf 0%, #14b8a6 100%); }
      .team-card[data-color="rose"] { background: linear-gradient(180deg, #fb7185 0%, #e11d48 100%); }
      
      .team-card-pattern {
        position: absolute;
        inset: 0;
        background: url("data:image/svg+xml,%3Csvg viewBox='0 0 200 200' xmlns='http://www.w3.org/2000/svg'%3E%3Cpath fill='%23ffffff' fill-opacity='0.1' d='M39,-48C52,-38,67,-27,71,-14C76,0,70,17,61,30C52,44,39,54,24,59C9,65,-8,67,-24,62C-39,58,-54,48,-63,34C-72,20,-74,2,-70,-14C-66,-31,-55,-45,-42,-56C-28,-66,-12,-73,2,-75C15,-75,26,-59,39,-48Z' transform='translate(100 100)' /%3E%3C/svg%3E") center/180% no-repeat;
      }
      
      .team-card-photo {
        position: absolute;
        inset: 0;
        z-index: 2;
        display: flex;
        align-items: center;
        justify-content: center;
        overflow: hidden;
        border-radius: inherit;
      }
      
      .team-card-photo img {
        width: 100%;
        height: 100%;
        object-fit: cover;
      }
      
      .team-card-img {
        width: 100%;
        height: 100%;
        object-fit: cover;
        transition: transform 0.4s ease;
      }
      
      .team-card:hover .team-card-img {
        transform: scale(1.05);
      }
      
      /* Play button (опционально) */
      .team-play {
        position: absolute;
        bottom: 25px;
        left: 50%;
        transform: translateX(-50%);
        width: 56px;
        height: 56px;
        background: rgba(255,255,255,0.95);
        border-radius: 50%;
        display: flex;
        align-items: center;
        justify-content: center;
        cursor: pointer;
        box-shadow: 0 10px 30px rgba(0,0,0,0.15);
        transition: all 0.3s ease;
        z-index: 5;
      }
      
      .team-play:hover {
        transform: translateX(-50%) scale(1.1);
        background: #ef4444;
      }
      
      .team-play:hover svg {
        fill: #fff;
      }
      
      .team-play svg {
        width: 22px;
        height: 22px;
        fill: #ef4444;
        margin-left: 3px;
      }
      
      /* Info справа */
      .team-info {
        flex: 1;
        padding: 10px 0;
      }
      
      .team-name-row {
        display: flex;
        align-items: center;
        gap: 16px;
        margin-bottom: 8px;
        flex-wrap: wrap;
      }
      
      .team-name {
        font-size: 1.625rem;
        font-weight: 700;
        color: #0a0a0a;
      }
      
      .team-badge {
        background: #fff;
        border: 2px solid #ef4444;
        color: #ef4444;
        padding: 7px 16px;
        border-radius: 30px;
        font-size: 0.875rem;
        font-weight: 700;
      }
      
      .team-role {
        font-size: 1rem;
        color: #ef4444;
        font-weight: 600;
        margin-bottom: 16px;
      }
      
      .team-text {
        font-size: 0.9375rem;
        color: #475569;
        line-height: 1.7;
        margin-bottom: 14px;
      }
      
      .team-link {
        color: #ef4444;
        font-weight: 600;
        text-decoration: underline;
        cursor: pointer;
        font-size: 0.9375rem;
        transition: color 0.3s ease;
      }
      
      .team-link:hover {
        color: #dc2626;
      }
      
      /* ===== MOBILE RESPONSIVE ===== */
      @media (max-width: 900px) {
        .team-showcase {
          flex-direction: column;
          gap: 30px;
        }
        
        .team-thumbs-wrap {
          order: 2;
        }
        
        .team-thumbs {
          flex-direction: row;
          justify-content: center;
        }
        
        .team-thumb {
          width: 56px;
          height: 56px;
        }
        
        .team-nav {
          justify-content: center;
          margin-top: 16px;
        }
        
        .team-main {
          width: 100%;
          max-width: 280px;
          height: 360px;
          order: 1;
        }
        
        .team-card {
          border-radius: 24px 24px 80px 24px;
        }
        
        .team-info {
          text-align: center;
          order: 3;
          padding: 0 20px;
        }
        
        .team-name-row {
          justify-content: center;
        }
        
        .team-name {
          font-size: 1.375rem;
        }
      }
      
      @media (max-width: 480px) {
        .about-team { padding: 60px 0 80px; }
        .about-team-header h2 { font-size: 1.75rem; }
        .about-team-header p { font-size: 0.9375rem; }
        
        .team-thumbs {
          gap: 10px;
        }
        
        .team-thumb {
          width: 48px;
          height: 48px;
        }
        
        .team-nav-btn {
          width: 40px;
          height: 40px;
        }
        
        .team-main {
          max-width: 240px;
          height: 320px;
        }
        
        .team-play {
          width: 48px;
          height: 48px;
          bottom: 20px;
        }
        
        .team-name {
          font-size: 1.25rem;
        }
        
        .team-badge {
          font-size: 0.75rem;
          padding: 5px 12px;
        }
        
        .team-role {
          font-size: 0.875rem;
        }
        
        .team-text {
          font-size: 0.875rem;
        }
      }
      
      /* === WHY US SECTION === */
      .about-why {
        padding: 100px 0;
        background: linear-gradient(180deg, #0a0a0a 0%, #111 100%);
        color: #fff;
        position: relative;
        overflow: hidden;
      }
      
      /* Animated Grid Background */
      .about-why::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: 
          linear-gradient(rgba(239,68,68,0.03) 1px, transparent 1px),
          linear-gradient(90deg, rgba(239,68,68,0.03) 1px, transparent 1px);
        background-size: 60px 60px;
        animation: gridMove 20s linear infinite;
      }
      
      @keyframes gridMove {
        0% { transform: translate(0, 0); }
        100% { transform: translate(60px, 60px); }
      }
      
      /* Glowing Orbs */
      .why-orb {
        position: absolute;
        border-radius: 50%;
        filter: blur(80px);
        pointer-events: none;
        animation: orbPulse 8s ease-in-out infinite;
      }
      
      .why-orb-1 {
        width: 400px;
        height: 400px;
        background: rgba(239,68,68,0.15);
        top: -100px;
        right: -100px;
      }
      
      .why-orb-2 {
        width: 300px;
        height: 300px;
        background: rgba(248,113,113,0.1);
        bottom: -80px;
        left: -80px;
        animation-delay: -4s;
      }
      
      @keyframes orbPulse {
        0%, 100% { opacity: 0.5; transform: scale(1); }
        50% { opacity: 0.8; transform: scale(1.1); }
      }
      
      .about-why-header {
        text-align: center;
        max-width: 600px;
        margin: 0 auto 3.5rem;
        position: relative;
        z-index: 2;
      }
      
      .about-why-header h2 {
        font-size: 2rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 1rem;
      }
      
      .about-why-header h2 span {
        background: linear-gradient(135deg, #ef4444, #f87171);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }
      
      .about-why-header p {
        font-size: 1rem;
        color: #9ca3af;
        line-height: 1.6;
      }
      
      .about-why-grid {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        position: relative;
        z-index: 2;
        max-width: 900px;
        margin: 0 auto;
      }
      
      .why-card {
        background: rgba(255,255,255,0.03);
        border: 1px solid rgba(255,255,255,0.08);
        border-radius: 24px;
        padding: 2rem;
        transition: all 0.5s var(--ease-out-expo);
        position: relative;
        overflow: hidden;
      }
      
      .why-card::before {
        content: '';
        position: absolute;
        inset: 0;
        background: linear-gradient(135deg, rgba(239,68,68,0.1) 0%, transparent 50%);
        opacity: 0;
        transition: opacity 0.5s ease;
      }
      
      .why-card:hover {
        background: rgba(255,255,255,0.06);
        border-color: rgba(239,68,68,0.3);
        transform: translateY(-6px) scale(1.01);
        box-shadow: 0 20px 40px rgba(239,68,68,0.1);
      }
      
      .why-card:hover::before {
        opacity: 1;
      }
      
      .why-card-num {
        font-size: 3rem;
        font-weight: 800;
        background: linear-gradient(135deg, #ef4444 0%, rgba(239,68,68,0.3) 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
        line-height: 1;
        margin-bottom: 1rem;
        position: relative;
        z-index: 2;
        transition: all 0.5s var(--ease-out-expo);
      }
      
      .why-card:hover .why-card-num {
        transform: scale(1.1);
      }
      
      .why-card h3 {
        font-size: 1.125rem;
        font-weight: 700;
        color: #fff;
        margin-bottom: 0.75rem;
        position: relative;
        z-index: 2;
      }
      
      .why-card p {
        font-size: 0.9375rem;
        color: #9ca3af;
        line-height: 1.6;
        position: relative;
        z-index: 2;
      }
      
      /* === CTA SECTION === */
      .about-cta {
        padding: 100px 0;
        background: linear-gradient(135deg, #fef2f2 0%, #dcfce7 50%, #fef2f2 100%);
        position: relative;
        overflow: hidden;
      }
      
      .about-cta::before {
        content: '';
        position: absolute;
        top: -50%;
        right: -20%;
        width: 600px;
        height: 600px;
        background: radial-gradient(circle, rgba(239,68,68,0.12) 0%, transparent 60%);
        border-radius: 50%;
        animation: ctaOrb 15s ease-in-out infinite;
      }
      
      .about-cta::after {
        content: '';
        position: absolute;
        bottom: -30%;
        left: -10%;
        width: 400px;
        height: 400px;
        background: radial-gradient(circle, rgba(248,113,113,0.1) 0%, transparent 60%);
        border-radius: 50%;
        animation: ctaOrb 20s ease-in-out infinite reverse;
      }
      
      @keyframes ctaOrb {
        0%, 100% { transform: translate(0, 0) scale(1); }
        50% { transform: translate(-30px, 30px) scale(1.1); }
      }
      
      /* Floating particles */
      .cta-particles {
        position: absolute;
        inset: 0;
        overflow: hidden;
        pointer-events: none;
      }
      
      .cta-particle {
        position: absolute;
        width: 6px;
        height: 6px;
        background: linear-gradient(135deg, #ef4444, #f87171);
        border-radius: 50%;
        opacity: 0.3;
      }
      
      .cta-particle:nth-child(1) {
        top: 20%;
        left: 10%;
        animation: floatParticle 8s ease-in-out infinite;
      }
      
      .cta-particle:nth-child(2) {
        top: 60%;
        right: 15%;
        animation: floatParticle 10s ease-in-out infinite 2s;
      }
      
      .cta-particle:nth-child(3) {
        bottom: 30%;
        left: 25%;
        animation: floatParticle 12s ease-in-out infinite 4s;
      }
      
      @keyframes floatParticle {
        0%, 100% { transform: translate(0, 0) scale(1); opacity: 0.3; }
        50% { transform: translate(20px, -15px) scale(1.3); opacity: 0.6; }
      }
      
      .about-cta-content {
        max-width: 700px;
        margin: 0 auto;
        text-align: center;
        position: relative;
        z-index: 2;
      }
      
      .cta-icon {
        width: 72px;
        height: 72px;
        background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
        border-radius: 20px;
        display: flex;
        align-items: center;
        justify-content: center;
        margin: 0 auto 1.5rem;
        box-shadow: 0 10px 30px rgba(239,68,68,0.3);
        animation: iconFloat 4s ease-in-out infinite;
      }
      
      .cta-icon svg {
        width: 32px;
        height: 32px;
        color: #fff;
      }
      
      @keyframes iconFloat {
        0%, 100% { transform: translateY(0); }
        50% { transform: translateY(-8px); }
      }
      
      .about-cta h2 {
        font-size: 2.25rem;
        font-weight: 800;
        color: #0a0a0a;
        margin-bottom: 1rem;
        line-height: 1.3;
      }
      
      .about-cta h2 span {
        background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
        -webkit-background-clip: text;
        -webkit-text-fill-color: transparent;
        background-clip: text;
      }
      
      .about-cta p {
        font-size: 1.0625rem;
        color: #555;
        line-height: 1.7;
        margin-bottom: 2rem;
      }
      
      .about-cta-btns {
        display: flex;
        gap: 1rem;
        justify-content: center;
        flex-wrap: wrap;
        margin-bottom: 2.5rem;
      }
      
      .btn-cta-primary,
      .btn-cta-outline {
        display: inline-flex;
        align-items: center;
        gap: 10px;
        padding: 1rem 1.75rem;
        font-size: 0.9375rem;
        font-weight: 600;
        border-radius: 12px;
        text-decoration: none;
        transition: all 0.4s var(--ease-out-expo);
      }
      
      .btn-cta-primary {
        background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
        color: #fff;
        box-shadow: 0 6px 20px rgba(239,68,68,0.3);
      }
      
      .btn-cta-primary:hover {
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(239,68,68,0.4);
      }
      
      .btn-cta-outline {
        background: #fff;
        border: 2px solid #ef4444;
        color: #ef4444;
      }
      
      .btn-cta-outline:hover {
        background: #ef4444;
        color: #fff;
        transform: translateY(-3px);
        box-shadow: 0 12px 30px rgba(239,68,68,0.3);
      }
      
      .btn-cta-primary svg,
      .btn-cta-outline svg {
        width: 18px;
        height: 18px;
        flex-shrink: 0;
      }
      
      /* Trust badges */
      .cta-trust {
        display: flex;
        justify-content: center;
        gap: 2rem;
        flex-wrap: wrap;
      }
      
      .cta-trust-item {
        display: flex;
        align-items: center;
        gap: 8px;
        color: #666;
        font-size: 0.875rem;
        font-weight: 500;
      }
      
      .cta-trust-item svg {
        width: 18px;
        height: 18px;
        color: #ef4444;
      }
      
      /* Responsive */
      @media (max-width: 768px) {
        .about-cta { padding: 60px 0; }
        .about-cta h2 { font-size: 1.5rem; }
        .about-cta p { font-size: 1rem; }
        .cta-icon { width: 60px; height: 60px; margin-bottom: 1.25rem; }
        .cta-icon svg { width: 28px; height: 28px; }
        .about-cta-btns { flex-direction: column; align-items: stretch; margin-bottom: 2rem; }
        .btn-cta-primary, .btn-cta-outline { justify-content: center; }
        .cta-trust { gap: 1.25rem; }
        .cta-trust-item { font-size: 0.8125rem; }
        .cta-particle { display: none; }
      }
      
      @media (max-width: 480px) {
        .about-cta { padding: 48px 0; }
        .about-cta h2 { font-size: 1.25rem; }
        .cta-trust { flex-direction: column; align-items: center; gap: 0.75rem; }
      }
      
      /* Back Link */
      .back-link {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        color: #666;
        font-size: 0.875rem;
        font-weight: 500;
        text-decoration: none;
        margin-bottom: 2rem;
        transition: all 0.3s ease;
      }
      
      .back-link:hover {
        color: #ef4444;
        transform: translateX(-5px);
      }
      
      .back-link svg {
        width: 18px;
        height: 18px;
        transition: transform 0.3s ease;
      }
      
      .back-link:hover svg {
        transform: translateX(-3px);
      }
      
      /* === RESPONSIVE === */
      @media (max-width: 1024px) {
        .about-hero h1 { font-size: 2rem; }
        .about-stats { grid-template-columns: repeat(2, 1fr); gap: 1.5rem; }
        .about-stat-num { font-size: 2rem; }
        .about-story-grid { gap: 3rem; }
        .about-values-grid { grid-template-columns: repeat(2, 1fr); }
      }
      
      @media (max-width: 768px) {
        .about-hero { padding: 120px 0 60px; }
        .about-hero h1 { font-size: 1.75rem; }
        .about-hero p { font-size: 1rem; }
        .about-stats { grid-template-columns: repeat(2, 1fr); padding: 1.5rem; gap: 1.25rem; margin-top: 2.5rem; }
        .about-stat-num { font-size: 1.75rem; }
        .about-stat-label { font-size: 0.75rem; }
        .about-stat::after { display: none; }
        
        .about-story { padding: 60px 0; }
        .about-story-grid { grid-template-columns: 1fr; gap: 2.5rem; }
        .about-story-content h2 { font-size: 1.625rem; }
        .about-story-image { min-height: 320px; padding: 2rem; }
        
        .about-why { padding: 60px 0; }
        .about-why-header h2 { font-size: 1.625rem; }
        .about-why-grid { grid-template-columns: 1fr; }
        .why-card { padding: 1.5rem; }
        .why-card-num { font-size: 2rem; }
        
        .about-cta { padding: 60px 0; }
        .about-cta h2 { font-size: 1.625rem; }
        .about-cta p { font-size: 1rem; }
        .about-cta-btns { flex-direction: column; align-items: stretch; }
        .about-cta .btn { width: 100%; }
        
        .particle { display: none; }
      }
      
      @media (max-width: 480px) {
        .about-hero { padding: 100px 0 50px; }
        .about-hero h1 { font-size: 1.5rem; }
        .about-hero p { font-size: 0.9375rem; }
        .about-badge { font-size: 0.625rem; padding: 6px 14px; }
        
        .about-stat-num { font-size: 1.5rem; }
        .about-stat-label { font-size: 0.6875rem; }
        
        .about-story-content h2 { font-size: 1.375rem; }
        .about-story-content p { font-size: 0.9375rem; }
        
        .about-values-header h2,
        .about-team-header h2,
        .about-why-header h2,
        .about-cta h2 { font-size: 1.375rem; }
        
        .value-card h3,
        .why-card h3 { font-size: 1rem; }
        
        .value-card p,
        .why-card p { font-size: 0.875rem; }
      }
      
      /* Reduce motion for accessibility */
      @media (prefers-reduced-motion: reduce) {
        *, *::before, *::after {
          animation-duration: 0.01ms !important;
          animation-iteration-count: 1 !important;
          transition-duration: 0.01ms !important;
        }
      }
      
      /* === MOBILE RESPONSIVE === */
      
      /* --- RESPONSIVE 768px --- */
      @media (max-width: 768px) {
        
        /* Hero */
        .about-hero { padding: 90px 0 40px; }
        .about-hero::before, .about-hero::after { display: none; }
        .hero-particles { display: none; }
        .about-hero h1 { font-size: 1.5rem; line-height: 1.3; }
        .about-hero p { font-size: 0.9375rem; }
        .about-hero-img { border-radius: 16px; margin: 1.5rem auto; }
        .about-badge { font-size: 0.6875rem; padding: 6px 12px; }
        .back-link { font-size: 0.8125rem; margin-bottom: 1rem; }
        
        /* Stats */
        .about-stats {
          grid-template-columns: repeat(2, 1fr);
          gap: 16px;
          padding: 20px;
          margin-top: 24px;
          border-radius: 16px;
        }
        .about-stat-num { font-size: 1.5rem; }
        .about-stat-label { font-size: 0.6875rem; }
        
        /* Story */
        .about-story { padding: 48px 0; }
        .about-story-grid { grid-template-columns: 1fr; gap: 32px; }
        .about-story-image { order: -1; min-height: 240px; padding: 24px; }
        .about-story-visual { max-width: 200px; }
        .about-story-content { text-align: center; }
        .about-story-content h2 { font-size: 1.375rem; }
        .about-story-content p { font-size: 0.875rem; }
        .about-visual-floating { padding: 10px 12px; }
        .about-visual-floating .num { font-size: 1rem; }
        .about-visual-floating .txt { font-size: 0.5625rem; }
        .about-visual-floating.top { right: 0; top: 10px; }
        .about-visual-floating.bottom { left: 0; bottom: 10px; }
        
        /* Values */
        .about-values { padding: 48px 0; }
        .about-values-header h2 { font-size: 1.375rem; }
        .about-values-header p { font-size: 0.875rem; }
        .about-values-grid { grid-template-columns: 1fr !important; gap: 16px !important; }
        .value-card {
          display: flex !important;
          flex-direction: column !important;
          align-items: center !important;
          text-align: center !important;
          gap: 12px !important;
          padding: 24px 16px !important;
          border-radius: 14px !important;
          background: #fff;
          box-shadow: 0 2px 8px rgba(0,0,0,0.04);
        }
        .value-card::before,
        .value-card::after { display: none !important; }
        .value-card:hover { transform: none !important; }
        .value-icon {
          width: 56px !important;
          height: 56px !important;
          min-width: 56px !important;
          border-radius: 12px !important;
          margin-bottom: 0 !important;
          flex-shrink: 0 !important;
        }
        .value-icon svg { width: 24px !important; height: 24px !important; }
        .value-card h3 { font-size: 1rem !important; margin-bottom: 8px !important; text-align: center !important; }
        .value-card p { font-size: 0.875rem !important; line-height: 1.6 !important; text-align: center !important; color: #64748b; word-wrap: break-word !important; }
        
        /* Team */
        .about-team { padding: 48px 0; }
        .about-team-header h2 { font-size: 1.375rem; }
        .about-team-header p { font-size: 0.875rem; }
        .team-showcase { flex-direction: column; gap: 20px; padding: 0 16px; }
        .team-thumbs-wrap { order: 2; width: 100%; }
        .team-thumbs {
          flex-direction: row;
          justify-content: center;
          gap: 8px;
          flex-wrap: wrap;
        }
        .team-thumb { width: 44px; height: 44px; }
        .team-nav { justify-content: center; margin-top: 12px; }
        .team-nav-btn { width: 36px; height: 36px; }
        .team-main { order: 1; width: 200px; height: 260px; margin: 0 auto; }
        .team-card { border-radius: 18px 18px 50px 18px; }
        .team-info { order: 3; text-align: center; padding: 0 16px; }
        .team-name-row { justify-content: center; flex-wrap: wrap; gap: 8px; }
        .team-name { font-size: 1.125rem; }
        .team-badge { font-size: 0.6875rem; padding: 4px 10px; }
        .team-role { font-size: 0.8125rem; }
        .team-text { font-size: 0.8125rem; line-height: 1.5; }
        
        /* Why */
        .about-why { padding: 48px 0; }
        .about-why::before { display: none; }
        .why-orb { display: none; }
        .about-why-header h2 { font-size: 1.375rem; }
        .about-why-header p { font-size: 0.875rem; }
        .about-why-grid { grid-template-columns: 1fr; gap: 16px; }
        .why-card {
          display: flex;
          flex-direction: column;
          align-items: center;
          text-align: center;
          gap: 12px;
          padding: 24px 16px;
          border-radius: 14px;
        }
        .why-card-num {
          font-size: 1.5rem;
          min-width: auto;
          margin-bottom: 0;
          line-height: 1;
        }
        .why-card h3 { font-size: 1rem; margin-bottom: 8px; text-align: center; }
        .why-card p { font-size: 0.875rem; line-height: 1.6; text-align: center; }
        
        /* CTA */
        .about-cta { padding: 48px 0; }
        .about-cta::before { display: none; }
        .about-cta h2 { font-size: 1.375rem; }
        .about-cta p { font-size: 0.875rem; }
        .about-cta-btns { flex-direction: column; gap: 10px; }
        .about-cta .btn { width: 100%; padding: 14px 20px; font-size: 0.9375rem; }
        
        /* Footer */
        .footer { padding: 40px 0 24px; }
        .footer-grid { grid-template-columns: 1fr 1fr; gap: 24px; }
        .footer-brand { grid-column: 1 / -1; text-align: center; }
        .footer-logo { justify-content: center; }
        .footer-card h4 { font-size: 0.875rem; }
        .footer-card a { font-size: 0.8125rem; }
      }
      
      /* --- RESPONSIVE 480px --- */
      @media (max-width: 480px) {
        .about-hero { padding: 80px 0 32px; }
        .about-hero h1 { font-size: 1.25rem; }
        .about-hero p { font-size: 0.875rem; }
        
        .about-stats { padding: 16px; gap: 12px; }
        .about-stat-num { font-size: 1.25rem; }
        .about-stat-label { font-size: 0.625rem; }
        
        .about-story { padding: 40px 0; }
        .about-story-content h2 { font-size: 1.25rem; }
        .about-story-image { min-height: 200px; padding: 20px; }
        .about-story-visual { max-width: 180px; }
        .about-visual-card { padding: 16px; }
        
        .about-values { padding: 40px 0; }
        .about-values-header h2 { font-size: 1.25rem; }
        .about-values-grid { gap: 12px; }
        .value-card { 
          display: flex;
          flex-direction: column;
          align-items: center;
          text-align: center;
          padding: 20px 14px; 
          gap: 10px; 
        }
        .value-icon { width: 48px; height: 48px; min-width: 48px; border-radius: 10px; margin-bottom: 0; }
        .value-icon svg { width: 20px; height: 20px; }
        .value-card h3 { font-size: 0.9375rem; margin-bottom: 6px; text-align: center; }
        .value-card p { font-size: 0.8125rem; text-align: center; }
        
        .about-team { padding: 40px 0; }
        .about-team-header h2 { font-size: 1.25rem; }
        .team-main { width: 180px; height: 230px; }
        .team-thumb { width: 38px; height: 38px; }
        .team-name { font-size: 1rem; }
        
        .about-why { padding: 40px 0; }
        .about-why-header h2 { font-size: 1.25rem; }
        .why-card { padding: 20px 14px; gap: 10px; flex-direction: column; align-items: center; text-align: center; }
        .why-card-num { font-size: 1.375rem; min-width: auto; }
        .why-card h3 { text-align: center; }
        .why-card p { text-align: center; }
        
        .about-cta { padding: 40px 0; }
        .about-cta h2 { font-size: 1.25rem; }
        
        .footer-grid { grid-template-columns: 1fr; text-align: center; }
        .footer-card { text-align: center; }
      }

      
