/**
 * Prop firm public detail (/prop-firm/<slug>) — scoped to avoid overriding global shell.
 */

/* --- Theme: dark (class on html; set before paint via inline script + prop-firm-theme.js) --- */
html.prop-firm-theme-dark {
    color-scheme: dark;
}

/* Dark = luxury: warm ink surfaces, champagne-gold accent, soft depth */
html.prop-firm-theme-dark body.page-prop-firm-public {
    --bg-body: #07080b;
    --bg-base: #0f1014;
    --bg-subtle: #16171d;
    --bg-surface: #1e1f28;
    --text-primary: #f7f5f2;
    --text-secondary: #b7b3bd;
    --text-tertiary: #7c7785;
    --border-light: rgba(201, 169, 98, 0.14);
    --border-hover: rgba(212, 175, 55, 0.3);
    --border-focus: rgba(232, 212, 150, 0.45);
    --accent-blue: #d4b76a;
    --accent-primary: #c9a962;
    --accent-hover: #dfc56a;
    --accent-soft: rgba(201, 169, 98, 0.14);
    --status-success: #8fd4b8;
    --status-danger: #e8a598;
    --mc-reg-tier1-bg: rgba(143, 212, 184, 0.12);
    --mc-reg-tier1-text: #b8ebd1;
    --mc-reg-tier1-border: rgba(143, 212, 184, 0.28);
    --mc-danger-bg: rgba(232, 165, 152, 0.1);
    --mc-danger-text: #f0c9c0;
    --mc-danger-border: rgba(232, 165, 152, 0.28);
    --shadow-micro: 0 1px 0 rgba(255, 255, 255, 0.035) inset, 0 1px 3px rgb(0 0 0 / 0.45);
    --shadow-sm: 0 8px 28px rgb(0 0 0 / 0.38);
    --shadow-md: 0 24px 56px -16px rgb(0 0 0 / 0.62);
    --prop-firm-footer-bg: #040506;
    --prop-firm-footer-border: rgba(201, 169, 98, 0.1);
    --prop-firm-footer-status-bg: rgba(255, 255, 255, 0.035);
    --prop-firm-footer-status-hover: rgba(201, 169, 98, 0.09);
    --text-inverse: #14110a;
    --btn-primary-hover-bg: #a88b3a;
    --btn-primary-hover-fg: var(--text-inverse);
    --prop-lux-glow: rgba(201, 169, 98, 0.09);
}

html.prop-firm-theme-dark body.page-prop-firm-public .site-footer {
    background-color: var(--prop-firm-footer-bg);
    color: var(--text-secondary);
}

html.prop-firm-theme-dark body.page-prop-firm-public .footer-brand .logo {
    color: var(--text-primary);
}

html.prop-firm-theme-dark body.page-prop-firm-public .footer-brand p {
    color: var(--text-secondary);
}

html.prop-firm-theme-dark body.page-prop-firm-public .footer-status {
    border-color: var(--prop-firm-footer-border);
    background: var(--prop-firm-footer-status-bg);
    color: var(--text-secondary);
}

html.prop-firm-theme-dark body.page-prop-firm-public .footer-status:hover {
    background: var(--prop-firm-footer-status-hover);
}

html.prop-firm-theme-dark body.page-prop-firm-public .footer-title {
    color: var(--text-primary);
}

html.prop-firm-theme-dark body.page-prop-firm-public .footer-links a {
    color: var(--text-tertiary);
}

html.prop-firm-theme-dark body.page-prop-firm-public .footer-links a:hover {
    color: var(--text-primary);
}

html.prop-firm-theme-dark body.page-prop-firm-public .footer-bottom {
    border-top-color: var(--prop-firm-footer-border);
}

html.prop-firm-theme-dark body.page-prop-firm-public .footer-legal a {
    color: var(--text-tertiary);
}

html.prop-firm-theme-dark body.page-prop-firm-public .footer-legal a:hover {
    color: var(--text-primary);
}

html.prop-firm-theme-dark body.page-prop-firm-public .footer-socials a {
    color: var(--text-tertiary);
}

html.prop-firm-theme-dark body.page-prop-firm-public .footer-socials a:hover {
    color: var(--text-primary);
}

