/* ===== BRIGHTSKY SECTOR PAGE SHARED STYLES ===== */

.section-photo {
    width: 100%;
    height: 240px;
    object-fit: cover;
    border-radius: 6px;
    margin-bottom: 28px;
    display: block;
}

.page-wrapper {
    max-width: 1100px;
    margin: 0 auto;
    padding: 50px 30px 80px;
}

/* Breadcrumb */
.breadcrumb {
    font-family: 'Roboto Mono', monospace;
    font-size: 12px;
    color: var(--accent-cyan);
    letter-spacing: 1px;
    margin-bottom: 24px;
}
.breadcrumb a { color: var(--accent-cyan); text-decoration: none; }
.breadcrumb a:hover { text-decoration: underline; }
.breadcrumb span { color: var(--text-grey); margin: 0 6px; }

/* Hero */
.hero-title {
    font-size: clamp(2.5rem, 6vw, 4rem);
    line-height: 1.05;
    margin-bottom: 16px;
}
.hero-title .yellow { color: var(--accent-yellow); }

.hero-subtitle {
    color: var(--text-grey);
    font-size: 15px;
    line-height: 1.7;
    max-width: 600px;
    margin-bottom: 50px;
}

/* Two-column layout */
.two-col {
    display: grid;
    grid-template-columns: 380px 1fr;
    gap: 50px;
    align-items: start;
}

/* Profile Card */
.profile-card {
    background: #0d1626;
    border: 1px solid rgba(255,255,255,0.08);
    padding: 36px;
}

.profile-label {
    font-family: 'Roboto Mono', monospace;
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--accent-cyan);
    text-transform: uppercase;
    border-bottom: 2px solid rgba(78, 199, 228, 0.3);
    padding-bottom: 16px;
    margin-bottom: 32px;
    font-weight: 700;
}

.stat-value {
    font-family: 'Oswald', sans-serif;
    font-size: 3.2rem;
    font-weight: 700;
    color: var(--accent-yellow);
    line-height: 1;
}

.stat-desc {
    color: #d1d5db;
    font-size: 14px;
    margin-top: 8px;
    margin-bottom: 30px;
    letter-spacing: 0.5px;
}

.capabilities-label {
    font-family: 'Roboto Mono', monospace;
    font-size: 14px;
    letter-spacing: 2px;
    color: var(--accent-cyan);
    text-transform: uppercase;
    border-bottom: 2px solid rgba(78, 199, 228, 0.3);
    padding-bottom: 16px;
    margin-bottom: 12px;
    margin-top: 24px;
    font-weight: 700;
}

.capability-item {
    border-bottom: 1px solid rgba(255,255,255,0.06);
    padding: 14px 0;
    color: #d1d5db;
    font-size: 14px;
}

.cta-btn {
    display: block;
    width: 100%;
    background-color: var(--accent-magenta);
    color: white;
    border: none;
    padding: 16px;
    font-family: 'Oswald', sans-serif;
    font-size: 16px;
    font-weight: 600;
    letter-spacing: 2px;
    text-transform: uppercase;
    cursor: pointer;
    margin-top: 28px;
    transition: background-color 0.3s;
}
.cta-btn:hover { background-color: #c4155f; }

/* Right content sections */
.content-section { margin-bottom: 44px; }

.section-title {
    font-size: 1.3rem;
    letter-spacing: 1px;
    margin-bottom: 10px;
}

.section-underline {
    width: 40px;
    height: 2px;
    background: var(--accent-cyan);
    margin-bottom: 20px;
}

.content-section p {
    color: var(--text-grey);
    font-size: 14px;
    line-height: 1.8;
    margin-bottom: 14px;
}
.content-section p strong { color: var(--text-white); }

.methodology-list {
    list-style: none;
    margin: 16px 0;
}
.methodology-list li {
    color: var(--text-grey);
    font-size: 14px;
    line-height: 1.7;
    padding: 8px 0;
    display: flex;
    gap: 10px;
}
.methodology-list li::before {
    content: '✓';
    color: var(--accent-cyan);
    font-weight: 700;
    flex-shrink: 0;
}
.methodology-list li strong { color: var(--text-white); }

/* Responsive */
@media (max-width: 768px) {
    .page-wrapper { padding: 30px 20px 60px; }
    .two-col { grid-template-columns: 1fr; gap: 30px; }
}
