/* ========================================
   Samples Page Styles
   Strategy Report Samples
   ======================================== */

/* Hero Section */
.samples-hero {
    padding: 160px 40px 80px;
    text-align: center;
    background: var(--bg-primary);
}

.samples-hero .hero-content {
    max-width: 700px;
    margin: 0 auto;
}

.samples-hero .badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    background: rgba(247, 147, 26, 0.1);
    color: var(--btc-orange);
    padding: 10px 24px;
    border-radius: 50px;
    font-size: 0.85rem;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1px;
    margin-bottom: 25px;
}

.samples-hero h1 {
    font-family: 'Orbitron', sans-serif;
    font-size: 2.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 20px;
}

.samples-hero p {
    color: var(--text-secondary);
    font-size: 1.15rem;
    line-height: 1.7;
}

/* Main Content */
.samples-content {
    background: var(--bg-secondary);
    padding: 60px 0 100px;
}

.samples-container {
    max-width: 1000px;
    margin: 0 auto;
    padding: 0 40px;
}

/* Analysis Notice */
.analysis-notice {
    display: flex;
    align-items: flex-start;
    gap: 20px;
    background: rgba(79, 172, 254, 0.08);
    border: 1px solid rgba(79, 172, 254, 0.2);
    border-radius: 16px;
    padding: 25px 30px;
    margin-bottom: 50px;
}

.analysis-notice i {
    color: var(--accent-blue);
    font-size: 1.5rem;
    flex-shrink: 0;
    margin-top: 3px;
}

.analysis-notice strong {
    color: var(--text-primary);
}

.analysis-notice .notice-sub {
    color: var(--text-muted);
    font-size: 0.9rem;
}

/* Sample Report Card */
.sample-report {
    background: var(--gradient-card);
    border: var(--border-subtle);
    border-radius: 24px;
    padding: 40px;
    margin-bottom: 40px;
    transition: var(--transition-normal);
}

.sample-report:hover {
    border-color: rgba(247, 147, 26, 0.2);
}

.report-header {
    display: flex;
    align-items: flex-start;
    gap: 25px;
    margin-bottom: 35px;
}

.strategy-badge {
    width: 70px;
    height: 70px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.8rem;
    flex-shrink: 0;
}

.strategy-badge.trend {
    background: rgba(79, 172, 254, 0.15);
    color: var(--accent-blue);
}

.strategy-badge.momentum {
    background: rgba(247, 147, 26, 0.15);
    color: var(--btc-orange);
}

.strategy-badge.volatility {
    background: rgba(124, 58, 237, 0.15);
    color: var(--accent-purple);
}

.strategy-badge.combined {
    background: rgba(0, 214, 143, 0.15);
    color: var(--accent-green);
}

.strategy-info h2 {
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 10px;
}

.strategy-info p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.6;
}

/* Metrics Grid */
.report-metrics {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 15px;
    margin-bottom: 35px;
}

.metric-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.05);
    border-radius: 12px;
    padding: 20px 15px;
    text-align: center;
}

.metric-card.highlight {
    background: rgba(0, 214, 143, 0.08);
    border-color: rgba(0, 214, 143, 0.2);
}

.metric-card.highlight.positive .metric-value {
    color: var(--accent-green);
}

.metric-label {
    display: block;
    color: var(--text-muted);
    font-size: 0.8rem;
    margin-bottom: 8px;
}

.metric-value {
    display: block;
    font-size: 1.2rem;
    font-weight: 700;
    color: var(--text-primary);
}

.metric-value.positive {
    color: var(--accent-green);
}

.metric-value.negative {
    color: var(--accent-red);
}

/* Report Analysis */
.report-analysis {
    margin-bottom: 30px;
}

