/* ================================================================
   LOMCOS – About Us (High-End Corporate v3)
   ================================================================ */

:root {
    --ab3-primary: #0F172A;
    --ab3-accent: #2563EB;
    --ab3-secondary: #7C3AED;
    --ab3-success: #10B981;
    --ab3-text: #1E293B;
    --ab3-muted: #64748B;
    --ab3-border: #E2E8F0;
    --ab3-glass: rgba(255, 255, 255, 0.7);
}

.about-page-wrapper {
    background: #fff;
    overflow-x: hidden;
}

/* ──────────────────────────────────────────
   1. HERO v3 (Mesh & Geometry)
   ────────────────────────────────────────── */
.ab-hero-v3 {
    position: relative;
    padding: 180px 0 100px;
    background: #fff;
    overflow: hidden;
}

.hero-mesh-bg {
    position: absolute;
    inset: 0;
    background-image:
        radial-gradient(at 0% 0%, rgba(37, 99, 235, 0.05) 0px, transparent 50%),
        radial-gradient(at 100% 0%, rgba(124, 58, 237, 0.05) 0px, transparent 50%),
        radial-gradient(at 100% 100%, rgba(16, 185, 129, 0.05) 0px, transparent 50%),
        radial-gradient(at 0% 100%, rgba(37, 99, 235, 0.05) 0px, transparent 50%);
    filter: blur(80px);
    z-index: 0;
}

.premium-badge-v3 {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 10px 20px;
    background: #fff;
    border: 1px solid var(--ab3-border);
    border-radius: 100px;
    margin-bottom: 30px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.03);
    position: relative;
    z-index: 1;
}

.badge-pulse {
    width: 10px;
    height: 10px;
    background: var(--ab3-accent);
    border-radius: 50%;
    position: relative;
}

.badge-pulse::after {
    content: '';
    position: absolute;
    inset: -4px;
    background: var(--ab3-accent);
    border-radius: 50%;
    opacity: 0.4;
    animation: badge-ping 1.5s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes badge-ping {

    75%,
    100% {
        transform: scale(3);
        opacity: 0;
    }
}

.badge-text {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--ab3-primary);
}

.ab-hero-title-v3 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(3rem, 7vw, 5rem);
    font-weight: 900;
    line-height: 1;
    color: var(--ab3-primary);
    margin-bottom: 30px;
    letter-spacing: -0.04em;
    position: relative;
    z-index: 1;
}

.text-gradient-v3 {
    background: linear-gradient(135deg, var(--ab3-accent), var(--ab3-secondary));
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.ab-hero-subtitle-v3 {
    font-size: 1.25rem;
    color: var(--ab3-muted);
    line-height: 1.7;
    max-width: 650px;
    margin-bottom: 45px;
    position: relative;
    z-index: 1;
}

.ab-hero-cta-group {
    display: flex;
    gap: 20px;
    position: relative;
    z-index: 1;
}

.btn-corporate-primary {
    background: var(--ab3-primary);
    color: #fff;
    padding: 16px 36px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid var(--ab3-primary);
}

.btn-corporate-primary:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
    box-shadow: 0 10px 20px rgba(0, 0, 0, 0.1);
}

.btn-corporate-outline {
    background: transparent;
    color: var(--ab3-primary);
    padding: 16px 36px;
    border-radius: 8px;
    font-weight: 700;
    text-decoration: none;
    transition: all 0.3s;
    border: 1px solid var(--ab3-border);
}

.btn-corporate-outline:hover {
    background: #f8fafc;
    border-color: var(--ab3-primary);
}

/* Sphere Animation */
.tech-sphere-svg {
    animation: sphere-float 6s ease-in-out infinite;
}

@keyframes sphere-float {

    0%,
    100% {
        transform: translateY(0);
    }

    50% {
        transform: translateY(-20px);
    }
}

/* ──────────────────────────────────────────
   2. PILLARS
   ────────────────────────────────────────── */
.ab-pillars-section {
    padding: 120px 0;
    background: #fff;
}

.ab-label-v3 {
    color: var(--ab3-accent);
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    display: block;
    margin-bottom: 15px;
}

.ab-title-v3 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.2rem, 5vw, 3rem);
    font-weight: 900;
    color: var(--ab3-primary);
    margin-bottom: 20px;
}

.pillar-card-v3 {
    padding: 50px 40px;
    background: var(--ab3-glass);
    backdrop-filter: blur(10px);
    border: 1px solid var(--ab3-border);
    border-radius: 20px;
    height: 100%;
    transition: all 0.3s;
}

.pillar-card-v3:hover {
    border-color: var(--ab3-accent);
    background: #fff;
    transform: translateY(-10px);
    box-shadow: 0 20px 40px rgba(15, 23, 42, 0.05);
}

.pillar-icon-v3 {
    width: 60px;
    height: 60px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 30px;
    font-size: 1.5rem;
}

.pillar-icon-v3.blue {
    background: rgba(37, 99, 235, 0.05);
    color: var(--ab3-accent);
}

.pillar-icon-v3.purple {
    background: rgba(124, 58, 237, 0.05);
    color: var(--ab3-secondary);
}

