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

/* =============================================
   MISSION SECTION
   ============================================= */
.mission {
    padding: 120px 40px;
    background: var(--primary);
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.mission::before {
    content: '';
    position: absolute;
    top: -50%;
    left: -50%;
    width: 200%;
    height: 200%;
    background: radial-gradient(circle at 30% 50%, rgba(37, 99, 235, 0.1) 0%, transparent 40%);
    pointer-events: none;
}

.mission__inner {
    max-width: 1200px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.mission__grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.mission__content h2 {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
    margin-bottom: 30px;
}

.mission__content p {
    font-size: 18px;
    line-height: 1.8;
    opacity: 0.85;
    margin-bottom: 20px;
}

.mission__visual {
    position: relative;
}

.mission__card {
    background: linear-gradient(135deg, rgb(92 92 92 / 10%) 0%, rgba(255, 255, 255, 0.05) 100%);
    border: 1px solid rgba(255,255,255,0.1);
    border-radius: 20px;
    padding: 50px;
    backdrop-filter: blur(10px);
}

.mission__card-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--accent) 0%, var(--accent-coral) 100%);
    border-radius: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
}

.mission__card-icon svg {
    width: 40px;
    height: 40px;
    stroke: var(--white);
    fill: none;
    stroke-width: 2;
}

.mission__card h3 {
    font-size: 28px;
    font-weight: 700;
    margin-bottom: 16px;
}

.mission__card p {
    font-size: 16px;
    opacity: 0.75;
    line-height: 1.7;
}

.bg-grid.new1 {
    background: url("../images/about_bg.jpg");
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
}


/* =============================================
   TEAM SECTION
   ============================================= */
.team {
    padding: 120px 40px;
    background: var(--light);
}

.team__inner {
    max-width: 1300px;
    margin: 0 auto;
}

.team__header {
    text-align: center;
    margin-bottom: 80px;
}

.team__eyebrow {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 20px;
}

.team__title {
    font-size: clamp(40px, 6vw, 72px);
    font-weight: 900;
    line-height: 1;
    letter-spacing: -2px;
    margin-bottom: 20px;
}

.team__subtitle {
    font-size: 19px;
    color: var(--text-muted);
    max-width: 600px;
    margin: 0 auto;
}

.team__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.team__member {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 20px 60px rgba(0,0,0,0.08);
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
}

.team__member:hover {
    transform: translateY(-10px);
    box-shadow: 0 30px 80px rgba(0,0,0,0.15);
}

.team__member--featured {
    grid-row: span 1;
}

.team__member--featured .team__member-image {
    height: 400px;
}

.team__member-image {
    width: 100%;
    height: 350px;
    overflow: hidden;
    position: relative;
}

.team__member-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.6s ease;
}

.team__member:hover .team__member-image img {
    transform: scale(1.05);
}

.team__member-image-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--primary) 0%, var(--primary-light) 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 120px;
    color: rgba(255,255,255,0.2);
}

.team__member-badge {
    position: absolute;
    top: 20px;
    left: 20px;
    background: var(--accent-coral);
    color: var(--white);
    padding: 6px 14px;
    border-radius: 50px;
    font-size: 11px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team__member-content {
    padding: 30px;
}

.team__member-name {
    font-size: 24px;
    font-weight: 800;
    margin-bottom: 4px;
    color: var(--dark);
}

.team__member-role {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 16px;
}

.team__member-divider {
    width: 40px;
    height: 3px;
    background: linear-gradient(90deg, var(--accent) 0%, var(--accent-coral) 100%);
    border-radius: 2px;
    margin-bottom: 16px;
}

.team__member-bio {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

.team__member-socials {
    display: flex;
    gap: 12px;
    margin-top: 20px;
    padding-top: 20px;
    border-top: 1px solid rgba(0,0,0,0.06);
}

.team__member-social {
    width: 36px;
    height: 36px;
    border-radius: 50%;
    background: var(--light);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: all 0.3s ease;
    text-decoration: none;
}

.team__member-social:hover {
    background: var(--accent-coral);
}

.team__member-social svg {
    width: 16px;
    height: 16px;
    fill: var(--text-muted);
    transition: fill 0.3s ease;
}

.team__member-social:hover svg {
    fill: var(--white);
}

/* =============================================
   VALUES SECTION
   ============================================= */
.values {
    padding: 120px 40px;
    background: var(--white);
}

.values__inner {
    max-width: 1200px;
    margin: 0 auto;
}

.values__header {
    text-align: center;
    margin-bottom: 80px;
}

.values__title {
    font-size: clamp(36px, 5vw, 56px);
    font-weight: 900;
    line-height: 1.1;
    letter-spacing: -2px;
}

.values__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
}

.value-card {
    padding: 40px;
    border-radius: 16px;
    background: var(--light);
    transition: all 0.4s ease;
    border: 2px solid transparent;
}

.value-card:hover {
    background: var(--white);
    border-color: var(--accent);
    transform: translateY(-5px);
    box-shadow: 0 20px 60px rgba(37, 99, 235, 0.15);
}

.value-card__number {
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 64px;
    font-weight: 900;
    line-height: 1;
    margin-bottom: 20px;
    opacity: 0.1;
}

.value-card:hover .value-card__number {
    opacity: 1;
}

.value-card__title {
    font-size: 22px;
    font-weight: 700;
    margin-bottom: 12px;
    color: var(--dark);
}

.value-card__description {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* =============================================
   STORY SECTION
   ============================================= */
.story {
    padding: 120px 40px;
    /*background: linear-gradient(180deg, var(--primary) 0%, #0a1628 100%);*/
    background: url('../images/cc-tech-bg.jpg');
    background-size: cover;
    background-position: center;
    background-repeat: no-repeat;
    color: var(--white);
    position: relative;
    overflow: hidden;
}

.story::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 200px;
    background: linear-gradient(180deg, transparent 0%, rgba(234, 88, 12, 0.1) 100%);
    pointer-events: none;
}

.story__inner {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.story__eyebrow {
    font-size: 13px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    margin-bottom: 30px;
    color: var(--accent-green);
}

.story__title {
    font-size: clamp(32px, 5vw, 52px);
    font-weight: 900;
    line-height: 1.2;
    letter-spacing: -1px;
    margin-bottom: 40px;
}

.story__content {
    font-size: 19px;
    line-height: 1.9;
    opacity: 0.85;
}

.story__content p {
    margin-bottom: 24px;
}

.story__signature {
    margin-top: 50px;
    font-family: "Plus Jakarta Sans", sans-serif;
    font-size: 24px;
    font-weight: 700;
}

.story__signature span {
    display: block;
    font-size: 14px;
    font-weight: 500;
    opacity: 0.6;
    margin-top: 8px;
}

/* =============================================
   ABOUT PAGE RESPONSIVE
   ============================================= */
@media (max-width: 1024px) {
    .mission__grid {
        grid-template-columns: 1fr;
        gap: 60px;
    }

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

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

@media (max-width: 768px) {
    .team__grid {
        grid-template-columns: 1fr;
    }

    .team__member--featured .team__member-image {
        height: 350px;
    }

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

    .mission, .team, .values, .story {
        padding: 80px 24px;
    }
}
