/* Skrin Subpages — extends style.css */

.subpage-hero {
    padding: 140px 0 60px;
    text-align: center;
}

.subpage-hero .badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 16px;
    border-radius: 100px;
    border: 1px solid var(--border);
    background: var(--bg-secondary);
    font-size: 13px;
    color: var(--accent);
    margin-bottom: 24px;
}

.subpage-hero h1 {
    font-size: clamp(2rem, 5vw, 3rem);
    font-weight: 700;
    line-height: 1.15;
    margin-bottom: 16px;
    letter-spacing: -0.02em;
}

.subpage-hero h1 .highlight {
    background: linear-gradient(135deg, #10b981, #34d399);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.subpage-hero p {
    font-size: 1.125rem;
    color: var(--text-secondary);
    max-width: 640px;
    margin: 0 auto;
    line-height: 1.7;
}

/* Content sections */
.content-section {
    padding: 60px 0;
}

.content-section h2 {
    font-size: 1.75rem;
    font-weight: 700;
    margin-bottom: 16px;
    letter-spacing: -0.01em;
}

.content-section h3 {
    font-size: 1.25rem;
    font-weight: 600;
    margin-bottom: 12px;
    margin-top: 32px;
}

.content-section p {
    color: var(--text-secondary);
    line-height: 1.75;
    margin-bottom: 16px;
    max-width: 740px;
}

.content-section ul {
    list-style: none;
    padding: 0;
    margin: 0 0 24px;
}

.content-section ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 10px;
    color: var(--text-secondary);
    line-height: 1.6;
}

.content-section ul li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 10px;
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: var(--accent);
}

/* Comparison table */
.compare-table-wrap {
    overflow-x: auto;
    margin: 32px 0;
    border-radius: 12px;
    border: 1px solid var(--border);
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
    font-size: 0.9375rem;
    min-width: 600px;
}

.compare-table thead {
    background: var(--bg-tertiary);
}

.compare-table th {
    padding: 16px 20px;
    text-align: left;
    font-weight: 600;
    color: var(--text-primary);
    border-bottom: 1px solid var(--border);
    white-space: nowrap;
}

.compare-table td {
    padding: 14px 20px;
    border-bottom: 1px solid var(--border-subtle);
    color: var(--text-secondary);
}

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

.compare-table .col-skrin {
    background: rgba(16, 185, 129, 0.05);
    color: var(--text-primary);
    font-weight: 500;
}

.compare-table th.col-skrin {
    color: var(--accent);
}

.check { color: #10b981; font-weight: 600; }
.cross { color: #71717a; }
.partial { color: #eab308; }

/* Verdict box */
.verdict-box {
    background: var(--bg-secondary);
    border: 1px solid var(--border);
    border-radius: 12px;
    padding: 32px;
    margin: 40px 0;
}

.verdict-box h3 {
    margin-top: 0;
    color: var(--accent);
}

/* CTA inline */
.inline-cta {
    text-align: center;
    padding: 60px 0;
    border-top: 1px solid var(--border-subtle);
}

.inline-cta h2 {
    font-size: 1.75rem;
    margin-bottom: 12px;
}

.inline-cta p {
    color: var(--text-secondary);
    margin: 0 auto 24px;
    max-width: 500px;
}

.inline-cta .btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 14px 32px;
    background: var(--accent);
    color: #000;
    font-weight: 600;
    font-size: 0.9375rem;
    border-radius: 8px;
    text-decoration: none;
    transition: background 0.2s;
}

.inline-cta .btn:hover {
    background: var(--accent-hover);
}

/* FAQ page specific */
.faq-list {
    max-width: 740px;
    margin: 0 auto;
}

.faq-list details {
    border-bottom: 1px solid var(--border-subtle);
}

.faq-list summary {
    padding: 20px 0;
    font-weight: 600;
    font-size: 1.0625rem;
    cursor: pointer;
    color: var(--text-primary);
    list-style: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.faq-list summary::-webkit-details-marker { display: none; }

.faq-list summary::after {
    content: '+';
    font-size: 1.5rem;
    color: var(--text-muted);
    transition: transform 0.2s;
}

.faq-list details[open] summary::after {
    content: '−';
    color: var(--accent);
}

.faq-list .faq-body {
    padding: 0 0 20px;
    color: var(--text-secondary);
    line-height: 1.75;
}

/* Breadcrumb */
.breadcrumb {
    padding: 100px 0 0;
    font-size: 0.875rem;
    color: var(--text-muted);
}

.breadcrumb a {
    color: var(--text-muted);
    text-decoration: none;
}

.breadcrumb a:hover {
    color: var(--accent);
}

.breadcrumb span {
    margin: 0 8px;
}

@media (max-width: 768px) {
    .subpage-hero { padding: 120px 0 40px; }
    .subpage-hero h1 { font-size: 1.75rem; }
    .content-section { padding: 40px 0; }
    .verdict-box { padding: 24px; }
}
