:root {
    --fc10-blue: #0867ff;
    --fc10-blue-dark: #0a2b6f;
    --fc10-blue-soft: #eaf2ff;
    --fc10-orange: #ff8500;
    --fc10-orange-soft: #fff2df;
    --fc10-ink: #101b33;
    --fc10-muted: #5b6680;
    --fc10-line: #dfe7f3;
    --fc10-soft: #f8f9fa;
    --fc10-shadow: 0 18px 45px rgba(16, 27, 51, 0.09);
    --fc10-shadow-sm: 0 8px 22px rgba(16, 27, 51, 0.08);
}

* {
    box-sizing: border-box;
}

html {
    scroll-padding-top: 96px;
}

.fc10-home {
    background: #fff;
    color: var(--fc10-ink);
    font-family: Inter, ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", sans-serif;
    letter-spacing: 0;
}

.fc10-home a {
    text-decoration: none;
}

.fc10-navbar {
    background: rgba(255, 255, 255, 0.92);
    border-bottom: 1px solid rgba(223, 231, 243, 0.82);
    padding: 0.9rem 0;
    transition: box-shadow 180ms ease, backdrop-filter 180ms ease, padding 180ms ease;
}

.fc10-navbar.is-scrolled {
    backdrop-filter: blur(14px);
    box-shadow: var(--fc10-shadow-sm);
    padding: 0.65rem 0;
}

.fc10-brand {
    align-items: center;
    color: var(--fc10-ink);
    display: inline-flex;
    font-size: 1.32rem;
    font-weight: 800;
    gap: 0.55rem;
}

.fc10-brand:hover {
    color: var(--fc10-ink);
}

.fc10-brand__logo {
    height: 38px;
    width: auto;
}

.fc10-navbar .nav-link {
    color: var(--fc10-ink);
    font-weight: 700;
    padding: 0.55rem 1rem;
    position: relative;
}

.fc10-navbar .nav-link::after {
    background: var(--fc10-blue);
    border-radius: 999px;
    bottom: 0.15rem;
    content: "";
    height: 2px;
    left: 1rem;
    opacity: 0;
    position: absolute;
    right: 1rem;
    transform: scaleX(0.4);
    transition: 180ms ease;
}

.fc10-navbar .nav-link:hover,
.fc10-navbar .nav-link.active {
    color: var(--fc10-blue);
}

.fc10-navbar .nav-link:hover::after,
.fc10-navbar .nav-link.active::after {
    opacity: 1;
    transform: scaleX(1);
}

.fc10-search {
    align-items: center;
    background: #fff;
    border: 1px solid var(--fc10-line);
    border-radius: 999px;
    display: flex;
    gap: 0.5rem;
    min-width: min(280px, 100%);
    padding: 0 0.85rem;
}

.fc10-search i {
    color: var(--fc10-muted);
}

.fc10-search .form-control {
    border: 0;
    box-shadow: none;
    font-size: 0.93rem;
    padding: 0.72rem 0;
}

