/* About Hero */
.about-hero-vibe {
    padding: 120px 0 80px;
    background: linear-gradient(135deg, #fdf2f8 0%, #ffedd5 50%, #fce7f3 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-hero-vibe::before {
    content: '';
    position: absolute;
    top: -30%;
    left: -10%;
    width: 40%;
    height: 120%;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.08) 0%, rgba(249, 115, 22, 0.08) 100%);
    border-radius: 40% 60% 70% 30% / 40% 50% 60% 50%;
}

.about-hero-content-vibe {
    position: relative;
    z-index: 1;
}

.about-hero-content-vibe h1 {
    font-size: 2.8rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    background: linear-gradient(135deg, #ec4899 0%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    letter-spacing: -0.02em;
    animation: fadeInUp 0.6s ease-out;
}

.about-hero-subtitle {
    font-size: 1.1rem;
    color: #6b7280;
    max-width: 520px;
    margin: 0 auto;
    animation: fadeInUp 0.6s ease-out 0.15s both;
}

/* Mission */
.mission-vibe {
    padding: 80px 0;
    background: white;
}

.mission-content-vibe {
    text-align: center;
    max-width: 640px;
    margin: 0 auto;
}

.mission-text-vibe h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
    background: linear-gradient(135deg, #ec4899 0%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.mission-text-vibe p {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 1rem;
    line-height: 1.8;
}

.stats-vibe {
    display: flex;
    justify-content: center;
    gap: 3rem;
    margin-top: 3rem;
    padding-top: 3rem;
    border-top: 2px dashed #fce7f3;
}

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

.stat-vibe h3 {
    font-size: 2.5rem;
    font-weight: 800;
    background: linear-gradient(135deg, #ec4899 0%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    margin-bottom: 0.25rem;
}

.stat-vibe p {
    color: #9ca3af;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Team */
.team-vibe {
    padding: 80px 0;
    background: linear-gradient(135deg, #fdf2f8 0%, #ffedd5 100%);
}

.team-grid-vibe {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.team-card-vibe {
    background: white;
    border-radius: 24px;
    padding: 2rem;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    box-shadow: 0 4px 20px rgba(236, 72, 153, 0.1);
}

.team-card-vibe:hover {
    transform: translateY(-8px) rotate(1deg);
    box-shadow: 0 20px 50px rgba(236, 72, 153, 0.2);
}

.team-avatar-vibe {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, #ec4899 0%, #f97316 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    box-shadow: 0 10px 30px rgba(236, 72, 153, 0.3);
}

.team-avatar-vibe img {
    width: 40px;
}

.team-card-vibe h4 {
    font-size: 1.2rem;
    font-weight: 700;
    margin-bottom: 0.25rem;
    color: #1f2937;
}

.team-role-vibe {
    color: #ec4899;
    font-size: 0.8rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    margin-bottom: 0.75rem;
}

.team-card-vibe p {
    color: #6b7280;
    font-size: 0.85rem;
    line-height: 1.6;
}

/* Values */
.values-vibe {
    padding: 80px 0;
    background: white;
}

.values-grid-vibe {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2rem;
}

.value-circle-vibe {
    background: linear-gradient(145deg, #fdf2f8 0%, #ffedd5 100%);
    border-radius: 50%;
    aspect-ratio: 1;
    padding: 2.5rem 2rem;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    transition: all 0.4s cubic-bezier(0.34, 1.56, 0.64, 1);
    position: relative;
    overflow: hidden;
}

.value-circle-vibe::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: linear-gradient(135deg, rgba(236, 72, 153, 0.1) 0%, rgba(249, 115, 22, 0.1) 100%);
    border-radius: 40%;
    transition: all 0.6s ease;
}

.value-circle-vibe:hover {
    transform: scale(1.08);
    box-shadow: 0 20px 50px rgba(236, 72, 153, 0.2);
}

.value-circle-vibe:hover::before {
    animation: float 3s ease-in-out infinite;
}

.value-icon-vibe {
    position: relative;
    z-index: 1;
    width: 60px;
    height: 60px;
    background: white;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1rem;
}

.value-icon-vibe img {
    width: 30px;
}

.value-circle-vibe h3 {
    position: relative;
    z-index: 1;
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #1f2937;
}

.value-circle-vibe p {
    position: relative;
    z-index: 1;
    color: #6b7280;
    font-size: 0.8rem;
    line-height: 1.5;
}

/* Contact */
.contact-vibe {
    padding: 80px 0;
    background: linear-gradient(135deg, #ffedd5 0%, #fdf2f8 100%);
    text-align: center;
}

.contact-content-vibe h2 {
    font-size: 1.8rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    background: linear-gradient(135deg, #ec4899 0%, #f97316 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.contact-content-vibe > p {
    font-size: 0.95rem;
    color: #6b7280;
    margin-bottom: 2rem;
}

.contact-bubble-vibe {
    display: inline-flex;
    align-items: center;
    gap: 1rem;
    background: white;
    padding: 1.25rem 2rem;
    border-radius: 100px;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(236, 72, 153, 0.15);
}

.contact-bubble-vibe:hover {
    transform: translateY(-3px) scale(1.02);
    box-shadow: 0 15px 40px rgba(236, 72, 153, 0.25);
}

.contact-icon-vibe img {
    width: 28px;
}

.contact-bubble-vibe h4 {
    font-size: 0.9rem;
    font-weight: 700;
    color: #1f2937;
    margin-bottom: 0.1rem;
}

.contact-bubble-vibe p {
    color: #ec4899;
    font-size: 0.95rem;
    font-weight: 600;
}

/* Responsive */
@media (max-width: 768px) {
    .about-hero-content-vibe h1 {
        font-size: 2rem;
    }

    .stats-vibe {
        gap: 2rem;
    }

    .team-grid-vibe {
        grid-template-columns: 1fr;
    }

    .values-grid-vibe {
        grid-template-columns: 1fr;
    }

    .value-circle-vibe {
        padding: 2rem 1.5rem;
    }
}

@media (max-width: 480px) {
    .about-hero-content-vibe h1 {
        font-size: 1.6rem;
    }

    .stats-vibe {
        flex-direction: column;
        gap: 1.5rem;
    }

    .stat-vibe h3 {
        font-size: 2rem;
    }
}
