/* ═══════════════════════════════════════════════════════════════
   SYNEXA OLIVEIRA — About Page Styles
   Depends on: index.css (loaded first)
   ═══════════════════════════════════════════════════════════════ */

/* ─── About Hero ─────────────────────────────────────────────── */
.about-hero {
    position: relative;
    min-height: 60vh;
    display: flex;
    align-items: center;
    overflow: hidden;
    padding: 120px 60px 80px;
}

.about-hero-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
}

.about-hero-content {
    position: relative;
    z-index: 2;
    max-width: var(--max-w);
    margin: 0 auto;
    width: 100%;
}

.about-hero-content h1 {
    font-family: var(--font-display);
    font-size: clamp(36px, 5.5vw, 64px);
    font-weight: 800;
    line-height: 1.1;
    letter-spacing: -1.5px;
    margin: 20px 0 22px;
    max-width: 760px;
}

.about-hero-content p {
    font-size: 18px;
    color: var(--text-muted);
    max-width: 560px;
    line-height: 1.75;
}

/* ─── Who we are ─────────────────────────────────────────────── */
.about-who {
    background: var(--bg-mid);
}

.about-who-grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: 80px;
    align-items: start;
}

.about-who-text {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.about-who-text p {
    font-size: 16px;
    color: var(--text-muted);
    line-height: 1.8;
}

/* ─── Values ─────────────────────────────────────────────────── */
.about-values {
    background: var(--bg-dark);
}

.values-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 20px;
    margin-top: 56px;
}

.value-card {
    background: var(--bg-card);
    border: 1px solid var(--border);
    border-radius: 20px;
    padding: 32px;
    transition: all 0.3s var(--ease-out-expo);
    position: relative;
    overflow: hidden;
}

.value-card::after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 2px;
    background: var(--grad-accent);
    transform: scaleX(0);
    transform-origin: left;
    transition: transform 0.4s var(--ease-out-expo);
}

.value-card:hover {
    transform: translateY(-5px);
    border-color: rgba(71,125,249,0.2);
    box-shadow: 0 20px 50px rgba(0,0,0,0.3);
}

.value-card:hover::after { transform: scaleX(1); }

.value-icon {
    font-size: 30px;
    margin-bottom: 18px;
}

.value-card h3 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 700;
    margin-bottom: 10px;
}

.value-card p {
    font-size: 14px;
    color: var(--text-muted);
    line-height: 1.7;
}

/* ─── Process timeline ───────────────────────────────────────── */
.about-process {
    background: var(--bg-mid);
}

.process-timeline {
    max-width: 720px;
    margin: 60px auto 0;
}

.timeline-item {
    display: flex;
    gap: 28px;
    align-items: flex-start;
}

.timeline-marker {
    display: flex;
    flex-direction: column;
    align-items: center;
    flex-shrink: 0;
}

.timeline-num {
    width: 52px;
    height: 52px;
    border-radius: 50%;
    background: var(--bg-card);
    border: 1px solid rgba(71,125,249,0.25);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 800;
    color: var(--accent);
    flex-shrink: 0;
    position: relative;
    z-index: 1;
    transition: all 0.3s ease;
}

.timeline-item:hover .timeline-num {
    background: var(--grad-primary);
    border-color: transparent;
    color: white;
    box-shadow: 0 8px 24px rgba(71,125,249,0.35);
}

.timeline-line {
    width: 1px;
    flex: 1;
    min-height: 60px;
    background: linear-gradient(to bottom, rgba(71,125,249,0.3), rgba(71,125,249,0.05));
    margin: 8px 0;
}

.timeline-content {
    padding-bottom: 48px;
    padding-top: 12px;
}

.timeline-content h3 {
    font-family: var(--font-display);
    font-size: 19px;
    font-weight: 700;
    margin-bottom: 10px;
}

.timeline-content p {
    font-size: 15px;
    color: var(--text-muted);
    line-height: 1.75;
}

/* ─── CTA ────────────────────────────────────────────────────── */
.about-cta {
    background: var(--bg-dark);
}

.cta-box {
    position: relative;
    border-radius: 28px;
    overflow: hidden;
    border: 1px solid rgba(71,125,249,0.2);
    background: var(--bg-card);
}

.cta-bg-svg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.cta-content {
    position: relative;
    z-index: 2;
    text-align: center;
    padding: 72px 40px;
}

.cta-content h2 {
    font-family: var(--font-display);
    font-size: clamp(28px, 4vw, 46px);
    font-weight: 800;
    margin-bottom: 16px;
    letter-spacing: -1px;
}

.cta-content p {
    font-size: 17px;
    color: var(--text-muted);
    max-width: 500px;
    margin: 0 auto 36px;
    line-height: 1.7;
}

.cta-actions {
    display: flex;
    gap: 14px;
    justify-content: center;
    flex-wrap: wrap;
}

/* ─── Responsive ─────────────────────────────────────────────── */
@media (max-width: 1024px) {
    .about-who-grid {
        grid-template-columns: 1fr;
        gap: 40px;
    }
}

@media (max-width: 768px) {
    .about-hero {
        padding: 100px 24px 60px;
        min-height: 50vh;
    }

    .cta-content { padding: 48px 24px; }

    .timeline-item { gap: 18px; }
}