.fc10-btn-primary {
    background: linear-gradient(135deg, var(--fc10-blue), #004bd8);
    border: 0;
    border-radius: 8px;
    box-shadow: 0 12px 24px rgba(8, 103, 255, 0.22);
    font-weight: 800;
    padding-left: 1.35rem;
    padding-right: 1.35rem;
}

.fc10-btn-primary:hover,
.fc10-btn-primary:focus {
    background: linear-gradient(135deg, #0059e6, #003fbc);
    box-shadow: 0 16px 30px rgba(8, 103, 255, 0.28);
    transform: translateY(-1px);
}

.fc10-btn-outline {
    border-color: var(--fc10-blue);
    border-radius: 8px;
    color: var(--fc10-blue);
    font-weight: 800;
}

.fc10-btn-outline:hover,
.fc10-btn-outline:focus {
    background: var(--fc10-blue);
    border-color: var(--fc10-blue);
    color: #fff;
    transform: translateY(-1px);
}

.fc10-btn-light {
    align-items: center;
    border: 1px solid var(--fc10-line);
    border-radius: 8px;
    box-shadow: var(--fc10-shadow-sm);
    color: var(--fc10-ink);
    display: inline-flex;
    font-weight: 800;
    gap: 0.55rem;
}

.fc10-btn-light:hover,
.fc10-btn-light:focus {
    border-color: rgba(8, 103, 255, 0.28);
    color: var(--fc10-blue);
    transform: translateY(-1px);
}

.fc10-hero {
    overflow: hidden;
    padding: 132px 0 48px;
    position: relative;
}

.fc10-hero::before {
    background:
        linear-gradient(90deg, rgba(8, 103, 255, 0.07), transparent 38%),
        linear-gradient(180deg, #fff 0%, var(--fc10-soft) 100%);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.fc10-hero > .container {
    position: relative;
}

.fc10-eyebrow,
.fc10-section-kicker {
    background: var(--fc10-orange-soft);
    border: 1px solid rgba(255, 133, 0, 0.24);
    border-radius: 999px;
    color: #f06400;
    display: inline-flex;
    font-size: 0.77rem;
    font-weight: 900;
    letter-spacing: 0;
    margin-bottom: 1rem;
    padding: 0.45rem 0.75rem;
    text-transform: uppercase;
}

.fc10-hero__title {
    color: var(--fc10-ink);
    font-size: clamp(2.5rem, 5.2vw, 5rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 0.98;
    margin-bottom: 1.25rem;
}

.fc10-hero__title span {
    color: var(--fc10-blue);
}

.fc10-hero__title strong {
    color: var(--fc10-orange);
    font-weight: 900;
}

.fc10-hero__lead {
    color: var(--fc10-muted);
    font-size: 1.1rem;
    line-height: 1.7;
    margin-bottom: 1.8rem;
    max-width: 620px;
}

.fc10-hero-art {
    min-height: 520px;
    position: relative;
}

.fc10-hero-art img {
    aspect-ratio: 1 / 1;
    border-radius: 8px;
    box-shadow: var(--fc10-shadow);
    display: block;
    height: auto;
    margin-left: auto;
    object-fit: cover;
    object-position: center;
    position: relative;
    width: min(470px, 86%);
    z-index: 2;
}

.fc10-hero-art__ring {
    border: 4px solid var(--fc10-orange);
    border-radius: 999px;
    height: 430px;
    position: absolute;
    right: 32px;
    top: -12px;
    width: 430px;
    z-index: 1;
}

.fc10-hero-art__grid {
    background-image: radial-gradient(rgba(8, 103, 255, 0.42) 1.4px, transparent 1.4px);
    background-size: 14px 14px;
    height: 150px;
    position: absolute;
    right: -6px;
    top: 70px;
    width: 150px;
    z-index: 1;
}

.fc10-note {
    background: #fff;
    border: 1px dashed rgba(8, 103, 255, 0.34);
    border-radius: 8px;
    box-shadow: var(--fc10-shadow-sm);
    color: var(--fc10-ink);
    font-weight: 800;
    left: 8px;
    max-width: 210px;
    padding: 0.9rem 1rem;
    position: absolute;
    top: 128px;
    transform: rotate(-5deg);
    z-index: 3;
}

.fc10-note::after {
    color: var(--fc10-orange);
    content: "→";
    font-size: 2.2rem;
    position: absolute;
    right: -28px;
    top: 16px;
    transform: rotate(20deg);
}

.fc10-float-card {
    align-items: center;
    background: rgba(255, 255, 255, 0.96);
    border: 1px solid rgba(223, 231, 243, 0.9);
    border-radius: 8px;
    box-shadow: var(--fc10-shadow-sm);
    display: flex;
    gap: 0.9rem;
    min-width: 210px;
    padding: 1rem;
    position: absolute;
    right: 0;
    z-index: 4;
}

.fc10-float-card--top {
    top: 36px;
}

.fc10-float-card--middle {
    right: -18px;
    top: 168px;
}

.fc10-float-card--bottom {
    bottom: 70px;
}

.fc10-float-card strong {
    display: block;
    font-size: 1.45rem;
    line-height: 1;
}

.fc10-float-card span:not(.fc10-icon) {
    color: var(--fc10-muted);
    display: block;
    font-size: 0.9rem;
}

.fc10-icon {
    align-items: center;
    border-radius: 8px;
    color: #fff;
    display: inline-flex;
    flex: 0 0 48px;
    height: 48px;
    justify-content: center;
    width: 48px;
}

.fc10-icon--blue {
    background: linear-gradient(135deg, #1485ff, #0057ee);
}

.fc10-icon--orange {
    background: linear-gradient(135deg, #ff9f1c, #ff6500);
}

.fc10-section {
    padding: 48px 0;
}

.fc10-section--soft {
    background: var(--fc10-soft);
    border-bottom: 1px solid var(--fc10-line);
    border-top: 1px solid var(--fc10-line);
}

.fc10-section-head {
    align-items: end;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-bottom: 1.4rem;
}

.fc10-section-head h2,
.fc10-section-title,
.fc10-centered-head h2 {
    color: var(--fc10-ink);
    font-size: clamp(1.8rem, 3vw, 2.6rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1.08;
    margin: 0;
}

.fc10-section-head > a {
    color: var(--fc10-blue);
    font-weight: 900;
    white-space: nowrap;
}

.fc10-section-copy {
    color: var(--fc10-muted);
    font-size: 1.05rem;
    line-height: 1.7;
    margin: 1rem 0 1.4rem;
}

.fc10-course-card,
.fc10-benefit-card,
.fc10-testimonial,
.fc10-step-card,
.fc10-stat-card,
.fc10-empty {
    background: #fff;
    border: 1px solid var(--fc10-line);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(16, 27, 51, 0.05);
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.fc10-course-card:hover,
.fc10-benefit-card:hover,
.fc10-testimonial:hover,
.fc10-step-card:hover {
    border-color: rgba(8, 103, 255, 0.3);
    box-shadow: var(--fc10-shadow);
    transform: translateY(-4px);
}

.fc10-course-card {
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.fc10-course-card__image {
    aspect-ratio: 16 / 9;
    background: var(--fc10-blue-soft);
    display: block;
    overflow: hidden;
    position: relative;
}

.fc10-course-card__image img {
    height: 100%;
    object-fit: cover;
    transition: transform 220ms ease;
    width: 100%;
}

.fc10-course-card:hover .fc10-course-card__image img {
    transform: scale(1.04);
}

.fc10-course-card__badge {
    background: rgba(255, 255, 255, 0.92);
    border-radius: 999px;
    color: #f06400;
    font-size: 0.72rem;
    font-weight: 900;
    left: 1rem;
    padding: 0.4rem 0.65rem;
    position: absolute;
    text-transform: uppercase;
    top: 1rem;
}

.fc10-course-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.25rem;
}

.fc10-course-card h3 {
    font-size: 1.25rem;
    font-weight: 900;
    line-height: 1.22;
    margin-bottom: 0.6rem;
}

.fc10-course-card h3 a {
    color: var(--fc10-ink);
}

.fc10-course-card p {
    color: var(--fc10-muted);
    line-height: 1.58;
    margin-bottom: 1rem;
}

.fc10-course-meta {
    display: grid;
    gap: 0.55rem;
    margin-bottom: 1.1rem;
}

.fc10-course-meta span {
    align-items: center;
    color: var(--fc10-muted);
    display: inline-flex;
    font-size: 0.92rem;
    gap: 0.45rem;
}

.fc10-course-meta i {
    color: var(--fc10-blue);
}

.fc10-path-highlight {
    background: #fff;
    border: 1px solid var(--fc10-line);
    border-radius: 8px;
    display: grid;
    gap: 0.2rem;
    margin-bottom: 1.2rem;
    padding: 1rem;
}

.fc10-path-highlight strong {
    font-size: 1.1rem;
}

.fc10-path-highlight span {
    color: var(--fc10-muted);
}

.fc10-roadmap {
    align-items: center;
    background: #fff;
    border: 1px solid var(--fc10-line);
    border-radius: 8px;
    box-shadow: var(--fc10-shadow-sm);
    display: flex;
    gap: 0.7rem;
    justify-content: space-between;
    padding: 1.25rem;
}

.fc10-roadmap__step {
    align-items: center;
    background: linear-gradient(180deg, #fff, var(--fc10-blue-soft));
    border: 1px solid rgba(8, 103, 255, 0.2);
    border-radius: 8px;
    display: grid;
    gap: 0.35rem;
    justify-items: center;
    min-height: 112px;
    min-width: 98px;
    padding: 1rem 0.8rem;
    text-align: center;
}

.fc10-roadmap__step span {
    align-items: center;
    background: var(--fc10-blue);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-weight: 900;
    height: 30px;
    justify-content: center;
    width: 30px;
}

.fc10-roadmap > i {
    color: var(--fc10-orange);
    font-size: 1.3rem;
}

.fc10-benefits {
    display: grid;
    gap: 1rem;
    grid-template-columns: repeat(4, minmax(0, 1fr));
}

.fc10-benefit-card {
    align-items: flex-start;
    display: flex;
    gap: 1rem;
    padding: 1.25rem;
}

.fc10-benefit-card h3,
.fc10-step-card h3 {
    font-size: 1.03rem;
    font-weight: 900;
    margin-bottom: 0.4rem;
}

.fc10-benefit-card p,
.fc10-testimonial p {
    color: var(--fc10-muted);
    line-height: 1.55;
    margin: 0;
}

.fc10-stats {
    background: linear-gradient(135deg, var(--fc10-blue), var(--fc10-blue-dark));
    padding: 42px 0;
}

.fc10-stat-card {
    background: rgba(255, 255, 255, 0.1);
    border-color: rgba(255, 255, 255, 0.22);
    color: #fff;
    padding: 1.35rem;
    text-align: center;
}

.fc10-stat-card strong {
    display: block;
    font-size: clamp(2rem, 4vw, 3rem);
    font-weight: 900;
    line-height: 1;
}

.fc10-stat-card p {
    color: rgba(255, 255, 255, 0.76);
    font-weight: 800;
    margin: 0.55rem 0 0;
}

.fc10-centered-head {
    margin: 0 auto 1.7rem;
    max-width: 720px;
    text-align: center;
}

.fc10-steps {
    align-items: center;
    display: grid;
    gap: 0.85rem;
    grid-template-columns: 1fr auto 1fr auto 1fr auto 1fr;
}

.fc10-step-card {
    min-height: 164px;
    padding: 1.25rem;
    text-align: center;
}

.fc10-step-card > span {
    align-items: center;
    background: var(--fc10-orange-soft);
    border-radius: 999px;
    color: #f06400;
    display: inline-flex;
    font-weight: 900;
    height: 34px;
    justify-content: center;
    margin-bottom: 0.8rem;
    width: 34px;
}

.fc10-step-card > i {
    color: var(--fc10-blue);
    display: block;
    font-size: 2rem;
    margin-bottom: 0.75rem;
}

.fc10-step-arrow {
    color: var(--fc10-orange);
    font-size: 1.4rem;
}

.fc10-testimonial {
    height: 100%;
    padding: 1.25rem;
}

.fc10-testimonial__stars {
    color: var(--fc10-orange);
    display: flex;
    gap: 0.2rem;
    margin-bottom: 0.9rem;
}

.fc10-testimonial__person {
    align-items: center;
    display: flex;
    gap: 0.8rem;
    margin-top: 1.1rem;
}

.fc10-testimonial__person > span {
    align-items: center;
    background: var(--fc10-blue-soft);
    border-radius: 999px;
    color: var(--fc10-blue);
    display: inline-flex;
    font-weight: 900;
    height: 44px;
    justify-content: center;
    width: 44px;
}

.fc10-testimonial__person strong,
.fc10-testimonial__person small {
    display: block;
}

.fc10-testimonial__person small {
    color: var(--fc10-muted);
}

.fc10-cta {
    align-items: center;
    background:
        linear-gradient(135deg, rgba(8, 103, 255, 0.98), rgba(10, 43, 111, 0.96) 62%, rgba(255, 133, 0, 0.96));
    border-radius: 8px;
    color: #fff;
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    overflow: hidden;
    padding: 2rem;
    position: relative;
}

.fc10-cta::before {
    background-image:
        linear-gradient(135deg, rgba(255, 255, 255, 0.16) 25%, transparent 25%),
        linear-gradient(135deg, transparent 75%, rgba(255, 255, 255, 0.16) 75%);
    background-size: 24px 24px;
    content: "";
    inset: 0;
    opacity: 0.35;
    pointer-events: none;
    position: absolute;
}

.fc10-cta > * {
    position: relative;
}

.fc10-cta h2 {
    font-size: clamp(1.7rem, 3vw, 2.5rem);
    font-weight: 900;
    margin-bottom: 0.45rem;
}

.fc10-cta p {
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
}

.fc10-footer {
    background: #fff;
    border-top: 1px solid var(--fc10-line);
    padding: 42px 0 24px;
}

.fc10-footer p {
    color: var(--fc10-muted);
    line-height: 1.6;
    margin: 0.75rem 0 1rem;
}

.fc10-footer h3 {
    color: var(--fc10-ink);
    font-size: 0.82rem;
    font-weight: 900;
    margin-bottom: 0.8rem;
    text-transform: uppercase;
}

.fc10-footer a:not(.fc10-brand) {
    color: var(--fc10-muted);
    display: block;
    font-size: 0.93rem;
    margin-bottom: 0.45rem;
}

.fc10-footer a:hover {
    color: var(--fc10-blue);
}

.fc10-socials {
    display: flex;
    gap: 0.65rem;
}

.fc10-socials a {
    align-items: center;
    border: 1px solid var(--fc10-line);
    border-radius: 999px;
    color: var(--fc10-ink);
    display: inline-flex;
    height: 36px;
    justify-content: center;
    width: 36px;
}

.fc10-footer__bottom {
    align-items: center;
    border-top: 1px solid var(--fc10-line);
    color: var(--fc10-muted);
    display: flex;
    gap: 1rem;
    justify-content: space-between;
    margin-top: 2rem;
    padding-top: 1rem;
}

.fc10-footer__bottom strong {
    color: var(--fc10-ink);
}

.fc10-empty {
    color: var(--fc10-muted);
    padding: 2rem;
    text-align: center;
}

.fc10-empty h2 {
    color: var(--fc10-ink);
    font-size: 1.35rem;
    font-weight: 900;
}

.fc10-home .btn-primary {
    background: linear-gradient(135deg, var(--fc10-blue), #004bd8);
    border-color: transparent;
    border-radius: 8px;
    font-weight: 800;
}

.fc10-home .btn-primary:hover,
.fc10-home .btn-primary:focus {
    background: linear-gradient(135deg, #0059e6, #003fbc);
    border-color: transparent;
}

.fc10-home .btn-outline-primary {
    border-color: var(--fc10-blue);
    border-radius: 8px;
    color: var(--fc10-blue);
    font-weight: 800;
}

.fc10-home .btn-outline-primary:hover,
.fc10-home .btn-outline-primary:focus {
    background: var(--fc10-blue);
    border-color: var(--fc10-blue);
    color: #fff;
}

.fc10-home .btn-block {
    display: block;
    width: 100%;
}

.fc10-home .card {
    border: 1px solid var(--fc10-line);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(16, 27, 51, 0.05);
}

.fc10-home .p-24pt {
    padding: 1.5rem;
}

.fc10-home .text-70,
.fc10-home .text-50,
.fc10-home .text-secondary {
    color: var(--fc10-muted) !important;
}

.fc10-home .badge-success {
    background: #198754;
}

.fc10-home .badge-danger {
    background: #dc3545;
}

.fc10-home .form-control,
.fc10-home .form-select {
    border-color: var(--fc10-line);
    border-radius: 8px;
    min-height: 46px;
}

.fc10-home .form-control:focus,
.fc10-home .form-select:focus {
    border-color: rgba(8, 103, 255, 0.48);
    box-shadow: 0 0 0 0.22rem rgba(8, 103, 255, 0.12);
}

.fc10-form-label {
    color: var(--fc10-ink);
    font-size: 0.82rem;
    font-weight: 900;
    margin-bottom: 0.45rem;
}

.fc10-page-hero,
.fc10-detail-hero {
    overflow: hidden;
    padding: 132px 0 56px;
    position: relative;
}

.fc10-page-hero::before,
.fc10-detail-hero::before {
    background:
        linear-gradient(90deg, rgba(8, 103, 255, 0.08), transparent 42%),
        linear-gradient(180deg, #fff 0%, var(--fc10-soft) 100%);
    content: "";
    inset: 0;
    pointer-events: none;
    position: absolute;
}

.fc10-page-hero > .container,
.fc10-detail-hero > .container {
    position: relative;
}

.fc10-page-hero__content {
    margin: 0 auto;
    max-width: 780px;
    text-align: center;
}

.fc10-page-hero h1,
.fc10-detail-hero h1 {
    color: var(--fc10-ink);
    font-size: clamp(2.15rem, 4.5vw, 4.2rem);
    font-weight: 900;
    letter-spacing: 0;
    line-height: 1;
    margin-bottom: 1rem;
}

.fc10-page-hero p,
.fc10-detail-hero p {
    color: var(--fc10-muted);
    font-size: 1.08rem;
    line-height: 1.7;
    margin: 0;
}

.fc10-search-panel,
.fc10-filter-panel,
.fc10-info-card,
.fc10-content-block,
.fc10-enroll-card {
    background: #fff;
    border: 1px solid var(--fc10-line);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(16, 27, 51, 0.05);
}

.fc10-search-panel {
    padding: 1.25rem;
}

.fc10-filter-panel {
    padding: 1.25rem;
    position: sticky;
    top: 108px;
}

.fc10-filter-panel h2,
.fc10-info-card h2,
.fc10-content-block h2,
.fc10-enroll-card h2 {
    color: var(--fc10-ink);
    font-size: 1.18rem;
    font-weight: 900;
    margin: 0 0 0.9rem;
}

.fc10-filter-count {
    align-items: center;
    background: var(--fc10-orange);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    font-size: 0.78rem;
    font-weight: 900;
    height: 28px;
    justify-content: center;
    width: 28px;
}

.fc10-filter-list {
    display: grid;
    gap: 0.5rem;
}

.fc10-filter-list a {
    align-items: center;
    border: 1px solid transparent;
    border-radius: 8px;
    color: var(--fc10-ink);
    display: flex;
    gap: 0.75rem;
    justify-content: space-between;
    padding: 0.75rem 0.85rem;
}

.fc10-filter-list a:hover,
.fc10-filter-list a.active {
    background: var(--fc10-blue-soft);
    border-color: rgba(8, 103, 255, 0.24);
    color: var(--fc10-blue);
}

.fc10-filter-list strong {
    color: var(--fc10-muted);
    font-size: 0.86rem;
}

.fc10-chip {
    border: 1px solid var(--fc10-line);
    border-radius: 999px;
    color: var(--fc10-muted);
    font-size: 0.9rem;
    font-weight: 800;
    padding: 0.48rem 0.72rem;
}

.fc10-chip:hover,
.fc10-chip.active {
    background: var(--fc10-orange-soft);
    border-color: rgba(255, 133, 0, 0.28);
    color: #f06400;
}

.fc10-course-grid,
.fc10-path-grid {
    display: grid;
    gap: 1.25rem;
    grid-template-columns: repeat(3, minmax(0, 1fr));
}

.fc10-course-card__placeholder,
.fc10-path-card__image > span {
    align-items: center;
    background:
        linear-gradient(135deg, rgba(8, 103, 255, 0.12), rgba(255, 133, 0, 0.16)),
        var(--fc10-blue-soft);
    color: var(--fc10-blue);
    display: flex;
    font-size: 3rem;
    height: 100%;
    justify-content: center;
    width: 100%;
}

.fc10-course-card__topline {
    align-items: center;
    color: var(--fc10-muted);
    display: flex;
    flex-wrap: wrap;
    font-size: 0.8rem;
    font-weight: 900;
    gap: 0.55rem;
    justify-content: space-between;
    margin-bottom: 0.75rem;
    text-transform: uppercase;
}

.fc10-path-card {
    background: #fff;
    border: 1px solid var(--fc10-line);
    border-radius: 8px;
    box-shadow: 0 10px 30px rgba(16, 27, 51, 0.05);
    display: flex;
    flex-direction: column;
    overflow: hidden;
    transition: border-color 180ms ease, box-shadow 180ms ease, transform 180ms ease;
}

.fc10-path-card:hover {
    border-color: rgba(8, 103, 255, 0.3);
    box-shadow: var(--fc10-shadow);
    transform: translateY(-4px);
}

.fc10-path-card__image {
    aspect-ratio: 16 / 9;
    display: block;
    overflow: hidden;
    position: relative;
}

.fc10-path-card__image img {
    height: 100%;
    object-fit: cover;
    transition: transform 220ms ease;
    width: 100%;
}

.fc10-path-card:hover .fc10-path-card__image img {
    transform: scale(1.04);
}

.fc10-path-card__image strong {
    background: rgba(255, 255, 255, 0.94);
    border-radius: 999px;
    color: #f06400;
    font-size: 0.72rem;
    font-weight: 900;
    left: 1rem;
    padding: 0.4rem 0.65rem;
    position: absolute;
    text-transform: uppercase;
    top: 1rem;
}

.fc10-path-card__body {
    display: flex;
    flex: 1;
    flex-direction: column;
    padding: 1.25rem;
}

.fc10-path-card h3 {
    font-size: 1.25rem;
    font-weight: 900;
    line-height: 1.22;
}

.fc10-path-card h3 a {
    color: var(--fc10-ink);
}

.fc10-path-card p {
    color: var(--fc10-muted);
    line-height: 1.58;
}

.fc10-course-grid > .fc10-empty,
.fc10-path-grid > .fc10-empty {
    grid-column: 1 / -1;
}

.fc10-pagination {
    align-items: center;
    display: flex;
    gap: 0.75rem;
    justify-content: center;
    margin-top: 2rem;
}

.fc10-pagination a,
.fc10-pagination span,
.fc10-pagination strong {
    border: 1px solid var(--fc10-line);
    border-radius: 8px;
    color: var(--fc10-ink);
    font-weight: 800;
    padding: 0.65rem 0.9rem;
}

.fc10-pagination a:hover {
    background: var(--fc10-blue);
    border-color: var(--fc10-blue);
    color: #fff;
}

.fc10-pagination .disabled {
    color: var(--fc10-muted);
    opacity: 0.58;
}

.fc10-back-link {
    align-items: center;
    color: var(--fc10-blue);
    display: inline-flex;
    font-weight: 900;
    gap: 0.45rem;
    margin-bottom: 1rem;
}

.fc10-detail-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 0.65rem;
    margin-top: 1.25rem;
}

.fc10-detail-meta span,
.fc10-detail-meta small {
    align-items: center;
    background: #fff;
    border: 1px solid var(--fc10-line);
    border-radius: 999px;
    color: var(--fc10-muted);
    display: inline-flex;
    font-size: 0.9rem;
    font-weight: 800;
    gap: 0.45rem;
    padding: 0.5rem 0.75rem;
}

.fc10-detail-meta i {
    color: var(--fc10-blue);
}

.fc10-enroll-card {
    overflow: hidden;
}

.fc10-enroll-card img {
    aspect-ratio: 16 / 9;
    object-fit: cover;
    width: 100%;
}

.fc10-enroll-card > div {
    padding: 1.35rem;
}

.fc10-enroll-card p,
.fc10-info-card p {
    color: var(--fc10-muted);
    line-height: 1.6;
}

.fc10-media-frame {
    aspect-ratio: 16 / 9;
    background: var(--fc10-blue-soft);
    border: 1px solid var(--fc10-line);
    border-radius: 8px;
    box-shadow: var(--fc10-shadow-sm);
    margin-bottom: 1.5rem;
    overflow: hidden;
}

.fc10-media-frame img {
    height: 100%;
    object-fit: cover;
    width: 100%;
}

.fc10-media-frame__placeholder {
    align-items: center;
    background: linear-gradient(135deg, var(--fc10-blue), var(--fc10-blue-dark));
    color: #fff;
    display: flex;
    flex-direction: column;
    gap: 1rem;
    height: 100%;
    justify-content: center;
    padding: 2rem;
    text-align: center;
}

.fc10-media-frame__placeholder i {
    font-size: 3rem;
}

.fc10-media-frame__placeholder p {
    color: rgba(255, 255, 255, 0.82);
    margin: 0;
    max-width: 560px;
}

.fc10-content-block {
    margin-bottom: 1.5rem;
    padding: 1.5rem;
}

.fc10-content-block > p {
    color: var(--fc10-muted);
    font-size: 1.02rem;
    line-height: 1.75;
    margin-bottom: 0;
}

.fc10-check-grid {
    display: grid;
    gap: 0.85rem;
    grid-template-columns: repeat(2, minmax(0, 1fr));
}

.fc10-check-grid div {
    align-items: flex-start;
    background: var(--fc10-soft);
    border: 1px solid var(--fc10-line);
    border-radius: 8px;
    display: flex;
    gap: 0.65rem;
    padding: 0.9rem;
}

.fc10-check-grid i {
    color: var(--fc10-blue);
    margin-top: 0.12rem;
}

.fc10-info-card {
    padding: 1.25rem;
}

.fc10-info-card ul {
    color: var(--fc10-muted);
    display: grid;
    gap: 0.7rem;
    margin: 0;
    padding-left: 1.15rem;
}

.fc10-sticky-stack {
    display: grid;
    gap: 1rem;
    position: sticky;
    top: 108px;
}

.fc10-info-list,
.fc10-related-list {
    display: grid;
    gap: 0.75rem;
}

.fc10-info-list span {
    align-items: center;
    color: var(--fc10-muted);
    display: flex;
    gap: 0.65rem;
}

.fc10-info-list i {
    color: var(--fc10-blue);
}

.fc10-related-list a {
    border: 1px solid var(--fc10-line);
    border-radius: 8px;
    display: grid;
    gap: 0.25rem;
    padding: 0.85rem;
}

.fc10-related-list strong {
    color: var(--fc10-ink);
}

.fc10-related-list span {
    color: var(--fc10-muted);
    font-size: 0.92rem;
}

.fc10-curriculum,
.fc10-lessons {
    display: grid;
    gap: 0.85rem;
}

.fc10-module {
    border: 1px solid var(--fc10-line);
    border-radius: 8px;
    overflow: hidden;
}

.fc10-module header {
    align-items: center;
    background: var(--fc10-soft);
    display: flex;
    gap: 0.85rem;
    padding: 1rem;
}

.fc10-module header > span,
.fc10-path-course-list article > span {
    align-items: center;
    background: var(--fc10-blue);
    border-radius: 999px;
    color: #fff;
    display: inline-flex;
    flex: 0 0 38px;
    font-weight: 900;
    height: 38px;
    justify-content: center;
    width: 38px;
}

.fc10-module h3,
.fc10-path-course-list h3 {
    font-size: 1.05rem;
    font-weight: 900;
    margin: 0;
}

.fc10-module p,
.fc10-path-course-list p {
    color: var(--fc10-muted);
    margin: 0;
}

.fc10-lessons {
    padding: 0.85rem;
}

.fc10-lessons > div {
    align-items: flex-start;
    border: 1px solid var(--fc10-line);
    border-radius: 8px;
    display: grid;
    gap: 0.75rem;
    grid-template-columns: auto 1fr auto;
    padding: 0.85rem;
}

.fc10-lessons i {
    color: var(--fc10-blue);
    margin-top: 0.15rem;
}

.fc10-lessons small {
    color: var(--fc10-muted);
    white-space: nowrap;
}

.fc10-path-course-list {
    display: grid;
    gap: 0.85rem;
}

.fc10-path-course-list article {
    align-items: flex-start;
    border: 1px solid var(--fc10-line);
    border-radius: 8px;
    display: grid;
    gap: 1rem;
    grid-template-columns: auto 1fr auto;
    padding: 1rem;
}

.fc10-path-course-list h3 a {
    color: var(--fc10-ink);
}

.fc10-prose {
    color: var(--fc10-muted);
    line-height: 1.75;
}

.fc10-prose h2 {
    color: var(--fc10-ink);
    font-size: 1.18rem;
    font-weight: 900;
    margin-top: 1.5rem;
}

.fc10-prose h2:first-child {
    margin-top: 0;
}

.fc10-reveal {
    opacity: 0;
    transform: translateY(18px);
    transition: opacity 520ms ease, transform 520ms ease;
}

.fc10-reveal.is-visible {
    opacity: 1;
    transform: translateY(0);
}

@media (max-width: 1199.98px) {
    .fc10-navbar .navbar-collapse {
        background: #fff;
        border: 1px solid var(--fc10-line);
        border-radius: 8px;
        box-shadow: var(--fc10-shadow-sm);
        margin-top: 0.85rem;
        max-height: calc(100vh - 6rem);
        overflow-y: auto;
        padding: 1rem;
    }

    .fc10-navbar__actions .btn {
        flex: 0 0 auto;
        white-space: nowrap;
    }

    .fc10-float-card--middle {
        right: 8px;
    }

    .fc10-benefits {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .fc10-roadmap {
        overflow-x: auto;
    }

    .fc10-course-grid,
    .fc10-path-grid {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

@media (max-width: 991.98px) {
    .fc10-navbar .navbar-collapse {
        background: #fff;
        border: 1px solid var(--fc10-line);
        border-radius: 8px;
        box-shadow: var(--fc10-shadow-sm);
        margin-top: 0.85rem;
        padding: 1rem;
    }

    .fc10-hero {
        padding-top: 118px;
    }

    .fc10-hero-art {
        min-height: 460px;
    }

    .fc10-float-card {
        position: relative;
        right: auto;
        top: auto;
    }

    .fc10-float-card--top,
    .fc10-float-card--middle,
    .fc10-float-card--bottom {
        bottom: auto;
        margin-top: 0.75rem;
    }

    .fc10-hero-art {
        display: grid;
        gap: 0.5rem;
    }

    .fc10-note {
        left: 0;
        top: 50px;
    }

    .fc10-steps {
        grid-template-columns: 1fr;
    }

    .fc10-step-arrow {
        transform: rotate(90deg);
        text-align: center;
    }

    .fc10-filter-panel,
    .fc10-sticky-stack {
        position: static;
    }

    .fc10-detail-hero {
        padding-top: 118px;
    }

    .fc10-path-course-list article {
        grid-template-columns: auto 1fr;
    }

    .fc10-path-course-list article .btn {
        grid-column: 2;
        justify-self: start;
    }
}

@media (max-width: 767.98px) {
    .fc10-section {
        padding: 36px 0;
    }

    .fc10-section-head,
    .fc10-cta,
    .fc10-footer__bottom {
        align-items: flex-start;
        flex-direction: column;
    }

    .fc10-hero__title {
        font-size: 2.6rem;
    }

    .fc10-hero-art img {
        width: 100%;
    }

    .fc10-hero-art__ring {
        height: 320px;
        right: -20px;
        width: 320px;
    }

    .fc10-benefits {
        grid-template-columns: 1fr;
    }

    .fc10-roadmap {
        align-items: stretch;
        flex-direction: column;
    }

    .fc10-roadmap > i {
        transform: rotate(90deg);
        text-align: center;
    }

    .fc10-page-hero,
    .fc10-detail-hero {
        padding-bottom: 42px;
    }

    .fc10-page-hero h1,
    .fc10-detail-hero h1 {
        font-size: 2.35rem;
    }

    .fc10-course-grid,
    .fc10-path-grid,
    .fc10-check-grid {
        grid-template-columns: 1fr;
    }

    .fc10-lessons > div {
        grid-template-columns: auto 1fr;
    }

    .fc10-lessons small {
        grid-column: 2;
    }

    .fc10-pagination {
        align-items: stretch;
        flex-direction: column;
    }

    .fc10-pagination a,
    .fc10-pagination span,
    .fc10-pagination strong {
        text-align: center;
    }
}
