/* ===== CSS Variables ===== */
:root {
    --red: #ef4850;
    --red-dark: #d43d45;
    --red-light: #fef0f0;
    --red-gradient: linear-gradient(135deg, #ef4850 0%, #d43d45 100%);
    --blue: #2c99d4;
    --blue-dark: #2280b5;
    --blue-light: #eff6ff;
    --blue-gradient: linear-gradient(135deg, #2c99d4 0%, #2280b5 100%);
    --black: #1a1a1a;
    --dark-gradient: linear-gradient(135deg, #1a1a1a 0%, #2d2d2d 100%);
    --gray-50: #f8fafb;
    --gray-100: #f5f5f5;
    --gray-200: #e5e5e5;
    --gray-300: #d4d4d4;
    --gray-400: #a3a3a3;
    --gray-500: #737373;
    --gray-600: #404040;
    --white: #fff;
    --green: #16a34a;
    --green-light: #f0fdf4;
    --green-gradient: linear-gradient(135deg, #16a34a 0%, #15803d 100%);
    --purple: #8b5cf6;
    --orange: #f97316;
    --shadow-sm: 0 1px 2px rgba(0,0,0,0.05);
    --shadow-md: 0 4px 12px rgba(0,0,0,0.08);
    --shadow-lg: 0 12px 32px rgba(0,0,0,0.1);
    --shadow-xl: 0 20px 50px rgba(0,0,0,0.12);
}

/* ===== HERO SECTION ===== */
.about-hero {
    position: relative;
    background: var(--white);
    padding: 3rem 0 0;
    overflow: hidden;
    text-align: center;
}
/* @media (min-width: 768px) { .about-hero { padding: 6rem 0 0; } } */

.about-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.hero-glow {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}
.hero-glow-1 {
    width: 500px; height: 500px;
    background: rgba(239,72,80,0.15);
    top: -100px; right: -10%;
    animation: heroGlowFloat 8s ease-in-out infinite;
}
.hero-glow-2 {
    width: 400px; height: 400px;
    background: rgba(44,153,212,0.12);
    bottom: 0; left: -5%;
    animation: heroGlowFloat 6s ease-in-out infinite reverse;
}
@keyframes heroGlowFloat {
    0%, 100% { transform: translate(0, 0) scale(1); }
    50% { transform: translate(20px, -20px) scale(1.1); }
}

.hero-grid-pattern {
    position: absolute;
    inset: 0;
    opacity: 0.03;
    background-image: 
        linear-gradient(rgba(0,0,0,0.1) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0,0,0,0.1) 1px, transparent 1px);
    background-size: 40px 40px;
}

.about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1.25rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 9999px;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--gray-600);
    margin-bottom: 1.5rem;
    box-shadow: var(--shadow-sm);
}
.badge-pulse {
    width: 8px; height: 8px;
    background: var(--green);
    border-radius: 50%;
    animation: pulse 2s infinite;
}
@keyframes pulse {
    0%, 100% { opacity: 1; transform: scale(1); }
    50% { opacity: 0.5; transform: scale(1.3); }
}

.about-hero-title {
    font-size: 2.25rem;
    font-weight: 800;
    color: var(--black);
    line-height: 1.2;
    letter-spacing: -0.03em;
    margin-bottom: 1.25rem;
}
@media (min-width: 640px) { .about-hero-title { font-size: 2.75rem; } }
@media (min-width: 768px) { .about-hero-title { font-size: 3.5rem; } }
@media (min-width: 1024px) { .about-hero-title { font-size: 4rem; } }

.text-gradient {
    background: linear-gradient(135deg, var(--red) 0%, var(--blue) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-hero-subtitle {
    font-size: 1rem;
    color: var(--gray-500);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}
@media (min-width: 768px) { .about-hero-subtitle { font-size: 1.125rem; } }

/* Hero Stats Row */
.hero-stats-row {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
    padding: 2rem 1.5rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    box-shadow: var(--shadow-lg);
}
.hero-stat-item { text-align: center; }
.hero-stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--black);
    line-height: 1;
}
.hero-stat-label { font-size: 0.75rem; color: var(--gray-500); margin-top: 0.25rem; display: block; }
.hero-stat-divider { width: 1px; height: 40px; background: var(--gray-200); }
@media (max-width: 480px) {
    .hero-stats-row { flex-direction: column; gap: 1rem; }
    .hero-stat-divider { width: 80%; height: 1px; }
}

/* Hero Wave */
.hero-wave { margin-top: 3rem; line-height: 0; }
.hero-wave svg { width: 100%; height: auto; }

/* ===== SECTION SHARED STYLES ===== */
.section-tag {
    display: inline-block;
    font-size: 0.75rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--red);
    margin-bottom: 0.75rem;
    padding: 0.25rem 0.75rem;
    background: var(--red-light);
    border-radius: 9999px;
}
.section-heading {
    font-size: 1.75rem;
    font-weight: 800;
    color: var(--black);
    line-height: 1.2;
    margin-bottom: 1rem;
}
@media (min-width: 768px) { .section-heading { font-size: 2.5rem; } }
.text-highlight { color: var(--red); }
.section-subheading {
    font-size: 1rem;
    color: var(--gray-500);
    max-width: 550px;
    margin: 0 auto;
}
@media (min-width: 768px) { .section-subheading { font-size: 1.125rem; } }

