/* ═══════════════════════════════════════════════════════════
   ROSA V3 — ABOUT US PAGE CSS
   Style: Modern B2B SaaS Premium Creative
   ═══════════════════════════════════════════════════════════ */

/* ─── ABOUT HERO ────────────────────────────────────────── */
.about-hero {
    padding: calc(var(--nav-height) + 64px) 0 80px;
    background: var(--bg-body);
    position: relative;
    overflow: hidden;
}

.about-hero::before {
    content: '';
    position: absolute;
    top: -10%;
    right: -10%;
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(229, 93, 37, 0.05) 0%, transparent 70%);
    z-index: 0;
    pointer-events: none;
}

.about-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    line-height: 1.25;
    margin-bottom: var(--space-md);
    position: relative;
    z-index: 1;
}

.about-hero-sub {
    font-size: var(--font-size-md);
    color: var(--text-secondary);
    max-width: 580px;
    line-height: 1.7;
    position: relative;
    z-index: 1;
}

/* ─── FOUNDER BLOCK ─────────────────────────────────────── */
.founder-block {
    display: flex;
    gap: var(--space-2xl);
    align-items: flex-start;
    background: var(--bg-white);
    border: 1px solid var(--border);
    border-radius: var(--radius-xl);
    padding: var(--space-3xl) var(--space-2xl);
    box-shadow: var(--shadow-sm);
}

.founder-avatar {
    flex-shrink: 0;
}

.avatar-placeholder {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    font-family: var(--font-heading);
    font-size: var(--font-size-xl);
    font-weight: 700;
    color: #fff;
    box-shadow: var(--shadow-primary);
}

.founder-text h2 {
    font-size: var(--font-size-2xl);
    letter-spacing: -0.02em;
    margin-bottom: var(--space-md);
    color: var(--text);
}

.founder-text p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 16px;
    font-size: var(--font-size-base);
}

.founder-text p strong {
    color: var(--text);
}

.founder-sign {
    margin-top: var(--space-xl) !important;
    font-style: italic;
    font-weight: 600;
    color: var(--text) !important;
}

/* ─── LIFESTYLE CARDS ───────────────────────────────────── */
.lifestyle-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--space-xl);
    margin-top: var(--space-xl);
}

.lifestyle-card {
    background: var(--bg-white);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: all var(--transition);
}

.lifestyle-card:hover {
    transform: translateY(-4px);
    border-color: transparent;
    box-shadow: var(--shadow-card-hover);
}

.lifestyle-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 48px;
    height: 48px;
    border-radius: var(--radius-sm);
    background: var(--primary-glow);
    margin-bottom: var(--space-lg);
    color: var(--primary);
    flex-shrink: 0;
}

.lifestyle-icon svg {
    width: 22px;
    height: 22px;
    stroke: currentColor;
}

.lifestyle-card h3 {
    font-size: var(--font-size-lg);
    margin-bottom: var(--space-sm);
    color: var(--text);
}

.lifestyle-card > p {
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: var(--space-lg);
    flex-grow: 1;
    font-size: var(--font-size-sm);
}

/* Proof quote */
.proof-quote {
    background: rgba(16, 185, 129, 0.04);
    border-left: 3px solid var(--success);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: var(--space-md);
    margin-top: auto;
}

.proof-quote p {
    font-style: italic;
    color: var(--text);
    font-size: var(--font-size-sm);
    line-height: 1.5;
    margin: 0;
}

.proof-quote cite {
    display: block;
    margin-top: var(--space-xs);
    font-size: var(--font-size-xs);
    font-weight: 700;
    color: var(--success);
    font-style: normal;
}

/* Proof stat */
.proof-stat {
    background: var(--primary-glow);
    border-left: 3px solid var(--primary);
    border-radius: 0 var(--radius-sm) var(--radius-sm) 0;
    padding: var(--space-md);
    margin-top: auto;
    display: flex;
    align-items: center;
    gap: var(--space-md);
}

.proof-stat strong {
    font-family: var(--font-heading);
    font-size: var(--font-size-xl);
    color: var(--primary);
}

.proof-stat span {
    font-size: var(--font-size-xs);
    color: var(--text-secondary);
    line-height: 1.3;
}

