/* Index page specific styles */
.page-section {
    padding: 60px 40px;
    max-width: 1200px;
    margin: 0 auto;
}

.section-title {
    text-align: center;
    font-size: 32px;
    margin-bottom: 48px;
}

#hero {
    padding: 120px 40px 80px;
    max-width: 1200px;
    margin: 0 auto;
    display: flex;
    align-items: center;
    gap: 60px;
}
.hero-content { flex: 0.6; }
.hero-visual { flex: 0.4; }
.hero-title {
    font-size: 48px;
    font-weight: 700;
    line-height: 1.2;
    margin-bottom: 20px;
}
.hero-desc {
    font-size: 18px;
    color: var(--text-secondary);
    margin-bottom: 32px;
}
.hero-actions {
    display: flex;
    gap: 16px;
}
.hero-terminal {
    background: #1E1E2E;
    border-radius: 12px;
    border: 1px solid var(--border-card);
    padding: 24px;
    font-family: 'SF Mono', 'Fira Code', monospace;
    font-size: 13px;
    box-shadow: 0 0 40px rgba(124,58,237,0.1);
}
.hero-terminal-dots {
    display: flex;
    gap: 6px;
    margin-bottom: 16px;
}
.hero-terminal-dot {
    width: 12px;
    height: 12px;
    border-radius: 50%;
}
.hero-terminal-dot.red { background: #EF4444; }
.hero-terminal-dot.yellow { background: #F59E0B; }
.hero-terminal-dot.green { background: #22C55E; }
.hero-terminal-content { color: var(--text-secondary); }
.hero-terminal-prompt { color: var(--success); }
.hero-terminal-status {
    color: var(--primary);
    margin-top: 8px;
}
.hero-terminal-status + .hero-terminal-status {
    margin-top: 0;
}

.feature-cards,
.tool-cards {
    display: flex;
    gap: 24px;
}
.feature-card,
.tool-card {
    flex: 1;
    text-align: center;
    padding: 32px 24px;
}
.feature-icon {
    font-size: 48px;
    margin-bottom: 16px;
}
.tool-icon {
    font-size: 64px;
    margin-bottom: 16px;
}
.feature-title,
.tool-title {
    font-size: 18px;
    font-weight: 600;
    margin-bottom: 8px;
}
.feature-desc,
.tool-desc {
    font-size: 14px;
    color: var(--text-secondary);
}
.tool-card {
    max-width: 480px;
}
.tool-desc {
    margin-bottom: 20px;
}

#faq {
    max-width: 800px;
}

#plan-cards {
    display: flex;
    gap: 24px;
    justify-content: center;
}
.plan-card {
    flex: 1;
    max-width: 360px;
    padding: 32px;
    position: relative;
}
.plan-card:hover { border-color: rgba(124,58,237,0.5); }
.plan-card-featured { border-color: var(--primary); }
.plan-badge {
    position: absolute;
    top: -1px;
    right: 20px;
    background: var(--primary-gradient);
    color: #fff;
    font-size: 11px;
    padding: 4px 12px;
    border-radius: 0 0 6px 6px;
    font-weight: 600;
}
.plan-name {
    font-size: 16px;
    font-weight: 600;
    margin-bottom: 16px;
}
.plan-price-row {
    margin-bottom: 16px;
}
.plan-original-price {
    font-size: 14px;
    color: var(--text-muted);
    text-decoration: line-through;
}
.plan-price {
    font-size: 36px;
    font-weight: 700;
}
.plan-price-unit {
    font-size: 14px;
    color: var(--text-secondary);
}
.plan-save-badge { margin-left: 8px; }
.plan-feature-list {
    border-top: 1px solid var(--border-card);
    padding-top: 16px;
    margin-bottom: 20px;
}
.plan-feature-row {
    display: flex;
    align-items: center;
    gap: 8px;
    margin-bottom: 8px;
    font-size: 14px;
}
.plan-check { color: var(--primary); }
.plan-desc {
    font-size: 13px;
    color: var(--text-muted);
    font-style: italic;
    margin-bottom: 16px;
}

.faq-item {
    margin-bottom: 12px;
    cursor: pointer;
}
.faq-q {
    display: flex;
    justify-content: space-between;
    align-items: center;
}
.faq-question {
    font-weight: 600;
}
.faq-arrow {
    transition: transform 0.3s;
}
.faq-a {
    display: none;
    margin-top: 12px;
    color: var(--text-secondary);
    font-size: 14px;
    line-height: 1.8;
}

.footer-muted-link {
    color: var(--text-muted);
}

@media (max-width: 768px) {
    #hero {
        flex-direction: column;
        padding: 100px 20px 40px;
    }
    .hero-title { font-size: 32px; }
    .page-section { padding: 60px 20px; }
    .feature-cards,
    #plan-cards,
    .tool-cards {
        flex-direction: column;
    }
    #plan-cards { align-items: center; }
}
