/* ============================================
   MODERN ABOUT PAGE - VENISOR
   ============================================ */

/* Hero Section About */
.about-hero {
    margin-top: 80px;
    background: linear-gradient(135deg, 
        rgba(5, 150, 105, 0.05) 0%, 
        rgba(59, 130, 246, 0.08) 100%);
    padding: 4rem 0;
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -50%;
    right: -10%;
    width: 500px;
    height: 500px;
    background: radial-gradient(circle, rgba(5, 150, 105, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.about-hero-content {
    max-width: 900px;
    margin: 0 auto;
    text-align: center;
    position: relative;
    z-index: 1;
}

.about-hero .hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    color: var(--primary-color);
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    margin-bottom: 2rem;
    font-weight: 700;
    font-size: 1rem;
    box-shadow: 0 4px 20px rgba(5, 150, 105, 0.15);
    border: 2px solid rgba(5, 150, 105, 0.1);
}

.about-hero .hero-badge i {
    color: var(--accent-color);
    font-size: 1.25rem;
}

.about-hero h1 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1.5rem;
    line-height: 1.2;
    color: var(--text-dark);
}

.hero-subtitle {
    font-size: 1.25rem;
    color: var(--text-light);
    line-height: 1.8;
    margin-bottom: 3rem;
    max-width: 750px;
    margin-left: auto;
    margin-right: auto;
}

.hero-stats-inline {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 2rem;
    flex-wrap: wrap;
}

.stat-inline-item {
    text-align: center;
}

.stat-inline-number {
    font-size: 2rem;
    font-weight: 900;
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.stat-inline-label {
    font-size: 0.9rem;
    color: var(--text-light);
    font-weight: 600;
    margin-top: 0.25rem;
}

.stat-inline-divider {
    width: 2px;
    height: 40px;
    background: linear-gradient(to bottom, transparent, var(--border-color), transparent);
}

/* Story Section */
.story-section {
    padding: 5rem 0;
    background: white;
}

.section-header-center {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 4rem;
}

.section-badge {
    display: inline-block;
    background: rgba(5, 150, 105, 0.1);
    color: var(--primary-color);
    padding: 0.5rem 1.5rem;
    border-radius: 50px;
    font-weight: 700;
    font-size: 0.9rem;
    margin-bottom: 1.5rem;
    letter-spacing: 0.5px;
    text-transform: uppercase;
}

.section-header-center h2 {
    font-size: 2.5rem;
    font-weight: 900;
    margin-bottom: 1.25rem;
    color: var(--text-dark);
    line-height: 1.3;
}

.section-description {
    font-size: 1.15rem;
    color: var(--text-light);
    line-height: 1.8;
}

/* Timeline */
.story-timeline {
    max-width: 1000px;
    margin: 0 auto;
    position: relative;
}

.timeline-item {
    display: grid;
    grid-template-columns: auto 1fr;
    gap: 2rem;
    margin-bottom: 3rem;
    position: relative;
}

.timeline-item:not(:last-child)::before {
    content: '';
    position: absolute;
    left: 30px;
    top: 80px;
    bottom: -50px;
    width: 3px;
    background: linear-gradient(to bottom, var(--primary-color), var(--secondary-color));
    opacity: 0.2;
}

.timeline-icon {
    width: 60px;
    height: 60px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: white;
    font-size: 1.75rem;
    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.3);
    position: relative;
    z-index: 2;
    flex-shrink: 0;
}

.timeline-content {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(5, 150, 105, 0.1);
    transition: all 0.3s ease;
}

.timeline-content:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.timeline-content h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.timeline-content p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1.05rem;
}

/* Mission, Vision, Values */
.mvv-section {
    padding: 5rem 0;
    background: linear-gradient(135deg, 
        rgba(5, 150, 105, 0.03) 0%, 
        rgba(59, 130, 246, 0.05) 100%);
}

.mvv-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(320px, 1fr));
    gap: 2rem;
}

.mvv-card {
    background: white;
    padding: 2.5rem;
    border-radius: 20px;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    position: relative;
    overflow: hidden;
    transition: all 0.3s ease;
}

.mvv-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: linear-gradient(90deg, var(--primary-color), var(--secondary-color));
}

.mvv-card.mvv-primary::before {
    background: linear-gradient(90deg, var(--primary-color), var(--primary-light));
}

