/* PainMiner — shared styles */
* { margin: 0; padding: 0; box-sizing: border-box; }

body {
    font-family: 'Segoe UI', -apple-system, BlinkMacSystemFont, sans-serif;
    line-height: 1.7;
    color: #2c3e50;
    background: #f8f9fa;
}

/* Header */
header {
    background: linear-gradient(135deg, #1a1a2e 0%, #16213e 50%, #0f3460 100%);
    color: white;
    padding: 60px 20px;
    text-align: center;
}
header h1 { font-size: 2.8em; margin-bottom: 10px; letter-spacing: -0.5px; }
header h1 span { color: #e94560; }
header p { font-size: 1.2em; opacity: 0.9; max-width: 700px; margin: 0 auto; }
header .subtitle { font-size: 1em; opacity: 0.7; margin-top: 15px; }

/* Navigation */
nav {
    background: #16213e;
    padding: 12px 20px;
    text-align: center;
    border-bottom: 2px solid #e94560;
}
nav a {
    color: rgba(255,255,255,0.85);
    text-decoration: none;
    margin: 0 20px;
    font-weight: 500;
    font-size: 0.95em;
    transition: color 0.2s;
}
nav a:hover, nav a.active { color: #e94560; }

/* Container */
.container { max-width: 1000px; margin: 0 auto; padding: 40px 20px; }

/* Cards */
.card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 25px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border-left: 4px solid #0f3460;
}
.card h2 { color: #1a1a2e; margin-bottom: 12px; font-size: 1.5em; }
.card h3 { color: #0f3460; margin-bottom: 10px; font-size: 1.2em; }
.card p { color: #555; margin-bottom: 12px; }

/* Report cards */
.report-card {
    background: white;
    border-radius: 10px;
    padding: 30px;
    margin-bottom: 20px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
    border: 1px solid #eee;
    display: flex;
    justify-content: space-between;
    align-items: center;
    transition: transform 0.2s, box-shadow 0.2s;
}
.report-card:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(0,0,0,0.1);
}
.report-card .info { flex: 1; }
.report-card .info h3 { color: #1a1a2e; margin-bottom: 5px; font-size: 1.3em; }
.report-card .info p { color: #666; margin: 0; }
.report-card .stats { text-align: right; margin-left: 20px; }
.report-card .stats .count { font-size: 2em; font-weight: 700; color: #e94560; }
.report-card .stats .label { font-size: 0.85em; color: #999; }

.badge {
    display: inline-block;
    padding: 3px 10px;
    border-radius: 20px;
    font-size: 0.75em;
    font-weight: 600;
    margin-left: 8px;
}
.badge.live { background: #d4edda; color: #155724; }
.badge.soon { background: #fff3cd; color: #856404; }

/* CTA */
.cta-section {
    background: linear-gradient(135deg, #1a1a2e 0%, #0f3460 100%);
    color: white;
    border-radius: 10px;
    padding: 40px;
    text-align: center;
    margin: 40px 0;
}
.cta-section h2 { margin-bottom: 15px; font-size: 1.8em; }
.cta-section p { opacity: 0.9; margin-bottom: 20px; max-width: 600px; margin-left: auto; margin-right: auto; }

.btn {
    display: inline-block;
    background: #e94560;
    color: white;
    padding: 14px 30px;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 1.05em;
    transition: background 0.2s, transform 0.2s;
    border: none;
    cursor: pointer;
}
.btn:hover { background: #c0392b; transform: translateY(-2px); }

/* How it works */
.steps { display: grid; grid-template-columns: repeat(auto-fit, minmax(250px, 1fr)); gap: 20px; margin: 30px 0; }
.step {
    background: white;
    border-radius: 10px;
    padding: 25px;
    text-align: center;
    box-shadow: 0 2px 8px rgba(0,0,0,0.06);
}
.step .number {
    display: inline-block;
    width: 40px; height: 40px;
    background: #e94560;
    color: white;
    border-radius: 50%;
    line-height: 40px;
    font-weight: 700;
    margin-bottom: 12px;
}
.step h3 { margin-bottom: 8px; color: #1a1a2e; }
.step p { color: #666; font-size: 0.9em; }

/* Footer */
footer {
    background: #1a1a2e;
    color: rgba(255,255,255,0.6);
    text-align: center;
    padding: 30px 20px;
    margin-top: 60px;
    font-size: 0.9em;
}

/* Pain points (subpages) */
.pain-point {
    background: white;
    border-radius: 8px;
    padding: 25px;
    margin-bottom: 15px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
    border-left: 4px solid #e94560;
}
.pain-point h3 { color: #1a1a2e; margin-bottom: 8px; }
.pain-point .category { color: #0f3460; font-size: 0.85em; font-weight: 600; margin-bottom: 10px; }
.pain-point blockquote {
    background: #f8f9fa;
    border-left: 3px solid #ddd;
    padding: 10px 15px;
    margin: 10px 0;
    font-style: italic;
    color: #555;
}
.pain-point .source { font-size: 0.8em; color: #999; margin-top: 8px; }

/* Payment section */
.payment-box {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid #2ecc71;
    border-radius: 8px;
    padding: 15px;
    margin: 20px 0;
    text-align: center;
}
.payment-box p { color: #1a1a2e; font-weight: 600; margin: 0; opacity: 1; }

/* Responsive */
@media (max-width: 768px) {
    header h1 { font-size: 2em; }
    .report-card { flex-direction: column; text-align: center; }
    .report-card .stats { margin-left: 0; margin-top: 15px; }
    nav a { margin: 0 10px; font-size: 0.85em; }
}
