/* ============================================
   Neowork Studios - About Page Styles
   Page-specific styles for about.html
   ============================================ */

/* ============================================
   About Hero
   ============================================ */
.about-hero {
    position: relative;
    padding: 10rem 0 6rem;
    background: var(--gradient-hero);
    overflow: hidden;
}

.about-hero .hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.about-hero .hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.4;
}

.about-hero .hero-gradient-orb:nth-child(1) {
    width: 500px;
    height: 500px;
    background: var(--primary-500);
    top: -200px;
    right: -100px;
}

.about-hero .hero-gradient-orb:nth-child(2) {
    width: 350px;
    height: 350px;
    background: var(--primary-300);
    bottom: -100px;
    left: -100px;
}

.about-hero .hero-grid {
    position: absolute;
    inset: 0;
    background-image: 
        linear-gradient(rgba(255,255,255,0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255,255,255,0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    mask-image: radial-gradient(ellipse at center, black 30%, transparent 80%);
}

.about-hero-content {
    position: relative;
    z-index: 10;
    max-width: 720px;
}

.about-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.about-hero-badge i {
    color: var(--accent-400);
}

.about-hero-title {
    font-size: clamp(2.25rem, 5vw, 3.5rem);
    font-weight: 800;
    color: white;
    line-height: 1.15;
    margin-bottom: 1.5rem;
}

.about-hero-description {
    font-size: 1.2rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.7;
    margin-bottom: 2rem;
}

.about-hero-stats {
    display: flex;
    gap: 3rem;
    margin-top: 2.5rem;
}

.about-hero-stat {
    text-align: left;
}

.about-hero-stat-value {
    font-size: 2.5rem;
    font-weight: 800;
    color: white;
    line-height: 1;
    margin-bottom: 0.25rem;
}

.about-hero-stat-label {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.6);
    font-weight: 500;
}

/* ============================================
   Story Section
   ============================================ */
.about-story-section {
    background: white;
}

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

.about-story-content h2 {
    font-size: clamp(1.75rem, 3.5vw, 2.5rem);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1.5rem;
    line-height: 1.2;
}

.about-story-content p {
    font-size: 1.05rem;
    color: var(--gray-600);
    line-height: 1.8;
    margin-bottom: 1.25rem;
}

.about-story-content p:last-child {
    margin-bottom: 0;
}

.about-story-visual {
    position: relative;
}

.about-story-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.5rem;
}

.about-story-img {
    border-radius: var(--radius-2xl);
    overflow: hidden;
    aspect-ratio: 3 / 4;
}

.about-story-img img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-story-img:nth-child(2) {
    margin-top: 2rem;
}

.about-story-float {
    position: absolute;
    bottom: -1.5rem;
    left: 50%;
    transform: translateX(-50%);
    background: white;
    padding: 1.25rem 2rem;
    border-radius: var(--radius-xl);
    box-shadow: var(--shadow-xl);
    display: flex;
    align-items: center;
    gap: 1rem;
    z-index: 5;
}

.about-story-float i {
    font-size: 1.5rem;
    color: var(--primary-500);
}

.about-story-float span {
    font-weight: 700;
    color: var(--gray-900);
    font-size: 1rem;
}

/* ============================================
   Values Section
   ============================================ */
.about-values-section {
    background: var(--gray-50);
}

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

.about-value-card {
    padding: 2.5rem;
    background: white;
    border-radius: var(--radius-2xl);
    border: 1px solid var(--gray-100);
    text-align: center;
    transition: all var(--transition-base);
}

.about-value-card:hover {
    border-color: var(--primary-200);
    box-shadow: var(--shadow-lg);
    transform: translateY(-4px);
}

.about-value-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: var(--gradient-primary);
    color: white;
    border-radius: var(--radius-lg);
    font-size: 1.5rem;
    margin: 0 auto 1.25rem;
}

.about-value-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    color: var(--gray-900);
    margin-bottom: 0.75rem;
}

.about-value-card p {
    color: var(--gray-600);
    line-height: 1.7;
}

/* ============================================
   Founders Section
   ============================================ */
.about-founders-section {
    background: white;
}

.about-founders-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 3rem;
    max-width: 900px;
    margin: 0 auto;
}

.about-founder-card {
    text-align: center;
    padding: 2.5rem 2rem;
    background: var(--gray-50);
    border-radius: var(--radius-2xl);
    border: 1px solid var(--gray-100);
    transition: all var(--transition-base);
}

.about-founder-card:hover {
    border-color: var(--primary-200);
    box-shadow: var(--shadow-lg);
}

.about-founder-photo {
    width: 160px;
    height: 160px;
    border-radius: 50%;
    overflow: hidden;
    margin: 0 auto 1.5rem;
    border: 4px solid white;
    box-shadow: var(--shadow-lg);
}

.about-founder-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.about-founder-name {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 0.25rem;
}

.about-founder-role {
    font-size: 0.95rem;
    color: var(--primary-500);
    font-weight: 600;
    margin-bottom: 1rem;
}

.about-founder-bio {
    color: var(--gray-600);
    line-height: 1.7;
    font-size: 0.95rem;
}

.about-founder-socials {
    display: flex;
    justify-content: center;
    gap: 0.75rem;
    margin-top: 1.25rem;
}

.about-founder-socials a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    background: white;
    color: var(--gray-500);
    border: 1px solid var(--gray-200);
    transition: all var(--transition-fast);
    font-size: 0.875rem;
}