html.prop-firm-theme-dark body.page-prop-firm-public .site-landing-header .header-wrapper {
    background: color-mix(in srgb, var(--bg-base) 82%, transparent);
    backdrop-filter: blur(14px);
    -webkit-backdrop-filter: blur(14px);
    border-bottom-color: var(--border-light);
    box-shadow: 0 1px 0 rgba(255, 255, 255, 0.04) inset;
}

html.prop-firm-theme-dark body.page-prop-firm-public .site-landing-header .nav-block a:hover,
html.prop-firm-theme-dark body.page-prop-firm-public .site-landing-header .nav-block a.active {
    background-color: var(--prop-lux-glow);
    color: var(--text-primary);
}

html.prop-firm-theme-dark .prop-firm-detail-page .hero-main {
    background: linear-gradient(
        155deg,
        var(--bg-base) 0%,
        color-mix(in srgb, var(--bg-subtle) 92%, var(--accent-primary)) 48%,
        var(--bg-base) 100%
    );
    border-color: var(--border-light);
    box-shadow: var(--shadow-sm), 0 0 0 1px color-mix(in srgb, var(--accent-primary) 12%, transparent);
}

html.prop-firm-theme-dark .prop-firm-detail-page .hero-logo {
    background: linear-gradient(160deg, var(--bg-surface), var(--bg-subtle));
    border-color: color-mix(in srgb, var(--accent-primary) 22%, var(--border-light));
    box-shadow: inset 0 1px 0 color-mix(in srgb, var(--accent-primary) 18%, transparent);
    color: color-mix(in srgb, var(--text-primary) 88%, var(--accent-primary));
}

html.prop-firm-theme-dark .prop-firm-detail-page .hero-title h1 {
    font-weight: 700;
    letter-spacing: -0.03em;
}

html.prop-firm-theme-dark .prop-firm-detail-page .prop-firm-hero-tagline {
    letter-spacing: 0.02em;
    text-transform: uppercase;
    font-size: 12px;
    font-weight: 600;
    color: var(--text-tertiary);
}

html.prop-firm-theme-dark .prop-firm-detail-page .hero-stats-grid {
    border-top-color: var(--border-light);
}

html.prop-firm-theme-dark .prop-firm-detail-page .stat-lbl {
    letter-spacing: 0.12em;
    font-size: 11px;
    color: var(--text-tertiary);
}

html.prop-firm-theme-dark .prop-firm-detail-page .calc-card {
    border-color: color-mix(in srgb, var(--accent-primary) 22%, var(--border-light));
    box-shadow: var(--shadow-md), 0 0 0 1px color-mix(in srgb, var(--accent-primary) 08%, transparent);
}

html.prop-firm-theme-dark .prop-firm-detail-page .calc-card::before {
    height: 3px;
    background: linear-gradient(
        90deg,
        color-mix(in srgb, var(--accent-primary) 40%, transparent),
        var(--accent-primary),
        color-mix(in srgb, var(--accent-primary) 40%, transparent)
    );
}

html.prop-firm-theme-dark .prop-firm-detail-page .calc-result {
    text-shadow: 0 0 40px color-mix(in srgb, var(--accent-primary) 35%, transparent);
}

html.prop-firm-theme-dark .prop-firm-detail-page .badge {
    background: color-mix(in srgb, var(--bg-surface) 88%, var(--accent-primary));
    border-color: color-mix(in srgb, var(--accent-primary) 16%, var(--border-light));
}

html.prop-firm-theme-dark .prop-firm-detail-page .badge.badge-success {
    border-color: color-mix(in srgb, var(--prop-firm-success) 25%, transparent);
}

html.prop-firm-theme-dark .prop-firm-detail-page .section-title {
    letter-spacing: -0.02em;
}

html.prop-firm-theme-dark .prop-firm-detail-page .section-title i {
    border-radius: 12px;
    box-shadow: 0 0 20px color-mix(in srgb, var(--accent-primary) 15%, transparent);
}

html.prop-firm-theme-dark .prop-firm-detail-page .verdict-box {
    box-shadow: var(--shadow-micro);
}

html.prop-firm-theme-dark .prop-firm-detail-page .verdict-box.pros {
    border-top-color: color-mix(in srgb, var(--prop-firm-success) 75%, transparent);
}

