.about-intro {
    background: var(--bg-light);
    padding: 150px 0 80px;
    text-align: center;
    position: relative;
    overflow: hidden;
}

.about-intro::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grid" width="10" height="10" patternUnits="userSpaceOnUse"><path d="M 10 0 L 0 0 0 10" fill="none" stroke="%23E5E7EB" stroke-width="0.5" opacity="0.3"/></pattern></defs><rect width="100" height="100" fill="url(%23grid)"/></svg>');
    opacity: 0.3;
}

.about-intro .container {
    position: relative;
    z-index: 2;
}

.about-intro h1 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--text-dark) 0%, #374151 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.about-intro .highlight {
    color: var(--mint-primary);
    -webkit-text-fill-color: var(--mint-primary);
}

.about-intro p {
    font-size: 18px;
    color: var(--text-gray);
    margin-bottom: 0;
    line-height: 1.6;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.story-section {
    padding: 80px 0;
    background: var(--white);
}

.story-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.story-content h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
    background: linear-gradient(135deg, var(--text-dark) 0%, #374151 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.story-content p {
    font-size: 18px;
    line-height: 1.7;
    color: var(--text-gray);
    margin-bottom: 24px;
}

.story-signature {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 32px;
    padding-top: 24px;
    border-top: 1px solid #E5E7EB;
}

.signature-photo {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid var(--mint-primary);
}

.signature-text {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.signature-text strong {
    font-size: 18px;
    font-weight: 600;
    color: var(--text-dark);
}

.signature-text span {
    font-size: 14px;
    color: var(--mint-primary);
    font-weight: 500;
}

.story-visual {
    position: relative;
    height: 500px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.story-mockup {
    width: 100%;
    max-width: 400px;
    border-radius: 20px;
    box-shadow: 0 25px 50px rgba(0, 0, 0, 0.15);
    background: white;
    border: 1px solid #E5E7EB;
    transform: perspective(1000px) rotateY(-5deg) rotateX(2deg);
    transition: transform 0.3s ease;
    overflow: hidden;
}

.story-mockup:hover {
    transform: perspective(1000px) rotateY(0deg) rotateX(0deg);
}

.story-mockup-content {
    padding: 32px;
    text-align: center;
    background: linear-gradient(135deg, var(--mint-primary) 0%, var(--mint-dark) 100%);
    color: white;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 4rem;
}

.section-header {
    text-align: center;
    margin-bottom: 60px;
}

.section-header h2 {
    font-size: 48px;
    font-weight: 700;
    margin-bottom: 20px;
    color: var(--text-dark);
}

.section-header p {
    font-size: 18px;
    color: var(--text-gray);
    max-width: 600px;
    margin: 0 auto;
    line-height: 1.6;
}

.values-section {
    background: var(--bg-light);
    padding: 80px 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 40px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.value-card {
    background: var(--white);
    padding: 40px;
    border-radius: 15px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.08);
    text-align: center;
    transition: transform 0.3s ease;
    border: 1px solid #E5E7EB;
}

.value-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.12);
}

.value-icon {
    width: 80px;
    height: 80px;
    background: linear-gradient(135deg, var(--mint-primary) 0%, var(--mint-dark) 100%);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 2rem;
}

.value-card h3 {
    font-size: 24px;
    font-weight: 600;
    margin-bottom: 16px;
    color: var(--text-dark);
}

.value-card p {
    color: var(--text-gray);
    line-height: 1.6;
    font-size: 16px;
}

.companies-section {
    padding: 80px 0;
    background: var(--white);
}

.companies-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 2rem;
}

.company-card {
    background: var(--white);
    padding: 30px;
    border-radius: 15px;
    box-shadow: 0 5px 20px rgba(0, 0, 0, 0.08);
    border-left: 4px solid var(--mint-primary);
    border: 1px solid #E5E7EB;
    transition: transform 0.3s ease;
}

.company-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 30px rgba(0, 0, 0, 0.12);
}

.company-card h3 {
    color: var(--mint-primary);
    margin-bottom: 8px;
    font-size: 18px;
    font-weight: 600;
}

.company-card p {
    color: var(--text-gray);
    font-size: 14px;
    line-height: 1.5;
}

.about-cta {
    background: linear-gradient(135deg, var(--mint-primary) 0%, var(--mint-dark) 100%);
    color: white;
    padding: 80px 0;
    text-align: center;
}

.about-cta h2 {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.1;
    margin-bottom: 24px;
}

.about-cta p {
    font-size: 20px;
    margin-bottom: 40px;
    opacity: 0.9;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

@media (max-width: 768px) {
    .story-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
    
    .about-intro h1 {
        font-size: 48px;
    }
    
    .story-content h2 {
        font-size: 36px;
    }
    
    .section-header h2 {
        font-size: 36px;
    }
    
    .section-header {
        margin-bottom: 40px;
    }
    
    .about-cta h2 {
        font-size: 36px;
    }
}

/* Note: Back to top button now handled globally in globals.css */ 
