/* About Page Hero Section */
.hero {
    min-height: 80vh;
    background: linear-gradient(rgba(0, 0, 0, 0.7), rgba(0, 0, 0, 0.7)), 
                url('../images/hero-about.jpg') no-repeat center center/cover;
    display: flex;
    align-items: center;
    justify-content: center;
    text-align: center;
    position: relative;
    color: #fff;
    padding: 100px 20px;
}

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

.hero-content {
    position: relative;
    z-index: 2;
    max-width: 1200px;
    margin: 0 auto;
}

.hero-tagline {
    font-size: 14px;
    font-weight: 600;
    letter-spacing: 3px;
    text-transform: uppercase;
    color: #FF4545;
    margin-bottom: 20px;
}

.hero-title {
    font-size: clamp(36px, 6vw, 72px);
    font-weight: 700;
    line-height: 1.1;
    max-width: 900px;
    margin: 0 auto 20px;
    color: #fff;
}

.hero-title .highlight {
    color: #FF4545;
}

.hero-subtitle {
    max-width: 700px;
    margin: 0 auto 30px;
    font-size: clamp(16px, 2vw, 20px);
    font-weight: 300;
    line-height: 1.6;
    color: rgba(255, 255, 255, 0.9);
}

.hero-scroll {
    position: absolute;
    bottom: 40px;
    left: 50%;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    color: rgba(255, 255, 255, 0.7);
    font-size: 12px;
    text-transform: uppercase;
    letter-spacing: 2px;
    z-index: 2;
}

/* Button Styles */
.hero-buttons {
    display: flex;
    gap: 20px;
    justify-content: center;
    margin-top: 40px;
    flex-wrap: wrap;
}

.about-btn {
    padding: 16px 40px;
    font-size: 16px;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    border-radius: 50px;
    transition: all 0.3s ease;
    text-decoration: none;
    display: inline-block;
    position: relative;
    overflow: hidden;
    z-index: 1;
    border: 2px solid;
}

.about-btn::before {
    content: '';
    position: absolute;
    top: 0;
    left: -100%;
    width: 100%;
    height: 100%;
    transition: left 0.3s ease;
    z-index: -1;
}

.about-btn-primary {
    background: #FF4545;
    color: white;
    border-color: #FF4545;
}

.about-btn-primary::before {
    background: #ff2b2b;
}

.about-btn-secondary {
    background: transparent;
    color: white;
    border-color: white;
}

.about-btn-secondary::before {
    background: rgba(255, 255, 255, 0.1);
}

.about-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.3);
}

.about-btn:hover::before {
    left: 0;
}

.about-btn-primary:hover {
    border-color: #ff2b2b;
}

/* About Page Bento Grid Layout */
.about-page { 
    padding: 150px 0 100px;
    background: #121212;
    color: #F2F2F2;
    overflow-x: hidden;
}

.about-section {
    padding: 0;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
    padding: 0 20px;
}

.section-header h1 {
    font-size: clamp(32px, 5vw, 56px);
    font-weight: 700;
    color: #fff;
    margin-bottom: 15px;
}

.section-header p {
    font-size: 18px;
    color: #aaa;
    font-weight: 300;
}

/* Bento Grid Layout */
.bento-grid {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    gap: 24px;
    max-width: 1400px;
    margin: 0 auto 60px;
    padding: 0 20px;
}

.bento-item {
    background: rgba(255, 255, 255, 0.02);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 16px;
    padding: 40px;
    transition: all 0.3s ease;
    position: relative;
    overflow: hidden;
}

.bento-item:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 69, 69, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.bento-content h2 {
    font-size: 28px;
    color: #FF4545;
    margin-bottom: 15px;
    position: relative;
    display: inline-block;
}

.bento-subtitle {
    color: #aaa;
    font-size: 18px;
    margin-bottom: 25px;
    display: block;
}

/* Team Section */
.bento-team {
    grid-column: 1 / 7;
}