html.prop-firm-theme-dark .prop-firm-detail-page .verdict-box.cons {
    border-top-color: color-mix(in srgb, var(--prop-firm-danger-accent) 75%, transparent);
}

html.prop-firm-theme-dark .prop-firm-detail-page .program-card {
    border-color: var(--border-light);
    box-shadow: var(--shadow-sm);
}

html.prop-firm-theme-dark .prop-firm-detail-page .program-header {
    background: linear-gradient(
        180deg,
        color-mix(in srgb, var(--bg-subtle) 94%, var(--accent-primary)) 0%,
        var(--bg-subtle) 100%
    );
    border-bottom-color: var(--border-light);
}

html.prop-firm-theme-dark .prop-firm-detail-page .program-pricing {
    background: color-mix(in srgb, var(--bg-surface) 94%, var(--accent-primary));
    border: 1px solid color-mix(in srgb, var(--accent-primary) 08%, transparent);
}

html.prop-firm-theme-dark .prop-firm-detail-page .data-card {
    box-shadow: var(--shadow-micro);
    border-color: color-mix(in srgb, var(--accent-primary) 08%, var(--border-light));
}

html.prop-firm-theme-dark .prop-firm-detail-page .spec-table td.lbl {
    background: color-mix(in srgb, var(--bg-subtle) 96%, var(--accent-primary));
}

html.prop-firm-theme-dark .prop-firm-detail-page .widget-box {
    box-shadow: var(--shadow-sm);
    border-color: color-mix(in srgb, var(--accent-primary) 12%, var(--border-light));
}

html.prop-firm-theme-dark .prop-firm-detail-page .widget-box--accent-top {
    border-top-width: 3px;
    border-top-color: var(--accent-primary);
    box-shadow: var(--shadow-sm), 0 -1px 0 color-mix(in srgb, var(--accent-primary) 12%, transparent);
}

