/* Hero Section for About Page */
.hero-wrapper {
    position: relative;
    min-height: 90vh;
    padding-left: max(var(--page-padding), calc((100vw - var(--page-max-width)) / 2));
    padding-right: max(var(--page-padding), calc((100vw - var(--page-max-width)) / 2));
}

.hero {
    position: relative;
    z-index: 5;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 24px;
    max-width: var(--page-max-width);
    margin: 0 auto;
    height: calc(123vh - 180px);
}

.hero-left {
    max-width: 480px;
}

.hero-left .tagline {
    font-size: 0.7rem;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.9);
    letter-spacing: 3px;
    margin-bottom: 18px;
    text-transform: uppercase;
}

.hero-left h1 {
    font-size: 3.2rem;
    font-weight: 700;
    line-height: 1.05;
    margin-bottom: 32px;
    letter-spacing: -0.5px;
}

.cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    color: var(--primary);
    text-decoration: none;
    font-weight: 700;
    font-size: 1rem;
    border-bottom: 2px solid var(--primary);
    padding-bottom: 4px;
    transition: opacity 0.2s;
}

.cta:hover {
    opacity: 0.9;
}

/* Robot Styling */
.hero-center {
    position: absolute;
    left: 50%;
    top: 55%;
    transform: translate(-50%, -50%);
    width: 500px;
    z-index: 2;
}

.robot-gradient-bg {
    position: absolute;
    left: 50%;
    top: 50%;
    transform: translate(-50%, -50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(212, 255, 0, 0.15) 0%, rgba(212, 255, 0, 0.05) 40%, transparent 70%);
    border-radius: 50%;
    animation: gradientPulse 4s ease-in-out infinite;
    z-index: 1;
}

.robot-image {
    width: 107%;
    filter: drop-shadow(0 0 50px rgba(212, 255, 0, 0.1));
    position: relative;
    z-index: 2;
   
}

@keyframes gradientPulse {
    0%, 100% {
        transform: translate(-50%, -50%) scale(1);
        opacity: 0.8;
    }
    50% {
        transform: translate(-50%, -50%) scale(1.1);
        opacity: 1;
    }
}

@keyframes floatParallax {
    0%, 100% {
        transform: translateY(0px) translateX(0px);
    }
    25% {
        transform: translateY(-15px) translateX(5px);
    }
    50% {
        transform: translateY(-10px) translateX(-5px);
    }
    75% {
        transform: translateY(-20px) translateX(3px);
    }
}

.hero-right {
    text-align: right;
    max-width: 350px;
}

.since {
    font-size: 0.75rem;
    opacity: 0.5;
    margin-bottom: 24px;
}

.social-label {
    font-size: 0.68rem;
    font-weight: bold;
    letter-spacing: 1px;
    margin-bottom: 12px;
    opacity: 0.8;
}

.social-icons {
    display: flex;
    gap: 10px;
    justify-content: flex-end;
    margin-bottom: 32px;
}

.social-box {
    border: 1px solid rgba(255, 255, 255, 0.3);
    width: 38px;
    height: 38px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    border-radius: 4px;
    cursor: pointer;
    transition: 0.2s;
}

.social-box:hover {
    background: var(--primary);
    color: black;
    border-color: var(--primary);
}

.info-box {
    background: rgba(255, 255, 255, 0.04);
    padding: 14px 16px;
    font-size: 0.8rem;
    line-height: 1.6;
    opacity: 0.9;
}

.info-box strong {
    color: var(--primary);
}

.hero-feet-gradient {
    position: absolute;
    bottom: 0;
    left: 25%;
    right: 25%;
    width: 50%;
    height: 55%;
    background: linear-gradient(180deg, transparent 0%, rgba(5, 5, 5, 0.5) 25%, var(--bg) 100%);
    z-index: 6;
    pointer-events: none;
}

/* Responsive Hero for About */
@media (max-width: 1024px) {
    .hero-center {
        width: 300px;
    }
    .hero-left h1 {
        font-size: 2.5rem;
    }
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 50px 30px 0;
    }
    .hero-right {
        text-align: center;
        margin-top: 50px;
    }
    .social-icons {
        justify-content: center;
    }
    .robot-gradient-bg {
        width: 400px;
        height: 400px;
    }
}

@media (max-width: 768px) {
    .hero-wrapper {
        min-height: 100vh;
        padding-left: var(--page-padding);
        padding-right: var(--page-padding);
    }
    
    .hero {
        flex-direction: column;
        text-align: center;
        padding: 40px 20px 0;
        height: auto;
        min-height: calc(100vh - 100px);
    }
    
    .hero-left {
        max-width: 100%;
        margin-bottom: 30px;
    }
    
    .hero-left .tagline {
        font-size: 0.6rem;
        margin-bottom: 12px;
    }
    
    .hero-left h1 {
        font-size: 1.8rem;
        margin-bottom: 24px;
        line-height: 1.2;
    }
    
    .cta {
        font-size: 0.9rem;
    }
    
    .hero-center {
        position: relative;
        width: 280px;
        left: auto;
        top: auto;
        transform: none;
        margin: 20px auto;
    }
    
    .robot-gradient-bg {
        width: 350px;
        height: 350px;
    }
    
    .robot-image {
        width: 100%;
    }
    
    .hero-right {
        text-align: center;
        max-width: 100%;
        margin-top: 30px;
    }
    
    .since {
        font-size: 0.7rem;
        margin-bottom: 16px;
    }
    
    .social-label {
        font-size: 0.65rem;
    }
    
    .info-box {
        font-size: 0.75rem;
        padding: 12px 14px;
    }
    
    .hero-feet-gradient {
        display: none;
    }
}

