/* =====================================================
   ABOUT PAGE STYLES - GreyBox LLC
   Consistent with homepage design system
   ===================================================== */

:root {
    --neo-bg: #0a0a0a;
    --neo-surface: #101114;
    --neo-text: #eaeaea;
    --neo-muted: #b9bcc6;
    --neo-orange: #fc7a10;
    --neo-blue: #4fc3f7;
    --neo-glow-o: rgba(252,122,16,.35);
    --neo-glow-b: rgba(79,195,247,.35);
    --neo-grid: rgba(255,255,255,.055);
}

/* ===================== PAGE WRAPPER ===================== */
.about-page {
    position: relative;
    margin: 0 auto;
    width: 100%;
    min-width: 300px;
    background-color: var(--neo-bg);
    overflow: hidden;
}

/* ===================== HERO SECTION ===================== */
.about-hero {
    position: relative;
    padding: 180px 0 120px;
    min-height: 600px;
    display: flex;
    align-items: center;
    overflow: hidden;
}

.about-hero .hero-background {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #0a0a0a 0%, #1a1a2e 50%, #0a0a0a 100%);
    z-index: 0;
}

.about-hero .hero-background::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: 
        radial-gradient(circle at 20% 30%, rgba(252,122,16,0.08) 0%, transparent 50%),
        radial-gradient(circle at 80% 70%, rgba(79,195,247,0.08) 0%, transparent 50%);
    animation: pulseGlow 8s ease-in-out infinite;
}

@keyframes pulseGlow {
    0%, 100% { opacity: 0.5; }
    50% { opacity: 0.8; }
}

.about-hero .hero-overlay {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: linear-gradient(180deg, transparent 0%, rgba(10,10,10,0.8) 100%);
    z-index: 1;
}

.about-hero .container {
    position: relative;
    z-index: 2;
}

.about-hero .hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.hero-eyebrow, .section-eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--neo-orange);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.hero-eyebrow .icon-img, .section-eyebrow .icon-img {
    width: 18px;
    height: 18px;
}

.about-hero .hero-title {
    font-size: 64px;
    font-weight: 700;
    line-height: 1.2;
    color: var(--neo-text);
    margin-bottom: 24px;
}

.about-hero .hero-title .highlight {
    color: var(--neo-orange);
    position: relative;
}

.about-hero .hero-description {
    font-size: 20px;
    line-height: 1.6;
    color: var(--neo-muted);
    max-width: 700px;
    margin: 0 auto;
}

.about-hero .hero-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 40px;
    margin-top: 80px;
    max-width: 1000px;
    margin-left: auto;
    margin-right: auto;
}

.about-hero .stat-item {
    text-align: center;
    padding: 30px 20px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.about-hero .stat-item:hover {
    background: rgba(252,122,16,0.05);
    border-color: rgba(252,122,16,0.2);
    transform: translateY(-5px);
}

.about-hero .stat-number {
    display: block;
    font-size: 48px;
    font-weight: 700;
    color: var(--neo-orange);
    margin-bottom: 12px;
}

.about-hero .stat-label {
    display: block;
    font-size: 14px;
    font-weight: 500;
    color: var(--neo-muted);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* ===================== MISSION SECTION ===================== */
.mission-section {
    position: relative;
    padding: 120px 0;
    background: var(--neo-bg);
}

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

.mission-content .section-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--neo-text);
    margin-bottom: 30px;
}

.mission-content .section-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--neo-muted);
    margin-bottom: 20px;
}

.mission-visual {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.mission-visual .visual-card {
    padding: 30px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.mission-visual .visual-card:hover {
    background: rgba(252,122,16,0.05);
    border-color: rgba(252,122,16,0.2);
    transform: translateX(10px);
}

.mission-visual .card-icon {
    font-size: 40px;
    margin-bottom: 16px;
}

.mission-visual .card-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--neo-text);
    margin-bottom: 12px;
}

.mission-visual .card-text {
    font-size: 16px;
    line-height: 1.6;
    color: var(--neo-muted);
}

/* ===================== STORY SECTION ===================== */
.story-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, var(--neo-bg) 0%, #0f0f0f 100%);
}

.story-wrapper {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
}

.story-wrapper .section-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--neo-text);
    margin-bottom: 60px;
}

.story-content {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    margin-top: 60px;
}

.story-block {
    display: grid;
    grid-template-columns: 120px 1fr;
    gap: 40px;
    align-items: start;
    text-align: left;
    padding: 40px;
    background: rgba(255,255,255,0.02);
    border-left: 3px solid var(--neo-orange);
    border-radius: 12px;
    transition: all 0.3s ease;
}

.story-block:hover {
    background: rgba(252,122,16,0.05);
    transform: translateX(10px);
}

.story-year {
    font-size: 32px;
    font-weight: 700;
    color: var(--neo-orange);
    text-align: center;
}