html.prop-firm-theme-dark .prop-firm-detail-page .btn-primary {
    background: linear-gradient(
        180deg,
        color-mix(in srgb, var(--accent-primary) 88%, #fff) 0%,
        var(--accent-primary) 100%
    );
    color: var(--text-inverse);
    box-shadow: 0 2px 12px color-mix(in srgb, var(--accent-primary) 28%, transparent);
}

html.prop-firm-theme-dark .prop-firm-detail-page .btn-primary:hover {
    background: linear-gradient(
        180deg,
        var(--accent-hover) 0%,
        color-mix(in srgb, var(--accent-primary) 92%, var(--accent-hover)) 100%
    );
    box-shadow: 0 4px 20px color-mix(in srgb, var(--accent-primary) 35%, transparent);
}

html.prop-firm-theme-dark .prop-firm-detail-page .btn-primary:disabled {
    background: var(--bg-surface);
    color: var(--text-tertiary);
    box-shadow: none;
}

/* Theme toggle (header) */
.prop-firm-theme-toggle {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.625rem;
    height: 2.625rem;
    padding: 0;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    background: var(--bg-subtle);
    color: var(--text-secondary);
    cursor: pointer;
    transition: background-color var(--transition-speed) ease,
        border-color var(--transition-speed) ease,
        color var(--transition-speed) ease;
}

.prop-firm-theme-toggle:hover {
    background: var(--bg-surface);
    color: var(--text-primary);
    border-color: var(--border-hover);
}

.prop-firm-theme-toggle:focus-visible {
    outline: 2px solid var(--accent-primary);
    outline-offset: 2px;
}

html.prop-firm-theme-dark .prop-firm-theme-toggle {
    border-color: var(--border-light);
    background: var(--bg-subtle);
    color: var(--text-secondary);
}

html.prop-firm-theme-dark .prop-firm-theme-toggle:hover {
    border-color: var(--border-hover);
    background: color-mix(in srgb, var(--bg-surface) 85%, var(--accent-primary));
    color: var(--text-primary);
}

.prop-firm-theme-toggle__icons {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 1.05rem;
    line-height: 1;
}

/* Smooth surface transitions when switching theme */
body.page-prop-firm-public .site-landing-header .header-wrapper,
body.page-prop-firm-public .site-landing-header .header-block,
body.page-prop-firm-public .site-landing-header .menu-container,
body.page-prop-firm-public .site-main--prop-firm-public,
body.page-prop-firm-public .site-footer,
.prop-firm-detail-page .hero-main,
.prop-firm-detail-page .calc-card,
.prop-firm-detail-page .verdict-box,
.prop-firm-detail-page .data-card,
.prop-firm-detail-page .program-card,
.prop-firm-detail-page .widget-box {
    transition: background-color 0.22s ease, border-color 0.22s ease,
        box-shadow 0.22s ease;
}

.page-prop-firm-public .prop-firm-footer-copy {
    color: var(--text-tertiary);
}

.page-prop-firm-public .site-main--prop-firm-public {
    background-color: var(--bg-body);
}

.prop-firm-detail-page {
    --prop-firm-accent: var(--accent-primary);
    --prop-firm-accent-hover: var(--accent-hover);
    --prop-firm-accent-soft: var(--accent-soft);
    --prop-firm-success: var(--status-success);
    --prop-firm-success-bg: var(--mc-reg-tier1-bg);
    --prop-firm-danger: var(--mc-danger-text);
    --prop-firm-danger-bg: var(--mc-danger-bg);
    --prop-firm-danger-accent: var(--status-danger);
    --prop-firm-ease: color var(--transition-speed) ease,
        background-color var(--transition-speed) ease,
        border-color var(--transition-speed) ease,
        transform var(--transition-speed) ease,
        box-shadow var(--transition-speed) ease;
    color: var(--text-primary);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
}

.prop-firm-detail-page a {
    text-decoration: none;
    color: inherit;
    transition: var(--prop-firm-ease);
}

.prop-firm-detail-page .btn-primary {
    background-color: var(--prop-firm-accent);
    color: var(--text-inverse);
    padding: 0.875rem 1.5rem;
    border-radius: var(--radius-md);
    font-weight: 600;
    cursor: pointer;
    border: none;
    transition: var(--prop-firm-ease);
    display: inline-flex;
    justify-content: center;
    align-items: center;
    gap: var(--radius-sm);
    font-size: 14px;
}

.prop-firm-detail-page .btn-primary:hover {
    background-color: var(--prop-firm-accent-hover);
    transform: translateY(-1px);
    box-shadow: var(--shadow-md);
}

.prop-firm-detail-page .btn-primary--compact {
    padding: 0.5rem 1rem;
    font-size: 13px;
}

.prop-firm-detail-page .btn-primary--block {
    width: 100%;
    margin-bottom: 12px;
}

.prop-firm-detail-page .badge {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 6px 12px;
    border-radius: 20px;
    font-size: 13px;
    font-weight: 600;
    background: var(--bg-base);
    color: var(--text-secondary);
    border: 1px solid var(--border-light);
    box-shadow: var(--shadow-micro);
}

.prop-firm-detail-page .badge i {
    color: var(--text-tertiary);
}

.prop-firm-detail-page .badge.badge-success {
    background: var(--prop-firm-success-bg);
    color: var(--prop-firm-success);
    border-color: rgba(16, 185, 129, 0.2);
}

.prop-firm-detail-page .badge.badge-success i {
    color: var(--prop-firm-success);
}

.prop-firm-detail-page .breadcrumb-bar {
    padding: 16px 0;
    font-size: 13px;
    font-weight: 500;
    color: var(--text-secondary);
}

.prop-firm-detail-page .breadcrumb-bar a:hover {
    color: var(--prop-firm-accent);
}

.prop-firm-detail-page .breadcrumb-bar span {
    margin: 0 8px;
    color: var(--border-light);
}

.prop-firm-detail-page .current-page {
    color: var(--text-primary);
    font-weight: 600;
}

.prop-firm-detail-page .hero-section {
    padding: 32px 0 48px;
}

.prop-firm-detail-page .hero-grid {
    display: grid;
    grid-template-columns: 1fr 400px;
    gap: 32px;
    align-items: stretch;
}

.prop-firm-detail-page .hero-main {
    background: var(--bg-base);
    border-radius: var(--radius-xl);
    padding: 40px;
    box-shadow: var(--shadow-micro);
    border: 1px solid var(--border-light);
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

.prop-firm-detail-page .hero-header {
    display: flex;
    gap: 24px;
    margin-bottom: 32px;
}

.prop-firm-detail-page .hero-logo {
    width: 100px;
    height: 100px;
    border-radius: var(--radius-lg);
    background: var(--bg-subtle);
    border: 1px solid var(--border-light);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 20px;
    font-weight: 900;
    color: var(--text-primary);
}

.prop-firm-detail-page .hero-title h1 {
    font-size: 2rem;
    font-weight: 800;
    letter-spacing: -0.5px;
    margin-bottom: 8px;
}

.prop-firm-detail-page .prop-firm-hero-tagline {
    color: var(--text-secondary);
    font-size: 15px;
}

.prop-firm-detail-page .hero-tags {
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
    margin-top: 16px;
}

.prop-firm-detail-page .hero-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 16px;
    margin-top: auto;
    padding-top: 32px;
    border-top: 1px solid var(--border-light);
}

.prop-firm-detail-page .hero-stat {
    display: flex;
    flex-direction: column;
    gap: 4px;
}

.prop-firm-detail-page .stat-lbl {
    font-size: 12px;
    font-weight: 600;
    color: var(--text-secondary);
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.prop-firm-detail-page .stat-val {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
}

.prop-firm-detail-page .calc-card {
    background: var(--bg-base);
    border-radius: var(--radius-xl);
    padding: 32px;
    box-shadow: var(--shadow-md);
    border: 1px solid var(--prop-firm-accent-soft);
    position: relative;
    overflow: hidden;
}

.prop-firm-detail-page .calc-card::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 4px;
    background: var(--prop-firm-accent);
}

.prop-firm-detail-page .calc-header {
    margin-bottom: 24px;
    text-align: center;
}

.prop-firm-detail-page .calc-header h3 {
    font-size: 16px;
    font-weight: 700;
    color: var(--text-secondary);
    margin-bottom: 16px;
}

.prop-firm-detail-page .calc-result {
    font-size: 48px;
    font-weight: 800;
    color: var(--prop-firm-accent);
    line-height: 1;
    margin-bottom: 8px;
}

.prop-firm-detail-page .calc-formula {
    font-size: 13px;
    color: var(--text-tertiary);
    font-family: ui-monospace, monospace;
    background: var(--bg-surface);
    padding: 6px 12px;
    border-radius: var(--radius-sm);
    display: inline-block;
}

.prop-firm-detail-page .calc-input-group {
    margin-bottom: 24px;
}

.prop-firm-detail-page .calc-label {
    display: flex;
    justify-content: space-between;
    font-size: 14px;
    font-weight: 600;
    margin-bottom: 12px;
    color: var(--text-primary);
}

.prop-firm-detail-page .calc-select {
    width: 100%;
    padding: 12px 16px;
    border-radius: var(--radius-md);
    border: 1px solid var(--border-light);
    font-size: 15px;
    font-weight: 600;
    color: var(--text-primary);
    background: var(--bg-subtle);
    outline: none;
    transition: var(--prop-firm-ease);
    appearance: none;
}

.prop-firm-detail-page .calc-select:focus {
    border-color: var(--prop-firm-accent);
    box-shadow: 0 0 0 3px var(--prop-firm-accent-soft);
}

.prop-firm-detail-page .prop-firm-calc-select-wrap {
    position: relative;
}

.prop-firm-detail-page .prop-firm-calc-select-wrap .fa-chevron-down {
    position: absolute;
    right: 16px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--text-tertiary);
    pointer-events: none;
}

