/* =================================
   PREMIUM REPORT PAGE
   Extracted from premium_report.html <style> block
   ================================= */

@import 'design-tokens.css';

.premium-hero {
    background: linear-gradient(135deg, var(--indigo-deep) 0%, var(--purple-deep) 100%);
    color: white;
    padding: 4rem 1.5rem;
    text-align: center;
    border-radius: 0 0 20px 20px;
    margin-top: 0;
}

.report-preview-img {
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    max-width: 100%;
    margin: 2rem auto;
    border: 4px solid rgba(255, 255, 255, 0.1);
}

.feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin: 3rem 0;
}

.feature-card {
    background: white;
    padding: 2rem;
    border-radius: 12px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.05);
    border-top: 4px solid var(--purple-primary);
}

.comparison-table-wrapper {
    overflow-x: auto;
    margin: 3rem 0;
    background: white;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    min-width: 600px;
}

.comparison-table th,
.comparison-table td {
    padding: 1rem;
    text-align: left;
    border-bottom: 1px solid var(--border-light, #e5e7eb);
}

.comparison-table th {
    background: var(--bg-surface);
    color: var(--indigo-deep);
}

.comparison-table tr:last-child td {
    border-bottom: none;
}

.price-tag {
    font-size: 2.5rem;
    font-weight: 700;
    color: var(--gold-accent);
    margin: 1rem 0;
}

.strike-price {
    text-decoration: line-through;
    opacity: 0.6;
    font-size: 1.2rem;
}

.guarantee-badge {
    background: var(--bg-surface, #f8f9fa);
    border: 2px dashed var(--purple-primary);
    padding: 2rem;
    border-radius: 12px;
    text-align: center;
    margin: 3rem 0;
}

.premium-lead {
    opacity: 0.9;
}
