/* College landing page — teal / emerald accent */

.clg-hero {
    position: relative;
    padding: 7.5rem 0 5rem;
    background: linear-gradient(145deg, #042f2e 0%, #0f766e 45%, #134e4a 100%);
    color: #fff;
    overflow: hidden;
}

.clg-hero::before {
    content: '';
    position: absolute;
    inset: 0;
    background:
        radial-gradient(ellipse 55% 45% at 85% 25%, rgba(45, 212, 191, 0.22) 0%, transparent 55%),
        radial-gradient(ellipse 45% 40% at 10% 75%, rgba(16, 185, 129, 0.18) 0%, transparent 50%);
    pointer-events: none;
}

.clg-hero-grid {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 3rem;
    align-items: center;
}

.clg-hero-badge {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.4rem 1rem;
    border-radius: 999px;
    background: rgba(45, 212, 191, 0.18);
    border: 1px solid rgba(94, 234, 212, 0.35);
    font-size: 0.8rem;
    font-weight: 600;
    color: #99f6e4;
    margin-bottom: 1.25rem;
}

.clg-hero h1 {
    font-size: clamp(2rem, 4.5vw, 3.1rem);
    font-weight: 800;
    line-height: 1.12;
    margin-bottom: 1.25rem;
}

.clg-hero-lead {
    font-size: 1.1rem;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.82);
    margin-bottom: 2rem;
    max-width: 34rem;
}

.clg-hero-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    margin-bottom: 2rem;
}

.clg-hero-actions .hp-btn-primary {
    box-shadow: 0 8px 28px rgba(45, 212, 191, 0.4);
}

.clg-btn-secondary {
    background: transparent;
    color: #fff;
    border: 1.5px solid rgba(255, 255, 255, 0.55);
    box-shadow: none;
}

.clg-btn-secondary:hover {
    background: rgba(255, 255, 255, 0.12);
    border-color: #fff;
    color: #fff;
}

.clg-hero-trust {
    display: flex;
    flex-wrap: wrap;
    gap: 1.5rem;
    font-size: 0.85rem;
    color: rgba(255, 255, 255, 0.65);
}

.clg-hero-trust span {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
}

.clg-hero-trust i {
    color: #5eead4;
}

/* Dashboard mock */
.clg-mock {
    background: rgba(255, 255, 255, 0.06);
    border: 1px solid rgba(255, 255, 255, 0.12);
    border-radius: 20px;
    overflow: hidden;
    backdrop-filter: blur(12px);
    box-shadow: 0 24px 60px rgba(0, 0, 0, 0.35);
}

.clg-mock-bar {
    padding: 0.85rem 1.25rem;
    background: rgba(0, 0, 0, 0.25);
    font-size: 0.8rem;
    font-weight: 600;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    color: rgba(255, 255, 255, 0.9);
}

.clg-mock-bar i {
    color: #5eead4;
}

.clg-mock-body {
    padding: 1.25rem;
}

.clg-mock-job {
    display: grid;
    gap: 0.35rem;
    padding: 0.85rem 1rem;
    background: rgba(255, 255, 255, 0.06);
    border-radius: 12px;
    margin-bottom: 0.6rem;
    font-size: 0.82rem;
}

.clg-mock-job.pending {
    border: 1px dashed rgba(94, 234, 212, 0.4);
}

.clg-mock-job.accepted {
    border: 1px solid rgba(16, 185, 129, 0.35);
}

.clg-mock-job-title {
    font-weight: 600;
    color: #fff;
}

.clg-mock-job-meta {
    font-size: 0.72rem;
    color: rgba(255, 255, 255, 0.55);
}

.clg-mock-action {
    display: inline-block;
    margin-top: 0.25rem;
    font-size: 0.68rem;
    font-weight: 600;
    padding: 0.25rem 0.65rem;
    border-radius: 999px;
    width: fit-content;
}