.prop-firm-detail-page .prop-firm-range {
    -webkit-appearance: none;
    width: 100%;
    height: 6px;
    background: var(--border-light);
    border-radius: 4px;
    outline: none;
}

.prop-firm-detail-page .prop-firm-range::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: var(--bg-base);
    border: 3px solid var(--prop-firm-accent);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow-micro);
}

.prop-firm-detail-page .prop-firm-range::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: var(--bg-base);
    border: 3px solid var(--prop-firm-accent);
    border-radius: 50%;
    cursor: pointer;
    box-shadow: var(--shadow-micro);
}

.prop-firm-detail-page .slider-val-badge {
    background: var(--prop-firm-accent-soft);
    color: var(--prop-firm-accent);
    padding: 2px 8px;
    border-radius: var(--radius-sm);
    font-size: 13px;
}

.prop-firm-detail-page .layout-grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr) 340px;
    gap: 32px;
    padding-bottom: 96px;
    align-items: start;
}

.prop-firm-detail-page .section-title {
    font-size: 1.25rem;
    font-weight: 800;
    margin-bottom: 24px;
    display: flex;
    align-items: center;
    gap: 12px;
}

.prop-firm-detail-page .section-title i {
    color: var(--prop-firm-accent);
    background: var(--prop-firm-accent-soft);
    width: 36px;
    height: 36px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    border-radius: 10px;
    font-size: 16px;
}

