/* ===================================
   ABOUT PAGE STYLES
   =================================== */

/* Page Layout */
.about-main {
    padding-top: 8rem;
    padding-bottom: 4rem;
}

.about-container {
    max-width: 80rem;
    margin: 0 auto;
    padding: 0 1rem;
}

/* Page Header */
.about-header {
    text-align: center;
    margin-bottom: 4rem;
}

.about-title {
    font-size: 3rem;
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -0.025em;
    margin-bottom: 1.5rem;
    color: #111827;
}

.about-title-highlight {
    background: linear-gradient(to right, #9333ea, #db2777, #f97316);
    -webkit-background-clip: text;
    background-clip: text;
    color: transparent;
}

.about-subtitle {
    font-size: 1.25rem;
    line-height: 1.75;
    max-width: 48rem;
    margin: 0 auto;
    color: #4b5563;
}

/* Company Story Section */
.story-section {
    margin-bottom: 5rem;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 4rem;
    align-items: center;
}

.story-content {
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.story-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #111827;
}

.story-text-wrapper {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.story-text {
    font-size: 1.125rem;
    line-height: 1.75;
    color: #4b5563;
}

/* Stats Card */
.stats-card {
    position: relative;
    background: linear-gradient(to bottom right, #9333ea, #db2777);
    border-radius: 1rem;
    padding: 2rem;
    color: white;
}

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

.stat-item {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.stat-icon {
    width: 4rem;
    height: 4rem;
    background-color: rgba(255, 255, 255, 0.2);
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.stat-icon svg {
    width: 2rem;
    height: 2rem;
}

.stat-number {
    font-size: 1.5rem;
    font-weight: 700;
}

.stat-label {
    color: rgba(255, 255, 255, 0.8);
}

/* Mission & Values Section */
.mission-section {
    margin-bottom: 5rem;
}

.mission-header {
    text-align: center;
    margin-bottom: 3rem;
}

.mission-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111827;
}

.mission-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
}

.mission-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.mission-card {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    backdrop-filter: blur(16px);
}

.mission-icon-wrapper {
    width: 4rem;
    height: 4rem;
    border-radius: 9999px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
}

.mission-icon-wrapper.blue {
    background: linear-gradient(to right, #3b82f6, #06b6d4);
}

.mission-icon-wrapper.green {
    background: linear-gradient(to right, #10b981, #059669);
}

.mission-icon-wrapper.purple {
    background: linear-gradient(to right, #a855f7, #ec4899);
}

.mission-icon-wrapper svg {
    width: 2rem;
    height: 2rem;
    color: white;
}

.mission-card-title {
    font-size: 1.5rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111827;
}

.mission-card-text {
    color: #4b5563;
}

/* Team Section */
.team-section {
    margin-bottom: 5rem;
}

.team-header {
    text-align: center;
    margin-bottom: 3rem;
}

.team-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1rem;
    color: #111827;
}

.team-subtitle {
    font-size: 1.25rem;
    color: #4b5563;
}

.team-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

.team-card {
    background-color: rgba(255, 255, 255, 0.8);
    border-radius: 1rem;
    padding: 2rem;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.25);
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
    backdrop-filter: blur(16px);
}

.team-avatar {
    width: 6rem;
    height: 6rem;
    border-radius: 9999px;
    margin: 0 auto 1.5rem;
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-avatar.purple {
    background: linear-gradient(to right, #9333ea, #db2777);
}

.team-avatar.blue {
    background: linear-gradient(to right, #2563eb, #06b6d4);
}

.team-avatar.green {
    background: linear-gradient(to right, #059669, #10b981);
}

.team-avatar-initials {
    font-size: 1.5rem;
    font-weight: 700;
    color: white;
}

.team-member-name {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: #111827;
}

.team-member-role {
    color: #9333ea;
    font-weight: 500;
    margin-bottom: 1rem;
}

.team-member-bio {
    font-size: 0.875rem;
    color: #4b5563;
}

/* CTA Section */
.cta-section {
    text-align: center;
    background: linear-gradient(to right, #9333ea, #db2777);
    border-radius: 1rem;
    padding: 3rem;
    color: white;
}

.cta-title {
    font-size: 2.25rem;
    font-weight: 700;
    margin-bottom: 1.5rem;
}

.cta-text {
    font-size: 1.25rem;
    margin-bottom: 2rem;
    color: rgba(255, 255, 255, 0.9);
}

.cta-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    align-items: center;
}

.cta-btn-primary {
    display: inline-block;
    background-color: white;
    color: #9333ea;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    transform: scale(1);
}

.cta-btn-primary:hover {
    background-color: #f3f4f6;
    transform: scale(1.05);
}

.cta-btn-secondary {
    display: inline-block;
    border: 2px solid white;
    color: white;
    font-weight: 700;
    padding: 1rem 2rem;
    border-radius: 0.75rem;
    transition: all 0.3s ease;
    transform: scale(1);
}

.cta-btn-secondary:hover {
    background-color: white;
    color: #9333ea;
    transform: scale(1.05);
}

/* ===================================
   RESPONSIVE DESIGN - TABLETS & UP
   =================================== */
@media (min-width: 640px) {
    .about-container {
        padding: 0 1.5rem;
    }

    .about-title {
        font-size: 3.75rem;
    }

    .about-subtitle {
        font-size: 1.5rem;
    }

    .cta-buttons {
        flex-direction: row;
        justify-content: center;
    }
}

@media (min-width: 768px) {
    .mission-grid {
        grid-template-columns: repeat(3, 1fr);
    }

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

@media (min-width: 1024px) {
    .about-container {
        padding: 0 2rem;
    }

    .about-title {
        font-size: 4.5rem;
    }

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

    .team-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
