/* =========================
   ABOUT-PREVIEW.CSS
   Clean, scoped styles for about preview section
   No conflicts with careers page
========================= */

/* Section Container */
.about {
    width: 100%;
    padding: 80px 0;
    background: #0a1f1a;
}

.about .container {
    max-width: 1300px;
    margin: 0 auto;
    padding: 0 clamp(20px, 5vw, 40px);
    box-sizing: border-box;
}

/* Two Column Wrapper */
.about .about-wrapper {
    display: flex;
    gap: 60px;
    align-items: center;
    flex-wrap: wrap;
}

/* LEFT - TEXT CONTENT */
.about .about-text {
    flex: 1;
    min-width: 280px;
}

/* Section Tag */
.about .section-tag {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 20px;
    justify-content: flex-start;
}

.about .section-tag hr {
    width: 40px;
    height: 2px;
    background: linear-gradient(90deg, #4ade80, #c084fc);
    border: none;
    margin: 0;
}

.about .section-tag h5 {
    color: #c084fc;
    font-size: 0.85rem;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    margin: 0;
}

/* Heading */
.about .about-text h2 {
    font-size: clamp(1.8rem, 4vw, 2.2rem);
    font-weight: 700;
    color: #e2d6f0;
    margin-bottom: 20px;
    letter-spacing: -0.02em;
}

/* Description Text */
.about .about-description {
    font-size: 0.95rem;
    color: #d1e0d6;
    line-height: 1.6;
    margin-bottom: 20px;
}

/* Points List */
.about .about-points {
    list-style: none;
    padding: 0;
    margin: 25px 0 30px;
}

.about .about-points li {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 0.95rem;
    color: #d1e0d6;
    margin-bottom: 12px;
}

.about .about-points li i {
    color: #4ade80;
    font-size: 1rem;
    width: 22px;
}

/* Buttons */
.about .about-buttons {
    display: flex;
    gap: 20px;
    flex-wrap: wrap;
}

.about .btn {
    display: inline-block;
    padding: 12px 28px;
    font-size: 0.9rem;
    font-weight: 600;
    text-decoration: none;
    border-radius: 40px;
    transition: all 0.3s ease;
}

.about .btn-primary {
    background: #c084fc;
    color: #0a1f1a;
    border: 2px solid #c084fc;
}

.about .btn-primary:hover {
    background: #a855f7;
    border-color: #a855f7;
    transform: translateY(-2px);
}

.about .btn-secondary {
    background: transparent;
    color: #4ade80;
    border: 2px solid #4ade80;
}

.about .btn-secondary:hover {
    background: rgba(74, 222, 128, 0.1);
    transform: translateY(-2px);
}

/* RIGHT - IMAGE */
.about .about-image {
    flex: 1;
    min-width: 280px;
    text-align: center;
}

.about .about-image figure {
    margin: 0;
    border-radius: 24px;
    overflow: hidden;
    border: 1px solid rgba(192, 132, 252, 0.3);
    box-shadow: 0 12px 24px rgba(0, 0, 0, 0.2);
    transition: all 0.3s ease;
}

.about .about-image figure:hover {
    transform: translateY(-5px);
    border-color: #4ade80;
}

.about .about-image img {
    width: 100%;
    height: auto;
    display: block;
}

/* ========== RESPONSIVE ========== */

@media (max-width: 900px) {
    .about {
        padding: 60px 0;
    }
    .about .about-wrapper {
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .about .about-wrapper {
        flex-direction: column;
    }
    
    .about .about-text {
        text-align: center;
    }
    
    .about .section-tag {
        justify-content: center;
    }
    
    .about .about-points li {
        justify-content: center;
    }
    
    .about .about-buttons {
        justify-content: center;
    }
    
    .about .about-image {
        order: -1;
        max-width: 500px;
        margin: 0 auto;
    }
}

@media (max-width: 480px) {
    .about {
        padding: 40px 0;
    }
    
    .about .about-text h2 {
        font-size: 1.5rem;
    }
    
    .about .about-description {
        font-size: 0.85rem;
    }
    
    .about .btn {
        padding: 10px 22px;
        font-size: 0.85rem;
    }
}