.about-collage-hero {
    padding-top: 4.55rem;
    min-height: 20vh;
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    background: #fdfdfd;
    overflow: hidden;
}
.about-text-section {
    padding: 6rem 0;
    background-color: var(--white);
}
.about-text-section.bg-alt {
    background-color: var(--bg-gray);
}
.about-text-container {
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}
.about-text-container h2 {
    font-size: 2.5rem;
    line-height: 1.2;
    font-weight: 600;
    margin-bottom: 2rem;
    color: var(--dark);
    font-family: var(--font-heading);
    letter-spacing: -0.025em;
}
.about-text-container p {
    font-size: 1.125rem;
    font-weight: 300;
    color: var(--text-gray);
    line-height: 1.8;
    margin-bottom: 1.5rem;
}
.mission-vision-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
    max-width: 900px;
    margin: 0 auto;
}
@media (min-width: 768px) {
    .mission-vision-grid { grid-template-columns: repeat(2, 1fr); }
}
.mv-card {
    background: #FAFAFA;
    border-radius: 24px;
    padding: 2.5rem 2rem 3rem;
    text-align: center;
    border: 1px solid #F0F0F0;
}
.mv-card-mockup {
    background: #FFFFFF;
    border-radius: 16px;
    padding: 1.5rem;
    box-shadow: 0 15px 35px -5px rgba(0,0,0,0.06);
    margin: 0 auto 2.5rem;
    width: 100%;
    max-width: 280px;
    height: 200px;
    display: flex;
    flex-direction: column;
    position: relative;
    overflow: hidden;
    border: 1px solid rgba(0,0,0,0.02);
    text-align: left;
}
.mock-header { display: flex; flex-direction: column; align-items: flex-start; margin-bottom: 1rem; }
.mock-label { font-size: 0.65rem; color: #9ca3af; font-weight: 500; margin-bottom: 0.2rem; }
.mock-value { font-size: 1.35rem; color: #111827; font-weight: 600; font-family: var(--font-heading); }
.mock-bars { display: flex; align-items: flex-end; justify-content: space-between; height: 70px; gap: 8px; margin-top: auto; }
.mock-bar { flex: 1; background: #645BFF; border-radius: 10px 10px 4px 4px; box-shadow: 0 4px 10px rgba(100, 91, 255, 0.2); }
.mock-bar.active { filter: brightness(1.1); box-shadow: 0 4px 12px rgba(100, 91, 255, 0.5); }
.mock-days { display: flex; justify-content: space-between; font-size: 0.5rem; color: #9ca3af; margin-top: 10px; font-weight: 500; }
.mock-stats { display: flex; gap: 2.5rem; margin-bottom: 1rem; padding-bottom: 0.75rem; border-bottom: 1px solid #f3f4f6; }
.mock-stat { display: flex; flex-direction: column; align-items: flex-start; }
.mock-stat .val { font-size: 0.85rem; font-weight: 600; color: #111827; margin-top: 0.2rem; }
.mv-card h3 {
    font-size: 1.15rem;
    font-weight: 600;
    margin-bottom: 0.75rem;
    color: var(--dark);
    font-family: var(--font-sans);
}
.mv-card p {
    font-size: 0.875rem;
    line-height: 1.6;
    color: #6b7280;
    margin: 0 auto;
    max-width: 95%;
}
.collage-container {
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    pointer-events: none;
    z-index: 5;
}
.floating-wrapper { position: absolute; }
.floating-wrapper::before, .floating-wrapper::after {
    content: '';
    position: absolute;
    left: 50%;
    width: 1px;
    height: 100vh;
    border-left: 1px dashed rgba(0,0,0,0.12);
    z-index: -1;
}
.floating-wrapper::before { bottom: 100%; }
.floating-wrapper::after { top: 100%; }
.line-up::after { display: none; }
.line-down::before { display: none; }
.floating-img {
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 15px 35px -5px rgba(0,0,0,0.12);
    animation: collage-float 6s ease-in-out infinite;
    animation-delay: var(--delay);
    width: 100%; height: 100%;
    background: var(--white);
}
.floating-img img { width: 100%; height: 100%; object-fit: cover; display: block; }
.img-1 { top: 15%; left: 6%; width: 140px; height: 160px; }
.img-2 { top: 65%; left: 15%; width: 170px; height: 130px; }
.img-3 { top: 10%; left: 82%; width: 150px; height: 190px; }
.img-4 { top: 62%; left: 74%; width: 170px; height: 130px; }
@media (max-width: 1024px) {
    .img-1, .img-3 { display: none; }
    .img-2 { left: 5%; }
    .img-4 { left: 75%; }
}
@media (max-width: 768px) {
    .collage-container { display: none; }
    .about-collage-hero { min-height: auto; padding-top: 10px !important; }
    .about-collage-hero .hero-center { margin-top: 4rem !important; }
    section.about-text-section { padding-top: 0px !important; }
    section.about-text-section.bg-alt { padding-top: 25px !important; padding-bottom: 25px !important; }
    #mission-vision { padding-top: 40px !important; }
    #what-makes-us-different { padding-top: 0px !important; }
    .who-we-are-section { padding-bottom: 5px !important; }
}
@keyframes collage-float {
    0% { transform: translateY(0px) scale(1); }
    50% { transform: translateY(-12px) scale(1.02); }
    100% { transform: translateY(0px) scale(1); }
}
.pill-badge {
    display: inline-block;
    padding: 0.5rem 1.5rem;
    background: var(--bg-gray);
    border-radius: 50px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--text-gray);
    margin-bottom: 2rem;
    border: 1px solid var(--border-gray);
}
.relative-z { position: relative; z-index: 10; }