/* ===== STORY SECTION ===== */
.story-section {
    padding: 5rem 0;
    background: var(--gray-50);
}
@media (min-width: 768px) { .story-section { padding: 6rem 0; } }
.story-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 1024px) { .story-grid { grid-template-columns: 1.2fr 1fr; gap: 4rem; } }
.story-text {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.8;
    margin-bottom: 1rem;
}
@media (min-width: 768px) { .story-text { font-size: 1rem; } }

.story-highlights {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}
.story-highlight-card {
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 16px;
    transition: all 0.3s ease;
}
.story-highlight-card:hover {
    transform: translateX(4px);
    box-shadow: var(--shadow-md);
}
.highlight-icon {
    width: 48px; height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}
.red-icon { background: var(--red-light); color: var(--red); }
.blue-icon { background: var(--blue-light); color: var(--blue); }
.story-highlight-card h4 { font-size: 0.9375rem; font-weight: 700; color: var(--black); margin-bottom: 0.25rem; }
.story-highlight-card p { font-size: 0.8125rem; color: var(--gray-500); line-height: 1.5; }

/* Story Visual */
.story-visual { display: flex; justify-content: center; }
.story-image-wrapper { position: relative; }
.story-image-placeholder {
    width: 400px; height: 350px;
    background: linear-gradient(135deg, var(--red-light), var(--blue-light));
    border-radius: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0,0,0,0.06);
    max-width: 90vw;
}
.story-image-placeholder img.story-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 24px;
}

@media (max-width: 1023px) { .story-image-placeholder { width: 100%; height: 250px; } }
.placeholder-content {
    text-align: center;
    color: var(--red);
}
.placeholder-content span { display: block; margin-top: 0.5rem; font-size: 1.25rem; font-weight: 700; color: var(--black); }
.placeholder-content span:last-child { font-size: 0.875rem; color: var(--gray-500); font-weight: 500; }

.story-floating-card {
    position: absolute;
    background: var(--white);
    padding: 0.75rem 1.25rem;
    border-radius: 16px;
    box-shadow: var(--shadow-lg);
    text-align: center;
}
.story-floating-card:first-of-type { top: -20px; right: -20px; }
.card-2 { bottom: -20px; left: -20px; }
.floating-number { display: block; font-size: 1.5rem; font-weight: 800; color: var(--red); }
.floating-label { font-size: 0.75rem; color: var(--gray-500); }

/* ===== TECHNOLOGY SECTION ===== */
.tech-section {
    padding: 5rem 0;
    background: var(--white);
}
@media (min-width: 768px) { .tech-section { padding: 6rem 0; } }
.tech-header { text-align: center; margin-bottom: 3rem; }
.tech-cards-grid {
    display: grid;
    gap: 1.25rem;
}
@media (min-width: 640px) { .tech-cards-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .tech-cards-grid { grid-template-columns: repeat(4, 1fr); } }