.mvv-card.mvv-secondary::before {
    background: linear-gradient(90deg, var(--secondary-color), var(--cyan-accent));
}

.mvv-card.mvv-accent::before {
    background: linear-gradient(90deg, var(--accent-color), #fb923c);
}

.mvv-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.15);
}

.mvv-icon-wrapper {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.1), rgba(16, 185, 129, 0.15));
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 1.5rem;
}

.mvv-icon-wrapper i {
    font-size: 2rem;
    color: var(--primary-color);
}

.mvv-card.mvv-secondary .mvv-icon-wrapper {
    background: linear-gradient(135deg, rgba(59, 130, 246, 0.1), rgba(147, 197, 253, 0.15));
}

.mvv-card.mvv-secondary .mvv-icon-wrapper i {
    color: var(--secondary-color);
}

.mvv-card.mvv-accent .mvv-icon-wrapper {
    background: linear-gradient(135deg, rgba(245, 158, 11, 0.1), rgba(251, 146, 60, 0.15));
}

.mvv-card.mvv-accent .mvv-icon-wrapper i {
    color: var(--accent-color);
}

.mvv-card h3 {
    font-size: 1.75rem;
    font-weight: 800;
    margin-bottom: 1rem;
    color: var(--text-dark);
}

.mvv-card p {
    color: var(--text-light);
    line-height: 1.8;
    font-size: 1.05rem;
}

.values-list {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 0.75rem;
}

.values-list li {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    font-size: 1.05rem;
    color: var(--text-dark);
}

.values-list i {
    color: var(--primary-color);
    font-size: 1.1rem;
}

/* Differentials Section */
.differentials-section {
    padding: 5rem 0;
    background: white;
}

.differentials-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.differential-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    border: 2px solid rgba(5, 150, 105, 0.1);
    text-align: center;
    transition: all 0.3s ease;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.05);
}

.differential-card:hover {
    transform: translateY(-8px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.1);
    border-color: var(--primary-color);
}

.differential-icon {
    width: 70px;
    height: 70px;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: white;
    font-size: 1.75rem;
    box-shadow: 0 4px 15px rgba(5, 150, 105, 0.25);
}

.differential-card h3 {
    font-size: 1.25rem;
    font-weight: 700;
    margin-bottom: 0.75rem;
    color: var(--text-dark);
}

.differential-card p {
    color: var(--text-light);
    line-height: 1.7;
    font-size: 1rem;
}

/* Team Section Modern */
.team-section-modern {
    padding: 5rem 0;
    background: linear-gradient(135deg, 
        rgba(5, 150, 105, 0.03) 0%, 
        rgba(59, 130, 246, 0.05) 100%);
}

.team-grid-modern {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 2rem;
}

.team-card-modern {
    background: white;
    padding: 2.5rem 2rem;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.08);
    border: 2px solid rgba(5, 150, 105, 0.08);
    transition: all 0.3s ease;
}

.team-card-modern:hover {
    transform: translateY(-10px);
    box-shadow: 0 12px 40px rgba(0, 0, 0, 0.15);
    border-color: var(--primary-color);
}

.team-icon-modern {
    width: 90px;
    height: 90px;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.1), rgba(16, 185, 129, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1.5rem;
    color: var(--primary-color);
    font-size: 3rem;
    border: 3px solid white;
    box-shadow: 0 4px 20px rgba(5, 150, 105, 0.15);
}

.team-card-modern h3 {
    font-size: 1.5rem;
    font-weight: 800;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.team-role {
    color: var(--primary-color);
    font-weight: 700;
    font-size: 1rem;
    margin-bottom: 1rem;
    display: block;
}

.team-description {
    color: var(--text-light);
    line-height: 1.7;
    margin-bottom: 1.5rem;
    font-size: 0.95rem;
}

.team-expertise {
    display: flex;
    justify-content: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.expertise-tag {
    background: rgba(5, 150, 105, 0.08);
    color: var(--primary-color);
    padding: 0.4rem 1rem;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 600;
}

/* Certifications Section */
.certifications-section {
    padding: 4rem 0;
    background: white;
}

.certifications-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 2rem;
    max-width: 1000px;
    margin: 0 auto;
}

.certification-card {
    background: white;
    padding: 2rem;
    border-radius: 16px;
    text-align: center;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.06);
    border: 2px solid rgba(5, 150, 105, 0.1);
    transition: all 0.3s ease;
}