/* About Us Section */
.section-about-us {
    padding: 120px max(var(--page-padding), calc((100vw - var(--page-max-width)) / 2));
    background: white;
    position: relative;
    overflow: hidden;
}

.section-about-us::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
    pointer-events: none;
}

.container-about-us {
    max-width: var(--page-max-width);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

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

.about-us-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #050505;
    margin-bottom: 40px;
    letter-spacing: -0.5px;
}

.about-us-text {
    text-align: left;
}

.about-us-text p {
    font-size: 1.1rem;
    line-height: 1.8;
    color: rgba(5, 5, 5, 0.8);
    margin-bottom: 24px;
}

/* Our Team Section */
.section-our-team {
    padding: 120px max(var(--page-padding), calc((100vw - var(--page-max-width)) / 2));
    background: var(--bg);
    position: relative;
    overflow: hidden;
}

.section-our-team::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(var(--grid) 1px, transparent 1px),
        linear-gradient(90deg, var(--grid) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
    pointer-events: none;
}

.container-our-team {
    max-width: var(--page-max-width);
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.team-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--text);
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.team-subtitle {
    font-size: 1.1rem;
    color: rgba(255, 255, 255, 0.7);
    text-align: center;
    margin-bottom: 60px;
}

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

.team-member {
    background: rgba(255, 255, 255, 0.04);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 12px;
    padding: 32px;
    text-align: center;
    transition: all 0.3s ease;
}

.team-member:hover {
    background: rgba(255, 255, 255, 0.06);
    border-color: rgba(212, 255, 0, 0.3);
    transform: translateY(-8px);
}

.team-member-image {
    width: 120px;
    height: 120px;
    margin: 0 auto 24px;
    border-radius: 50%;
    overflow: hidden;
    background: rgba(212, 255, 0, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
}

.team-placeholder {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 3rem;
    color: var(--primary);
}

.team-member-info {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.team-member-name {
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
}

.team-member-role {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.7);
    margin: 0;
}

.team-member-social {
    display: flex;
    justify-content: center;
    gap: 12px;
    margin-top: 12px;
}

.team-social-link {
    width: 36px;
    height: 36px;
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 6px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.7);
    font-size: 1.1rem;
    transition: all 0.3s ease;
}

.team-social-link:hover {
    background: var(--primary);
    border-color: var(--primary);
    color: #050505;
}

/* FAQ Section */
.section-faq {
    padding: 120px max(var(--page-padding), calc((100vw - var(--page-max-width)) / 2));
    background: white;
    position: relative;
    overflow: hidden;
}

.section-faq::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image:
        linear-gradient(rgba(0, 0, 0, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(0, 0, 0, 0.03) 1px, transparent 1px);
    background-size: 60px 60px;
    z-index: 0;
    pointer-events: none;
}

.container-faq {
    max-width: 900px;
    margin: 0 auto;
    position: relative;
    z-index: 1;
}

.faq-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #050505;
    text-align: center;
    margin-bottom: 16px;
    letter-spacing: -0.5px;
}

.faq-subtitle {
    font-size: 1.1rem;
    color: rgba(5, 5, 5, 0.7);
    text-align: center;
    margin-bottom: 60px;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.faq-item {
    background: #ffffff;
    border: 1px solid rgba(5, 5, 5, 0.1);
    border-radius: 12px;
    overflow: hidden;
    transition: all 0.3s ease;
}

.faq-item.active {
    border-color: rgba(212, 255, 0, 0.3);
}

.faq-question {
    padding: 24px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
}

.faq-question:hover {
    background: rgba(212, 255, 0, 0.05);
}

.faq-question h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: #050505;
    margin: 0;
    flex: 1;
    text-align: left;
}

.faq-question i {
    font-size: 1.5rem;
    color: var(--primary);
    transition: transform 0.3s ease;
    flex-shrink: 0;
    margin-left: 20px;
}

.faq-answer {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer p {
    padding: 0 24px 24px;
    font-size: 0.95rem;
    line-height: 1.7;
    color: rgba(5, 5, 5, 0.7);
    margin: 0;
}

/* Responsive About */
@media (max-width: 1024px) {
    .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 30px;
    }
    
    .about-us-title,
    .team-title,
    .faq-title {
        font-size: 2rem;
    }
}

@media (max-width: 768px) {
    .section-about-us,
    .section-our-team,
    .section-faq {
        padding: 80px var(--page-padding);
    }
    
    .about-us-title,
    .team-title,
    .faq-title {
        font-size: 1.75rem;
        margin-bottom: 24px;
    }
    
    .team-subtitle,
    .faq-subtitle {
        font-size: 1rem;
        margin-bottom: 40px;
    }
    
    .about-us-text p {
        font-size: 1rem;
    }
    
    .team-grid {
        grid-template-columns: 1fr;
        gap: 24px;
    }
    
    .team-member {
        padding: 24px;
    }
    
    .faq-question {
        padding: 20px;
    }
    
    .faq-question h3 {
        font-size: 1rem;
    }
    
    .faq-answer p {
        padding: 0 20px 20px;
        font-size: 0.9rem;
    }
}