.story-text h3 {
    font-size: 24px;
    font-weight: 600;
    color: var(--neo-text);
    margin-bottom: 12px;
}

.story-text p {
    font-size: 16px;
    line-height: 1.8;
    color: var(--neo-muted);
}

/* ===================== VALUES SECTION ===================== */
.values-section {
    position: relative;
    padding: 120px 0;
    background: var(--neo-bg);
}

.values-section .anim-icons {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    pointer-events: none;
}

.values-section .anim-icons .image-1 {
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    opacity: 0.3;
}

.values-section .sec-title {
    text-align: center;
    margin-bottom: 80px;
}

.values-section .sub-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--neo-orange);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.values-section .title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--neo-text);
}

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

.value-card {
    padding: 40px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.value-card:hover {
    background: rgba(252,122,16,0.05);
    border-color: rgba(252,122,16,0.2);
    transform: translateY(-10px);
}

.value-icon {
    font-size: 48px;
    margin-bottom: 20px;
}

.value-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--neo-text);
    margin-bottom: 16px;
}

.value-text {
    font-size: 16px;
    line-height: 1.8;
    color: var(--neo-muted);
}

/* ===================== EXPERTISE SECTION ===================== */
.expertise-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, var(--neo-bg) 0%, #0f0f0f 100%);
}

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

.expertise-header .section-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--neo-text);
}

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

.expertise-category {
    padding: 40px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.expertise-category:hover {
    background: rgba(252,122,16,0.05);
    border-color: rgba(252,122,16,0.2);
}

.category-title {
    font-size: 24px;
    font-weight: 600;
    color: var(--neo-orange);
    margin-bottom: 24px;
    padding-bottom: 16px;
    border-bottom: 2px solid rgba(252,122,16,0.2);
}

.tech-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.tech-list li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--neo-muted);
    padding: 10px 0;
    border-bottom: 1px solid rgba(255,255,255,0.05);
}

.tech-list li:last-child {
    border-bottom: none;
}

.tech-icon {
    color: var(--neo-orange);
    font-weight: 700;
}

/* ===================== TEAM SECTION ===================== */
.team-section {
    position: relative;
    padding: 120px 0;
    background: var(--neo-bg);
}

.team-section .sec-title {
    text-align: center;
    margin-bottom: 80px;
}

.team-section .sub-title {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 14px;
    font-weight: 600;
    color: var(--neo-orange);
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 20px;
}

.team-section .title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--neo-text);
    margin-bottom: 20px;
}

.team-section .title-text {
    font-size: 18px;
    line-height: 1.8;
    color: var(--neo-muted);
    max-width: 800px;
    margin: 0 auto;
}

.team-highlights {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 40px;
    max-width: 1000px;
    margin: 0 auto;
}

.highlight-item {
    display: flex;
    gap: 20px;
    padding: 30px;
    background: rgba(255,255,255,0.02);
    border: 1px solid rgba(255,255,255,0.05);
    border-radius: 16px;
    transition: all 0.3s ease;
}

.highlight-item:hover {
    background: rgba(252,122,16,0.05);
    border-color: rgba(252,122,16,0.2);
    transform: translateY(-5px);
}

.highlight-icon {
    font-size: 40px;
    flex-shrink: 0;
}

.highlight-content h3 {
    font-size: 20px;
    font-weight: 600;
    color: var(--neo-text);
    margin-bottom: 8px;
}

.highlight-content p {
    font-size: 14px;
    line-height: 1.6;
    color: var(--neo-muted);
}

/* ===================== COMMITMENT SECTION ===================== */
.commitment-section {
    position: relative;
    padding: 120px 0;
    background: linear-gradient(180deg, var(--neo-bg) 0%, #0f0f0f 100%);
}

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

.commitment-content .section-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--neo-text);
    margin-bottom: 30px;
}

.commitment-text p {
    font-size: 18px;
    line-height: 1.8;
    color: var(--neo-muted);
    margin-bottom: 24px;
}

.commitment-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.commitment-list li {
    display: flex;
    align-items: start;
    gap: 12px;
    font-size: 16px;
    line-height: 1.8;
    color: var(--neo-muted);
    margin-bottom: 16px;
}

.list-icon {
    color: var(--neo-orange);
    font-weight: 700;
    flex-shrink: 0;
    margin-top: 2px;
}

.commitment-list strong {
    color: var(--neo-text);
}

.commitment-visual {
    display: grid;
    grid-template-columns: 1fr;
    gap: 20px;
}

.visual-stat {
    padding: 40px;
    background: rgba(252,122,16,0.05);
    border: 2px solid rgba(252,122,16,0.2);
    border-radius: 16px;
    text-align: center;
    transition: all 0.3s ease;
}

.visual-stat:hover {
    background: rgba(252,122,16,0.1);
    border-color: rgba(252,122,16,0.4);
    transform: scale(1.05);
}

.visual-stat .stat-value {
    font-size: 56px;
    font-weight: 700;
    color: var(--neo-orange);
    margin-bottom: 12px;
}

