/* ============================================
   SEO ANALİZCİ - Ana Stil Dosyası
   ============================================ */

:root {
    --primary: #4f46e5;
    --primary-dark: #4338ca;
    --primary-light: #818cf8;
    --success: #10b981;
    --warning: #f59e0b;
    --error: #ef4444;
    --info: #3b82f6;
    --bg: #f8fafc;
    --bg-dark: #0f172a;
    --card-bg: #ffffff;
    --text: #1e293b;
    --text-light: #64748b;
    --border: #e2e8f0;
    --radius: 12px;
    --shadow: 0 1px 3px rgba(0,0,0,0.08), 0 4px 12px rgba(0,0,0,0.04);
    --shadow-lg: 0 4px 24px rgba(0,0,0,0.1);
    --transition: 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--bg);
    color: var(--text);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 1.5rem;
}

.center {
    text-align: center;
}

/* ============ HEADER ============ */

.header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 100;
    background: rgba(255,255,255,0.85);
    backdrop-filter: blur(12px);
    border-bottom: 1px solid var(--border);
    padding: 0.75rem 0;
}

.header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.logo {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    font-size: 1.3rem;
    color: var(--primary);
    font-weight: 600;
    text-decoration: none;
}

.logo i {
    font-size: 1.5rem;
}

.logo strong {
    color: var(--text);
}

.nav-links {
    display: flex;
    gap: 1.5rem;
}

.nav-links a {
    text-decoration: none;
    color: var(--text-light);
    font-weight: 500;
    font-size: 0.9rem;
    transition: color var(--transition);
}

.nav-links a:hover {
    color: var(--primary);
}

/* ============ HERO ============ */

.hero {
    position: relative;
    padding: 10rem 0 5rem;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    overflow: hidden;
    text-align: center;
}

.hero h1 {
    color: #fff;
    font-size: 2.8rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    margin-bottom: 0.75rem;
    line-height: 1.2;
}

.hero-sub {
    color: rgba(255,255,255,0.85);
    font-size: 1.15rem;
    margin-bottom: 2.5rem;
    font-weight: 400;
}

.search-box {
    display: flex;
    max-width: 700px;
    margin: 0 auto;
    background: #fff;
    border-radius: 16px;
    padding: 6px;
    box-shadow: 0 8px 32px rgba(0,0,0,0.15);
    gap: 6px;
}

.input-wrapper {
    flex: 1;
    display: flex;
    align-items: center;
    padding: 0 1rem;
    gap: 0.75rem;
}

.input-wrapper i {
    color: var(--text-light);
    font-size: 1.1rem;
}

.input-wrapper input {
    flex: 1;
    border: none;
    outline: none;
    font-size: 1rem;
    font-family: inherit;
    color: var(--text);
    padding: 0.8rem 0;
    background: transparent;
}

.input-wrapper input::placeholder {
    color: #94a3b8;
}

#analyzeBtn {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.9rem 2rem;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all var(--transition);
    white-space: nowrap;
}

#analyzeBtn:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(79, 70, 229, 0.4);
}

#analyzeBtn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.hero-hint {
    color: #fca5a5;
    font-size: 0.85rem;
    margin-top: 0.75rem;
    min-height: 1.2rem;
}

/* Hero background shapes */
.hero-bg-shapes {
    position: absolute;
    inset: 0;
    pointer-events: none;
    overflow: hidden;
}

.shape {
    position: absolute;
    border-radius: 50%;
    opacity: 0.08;
    background: #fff;
}

.shape-1 {
    width: 400px;
    height: 400px;
    top: -100px;
    right: -100px;
}

.shape-2 {
    width: 250px;
    height: 250px;
    bottom: -80px;
    left: -50px;
}

.shape-3 {
    width: 150px;
    height: 150px;
    top: 40%;
    left: 15%;
}

/* ============ LOADING ============ */

.loading-section {
    padding: 5rem 0;
    text-align: center;
}

.loader {
    position: relative;
    width: 100px;
    height: 100px;
    margin: 0 auto 2rem;
}