.about-founder-socials a:hover {
    background: var(--primary-500);
    color: white;
    border-color: var(--primary-500);
}

/* ============================================
   Vision Section
   ============================================ */
.about-vision-section {
    position: relative;
    padding: 6rem 0;
    background: var(--gradient-hero);
    overflow: hidden;
}

.about-vision-section .hero-bg {
    position: absolute;
    inset: 0;
    overflow: hidden;
}

.about-vision-section .hero-gradient-orb {
    position: absolute;
    border-radius: 50%;
    filter: blur(80px);
    opacity: 0.3;
}

.about-vision-section .hero-gradient-orb:nth-child(1) {
    width: 400px;
    height: 400px;
    background: var(--primary-400);
    top: -150px;
    left: -100px;
}

.about-vision-section .hero-gradient-orb:nth-child(2) {
    width: 300px;
    height: 300px;
    background: var(--primary-300);
    bottom: -100px;
    right: -50px;
}

.about-vision-content {
    position: relative;
    z-index: 10;
    max-width: 800px;
    margin: 0 auto;
    text-align: center;
}

.about-vision-label {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: var(--radius-full);
    color: rgba(255, 255, 255, 0.9);
    font-size: 0.875rem;
    font-weight: 500;
    margin-bottom: 1.5rem;
    backdrop-filter: blur(10px);
}

.about-vision-label i {
    color: var(--accent-400);
}

.about-vision-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    color: white;
    line-height: 1.2;
    margin-bottom: 1.5rem;
}

.about-vision-text {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.75);
    line-height: 1.8;
}

/* ============================================
   CTA Section (reuse from services)
   ============================================ */
.about-cta-section {
    padding: 6rem 0;
    text-align: center;
    background: var(--gray-50);
}

.about-cta-title {
    font-size: clamp(1.75rem, 4vw, 2.75rem);
    font-weight: 800;
    color: var(--gray-900);
    margin-bottom: 1rem;
}

.about-cta-text {
    font-size: 1.1rem;
    color: var(--gray-600);
    max-width: 600px;
    margin: 0 auto 2rem;
    line-height: 1.7;
}

.about-cta-actions {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 1rem;
}

/* ============================================
   Responsive
   ============================================ */
@media (max-width: 1024px) {
    .about-story-grid {
        grid-template-columns: 1fr;
        gap: 3rem;
    }

    .about-story-visual {
        max-width: 500px;
        margin: 0 auto;
    }

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

@media (max-width: 768px) {
    .about-hero {
        padding: 8rem 0 4rem;
    }

    .about-hero-description {
        font-size: 1.05rem;
    }

    .about-hero-stats {
        flex-wrap: wrap;
        gap: 1.5rem;
    }

    .about-hero-stat-value {
        font-size: 2rem;
    }

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

    .about-value-card {
        padding: 2rem 1.5rem;
    }

    .about-founders-grid {
        grid-template-columns: 1fr;
        max-width: 480px;
    }

    .about-founder-card {
        padding: 2rem 1.5rem;
    }

    .about-story-grid {
        gap: 2rem;
    }

    .about-story-images {
        gap: 1rem;
    }

    .about-story-float {
        position: relative;
        bottom: auto;
        left: auto;
        transform: none;
        margin-top: 1.5rem;
        justify-content: center;
        white-space: normal;
        text-align: center;
        padding: 1rem 1.5rem;
    }

    .about-vision-section {
        padding: 4rem 0;
    }

    .about-vision-text {
        font-size: 1rem;
    }

    .about-cta-section {
        padding: 4rem 0;
    }

    .about-cta-title {
        font-size: 1.75rem;
    }

    .about-cta-text {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .about-hero {
        padding: 7rem 0 3rem;
    }

    .about-hero-stats {
        flex-direction: column;
        gap: 1rem;
        align-items: flex-start;
    }

    .about-hero-stat-value {
        font-size: 1.75rem;
    }

    .about-hero-description {
        font-size: 1rem;
    }

    .about-story-content h2 {
        font-size: 1.5rem;
    }

    .about-story-content p {
        font-size: 0.95rem;
    }

    .about-story-images {
        grid-template-columns: 1fr;
        gap: 1rem;
    }

    .about-story-img:nth-child(2) {
        margin-top: 0;
    }

    .about-story-img {
        aspect-ratio: 4 / 3;
    }

    .about-story-float {
        padding: 0.875rem 1.25rem;
        font-size: 0.875rem;
    }

    .about-story-float i {
        font-size: 1.25rem;
    }

    .about-value-card {
        padding: 1.5rem 1.25rem;
    }

    .about-value-card h3 {
        font-size: 1.1rem;
    }

    .about-value-card p {
        font-size: 0.9rem;
    }

    .about-founder-photo {
        width: 120px;
        height: 120px;
    }

    .about-founder-name {
        font-size: 1.25rem;
    }

    .about-founder-role {
        font-size: 0.85rem;
    }

    .about-founder-bio {
        font-size: 0.875rem;
    }

    .about-founder-card {
        padding: 1.5rem 1.25rem;
    }

    .about-vision-title {
        font-size: 1.5rem;
    }

    .about-vision-text {
        font-size: 0.95rem;
        line-height: 1.7;
    }

    .about-cta-section {
        padding: 3rem 0;
    }

    .about-cta-actions {
        flex-direction: column;
        align-items: center;
    }

    .about-cta-actions .btn {
        width: 100%;
    }
}