.tech-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 1.75rem;
    transition: all 0.3s ease;
    position: relative;
    display: flex;
    flex-direction: column;
}
.tech-card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}
.featured-card {
    border: 2px solid var(--red);
    background: linear-gradient(180deg, var(--red-light) 0%, var(--white) 30%);
}
.tech-card-badge {
    position: absolute;
    top: 0.75rem; right: 0.75rem;
    padding: 0.1875rem 0.625rem;
    background: var(--red);
    color: var(--white);
    font-size: 0.625rem;
    font-weight: 700;
    border-radius: 9999px;
    text-transform: uppercase;
}
.tech-card-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.25rem;
}
.ai-icon { background: #f5f3ff; color: var(--purple); }
.delivery-icon { background: var(--red-light); color: var(--red); }
.tracking-icon { background: var(--blue-light); color: var(--blue); }
.inventory-icon { background: var(--green-light); color: var(--green); }
.tech-card h3 { font-size: 1rem; font-weight: 700; color: var(--black); margin-bottom: 0.5rem; }
.tech-card p { font-size: 0.8125rem; color: var(--gray-500); line-height: 1.6; flex: 1; }

.tech-metric {
    margin-top: 1rem;
    padding-top: 1rem;
    border-top: 1px solid var(--gray-100);
    display: flex;
    align-items: baseline;
    gap: 0.5rem;
}
.metric-value { font-size: 1.5rem; font-weight: 800; color: var(--red); line-height: 1; }
.featured-card .metric-value { color: var(--black); }
.metric-label { font-size: 0.75rem; color: var(--gray-500); }

/* Tech Steps */
.tech-steps {
    display: flex;
    align-items: center;
    gap: 0.375rem;
    margin-top: 1rem;
    padding-top: 0.75rem;
    border-top: 1px solid var(--gray-100);
    color: var(--gray-400);
}
.tech-step { display: flex; align-items: center; gap: 0.375rem; font-size: 0.6875rem; font-weight: 600; color: var(--gray-600); }
.step-circle {
    width: 22px; height: 22px;
    border-radius: 50%;
    background: var(--red);
    color: var(--white);
    font-size: 0.625rem;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

/* ===== APP SHOWCASE SECTION ===== */
.app-showcase-section {
    padding: 5rem 0;
    background: var(--gray-50);
}
@media (min-width: 768px) { .app-showcase-section { padding: 6rem 0; } }
.app-showcase-grid {
    display: grid;
    gap: 3rem;
    align-items: center;
}
@media (min-width: 1024px) { .app-showcase-grid { grid-template-columns: 1fr 1fr; gap: 4rem; } }
.app-showcase-visual { display: flex; justify-content: center; }

/* Phone Mockup */
.phone-mockup {
    width: 280px;
    background: var(--black);
    border-radius: 36px;
    padding: 12px;
    box-shadow: var(--shadow-xl);
    animation: phoneFloat 4s ease-in-out infinite;
}
@keyframes phoneFloat {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-12px); }
}
.phone-screen {
    background: var(--white);
    border-radius: 28px;
    overflow: hidden;
}
.phone-status-bar {
    display: flex;
    justify-content: space-between;
    padding: 0.625rem 1rem;
    font-size: 0.6875rem;
    font-weight: 600;
    color: var(--black);
    background: var(--gray-50);
}
.phone-status-bar span:last-child { display: flex; gap: 4px; align-items: center; }
.phone-app-header {
    padding: 0.75rem 1rem;
    font-size: 0.9375rem;
    font-weight: 700;
    color: var(--black);
    text-align: center;
    border-bottom: 1px solid var(--gray-100);
}
.phone-map-area {
    height: 120px;
    background: #e8f4f8;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--blue);
    position: relative;
}
.phone-tracking-info { padding: 0.75rem 1rem; }

