/**
 * BroPro Ecosystem — Policy & Support Hub Stylesheet
 * Integrates directly with ecosystem.css design tokens
 * High-contrast, WCAG AAA compliant, Dark (Obsidian) & Light (Pearl) themes
 */

/* ========================================================
   1. PAGE CONTAINER & AMBIENT BACKDROP
   ======================================================== */
.policy-page-shell {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    padding-bottom: 5rem;
}

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

/* ========================================================
   2. BREADCRUMBS & LIVE STATUS PILL
   ======================================================== */
.policy-top-bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.policy-breadcrumbs {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.45rem 1rem;
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    color: var(--text-muted);
    box-shadow: var(--shadow-sm);
}

.policy-breadcrumbs a {
    color: var(--text-muted);
    text-decoration: none;
    transition: color 0.2s ease;
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
}

.policy-breadcrumbs a:hover {
    color: var(--emerald-bright);
}

.breadcrumb-sep {
    color: var(--text-dim);
    font-size: 0.75rem;
}

.breadcrumb-current {
    color: var(--emerald-bright);
    font-weight: 600;
}

.live-status-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    padding: 0.45rem 1rem;
    background: rgba(16, 185, 129, 0.08);
    border: 1px solid var(--emerald-border);
    border-radius: var(--radius-full);
    font-size: 0.825rem;
    font-weight: 600;
    color: var(--emerald-bright);
}

.status-pulse-dot {
    width: 8px;
    height: 8px;
    border-radius: 50%;
    background: #10b981;
    position: relative;
    box-shadow: 0 0 10px #10b981;
}

.status-pulse-dot::after {
    content: '';
    position: absolute;
    top: -3px;
    left: -3px;
    width: 14px;
    height: 14px;
    border-radius: 50%;
    border: 2px solid #10b981;
    animation: statusPing 2s cubic-bezier(0, 0, 0.2, 1) infinite;
}

@keyframes statusPing {
    0% { transform: scale(0.8); opacity: 1; }
    100% { transform: scale(2.4); opacity: 0; }
}

/* ========================================================
   3. HERO BANNER
   ======================================================== */
.policy-hero {
    text-align: center;
    max-width: 840px;
    margin: 0 auto 3rem;
}

.policy-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    padding: 0.35rem 0.95rem;
    background: rgba(245, 158, 11, 0.1);
    border: 1px solid var(--amber-border);
    border-radius: var(--radius-full);
    color: var(--amber-bright);
    font-size: 0.775rem;
    font-weight: 750;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    margin-bottom: 1.25rem;
}

.policy-hero-title {
    font-size: clamp(2.2rem, 4.5vw, 3.25rem);
    font-weight: 850;
    line-height: 1.15;
    letter-spacing: -0.03em;
    color: var(--text-primary);
    margin-bottom: 1rem;
}

