/**
 * LeaseCraft pro inner pages — content layout matching homepage-saas
 */

body.lc-pro {
    font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
    background: var(--lc-bg, #F8FAFC);
    color: var(--lc-text, #1F2937);
}

/* Hide legacy chrome that homepage does not use */
body.lc-pro #ai-assistant-banner,
body.lc-pro .premium-banner-spacer,
body.lc-pro .mobile-bottom-nav {
    display: none !important;
}

body.lc-pro .main-content-premium,
body.lc-pro .premium-content-wrapper,
body.lc-pro .page-content {
    padding: 0;
    max-width: none;
    margin: 0;
}

body.lc-pro .content-wrapper {
    padding: 0;
}

.lc-pro-page {
    --lc-pro-muted: #6B7280;
}

.lc-breadcrumb {
    font-size: 0.875rem;
    margin-bottom: 1.25rem;
    color: rgba(255, 255, 255, 0.75);
}

.lc-breadcrumb a {
    color: rgba(255, 255, 255, 0.9);
    text-decoration: none;
}

.lc-breadcrumb a:hover {
    text-decoration: underline;
}

.lc-breadcrumb span {
    color: rgba(255, 255, 255, 0.65);
}

.lc-pro-page .lc-hero--compact {
    padding: 2.5rem 0 3rem;
}

.lc-pro-layout {
    display: grid;
    grid-template-columns: 1fr 320px;
    gap: 2.5rem;
    align-items: start;
}

@media (max-width: 991px) {
    .lc-pro-layout {
        grid-template-columns: 1fr;
    }
}

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

.lc-depth-card {
    background: var(--lc-surface, #fff);
    border: 1px solid var(--lc-border, #E5E7EB);
    border-radius: var(--lc-radius, 12px);
    padding: 1.5rem;
    box-shadow: var(--lc-shadow, 0 1px 3px rgba(0, 0, 0, 0.06));
}

.lc-depth-card h3 {
    font-size: 1.0625rem;
    font-weight: 700;
    color: var(--lc-navy, #153B6A);
    margin-bottom: 0.75rem;
}

.lc-depth-card h3 i {
    margin-right: 0.5rem;
    color: var(--lc-green, #16A34A);
}

.lc-depth-card p,
.lc-depth-card li {
    color: var(--lc-pro-muted);
    line-height: 1.65;
    margin-bottom: 0.5rem;
}

.lc-depth-card ul {
    padding-left: 1.15rem;
    margin-bottom: 0;
}

.lc-pro-content {
    font-size: 1rem;
    line-height: 1.7;
    color: var(--lc-pro-muted);
}

.lc-pro-content h2 {
    font-size: 1.375rem;
    font-weight: 700;
    color: var(--lc-navy, #153B6A);
    margin: 2rem 0 1rem;
}

.lc-pro-content h2:first-child {
    margin-top: 0;
}

.lc-sidebar-card {
    position: sticky;
    top: 1.5rem;
    background: var(--lc-surface, #fff);
    border: 1px solid var(--lc-border, #E5E7EB);
    border-radius: var(--lc-radius-lg, 16px);
    padding: 1.5rem;
    box-shadow: var(--lc-shadow, 0 1px 3px rgba(0, 0, 0, 0.06));
}

.lc-sidebar-card h3 {
    font-size: 1.125rem;
    font-weight: 700;
    color: var(--lc-navy, #153B6A);
    margin-bottom: 0.75rem;
}

.lc-sidebar-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
}

.lc-sidebar-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.9375rem;
    color: var(--lc-pro-muted);
    margin-bottom: 0.5rem;
}

.lc-sidebar-list i {
    color: var(--lc-green, #16A34A);
    margin-top: 0.2rem;
}

.lc-related-links {
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
}

.lc-related-link {
    display: flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.65rem 0.875rem;
    background: var(--lc-bg, #F8FAFC);
    border: 1px solid var(--lc-border, #E5E7EB);
    border-radius: var(--lc-radius, 12px);
    color: var(--lc-navy, #153B6A);
    font-weight: 600;
    font-size: 0.875rem;
    text-decoration: none;
}

.lc-related-link i {
    color: var(--lc-green, #16A34A);
    font-size: 0.75rem;
}

.lc-callout {
    background: rgba(21, 59, 106, 0.06);
    border: 1px solid rgba(21, 59, 106, 0.12);
    border-radius: var(--lc-radius, 12px);
    padding: 1rem 1.25rem;
    color: var(--lc-navy, #153B6A);
    margin: 1.5rem 0;
}

.lc-pro-page .lc-btn-primary.w-100 {
    display: flex;
    justify-content: center;
    width: 100%;
}

.lc-download-row {
    display: flex;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin-top: 1rem;
}

.lc-download-btn {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    padding: 0.5rem 1rem;
    border: 1px solid var(--lc-border, #E5E7EB);
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    color: var(--lc-navy, #153B6A);
    text-decoration: none;
    background: var(--lc-surface, #fff);
}

body.udoc-page-body .lc-nav {
    position: sticky;
    top: 0;
    z-index: 1030;
}

body.udoc-page-body .udoc-page {
    padding-top: 0;
}