.tracking-step {
    display: flex;
    gap: 0.625rem;
    position: relative;
    padding-bottom: 0.5rem;
}
.tracking-dot {
    width: 10px; height: 10px;
    border-radius: 50%;
    background: var(--gray-200);
    margin-top: 4px;
    flex-shrink: 0;
    position: relative;
    z-index: 1;
}
.tracking-step.completed .tracking-dot { background: var(--green); }
.tracking-step.active .tracking-dot { background: var(--red); }
.pulse-dot { animation: dotPulse 2s infinite; }
@keyframes dotPulse {
    0%, 100% { box-shadow: 0 0 0 0 rgba(239,72,80,0.4); }
    50% { box-shadow: 0 0 0 6px rgba(239,72,80,0); }
}
.tracking-line {
    position: absolute;
    left: 4px; top: 16px;
    width: 2px; height: calc(100% - 8px);
    background: var(--gray-200);
}
.tracking-step.completed .tracking-line { background: var(--green); }
.tracking-step:last-child .tracking-line { display: none; }
.tracking-text { flex: 1; }
.tracking-title { display: block; font-size: 0.75rem; font-weight: 600; color: var(--gray-600); }
.tracking-step.active .tracking-title { color: var(--red); }
.tracking-time { display: block; font-size: 0.625rem; color: var(--gray-400); margin-top: 0.125rem; }

/* App Showcase Content */
.app-showcase-text {
    font-size: 0.9375rem;
    color: var(--gray-500);
    line-height: 1.7;
    margin-bottom: 1.5rem;
}
@media (min-width: 768px) { .app-showcase-text { font-size: 1rem; } }
.app-features-list { display: flex; flex-direction: column; gap: 0.75rem; margin-bottom: 1.5rem; }
.app-feature-item { display: flex; align-items: center; gap: 0.625rem; font-size: 0.875rem; color: var(--gray-600); }
.app-feature-item svg { color: var(--green); flex-shrink: 0; }
.app-download-buttons { display: flex; gap: 0.75rem; flex-wrap: wrap; }
.store-download-btn { display: inline-block; transition: all 0.3s ease; opacity: 0.85; }
.store-download-btn:hover { opacity: 1; transform: translateY(-2px); }
.store-download-btn img { height: 44px; width: auto; }

/* ===== STATS COUNTER SECTION ===== */
.stats-counter-section {
    padding: 4rem 0;
    background: var(--dark-gradient);
    color: var(--white);
}
@media (min-width: 768px) { .stats-counter-section { padding: 5rem 0; } }
.stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1.5rem;
}
@media (min-width: 768px) { .stats-grid { grid-template-columns: repeat(4, 1fr); } }
.stat-counter-card { text-align: center; padding: 1.5rem; }
.stat-counter-icon {
    width: 56px; height: 56px;
    border-radius: 14px;
    background: rgba(255,255,255,0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--red);
}
.stat-counter-number { display: block; font-size: 2rem; font-weight: 800; margin-bottom: 0.25rem; }
.stat-counter-label { font-size: 0.8125rem; color: rgba(255,255,255,0.6); }

/* ===== VALUES SECTION ===== */
.values-section {
    padding: 5rem 0;
    background: var(--white);
}
@media (min-width: 768px) { .values-section { padding: 6rem 0; } }
.values-header { text-align: center; margin-bottom: 3rem; }
.values-grid {
    display: grid;
    gap: 1rem;
}
@media (min-width: 480px) { .values-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .values-grid { grid-template-columns: repeat(4, 1fr); } }

.value-card {
    background: var(--gray-50);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    padding: 2rem 1.5rem;
    text-align: center;
    transition: all 0.3s ease;
}
.value-card:hover {
    transform: translateY(-4px);
    box-shadow: var(--shadow-lg);
    border-color: var(--red);
    background: var(--white);
}
.value-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--red);
    opacity: 0.2;
    margin-bottom: 0.5rem;
    line-height: 1;
}
.value-card h3 { font-size: 1.125rem; font-weight: 700; color: var(--black); margin-bottom: 0.5rem; }
.value-card p { font-size: 0.8125rem; color: var(--gray-500); line-height: 1.6; }

/* ===== TEAM SECTION ===== */
.team-section {
    padding: 5rem 0;
    background: var(--gray-50);
}
@media (min-width: 768px) { .team-section { padding: 6rem 0; } }

.team-header { 
    text-align: center; 
    margin-bottom: 3rem; 
}

