/* 
   Life-Long Learning Redesign - Pure Google Material Design 3
   Tokens: Google Blue (#4285F4), Google Green (#34A853), Google Yellow (#FBBC04), Google Red (#EA4335)
*/

.p-lifelong-main {
    background: #FFFFFF;
    color: #202124;
    padding-top: 64px;
}

/* M3 Hero */
.lifelong-hero-wrap {
    padding: 120px 0 80px;
    background: radial-gradient(circle at 100% 0%, rgba(66, 133, 244, 0.05) 0%, transparent 50%),
                radial-gradient(circle at 0% 100%, rgba(52, 168, 83, 0.05) 0%, transparent 50%);
    text-align: center;
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 8px 20px;
    background: #E8F0FE;
    color: #1967D2;
    border-radius: 100px;
    font-size: 0.9rem;
    font-weight: 600;
    margin-bottom: 24px;
}

.hero-headline {
    font-size: clamp(2.5rem, 6vw, 4.5rem);
    font-weight: 800;
    color: #202124;
    line-height: 1.1;
    letter-spacing: -0.02em;
}

.hero-sub {
    font-size: 1.25rem;
    color: #5F6368;
    max-width: 650px;
    margin: 24px auto 0;
    line-height: 1.6;
}

/* Google-Style Bento Grid */
.journey-bento {
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-auto-rows: minmax(280px, auto);
    gap: 24px;
    margin-top: 60px;
}

.bento-card {
    grid-column: span 4;
    background: #F8F9FA;
    border: 1px solid #DADCE0;
    border-radius: 28px;
    padding: 40px;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.bento-card:hover {
    background: #FFFFFF;
    box-shadow: 0 4px 20px rgba(60, 64, 67, 0.1);
    border-color: #4285F4;
}

.bento-card.wide { grid-column: span 8; }
.bento-card.primary { background: #E8F0FE; border-color: #D2E3FC; }
.bento-card.secondary { background: #E6F4EA; border-color: #CEEAD6; }

.card-icon {
    width: 56px;
    height: 56px;
    border-radius: 16px;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 24px;
}

.card-icon.blue { background: #4285F4; color: white; }
.card-icon.green { background: #34A853; color: white; }
.card-icon.yellow { background: #FBBC04; color: white; }

/* Stats Row */
.stats-row {
    display: flex;
    justify-content: space-around;
    padding: 60px 0;
    border-top: 1px solid #F1F3F4;
    border-bottom: 1px solid #F1F3F4;
    margin: 80px 0;
}

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

.stat-value {
    display: block;
    font-size: 3rem;
    font-weight: 800;
    color: #202124;
}

.stat-label {
    color: #5F6368;
    font-weight: 600;
    font-size: 1rem;
}

/* Feature List */
.m3-list {
    list-style: none;
    margin-top: 20px;
}

.m3-list-item {
    display: flex;
    align-items: center;
    gap: 12px;
    margin-bottom: 12px;
    color: #3C4043;
}

.m3-list-item .material-icons {
    font-size: 20px;
    color: #34A853;
}

/* CTAs */
.google-btn {
    padding: 12px 32px;
    border-radius: 100px;
    font-weight: 600;
    font-size: 1rem;
    transition: all 0.2s;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    border: none;
    cursor: pointer;
}

.google-btn-primary {
    background: #4285F4;
    color: white;
}

.google-btn-primary:hover {
    background: #1A73E8;
    box-shadow: 0 1px 2px 0 rgba(60, 64, 67, 0.3), 0 1px 3px 1px rgba(60, 64, 67, 0.15);
}

.google-btn-outline {
    background: transparent;
    border: 1px solid #DADCE0;
    color: #1A73E8;
}

.google-btn-outline:hover {
    background: #F8F9FA;
    border-color: #D2E3FC;
}

/* Utilities */
/* Reveal classes handled by JS */

@media (max-width: 992px) {
    .journey-bento {
        grid-template-columns: 1fr;
    }
    .bento-card {
        grid-column: span 12 !important;
    }
}