.bento-team-member {
    grid-column: span 4;
    padding: 0;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.team-photo {
    width: 100%;
    height: 250px;
    overflow: hidden;
}

.team-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.bento-team-member:hover .team-photo img {
    transform: scale(1.05);
}

.team-details {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.team-details h3 {
    font-size: 20px;
    margin: 0 0 5px;
    color: #fff;
}

.team-role {
    color: #FF4545;
    font-size: 14px;
    margin: 0 0 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-bio {
    color: #bbb;
    font-size: 15px;
    line-height: 1.6;
    margin: 0;
}

/* Careers Section */
.bento-careers-intro {
    grid-column: 1 / 8;
}

.bento-jobs {
    grid-column: 8 / 13;
}

.job-list {
    list-style: none;
    padding: 0;
    margin: 20px 0;
}

.job-list li {
    padding: 12px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
    color: #ddd;
    position: relative;
    padding-left: 20px;
}

.job-list li:before {
    content: '→';
    color: #FF4545;
    position: absolute;
    left: 0;
}

.job-cta {
    margin: 25px 0 0;
    color: #aaa;
    font-style: italic;
}

/* Press Section */
.bento-press-intro {
    grid-column: 1 / 6;
}

.bento-press-logos {
    grid-column: 6 / 13;
}

.press-logos {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
    margin: 20px 0;
}

.press-logo {
    background: rgba(255, 255, 255, 0.1);
    padding: 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 8px;
    transition: all 0.3s ease;
    border: 1px solid rgba(255, 255, 255, 0.1);
    height: 80px;
    overflow: hidden;
}

.press-logo svg {
    width: 100%;
    height: 100%;
    max-width: 120px;
    max-height: 40px;
    transition: all 0.3s ease;
}

.press-logo:hover {
    background: rgba(255, 255, 255, 0.15);
    transform: translateY(-3px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.2);
}

.press-logo:hover svg {
    transform: scale(1.05);
}

.press-contact {
    margin: 25px 0 0;
    color: #aaa;
}

.press-contact a {
    color: #FF4545;
    text-decoration: none;
    transition: all 0.3s ease;
}

.press-contact a:hover {
    color: #ff2b2b;
    text-decoration: underline;
}



/* Individual Bento Items - First Grid */
.bento-story {
    grid-column: 1 / 7;
}

.bento-approach {
    grid-column: 7 / 13;
}

.bento-values {
    grid-column: 1 / 9;
}

.bento-careers {
    grid-column: 9 / 13;
}

.bento-content p {
    color: #ddd;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 16px;
}

.team-about {
    color: #ddd;
    line-height: 1.8;
    margin-bottom: 15px;
    font-size: 16px;
}

/* Stats */
.approach-stats {
    display: flex;
    gap: 30px;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
}

.stat {
    text-align: center;
}

.stat-number {
    display: block;
    font-size: 36px;
    font-weight: 700;
    color: #FF4545;
    line-height: 1;
    margin-bottom: 5px;
}

.stat-label {
    font-size: 14px;
    color: #aaa;
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* Values Grid */
.values-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 20px;
    margin-top: 20px;
}

.value-item {
    background: rgba(255, 255, 255, 0.03);
    padding: 20px;
    border-radius: 10px;
    transition: all 0.3s ease;
}

.value-item:hover {
    transform: translateY(-3px);
    background: rgba(255, 255, 255, 0.05);
}

.value-item h3 {
    color: #fff;
    font-size: 18px;
    margin-bottom: 10px;
    position: relative;
    padding-left: 15px;
}

.value-item h3:before {
    content: '';
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    width: 6px;
    height: 6px;
    background: #FF4545;
    border-radius: 50%;
}

.value-item p {
    font-size: 14px;
    margin: 0;
    color: #bbb;
    line-height: 1.6;
}

/* Careers */
.job-list {
    list-style: none;
    padding: 0;
    margin: 20px 0 30px;
}

.job-list li {
    padding: 10px 0 10px 25px;
    position: relative;
    color: #ddd;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.job-list li:before {
    content: '→';
    color: #FF4545;
    position: absolute;
    left: 0;
}

.cta-button {
    display: inline-block;
    background: #FF4545;
    color: white;
    padding: 12px 30px;
    border-radius: 30px;
    text-decoration: none;
    font-weight: 600;
    transition: all 0.3s ease;
    text-transform: uppercase;
    font-size: 14px;
    letter-spacing: 1px;
}

.cta-button:hover {
    background: #ff2a2a;
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(255, 69, 69, 0.3);
}

/* Responsive */
@media (max-width: 1200px) {
    .bento-grid {
        grid-template-columns: 1fr 1fr;
        max-width: 1000px;
    }
    
    .bento-story, .bento-approach, .bento-values, .bento-careers {
        grid-column: auto !important;
        grid-row: auto !important;
    }
}

@media (max-width: 768px) {
    .bento-grid {
        grid-template-columns: 1fr;
        padding: 0 20px;
    }
    
    .values-grid {
        grid-template-columns: 1fr;
    }
    
    .approach-stats {
        flex-direction: column;
        gap: 20px;
    }
    
    .bento-item {
        padding: 30px 25px;
    }
    
    .bento-content h2 {
        font-size: 24px;
    }
    
    .stat-number {
        font-size: 28px;
    }
}

/* Team Section */
.team-section {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.team-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-top: 40px;
}

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

.team-member:hover {
    transform: translateY(-5px);
    border-color: rgba(255, 69, 69, 0.3);
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

.team-photo {
    width: 150px;
    height: 150px;
    border-radius: 50%;
    margin: 0 auto 20px;
    overflow: hidden;
    border: 3px solid rgba(255, 255, 255, 0.1);
}

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

.team-member h3 {
    color: #fff;
    font-size: 20px;
    margin-bottom: 5px;
}

.team-role {
    color: #FF4545;
    font-size: 14px;
    margin-bottom: 15px;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.team-bio {
    color: #bbb;
    font-size: 14px;
    line-height: 1.6;
    margin-bottom: 0;
}