.team-grid {
    display: grid;
    gap: 1.25rem;
}
@media (min-width: 640px) { 
    .team-grid { 
        grid-template-columns: repeat(2, 1fr); 
    } 
}
@media (min-width: 1024px) { 
    .team-grid { 
        grid-template-columns: repeat(4, 1fr); 
    } 
}

/* Team Card */
.team-card {
    background: var(--white);
    border: 1px solid var(--gray-200);
    border-radius: 20px;
    overflow: hidden;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-xl);
    border-color: transparent;
}

.team-card.featured-member {
    border: 2px solid var(--red);
    box-shadow: 0 0 0 4px rgba(239, 72, 80, 0.06);
}

.team-card-inner {
    display: flex;
    flex-direction: column;
    height: 100%;
}

/* Team Image Wrapper */
.team-image-wrapper {
    position: relative;
    padding: 2rem 1.5rem 0;
    display: flex;
    justify-content: center;
}

.team-image {
    width: 100px;
    height: 100px;
    border-radius: 50%;
    overflow: hidden;
    border: 4px solid var(--white);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    z-index: 1;
    transition: all 0.4s ease;
}

.team-card:hover .team-image {
    transform: scale(1.05);
    box-shadow: 0 8px 30px rgba(239, 72, 80, 0.2);
}

.team-avatar-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.4s ease;
}

.team-avatar-fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2rem;
    font-weight: 700;
    color: var(--white);
    background: var(--red-gradient);
}

/* Status Indicator */
.team-status {
    position: absolute;
    bottom: 4px;
    right: calc(50% - 42px);
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 3px solid var(--white);
    z-index: 2;
}

.team-status.online {
    background: var(--green);
    box-shadow: 0 0 0 4px rgba(22, 163, 74, 0.15);
}

/* Team Info */
.team-info {
    padding: 1.5rem;
    text-align: center;
    flex: 1;
    display: flex;
    flex-direction: column;
}

.team-badge {
    display: inline-block;
    padding: 0.1875rem 0.75rem;
    background: var(--red-light);
    color: var(--red);
    border-radius: 9999px;
    font-size: 0.625rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    margin: 0 auto 0.75rem;
    width: fit-content;
}

.team-badge-blue {
    background: var(--blue-light);
    color: var(--blue);
}

.team-badge-green {
    background: var(--green-light);
    color: var(--green);
}

.team-info h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.25rem;
}

.team-role {
    font-size: 0.75rem;
    color: var(--gray-500);
    font-weight: 500;
    display: block;
    margin-bottom: 0.75rem;
}

.team-bio {
    font-size: 0.8125rem;
    color: var(--gray-500);
    line-height: 1.6;
    margin-bottom: 1rem;
    flex: 1;
}

/* Team Stats */
.team-stats {
    display: flex;
    justify-content: center;
    gap: 1rem;
    padding: 0.75rem 0;
    border-top: 1px solid var(--gray-100);
    border-bottom: 1px solid var(--gray-100);
    margin-bottom: 0.75rem;
}

.team-stat {
    text-align: center;
}

.team-stat-value {
    display: block;
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--black);
    line-height: 1.2;
}

.team-stat-label {
    font-size: 0.625rem;
    color: var(--gray-400);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Team Socials */
.team-socials {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
}

.team-social-link {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    background: var(--gray-100);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--gray-500);
    transition: all 0.3s ease;
}

.team-social-link:hover {
    background: var(--red);
    color: var(--white);
    transform: translateY(-2px);
    box-shadow: 0 4px 12px rgba(239, 72, 80, 0.3);
}

/* Join Card */
.team-join-card {
    border: 2px dashed var(--gray-300);
    background: linear-gradient(135deg, var(--gray-50) 0%, var(--white) 100%);
}

.team-join-card:hover {
    border-color: var(--red);
    border-style: solid;
}

.team-join-content {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    padding: 2.5rem 1.5rem;
    height: 100%;
}

.team-join-icon {
    width: 64px;
    height: 64px;
    border-radius: 50%;
    background: var(--red-light);
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--red);
    margin-bottom: 1rem;
    transition: all 0.3s ease;
}

.team-join-card:hover .team-join-icon {
    background: var(--red);
    color: var(--white);
    transform: scale(1.1) rotate(-5deg);
}