.clg-mock-action.accept {
    background: rgba(45, 212, 191, 0.25);
    color: #99f6e4;
}

.clg-mock-action.done {
    background: rgba(16, 185, 129, 0.2);
    color: #6ee7b7;
}

.clg-mock-assets {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
    margin-top: 0.75rem;
}

.clg-mock-asset {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    font-size: 0.68rem;
    font-weight: 600;
    padding: 0.35rem 0.65rem;
    border-radius: 8px;
    background: rgba(255, 255, 255, 0.08);
    color: rgba(255, 255, 255, 0.75);
}

.clg-mock-asset i {
    color: #5eead4;
}

/* Stats */
.clg-stats {
    background: #fff;
    border-bottom: 1px solid var(--border-color);
    padding: 3rem 0;
}

.clg-stats-intro {
    text-align: center;
    max-width: 680px;
    margin: 0 auto 2rem;
}

.clg-stats-intro h2 {
    font-size: 1.35rem;
    font-weight: 700;
    margin-bottom: 0.5rem;
}

.clg-stats-intro p {
    font-size: 0.95rem;
    color: var(--text-secondary);
    margin: 0;
    line-height: 1.55;
}

.clg-stats-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.5rem;
    text-align: center;
}

.clg-stat-num {
    font-size: 2rem;
    font-weight: 800;
    background: linear-gradient(135deg, #0d9488, #059669);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

.clg-stat-label {
    font-size: 0.85rem;
    color: var(--text-secondary);
    margin-top: 0.25rem;
}

/* Journey steps */
.clg-journey {
    margin-top: 2.5rem;
    display: flex;
    flex-direction: column;
    gap: 1.5rem;
}

.clg-journey-step {
    display: grid;
    grid-template-columns: 52px 1fr;
    gap: 1.25rem;
    align-items: start;
    padding: 1.75rem;
    background: #fff;
    border-radius: 18px;
    border: 1px solid var(--border-color);
    box-shadow: 0 8px 28px rgba(13, 148, 136, 0.06);
}

.clg-journey-num {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d9488, #059669);
    color: #fff;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.1rem;
    flex-shrink: 0;
}

.clg-journey-content h3 {
    font-size: 1.15rem;
    margin-bottom: 0.6rem;
    display: flex;
    align-items: center;
    gap: 0.5rem;
    flex-wrap: wrap;
}

.clg-journey-content h3 i {
    color: #0d9488;
}

.clg-journey-content > p {
    font-size: 0.92rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1rem;
}

.clg-journey-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1rem;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 0.5rem 1.5rem;
}

.clg-journey-list li {
    display: flex;
    align-items: flex-start;
    gap: 0.5rem;
    font-size: 0.85rem;
    color: var(--text-secondary);
}

.clg-journey-list i {
    color: #0d9488;
    margin-top: 0.2rem;
    flex-shrink: 0;
}

.clg-journey-tag {
    display: inline-block;
    font-size: 0.72rem;
    font-weight: 600;
    color: #0d9488;
    text-transform: uppercase;
    letter-spacing: 0.04em;
    padding: 0.35rem 0.75rem;
    background: rgba(13, 148, 136, 0.08);
    border-radius: 999px;
}

/* Job assets grid */
.clg-assets-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1.25rem;
    margin-top: 2.5rem;
}

.clg-asset-card {
    background: #fff;
    border-radius: 18px;
    padding: 1.75rem;
    border: 1px solid var(--border-color);
    text-align: left;
    transition: transform 0.25s, box-shadow 0.25s;
}

.clg-asset-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(13, 148, 136, 0.1);
}

.clg-asset-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.12), rgba(5, 150, 105, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #0d9488;
    margin-bottom: 1rem;
}

.clg-asset-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.clg-asset-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin: 0;
}

/* Split panels */
.clg-split {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2.5rem;
    align-items: start;
    margin-top: 2rem;
}