.certification-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 8px 30px rgba(0, 0, 0, 0.12);
    border-color: var(--primary-color);
}

.certification-icon {
    width: 65px;
    height: 65px;
    background: linear-gradient(135deg, rgba(5, 150, 105, 0.1), rgba(16, 185, 129, 0.15));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 1rem;
    color: var(--primary-color);
    font-size: 1.75rem;
}

.certification-card h4 {
    font-size: 1.1rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
    color: var(--text-dark);
}

.certification-card p {
    color: var(--text-light);
    font-size: 0.9rem;
}

/* CTA Final About */
.cta-final-about {
    padding: 5rem 0;
    background: linear-gradient(135deg, var(--primary-color), var(--primary-dark));
    color: white;
    position: relative;
    overflow: hidden;
}

.cta-final-about::before {
    content: '';
    position: absolute;
    top: -30%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.08) 0%, transparent 70%);
    border-radius: 50%;
}

.cta-final-content {
    text-align: center;
    position: relative;
    z-index: 1;
    max-width: 800px;
    margin: 0 auto;
}

.cta-final-content h2 {
    font-size: 3rem;
    font-weight: 900;
    margin-bottom: 1rem;
}

.cta-final-content p {
    font-size: 1.25rem;
    margin-bottom: 2.5rem;
    opacity: 0.95;
}

.cta-final-buttons {
    display: flex;
    justify-content: center;
    gap: 1.5rem;
    flex-wrap: wrap;
}

.btn-primary.btn-large {
    background: white;
    color: var(--primary-color);
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    transition: all 0.3s ease;
    box-shadow: 0 8px 25px rgba(0, 0, 0, 0.2);
}

.btn-primary.btn-large:hover {
    transform: translateY(-3px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, 0.3);
}

.btn-outline-white {
    background: transparent;
    color: white;
    padding: 1.25rem 2.5rem;
    border-radius: 50px;
    font-size: 1.1rem;
    font-weight: 700;
    display: inline-flex;
    align-items: center;
    gap: 0.75rem;
    border: 3px solid white;
    text-decoration: none;
    transition: all 0.3s ease;
}

.btn-outline-white:hover {
    background: white;
    color: var(--primary-color);
    transform: translateY(-3px);
}

/* Responsive Design */
@media (max-width: 968px) {
    .about-hero h1 {
        font-size: 2.25rem;
    }
    
    .hero-subtitle {
        font-size: 1.1rem;
    }
    
    .hero-stats-inline {
        gap: 1rem;
    }
    
    .stat-inline-number {
        font-size: 1.75rem;
    }
    
    .section-header-center h2 {
        font-size: 2rem;
    }
    
    .timeline-item {
        grid-template-columns: auto 1fr;
        gap: 1.5rem;
    }
    
    .timeline-icon {
        width: 50px;
        height: 50px;
        font-size: 1.5rem;
    }
    
    .mvv-grid {
        grid-template-columns: 1fr;
    }
    
    .differentials-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .team-grid-modern {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-final-content h2 {
        font-size: 2.25rem;
    }
    
    .cta-final-content p {
        font-size: 1.1rem;
    }
}

@media (max-width: 640px) {
    .about-hero {
        padding: 3rem 0;
    }
    
    .about-hero h1 {
        font-size: 1.75rem;
    }
    
    .hero-stats-inline {
        flex-direction: column;
        gap: 1.5rem;
    }
    
    .stat-inline-divider {
        width: 100px;
        height: 2px;
    }
    
    .timeline-item {
        grid-template-columns: 1fr;
    }
    
    .timeline-item::before {
        display: none;
    }
    
    .timeline-icon {
        margin: 0 auto 1rem;
    }
    
    .differentials-grid {
        grid-template-columns: 1fr;
    }
    
    .team-grid-modern {
        grid-template-columns: 1fr;
    }
    
    .certifications-grid {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .cta-final-content h2 {
        font-size: 1.75rem;
    }
    
    .cta-final-buttons {
        flex-direction: column;
        gap: 1rem;
    }
    
    .btn-primary.btn-large,
    .btn-outline-white {
        width: 100%;
        justify-content: center;
    }
}
