/* =====================================================
   Service 24 Support - About Page Styles
   ===================================================== */

/* ===================
   About Hero
   =================== */
.about-hero {
    position: relative;
    padding: calc(var(--header-height) + var(--space-20)) 0 var(--space-20);
    background: var(--gradient-hero);
    overflow: hidden;
    text-align: center;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    background: 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.03'%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");
}

.about-hero-content {
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
    color: var(--color-white);
}

.about-hero-title {
    font-size: var(--text-5xl);
    font-weight: var(--font-extrabold);
    line-height: 1.1;
    margin-bottom: var(--space-6);
    color: var(--color-white);
}

.about-hero-subtitle {
    font-size: var(--text-xl);
    opacity: 0.9;
    max-width: 600px;
    margin: 0 auto;
    color: var(--color-white);
}

/* ===================
   Mission Section
   =================== */
.mission-section {
    background: var(--color-white);
    margin-top: -60px;
    position: relative;
    z-index: 10;
}

.mission-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.mission-card {
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    box-shadow: var(--shadow-card);
    text-align: center;
    transition: all var(--transition-smooth);
    border: 1px solid var(--color-gray-100);
}

.mission-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
}

.mission-icon {
    width: 72px;
    height: 72px;
    background: var(--gradient-primary);
    border-radius: var(--radius-xl);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-6);
}

.mission-icon svg {
    width: 36px;
    height: 36px;
    stroke: var(--color-white);
}

.mission-card h3 {
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    margin-bottom: var(--space-4);
    color: var(--color-dark);
}

.mission-card p {
    color: var(--color-gray-600);
    line-height: var(--leading-relaxed);
    margin: 0;
}

/* ===================
   Story Section
   =================== */
.story-section {
    background: var(--color-light);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-16);
    align-items: center;
}

.story-content p {
    font-size: var(--text-lg);
    color: var(--color-gray-600);
    line-height: var(--leading-relaxed);
    margin-bottom: var(--space-4);
}

.story-highlights {
    display: flex;
    gap: var(--space-8);
    margin-top: var(--space-8);
    padding-top: var(--space-8);
    border-top: 1px solid var(--color-gray-200);
}

.highlight-item {
    text-align: center;
}

.highlight-number {
    display: block;
    font-size: var(--text-3xl);
    font-weight: var(--font-extrabold);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.highlight-text {
    font-size: var(--text-sm);
    color: var(--color-gray-500);
    font-weight: var(--font-medium);
}

.story-image {
    position: relative;
}

.story-image-card {
    background: var(--gradient-primary);
    border-radius: var(--radius-3xl);
    min-height: 400px;
    position: relative;
    overflow: hidden;
}

.story-image-decoration {
    position: absolute;
    inset: 0;
    background: url("data:image/svg+xml,%3Csvg width='100' height='100' viewBox='0 0 100 100' xmlns='http://www.w3.org/2000/svg'%3E%3Ccircle cx='50' cy='50' r='40' fill='none' stroke='rgba(255,255,255,0.1)' stroke-width='2'/%3E%3C/svg%3E");
    background-size: 100px;
}

/* ===================
   Values Section
   =================== */
.values-section {
    background: var(--color-white);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-6);
}

.value-card {
    background: var(--color-light);
    border-radius: var(--radius-xl);
    padding: var(--space-8);
    position: relative;
    transition: all var(--transition-smooth);
    border: 1px solid transparent;
}

.value-card:hover {
    background: var(--color-white);
    border-color: var(--color-secondary);
    box-shadow: var(--shadow-lg);
}

.value-number {
    font-size: var(--text-4xl);
    font-weight: var(--font-extrabold);
    background: var(--gradient-primary);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    opacity: 0.3;
    margin-bottom: var(--space-4);
}

.value-card h4 {
    font-size: var(--text-lg);
    font-weight: var(--font-bold);
    color: var(--color-dark);
    margin-bottom: var(--space-3);
}

.value-card p {
    color: var(--color-gray-600);
    font-size: var(--text-sm);
    line-height: var(--leading-relaxed);
    margin: 0;
}

/* ===================
   Team Section
   =================== */
.team-section {
    background: var(--color-light);
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-8);
}

.team-card {
    background: var(--color-white);
    border-radius: var(--radius-2xl);
    padding: var(--space-8);
    text-align: center;
    box-shadow: var(--shadow-card);
    transition: all var(--transition-smooth);
}

.team-card:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-card-hover);
}

.team-avatar {
    width: 100px;
    height: 100px;
    margin: 0 auto var(--space-6);
}

.avatar-placeholder {
    width: 100%;
    height: 100%;
    background: var(--gradient-primary);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: var(--text-2xl);
    font-weight: var(--font-bold);
    color: var(--color-white);
}

.team-name {
    font-size: var(--text-xl);
    font-weight: var(--font-bold);
    color: var(--color-dark);
    margin-bottom: var(--space-1);
}

.team-role {
    font-size: var(--text-sm);
    color: var(--color-secondary);
    font-weight: var(--font-medium);
    margin-bottom: var(--space-4);
}

.team-bio {
    color: var(--color-gray-600);
    font-size: var(--text-sm);
    line-height: var(--leading-relaxed);
    margin: 0;
}

/* ===================
   Accreditations Section
   =================== */
.accreditations-section {
    background: var(--color-white);
}

.accreditations-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--space-6);
}

.accreditation-card {
    text-align: center;
    padding: var(--space-6);
    border-radius: var(--radius-xl);
    background: var(--color-light);
    transition: all var(--transition-base);
}

.accreditation-card:hover {
    background: var(--color-white);
    box-shadow: var(--shadow-lg);
}

.accreditation-icon {
    width: 56px;
    height: 56px;
    background: rgba(45, 138, 127, 0.1);
    border-radius: var(--radius-full);
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-4);
}

.accreditation-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--color-secondary);
}

.accreditation-card h4 {
    font-size: var(--text-base);
    font-weight: var(--font-semibold);
    color: var(--color-dark);
    margin-bottom: var(--space-2);
}

.accreditation-card p {
    font-size: var(--text-sm);
    color: var(--color-gray-500);
    margin: 0;
}

/* ===================
   Responsive
   =================== */
@media (max-width: 1024px) {
    .mission-grid {
        grid-template-columns: 1fr;
    }

    .story-grid {
        grid-template-columns: 1fr;
        gap: var(--space-10);
    }

    .story-image {
        order: -1;
    }

    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }

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

    .accreditations-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .about-hero-title {
        font-size: var(--text-4xl);
    }

    .story-highlights {
        flex-wrap: wrap;
        justify-content: center;
    }

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

    .accreditations-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 480px) {
    .about-hero-title {
        font-size: var(--text-3xl);
    }
}