/* Landing Page Main Styles - Extracted from index.php */

/* CSS Variables are defined in modern-design-system.css - imported globally */
/* This file uses the centralized design tokens */

/* Global Landing Page Styles */
.landing-container {
    background: var(--soft-gray);
    min-height: 100vh;
}

/* Modern Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--empower-blue) 0%, var(--clarity-teal) 100%);
    color: var(--soft-gray);
    padding: var(--space-3xl) 0;
    position: relative;
    overflow: hidden;
}

.hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: url('data:image/svg+xml,<svg xmlns="http://www.w3.org/2000/svg" viewBox="0 0 100 100"><defs><pattern id="grain" width="100" height="100" patternUnits="userSpaceOnUse"><circle cx="50" cy="50" r="1" fill="rgba(255,255,255,0.1)"/></pattern></defs><rect width="100" height="100" fill="url(%23grain)"/></svg>');
    opacity: 0.3;
}

.hero-section .container {
    position: relative;
    z-index: 2;
}

.hero-content {
    padding: var(--space-xl) 0;
}

.hero-title {
    font-family: var(--font-primary);
    font-size: clamp(2.5rem, 5vw, 3.5rem);
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: var(--space-lg);
    color: var(--soft-gray);
    text-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.hero-title .highlight {
    color: var(--motivator-coral);
}

.hero-subtitle {
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    line-height: 1.6;
    margin-bottom: var(--space-xl);
    opacity: 0.95;
    font-weight: 400;
    color: white !important;
}

.hero-actions {
    display: flex;
    justify-content: center;
    gap: var(--space-md);
    margin-bottom: var(--space-2xl);
    flex-wrap: wrap;
}

.hero-stats {
    display: flex;
    gap: var(--space-xl);
    flex-wrap: wrap;
}

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

.stat-number {
    display: block;
    font-family: var(--font-primary);
    font-size: 2rem;
    font-weight: 700;
    color: var(--motivator-coral);
}

.stat-label {
    font-family: var(--font-secondary);
    font-size: 0.875rem;
    color: var(--soft-gray);
    opacity: 0.8;
}

.hero-image {
    text-align: center;
    padding: var(--space-xl) 0;
}

.hero-image img {
    max-width: 100%;
    height: auto;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0,0,0,0.2);
}

/* About Section */
.about-section {
    padding: var(--space-3xl) 0;
    background: var(--soft-gray);
}

.about-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: var(--space-2xl);
    align-items: center;
}

.about-image {
    text-align: center;
}

.about-image img {
    max-width: 100%;
    height: auto;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
}

.about-text {
    padding: var(--space-xl);
}

.section-title {
    font-family: var(--font-primary);
    font-size: 2.5rem;
    font-weight: 700;
    margin-bottom: var(--space-lg);
    color: var(--empower-blue);
    line-height: 1.2;
}

.section-text {
    font-family: var(--font-secondary);
    font-size: 1.1rem;
    line-height: 1.6;
    color: #4a5568;
    margin-bottom: var(--space-lg);
}

.section-text strong {
    color: var(--empower-blue);
    font-weight: 600;
}

/* Why Focus Section */
.why-focus-section {
    padding: var(--space-3xl) 0;
    background: var(--cloud-white);
}

.section-header {
    margin-bottom: var(--space-2xl);
}

.section-subtitle {
    font-family: var(--font-secondary);
    font-size: 1.25rem;
    color: var(--slate-gray);
    line-height: 1.6;
    margin-bottom: var(--space-xl);
}

.talent-cards {
    margin-top: var(--space-2xl);
}

.talent-card {
    background: var(--soft-gray);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-normal);
    height: 100%;
}

.talent-card:hover {
    transform: translateY(-5px);
    box-shadow: var(--shadow-lg);
}

.talent-card h3 {
    font-family: var(--font-primary);
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--empower-blue);
    margin-bottom: var(--space-md);
}

.talent-card p {
    font-family: var(--font-secondary);
    color: var(--slate-gray);
    line-height: 1.6;
}

/* Methods Section */
.methods-section {
    padding: var(--space-3xl) 0;
    background: var(--soft-gray);
}

.methods-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: var(--space-xl);
    margin-top: var(--space-2xl);
}

.method-item {
    background: var(--cloud-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-normal);
}

.method-item:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.method-icon {
    width: 80px;
    height: 80px;
    background: var(--clarity-teal);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    font-size: 2rem;
    color: white;
}

.method-item h3 {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--empower-blue);
    margin-bottom: var(--space-md);
}

.method-item p {
    font-family: var(--font-secondary);
    color: var(--slate-gray);
    line-height: 1.6;
}

/* Four Areas Section */
.four-areas-section {
    padding: var(--space-3xl) 0;
    background: var(--cloud-white);
}

.areas-content {
    padding: var(--space-xl);
}

.area-item {
    display: flex;
    gap: var(--space-md);
    margin-bottom: var(--space-lg);
    align-items: flex-start;
}

.area-icon {
    width: 50px;
    height: 50px;
    background: var(--motivator-coral);
    color: var(--soft-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    font-size: 1.25rem;
}

.area-content h3 {
    font-family: var(--font-primary);
    font-size: 1.25rem;
    font-weight: 600;
    color: var(--empower-blue);
    margin-bottom: var(--space-sm);
}

.area-content p {
    font-family: var(--font-secondary);
    color: var(--slate-gray);
    line-height: 1.6;
    margin: 0;
}

/* Assessment Section */
.assessment-section {
    padding: var(--space-3xl) 0;
    background: var(--soft-gray);
}

.assessment-features {
    margin-top: var(--space-2xl);
}

.assessment-card {
    background: var(--cloud-white);
    padding: var(--space-xl);
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-md);
    text-align: center;
    transition: var(--transition-normal);
    height: 100%;
}

.assessment-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.assessment-icon {
    width: 60px;
    height: 60px;
    background: var(--growth-green);
    color: var(--soft-gray);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto var(--space-lg);
    font-size: 1.5rem;
}

.assessment-card h4 {
    font-family: var(--font-primary);
    font-size: 1.125rem;
    font-weight: 600;
    color: var(--graphite-black);
    margin-bottom: var(--space-md);
}

.assessment-card p {
    font-family: var(--font-secondary);
    color: var(--slate-gray);
    line-height: 1.6;
}