.pillar-icon-v3.green {
    background: rgba(16, 185, 129, 0.05);
    color: var(--ab3-success);
}

/* ──────────────────────────────────────────
   3. SPLIT MISSION VISION (v3 Elite Refresh)
   ────────────────────────────────────────── */
.ab-split-mv-section {
    padding: 100px 0;
}

.ab-mv-row-v3 {
    border-radius: 48px;
    overflow: hidden;
    box-shadow: 0 40px 100px rgba(0, 0, 0, 0.08);
    border: 1px solid var(--ab3-border);
}

.mission-panel-v3 {
    background: #fff;
    padding: 100px 80px;
    display: flex;
    align-items: center;
    border-right: 1px solid var(--ab3-border);
}

.vision-panel-v3 {
    background: var(--ab3-primary);
    padding: 100px 80px;
    color: #fff;
    display: flex;
    align-items: center;
    position: relative;
    overflow: hidden;
}

.vision-panel-v3::before {
    content: '';
    position: absolute;
    top: 50%;
    right: -10%;
    width: 300px;
    height: 300px;
    background: var(--ab3-secondary);
    filter: blur(120px);
    opacity: 0.1;
    border-radius: 50%;
}

.mv-content-v3 h2 {
    font-family: 'Poppins', sans-serif;
    font-size: clamp(2.2rem, 4.5vw, 2.8rem);
    font-weight: 900;
    margin: 25px 0;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: var(--ab3-primary);
}

.vision-panel-v3 h2 {
    color: #fff;
}

.mv-content-v3 p {
    font-size: 1.15rem;
    line-height: 1.7;
    color: var(--ab3-muted);
    margin-bottom: 35px;
}

.vision-panel-v3 p {
    color: rgba(255, 255, 255, 0.7);
}

.mv-badge-v3 {
    font-size: 0.75rem;
    font-weight: 800;
    letter-spacing: 0.2em;
    color: var(--ab3-accent);
    text-transform: uppercase;
}

.mv-badge-v3.white {
    color: var(--ab3-secondary);
}

.mv-stats-v3 {
    display: flex;
    gap: 50px;
    margin-top: 50px;
    padding-top: 30px;
    border-top: 1px solid var(--ab3-border);
}

.mv-stat-item strong {
    font-family: 'Poppins', sans-serif;
    display: block;
    font-size: 2.5rem;
    color: var(--ab3-primary);
    line-height: 1;
    margin-bottom: 5px;
}

.mv-stat-item span {
    font-size: 0.85rem;
    color: var(--ab3-muted);
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

.btn-vision-link {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    color: #fff;
    text-decoration: none;
    font-weight: 700;
    margin-top: 10px;
    transition: all 0.3s;
    font-size: 1.1rem;
}

.btn-vision-link:hover {
    gap: 18px;
    color: var(--ab3-secondary);
}

/* ──────────────────────────────────────────
   4. VALUES GRID (Premium Refresh)
   ────────────────────────────────────────── */
.ab-values-v3 {
    padding: 120px 0;
    background: #fff;
}

.ab-subtitle-v3 {
    font-size: 1.1rem;
    line-height: 1.7;
    color: var(--ab3-muted);
    margin-bottom: 25px;
}

.values-grid-v3 {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 30px;
}

.value-item-v3 {
    padding: 40px;
    background: #fff;
    border: 1px solid var(--ab3-border);
    border-radius: 32px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 24px;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    box-shadow: 0 4px 20px rgba(0, 0, 0, 0.02);
}

.value-item-v3:hover {
    transform: translateY(-10px);
    border-color: var(--ab3-accent);
    box-shadow: 0 30px 60px rgba(15, 23, 42, 0.08);
}

.v-icon-v3 {
    width: 60px;
    height: 60px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    transition: all 0.3s ease;
}

/* Icon Variations */
.v-icon-v3.blue {
    background: #EFF6FF;
    color: #3B82F6;
}

.v-icon-v3.purple {
    background: #F5F3FF;
    color: #8B5CF6;
}

.v-icon-v3.amber {
    background: #FFFBEB;
    color: #F59E0B;
}

.v-icon-v3.green {
    background: #F0FDF4;
    color: #10B981;
}

.value-item-v3:hover .v-icon-v3 {
    transform: scale(1.1) rotate(-8deg);
}

.v-content-v3 h4 {
    font-family: 'Poppins', sans-serif;
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--ab3-primary);
    margin-bottom: 12px;
    letter-spacing: -0.01em;
}

.v-content-v3 p {
    font-size: 0.95rem;
    line-height: 1.6;
    color: var(--ab3-muted);
    margin: 0;
}


/* Responsive */
@media (max-width: 991px) {
    .ab-hero-v3 {
        padding-top: 140px;
        text-align: center;
    }

    .ab-hero-cta-group {
        justify-content: center;
    }

    .mission-panel-v3,
    .vision-panel-v3 {
        padding: 50px;
    }

    .values-grid-v3 {
        grid-template-columns: 1fr;
    }

    .cta-actions-v3 {
        flex-direction: column;
    }
}