.loader-ring {
    position: absolute;
    inset: 0;
    border: 4px solid var(--border);
    border-top-color: var(--primary);
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

.loader i {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 1.8rem;
    color: var(--primary);
}

@keyframes spin {
    to { transform: rotate(360deg); }
}

.loading-section h2 {
    color: var(--text);
    font-size: 1.5rem;
    margin-bottom: 0.5rem;
}

.loading-url {
    color: var(--text-light);
    font-size: 0.9rem;
    margin-bottom: 2rem;
    word-break: break-all;
}

.loading-steps {
    display: flex;
    justify-content: center;
    gap: 1rem;
    flex-wrap: wrap;
}

.loading-steps .step {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--card-bg);
    border-radius: 999px;
    font-size: 0.85rem;
    color: var(--text-light);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.loading-steps .step.active {
    color: var(--primary);
    border-color: var(--primary-light);
    background: #eef2ff;
}

.loading-steps .step.done {
    color: var(--success);
    border-color: var(--success);
    background: #ecfdf5;
}

/* ============ RESULTS ============ */

.results-section {
    padding: 3rem 0;
}

.top-panels-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 2rem;
    margin-bottom: 2rem;
    align-items: stretch;
}

@media (max-width: 992px) {
    .top-panels-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 1200px) {
    .result-overview {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
    }
    
    .score-circle-wrapper {
        margin: 0 auto;
    }
}

.result-overview {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1.5rem;
    background: var(--card-bg);
    border-radius: var(--radius);
    padding: 2.5rem;
    box-shadow: var(--shadow-lg);
    margin-bottom: 0;
}

.site-preview-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    margin-bottom: 0;
    position: relative;
    display: flex;
    flex-direction: column;
    height: 100%;
}

.site-preview-card.loading::after {
    content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(90deg, var(--bg) 25%, var(--border) 50%, var(--bg) 75%);
    background-size: 200% 100%;
    animation: shimmer 1.4s infinite;
    z-index: 1;
}

@keyframes shimmer {
    0% { background-position: 200% 0; }
    100% { background-position: -200% 0; }
}

.site-preview-card a {
    flex: 1;
    display: flex;
    overflow: hidden;
}

.site-preview-card a img {
    display: block;
    width: 100%;
    height: 100%;
    max-height: 420px;
    object-fit: cover;
    object-position: top;
    background: var(--bg);
    transition: opacity var(--transition);
}

.site-preview-card a:hover img {
    opacity: 0.92;
}

.preview-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.75rem 1.25rem;
    border-top: 1px solid var(--border);
    background: var(--card-bg);
}

.preview-url {
    font-size: 0.85rem;
    color: var(--text-light);
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
    max-width: 60%;
}

.preview-visit-btn {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--primary);
    text-decoration: none;
    padding: 6px 14px;
    border-radius: 6px;
    border: 1px solid var(--primary-light);
    transition: all var(--transition);
}

.preview-visit-btn:hover {
    background: var(--primary);
    color: #fff;
    border-color: var(--primary);
}

.score-circle-wrapper {
    text-align: center;
    flex-shrink: 0;
}

.score-circle {
    position: relative;
    width: 140px;
    height: 140px;
}

.score-circle svg {
    width: 100%;
    height: 100%;
    transform: rotate(-90deg);
}

.score-bg {
    fill: none;
    stroke: #e2e8f0;
    stroke-width: 8;
}

.score-progress {
    fill: none;
    stroke: var(--primary);
    stroke-width: 8;
    stroke-linecap: round;
    stroke-dasharray: 339.292;
    stroke-dashoffset: 339.292;
    transition: stroke-dashoffset 1.5s cubic-bezier(0.4, 0, 0.2, 1), stroke 0.5s;
}

.score-value {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 2.5rem;
    font-weight: 800;
    color: var(--text);
}

.score-label {
    margin-top: 0.5rem;
    font-size: 0.9rem;
    font-weight: 600;
    color: var(--text-light);
}

.overview-details {
    flex: 1;
    min-width: 0;
}

.overview-details h2 {
    font-size: 1.2rem;
    font-weight: 600;
    color: var(--primary);
    word-break: break-all;
    margin-bottom: 0.75rem;
}

.overview-meta {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.25rem;
    margin-bottom: 1rem;
}

.overview-meta span {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.85rem;
    color: var(--text-light);
}

.overview-meta span i {
    color: var(--primary-light);
}

.score-summary {
    padding: 1rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    line-height: 1.5;
}

.score-summary.excellent {
    background: #ecfdf5;
    color: #065f46;
    border-left: 4px solid var(--success);
}

