/* ========================================
   VOLEADO - ARIHA PAGE STYLES
   Layout helpers only — reuses the core
   design tokens, cards, and buttons from
   styles.css. No new visual system.
   ======================================== */

/* Hero — centered variant of the homepage hero */
.ariha-hero-content {
    max-width: 820px;
    margin: 0 auto;
    text-align: center;
}

.ariha-hero .hero-title {
    margin-bottom: var(--spacing-md);
}

.ariha-hero .hero-cta,
.ariha-hero .hero-stats {
    justify-content: center;
}

.ariha-hero .hero-stats {
    flex-wrap: wrap;
}

.ariha-hero .stat-item {
    text-align: center;
}

/* Intro — "An assistant, not another dashboard" */
.ariha-intro {
    background-color: var(--bg-secondary);
    text-align: center;
}

.ariha-intro .section-title {
    margin-bottom: var(--spacing-md);
}

.ariha-intro-text {
    max-width: 760px;
    margin: 0 auto;
    font-size: 1.125rem;
    line-height: 1.8;
    color: var(--text-secondary);
}

/* Feature cards — "What Ariha does" (4-up) */
.ariha-features {
    background-color: white;
}

.ariha-card-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: var(--spacing-lg);
}

/* How it works — 3 numbered steps */
.ariha-how {
    background-color: var(--bg-secondary);
}

.ariha-steps {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: var(--spacing-xl);
}

.ariha-step {
    background-color: white;
    padding: var(--spacing-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-sm);
    border: 1px solid var(--border-color);
    text-align: center;
    transition: all var(--transition-base);
}

.ariha-step:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-xl);
    border-color: var(--primary-light);
}

.ariha-step-number {
    width: 60px;
    height: 60px;
    margin: 0 auto var(--spacing-md);
    background: linear-gradient(135deg, var(--primary-color), var(--primary-light));
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    font-weight: var(--font-weight-extrabold);
    color: white;
}

.ariha-step h3 {
    font-size: 1.25rem;
    font-weight: var(--font-weight-bold);
    margin-bottom: var(--spacing-xs);
    color: var(--text-primary);
}

.ariha-step p {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 0;
}

/* Responsive */
@media (max-width: 1024px) {
    .ariha-card-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 768px) {
    .ariha-card-grid,
    .ariha-steps {
        grid-template-columns: 1fr;
    }
}
