.about-wrapper {
    max-width: 1000px;
    margin: 0 auto;
    padding: 60px 1.5rem;
}

.about-hero {
    text-align: center;
    margin-bottom: 5rem;
    animation: fadeInScale 0.8s ease-out forwards;
}

@keyframes fadeInScale {
    from { opacity: 0; transform: scale(0.98); }
    to { opacity: 1; transform: scale(1); }
}

.badge-pill {
    background: #e0f2fe;
    color: #0369a1;
    font-size: 0.75rem;
    font-weight: 800;
    padding: 6px 18px;
    border-radius: 50px;
    text-transform: uppercase;
    display: inline-block;
    margin-bottom: 1.5rem;
}

.about-hero h1 {
    font-family: 'Outfit', sans-serif;
    font-size: clamp(2rem, 6vw, 3rem);
    font-weight: 800;
    color: #0f172a;
    margin-bottom: 1.5rem;
}

.hero-text {
    font-size: 1.15rem;
    color: #475569;
    line-height: 1.7;
    max-width: 700px;
    margin: 0 auto;
}

.divider-soft {
    border: 0;
    height: 1px;
    background: radial-gradient(circle, #e2e8f0 0%, transparent 100%);
    margin: 4rem 0;
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
    gap: 3rem;
}

.value-card {
    padding: 1rem;
    opacity: 0;
    transform: translateY(20px);
    transition: all 0.6s cubic-bezier(0.22, 1, 0.36, 1);
}

.value-card.is-visible {
    opacity: 1;
    transform: translateY(0);
}

.icon-box {
    width: 56px; height: 56px;
    border-radius: 14px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.25rem;
    margin-bottom: 1.5rem;
}

.icon-shield { background: #f0fdf4; color: #16a34a; }
.icon-time   { background: #f5f3ff; color: #7c3aed; }
.icon-heart  { background: #fff1f2; color: #e11d48; }

.value-card h3 { font-size: 1.25rem; margin-bottom: 0.75rem; color: #0f172a; }
.value-card p { color: #64748b; line-height: 1.6; font-size: 1rem; }

.cta-section {
    margin-top: 6rem;
    background: #0f172a;
    border-radius: 24px;
    padding: 3.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 2rem;
    color: white;
    position: relative;
    overflow: hidden;
    --mouse-x: 50%;
    --mouse-y: 50%;
}

.cta-section::before {
    content: '';
    position: absolute;
    top: 0; left: 0;
    width: 100%; height: 100%;
    background: radial-gradient(circle at var(--mouse-x) var(--mouse-y), rgba(37, 99, 235, 0.25) 0%, transparent 50%);
    pointer-events: none;
}

.cta-content { position: relative; z-index: 1; }
.cta-content h4 { font-size: 1.75rem; margin-bottom: 0.5rem; }
.cta-content p { color: #94a3b8; font-size: 1.05rem; }

.cta-buttons { position: relative; z-index: 1; display: flex; gap: 1rem; }

.btn-solid, .btn-outline {
    padding: 14px 28px;
    border-radius: 10px;
    text-decoration: none;
    font-weight: 700;
    transition: all 0.2s;
}

.btn-solid { background: #0052ff; color: white; }
.btn-outline { border: 1px solid rgba(255,255,255,0.2); color: white; }

.btn-solid:hover { transform: translateY(-2px); box-shadow: 0 10px 20px rgba(0, 82, 255, 0.3); }
.btn-outline:hover { background: rgba(255,255,255,0.05); }

@media (max-width: 900px) {
    .cta-section { flex-direction: column; text-align: center; padding: 3rem 1.5rem; }
    .cta-buttons { width: 100%; flex-direction: column; }
}