.prop-firm-detail-page .verdict-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 48px;
}

.prop-firm-detail-page .verdict-box {
    background: var(--bg-base);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 24px;
}

.prop-firm-detail-page .verdict-box.pros {
    border-top: 4px solid var(--prop-firm-success);
}

.prop-firm-detail-page .verdict-box.cons {
    border-top: 4px solid var(--prop-firm-danger-accent);
}

.prop-firm-detail-page .verdict-head {
    font-size: 15px;
    font-weight: 700;
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    gap: 8px;
}

.prop-firm-detail-page .verdict-box.pros .verdict-head {
    color: var(--prop-firm-success);
}

.prop-firm-detail-page .verdict-box.cons .verdict-head {
    color: var(--prop-firm-danger);
}

.prop-firm-detail-page .verdict-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.prop-firm-detail-page .verdict-list li {
    display: flex;
    gap: 12px;
    font-size: 14px;
    color: var(--text-secondary);
    align-items: flex-start;
}

.prop-firm-detail-page .verdict-list li i {
    margin-top: 3px;
    font-size: 12px;
}

.prop-firm-detail-page .data-card {
    background: var(--bg-base);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    margin-bottom: 24px;
    overflow: hidden;
    box-shadow: var(--shadow-micro);
}

.prop-firm-detail-page .accordion-btn {
    width: 100%;
    padding: 20px 24px;
    background: var(--bg-base);
    border: none;
    text-align: left;
    font-size: 16px;
    font-weight: 700;
    color: var(--text-primary);
    cursor: pointer;
    display: flex;
    justify-content: space-between;
    align-items: center;
    border-bottom: 1px solid var(--border-light);
    transition: var(--prop-firm-ease);
}

.prop-firm-detail-page .accordion-btn:hover {
    background: var(--bg-subtle);
}

.prop-firm-detail-page .accordion-btn i.fa-chevron-down {
    color: var(--text-tertiary);
    transition: transform 0.3s ease;
}

.prop-firm-detail-page .accordion-btn.active i.fa-chevron-down {
    transform: rotate(180deg);
}

.prop-firm-detail-page .accordion-content {
    display: none;
    padding: 0;
}

.prop-firm-detail-page .accordion-btn.active + .accordion-content {
    display: block;
}

.prop-firm-detail-page .accordion-btn .prop-firm-accordion-lead-icon {
    margin-right: 12px;
    color: var(--prop-firm-accent);
}

.prop-firm-detail-page .spec-table {
    width: 100%;
    border-collapse: collapse;
}

.prop-firm-detail-page .spec-table tr {
    border-bottom: 1px solid var(--border-light);
}

.prop-firm-detail-page .spec-table tr:last-child {
    border-bottom: none;
}

.prop-firm-detail-page .spec-table td {
    padding: 16px 24px;
    font-size: 14px;
    vertical-align: top;
}

.prop-firm-detail-page .spec-table td.lbl {
    width: 35%;
    color: var(--text-secondary);
    font-weight: 600;
    background: var(--bg-subtle);
}

.prop-firm-detail-page .spec-table td.val {
    width: 65%;
    color: var(--text-primary);
    font-weight: 500;
}

.prop-firm-detail-page .spec-desc {
    display: block;
    font-size: 13px;
    color: var(--text-tertiary);
    margin-top: 6px;
    font-weight: 400;
    line-height: 1.5;
}

.prop-firm-detail-page .spec-desc--spaced {
    margin-top: 12px;
}

.prop-firm-detail-page .text-success {
    color: var(--prop-firm-success);
    font-weight: 600;
}

.prop-firm-detail-page .text-danger {
    color: var(--prop-firm-danger);
    font-weight: 600;
}

.prop-firm-detail-page .program-cards {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 24px;
    margin-bottom: 48px;
}