.visual-stat .stat-label {
    font-size: 16px;
    font-weight: 500;
    color: var(--neo-text);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ===================== CTA SECTION ===================== */
.cta-section-two {
    position: relative;
    padding: 120px 0;
    background: var(--neo-bg);
    overflow: hidden;
}

.cta-section-two .anim-icons {
    position: absolute;
    left: 0;
    top: 0;
    right: 0;
    height: 100%;
    width: 100%;
    pointer-events: none;
}

.cta-section-two .anim-icons .image-1 {
    position: absolute;
    top: 20%;
    left: 5%;
    opacity: 0.3;
}

.cta-section-two .anim-icons .image-2 {
    position: absolute;
    bottom: 10%;
    right: 5%;
    opacity: 0.2;
}

.cta-section-two .outer-box {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.cta-section-two .sec-title {
    margin-bottom: 40px;
}

.cta-section-two .title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.3;
    color: var(--neo-text);
}

.cta-section-two .btn-box {
    margin-top: 40px;
}

.cta-section-two .btn-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 40px;
    font-size: 18px;
    font-weight: 600;
    color: #fff;
    background: var(--neo-orange);
    border-radius: 50px;
    text-decoration: none;
    transition: all 0.3s ease;
    box-shadow: 0 4px 20px rgba(252,122,16,0.3);
}

.cta-section-two .btn-link:hover {
    background: #ff8c2e;
    transform: translateY(-3px);
    box-shadow: 0 6px 30px rgba(252,122,16,0.5);
}

.cta-section-two .btn-link .icon-img {
    width: 20px;
    height: 20px;
}

/* ===================== UTILITY CLASSES ===================== */
.color1 {
    color: var(--neo-orange);
}

/* ===================== RESPONSIVE DESIGN ===================== */
@media (max-width: 1200px) {
    .about-hero .hero-title {
        font-size: 52px;
    }
    
    .mission-grid,
    .commitment-wrapper {
        gap: 60px;
    }
    
    .expertise-grid,
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 991px) {
    .about-hero {
        padding: 140px 0 100px;
    }
    
    .about-hero .hero-title {
        font-size: 42px;
    }
    
    .about-hero .hero-stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .mission-grid,
    .commitment-wrapper {
        grid-template-columns: 1fr;
        gap: 50px;
    }
    
    .story-block {
        grid-template-columns: 80px 1fr;
        gap: 30px;
        padding: 30px;
    }
    
    .story-year {
        font-size: 24px;
    }
    
    .values-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 25px;
    }
    
    .expertise-grid {
        grid-template-columns: 1fr;
    }
    
    .team-highlights {
        grid-template-columns: 1fr;
    }
    
    .section-title,
    .mission-content .section-title,
    .commitment-content .section-title {
        font-size: 38px;
    }
}

@media (max-width: 767px) {
    .about-hero {
        padding: 120px 0 80px;
    }
    
    .about-hero .hero-title {
        font-size: 32px;
    }
    
    .about-hero .hero-description {
        font-size: 16px;
    }
    
    .about-hero .hero-stats {
        grid-template-columns: 1fr;
        gap: 20px;
        margin-top: 50px;
    }
    
    .about-hero .stat-number {
        font-size: 36px;
    }
    
    .mission-section,
    .story-section,
    .values-section,
    .expertise-section,
    .team-section,
    .commitment-section,
    .cta-section-two {
        padding: 80px 0;
    }
    
    .section-title,
    .mission-content .section-title,
    .commitment-content .section-title,
    .story-wrapper .section-title,
    .expertise-header .section-title {
        font-size: 32px;
    }
    
    .values-section .title,
    .team-section .title,
    .cta-section-two .title {
        font-size: 32px;
    }
    
    .story-block {
        grid-template-columns: 1fr;
        gap: 20px;
        padding: 25px;
    }
    
    .story-year {
        font-size: 20px;
        text-align: left;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .value-card {
        padding: 30px;
    }
    
    .expertise-category {
        padding: 30px;
    }
    
    .commitment-visual {
        gap: 15px;
    }
    
    .visual-stat {
        padding: 30px;
    }
    
    .visual-stat .stat-value {
        font-size: 42px;
    }
    
    .cta-section-two .btn-link {
        padding: 16px 32px;
        font-size: 16px;
    }
}

@media (max-width: 575px) {
    .about-hero .hero-title {
        font-size: 28px;
    }
    
    .section-title,
    .mission-content .section-title,
    .commitment-content .section-title,
    .story-wrapper .section-title,
    .expertise-header .section-title,
    .values-section .title,
    .team-section .title,
    .cta-section-two .title {
        font-size: 26px;
    }
    
    .hero-eyebrow,
    .section-eyebrow {
        font-size: 12px;
    }
    
    .value-icon,
    .highlight-icon {
        font-size: 36px;
    }
}