.clg-split-lead {
    font-size: 0.95rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin-bottom: 1.25rem;
}

.clg-split-list {
    list-style: none;
    padding: 0;
    margin: 0 0 1.25rem;
}

.clg-split-list li {
    display: flex;
    gap: 0.75rem;
    padding: 0.65rem 0;
    font-size: 0.9rem;
    border-bottom: 1px solid var(--border-color);
}

.clg-split-list li:last-child {
    border-bottom: none;
}

.clg-split-list i {
    color: #0d9488;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

.clg-split-panel-alt {
    background: linear-gradient(180deg, #f0fdfa, #fff);
    border-radius: 20px;
    padding: 2rem;
    border: 1px solid rgba(13, 148, 136, 0.15);
}

.clg-skill-mock {
    background: #f8fafc;
    border-radius: 14px;
    padding: 0.75rem;
    border: 1px solid var(--border-color);
}

.clg-skill-row {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    padding: 0.65rem 0.85rem;
    font-size: 0.85rem;
    border-bottom: 1px solid var(--border-color);
}

.clg-skill-row:last-child {
    border-bottom: none;
}

.clg-skill-row > span:first-child {
    flex: 1;
    font-weight: 600;
    min-width: 100px;
}

.clg-skill-tag {
    font-size: 0.68rem;
    font-weight: 600;
    padding: 0.2rem 0.55rem;
    border-radius: 999px;
}

.clg-skill-tag.video {
    background: rgba(13, 148, 136, 0.12);
    color: #0d9488;
}

.clg-skill-tag.assess {
    background: rgba(5, 150, 105, 0.12);
    color: #059669;
}

.clg-course-tree {
    background: #fff;
    border-radius: 14px;
    padding: 1rem;
    border: 1px solid var(--border-color);
    margin-bottom: 1.25rem;
    font-size: 0.85rem;
}

.clg-course-subject {
    font-weight: 700;
    padding: 0.5rem 0;
    color: #0f766e;
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.clg-course-topic {
    padding: 0.5rem 0 0.5rem 1.5rem;
    color: var(--text-secondary);
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 0.5rem;
    border-left: 2px solid rgba(13, 148, 136, 0.25);
    margin-left: 0.5rem;
}

.clg-course-topic span {
    font-size: 0.72rem;
    font-weight: 600;
    color: #0d9488;
    background: rgba(13, 148, 136, 0.08);
    padding: 0.15rem 0.5rem;
    border-radius: 999px;
}

/* Learning path flow */
.clg-path-flow {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: 0.75rem;
    margin: 2.5rem 0;
    padding: 1.5rem;
    background: #fff;
    border-radius: 20px;
    border: 1px solid var(--border-color);
}

.clg-path-step {
    text-align: center;
    padding: 0.75rem 1rem;
    min-width: 90px;
}

.clg-path-icon {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: linear-gradient(135deg, #0d9488, #059669);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 0.5rem;
    font-size: 1rem;
}

.clg-path-step h4 {
    font-size: 0.9rem;
    margin-bottom: 0.25rem;
}

.clg-path-step p {
    font-size: 0.72rem;
    color: var(--text-secondary);
    margin: 0;
}

.clg-path-arrow {
    color: #94a3b8;
    font-size: 0.85rem;
}

/* Feature cards */
.clg-features {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
    margin-top: 1rem;
}

.clg-feature-card {
    background: #fff;
    border-radius: 18px;
    padding: 1.75rem;
    border: 1px solid var(--border-color);
    text-align: left;
    transition: transform 0.25s, box-shadow 0.25s;
}

.clg-feature-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 16px 40px rgba(13, 148, 136, 0.1);
}

.clg-feature-icon {
    width: 48px;
    height: 48px;
    border-radius: 14px;
    background: linear-gradient(135deg, rgba(13, 148, 136, 0.12), rgba(5, 150, 105, 0.1));
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 1.2rem;
    color: #0d9488;
    margin-bottom: 1rem;
}

.clg-feature-card h3 {
    font-size: 1.05rem;
    margin-bottom: 0.5rem;
}

.clg-feature-card p {
    font-size: 0.88rem;
    color: var(--text-secondary);
    line-height: 1.55;
    margin: 0;
}

.clg-feature-tag {
    display: inline-block;
    margin-top: 0.75rem;
    font-size: 0.72rem;
    font-weight: 600;
    color: #0d9488;
    text-transform: uppercase;
    letter-spacing: 0.04em;
}

/* Proof */
.clg-proof-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 2rem;
    margin-top: 2.5rem;
    align-items: start;
}

.clg-proof-card {
    background: #fff;
    border-radius: 18px;
    padding: 2rem;
    border: 1px solid var(--border-color);
}

.clg-proof-card blockquote {
    margin: 0 0 1rem;
    font-size: 1.05rem;
    line-height: 1.6;
    font-style: italic;
}

.clg-proof-card cite {
    font-size: 0.85rem;
    color: var(--text-secondary);
    font-style: normal;
}

.clg-jtbd-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.clg-jtbd-list li {
    display: flex;
    gap: 0.75rem;
    padding: 0.85rem 0;
    border-bottom: 1px solid var(--border-color);
    font-size: 0.92rem;
}

.clg-jtbd-list li:last-child {
    border-bottom: none;
}

.clg-jtbd-list i {
    color: #0d9488;
    margin-top: 0.15rem;
    flex-shrink: 0;
}

/* FAQ */
.clg-faq {
    max-width: 720px;
    margin: 2.5rem auto 0;
    text-align: left;
}

.clg-faq-item {
    border-bottom: 1px solid var(--border-color);
    padding: 1.25rem 0;
}

.clg-faq-item h4 {
    font-size: 1rem;
    margin-bottom: 0.5rem;
}

.clg-faq-item p {
    font-size: 0.9rem;
    color: var(--text-secondary);
    line-height: 1.6;
    margin: 0;
}

/* CTA */
.clg-cta {
    background: linear-gradient(135deg, #042f2e 0%, #0f766e 50%, #059669 100%);
    padding: 4.5rem 0;
    text-align: center;
    color: #fff;
}

.clg-cta h2 {
    font-size: clamp(1.75rem, 3vw, 2.25rem);
    margin-bottom: 1rem;
}

.clg-cta p {
    font-size: 1.05rem;
    opacity: 0.9;
    max-width: 560px;
    margin: 0 auto 2rem;
}

.clg-cta .hp-btn-primary {
    background: #fff;
    color: #0f766e;
    -webkit-text-fill-color: #0f766e;
    box-shadow: 0 8px 28px rgba(0, 0, 0, 0.2);
}

.clg-cta-actions {
    display: flex;
    flex-wrap: wrap;
    gap: 1rem;
    justify-content: center;
}

.clg-cta .clg-btn-secondary {
    border-color: rgba(255, 255, 255, 0.55);
}

@media (max-width: 992px) {
    .clg-hero-grid,
    .clg-split,
    .clg-proof-grid {
        grid-template-columns: 1fr;
    }

    .clg-assets-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .clg-features {
        grid-template-columns: repeat(2, 1fr);
    }

    .clg-journey-list {
        grid-template-columns: 1fr;
    }

    .clg-stats-grid {
        grid-template-columns: repeat(2, 1fr);
    }

    .clg-path-arrow {
        display: none;
    }

    .clg-path-flow {
        justify-content: flex-start;
    }
}

@media (max-width: 576px) {
    .clg-assets-grid,
    .clg-features,
    .clg-stats-grid {
        grid-template-columns: 1fr;
    }

    .clg-journey-step {
        grid-template-columns: 1fr;
    }

    .clg-journey-num {
        width: 36px;
        height: 36px;
        font-size: 0.95rem;
    }
}