.prop-firm-detail-page .program-card {
    background: var(--bg-base);
    border-radius: var(--radius-xl);
    border: 1px solid var(--border-light);
    overflow: hidden;
    box-shadow: var(--shadow-micro);
}

.prop-firm-detail-page .program-header {
    padding: 24px;
    border-bottom: 1px solid var(--border-light);
    background: var(--bg-subtle);
}

.prop-firm-detail-page .program-type {
    font-size: 12px;
    font-weight: 700;
    color: var(--prop-firm-accent);
    text-transform: uppercase;
    letter-spacing: 0.5px;
    margin-bottom: 4px;
    display: block;
}

.prop-firm-detail-page .program-title {
    font-size: 20px;
    font-weight: 800;
    color: var(--text-primary);
    margin: 0;
}

.prop-firm-detail-page .program-body {
    padding: 24px;
}

.prop-firm-detail-page .program-stat {
    display: flex;
    justify-content: space-between;
    border-bottom: 1px dashed var(--border-light);
    padding: 12px 0;
    font-size: 14px;
}

.prop-firm-detail-page .program-stat:last-child {
    border-bottom: none;
}

.prop-firm-detail-page .program-stat .lbl {
    color: var(--text-secondary);
    font-weight: 500;
}

.prop-firm-detail-page .program-stat .val {
    color: var(--text-primary);
    font-weight: 700;
    text-align: right;
}

.prop-firm-detail-page .program-pricing {
    margin-top: 16px;
    background: var(--bg-surface);
    border-radius: var(--radius-md);
    padding: 16px;
}

.prop-firm-detail-page .price-row {
    display: flex;
    justify-content: space-between;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: 600;
}

.prop-firm-detail-page .price-row:last-child {
    margin-bottom: 0;
}

.prop-firm-detail-page .sidebar-sticky {
    position: sticky;
    top: 100px;
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.prop-firm-detail-page .widget-box {
    background: var(--bg-base);
    border: 1px solid var(--border-light);
    border-radius: var(--radius-lg);
    padding: 24px;
    box-shadow: var(--shadow-micro);
}

.prop-firm-detail-page .widget-box--accent-top {
    border-top: 4px solid var(--prop-firm-accent);
}

.prop-firm-detail-page .widget-box h4 {
    font-size: 16px;
    font-weight: 700;
    margin-bottom: 16px;
}

.prop-firm-detail-page .prop-firm-widget-lead {
    font-size: 14px;
    color: var(--text-secondary);
    margin-bottom: 20px;
}

.prop-firm-detail-page .prop-firm-promo-line {
    text-align: center;
    font-size: 13px;
    font-weight: 600;
    color: var(--text-tertiary);
}

.prop-firm-detail-page .prop-firm-support-block {
    font-size: 14px;
    color: var(--text-secondary);
}

.prop-firm-detail-page .prop-firm-support-row {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    margin-bottom: 8px;
}

.prop-firm-detail-page .prop-firm-support-row:last-child {
    margin-bottom: 0;
}

.prop-firm-detail-page .prop-firm-support-row i {
    flex-shrink: 0;
    width: 20px;
    text-align: center;
    color: var(--text-tertiary);
}

.prop-firm-detail-page .link-list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.prop-firm-detail-page .link-list a {
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 14px;
    font-weight: 600;
    color: var(--text-secondary);
    padding: 10px 12px;
    border-radius: var(--radius-sm);
    background: var(--bg-subtle);
}

.prop-firm-detail-page .link-list a:hover {
    color: var(--prop-firm-accent);
    background: var(--prop-firm-accent-soft);
}

.prop-firm-detail-page .prop-firm-empty-programs {
    margin: 0;
    padding: 16px 0 8px;
    font-size: 15px;
    line-height: 1.5;
    color: var(--text-secondary);
}

@media (max-width: 992px) {
    .prop-firm-detail-page .hero-grid {
        grid-template-columns: 1fr;
    }

    .prop-firm-detail-page .layout-grid {
        grid-template-columns: 1fr;
    }

    .prop-firm-detail-page .hero-stats-grid {
        grid-template-columns: 1fr 1fr;
        gap: 24px;
    }

    .prop-firm-detail-page .verdict-grid {
        grid-template-columns: 1fr;
    }

    .prop-firm-detail-page .program-cards {
        grid-template-columns: 1fr;
    }
}
