/* ============================================
   PELIXARMOR ABOUT SECTION STYLES
   ============================================ */

/* About Section */
#pelixarmor-about {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: var(--PelixArmor-navy-deep, #050a12);
}

.about-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background:
        radial-gradient(ellipse 60% 60% at 0% 0%, rgba(201, 162, 39, 0.06) 0%, transparent 50%),
        radial-gradient(ellipse 40% 40% at 100% 100%, rgba(0, 212, 255, 0.04) 0%, transparent 50%);
    pointer-events: none;
}

.about-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
    position: relative;
    z-index: 10;
}

.about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 80px;
    align-items: center;
}

.about-content {
    position: relative;
}

.about-subtitle {
    font-size: 18px;
    color: var(--PelixArmor-gray-light, #c4cdd9);
    margin-bottom: 30px;
    line-height: 1.8;
}

.about-text {
    font-size: 16px;
    color: var(--PelixArmor-gray, #8892a0);
    margin-bottom: 25px;
    line-height: 1.8;
}

.about-signature {
    display: flex;
    align-items: center;
    gap: 20px;
    padding-top: 30px;
    border-top: 1px solid rgba(201, 162, 39, 0.15);
    margin-top: 30px;
}

.signature-avatar {
    width: 70px;
    height: 70px;
    border-radius: 50%;
    background: var(--PelixArmor-gradient-gold, linear-gradient(135deg, #c9a227 0%, #e8c547 50%, #c9a227 100%));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 24px;
    font-weight: 700;
    color: var(--PelixArmor-navy-deep, #050a12);
}

.signature-info h4 {
    font-family: 'Exo 2', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--PelixArmor-white, #ffffff);
}

.signature-info p {
    font-size: 14px;
    color: var(--PelixArmor-gold-primary, #c9a227);
}

.about-visual {
    position: relative;
}

.about-image-wrapper {
    position: relative;
    border-radius: 24px;
    overflow: hidden;
}

.about-image-wrapper::before {
    content: '';
    position: absolute;
    top: -20px;
    left: -20px;
    right: 20px;
    bottom: 20px;
    border: 2px solid rgba(201, 162, 39, 0.2);
    border-radius: 24px;
    z-index: -1;
}

.about-image-wrapper img {
    width: 100%;
    height: 500px;
    object-fit: cover;
    border-radius: 24px;
}

.about-experience-badge {
    position: absolute;
    bottom: -30px;
    right: 40px;
    background: var(--PelixArmor-gradient-gold, linear-gradient(135deg, #c9a227 0%, #e8c547 50%, #c9a227 100%));
    padding: 25px 35px;
    border-radius: 20px;
    text-align: center;
    box-shadow: 0 0 30px rgba(201, 162, 39, 0.3);
}

.about-experience-badge h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    font-weight: 800;
    color: var(--PelixArmor-navy-deep, #050a12);
    line-height: 1;
}

.about-experience-badge p {
    font-family: 'Exo 2', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--PelixArmor-navy-deep, #050a12);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   STATS SECTION
   ============================================ */
#pelixarmor-stats {
    padding: 80px 0;
    background: var(--PelixArmor-navy-primary, #0a1628);
    border-top: 1px solid rgba(201, 162, 39, 0.1);
    border-bottom: 1px solid rgba(201, 162, 39, 0.1);
}

.stats-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

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

.stat-item {
    text-align: center;
    padding: 30px;
    position: relative;
}

.stat-item::after {
    content: '';
    position: absolute;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    width: 1px;
    height: 60px;
    background: linear-gradient(to bottom, transparent, rgba(201, 162, 39, 0.3), transparent);
}

.stat-item:last-child::after {
    display: none;
}

.stat-icon {
    width: 60px;
    height: 60px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 16px;
    margin: 0 auto 20px;
}

.stat-icon svg {
    width: 28px;
    height: 28px;
    fill: var(--PelixArmor-gold-primary, #c9a227);
}

.stat-value {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--PelixArmor-white, #ffffff);
    margin-bottom: 5px;
}

.stat-value span {
    color: var(--PelixArmor-cyan, #00d4ff);
}

.stat-label {
    font-size: 14px;
    color: var(--PelixArmor-gray, #8892a0);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   VALUES SECTION
   ============================================ */
#pelixarmor-values {
    padding: 100px 0;
    position: relative;
    background: var(--PelixArmor-navy-deep, #050a12);
}

.values-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.values-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.value-card {
    background: linear-gradient(145deg, rgba(18, 29, 47, 0.6), rgba(10, 22, 40, 0.8));
    border: 1px solid rgba(201, 162, 39, 0.1);
    border-radius: 24px;
    padding: 45px 35px;
    text-align: center;
    transition: all 0.4s cubic-bezier(0.4, 0, 0.2, 1);
    position: relative;
    overflow: hidden;
}

.value-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 4px;
    background: var(--PelixArmor-gradient-gold, linear-gradient(135deg, #c9a227 0%, #e8c547 50%, #c9a227 100%));
    transform: scaleX(0);
    transition: transform 0.4s ease;
}

.value-card:hover {
    transform: translateY(-10px);
    border-color: rgba(201, 162, 39, 0.3);
    box-shadow: 0 25px 60px rgba(0, 0, 0, 0.3);
}

.value-card:hover::before {
    transform: scaleX(1);
}

.value-icon {
    width: 90px;
    height: 90px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, rgba(201, 162, 39, 0.15), rgba(201, 162, 39, 0.05));
    border-radius: 24px;
    margin: 0 auto 25px;
    transition: all 0.4s ease;
}

.value-card:hover .value-icon {
    background: var(--PelixArmor-gradient-gold, linear-gradient(135deg, #c9a227 0%, #e8c547 50%, #c9a227 100%));
}

.value-icon svg {
    width: 40px;
    height: 40px;
    fill: var(--PelixArmor-gold-primary, #c9a227);
    transition: fill 0.2s ease;
}

.value-card:hover .value-icon svg {
    fill: var(--PelixArmor-navy-deep, #050a12);
}

.value-card h3 {
    font-family: 'Orbitron', sans-serif;
    font-size: 20px;
    font-weight: 700;
    color: var(--PelixArmor-white, #ffffff);
    margin-bottom: 15px;
}

.value-card p {
    font-size: 15px;
    color: var(--PelixArmor-gray, #8892a0);
    line-height: 1.7;
}

/* ============================================
   TEAM SECTION
   ============================================ */
#pelixarmor-team {
    padding: 100px 0;
    background: linear-gradient(180deg, var(--PelixArmor-navy-deep, #050a12) 0%, var(--PelixArmor-navy-primary, #0a1628) 50%, var(--PelixArmor-navy-deep, #050a12) 100%);
}

.team-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.team-header {
    text-align: center;
    margin-bottom: 60px;
}

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

.team-card {
    background: linear-gradient(145deg, rgba(18, 29, 47, 0.7), rgba(10, 22, 40, 0.9));
    border: 1px solid rgba(201, 162, 39, 0.1);
    border-radius: 20px;
    padding: 30px;
    text-align: center;
    transition: all 0.4s ease;
}

.team-card:hover {
    transform: translateY(-10px);
    border-color: rgba(201, 162, 39, 0.3);
}

.team-avatar {
    width: 120px;
    height: 120px;
    border-radius: 50%;
    margin: 0 auto 20px;
    position: relative;
    overflow: hidden;
    border: 3px solid rgba(201, 162, 39, 0.3);
}

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

.team-avatar-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, var(--PelixArmor-navy-light, #1a2a42), var(--PelixArmor-navy-secondary, #121d2f));
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: 'Orbitron', sans-serif;
    font-size: 36px;
    font-weight: 700;
    color: var(--PelixArmor-gold-primary, #c9a227);
}

.team-card h4 {
    font-family: 'Exo 2', sans-serif;
    font-size: 18px;
    font-weight: 600;
    color: var(--PelixArmor-white, #ffffff);
    margin-bottom: 5px;
}

.team-card .team-role {
    font-size: 13px;
    color: var(--PelixArmor-gold-primary, #c9a227);
    margin-bottom: 15px;
}

.team-card .team-bio {
    font-size: 14px;
    color: var(--PelixArmor-gray, #8892a0);
    line-height: 1.6;
    margin-bottom: 20px;
}

.team-social {
    display: flex;
    justify-content: center;
    gap: 10px;
}

.team-social a {
    width: 36px;
    height: 36px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(201, 162, 39, 0.1);
    border-radius: 10px;
    transition: all 0.2s ease;
}

.team-social a:hover {
    background: var(--PelixArmor-gold-primary, #c9a227);
}

.team-social a svg {
    width: 16px;
    height: 16px;
    fill: var(--PelixArmor-gold-primary, #c9a227);
    transition: fill 0.2s ease;
}

.team-social a:hover svg {
    fill: var(--PelixArmor-navy-deep, #050a12);
}

/* ============================================
   CERTIFICATES SECTION
   ============================================ */
#pelixarmor-certificates {
    padding: 80px 0;
    border-top: 1px solid rgba(201, 162, 39, 0.1);
    background: var(--PelixArmor-navy-deep, #050a12);
}

.certificates-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.certificates-header {
    text-align: center;
    margin-bottom: 50px;
}

.certificates-header h3 {
    font-family: 'Exo 2', sans-serif;
    font-size: 14px;
    font-weight: 600;
    color: var(--PelixArmor-gray, #8892a0);
    text-transform: uppercase;
    letter-spacing: 3px;
}

.certificates-grid {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 50px;
    flex-wrap: wrap;
}

.certificate-item {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 15px;
    padding: 30px;
    background: rgba(26, 42, 66, 0.3);
    border: 1px solid rgba(201, 162, 39, 0.1);
    border-radius: 16px;
    transition: all 0.2s ease;
}

.certificate-item:hover {
    border-color: rgba(201, 162, 39, 0.3);
    background: rgba(26, 42, 66, 0.5);
}

.certificate-logo {
    font-family: 'Orbitron', sans-serif;
    font-size: 28px;
    font-weight: 700;
    color: var(--PelixArmor-white, #ffffff);
}

.certificate-item p {
    font-size: 12px;
    color: var(--PelixArmor-gray, #8892a0);
    text-transform: uppercase;
    letter-spacing: 1px;
}

/* ============================================
   CTA SECTION
   ============================================ */
#pelixarmor-cta {
    padding: 100px 0;
    position: relative;
    overflow: hidden;
    background: var(--PelixArmor-navy-deep, #050a12);
}

.cta-bg {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: radial-gradient(ellipse 80% 80% at 50% 100%, rgba(201, 162, 39, 0.1) 0%, transparent 50%);
    pointer-events: none;
}

.cta-container {
    max-width: 1400px;
    margin: 0 auto;
    padding: 0 40px;
}

.cta-content {
    text-align: center;
    position: relative;
    z-index: 10;
}

.cta-badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 12px 24px;
    background: rgba(0, 212, 255, 0.1);
    border: 1px solid rgba(0, 212, 255, 0.3);
    border-radius: 30px;
    margin-bottom: 25px;
}

.cta-badge svg {
    width: 20px;
    height: 20px;
    fill: var(--PelixArmor-cyan, #00d4ff);
}

.cta-badge span {
    font-family: 'Exo 2', sans-serif;
    font-size: 13px;
    font-weight: 600;
    color: var(--PelixArmor-cyan, #00d4ff);
    text-transform: uppercase;
    letter-spacing: 2px;
}

.cta-title {
    font-family: 'Orbitron', sans-serif;
    font-size: 42px;
    font-weight: 700;
    color: var(--PelixArmor-white, #ffffff);
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.cta-title span {
    background: var(--PelixArmor-gradient-gold, linear-gradient(135deg, #c9a227 0%, #e8c547 50%, #c9a227 100%));
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.cta-text {
    font-size: 18px;
    color: var(--PelixArmor-gray, #8892a0);
    margin-bottom: 40px;
    max-width: 550px;
    margin-left: auto;
    margin-right: auto;
}

.cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

.cta-btn {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 18px 36px;
    border-radius: 14px;
    font-family: 'Exo 2', sans-serif;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    text-transform: uppercase;
    letter-spacing: 1px;
    transition: all 0.4s ease;
    cursor: pointer;
    border: none;
}

.cta-btn svg {
    width: 22px;
    height: 22px;
    fill: currentColor;
}

.cta-btn-primary {
    background: var(--PelixArmor-gradient-gold, linear-gradient(135deg, #c9a227 0%, #e8c547 50%, #c9a227 100%));
    color: var(--PelixArmor-navy-deep, #050a12);
    box-shadow: 0 0 30px rgba(201, 162, 39, 0.3);
}

.cta-btn-primary:hover {
    transform: translateY(-3px);
    box-shadow: 0 15px 50px rgba(201, 162, 39, 0.5);
}

.cta-btn-secondary {
    background: transparent;
    border: 2px solid var(--PelixArmor-cyan, #00d4ff);
    color: var(--PelixArmor-cyan, #00d4ff);
}

.cta-btn-secondary:hover {
    background: var(--PelixArmor-cyan, #00d4ff);
    color: var(--PelixArmor-navy-deep, #050a12);
}

/* ============================================
   RESPONSIVE
   ============================================ */
@media (max-width: 1200px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 50px;
    }

    .about-visual {
        order: -1;
    }

    .team-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 992px) {

    .about-container,
    .stats-container,
    .values-container,
    .team-container,
    .certificates-container,
    .cta-container {
        padding: 0 30px;
    }

    .stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .stat-item::after {
        display: none;
    }

    .values-grid {
        grid-template-columns: 1fr;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 768px) {

    #pelixarmor-about,
    #pelixarmor-values,
    #pelixarmor-team,
    #pelixarmor-cta {
        padding: 70px 0;
    }

    .about-container,
    .stats-container,
    .values-container,
    .team-container,
    .certificates-container,
    .cta-container {
        padding: 0 20px;
    }

    .about-image-wrapper img {
        height: 350px;
    }

    .about-experience-badge {
        bottom: -20px;
        right: 20px;
        padding: 20px 25px;
    }

    .about-experience-badge h3 {
        font-size: 32px;
    }

    .team-grid {
        grid-template-columns: 1fr;
        max-width: 350px;
        margin: 0 auto;
    }

    .cta-title {
        font-size: 32px;
    }

    .cta-buttons {
        flex-direction: column;
        align-items: center;
    }

    .cta-btn {
        width: 100%;
        max-width: 300px;
        justify-content: center;
    }
}

@media (max-width: 480px) {
    .stats-grid {
        grid-template-columns: 1fr;
    }

    .stat-value {
        font-size: 36px;
    }

    .about-signature {
        flex-direction: column;
        text-align: center;
    }

    .certificates-grid {
        gap: 20px;
    }

    .certificate-item {
        padding: 20px;
    }
}