.score-summary.good {
    background: #eff6ff;
    color: #1e40af;
    border-left: 4px solid var(--info);
}

.score-summary.average {
    background: #fffbeb;
    color: #92400e;
    border-left: 4px solid var(--warning);
}

.score-summary.poor {
    background: #fef2f2;
    color: #991b1b;
    border-left: 4px solid var(--error);
}

/* Category scores bar */
.category-scores {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(160px, 1fr));
    gap: 0.75rem;
    margin-bottom: 2rem;
}

.cat-score-card {
    background: var(--card-bg);
    border-radius: 10px;
    padding: 1rem;
    text-align: center;
    box-shadow: var(--shadow);
    border-top: 3px solid transparent;
    transition: transform var(--transition), box-shadow var(--transition);
    cursor: pointer;
}

.cat-score-card:hover {
    transform: translateY(-2px);
    box-shadow: var(--shadow-lg);
}

.cat-score-card .cat-icon {
    font-size: 1.3rem;
    margin-bottom: 0.4rem;
}

.cat-score-card .cat-name {
    font-size: 0.75rem;
    color: var(--text-light);
    font-weight: 500;
    margin-bottom: 0.3rem;
    line-height: 1.3;
}

.cat-score-card .cat-score {
    font-size: 1.5rem;
    font-weight: 800;
}

.cat-score-card.score-high {
    border-top-color: var(--success);
}

.cat-score-card.score-high .cat-icon,
.cat-score-card.score-high .cat-score {
    color: var(--success);
}

.cat-score-card.score-mid {
    border-top-color: var(--warning);
}

.cat-score-card.score-mid .cat-icon,
.cat-score-card.score-mid .cat-score {
    color: var(--warning);
}

.cat-score-card.score-low {
    border-top-color: var(--error);
}

.cat-score-card.score-low .cat-icon,
.cat-score-card.score-low .cat-score {
    color: var(--error);
}

/* Results grid */
.results-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.result-card {
    background: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden;
    transition: box-shadow var(--transition);
}

.result-card:hover {
    box-shadow: var(--shadow-lg);
}

.result-card-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.25rem 1.5rem;
    cursor: pointer;
    user-select: none;
    transition: background var(--transition);
}

.result-card-header:hover {
    background: #f8fafc;
}