.team-join-content h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--black);
    margin-bottom: 0.5rem;
}

.team-join-content p {
    font-size: 0.8125rem;
    color: var(--gray-500);
    margin-bottom: 1.25rem;
    line-height: 1.5;
}

/* Team Image Pattern Background */
.team-image-wrapper::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 55%;
    background: linear-gradient(180deg, var(--red-light) 0%, rgba(254, 240, 240, 0) 100%);
    border-radius: 20px 20px 0 0;
    transition: all 0.4s ease;
}

.team-card:nth-child(2) .team-image-wrapper::before {
    background: linear-gradient(180deg, var(--blue-light) 0%, rgba(239, 246, 255, 0) 100%);
}

.team-card:nth-child(3) .team-image-wrapper::before {
    background: linear-gradient(180deg, var(--green-light) 0%, rgba(240, 253, 244, 0) 100%);
}

.team-card:hover .team-image-wrapper::before {
    height: 65%;
}

/* Responsive */
@media (max-width: 1023px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-image {
        width: 90px;
        height: 90px;
    }
}

@media (max-width: 639px) {
    .team-grid {
        grid-template-columns: 1fr;
        max-width: 380px;
        margin: 0 auto;
    }
    
    .team-image {
        width: 100px;
        height: 100px;
    }
    
    .team-bio {
        max-width: 280px;
        margin-left: auto;
        margin-right: auto;
    }
}
/* ===== CTA SECTION ===== */
.about-cta { padding: 4rem 0 5rem; background: var(--gray-50); }
@media (min-width: 768px) { .about-cta { padding: 5rem 0 6rem; } }
.cta-card {
    background: var(--dark-gradient);
    border-radius: 24px;
    padding: 3rem 2rem;
    text-align: center;
    color: var(--white);
    position: relative;
    overflow: hidden;
}
@media (min-width: 768px) { .cta-card { padding: 4rem; } }
.cta-card::before {
    content: '';
    position: absolute;
    top: -50%; right: -10%;
    width: 300px; height: 300px;
    background: radial-gradient(circle, rgba(239,72,80,0.3) 0%, transparent 70%);
    border-radius: 50%;
}
.cta-card::after {
    content: '';
    position: absolute;
    bottom: -30%; left: -5%;
    width: 250px; height: 250px;
    background: radial-gradient(circle, rgba(44,153,212,0.2) 0%, transparent 70%);
    border-radius: 50%;
}
.cta-card-content { position: relative; z-index: 1; }
.cta-card h2 { font-size: 1.75rem; font-weight: 800; margin-bottom: 1rem; }
@media (min-width: 768px) { .cta-card h2 { font-size: 2.25rem; } }
.cta-card p { font-size: 0.9375rem; opacity: 0.8; margin-bottom: 2rem; max-width: 500px; margin-left: auto; margin-right: auto; }
.cta-buttons { display: flex; gap: 0.75rem; justify-content: center; flex-wrap: wrap; }

/* ===== BUTTONS ===== */
.btn {
    display: inline-flex; align-items: center; justify-content: center; gap: 0.5rem;
    padding: 0.625rem 1.5rem; border-radius: 9999px; font-size: 0.875rem; font-weight: 600;
    cursor: pointer; border: 2px solid transparent; transition: all 0.3s ease;
    text-decoration: none; font-family: inherit; white-space: nowrap;
}
.btn-white { background: var(--white); color: var(--black); border-color: var(--white); }
.btn-white:hover { transform: translateY(-2px); box-shadow: 0 8px 25px rgba(0,0,0,0.2); }
.btn-outline-white { background: transparent; color: var(--white); border-color: rgba(255,255,255,0.4); }
.btn-outline-white:hover { border-color: var(--white); background: rgba(255,255,255,0.1); transform: translateY(-2px); }

/* ===== RESPONSIVE ===== */
@media (max-width: 768px) {
    .about-hero-title { font-size: 1.75rem; }
    .section-heading { font-size: 1.5rem; }
    .story-visual { order: -1; }
    .app-showcase-visual { order: -1; }
    .cta-card { padding: 2rem 1.25rem; }
    .cta-card h2 { font-size: 1.375rem; }
}