/* ==========================================================================
   AI BRIDGE FOR WOMEN - COMPACT HERO FIX
   ========================================================================== */

.aibfw-page {
    background-color: #F8FAFF;
    background-image: 
        linear-gradient(to right, #E5EAF5 1px, transparent 1px),
        linear-gradient(to bottom, #E5EAF5 1px, transparent 1px);
    background-size: 60px 60px;
    background-position: center top;
    min-height: 100vh;
    font-family: var(--font-primary, 'Inter', sans-serif);
    color: #1e293b;
    padding-top: 5rem;
    overflow-x: hidden;
}

/* ==========================================================================
   ROBUST RESPONSIVE CONTAINER
   ========================================================================== */
.aibfw-container {
    width: min(1400px, calc(100% - 40px));
    margin: 0 auto;
    padding: 40px 0 60px;
}

@media (min-width: 1024px) {
    .aibfw-container {
        width: min(1400px, calc(100% - 100px));
        padding: 40px 0 60px;
    }
}

/* ==========================================================================
   COMPACT HERO TWO-COLUMN ARCHITECTURE
   ========================================================================== */
.aibfw-hero {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
    width: 100%;
}

@media (min-width: 1024px) {
    .aibfw-hero {
        grid-template-columns: minmax(0, 0.95fr) minmax(0, 1.05fr);
        align-items: center;
        min-height: 520px;
        max-height: 620px; /* Force hero to be compact and ~half screen */
        gap: 40px;
    }
}

/* -----------------------------------------
   LEFT: CONTENT
----------------------------------------- */
.aibfw-hero-content {
    width: 100%;
}

.aibfw-hero-pill {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background-color: #E6F7F1;
    color: #059669;
    padding: 0.5rem 1rem;
    border-radius: 999px;
    font-size: 0.875rem;
    font-weight: 600;
    margin-bottom: 1.5rem;
    border: 1px solid rgba(16, 185, 129, 0.2);
}

.aibfw-hero-title {
    font-size: 2.25rem;
    font-weight: 700;
    line-height: 1.1;
    color: #0f172a;
    margin-bottom: 1rem;
    letter-spacing: -0.03em;
    width: 100%;
}

.aibfw-hero-title .highlight-green {
    color: var(--primary-green, #10b981);
}

@media (min-width: 1024px) {
    .aibfw-hero-title {
        font-size: 3.5rem; /* ~56px, smaller than before */
        max-width: 600px;
    }
}

.aibfw-hero-desc {
    font-size: 1rem;
    line-height: 1.5;
    color: #475569;
    margin-bottom: 0.75rem;
    max-width: 580px;
}

.aibfw-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-top: 1.5rem;
}

/* Highlights Grid */
.aibfw-hero-highlights {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    margin-top: 2.5rem;
    padding-top: 1.5rem;
    border-top: 1px solid #e2e8f0;
}

.aibfw-highlight {
    display: flex;
    gap: 0.75rem;
    align-items: flex-start;
}

.aibfw-highlight-icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 36px;
    height: 36px;
    background-color: #ffffff;
    border-radius: 50%;
    color: var(--primary-green, #10b981);
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    flex-shrink: 0;
}

.aibfw-highlight-content h4 {
    font-size: 1rem;
    font-weight: 700;
    color: #1e293b;
    margin: 0 0 0.15rem 0;
}

.aibfw-highlight-content p {
    font-size: 0.8125rem;
    color: #64748b;
    margin: 0;
    line-height: 1.3;
}


/* -----------------------------------------
   RIGHT: VISUAL 
----------------------------------------- */
.aibfw-hero-visual {
    width: 100%;
    display: flex;
    justify-content: center;
    align-items: center;
}

@media (min-width: 1024px) {
    .aibfw-hero-visual {
        margin: 0 0 0 auto; /* Align to the right */
        justify-content: flex-end;
    }
}

.aibfw-hero-main-img {
    width: 100%;
    max-width: 500px;
    border-radius: 20px;
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.1);
    object-fit: cover;
}

/* ==========================================================================
   AI BRIDGE EXPERIENCE SHOWCASE
   ========================================================================== */
.aibfw-experience {
    width: 100%;
    margin-top: 40px;
    padding-bottom: 60px;
}

.aibfw-exp-card {
    background: #ffffff;
    border-radius: 24px;
    box-shadow: 0 10px 30px -10px rgba(0, 0, 0, 0.08);
    border: 1px solid rgba(0, 0, 0, 0.04);
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .aibfw-exp-card {
        flex-direction: row;
        align-items: stretch;
    }
}

/* Left Visual */
.aibfw-exp-visual {
    position: relative;
    width: 100%;
    background: #f1f5f9;
}

@media (min-width: 1024px) {
    .aibfw-exp-visual {
        flex: 0 0 45%;
        min-height: 380px; /* controlled height */
    }
}

.aibfw-exp-visual img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

@media (max-width: 1023px) {
    .aibfw-exp-visual img {
        aspect-ratio: 4 / 3;
        max-height: 300px;
    }
}

/* Right Content */
.aibfw-exp-content {
    padding: 24px;
    display: flex;
    flex-direction: column;
}

@media (min-width: 1024px) {
    .aibfw-exp-content {
        flex: 1;
        padding: 32px 40px;
        justify-content: center;
    }
}

.aibfw-exp-eyebrow {
    font-size: 12px;
    font-weight: 700;
    color: var(--primary-green, #10b981);
    text-transform: uppercase;
    letter-spacing: 0.1em;
    margin-bottom: 12px;
}

.aibfw-exp-title {
    font-size: 28px;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
    margin: 0 0 16px 0;
}

.aibfw-exp-title .highlight-green {
    color: var(--primary-green, #10b981);
}

@media (min-width: 1024px) {
    .aibfw-exp-title {
        font-size: 32px;
    }
}

.aibfw-exp-desc {
    font-size: 15px;
    line-height: 1.6;
    color: #475569;
    margin: 0 0 24px 0;
    max-width: 90%;
}

.aibfw-exp-features {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.aibfw-exp-feature-pill {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
    padding: 8px 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 500;
    color: #334155;
    transition: all 0.2s ease;
}

.aibfw-exp-feature-pill:hover {
    background: #ffffff;
    border-color: var(--primary-green, #10b981);
    box-shadow: 0 2px 10px rgba(16, 185, 129, 0.1);
}

.aibfw-exp-feature-pill svg {
    color: var(--primary-green, #10b981);
}

/* ==========================================================================
   WHY AI SKILLS MATTER NOW
   ========================================================================== */
.aibfw-why-ai {
    background-color: #0b1120; /* Deep charcoal / green-black */
    background-image: 
        linear-gradient(rgba(255, 255, 255, 0.03) 1px, transparent 1px),
        linear-gradient(90deg, rgba(255, 255, 255, 0.03) 1px, transparent 1px);
    background-size: 40px 40px;
    padding: 80px 0;
    color: #ffffff;
    width: 100%;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.aibfw-why-container {
    width: min(1400px, calc(100% - 40px));
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .aibfw-why-container {
        width: min(1400px, calc(100% - 100px));
    }
}

.aibfw-why-header {
    text-align: center;
    max-width: 800px;
    margin: 0 auto 60px;
}

.aibfw-why-header h2 {
    font-size: 2rem;
    font-weight: 700;
    margin-bottom: 1rem;
    line-height: 1.2;
}

@media (min-width: 1024px) {
    .aibfw-why-header h2 { font-size: 3rem; }
}

.aibfw-why-header .highlight-green {
    color: var(--primary-green, #10b981);
}

.aibfw-why-header p {
    font-size: 1.125rem;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

.aibfw-why-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 48px;
}

@media (min-width: 1024px) {
    .aibfw-why-grid {
        grid-template-columns: 1fr 1fr;
        gap: 64px;
        align-items: start;
    }
}

/* Left Column */
.aibfw-why-data-column {
    display: flex;
    flex-direction: column;
    gap: 32px;
}

/* Chart Container */
.aibfw-chart-container {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 32px;
}

.aibfw-chart-header {
    margin-bottom: 24px;
}

.aibfw-chart-header h4 {
    font-size: 1rem;
    font-weight: 600;
    margin: 0 0 4px 0;
}

.source-label {
    font-size: 0.75rem;
    color: #64748b;
    display: block;
    margin-top: 4px;
}

.aibfw-skill-bars {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.skill-bar-row {
    display: flex;
    flex-direction: column;
    gap: 8px;
}

.skill-label {
    font-size: 0.875rem;
    font-weight: 500;
    color: #cbd5e1;
}

.skill-track {
    width: 100%;
    height: 6px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 999px;
    overflow: hidden;
}

.skill-fill {
    height: 100%;
    background: #64748b;
    border-radius: 999px;
    transform-origin: left;
    animation: drawBar 1.5s ease-out forwards;
}

.skill-fill.fill-ai {
    background: var(--primary-green, #10b981);
}

@keyframes drawBar {
    from { transform: scaleX(0); }
    to { transform: scaleX(1); }
}

/* Stats Grid */
.aibfw-stats-grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 24px;
}

@media (min-width: 600px) {
    .aibfw-stats-grid {
        grid-template-columns: 1fr 1fr;
    }
}

.aibfw-stat-card {
    background: rgba(255, 255, 255, 0.03);
    border: 1px solid rgba(255, 255, 255, 0.08);
    border-radius: 16px;
    padding: 24px;
    display: flex;
    flex-direction: column;
}

.stat-number {
    font-size: 3rem;
    font-weight: 700;
    color: var(--primary-green, #10b981);
    line-height: 1;
    margin-bottom: 12px;
}

.stat-desc {
    font-size: 0.875rem;
    color: #cbd5e1;
    line-height: 1.5;
    margin-bottom: 16px;
    flex: 1;
}

/* Right Column */
.aibfw-why-context-column {
    display: flex;
    flex-direction: column;
    gap: 40px;
}

.aibfw-context-message h3 {
    font-size: 1.75rem;
    font-weight: 400;
    line-height: 1.4;
    color: #ffffff;
    margin: 0 0 16px 0;
}

.aibfw-context-message p {
    font-size: 1.125rem;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

.aibfw-opportunity-box {
    background: rgba(16, 185, 129, 0.1);
    border-left: 4px solid var(--primary-green, #10b981);
    padding: 24px;
    border-radius: 0 12px 12px 0;
}

.aibfw-opportunity-box h4 {
    font-size: 1.125rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 8px 0;
}

.aibfw-opportunity-box p {
    font-size: 0.9375rem;
    color: #cbd5e1;
    line-height: 1.6;
    margin: 0;
}

.aibfw-insights-list {
    display: flex;
    flex-direction: column;
    gap: 24px;
}

.insight-item {
    display: flex;
    gap: 16px;
}

.insight-num {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-green, #10b981);
    border: 1px solid rgba(16, 185, 129, 0.3);
    width: 32px;
    height: 32px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    flex-shrink: 0;
}

.insight-content h5 {
    font-size: 1rem;
    font-weight: 700;
    color: #ffffff;
    margin: 0 0 4px 0;
}

.insight-content p {
    font-size: 0.875rem;
    color: #94a3b8;
    line-height: 1.5;
    margin: 0;
}

/* ==========================================================================
   CURRICULUM SECTION
   ========================================================================== */
.aibfw-curriculum {
    padding: 80px 20px;
    background-color: #f8fafc; /* Very light neutral cool gray */
    width: 100%;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.aibfw-curriculum__container {
    max-width: 1000px;
    margin: 0 auto;
    width: 100%;
}

.aibfw-curriculum__header {
    text-align: center;
    margin-bottom: 40px;
}

.aibfw-curriculum__title {
    font-size: 2rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 16px 0;
    line-height: 1.2;
}

.aibfw-curriculum__desc {
    font-size: 1.125rem;
    color: #334155;
    max-width: 700px;
    margin: 0 auto 8px auto;
    line-height: 1.6;
}

.aibfw-curriculum__subdesc {
    font-size: 0.9375rem;
    color: #64748b;
    max-width: 600px;
    margin: 0 auto;
}

@media (min-width: 768px) {
    .aibfw-curriculum {
        padding: 100px 0;
    }
    .aibfw-curriculum__title {
        font-size: 3rem;
    }
}

/* Pathway Strip Overview */
.aibfw-curriculum__strip-wrapper {
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    margin-bottom: 32px;
    padding-bottom: 8px; /* for scrollbar space if needed */
    scrollbar-width: none;
}
.aibfw-curriculum__strip-wrapper::-webkit-scrollbar {
    display: none;
}

.aibfw-curriculum__strip {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 8px;
    white-space: nowrap;
    background: #ffffff;
    padding: 12px 20px;
    border-radius: 100px;
    border: 1px solid #e2e8f0;
    box-shadow: 0 2px 10px rgba(0,0,0,0.02);
    width: max-content;
    margin: 0 auto;
}

.aibfw-curriculum__strip span {
    font-size: 0.75rem;
    font-weight: 700;
    color: #475569;
    letter-spacing: 0.5px;
}
.aibfw-curriculum__strip svg {
    color: #cbd5e1;
}

/* Accordion Container */
.aibfw-curriculum__accordion {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 12px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    margin-bottom: 40px;
}

@media (min-width: 768px) {
    .aibfw-curriculum__accordion {
        padding: 24px;
    }
}

/* Individual Stage */
.aibfw-curriculum__stage {
    border-bottom: 1px solid #f1f5f9;
}
.aibfw-curriculum__stage:last-child {
    border-bottom: none;
}

.aibfw-curriculum__header-btn {
    width: 100%;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: space-between;
    background: none;
    border: none;
    padding: 20px 12px;
    cursor: pointer;
    text-align: left;
    transition: all 0.2s ease;
    gap: 12px;
}

.aibfw-curriculum__header-btn:hover {
    background: #f8fafc;
    border-radius: 12px;
}

@media (min-width: 768px) {
    .aibfw-curriculum__header-btn {
        flex-direction: row;
        align-items: center;
        padding: 24px 20px;
    }
}

.header-left {
    display: flex;
    align-items: center;
    gap: 16px;
}

.stage-num {
    font-size: 0.875rem;
    font-weight: 700;
    color: var(--primary-green, #10b981);
    background: rgba(16, 185, 129, 0.1);
    padding: 4px 8px;
    border-radius: 6px;
}

.stage-title {
    font-size: 1.125rem;
    font-weight: 600;
    color: #0f172a;
}
@media (min-width: 768px) {
    .stage-title {
        font-size: 1.25rem;
    }
}

.header-right {
    display: flex;
    align-items: center;
    gap: 12px;
    width: 100%;
    justify-content: space-between;
}
@media (min-width: 768px) {
    .header-right {
        width: auto;
        justify-content: flex-end;
        gap: 24px;
    }
}

.stage-domain {
    font-size: 0.8125rem;
    color: #64748b;
    font-weight: 500;
}

.curr-chevron {
    color: #94a3b8;
    transition: transform 0.3s ease;
}

.aibfw-curriculum__stage.active .curr-chevron {
    transform: rotate(180deg);
}

.aibfw-curriculum__content-wrapper {
    overflow: hidden;
    transition: max-height 0.4s ease-in-out;
}

.aibfw-curriculum__inner {
    padding: 0 12px 24px 12px;
}
@media (min-width: 768px) {
    .aibfw-curriculum__inner {
        padding: 0 20px 32px 64px; /* Indent under the title */
    }
}

/* Session Items */
.session-item {
    border-bottom: 1px dashed #e2e8f0;
    padding: 20px 0;
}
.session-item:first-child {
    padding-top: 10px;
}
.session-item:last-child {
    border-bottom: none;
    padding-bottom: 32px;
}

.session-title {
    font-size: 1.0625rem;
    font-weight: 600;
    color: #0f172a;
    margin: 0 0 8px 0;
}

.session-topics {
    font-size: 0.9375rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}

/* Outcomes and Careers */
.stage-outcomes {
    background: #f8fafc;
    border-radius: 12px;
    padding: 20px;
    border: 1px solid #f1f5f9;
}

.outcome-block {
    margin-bottom: 20px;
}
.outcome-block h6, .career-block h6 {
    font-size: 0.75rem;
    font-weight: 700;
    color: #64748b;
    letter-spacing: 1px;
    margin: 0 0 8px 0;
}
.outcome-block p {
    font-size: 0.9375rem;
    color: #0f172a;
    font-weight: 500;
    margin: 0;
    line-height: 1.5;
}

.pathway-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}
.c-tag {
    font-size: 0.8125rem;
    color: var(--primary-green, #10b981);
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 4px 10px;
    border-radius: 6px;
    font-weight: 500;
}

/* Career Milestone Transition */
.curriculum-transition-milestone {
    background: #0f172a;
    border-radius: 16px;
    padding: 32px 24px;
    margin: 16px 0;
    text-align: center;
}
.curriculum-transition-milestone h4 {
    color: #cbd5e1;
    font-size: 0.75rem;
    letter-spacing: 1px;
    font-weight: 700;
    margin: 0 0 16px 0;
}
.curriculum-transition-milestone p {
    color: #f8fafc;
    font-size: 1.0625rem;
    line-height: 1.6;
    margin: 0 auto 24px auto;
    max-width: 600px;
}
.transition-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
}
.transition-tags span {
    color: var(--primary-green, #10b981);
    font-size: 0.875rem;
    font-weight: 600;
    background: rgba(16, 185, 129, 0.1);
    padding: 6px 12px;
    border-radius: 8px;
}

/* Final Milestone */
.aibfw-curriculum__milestone {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 24px;
    padding: 32px 20px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.03);
    text-align: center;
}
@media (min-width: 768px) {
    .aibfw-curriculum__milestone {
        padding: 48px;
    }
}
.milestone-content h3 {
    font-size: 1.5rem;
    font-weight: 700;
    color: #0f172a;
    margin: 0 0 16px 0;
}
@media (min-width: 768px) {
    .milestone-content h3 {
        font-size: 2rem;
    }
}
.milestone-content p {
    font-size: 1rem;
    color: #475569;
    max-width: 700px;
    margin: 0 auto 32px auto;
    line-height: 1.6;
}
.milestone-pathway-strip {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    gap: 12px;
    font-size: 0.8125rem;
    font-weight: 700;
    color: #94a3b8;
    margin-bottom: 40px;
}
.milestone-pathway-strip span {
    color: #0f172a;
}
.explore-text {
    font-size: 0.875rem !important;
    font-weight: 600 !important;
    color: #0f172a !important;
    margin-bottom: 16px !important;
}
.milestone-career-tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    max-width: 800px;
    margin: 0 auto;
}
.career-tag {
    font-size: 0.875rem;
    color: var(--primary-green, #10b981);
    background: rgba(16, 185, 129, 0.05);
    border: 1px solid rgba(16, 185, 129, 0.2);
    padding: 8px 16px;
    border-radius: 8px;
    font-weight: 600;
}

/* ==========================================================================
   INDUSTRY PARTNERS - 100VW & GRADIENT OVERLAYS
   ========================================================================== */
.aibfw-page .industry-partners {
    width: 100%;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background-color: transparent; 
    border-top: none;
    border-bottom: none;
    padding: 3rem 0; /* slightly tighter than original */
}

/* Hard gradient fade on both sides using pseudo-elements */
.aibfw-page .industry-partners__track-wrapper::before,
.aibfw-page .industry-partners__track-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    bottom: 0;
    width: 15%;
    min-width: 100px;
    z-index: 2;
    pointer-events: none;
}

.aibfw-page .industry-partners__track-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #F8FAFF 0%, transparent 100%);
}

.aibfw-page .industry-partners__track-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #F8FAFF 0%, transparent 100%);
}

.aibfw-page .industry-partners-header p {
    color: #64748b; /* Aibfw specific text muted color */
}


/* ==========================================================================
   COLLEGE CTA SECTION
   ========================================================================== */
.aibfw-college-cta {
    position: relative;
    width: 100%;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    background: linear-gradient(135deg, #3b0918 0%, #1a0404 70%, rgba(255, 255, 255, 0.08) 100%);
    padding: 64px 20px;
    overflow: hidden;
}

@media (min-width: 1024px) {
    .aibfw-college-cta {
        padding: 80px 0;
    }
}

.aibfw-college-cta__glow {
    position: absolute;
    top: 50%;
    right: 10%;
    transform: translateY(-50%);
    width: 600px;
    height: 600px;
    background: radial-gradient(circle, rgba(255, 255, 255, 0.06) 0%, rgba(26, 4, 4, 0) 70%);
    pointer-events: none;
    z-index: 0;
}

.aibfw-college-cta__container {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    gap: 40px;
    width: min(1400px, calc(100% - 40px));
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .aibfw-college-cta__container {
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        gap: 64px;
    }
}

.aibfw-college-cta__content {
    flex: 1;
    max-width: 520px;
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.aibfw-college-cta__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: rgba(16, 185, 129, 0.1);
    border: 1px solid rgba(16, 185, 129, 0.2);
    color: var(--primary-green, #10b981);
    padding: 6px 14px;
    border-radius: 100px;
    font-size: 0.75rem;
    font-weight: 700;
    letter-spacing: 0.5px;
    text-transform: uppercase;
    align-self: flex-start;
}

.aibfw-college-cta__title {
    font-size: 2rem;
    line-height: 1.15;
    color: #ffffff;
    font-weight: 700;
    margin: 0;
}

@media (min-width: 1024px) {
    .aibfw-college-cta__title {
        font-size: 3.125rem;
    }
}

.aibfw-college-cta__desc {
    font-size: 1rem;
    color: #94a3b8;
    line-height: 1.6;
    margin: 0;
}

@media (min-width: 1024px) {
    .aibfw-college-cta__desc {
        font-size: 1.0625rem;
    }
}

.aibfw-college-cta__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: 16px;
    margin-top: 8px;
}

.aibfw-college-cta__disclaimer {
    font-size: 0.8125rem;
    color: #64748b;
    margin-top: -4px;
}

.aibfw-college-cta__visual {
    flex: 1;
    position: relative;
    width: 100%;
    display: flex;
    justify-content: flex-end;
}

.aibfw-college-cta__image {
    width: 100%;
    aspect-ratio: 16 / 9;
    object-fit: cover;
    border-radius: 20px;
    box-shadow: 0 20px 40px rgba(0, 0, 0, 0.4);
}

@media (min-width: 1024px) {
    .aibfw-college-cta__image {
        height: 380px;
        width: 100%;
        max-width: 650px;
        aspect-ratio: auto;
    }
}

.aibfw-college-cta__floating-label {
    position: absolute;
    bottom: 24px;
    left: 24px;
    background: rgba(11, 17, 32, 0.85);
    backdrop-filter: blur(8px);
    border: 1px solid rgba(255, 255, 255, 0.1);
    padding: 12px 20px;
    border-radius: 12px;
    box-shadow: 0 10px 25px rgba(0,0,0,0.3);
}

@media (min-width: 1024px) {
    .aibfw-college-cta__floating-label {
        left: calc(100% - 626px); /* Align with the constrained image if it's max 650px wide */
    }
}

.aibfw-college-cta__floating-label .label-text {
    font-size: 0.875rem;
    font-weight: 600;
    color: #e2e8f0;
    letter-spacing: 0.5px;
}

.aibfw-btn-outline-dark {
    border-color: rgba(255, 255, 255, 0.2);
    color: #e2e8f0;
}

.aibfw-btn-outline-dark:hover {
    background: rgba(255, 255, 255, 0.1);
    color: #ffffff;
}
/* ==========================================================================
   FAQ SECTION
   ========================================================================== */
.aibfw-faq {
    padding: 80px 0 100px 0;
    background-color: #f8fafc; /* Extremely subtle off-white to contrast if needed */
    width: 100%;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
}

.aibfw-faq-grid {
    display: flex;
    flex-direction: column;
    gap: 48px;
    width: min(1400px, calc(100% - 40px));
    margin: 0 auto;
}

@media (min-width: 1024px) {
    .aibfw-faq-grid {
        flex-direction: row;
        gap: 64px;
        align-items: flex-start;
        width: min(1400px, calc(100% - 100px));
    }
}

/* Left Column */
.aibfw-faq-left {
    flex: 1;
    max-width: 100%;
}

@media (min-width: 1024px) {
    .aibfw-faq-left {
        flex: 0 0 35%; /* About 35% width for the left side */
        position: sticky;
        top: 100px;
    }
}

.aibfw-faq-eyebrow {
    font-family: var(--font-serif, "Lora", serif);
    font-style: italic;
    font-size: 1.5rem;
    color: #475569;
    display: block;
    margin-bottom: 8px;
}

.aibfw-faq-title {
    font-size: 2.25rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.2;
    margin: 0 0 16px 0;
}

@media (min-width: 1024px) {
    .aibfw-faq-title {
        font-size: 2.75rem;
    }
}

.highlight-underline {
    position: relative;
    display: inline-block;
    z-index: 1;
}

.highlight-underline::after {
    content: '';
    position: absolute;
    bottom: 2px;
    left: 0;
    width: 100%;
    height: 8px;
    background-color: rgba(16, 185, 129, 0.2);
    z-index: -1;
    border-radius: 4px;
}

.aibfw-faq-desc {
    font-size: 1.0625rem;
    color: #475569;
    line-height: 1.6;
    margin: 0 0 32px 0;
}

/* Category Navigation */
.aibfw-faq-nav {
    display: flex;
    flex-direction: column;
    gap: 12px;
}

.faq-cat-btn {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    text-align: left;
    background: #ffffff;
    border: 1px solid #e2e8f0;
    padding: 16px 20px;
    border-radius: 12px;
    font-size: 1rem;
    font-weight: 600;
    color: #334155;
    cursor: pointer;
    transition: all 0.2s ease;
    font-family: inherit;
}

.faq-cat-btn:hover {
    border-color: #cbd5e1;
    background: #f8fafc;
}

.faq-cat-btn.active {
    background: rgba(16, 185, 129, 0.05);
    border-color: var(--primary-green, #10b981);
    color: var(--primary-green, #10b981);
}

.faq-cat-btn svg {
    color: #94a3b8;
    transition: transform 0.2s ease, color 0.2s ease;
}

.faq-cat-btn.active svg {
    color: var(--primary-green, #10b981);
}

/* Right Column */
.aibfw-faq-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    gap: 32px;
    min-width: 0;
}

/* Illustration */
.aibfw-faq-illustration {
    position: relative;
    width: 100%;
    max-width: 600px;
    height: 160px;
    margin: 0 auto;
    border-radius: 16px;
    overflow: hidden;
    background: #f1f5f9;
}

@media (min-width: 1024px) {
    .aibfw-faq-illustration {
        height: 140px; /* Keep it subtle/short */
        margin: 0;
        max-width: 100%;
    }
}

.faq-illus-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center 20%;
}

.faq-illus-overlay {
    position: absolute;
    inset: 0;
    background: linear-gradient(to right, rgba(255,255,255,0.8), rgba(248, 250, 252, 0.4));
}

.faq-illus-badge {
    position: absolute;
    width: 32px;
    height: 32px;
    background: #ffffff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: var(--primary-green, #10b981);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

.faq-illus-badge.top-left {
    top: 20px;
    left: 20px;
    animation: float 4s ease-in-out infinite;
}

.faq-illus-badge.bottom-right {
    bottom: 20px;
    right: 20px;
    animation: float 4s ease-in-out infinite reverse;
}

@keyframes float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-8px); }
}

/* Accordion */
.aibfw-faq-accordion {
    display: flex;
    flex-direction: column;
    gap: 16px;
}

.aibfw-faq-item {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    overflow: hidden;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.aibfw-faq-item:hover {
    border-color: #cbd5e1;
}

.aibfw-faq-item.active {
    border-color: rgba(16, 185, 129, 0.3);
    box-shadow: 0 4px 20px rgba(16, 185, 129, 0.04);
}

.faq-question-btn {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 20px;
    background: transparent;
    border: none;
    text-align: left;
    cursor: pointer;
    font-family: inherit;
    gap: 16px;
}

.faq-q-text {
    font-size: 1.0625rem;
    font-weight: 600;
    color: #1e293b;
    line-height: 1.4;
    display: flex;
    gap: 12px;
    align-items: flex-start;
}

.faq-q-num {
    font-weight: 700;
    color: var(--primary-green, #10b981);
    flex-shrink: 0;
}

.faq-chevron {
    color: #64748b;
    flex-shrink: 0;
    transition: transform 0.3s ease;
}

.aibfw-faq-item.active .faq-chevron {
    transform: rotate(180deg);
    color: var(--primary-green, #10b981);
}

.faq-answer-wrapper {
    overflow: hidden;
    transition: max-height 0.3s ease;
}

.faq-answer-content {
    padding: 0 20px 24px 44px; /* Align text with question, factoring in the Q.x width */
}

@media (max-width: 600px) {
    .faq-answer-content {
        padding: 0 20px 20px 20px; /* Reset on very small screens if needed */
    }
}

.faq-answer-content p {
    font-size: 1rem;
    color: #475569;
    line-height: 1.6;
    margin: 0;
}
