/* ==========================================================================
   ABOUT PAGE - SPECIFIC STYLES
   Common styles are in css/style.css
   Hero section uses .service-hero-v2 from style.css
   ========================================================================== */

/* ==========================================================================
   STORY SECTION
   ========================================================================== */

.about-story-section {
    padding: 6rem 0;
    background: #fff;
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 5rem;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
}

.story-label {
    display: inline-block;
    font-size: 0.8125rem;
    font-weight: 600;
    color: var(--color-secondary-teal);
    text-transform: uppercase;
    letter-spacing: 0.12em;
    margin-bottom: 1rem;
}

.story-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--color-text-primary);
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.story-text {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.story-stats {
    display: flex;
    gap: 2.5rem;
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 1px solid var(--color-border-light);
}

.story-stat {
    display: flex;
    flex-direction: column;
}

.story-stat-number {
    font-size: 2rem;
    font-weight: 700;
    background: linear-gradient(135deg, var(--color-secondary-teal) 0, var(--color-accent-purple) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
    line-height: 1.2;
}

.story-stat-label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    margin-top: 0.25rem;
}

.story-visual {
    position: relative;
}

.story-image-wrapper {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.15);
}

.story-image-wrapper img {
    width: 100%;
    height: auto;
    display: block;
}

.story-image-accent {
    position: absolute;
    bottom: -20px;
    right: -20px;
    width: 120px;
    height: 120px;
    background: linear-gradient(135deg, var(--color-secondary-teal) 0, var(--color-accent-purple) 100%);
    border-radius: 16px;
    z-index: -1;
    opacity: 0.3;
}

@media (max-width: 1024px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .story-visual {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {
    .about-story-section {
        padding: 4rem 0;
    }

    .story-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .story-stat {
        flex: 1 1 45%;
    }
}

/* ==========================================================================
   VALUES SECTION
   ========================================================================== */

.values-section {
    padding: 6rem 0;
    background: var(--color-bg-light);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.value-card {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--color-border-light);
    text-align: center;
    transition: all 0.3s ease;
}

.value-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.08);
    border-color: rgba(45, 212, 191, 0.2);
}

.value-card-icon {
    width: 56px;
    height: 56px;
    margin: 0 auto 1.25rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(45, 212, 191, 0.1), rgba(139, 92, 246, 0.1));
    border-radius: 14px;
}

.value-card-icon svg {
    width: 28px;
    height: 28px;
    stroke: var(--color-secondary-teal);
}

.value-card-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--color-text-primary);
    margin-bottom: 0.75rem;
}

.value-card-description {
    font-size: 0.9375rem;
    color: var(--color-text-secondary);
    line-height: 1.6;
}

@media (max-width: 1024px) {
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .values-section {
        padding: 4rem 0;
    }

    .values-grid {
        grid-template-columns: 1fr;
    }

    .value-card {
        padding: 1.75rem;
    }
}

/* ==========================================================================
   TEAM SECTION
   ========================================================================== */

.team-section {
    padding: 6rem 0;
    background: #fff;
}

.team-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.team-stat-card {
    text-align: center;
    padding: 2rem 1.5rem;
    background: var(--color-bg-light);
    border-radius: 16px;
    border: 1px solid var(--color-border-light);
    transition: all 0.3s ease;
}

.team-stat-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.06);
}

.team-stat-icon {
    width: 48px;
    height: 48px;
    margin: 0 auto 1rem;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--color-secondary-teal), var(--color-accent-purple));
    border-radius: 12px;
}

.team-stat-icon svg {
    width: 24px;
    height: 24px;
    stroke: #fff;
}

.team-stat-number {
    display: block;
    font-size: 1.75rem;
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 0.25rem;
}

.team-stat-label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
}

@media (max-width: 1024px) {
    .team-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 640px) {
    .team-section {
        padding: 4rem 0;
    }

    .team-stats-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
    }

    .team-stat-card {
        padding: 1.5rem 1rem;
    }
}

/* ==========================================================================
   TESTIMONIALS SECTION
   ========================================================================== */