/* ─── STRUCTURE GRID ────────────────────────────────────── */
.structure-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: var(--space-lg);
    margin-top: var(--space-2xl);
    max-width: 960px;
    margin-left: auto;
    margin-right: auto;
}

.structure-card {
    background: var(--bg-subtle);
    border-radius: var(--radius-lg);
    padding: var(--space-xl);
    border: 1px solid var(--border);
    display: flex;
    flex-direction: column;
    transition: all var(--transition);
}

.structure-card:hover {
    background: var(--bg-white);
    transform: translateY(-2px);
    box-shadow: var(--shadow-sm);
}

.structure-num {
    font-family: var(--font-heading);
    font-size: 2rem;
    font-weight: 800;
    color: var(--primary);
    margin-bottom: var(--space-sm);
    display: flex;
    align-items: center;
}

.structure-num svg {
    stroke: var(--primary);
}

.structure-card h3 {
    margin-bottom: var(--space-xs);
    font-size: var(--font-size-base);
    color: var(--text);
}

.structure-card p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: var(--font-size-sm);
}

/* Team numbers bar */
.team-numbers {
    display: flex;
    justify-content: center;
    gap: 64px;
    flex-wrap: wrap;
    margin-top: var(--space-3xl);
    padding: var(--space-xl) var(--space-3xl);
    background: var(--bg-dark);
    border: 1px solid var(--bg-dark-border);
    border-radius: var(--radius-xl);
}

.team-stat {
    text-align: center;
}

.team-stat strong {
    display: block;
    font-family: var(--font-heading);
    font-size: clamp(2rem, 3.5vw, 2.5rem);
    color: #fff;
    font-weight: 800;
    line-height: 1;
}

.team-stat span {
    font-size: var(--font-size-xs);
    color: var(--text-on-dark-muted);
    margin-top: 6px;
    display: block;
    text-transform: uppercase;
    letter-spacing: 0.08em;
}

/* ─── TRAINING TIMELINE ─────────────────────────────────── */
.training-timeline {
    max-width: 720px;
    margin: var(--space-2xl) auto 0;
    position: relative;
}

.training-timeline::before {
    content: "";
    position: absolute;
    left: 24px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--border);
}

.timeline-step {
    display: flex;
    gap: var(--space-lg);
    padding-bottom: var(--space-xl);
    position: relative;
}

.timeline-step:last-child {
    padding-bottom: 0;
}

.timeline-marker {
    flex-shrink: 0;
    width: 50px;
    height: 50px;
    border-radius: 50%;
    background: var(--primary-gradient);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    z-index: 1;
    box-shadow: var(--shadow-primary);
}

.timeline-marker span {
    color: #fff;
    font-family: var(--font-heading);
    font-weight: 700;
    font-size: var(--font-size-xs);
}

.timeline-content {
    padding-top: 10px;
}

.timeline-content h3 {
    font-size: var(--font-size-base);
    margin-bottom: var(--space-xs);
    color: var(--text);
}

.timeline-content p {
    color: var(--text-secondary);
    line-height: 1.6;
    font-size: var(--font-size-sm);
}

.training-footer {
    text-align: center;
    margin-top: var(--space-2xl);
    font-style: italic;
    color: var(--text-secondary);
    font-size: var(--font-size-sm);
}

/* ─── RESPONSIVE RULES ──────────────────────────────────── */
@media (max-width: 768px) {
    .founder-block {
        flex-direction: column;
        align-items: center;
        text-align: center;
        padding: var(--space-xl) var(--space-lg);
    }

    .founder-avatar {
        margin-bottom: var(--space-sm);
    }

    .lifestyle-grid {
        grid-template-columns: 1fr;
        gap: var(--space-lg);
    }

    .structure-grid {
        grid-template-columns: 1fr;
        gap: var(--space-md);
    }

    .team-numbers {
        gap: var(--space-xl);
        padding: var(--space-xl);
    }

    .timeline-marker {
        width: 44px;
        height: 44px;
    }

    .training-timeline::before {
        left: 22px;
    }
}

@media (max-width: 480px) {
    .about-hero h1 {
        font-size: 1.8rem;
    }

    .team-numbers {
        flex-direction: column;
        align-items: center;
        gap: var(--space-lg);
    }
}