.result-card-header-left {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.result-card-icon {
    width: 42px;
    height: 42px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 1.1rem;
}

.result-card-icon.score-high {
    background: #ecfdf5;
    color: var(--success);
}

.result-card-icon.score-mid {
    background: #fffbeb;
    color: var(--warning);
}

.result-card-icon.score-low {
    background: #fef2f2;
    color: var(--error);
}

.result-card-title {
    font-weight: 600;
    font-size: 1rem;
    color: var(--text);
}

.result-card-subtitle {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-top: 2px;
}

.result-card-score {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.score-bar-container {
    width: 120px;
    height: 8px;
    background: #e2e8f0;
    border-radius: 4px;
    overflow: hidden;
}

.score-bar-fill {
    height: 100%;
    border-radius: 4px;
    transition: width 1s ease;
}

.score-bar-fill.score-high { background: var(--success); }
.score-bar-fill.score-mid { background: var(--warning); }
.score-bar-fill.score-low { background: var(--error); }

.score-number {
    font-weight: 700;
    font-size: 1.1rem;
    min-width: 35px;
    text-align: right;
}

.score-number.score-high { color: var(--success); }
.score-number.score-mid { color: var(--warning); }
.score-number.score-low { color: var(--error); }

.result-card-toggle {
    color: var(--text-light);
    transition: transform var(--transition);
}

.result-card.open .result-card-toggle {
    transform: rotate(180deg);
}

.result-card-body {
    display: none;
    padding: 0 1.5rem 1.5rem;
    border-top: 1px solid var(--border);
}

.result-card.open .result-card-body {
    display: block;
}

/* Result items */
.result-item {
    display: flex;
    align-items: flex-start;
    gap: 0.75rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid #f1f5f9;
}

.result-item:last-child {
    border-bottom: none;
}

.result-item-icon {
    width: 24px;
    height: 24px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
    font-size: 0.7rem;
    margin-top: 2px;
}

.result-item-icon.type-success { background: #dcfce7; color: #16a34a; }
.result-item-icon.type-warning { background: #fef3c7; color: #d97706; }
.result-item-icon.type-error   { background: #fee2e2; color: #dc2626; }
.result-item-icon.type-info    { background: #dbeafe; color: #2563eb; }

.result-item-content {
    flex: 1;
}

.result-item-title {
    font-weight: 600;
    font-size: 0.9rem;
    color: var(--text);
}

.result-item-desc {
    font-size: 0.82rem;
    color: var(--text-light);
    margin-top: 2px;
    word-break: break-word;
}

/* New Analysis Button */
.btn-new-analysis {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.8rem 2rem;
    background: var(--primary);
    color: #fff;
    border: none;
    border-radius: 10px;
    font-size: 1rem;
    font-weight: 600;
    font-family: inherit;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-new-analysis:hover {
    background: var(--primary-dark);
    transform: translateY(-1px);
}

/* ============ REPORT SECTION ============ */

.report-section {
    margin-top: 2.5rem;
    background: var(--card-bg);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--border);
}

.report-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 1.5rem 2rem;
    background: linear-gradient(135deg, #1e293b, #334155);
    color: #fff;
}

.report-header-left {
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.report-header-left i {
    font-size: 1.4rem;
    opacity: 0.8;
}

.report-header h2 {
    font-size: 1.25rem;
    font-weight: 700;
    margin: 0;
}

.btn-print {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1.2rem;
    background: rgba(255,255,255,0.15);
    color: #fff;
    border: 1px solid rgba(255,255,255,0.25);
    border-radius: 8px;
    font-size: 0.85rem;
    font-weight: 500;
    font-family: inherit;
    cursor: pointer;
    transition: all var(--transition);
}

.btn-print:hover {
    background: rgba(255,255,255,0.25);
}

.report-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    padding: 1.25rem 2rem;
    background: #f8fafc;
    border-bottom: 1px solid var(--border);
    font-size: 0.85rem;
    color: var(--text-light);
}

.report-meta .meta-item {
    display: flex;
    align-items: center;
    gap: 0.4rem;
}

.report-meta .meta-item strong {
    color: var(--text);
}

.report-body {
    padding: 1.5rem 2rem;
}

.report-category {
    margin-bottom: 1.75rem;
}

.report-category:last-child {
    margin-bottom: 0;
}

.report-cat-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 0.6rem;
    margin-bottom: 0.75rem;
    border-bottom: 2px solid var(--border);
}

.report-cat-header-left {
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.report-cat-header-left i {
    font-size: 1rem;
    color: var(--primary);
}

.report-cat-header h3 {
    font-size: 1rem;
    font-weight: 700;
    color: var(--text);
    margin: 0;
}

.report-cat-score {
    font-size: 0.85rem;
    font-weight: 700;
    padding: 0.2rem 0.75rem;
    border-radius: 999px;
}

.report-cat-score.score-high {
    background: #dcfce7;
    color: #16a34a;
}

.report-cat-score.score-mid {
    background: #fef3c7;
    color: #d97706;
}

.report-cat-score.score-low {
    background: #fee2e2;
    color: #dc2626;
}

.report-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.report-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    padding: 0.45rem 0;
    font-size: 0.85rem;
    line-height: 1.5;
    border-bottom: 1px solid #f1f5f9;
}

.report-list li:last-child {
    border-bottom: none;
}

.report-list li .r-icon {
    flex-shrink: 0;
    margin-top: 2px;
    font-size: 0.8rem;
}

.report-list li .r-icon.type-success { color: #16a34a; }
.report-list li .r-icon.type-warning { color: #d97706; }
.report-list li .r-icon.type-error   { color: #dc2626; }
.report-list li .r-icon.type-info    { color: #2563eb; }

.report-list li .r-text {
    flex: 1;
    color: var(--text);
}

.report-list li .r-text strong {
    font-weight: 600;
}

.report-list li .r-desc {
    color: var(--text-light);
    font-size: 0.8rem;
}

.report-footer {
    padding: 1rem 2rem;
    background: #f8fafc;
    border-top: 1px solid var(--border);
    text-align: center;
    font-size: 0.8rem;
    color: var(--text-light);
}

/* Report responsive */
@media (max-width: 768px) {
    .report-header {
        flex-direction: column;
        gap: 0.75rem;
        text-align: center;
        padding: 1.25rem;
    }

    .report-meta {
        padding: 1rem;
        gap: 0.75rem;
        justify-content: center;
    }

    .report-body {
        padding: 1rem;
    }
}

/* ============ FEATURES ============ */

.features-section {
    padding: 5rem 0;
    background: #fff;
}

.features-section h2 {
    text-align: center;
    font-size: 2rem;
    font-weight: 800;
    margin-bottom: 3rem;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(260px, 1fr));
    gap: 1.5rem;
}

.feature-card {
    padding: 1.75rem;
    border-radius: var(--radius);
    border: 1px solid var(--border);
    transition: all var(--transition);
}

.feature-card:hover {
    border-color: var(--primary-light);
    box-shadow: var(--shadow);
    transform: translateY(-2px);
}

.feature-icon {
    width: 50px;
    height: 50px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, #667eea, #764ba2);
    color: #fff;
    border-radius: 12px;
    font-size: 1.2rem;
    margin-bottom: 1rem;
}

.feature-card h3 {
    font-size: 1.05rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.feature-card p {
    font-size: 0.88rem;
    color: var(--text-light);
    line-height: 1.6;
}

/* ============ FOOTER ============ */

.footer {
    padding: 2rem 0;
    text-align: center;
    background: var(--bg-dark);
    color: rgba(255,255,255,0.5);
    font-size: 0.85rem;
}

/* ============ RESPONSIVE ============ */

@media (max-width: 768px) {
    .hero h1 {
        font-size: 1.8rem;
    }

    .hero-sub {
        font-size: 1rem;
    }

    .search-box {
        flex-direction: column;
    }

    #analyzeBtn {
        justify-content: center;
    }

    .result-overview {
        flex-direction: column;
        text-align: center;
        gap: 1.5rem;
        padding: 1.5rem;
    }

    .site-preview-card a img {
        max-height: 240px;
    }

    .preview-bar {
        flex-direction: column;
        gap: 0.5rem;
        text-align: center;
    }

    .preview-url {
        max-width: 100%;
    }

    .overview-meta {
        justify-content: center;
    }

    .category-scores {
        grid-template-columns: repeat(auto-fit, minmax(100px, 1fr));
    }

    .score-bar-container {
        width: 60px;
    }

    .loading-steps {
        flex-direction: column;
        align-items: center;
    }

    .result-card-header {
        padding: 1rem;
    }

    .result-card-body {
        padding: 0 1rem 1rem;
    }
}

@media (max-width: 480px) {
    .hero {
        padding: 8rem 0 3rem;
    }

    .hero h1 {
        font-size: 1.5rem;
    }

    .result-card-score {
        gap: 0.5rem;
    }

    .score-bar-container {
        display: none;
    }

    .nav-links {
        display: none;
    }
}

/* ============ ANIMATIONS ============ */

@keyframes fadeInUp {
    from {
        opacity: 0;
        transform: translateY(20px);
    }
    to {
        opacity: 1;
        transform: translateY(0);
    }
}

.result-card {
    animation: fadeInUp 0.5s ease forwards;
    opacity: 0;
}

.result-card:nth-child(1) { animation-delay: 0.05s; }
.result-card:nth-child(2) { animation-delay: 0.1s; }
.result-card:nth-child(3) { animation-delay: 0.15s; }
.result-card:nth-child(4) { animation-delay: 0.2s; }
.result-card:nth-child(5) { animation-delay: 0.25s; }
.result-card:nth-child(6) { animation-delay: 0.3s; }
.result-card:nth-child(7) { animation-delay: 0.35s; }
.result-card:nth-child(8) { animation-delay: 0.4s; }
.result-card:nth-child(9) { animation-delay: 0.45s; }
.result-card:nth-child(10) { animation-delay: 0.5s; }
.result-card:nth-child(11) { animation-delay: 0.55s; }

/* Print */
@media print {
    .header, .hero, .features-section, .footer, .btn-new-analysis,
    .result-card-toggle, .btn-print, .category-scores {
        display: none !important;
    }

    .results-section {
        padding: 0;
    }

    .result-overview, .results-grid {
        display: none !important;
    }

    .report-section {
        box-shadow: none;
        border: none;
        margin: 0;
    }

    .report-header {
        background: #1e293b !important;
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }

    .report-category {
        break-inside: avoid;
    }

    .report-cat-score {
        -webkit-print-color-adjust: exact;
        print-color-adjust: exact;
    }
}