.testimonials-section {
    padding: 5rem 0;
    background: linear-gradient(180deg, var(--color-bg-white) 0, var(--color-bg-light) 100%);
}

.testimonials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
    max-width: 1200px;
    margin: 0 auto;
}

.testimonial-card {
    background: #fff;
    padding: 2rem;
    border-radius: 16px;
    border: 1px solid var(--color-border-light);
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    transition: all 0.3s ease;
}

.testimonial-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 30px rgba(0, 0, 0, 0.1);
}

.testimonial-stars {
    display: flex;
    gap: 0.25rem;
    margin-bottom: 1rem;
}

.testimonial-stars svg {
    width: 18px;
    height: 18px;
    color: #f59e0b;
}

.testimonial-text {
    font-size: 1rem;
    color: var(--color-text-secondary);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-style: italic;
}

.testimonial-author {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.testimonial-author img {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    object-fit: cover;
}

.testimonial-author-info strong {
    display: block;
    font-size: 0.9375rem;
    color: var(--color-text-primary);
    margin-bottom: 0.125rem;
}

.testimonial-author-info span {
    font-size: 0.8125rem;
    color: var(--color-text-muted);
}

@media (max-width: 768px) {
    .testimonials-grid {
        grid-template-columns: 1fr;
    }
}

/* ==========================================================================
   PARTNERS SECTION
   ========================================================================== */

.partners-section {
    padding: 4rem 0;
    background: var(--color-bg-light);
    text-align: center;
}

.partners-label {
    font-size: 0.875rem;
    color: var(--color-text-muted);
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 2rem;
}

.partners-logos {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 3rem;
    max-width: 1000px;
    margin: 0 auto;
}

.partner-logo {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--color-text-muted);
    opacity: 0.6;
    transition: opacity 0.3s ease;
}

.partner-logo:hover {
    opacity: 1;
}

@media (max-width: 768px) {
    .partners-logos {
        gap: 2rem;
    }

    .partner-logo {
        font-size: 1rem;
    }
}

/* ==========================================================================
   FINAL CTA SECTION
   ========================================================================== */

.final-cta-section {
    padding: 6rem 0;
    background: linear-gradient(135deg, #0a0e1a 0, #0f172a 50%, #1e293b 100%);
    text-align: center;
    position: relative;
    overflow: hidden;
}

.final-cta-section::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: radial-gradient(ellipse at 50% 50%, rgba(45, 212, 191, 0.08) 0, transparent 60%);
    pointer-events: none;
}

.cta-container {
    position: relative;
    z-index: 1;
    max-width: 700px;
    margin: 0 auto;
    padding: 0 2rem;
}

.cta-title {
    font-size: clamp(1.75rem, 4vw, 2.5rem);
    font-weight: 700;
    color: #fff;
    margin-bottom: 1rem;
}

.cta-subtitle {
    font-size: 1.0625rem;
    color: rgba(255, 255, 255, 0.7);
    margin-bottom: 2.5rem;
    line-height: 1.6;
}

.cta-buttons {
    display: flex;
    gap: 1rem;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.cta-note {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.5);
    margin-top: 1.5rem;
}

@media (max-width: 768px) {
    .final-cta-section {
        padding: 4rem 0;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-buttons .btn {
        width: 100%;
        max-width: 280px;
    }
}

/* ==========================================================================
   COMMON UTILITIES
   ========================================================================== */

.section-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 4rem 3rem;
}

.section-header {
    text-align: center;
    margin-bottom: 2.5rem;
}

.section-title {
    font-size: clamp(1.75rem, 3vw, 2.5rem);
    font-weight: 700;
    color: var(--color-text-primary);
    margin-bottom: 0.75rem;
}

.section-subtitle {
    font-size: 1.0625rem;
    color: var(--color-text-secondary);
}

@media (max-width: 1024px) {
    .section-container {
        padding: 3rem 2rem;
    }
}

@media (max-width: 768px) {
    .section-container {
        padding: 3rem 1.5rem;
    }
}