.gradient-text-brand {
    background: linear-gradient(135deg, var(--emerald-bright) 0%, var(--amber-bright) 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.policy-hero-subtitle {
    font-size: clamp(1rem, 2vw, 1.15rem);
    color: var(--text-secondary);
    line-height: 1.65;
    margin: 0 auto;
}

/* ========================================================
   4. OPERATOR COMPLIANCE BANNER (PAYU / RAZORPAY / LEGAL)
   ======================================================== */
.compliance-operator-card {
    background: var(--bg-surface);
    border: 1.5px solid var(--amber-border);
    border-radius: var(--radius-lg);
    padding: 1.75rem 2rem;
    margin-bottom: 3rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: var(--shadow-md);
    transition: transform 0.3s ease, border-color 0.3s ease;
}

.compliance-operator-card::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    width: 5px;
    height: 100%;
    background: linear-gradient(to bottom, var(--amber-bright), var(--emerald-bright));
}

.compliance-operator-card:hover {
    transform: translateY(-2px);
    border-color: var(--amber-bright);
}

.compliance-info-block {
    display: flex;
    align-items: flex-start;
    gap: 1.25rem;
}

.compliance-seal-icon {
    width: 52px;
    height: 52px;
    border-radius: 14px;
    background: rgba(245, 158, 11, 0.14);
    border: 1px solid var(--amber-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.6rem;
    flex-shrink: 0;
}

.compliance-text h3 {
    font-size: 0.825rem;
    text-transform: uppercase;
    letter-spacing: 0.08em;
    color: var(--amber-bright);
    font-weight: 800;
    margin-bottom: 0.25rem;
}

.compliance-operator-name {
    font-size: 1.35rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.compliance-org-name {
    font-size: 1rem;
    font-weight: 600;
    color: var(--emerald-bright);
    margin-bottom: 0.25rem;
}

.compliance-address-line {
    font-size: 0.9rem;
    color: var(--text-muted);
    line-height: 1.45;
}

.compliance-actions {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn-compliance-copy {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: rgba(245, 158, 11, 0.1);
    color: var(--amber-bright);
    border: 1px solid var(--amber-border);
    padding: 0.65rem 1.15rem;
    border-radius: var(--radius-full);
    font-size: 0.85rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
    user-select: none;
    text-decoration: none;
}

.btn-compliance-copy:hover {
    background: var(--amber-primary);
    color: #ffffff;
    border-color: var(--amber-primary);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-amber);
}

/* ========================================================
   5. PRIMARY CONTACT CARDS GRID
   ======================================================== */
.contact-grid-section {
    margin-bottom: 3.5rem;
}

.section-title-wrap {
    margin-bottom: 1.75rem;
    display: flex;
    align-items: baseline;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.section-heading {
    font-size: 1.5rem;
    font-weight: 800;
    color: var(--text-primary);
    letter-spacing: -0.02em;
    display: flex;
    align-items: center;
    gap: 0.65rem;
}

.section-subtext {
    font-size: 0.9rem;
    color: var(--text-muted);
}

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

.channel-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 1.75rem 1.5rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    position: relative;
    box-shadow: var(--shadow-sm);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease, box-shadow 0.3s ease;
}

.channel-card:hover {
    transform: translateY(-6px);
    border-color: var(--emerald-border);
    box-shadow: var(--shadow-md), var(--shadow-glow-emerald);
}

.channel-card.featured {
    border-color: rgba(245, 158, 11, 0.35);
    background: linear-gradient(180deg, var(--bg-surface) 0%, rgba(245, 158, 11, 0.03) 100%);
}

.channel-card.featured:hover {
    border-color: var(--amber-bright);
    box-shadow: var(--shadow-md), var(--shadow-glow-amber);
}

.channel-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.25rem;
}

.channel-icon-squircle {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: var(--emerald-subtle);
    border: 1px solid var(--emerald-border);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.5rem;
    color: var(--emerald-bright);
    box-shadow: 0 4px 14px rgba(16, 185, 129, 0.15);
}

.channel-icon-squircle.amber {
    background: var(--amber-subtle);
    border-color: var(--amber-border);
    color: var(--amber-bright);
    box-shadow: 0 4px 14px rgba(245, 158, 11, 0.15);
}

.channel-icon-squircle.purple {
    background: rgba(168, 85, 247, 0.12);
    border-color: rgba(168, 85, 247, 0.25);
    color: #c084fc;
}

.channel-sla-tag {
    font-size: 0.725rem;
    font-weight: 700;
    padding: 0.25rem 0.65rem;
    border-radius: var(--radius-full);
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-glass);
    color: var(--text-muted);
}

.channel-sla-tag.rapid {
    background: rgba(16, 185, 129, 0.12);
    border-color: var(--emerald-border);
    color: var(--emerald-bright);
}

.channel-title {
    font-size: 1.2rem;
    font-weight: 750;
    color: var(--text-primary);
    margin-bottom: 0.45rem;
}

.channel-desc {
    font-size: 0.875rem;
    color: var(--text-muted);
    line-height: 1.55;
    margin-bottom: 1.25rem;
    min-height: 42px;
}

.channel-contact-val {
    background: var(--bg-canvas);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-sm);
    padding: 0.65rem 0.85rem;
    font-family: ui-monospace, SFMono-Regular, Menlo, Monaco, Consolas, monospace;
    font-size: 0.925rem;
    font-weight: 700;
    color: var(--emerald-bright);
    margin-bottom: 1.25rem;
    word-break: break-all;
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.channel-contact-val.amber {
    color: var(--amber-bright);
}

.channel-actions {
    display: grid;
    grid-template-columns: 1fr auto;
    gap: 0.5rem;
}

.btn-channel-primary {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    background: var(--emerald-primary);
    color: #ffffff;
    font-weight: 700;
    font-size: 0.875rem;
    padding: 0.7rem 1rem;
    border-radius: var(--radius-md);
    text-decoration: none;
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
}

.btn-channel-primary:hover {
    background: var(--emerald-bright);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-emerald);
}

.btn-channel-primary.amber {
    background: var(--amber-primary);
}

.btn-channel-primary.amber:hover {
    background: var(--amber-bright);
    box-shadow: var(--shadow-glow-amber);
}

