/* Home / Landing Page Styles */

.hero-section {
    padding: 5rem 2rem;
    background: linear-gradient(135deg, #f8f9fa 0%, #e9ecef 100%);
    text-align: center;
}
.hero-title {
    font-size: 2.5rem;
    font-weight: 800;
    margin-bottom: 1.5rem;
    color: #2c3e50;
    line-height: 1.2;
}
.hero-subtitle {
    font-size: 1.25rem;
    color: #57606a;
    margin-bottom: 2rem;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}
.problem-section {
    padding: 5rem 2rem;
    background-color: #fff;
}
.section-title {
    text-align: center;
    margin-bottom: 3rem;
    font-size: 2rem;
    font-weight: 700;
    color: #24292f;
}
.scenario-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}
.scenario-card {
    padding: 2.5rem;
    border-radius: 12px;
    background: #f8f9fa;
    border: 1px solid #e9ecef;
    transition: transform 0.2s;
}
.scenario-card:hover {
    transform: translateY(-5px);
}
.scenario-icon {
    font-size: 2.5rem;
    color: #e74c3c;
    margin-bottom: 1.5rem;
}
.scenario-title {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 1rem;
    color: #2c3e50;
}
.usp-section {
    padding: 5rem 2rem;
    background-color: #f0f4f8;
}
.usp-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2.5rem;
    max-width: 1200px;
    margin: 0 auto;
}
.usp-card {
    background: white;
    padding: 2.5rem;
    border-radius: 16px;
    box-shadow: 0 4px 20px rgba(0,0,0,0.05);
    text-align: center;
}
.usp-icon {
    font-size: 3rem;
    color: #0969da;
    margin-bottom: 1.5rem;
}
.feature-showcase {
    padding: 5rem 2rem;
    max-width: 1200px;
    margin: 0 auto;
}
.feature-row {
    display: flex;
    align-items: center;
    gap: 5rem;
    margin-bottom: 6rem;
}
.feature-row:nth-child(even) {
    flex-direction: row-reverse;
}
.feature-content {
    flex: 1;
}
.feature-visual {
    flex: 1;
    background: #f6f8fa;
    height: 350px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 20px;
    border: 1px solid #d0d7de;
}
.insights-section {
    padding: 5rem 2rem;
    background: #24292f;
    color: white;
}
.insight-card {
    background: rgba(255,255,255,0.1);
    padding: 2rem;
    border-radius: 12px;
    backdrop-filter: blur(10px);
}
.trust-section {
    padding: 5rem 2rem;
    text-align: center;
    background: #fff;
}
.testimonial-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-top: 4rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
}
.testimonial-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.08);
    font-style: italic;
    text-align: left;
    border-left: 4px solid #0969da;
}
.onboarding-booster {
    background-color: #dafbe1;
    color: #1a7f37;
    padding: 0.75rem 1.5rem;
    border-radius: 50px;
    display: inline-block;
    margin-top: 2rem;
    font-weight: 600;
    font-size: 0.95rem;
    border: 1px solid rgba(26, 127, 55, 0.2);
}
.cta-wrapper {
    margin-top: 2rem;
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}
.cta-button {
    padding: 1rem 2rem;
    border-radius: 8px;
    font-weight: 600;
    text-decoration: none;
    transition: all 0.2s;
    display: inline-block;
}
.cta-button.primary {
    background-color: #0969da;
    color: white;
    box-shadow: 0 4px 10px rgba(9, 105, 218, 0.3);
}
.cta-button.primary:hover {
    background-color: #0a5bb5;
    transform: translateY(-2px);
}
.cta-button.secondary {
    background-color: transparent;
    color: #24292f;
    border: 1px solid #d0d7de;
}
.cta-button.secondary:hover {
    background-color: #f6f8fa;
    border-color: #24292f;
}
.stat-number {
    font-size: 2.5rem;
    font-weight: 800;
    color: #0969da;
    display: block;
    margin-bottom: 0.5rem;
}
.stat-label {
    font-size: 1rem;
    color: #57606a;
    font-weight: 500;
}

@media (max-width: 768px) {
    .feature-row, .feature-row:nth-child(even) {
        flex-direction: column;
        gap: 2rem;
    }
    .hero-title {
        font-size: 2rem;
    }
}