.report-analysis h3 {
    font-size: 1.15rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.report-analysis p {
    color: var(--text-secondary);
    line-height: 1.8;
    margin-bottom: 15px;
}

.report-analysis strong {
    color: var(--btc-orange);
}

.key-findings {
    background: rgba(247, 147, 26, 0.05);
    border: 1px solid rgba(247, 147, 26, 0.15);
    border-radius: 12px;
    padding: 20px 25px;
    margin-top: 20px;
}

.key-findings h4 {
    font-size: 1rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 12px;
}

.key-findings ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.key-findings li {
    color: var(--text-secondary);
    font-size: 0.95rem;
    padding: 8px 0;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.key-findings li:last-child {
    border-bottom: none;
}

.key-findings li strong {
    color: var(--text-primary);
}

/* Report Params */
.report-params {
    background: rgba(255, 255, 255, 0.02);
    border-radius: 12px;
    padding: 20px 25px;
}

.report-params h4 {
    font-size: 0.95rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.param-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.param-item {
    background: rgba(247, 147, 26, 0.1);
    color: var(--btc-orange);
    padding: 8px 16px;
    border-radius: 20px;
    font-size: 0.85rem;
    font-weight: 500;
}

/* Comparison Section */
.comparison-section {
    margin-top: 60px;
    margin-bottom: 50px;
}

.comparison-section h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 30px;
}

.comparison-section h2 i {
    color: var(--btc-orange);
}

.comparison-table-wrapper {
    overflow-x: auto;
    border-radius: 16px;
    border: var(--border-subtle);
}

.comparison-table {
    width: 100%;
    border-collapse: collapse;
    background: var(--gradient-card);
}

.comparison-table th,
.comparison-table td {
    padding: 18px 20px;
    text-align: center;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.comparison-table th {
    background: rgba(0, 0, 0, 0.3);
    color: var(--text-primary);
    font-weight: 600;
    font-size: 0.9rem;
}

.comparison-table td {
    color: var(--text-secondary);
    font-size: 0.95rem;
}

.comparison-table td:first-child {
    text-align: left;
}

.comparison-table td.positive {
    color: var(--accent-green);
    font-weight: 600;
}

.comparison-table td.negative {
    color: var(--accent-red);
}

.comparison-table tr.baseline {
    background: rgba(255, 255, 255, 0.02);
}

.comparison-table tr.baseline td {
    color: var(--text-muted);
}

.rating {
    display: inline-block;
    padding: 4px 12px;
    border-radius: 12px;
    font-size: 0.8rem;
    font-weight: 600;
}

.rating.excellent {
    background: rgba(0, 214, 143, 0.15);
    color: var(--accent-green);
}

.rating.good {
    background: rgba(79, 172, 254, 0.15);
    color: var(--accent-blue);
}

.rating.average {
    background: rgba(247, 147, 26, 0.15);
    color: var(--btc-orange);
}

/* Insights Section */
.insights-section {
    margin-bottom: 60px;
}

.insights-section h2 {
    display: flex;
    align-items: center;
    gap: 12px;
    font-size: 1.5rem;
    font-weight: 600;
    color: var(--text-primary);
    margin-bottom: 30px;
}

.insights-section h2 i {
    color: var(--btc-orange);
}

.insights-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 25px;
}

.insight-card {
    background: var(--gradient-card);
    border: var(--border-subtle);
    border-radius: 16px;
    padding: 30px;
    position: relative;
    transition: var(--transition-normal);
}

.insight-card:hover {
    border-color: rgba(247, 147, 26, 0.2);
}

.insight-number {
    position: absolute;
    top: 20px;
    right: 25px;
    font-family: 'Orbitron', sans-serif;
    font-size: 2.5rem;
    font-weight: 800;
    color: rgba(247, 147, 26, 0.15);
    line-height: 1;
}

.insight-card h3 {
    font-size: 1.1rem;
    font-weight: 600;
    color: var(--btc-orange);
    margin-bottom: 12px;
}

.insight-card p {
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.7;
}

/* Samples CTA */
.samples-cta {
    text-align: center;
}

.cta-box {
    background: var(--gradient-card);
    border: var(--border-accent);
    border-radius: 24px;
    padding: 50px;
}

.cta-box h2 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 15px;
}

.cta-box p {
    color: var(--text-secondary);
    font-size: 1.05rem;
    margin-bottom: 30px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

/* Responsive */
@media (max-width: 1024px) {
    .report-metrics {
        grid-template-columns: repeat(3, 1fr);
    }
}

@media (max-width: 768px) {
    .samples-hero {
        padding: 140px 20px 60px;
    }
    
    .samples-hero h1 {
        font-size: 2rem;
    }
    
    .samples-container {
        padding: 0 20px;
    }
    
    .sample-report {
        padding: 25px;
    }
    
    .report-header {
        flex-direction: column;
        text-align: center;
    }
    
    .strategy-badge {
        margin: 0 auto;
    }
    
    .report-metrics {
        grid-template-columns: repeat(2, 1fr);
    }
    
    .insights-grid {
        grid-template-columns: 1fr;
    }
    
    .comparison-table th,
    .comparison-table td {
        padding: 12px 10px;
        font-size: 0.85rem;
    }
    
    .analysis-notice {
        flex-direction: column;
    }
}

@media (max-width: 480px) {
    .report-metrics {
        grid-template-columns: 1fr;
    }
    
    .param-list {
        flex-direction: column;
    }
    
    .param-item {
        text-align: center;
    }
}