.btn-channel-icon {
    width: 42px;
    height: 42px;
    border-radius: var(--radius-md);
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-glass);
    color: var(--text-secondary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.2s ease;
    font-size: 1rem;
}

.btn-channel-icon:hover {
    border-color: var(--emerald-border);
    color: var(--emerald-bright);
    transform: translateY(-2px);
}

/* ========================================================
   6. OPERATING HOURS & SLA MATRIX SECTION
   ======================================================== */
.support-schedule-section {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
    gap: 1.75rem;
    margin-bottom: 3.5rem;
}

@media (max-width: 860px) {
    .support-schedule-section {
        grid-template-columns: 1fr;
    }
}

.schedule-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 2rem;
    box-shadow: var(--shadow-sm);
}

.schedule-header {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 1.5rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-glass);
}

.schedule-header h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.ist-live-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.8rem;
    font-weight: 700;
    padding: 0.35rem 0.85rem;
    border-radius: var(--radius-full);
}

.ist-live-pill.open {
    background: rgba(16, 185, 129, 0.12);
    border: 1px solid var(--emerald-border);
    color: var(--emerald-bright);
}

.ist-live-pill.closed {
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid var(--amber-border);
    color: var(--amber-bright);
}

.hours-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.hour-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0.65rem 0.85rem;
    border-radius: var(--radius-sm);
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-glass);
    font-size: 0.9rem;
}

.hour-day {
    font-weight: 600;
    color: var(--text-primary);
}

.hour-time {
    color: var(--emerald-bright);
    font-weight: 700;
    font-family: ui-monospace, SFMono-Regular, monospace;
}

.hour-time.closed {
    color: var(--text-dim);
}

.sla-stats-card {
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 2rem;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    box-shadow: var(--shadow-sm);
}

.sla-stats-card h3 {
    font-size: 1.25rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.sla-stats-card p {
    font-size: 0.875rem;
    color: var(--text-muted);
    margin-bottom: 1.5rem;
}

.sla-stats-grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 1rem;
}

.sla-stat-box {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    padding: 1.15rem;
    text-align: center;
}

.sla-stat-num {
    font-size: 1.85rem;
    font-weight: 900;
    letter-spacing: -0.02em;
    color: var(--emerald-bright);
    line-height: 1.1;
    margin-bottom: 0.25rem;
}

.sla-stat-num.amber {
    color: var(--amber-bright);
}

.sla-stat-lbl {
    font-size: 0.775rem;
    font-weight: 600;
    color: var(--text-muted);
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* ========================================================
   7. INTERACTIVE QUICK INQUIRY DISPATCHER (CYBER-SECURE)
   ======================================================== */
.inquiry-dispatch-section {
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-xl);
    padding: 2.5rem;
    margin-bottom: 3.5rem;
    box-shadow: var(--shadow-md);
    position: relative;
    overflow: hidden;
}

@media (max-width: 640px) {
    .inquiry-dispatch-section {
        padding: 1.5rem 1.25rem;
    }
}

.inquiry-dispatch-header {
    max-width: 640px;
    margin-bottom: 2rem;
}

.inquiry-dispatch-header h3 {
    font-size: 1.6rem;
    font-weight: 850;
    color: var(--text-primary);
    margin-bottom: 0.5rem;
    letter-spacing: -0.02em;
}

.inquiry-dispatch-header p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.55;
}

.inquiry-form {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.form-grid-2col {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1.25rem;
}

@media (max-width: 680px) {
    .form-grid-2col {
        grid-template-columns: 1fr;
    }
}

.form-group {
    display: flex;
    flex-direction: column;
    gap: 0.45rem;
}

.form-label {
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--text-primary);
}

.form-input,
.form-select,
.form-textarea {
    width: 100%;
    padding: 0.85rem 1.15rem;
    background: var(--bg-canvas);
    border: 1.5px solid var(--border-glass);
    border-radius: var(--radius-md);
    color: var(--text-primary);
    font-size: 0.925rem;
    font-family: inherit;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
    outline: none;
}

.form-input:focus,
.form-select:focus,
.form-textarea:focus {
    border-color: var(--emerald-bright);
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.15);
}

.form-textarea {
    resize: vertical;
    min-height: 120px;
}

.textarea-footer {
    display: flex;
    justify-content: flex-end;
    font-size: 0.775rem;
    color: var(--text-dim);
}

.form-actions-row {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 0.5rem;
}

.form-buttons-group {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    flex-wrap: wrap;
}

