/* Start Your Project Page Styles */

:root {
    --primary: #3b82f6;
    --primary-dark: #1d4ed8;
    --text-main: #0f172a;
    --text-muted: #475569;
    --bg-white: #ffffff;
    --bg-light: #f8fafc;
    --border-color: rgba(0, 0, 0, 0.08);
    --transition: all 0.3s ease;
}

/* Base Styles */
* { margin: 0; padding: 0; box-sizing: border-box; }
body { font-family: 'Inter', sans-serif; color: var(--text-main); background-color: #fcfdff; line-height: 1.6; }
h1, h2, h3, h4 { font-family: 'Outfit', sans-serif; font-weight: 700; }
a { text-decoration: none; color: inherit; transition: var(--transition); }
ul { list-style: none; }
.container { max-width: 1200px; margin: 0 auto; padding: 0 24px; }

/* Top Bar & Header (Consistent with seoranking.css) */
.top-bar { background: #0f172a; color: white; padding: 10px 0; font-size: 0.8rem; }
.top-bar-flex { display: flex; justify-content: space-between; align-items: center; }
.trust-badge { display: flex; align-items: center; gap: 8px; }
.stars { color: #fbbf24; }

.main-header { height: 80px; display: flex; align-items: center; background: white; border-bottom: 1px solid var(--border-color); position: sticky; top: 0; z-index: 1000; }
.nav-flex { display: flex; justify-content: space-between; align-items: center; width: 100%; }
.logo { display: flex; align-items: center; gap: 10px; font-size: 1.25rem; font-weight: 800; }
.logo-icon { width: 32px; height: 32px; background: var(--primary); border-radius: 8px; display: flex; align-items: center; justify-content: center; color: white; font-size: 0.8rem; }
.nav-links { display: flex; gap: 32px; }
.nav-links a { font-weight: 500; color: var(--text-muted); }
.nav-links a:hover { color: var(--primary); }
.btn-primary { background: var(--primary); color: white; padding: 12px 28px; border-radius: 8px; font-weight: 600; border: none; cursor: pointer; }

/* Hero Section */
.hero-onboarding { padding: 80px 0 60px; padding-bottom: 0px; text-align: center; }
.hero-onboarding h1 { font-size: 3.5rem; margin-bottom: 16px; color: #0f172a; }
.hero-onboarding p { font-size: 1.15rem; color: var(--text-muted); margin-bottom: 40px; }

.badge-blue { 
    display: inline-block; 
    padding: 6px 16px; 
    background: #eff6ff; 
    color: var(--primary); 
    border-radius: 100px; 
    font-size: 0.85rem; 
    font-weight: 600; 
    margin-bottom: 24px; 
}

/* Stats Row */
.stats-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 24px; margin-bottom: 80px; }
.stat-box { background: white; padding: 32px; border-radius: 16px; box-shadow: 0 4px 20px rgba(0,0,0,0.03); border: 1px solid var(--border-color); text-align: center; }
.stat-box h3 { font-size: 2rem; color: var(--primary); margin-bottom: 8px; }
.stat-box p { font-size: 0.9rem; color: var(--text-muted); font-weight: 500; }

/* Progress Bar */
.progress-container { max-width: 900px; margin: 0 auto 60px; position: relative; padding: 0 40px; }
.progress-line { position: absolute; top: 18px; left: 60px; right: 60px; height: 2px; background: #e2e8f0; z-index: 1; }
.progress-line-fill { position: absolute; top: 0; left: 0; height: 100%; background: var(--primary); width: 14%; transition: width 0.5s ease; }

.steps { display: flex; justify-content: space-between; position: relative; z-index: 2; }
.step { text-align: center; }
.step-circle { 
    width: 36px; 
    height: 36px; 
    background: white; 
    border: 2px solid #e2e8f0; 
    border-radius: 50%; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin: 0 auto 12px; 
    font-size: 0.9rem; 
    font-weight: 700; 
    color: #94a3b8; 
    transition: var(--transition);
}
.step.active .step-circle { border-color: var(--primary); background: var(--primary); color: white; }
.step.completed .step-circle { border-color: var(--primary); background: var(--primary); color: white; }
.step span { font-size: 0.75rem; font-weight: 600; color: #94a3b8; }
.step.active span { color: var(--text-main); }

/* Main Card Grid */
.selection-area { background: white; padding: 60px; border-radius: 32px; box-shadow: 0 20px 50px rgba(0,0,0,0.05); border: 1px solid var(--border-color); margin-bottom: 100px; }
.selection-header { margin-bottom: 40px; }
.selection-header h2 { font-size: 2rem; margin-bottom: 12px; }
.selection-header p { color: var(--text-muted); }

.card-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 24px; }
.type-card { 
    padding: 32px; 
    border: 2px solid #f1f5f9; 
    border-radius: 20px; 
    cursor: pointer; 
    transition: var(--transition); 
    display: flex; 
    flex-direction: column; 
    gap: 16px; 
}
.type-card:hover { border-color: var(--primary); background: #fcfdff; transform: translateY(-4px); }
.type-card.selected { border-color: var(--primary); background: #eff6ff; }

.card-icon { width: 44px; height: 44px; border-radius: 8px; display: flex; align-items: center; justify-content: center; font-size: 1.25rem; }
.card-icon.blue { background: #eff6ff; color: #3b82f6; }
.card-icon.purple { background: #f5f3ff; color: #8b5cf6; }
.card-icon.green { background: #f0fdf4; color: #10b981; }
.card-icon.orange { background: #fff7ed; color: #f97316; }

.type-card h4 { font-size: 1.15rem; }
.type-card p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.5; }

/* What Happens Next */
.next-steps { padding: 60px 0; text-align: center; }
.next-steps h2 { font-size: 2.5rem; margin-bottom: 16px; }
.next-steps-grid { display: grid; grid-template-columns: repeat(3, 1fr); gap: 40px; margin-top: 60px; }
.next-step { position: relative; }
.next-step-icon { 
    width: 60px; 
    height: 60px; 
    border-radius: 12px; 
    display: flex; 
    align-items: center; 
    justify-content: center; 
    margin: 0 auto 24px; 
    color: white; 
    font-size: 1.5rem; 
}
.next-step:nth-child(1) .next-step-icon { background: #3b82f6; }
.next-step:nth-child(2) .next-step-icon { background: #8b5cf6; }
.next-step:nth-child(3) .next-step-icon { background: #10b981; }

.next-step h4 { font-size: 1.1rem; margin-bottom: 12px; }
.next-step p { font-size: 0.9rem; color: var(--text-muted); line-height: 1.6; }

/* Prefer to Talk Section */
.talk-direct { background: #0f172a; color: white; padding: 60px 0; text-align: center; }
.talk-direct h2 { font-size: 2.5rem; margin-bottom: 16px; }
.talk-direct p { color: #94a3b8; margin-bottom: 32px; }
.btn-white { background: white; color: #0f172a; padding: 12px 32px; border-radius: 8px; font-weight: 600; display: inline-flex; align-items: center; gap: 8px; }

/* FAQ Section */
.onboarding-faq { padding: 60px 0; background: #fcfdff; }
.onboarding-faq h2 { text-align: center; font-size: 2.5rem; margin-bottom: 60px; }
.faq-list { max-width: 800px; margin: 0 auto; display: flex; flex-direction: column; gap: 16px; }
.faq-item { background: white; border: 1px solid var(--border-color); border-radius: 12px; padding: 24px; cursor: pointer; }
.faq-item h4 { font-size: 1rem; margin-bottom: 8px; }
.faq-item p { font-size: 0.9rem; color: var(--text-muted); }

/* Footer */
.main-footer { background: #0b1120; color: white; padding: 80px 0 40px; }
.footer-grid { display: grid; grid-template-columns: 1.5fr repeat(3, 1fr); gap: 60px; margin-bottom: 60px; }
.footer-brand p { color: #94a3b8; margin-top: 20px; font-size: 0.95rem; }
.footer-links h4 { font-size: 1.1rem; margin-bottom: 24px; }
.footer-links ul li { margin-bottom: 12px; }
.footer-links ul li a { color: #94a3b8; font-size: 0.95rem; }
.footer-links ul li a:hover { color: white; }
.footer-bottom { border-top: 1px solid rgba(255,255,255,0.05); padding-top: 40px; display: flex; justify-content: space-between; font-size: 0.85rem; color: #64748b; }

/* Animations */
.reveal { opacity: 0; transform: translateY(30px); transition: all 0.8s ease-out; }
.reveal.active { opacity: 1; transform: translateY(0); }