.btn-dispatch {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.85rem 1.6rem;
    border-radius: var(--radius-md);
    font-weight: 750;
    font-size: 0.925rem;
    border: none;
    cursor: pointer;
    transition: all 0.2s cubic-bezier(0.16, 1, 0.3, 1);
    user-select: none;
}

.btn-dispatch.email {
    background: var(--emerald-primary);
    color: #ffffff;
    box-shadow: 0 4px 16px rgba(16, 185, 129, 0.25);
}

.btn-dispatch.email:hover {
    background: var(--emerald-bright);
    transform: translateY(-2px);
    box-shadow: var(--shadow-glow-emerald);
}

.btn-dispatch.whatsapp {
    background: #25d366;
    color: #052e16;
    font-weight: 800;
    box-shadow: 0 4px 16px rgba(37, 211, 102, 0.25);
}

.btn-dispatch.whatsapp:hover {
    background: #22c55e;
    color: #ffffff;
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(34, 197, 94, 0.35);
}

.form-security-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.45rem;
    font-size: 0.8rem;
    color: var(--text-muted);
}

/* ========================================================
   8. FREQUENTLY ASKED QUESTIONS (ACCORDION)
   ======================================================== */
.faq-section {
    margin-bottom: 4rem;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 0.85rem;
}

.faq-item {
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-md);
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.faq-item:hover {
    border-color: var(--emerald-border);
}

.faq-item.active {
    border-color: var(--emerald-bright);
    box-shadow: var(--shadow-sm);
}

.faq-question-btn {
    width: 100%;
    padding: 1.25rem 1.5rem;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    background: transparent;
    border: none;
    cursor: pointer;
    text-align: left;
    color: var(--text-primary);
    font-size: 1.05rem;
    font-weight: 700;
    transition: color 0.2s ease;
}

.faq-question-btn:hover {
    color: var(--emerald-bright);
}

.faq-chevron {
    width: 20px;
    height: 20px;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1);
    color: var(--text-dim);
    flex-shrink: 0;
}

.faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--emerald-bright);
}

.faq-answer-panel {
    max-height: 0;
    overflow: hidden;
    transition: max-height 0.35s cubic-bezier(0.16, 1, 0.3, 1), padding 0.35s ease;
    padding: 0 1.5rem;
    color: var(--text-secondary);
    font-size: 0.95rem;
    line-height: 1.65;
}

.faq-item.active .faq-answer-panel {
    max-height: 400px;
    padding: 0 1.5rem 1.5rem;
}

.faq-answer-panel a {
    color: var(--emerald-bright);
    font-weight: 600;
    text-decoration: underline;
    text-underline-offset: 3px;
}

/* ========================================================
   9. INTERACTIVE TOAST NOTIFICATIONS
   ======================================================== */
.policy-toast {
    position: fixed;
    bottom: 2rem;
    right: 2rem;
    z-index: 9999;
    background: var(--bg-surface-elevated);
    color: var(--text-primary);
    border: 1px solid var(--emerald-border);
    padding: 0.85rem 1.35rem;
    border-radius: var(--radius-full);
    font-size: 0.875rem;
    font-weight: 650;
    display: inline-flex;
    align-items: center;
    gap: 0.6rem;
    box-shadow: var(--shadow-lg);
    transform: translateY(100px);
    opacity: 0;
    pointer-events: none;
    transition: all 0.3s cubic-bezier(0.16, 1, 0.3, 1);
}

.policy-toast.visible {
    transform: translateY(0);
    opacity: 1;
    pointer-events: auto;
}

.policy-toast.amber {
    border-color: var(--amber-border);
}

/* ========================================================
   10. FOUNDER KNOWLEDGE GRAPH & FAQ ACCORDION (E-E-A-T)
   ======================================================== */
.founder-profile-card {
    background: radial-gradient(120% 120% at 0% 0%, rgba(5, 150, 105, 0.08) 0%, var(--bg-surface) 100%);
    border: 1px solid rgba(5, 150, 105, 0.28);
    border-radius: var(--radius-xl);
    padding: 2.25rem;
    margin-bottom: 3.5rem;
    box-shadow: var(--shadow-md);
}

[data-theme="light"] .founder-profile-card {
    background: radial-gradient(120% 120% at 0% 0%, rgba(209, 250, 229, 0.5) 0%, #ffffff 100%);
    border-color: rgba(5, 150, 105, 0.25);
    box-shadow: var(--shadow-sm);
}

.founder-profile-header {
    display: flex;
    align-items: center;
    gap: 1.5rem;
    margin-bottom: 1.75rem;
    flex-wrap: wrap;
}

.founder-avatar-badge {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    overflow: hidden;
    background: radial-gradient(circle, #0a1114 65%, #06090c 100%);
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.35), 0 0 18px rgba(245, 158, 11, 0.2);
    border: 2px solid rgba(245, 158, 11, 0.45);
    flex-shrink: 0;
    padding: 0;
    box-sizing: border-box;
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), box-shadow 0.3s ease, border-color 0.3s ease;
}

.founder-avatar-badge:hover {
    transform: scale(1.05);
    border-color: var(--amber-bright);
    box-shadow: 0 10px 25px rgba(5, 150, 105, 0.45), 0 0 28px rgba(245, 158, 11, 0.35);
}

[data-theme="light"] .founder-avatar-badge {
    background: radial-gradient(circle, #ffffff 65%, #f1f5f9 100%);
    border-color: rgba(245, 158, 11, 0.5);
    box-shadow: 0 8px 20px rgba(5, 150, 105, 0.16), 0 0 16px rgba(245, 158, 11, 0.14);
}

.founder-badge-logo {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 50%;
    display: block;
}

.founder-meta-titles h3 {
    font-size: 1.45rem;
    font-weight: 800;
    color: var(--text-primary);
    margin-bottom: 0.25rem;
}

.founder-meta-titles .founder-role-tag {
    display: inline-block;
    font-size: 0.85rem;
    font-weight: 700;
    color: var(--emerald-bright);
    background: var(--emerald-subtle);
    border: 1px solid var(--emerald-border);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
}

.founder-bio-paragraphs p {
    font-size: 0.975rem;
    line-height: 1.7;
    color: var(--text-secondary);
    margin-bottom: 1rem;
}

.founder-bio-paragraphs p:last-child {
    margin-bottom: 0;
}

.faq-card-section {
    background: var(--bg-surface);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-xl);
    padding: 2.25rem;
    margin-bottom: 3.5rem;
    box-shadow: var(--shadow-sm);
}

[data-theme="light"] .faq-card-section {
    background: #ffffff;
    border-color: rgba(15, 23, 42, 0.08);
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}

.faq-item {
    background: var(--bg-surface-elevated);
    border: 1px solid var(--border-glass);
    border-radius: var(--radius-lg);
    padding: 1.25rem 1.5rem;
    transition: all 0.2s ease;
}

[data-theme="light"] .faq-item {
    background: #f8fafc;
    border-color: rgba(15, 23, 42, 0.08);
}

.faq-question {
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.6rem;
}

.faq-question .faq-q-badge {
    color: var(--emerald-bright);
    font-weight: 800;
    font-size: 0.95rem;
}

.faq-answer {
    font-size: 0.925rem;
    line-height: 1.65;
    color: var(--text-secondary);
    margin: 0;
}

/* Core Principles Icons */
.curriculum-icon {
    font-size: 1.75rem;
    line-height: 1;
    margin-bottom: 0.65rem;
    display: inline-block;
}

/* Forward-Looking Domain Expansion Card */
.expansion-horizon-card {
    background: radial-gradient(120% 120% at 0% 0%, rgba(16, 185, 129, 0.08) 0%, rgba(245, 158, 11, 0.05) 50%, var(--bg-surface) 100%);
    border: 1px solid rgba(16, 185, 129, 0.22);
    border-radius: var(--radius-lg);
    padding: 1.75rem 2rem;
    margin-top: 2rem;
    margin-bottom: 3.5rem;
    position: relative;
    overflow: hidden;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.25);
    transition: transform 0.3s cubic-bezier(0.16, 1, 0.3, 1), border-color 0.3s ease;
}

.expansion-horizon-card:hover {
    transform: translateY(-2px);
    border-color: rgba(245, 158, 11, 0.35);
}

.expansion-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.785rem;
    font-weight: 800;
    text-transform: uppercase;
    letter-spacing: 0.07em;
    color: var(--amber-bright);
    background: rgba(245, 158, 11, 0.12);
    border: 1px solid rgba(245, 158, 11, 0.25);
    padding: 0.25rem 0.75rem;
    border-radius: var(--radius-full);
    margin-bottom: 0.65rem;
}

[data-theme="light"] .expansion-horizon-card {
    background: radial-gradient(120% 120% at 0% 0%, rgba(209, 250, 229, 0.6) 0%, rgba(254, 243, 199, 0.4) 50%, #ffffff 100%);
    border-color: rgba(5, 150, 105, 0.25);
    box-shadow: 0 10px 30px -5px rgba(15, 23, 42, 0.07);
}
