/*
 * Home page â€“ courses listing styles + split hero section
 */
 @import url('courses.css');

 /* ========== Split hero (reference layout, theme colors) ========== */
 .home-hero--split {
     position: relative;
     width: 100%;
     min-height: calc(100vh - var(--header-height, 72px));
     min-height: calc(100dvh - var(--header-height, 72px));
     display: flex;
     align-items: center;
     padding: clamp(5rem, 10vh, 7rem) 0 clamp(3rem, 6vh, 5rem);
     background-color: var(--bg-base);
     overflow: hidden;
 }
 
 .home-hero__glow {
     position: absolute;
     top: -20%;
     left: -10%;
     width: 55%;
     height: 70%;
     background: radial-gradient(ellipse at center, rgba(var(--brand-rgb), 0.12) 0%, transparent 70%);
     pointer-events: none;
     z-index: 0;
 }
 
 .home-hero__container {
     position: relative;
     z-index: 1;
     width: 100%;
     max-width: 1320px;
     margin: 0 auto;
     box-sizing: border-box;
 }
 
 .home-hero__copy,
 .home-hero__grid {
     min-width: 0;
     max-width: 100%;
 }
 
 .home-hero__grid {
     display: grid;
     grid-template-columns: minmax(0, 1fr);
     gap: 2.5rem;
     align-items: center;
 }
 
 @media (min-width: 992px) {
     .home-hero__grid {
         grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
         gap: clamp(2rem, 4vw, 4rem);
     }
 }
 
 /* Left column â€” copy */
 .home-hero__copy {
     max-width: 560px;
 }
 
 .home-hero__title {
     margin: 0 0 1.5rem;
     font-size: clamp(2.75rem, 8.5vw, 4.25rem);
     font-weight: 700;
     line-height: 1.12;
     letter-spacing: -0.03em;
     color: var(--text-primary);
 }
 
 .home-hero__title-line {
     display: block;
 }
 
 .home-hero__brand {
     color: var(--brand-color);
 }
 
 .home-hero__subtitle {
     margin: 0 0 2rem;
     max-width: 520px;
     font-size: clamp(0.98rem, 2.8vw, 1.125rem);
     line-height: 1.7;
     color: var(--text-secondary);
 }
 
 .home-hero__actions {
     display: flex;
     flex-wrap: wrap;
     gap: 0.85rem;
     margin-bottom: 2.25rem;
 }
 
 .home-hero__btn-primary {
     padding: 0.95rem 1.75rem !important;
     font-size: 1rem !important;
     font-weight: 600 !important;
     box-shadow: none !important;
 }
 
 .home-hero__btn-primary:hover {
     box-shadow: none !important;
 }
 
 .home-hero__btn-primary i {
     font-size: 0.85rem;
     transition: transform 0.25s ease;
 }
 
 .home-hero__btn-primary:hover i {
     transform: translateX(3px);
 }
 
 .home-hero__btn-secondary {
     padding: 0.95rem 1.75rem !important;
     font-size: 1rem !important;
     font-weight: 600 !important;
     border-color: var(--brand-color) !important;
     color: var(--text-primary) !important;
     background: transparent !important;
 }
 
 .home-hero__btn-secondary:hover {
     background: rgba(var(--brand-rgb), 0.1) !important;
     border-color: var(--brand-color-hover) !important;
     color: var(--text-primary) !important;
 }
 
 /* Social proof */
 .home-hero__trust {
     display: flex;
     align-items: center;
     gap: 1rem;
     flex-wrap: wrap;
 }
 
 .home-hero__trust-avatars {
     display: flex;
     align-items: center;
 }
 
 .home-hero__trust-avatars img {
     width: 44px;
     height: 44px;
     border-radius: 50%;
     border: 2px solid var(--bg-base);
     margin-left: -12px;
     object-fit: cover;
 }
 
 .home-hero__trust-avatars img:first-child {
     margin-left: 0;
 }
 
 .home-hero__trust-label {
     margin: 0;
     font-size: 0.95rem;
     line-height: 1.4;
     color: var(--text-secondary);
 }
 
 .home-hero__trust-label strong {
     color: var(--text-primary);
     font-weight: 700;
 }
 
 /* Right column â€” single static image */
 .home-hero__media {
     position: relative;
     width: 100%;
     max-width: 100%;
     border-radius: 28px;
     overflow: hidden;
     aspect-ratio: 5 / 4;
     min-height: 220px;
     background: var(--bg-surface);
     border: 1px solid var(--border-subtle);
     box-shadow:
         0 24px 60px rgba(0, 0, 0, 0.45),
         0 0 0 1px rgba(var(--brand-rgb), 0.08);
 }
 
 .home-hero__img {
     display: block;
     width: 100%;
     height: 100%;
     object-fit: cover;
     object-position: center;
 }
 
 .home-hero__media-frame {
     position: absolute;
     inset: 0;
     z-index: 1;
     pointer-events: none;
     border-radius: inherit;
     box-shadow: inset 0 0 0 1px rgba(255, 255, 255, 0.06);
 }
 
 @media (max-width: 991px) {
     .home-hero--split {
         min-height: auto;
         padding: 6.5rem 0 2.5rem;
         align-items: flex-start;
     }
 
     .home-hero__grid {
         gap: 1.75rem;
     }
 
     .home-hero__copy {
         max-width: none;
         text-align: left;
     }
 
     .home-hero__subtitle {
         max-width: none;
         margin-left: 0;
         margin-right: 0;
         text-align: left;
     }
 
     .home-hero__actions {
         justify-content: flex-start;
         margin-bottom: 0;
     }
 
     .home-hero__trust {
         display: none !important;
     }
 
     .home-hero__media {
         display: block;
         border-radius: 20px;
         min-height: 200px;
         aspect-ratio: 4 / 3;
     }
 }
 
 @media (max-width: 575px) {
     .hero-action-buttons {
         flex-direction: column;
         width: 100%;
     }
 
     .home-hero__actions .btn {
         width: 100%;
         justify-content: center;
     }
 
     .home-hero__btn-primary {
         padding: 1rem 1.5rem !important;
         font-size: 1.05rem !important;
     }
 }
 
 /* ========== Mission section (after hero) ========== */
 .home-mission {
     position: relative;
     padding: clamp(3.5rem, 8vw, 5.5rem) 0;
     background: var(--bg-base);
     overflow: hidden;
 }
 
 .home-mission__inner {
     display: grid;
     grid-template-columns: minmax(0, 1fr);
     gap: 2rem;
     align-items: center;
     max-width: 1320px;
     margin: 0 auto;
 }
 
 .home-mission__content {
     min-width: 0;
     max-width: 100%;
 }
 
 .home-mission__title {
     margin: 0 0 1.75rem;
     font-size: clamp(1.85rem, 5.5vw, 2.75rem);
     font-weight: 700;
     line-height: 1.2;
     letter-spacing: -0.03em;
     color: var(--text-primary);
     text-align: left;
 }
 
 .home-mission__accent {
     color: var(--brand-color);
 }
 
 .home-mission__copy {
     display: flex;
     flex-direction: column;
     gap: 1.15rem;
 }
 
 .home-mission__copy p {
     margin: 0;
     font-size: clamp(1rem, 2.6vw, 1.125rem);
     line-height: 1.75;
     color: var(--text-secondary);
     text-align: left;
 }
 
 .home-mission__pull {
     position: relative;
     margin: 0.25rem 0 !important;
     padding: 0.35rem 0 0.35rem 1.1rem;
     font-weight: 700 !important;
     color: var(--text-primary) !important;
     border-left: 4px solid var(--brand-color);
 }
 
 .home-mission__media {
     position: relative;
     margin: 0;
     width: 100%;
     max-width: 100%;
     min-width: 0;
     border-radius: 20px;
     overflow: hidden;
     border: 1px solid var(--border-subtle);
     background: var(--bg-surface);
     aspect-ratio: 16 / 10;
 }
 
 .home-mission__img {
     display: block;
     width: 100%;
     height: 100%;
     object-fit: cover;
     object-position: center;
 }
 
 .home-mission__caption {
     position: absolute;
     top: 1rem;
     right: 1rem;
     left: auto;
     max-width: min(14rem, 70%);
     margin: 0;
     padding: 0;
     font-size: clamp(0.78rem, 2.2vw, 0.92rem);
     font-weight: 600;
     line-height: 1.35;
     letter-spacing: 0.02em;
     text-align: right;
     color: #fff;
     text-shadow: 0 2px 12px rgba(0, 0, 0, 0.55);
 }
 
 .home-mission__caption .home-mission__accent {
     text-transform: uppercase;
     letter-spacing: 0.06em;
 }
 
 /* Desktop: image left, content right */
 @media (min-width: 992px) {
     .home-mission__inner {
         grid-template-columns: minmax(0, 1.05fr) minmax(0, 0.95fr);
         gap: clamp(2.5rem, 4vw, 4rem);
     }
 
     .home-mission__media {
         order: -1;
         border-radius: 24px;
         aspect-ratio: 4 / 5;
         min-height: 420px;
         max-height: 560px;
     }
 
     .home-mission__title {
         font-size: clamp(2.1rem, 3vw, 2.5rem);
         margin-bottom: 1.5rem;
     }
 
     .home-mission__copy p {
         font-size: 1.05rem;
     }
 }
 
/* ========== Course / bundle marquee (after mission) ========== */
.home-marquee {
    position: relative;
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    background: transparent;
    padding: clamp(1.1rem, 2.5vw, 1.75rem) 0;
    contain: inline-size;
}

.home-marquee__tilt {
    display: flex;
    flex-direction: column;
    gap: 0;
    width: 112%;
    margin-left: -6%;
    transform: rotate(-1.25deg);
    transform-origin: center center;
}

.home-marquee__row {
    overflow: hidden;
    width: 100%;
    max-width: none;
    padding: 0.9rem 0;
    margin: 0;
}

/* Different backgrounds per line — no gap between rows */
.home-marquee__row--ltr {
    background: var(--brand-color);
}

.home-marquee__row--rtl {
    background: var(--bg-surface);
    border-top: 0;
    border-bottom: 1px solid var(--border-subtle);
}

.home-marquee__track {
    display: flex;
    flex-wrap: nowrap;
    align-items: center;
    gap: 0;
    width: max-content;
    will-change: transform;
}

.home-marquee__item,
.home-marquee__sep {
    flex: 0 0 auto;
    white-space: nowrap;
    font-size: clamp(0.95rem, 2.2vw, 1.15rem);
    font-weight: 600;
    letter-spacing: 0.01em;
    line-height: 1.3;
}

.home-marquee__item {
    padding: 0 0.15rem;
}

.home-marquee__sep {
    padding: 0 1.1rem;
    font-weight: 700;
}

/* Top row (brand bg): light multi-tone names */
.home-marquee__row--ltr .home-marquee__tone-1 { color: #ffffff; }
.home-marquee__row--ltr .home-marquee__tone-2 { color: #c7d2fe; }
.home-marquee__row--ltr .home-marquee__tone-3 { color: #fde68a; }
.home-marquee__row--ltr .home-marquee__tone-4 { color: #a5f3fc; }
.home-marquee__row--ltr .home-marquee__tone-5 { color: #fbcfe8; }
.home-marquee__row--ltr .home-marquee__tone-6 { color: #bbf7d0; }

/* Bottom row (surface bg): richer multi-tone names */
.home-marquee__row--rtl .home-marquee__tone-1 { color: var(--brand-color); }
.home-marquee__row--rtl .home-marquee__tone-2 { color: #0ea5e9; }
.home-marquee__row--rtl .home-marquee__tone-3 { color: #db2777; }
.home-marquee__row--rtl .home-marquee__tone-4 { color: #059669; }
.home-marquee__row--rtl .home-marquee__tone-5 { color: #d97706; }
.home-marquee__row--rtl .home-marquee__tone-6 { color: #7c3aed; }

.home-marquee__row--rtl .home-marquee__track {
    animation: homeMarqueeRtl 40s linear infinite;
}

.home-marquee__row--ltr .home-marquee__track {
    animation: homeMarqueeLtr 40s linear infinite;
}

@keyframes homeMarqueeRtl {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes homeMarqueeLtr {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
    .home-marquee__row--rtl .home-marquee__track,
    .home-marquee__row--ltr .home-marquee__track {
        animation: none;
        transform: none;
    }
}

html[data-theme="light"] .home-marquee__row--ltr {
    background: var(--brand-color);
}

html[data-theme="light"] .home-marquee__row--rtl {
    background: #eef2ff;
    border-bottom-color: rgba(var(--brand-rgb), 0.18);
}

/* ========== Social proof ========== */
.home-proof {
     padding: clamp(3.5rem, 8vw, 5.5rem) 0;
     background: var(--bg-base);
 }
 
 .home-proof__inner {
     width: 100%;
     max-width: 1320px;
     margin: 0 auto;
 }
 
 .home-proof__header {
     margin-bottom: 2.25rem;
     text-align: left;
 }
 
 .home-proof__badge {
     display: inline-flex;
     align-items: center;
     gap: 0.55rem;
     margin: 0 0 1.1rem;
     padding: 0.45rem 0.9rem 0.45rem 0.55rem;
     border-radius: 999px;
     border: 1px solid var(--border-subtle);
     background: var(--bg-surface);
     color: var(--text-primary);
     font-size: 0.85rem;
     font-weight: 500;
     line-height: 1.2;
 }
 
 .home-proof__badge-dot {
     width: 0.65rem;
     height: 0.65rem;
     border-radius: 50%;
     background: var(--brand-color);
     flex-shrink: 0;
 }
 
 .home-proof__title {
     margin: 0 0 0.85rem;
     font-size: clamp(1.85rem, 5vw, 2.6rem);
     font-weight: 700;
     line-height: 1.15;
     letter-spacing: -0.03em;
     color: var(--text-primary);
 }
 
 .home-proof__accent {
     color: var(--brand-color);
 }
 
 .home-proof__subtitle {
     margin: 0;
     max-width: 36rem;
     font-size: clamp(0.98rem, 2.5vw, 1.08rem);
     line-height: 1.65;
     color: var(--text-secondary);
 }
 
 .home-proof__list {
     list-style: none;
     margin: 0;
     padding: 0;
     display: grid;
     grid-template-columns: minmax(0, 1fr);
     gap: 0.9rem;
 }
 
 .home-proof__item {
     display: flex;
     align-items: center;
     gap: 1rem;
     min-width: 0;
     padding: 1.1rem 1rem;
     border-radius: 18px;
     border: 1px solid var(--border-subtle);
     background: var(--bg-surface);
     box-sizing: border-box;
 }
 
 .home-proof__icon {
     flex: 0 0 auto;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 3.1rem;
     height: 3.1rem;
     border-radius: 50%;
     background: var(--brand-color);
     color: var(--btn-brand-fg, #fff);
     font-size: 1.15rem;
 }
 
 .home-proof__body {
     flex: 1 1 auto;
     min-width: 0;
 }
 
 .home-proof__stat {
     margin: 0;
     font-size: clamp(1.45rem, 4vw, 1.75rem);
     font-weight: 700;
     line-height: 1.15;
     letter-spacing: -0.02em;
     color: var(--text-primary);
 }
 
 .home-proof__label {
     margin: 0.2rem 0 0.35rem;
     font-size: 0.78rem;
     font-weight: 700;
     letter-spacing: 0.06em;
     text-transform: uppercase;
     color: var(--brand-color);
 }
 
 .home-proof__desc {
     margin: 0;
     font-size: 0.9rem;
     line-height: 1.5;
     color: var(--text-secondary);
 }
 
 .home-proof__chevron {
     flex: 0 0 auto;
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 1.85rem;
     height: 1.85rem;
     border-radius: 50%;
     background: rgba(var(--brand-rgb), 0.15);
     color: var(--brand-color);
     font-size: 0.7rem;
 }
 
 @media (max-width: 420px) {
     .home-proof__item {
         gap: 0.75rem;
         padding: 1rem 0.85rem;
     }
 
     .home-proof__icon {
         width: 2.7rem;
         height: 2.7rem;
         font-size: 1rem;
     }
 
     .home-proof__chevron {
         display: none;
     }
 }
 
 @media (min-width: 992px) {
     .home-proof__list {
         grid-template-columns: repeat(2, minmax(0, 1fr));
         gap: 1.25rem;
     }
 
     .home-proof__item {
         padding: 1.35rem 1.4rem;
         border-radius: 20px;
     }
 
     .home-proof__header {
         margin-bottom: 2.75rem;
     }
 
     .home-proof__subtitle {
         max-width: 42rem;
     }
 }
 
/* ========== Skills / individual courses + Career Bundles ========== */
.home-skills__header {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    gap: 1.15rem;
    margin-bottom: 1.75rem;
}

.home-skills__intro {
    min-width: 0;
    max-width: 100%;
}

.home-skills__title {
    margin: 0 0 0.65rem;
    font-size: clamp(1.85rem, 4.5vw, 2.6rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--text-primary);
}

.home-skills__subtitle {
    margin: 0;
    max-width: 38rem;
    font-size: clamp(1rem, 2.4vw, 1.1rem);
    line-height: 1.65;
    color: var(--text-secondary);
}

/* Mobile: hide header CTA — button only at bottom of courses */
.home-skills__header > .home-skills__all {
    display: none;
}

.home-skills__all {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    width: 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 0.9rem 1.35rem;
    border-radius: 999px;
    border: 1px solid rgba(var(--brand-rgb), 0.45);
    background: rgba(var(--brand-rgb), 0.08);
    color: var(--text-primary);
    font-size: 0.95rem;
    font-weight: 600;
    line-height: 1.2;
    text-decoration: none;
    text-align: center;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease, transform 0.2s ease;
}

.home-skills__all i {
    font-size: 0.8rem;
    transition: transform 0.2s ease;
}

.home-skills__all:hover {
    background: var(--brand-color);
    border-color: var(--brand-color);
    color: var(--btn-brand-fg, #fff);
}

.home-skills__all:hover i {
    transform: translateX(3px);
}

.home-skills__footer-cta {
    display: flex;
    justify-content: center;
    margin-top: clamp(1.5rem, 4vw, 2rem);
    padding-top: 0;
}

.home-skills__all--footer {
    width: 100%;
    max-width: 22rem;
    background: var(--brand-color);
    border-color: var(--brand-color);
    color: var(--btn-brand-fg, #fff);
}

.home-skills__all--footer:hover {
    background: var(--brand-color-hover);
    border-color: var(--brand-color-hover);
    color: var(--btn-brand-fg, #fff);
}

@media (min-width: 768px) {
    .home-skills__header {
        flex-direction: row;
        align-items: flex-end;
        justify-content: space-between;
        gap: 1.5rem;
    }

    .home-skills__header > .home-skills__all {
        display: inline-flex;
    }

    .home-skills__all {
        width: auto;
        min-width: 11.5rem;
        flex: 0 0 auto;
        padding: 0.85rem 1.4rem;
    }

    .home-skills__all--footer {
        width: auto;
        min-width: 14rem;
        max-width: none;
    }
}

.home-skills__label {
    margin: 0 0 1rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-color);
}

.home-skills__label--bundle {
    margin-bottom: 0.5rem;
}

.home-skills__grid {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.15rem;
}

/* Mobile: only first 3 courses */
.home-skills__grid > .home-skill-card:nth-child(n + 4) {
    display: none;
}

@media (min-width: 992px) {
    .home-skills__grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1.25rem;
    }

    /* Desktop: show 6 courses in 2 rows × 3 columns */
    .home-skills__grid > .home-skill-card:nth-child(n + 4) {
        display: flex;
    }

    .home-skills__grid > .home-skill-card:nth-child(n + 7) {
        display: none;
    }
}

.home-skill-card {
    display: flex;
    flex-direction: column;
    min-width: 0;
    border-radius: 20px;
    border: 1px solid var(--border-subtle);
    background: var(--bg-surface);
    overflow: hidden;
    transition: border-color 0.2s ease, transform 0.2s ease;
}

.home-skill-card:hover {
    border-color: rgba(var(--brand-rgb), 0.4);
    transform: translateY(-2px);
}

.home-skill-card__top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
    padding: 0.9rem 1rem 0;
}

.home-skill-card__icon {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 12px;
    background: rgba(var(--brand-rgb), 0.12);
    color: var(--brand-color);
    font-size: 1.05rem;
}

.home-skill-card__badge {
    padding: 0.28rem 0.65rem;
    border-radius: 999px;
    font-size: 0.72rem;
    font-weight: 700;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    background: var(--brand-color);
    color: var(--btn-brand-fg, #fff);
}

.home-skill-card__badge--soft {
    background: rgba(var(--brand-rgb), 0.12);
    color: var(--brand-color);
}

.home-skill-card__badge--soon {
    background: #f59e0b;
    color: #111;
}

.home-skill-card__media {
    position: relative;
    margin: 0.85rem 1rem 0;
    border-radius: 14px;
    overflow: hidden;
    aspect-ratio: 16 / 10;
    background: var(--bg-base);
}

.home-skill-card__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.home-skill-card__media > .home-skill-card__img {
    position: absolute;
    inset: 0;
}

.home-skill-card__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(0, 0, 0, 0.28);
    color: #fff;
    font-size: 1.1rem;
}

.home-skill-card__media .course-card__preview-iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

.home-skill-card__body {
    display: flex;
    flex-direction: column;
    flex: 1;
    padding: 1rem;
    min-width: 0;
}

.home-skill-card__title {
    margin: 0 0 0.45rem;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
}

.home-skill-card__desc {
    margin: 0 0 0.9rem;
    font-size: 0.9rem;
    line-height: 1.55;
    color: var(--text-secondary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-skill-card__facts {
    list-style: none;
    margin: 0 0 0.85rem;
    padding: 0;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem 0.85rem;
}

.home-skill-card__facts li {
    display: inline-flex;
    align-items: center;
    gap: 0.4rem;
    font-size: 0.82rem;
    font-weight: 600;
    color: var(--text-primary);
}

.home-skill-card__facts i {
    color: var(--brand-color);
}

.home-skill-card__price {
    margin: 0 0 0.85rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: var(--text-primary);
}

.home-skill-card__price s {
    margin-left: 0.4rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.home-skill-card__cta {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.45rem;
    width: 100%;
    padding: 0.8rem 1rem;
    border-radius: 999px;
    border: 1px solid var(--brand-color);
    background: var(--brand-color);
    color: var(--btn-brand-fg, #fff);
    font-size: 0.92rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.home-skill-card__cta:hover {
    background: var(--brand-color-hover);
    border-color: var(--brand-color-hover);
    color: var(--btn-brand-fg, #fff);
}

.home-skills__empty {
    grid-column: 1 / -1;
    text-align: center;
    padding: 2rem 1rem;
    border: 1px dashed var(--border-subtle);
    border-radius: 16px;
    color: var(--text-secondary);
}

/* Career Bundles — distinct from individual course cards */
.home-bundles {
    margin-top: clamp(2.75rem, 6vw, 4rem);
    padding-top: clamp(2rem, 4vw, 2.75rem);
    border-top: 1px solid var(--border-subtle);
}

.home-bundles__header {
    margin-bottom: 1.5rem;
    max-width: 40rem;
}

.home-bundles__title {
    margin: 0 0 0.5rem;
    font-size: clamp(1.4rem, 3vw, 1.85rem);
    font-weight: 700;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.home-bundles__subtitle {
    margin: 0;
    font-size: 0.98rem;
    line-height: 1.6;
    color: var(--text-secondary);
}

.home-bundles__list {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1rem;
}

@media (min-width: 900px) {
    .home-bundles__list {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }
}

.home-bundle-card {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 0;
    min-width: 0;
    border-radius: 18px;
    border: 1px solid rgba(var(--brand-rgb), 0.28);
    background: linear-gradient(135deg, rgba(var(--brand-rgb), 0.08) 0%, var(--bg-surface) 55%);
    overflow: hidden;
}

@media (min-width: 560px) {
    .home-bundle-card {
        grid-template-columns: 140px minmax(0, 1fr);
    }
}

.home-bundle-card__visual {
    position: relative;
    min-height: 140px;
    background: rgba(var(--brand-rgb), 0.16);
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-bundle-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    min-height: 140px;
}

.home-bundle-card__visual > .home-bundle-card__img.theme-media--dark,
.home-bundle-card__visual > .home-bundle-card__img.theme-media--light {
    position: absolute;
    inset: 0;
}

.home-bundle-card__pack {
    font-size: 2rem;
    color: var(--brand-color);
}

.home-bundle-card__tag {
    position: absolute;
    top: 0.65rem;
    left: 0.65rem;
    padding: 0.25rem 0.55rem;
    border-radius: 6px;
    font-size: 0.68rem;
    font-weight: 800;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    background: var(--text-primary);
    color: var(--bg-base);
}

.home-bundle-card__content {
    padding: 1.1rem 1.15rem 1.15rem;
    min-width: 0;
}

.home-bundle-card__title {
    margin: 0 0 0.4rem;
    font-size: 1.15rem;
    font-weight: 700;
    color: var(--text-primary);
}

.home-bundle-card__desc {
    margin: 0 0 0.65rem;
    font-size: 0.88rem;
    line-height: 1.5;
    color: var(--text-secondary);
}

.home-bundle-card__count {
    margin: 0 0 0.55rem;
    font-size: 0.85rem;
    font-weight: 600;
    color: var(--brand-color);
}

.home-bundle-card__count i {
    margin-right: 0.3rem;
}

.home-bundle-card__courses {
    margin: 0 0 0.9rem;
    padding: 0 0 0 1rem;
    color: var(--text-secondary);
    font-size: 0.84rem;
    line-height: 1.45;
}

.home-bundle-card__more {
    list-style: none;
    margin-left: -1rem;
    font-weight: 600;
    color: var(--brand-color);
}

.home-bundle-card__footer {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    justify-content: space-between;
    gap: 0.75rem;
}

.home-bundle-card__price {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    color: var(--text-primary);
}

.home-bundle-card__price s {
    margin-left: 0.35rem;
    font-size: 0.85rem;
    font-weight: 500;
    color: var(--text-secondary);
}

.home-bundle-card__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.65rem 1.1rem;
    border-radius: 10px;
    border: 1px solid var(--text-primary);
    background: transparent;
    color: var(--text-primary);
    font-size: 0.88rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease, color 0.2s ease;
}

.home-bundle-card__cta:hover {
    background: var(--text-primary);
    color: var(--bg-base);
}

/* ========== Weekly masterclass promo ========== */
.home-weekly {
    margin-top: clamp(2.75rem, 6vw, 4rem);
}

.home-weekly__card {
    position: relative;
    overflow: hidden;
    border-radius: 24px;
    border: 1px solid var(--border-subtle);
    background-color: var(--bg-surface);
    background-image:
        radial-gradient(rgba(var(--brand-rgb), 0.07) 1px, transparent 1px);
    background-size: 18px 18px;
    padding: clamp(1.5rem, 4vw, 2.5rem) clamp(1.25rem, 4vw, 2.5rem) 0;
}

.home-weekly__ribbon {
    position: absolute;
    top: 1.75rem;
    right: 0;
    z-index: 2;
    padding: 0.35rem 0.85rem;
    border-radius: 8px 0 0 8px;
    background: var(--brand-color);
    color: var(--btn-brand-fg, #fff);
    font-size: 0.72rem;
    font-weight: 800;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    writing-mode: vertical-rl;
    transform: rotate(180deg);
}

.home-weekly__header {
    text-align: center;
    max-width: 36rem;
    margin: 0 auto 1.75rem;
    padding-right: 1.5rem;
}

.home-weekly__title {
    margin: 0 0 0.55rem;
    font-size: clamp(1.55rem, 4.2vw, 2.15rem);
    font-weight: 700;
    letter-spacing: -0.03em;
    line-height: 1.2;
    color: var(--text-primary);
}

.home-weekly__lead {
    margin: 0;
    font-size: clamp(0.95rem, 2.4vw, 1.05rem);
    line-height: 1.55;
    color: var(--text-secondary);
}

.home-weekly__body {
    display: grid;
    grid-template-columns: minmax(0, 1fr);
    gap: 1.5rem;
    align-items: end;
}

.home-weekly__copy {
    min-width: 0;
    padding-bottom: clamp(1.5rem, 4vw, 2.5rem);
}

.home-weekly__headline {
    margin: 0 0 0.85rem;
    font-size: clamp(1.85rem, 5vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.12;
    color: var(--text-primary);
}

.home-weekly__accent {
    color: var(--brand-color);
}

.home-weekly__desc {
    margin: 0 0 1.15rem;
    max-width: 32rem;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--text-secondary);
}

.home-weekly__benefits {
    list-style: none;
    margin: 0 0 1.35rem;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 0.65rem;
}

.home-weekly__benefits li {
    display: flex;
    align-items: flex-start;
    gap: 0.6rem;
    font-size: 0.95rem;
    font-weight: 500;
    line-height: 1.45;
    color: var(--text-primary);
}

.home-weekly__benefits i {
    margin-top: 0.2rem;
    color: var(--brand-color);
    font-size: 0.8rem;
}

.home-weekly__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.5rem;
    padding: 0.85rem 1.4rem;
    border-radius: 999px;
    background: var(--brand-color);
    color: var(--btn-brand-fg, #fff);
    font-size: 0.95rem;
    font-weight: 600;
    text-decoration: none;
    transition: background 0.2s ease;
}

.home-weekly__cta:hover {
    background: var(--brand-color-hover);
    color: var(--btn-brand-fg, #fff);
}

.home-weekly__visual {
    display: flex;
    justify-content: center;
    min-width: 0;
}

.home-weekly__phone {
    width: min(220px, 70vw);
    padding: 10px;
    border-radius: 28px;
    background: linear-gradient(160deg, #1f2937 0%, #0f172a 100%);
    box-shadow:
        0 20px 40px rgba(0, 0, 0, 0.35),
        0 0 0 1px rgba(255, 255, 255, 0.08);
    transform: rotate(-8deg) translateY(12px);
}

.home-weekly__phone-screen {
    min-height: 280px;
    border-radius: 20px;
    background: #0b1220;
    padding: 1.25rem 1rem 1.5rem;
    text-align: center;
    color: #e5e7eb;
}

.home-weekly__phone-label {
    margin: 0 0 1rem;
    font-size: 0.72rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    color: #94a3b8;
}

.home-weekly__phone-avatar {
    width: 4.25rem;
    height: 4.25rem;
    margin: 0 auto 0.85rem;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--brand-color), #22d3ee);
    color: #fff;
    font-weight: 800;
    font-size: 1.2rem;
    box-shadow: 0 8px 20px rgba(var(--brand-rgb), 0.35);
}

.home-weekly__phone-name {
    margin: 0 0 0.25rem;
    font-size: 1.05rem;
    font-weight: 700;
    color: #fff;
}

.home-weekly__phone-meta {
    margin: 0 0 1rem;
    font-size: 0.85rem;
    color: #94a3b8;
}

.home-weekly__phone-chip {
    display: inline-flex;
    padding: 0.4rem 0.75rem;
    border-radius: 999px;
    background: rgba(var(--brand-rgb), 0.2);
    color: #c7d2fe;
    font-size: 0.78rem;
    font-weight: 600;
}

@media (min-width: 900px) {
    .home-weekly__body {
        grid-template-columns: minmax(0, 1.15fr) minmax(0, 0.85fr);
        gap: 1rem;
    }

    .home-weekly__visual {
        justify-content: flex-end;
        padding-right: 1.25rem;
    }

    .home-weekly__phone {
        width: 240px;
        transform: rotate(-10deg) translateY(18px);
    }

    .home-weekly__phone-screen {
        min-height: 320px;
    }
}

html[data-theme="light"] .home-weekly__card {
    background-color: #fff;
    border-color: rgba(15, 23, 42, 0.1);
    box-shadow: none;
}

/* ========== How Apna Future Works (slider) ========== */
.home-works {
    background: var(--bg-base);
    overflow: hidden;
}

.home-works__wrap {
    max-width: 1320px;
}

.home-works__header {
    margin-bottom: 1.5rem;
    text-align: left;
}

.home-works__eyebrow {
    margin: 0 0 0.45rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.08em;
    text-transform: uppercase;
    color: var(--brand-color);
}

.home-works__title {
    margin: 0;
    font-size: clamp(1.85rem, 5vw, 2.75rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    line-height: 1.15;
    color: var(--text-primary);
}

.home-works__viewport {
    margin-right: calc(-1 * clamp(1rem, 4vw, 2rem));
}

.home-works__track {
    display: flex;
    gap: 1rem;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    -webkit-overflow-scrolling: touch;
    padding: 0.25rem clamp(1rem, 4vw, 2rem) 0.75rem 0;
    scrollbar-width: none;
}

.home-works__track::-webkit-scrollbar {
    display: none;
}

.home-works__card {
    flex: 0 0 min(86%, 340px);
    scroll-snap-align: start;
    min-width: 0;
    min-height: 260px;
    padding: 1.4rem 1.35rem 1.5rem;
    border-radius: 22px;
    background: var(--bg-surface);
    border: 1px solid var(--border-subtle);
    box-sizing: border-box;
    outline: none;
}

.home-works__card:focus-visible {
    border-color: var(--brand-color);
    box-shadow: 0 0 0 3px rgba(var(--brand-rgb), 0.25);
}

.home-works__btn:focus-visible,
.home-works__dot:focus-visible {
    outline: 2px solid var(--brand-color);
    outline-offset: 2px;
}

html[data-theme="light"] .home-works {
    background: #f1f5f9;
}

html[data-theme="light"] .home-works__card {
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.12);
    box-shadow: none;
}

html[data-theme="light"] .home-works__btn {
    background: #ffffff;
    border-color: rgba(15, 23, 42, 0.18);
    box-shadow: none;
    color: #0f172a;
}

html[data-theme="light"] .home-works__btn:hover:not(:disabled) {
    background: rgba(var(--brand-rgb), 0.08);
    border-color: var(--brand-color);
    color: var(--brand-color);
}

html[data-theme="light"] .home-works__dot {
    background: rgba(15, 23, 42, 0.28);
}

html[data-theme="light"] .home-works__dot.is-active {
    background: var(--brand-color);
}

html[data-theme="light"] .home-works__step,
html[data-theme="light"] .home-works__card-title,
html[data-theme="light"] .home-works__title {
    color: #0f172a;
}

html[data-theme="light"] .home-works__text {
    color: #334155;
}

html[data-theme="light"] .home-skill-card {
    background: #ffffff;
    border-color: rgba(15, 23, 42, 0.1);
    box-shadow: none;
}

html[data-theme="light"] .home-bundle-card {
    background: linear-gradient(135deg, rgba(var(--brand-rgb), 0.06) 0%, #ffffff 55%);
    border-color: rgba(var(--brand-rgb), 0.22);
    box-shadow: none;
}

html[data-theme="light"] .home-bundle-card__tag {
    background: #0f172a;
    color: #ffffff;
}

html[data-theme="light"] .home-bundle-card__cta {
    border-color: #0f172a;
    color: #0f172a;
}

html[data-theme="light"] .home-bundle-card__cta:hover {
    background: #0f172a;
    color: #ffffff;
}

html[data-theme="light"] .home-proof__item {
    background: #ffffff;
    border-color: rgba(15, 23, 42, 0.1);
    box-shadow: none;
}

html[data-theme="light"] .home-skills__all {
    background: rgba(var(--brand-rgb), 0.08);
    border-color: rgba(var(--brand-rgb), 0.35);
    color: #0f172a;
}

html[data-theme="light"] .home-skills__all:hover,
html[data-theme="light"] .home-skills__all--footer {
    background: var(--brand-color);
    border-color: var(--brand-color);
    color: #ffffff;
}

.home-works__step {
    margin: 0 0 1rem;
    font-size: 1.15rem;
    font-weight: 800;
    letter-spacing: -0.02em;
    color: var(--text-primary);
}

.home-works__row {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.85rem;
}

.home-works__icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 2.5rem;
    height: 2.5rem;
    border-radius: 50%;
    background: rgba(var(--brand-rgb), 0.14);
    color: var(--brand-color);
    font-size: 1rem;
}

.home-works__card-title {
    margin: 0;
    font-size: 1.1rem;
    font-weight: 700;
    line-height: 1.3;
    color: var(--text-primary);
}

.home-works__text {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.65;
    color: var(--text-secondary);
}

.home-works__controls {
    display: flex;
    align-items: center;
    justify-content: flex-start;
    gap: 0.75rem;
    margin-top: 1.15rem;
}

.home-works__btn {
    width: 2.6rem;
    height: 2.6rem;
    border-radius: 50%;
    border: 1px solid var(--border-subtle);
    background: var(--bg-surface);
    color: var(--text-primary);
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: background 0.2s ease, border-color 0.2s ease, color 0.2s ease;
}

.home-works__btn:hover {
    border-color: var(--brand-color);
    color: var(--brand-color);
}

.home-works__btn:disabled {
    opacity: 0.4;
    cursor: default;
}

.home-works__dots {
    display: flex;
    align-items: center;
    gap: 0.4rem;
    margin: 0 0.25rem;
}

.home-works__dot {
    width: 0.45rem;
    height: 0.45rem;
    border-radius: 999px;
    background: var(--border-subtle);
    border: 0;
    padding: 0;
    cursor: pointer;
    transition: width 0.2s ease, background 0.2s ease;
}

.home-works__dot.is-active {
    width: 1.15rem;
    background: var(--brand-color);
}

@media (min-width: 768px) {
    .home-works__card {
        flex-basis: min(48%, 380px);
        min-height: 280px;
        padding: 1.6rem 1.5rem 1.7rem;
    }
}

@media (min-width: 1100px) {
    .home-works__viewport {
        margin-right: 0;
    }

    .home-works__track {
        padding-right: 0;
    }

    .home-works__card {
        flex-basis: calc((100% - 2rem) / 3);
    }
}

/* ========== Meet Our Mentors (dual marquee) ========== */
.home-mentors {
    background: var(--bg-base);
    overflow: hidden;
}

.home-mentors__intro {
    text-align: center;
    margin-bottom: 1.75rem;
}

.home-mentors__title {
    margin: 0 0 0.5rem;
    font-size: clamp(1.85rem, 4.5vw, 2.6rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: var(--text-primary);
}

.home-mentors__subtitle {
    margin: 0;
    font-size: clamp(0.98rem, 2.4vw, 1.1rem);
    color: var(--text-secondary);
}

.home-mentors__marquee {
    width: 100%;
    max-width: 100%;
    overflow: hidden;
    contain: inline-size;
}

.home-mentors__row {
    overflow: hidden;
    width: 100%;
}

.home-mentors__row + .home-mentors__row {
    margin-top: 1rem;
}

.home-mentors__track {
    display: flex;
    flex-wrap: nowrap;
    gap: 1rem;
    width: max-content;
    will-change: transform;
    padding: 0.15rem 0;
}

.home-mentor-card {
    flex: 0 0 220px;
    width: 220px;
    border-radius: 18px;
    border: 1px solid var(--border-subtle);
    background: var(--bg-surface);
    overflow: hidden;
    box-shadow: none;
}

.home-mentor-card__media {
    position: relative;
    height: 132px;
    background: linear-gradient(160deg, rgba(var(--brand-rgb), 0.35), rgba(15, 23, 42, 0.85));
    overflow: hidden;
}

.home-mentor-card__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: center top;
}

.home-mentor-card__fallback {
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    color: rgba(255, 255, 255, 0.75);
    font-size: 2.5rem;
}

.home-mentor-card__body {
    padding: 0.9rem 0.95rem 1rem;
}

.home-mentor-card__name {
    margin: 0 0 0.25rem;
    font-size: 1rem;
    font-weight: 700;
    line-height: 1.25;
    color: var(--text-primary);
}

.home-mentor-card__expertise {
    margin: 0 0 0.45rem;
    font-size: 0.8rem;
    font-weight: 600;
    color: var(--brand-color);
}

.home-mentor-card__bio {
    margin: 0 0 0.55rem;
    font-size: 0.82rem;
    line-height: 1.45;
    color: var(--text-secondary);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.home-mentor-card__exp {
    margin: 0;
    font-size: 0.78rem;
    font-weight: 600;
    color: var(--text-primary);
}

.home-mentor-card__exp i {
    margin-right: 0.3rem;
    color: var(--brand-color);
}

.home-mentors__row--rtl .home-mentors__track {
    animation: homeMentorsRtl 70s linear infinite;
}

.home-mentors__row--ltr .home-mentors__track {
    animation: homeMentorsLtr 70s linear infinite;
}

@keyframes homeMentorsRtl {
    from { transform: translateX(0); }
    to { transform: translateX(-50%); }
}

@keyframes homeMentorsLtr {
    from { transform: translateX(-50%); }
    to { transform: translateX(0); }
}

@media (prefers-reduced-motion: reduce) {
    .home-mentors__row--rtl .home-mentors__track,
    .home-mentors__row--ltr .home-mentors__track {
        animation: none;
        transform: none;
    }
}

html[data-theme="light"] .home-mentors {
    background: #ffffff;
}

html[data-theme="light"] .home-mentor-card {
    background: #ffffff;
    border-color: rgba(15, 23, 42, 0.12);
    box-shadow: none;
}

/* ========== Career Opportunities ========== */
.home-career-ops {
    --career-ink: var(--text-primary);
    --career-mute: var(--text-secondary);
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: #f7f8fc;
    padding: clamp(3rem, 6vw, 4.5rem) 0;
}

.home-career-ops__aurora {
    position: absolute;
    left: 50%;
    top: 50%;
    width: min(860px, 95vw);
    height: min(860px, 95vw);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background:
        radial-gradient(circle at 50% 45%, rgba(var(--brand-rgb), 0.28) 0%, rgba(var(--brand-rgb), 0.12) 34%, rgba(247, 248, 252, 0) 68%);
    pointer-events: none;
    z-index: 0;
    animation: homeCareerOpsPulse 7s ease-in-out infinite;
}

.home-career-ops__ring {
    position: absolute;
    left: 50%;
    top: 50%;
    border-radius: 50%;
    border: 1px solid rgba(var(--brand-rgb), 0.18);
    transform: translate(-50%, -50%);
    pointer-events: none;
    z-index: 0;
}

.home-career-ops__ring--a {
    width: min(520px, 72vw);
    height: min(520px, 72vw);
    animation: homeCareerOpsRing 10s linear infinite;
}

.home-career-ops__ring--b {
    width: min(680px, 88vw);
    height: min(680px, 88vw);
    border-color: rgba(var(--brand-rgb), 0.1);
    animation: homeCareerOpsRing 16s linear infinite reverse;
}

.home-career-ops__stage {
    position: relative;
    z-index: 1;
    display: grid;
    grid-template-columns: 1fr;
    align-items: center;
    justify-items: center;
    min-height: clamp(340px, 48vw, 420px);
}

.home-career-ops__figure {
    display: none;
    position: absolute;
    bottom: 0;
    width: clamp(150px, 18vw, 220px);
    margin: 0;
    pointer-events: none;
    z-index: 1;
    mask-image: linear-gradient(to bottom, #000 48%, transparent 96%);
    -webkit-mask-image: linear-gradient(to bottom, #000 48%, transparent 96%);
}

.home-career-ops__figure--left {
    left: clamp(0rem, 1.5vw, 1rem);
    animation: homeCareerOpsInLeft 0.9s ease both;
}

.home-career-ops__figure--right {
    right: clamp(0rem, 1.5vw, 1rem);
    animation: homeCareerOpsInRight 0.9s ease both;
}

.home-career-ops__img {
    display: block;
    width: 100%;
    height: auto;
    max-height: 360px;
    object-fit: contain;
    object-position: bottom center;
    user-select: none;
    filter: drop-shadow(0 18px 28px rgba(15, 23, 42, 0.12));
}

.home-career-ops__img--flip {
    transform: scaleX(-1);
}

.home-career-ops__panel {
    position: relative;
    z-index: 2;
    width: min(100%, 560px);
    text-align: center;
    padding: 0.5rem 1rem;
    animation: homeCareerOpsIn 0.75s ease both;
}

.home-career-ops__eyebrow {
    margin: 0 0 0.7rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.14em;
    text-transform: uppercase;
    color: var(--brand-color);
}

.home-career-ops__title {
    margin: 0 0 0.75rem;
    font-size: clamp(1.7rem, 4.2vw, 2.55rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.12;
    color: #0f172a;
}

.home-career-ops__brand {
    display: block;
    margin-top: 0.2rem;
    color: var(--brand-color);
}

.home-career-ops__text {
    margin: 0 auto 1.4rem;
    max-width: 34ch;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    line-height: 1.55;
    color: #64748b;
}

.home-career-ops__paths {
    list-style: none;
    margin: 0 auto 1.55rem;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 0.7rem;
    max-width: 520px;
    background: transparent;
    border: none;
}

.home-career-ops__path {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 0.35rem;
    min-width: 0;
    padding: 0.85rem 0.9rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.82);
    border: 1px solid rgba(15, 23, 42, 0.07);
    text-align: left;
    transition: border-color 0.2s ease, transform 0.2s ease, background 0.2s ease;
    animation: homeCareerOpsItem 0.55s ease both;
}

.home-career-ops__path:hover {
    border-color: rgba(var(--brand-rgb), 0.35);
    background: #ffffff;
    transform: translateY(-2px);
}

.home-career-ops__path:nth-child(1) { animation-delay: 0.08s; }
.home-career-ops__path:nth-child(2) { animation-delay: 0.14s; }
.home-career-ops__path:nth-child(3) { animation-delay: 0.2s; }
.home-career-ops__path:nth-child(4) { animation-delay: 0.26s; }

.home-career-ops__path-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    gap: 0.5rem;
    margin-bottom: 0.15rem;
}

.home-career-ops__num {
    font-size: 0.7rem;
    font-weight: 800;
    letter-spacing: 0.1em;
    color: var(--brand-color);
}

.home-career-ops__icon {
    width: 30px;
    height: 30px;
    border-radius: 9px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(var(--brand-rgb), 0.12);
    color: var(--brand-color);
    font-size: 0.78rem;
    flex: 0 0 auto;
}

.home-career-ops__label {
    font-size: 0.95rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.25;
}

.home-career-ops__hint {
    font-size: 0.78rem;
    font-weight: 500;
    line-height: 1.35;
    color: #64748b;
}

.home-career-ops__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-width: 168px;
    padding: 0.9rem 1.7rem;
    border-radius: 12px;
    background: var(--brand-color);
    color: #fff;
    font-size: 1rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    box-shadow: none;
    transition: background 0.2s ease, transform 0.2s ease, gap 0.2s ease;
}

.home-career-ops__cta i {
    font-size: 0.85rem;
    transition: transform 0.2s ease;
}

.home-career-ops__cta:hover {
    background: var(--brand-color-hover);
    color: #fff;
    transform: translateY(-2px);
    gap: 0.75rem;
}

.home-career-ops__cta:hover i {
    transform: translateX(2px);
}

.home-career-ops__cta:focus-visible {
    outline: 2px solid var(--brand-color);
    outline-offset: 3px;
}

@keyframes homeCareerOpsIn {
    from { opacity: 0; transform: translateY(14px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes homeCareerOpsInLeft {
    from { opacity: 0; transform: translateX(-24px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes homeCareerOpsInRight {
    from { opacity: 0; transform: translateX(24px); }
    to { opacity: 1; transform: translateX(0); }
}

@keyframes homeCareerOpsItem {
    from { opacity: 0; transform: translateY(8px); }
    to { opacity: 1; transform: translateY(0); }
}

@keyframes homeCareerOpsPulse {
    0%, 100% { opacity: 0.85; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.04); }
}

@keyframes homeCareerOpsRing {
    from { transform: translate(-50%, -50%) rotate(0deg); }
    to { transform: translate(-50%, -50%) rotate(360deg); }
}

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

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

@media (min-width: 768px) {
    .home-career-ops__paths {
        max-width: 560px;
        gap: 0.8rem;
    }

    .home-career-ops__path {
        padding: 1rem 1rem 0.95rem;
    }

    .home-career-ops__label {
        font-size: 1rem;
    }
}

@media (min-width: 992px) {
    .home-career-ops__stage {
        padding: 0 12rem;
    }

    .home-career-ops__figure {
        display: block;
    }

    .home-career-ops__figure--left .home-career-ops__img {
        animation: homeCareerOpsFloat 6s ease-in-out infinite;
    }

    .home-career-ops__figure--right .home-career-ops__img--flip {
        animation: homeCareerOpsFloatFlip 6s ease-in-out infinite 0.45s;
    }
}

@media (prefers-reduced-motion: reduce) {
    .home-career-ops__aurora,
    .home-career-ops__ring,
    .home-career-ops__panel,
    .home-career-ops__path,
    .home-career-ops__figure,
    .home-career-ops__figure--left .home-career-ops__img,
    .home-career-ops__figure--right .home-career-ops__img--flip {
        animation: none !important;
    }
}

/* Keep this section luminous in both themes (reference look) */
html[data-theme="dark"] .home-career-ops {
    background: #0b1020;
}

html[data-theme="dark"] .home-career-ops__aurora {
    background:
        radial-gradient(circle at 50% 45%, rgba(var(--brand-rgb), 0.42) 0%, rgba(var(--brand-rgb), 0.16) 36%, rgba(11, 16, 32, 0) 70%);
}

html[data-theme="dark"] .home-career-ops__ring {
    border-color: rgba(var(--brand-rgb), 0.28);
}

html[data-theme="dark"] .home-career-ops__ring--b {
    border-color: rgba(var(--brand-rgb), 0.14);
}

html[data-theme="dark"] .home-career-ops__title {
    color: #f8fafc;
}

html[data-theme="dark"] .home-career-ops__text {
    color: #94a3b8;
}

html[data-theme="dark"] .home-career-ops__path {
    background: rgba(15, 23, 42, 0.62);
    border-color: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .home-career-ops__path:hover {
    background: rgba(20, 28, 48, 0.95);
    border-color: rgba(var(--brand-rgb), 0.45);
}

html[data-theme="dark"] .home-career-ops__label {
    color: #f1f5f9;
}

html[data-theme="dark"] .home-career-ops__hint {
    color: #94a3b8;
}

html[data-theme="dark"] .home-career-ops__icon {
    background: rgba(var(--brand-rgb), 0.2);
}

html[data-theme="dark"] .home-career-ops__img {
    filter: drop-shadow(0 18px 30px rgba(0, 0, 0, 0.45));
}

/* ========== What Our Students Say (vertical marquee) ========== */
.home-say {
    position: relative;
    overflow: hidden;
    background: #f3f4f6;
    padding: clamp(2.75rem, 5vw, 4rem) 0 clamp(2.25rem, 4vw, 3.25rem);
}

.home-say__intro {
    text-align: center;
    margin-bottom: 1.5rem;
}

.home-say__title {
    margin: 0 0 0.55rem;
    font-size: clamp(1.7rem, 4vw, 2.4rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f172a;
}

.home-say__subtitle {
    margin: 0 auto;
    max-width: 36ch;
    font-size: clamp(0.95rem, 2vw, 1.05rem);
    line-height: 1.5;
    color: #64748b;
}

.home-say__board {
    display: grid;
    gap: 1rem;
    width: 100%;
    max-width: none;
}

.home-say__board.container {
    max-width: none;
    width: 100%;
}

.home-say__board--mobile {
    grid-template-columns: 1fr;
}

.home-say__board--desktop {
    display: none;
}

.home-say__viewport {
    position: relative;
    width: 100%;
    min-width: 0;
    height: min(520px, 68vh);
    overflow: hidden;
    mask-image: linear-gradient(to bottom, transparent 0%, #000 10%, #000 90%, transparent 100%);
    -webkit-mask-image: linear-gradient(to bottom, transparent 0%, #000 10%, #000 90%, transparent 100%);
}

.home-say__track {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    will-change: transform;
    animation: homeSayScroll 50s linear infinite;
}

.home-say__viewport--2 .home-say__track {
    animation-duration: 58s;
    animation-direction: reverse;
}

.home-say__viewport--3 .home-say__track {
    animation-duration: 54s;
}

.home-say__viewport--4 .home-say__track {
    animation-duration: 62s;
    animation-direction: reverse;
}

@media (min-width: 768px) {
    .home-say__board--mobile {
        display: none;
    }

    .home-say__board--desktop {
        display: grid;
        grid-template-columns: repeat(3, minmax(0, 1fr));
        gap: 1rem;
    }

    .home-say__viewport--4 {
        display: none;
    }

    .home-say__viewport {
        height: min(560px, 70vh);
    }
}

@media (min-width: 1100px) {
    .home-say__board--desktop {
        grid-template-columns: repeat(4, minmax(0, 1fr));
        gap: 1.1rem;
    }

    .home-say__viewport--4 {
        display: block;
    }
}

.home-say__card {
    flex: 0 0 auto;
    background: #ffffff;
    border-radius: 16px;
    border: 1px solid rgba(15, 23, 42, 0.06);
    padding: 1.15rem 1.2rem 1.2rem;
    box-shadow: none;
}

.home-say__head {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    margin-bottom: 0.7rem;
}

.home-say__avatar {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    object-fit: cover;
    flex: 0 0 44px;
    background: #e2e8f0;
}

.home-say__avatar--fallback {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-weight: 700;
    font-size: 1rem;
    color: var(--brand-color);
    background: rgba(var(--brand-rgb), 0.12);
    border: 1px solid rgba(var(--brand-rgb), 0.22);
}

.home-say__meta {
    min-width: 0;
    text-align: left;
}

.home-say__name {
    margin: 0;
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    line-height: 1.25;
}

.home-say__course {
    margin: 0.15rem 0 0;
    font-size: 0.78rem;
    font-weight: 500;
    color: var(--brand-color);
}

.home-say__text {
    margin: 0;
    font-size: 0.92rem;
    line-height: 1.55;
    color: #475569;
    text-align: left;
}

@keyframes homeSayScroll {
    from { transform: translateY(0); }
    to { transform: translateY(-50%); }
}

@media (prefers-reduced-motion: reduce) {
    .home-say__track {
        animation: none;
    }

    .home-say__viewport {
        height: auto;
        max-height: none;
        overflow: visible;
        mask-image: none;
        -webkit-mask-image: none;
    }
}

html[data-theme="dark"] .home-say {
    background: #0a0a0a;
}

html[data-theme="dark"] .home-say__title {
    color: #f8fafc;
}

html[data-theme="dark"] .home-say__subtitle {
    color: #94a3b8;
}

html[data-theme="dark"] .home-say__card {
    background: #141414;
    border-color: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .home-say__name {
    color: #f1f5f9;
}

html[data-theme="dark"] .home-say__text {
    color: #a1a1aa;
}

html[data-theme="dark"] .home-say__avatar--fallback {
    background: rgba(var(--brand-rgb), 0.18);
}

/* ========== Why Us ========== */
.home-why {
    background: #ffffff;
    padding: clamp(2.75rem, 5vw, 4.25rem) 0;
}

.home-why__inner {
    display: flex;
    flex-direction: column;
    gap: 1.25rem;
}

.home-why__header {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem 1.5rem;
}

.home-why__title {
    margin: 0 0 0.35rem;
    font-size: clamp(1.8rem, 4vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f172a;
}

.home-why__subtitle {
    margin: 0;
    font-size: clamp(1rem, 2.2vw, 1.15rem);
    color: #64748b;
}

.home-why__social {
    display: inline-flex;
    align-items: center;
    gap: 0.65rem;
    padding: 0.45rem 0.75rem 0.45rem 0.55rem;
    border-radius: 999px;
    background: #f1f5f9;
    border: 1px solid rgba(15, 23, 42, 0.06);
}

.home-why__social-icons {
    display: inline-flex;
    align-items: center;
    gap: 0.35rem;
    color: var(--brand-color);
    font-size: 0.9rem;
}

.home-why__social-stat {
    font-size: 0.88rem;
    color: #475569;
}

.home-why__social-stat strong {
    color: #0f172a;
    font-weight: 800;
}

.home-why__stats {
    display: grid;
    grid-template-columns: 1fr;
    gap: 1.25rem;
    align-items: center;
    padding: 1.35rem 1.25rem;
    border-radius: 28px;
    background: #f1f5f9;
}

.home-why__stats-copy {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 1rem;
}

.home-why__stat-num {
    margin: 0 0 0.25rem;
    font-size: clamp(1.75rem, 4vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f172a;
    line-height: 1.1;
}

.home-why__stat-label {
    margin: 0;
    font-size: 0.92rem;
    color: #64748b;
}

.home-why__avatars {
    position: relative;
    height: 110px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.home-why__avatar {
    position: absolute;
    width: 52px;
    height: 52px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid #ffffff;
    background: #e2e8f0;
}

.home-why__avatar--1 { left: 50%; top: 50%; width: 68px; height: 68px; transform: translate(-50%, -50%); z-index: 3; }
.home-why__avatar--2 { left: 18%; top: 12%; }
.home-why__avatar--3 { right: 16%; top: 10%; }
.home-why__avatar--4 { left: 12%; bottom: 8%; }
.home-why__avatar--5 { right: 12%; bottom: 6%; }

.home-why__feature {
    padding: 1.4rem 1.2rem 1.35rem;
    border-radius: 28px;
    background: #ecfdf5;
    border: 1px solid rgba(16, 185, 129, 0.12);
}

.home-why__eyebrow {
    margin: 0 0 0.45rem;
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
    color: #059669;
}

.home-why__feature-title {
    margin: 0 0 1.15rem;
    max-width: 28ch;
    font-size: clamp(1.15rem, 2.6vw, 1.45rem);
    font-weight: 800;
    letter-spacing: -0.02em;
    line-height: 1.25;
    color: #0f172a;
}

.home-why__list {
    list-style: none;
    margin: 0;
    padding: 0;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0.65rem;
}

.home-why__list li {
    display: flex;
    align-items: center;
    gap: 0.7rem;
    min-width: 0;
    padding: 0.8rem 0.85rem;
    border-radius: 14px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(15, 23, 42, 0.05);
    font-size: 0.95rem;
    font-weight: 600;
    color: #0f172a;
}

.home-why__icon {
    flex: 0 0 36px;
    width: 36px;
    height: 36px;
    border-radius: 10px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(16, 185, 129, 0.14);
    color: #059669;
    font-size: 0.9rem;
}

.home-why__tagline {
    margin: 0.35rem auto 0;
    max-width: 42ch;
    text-align: center;
    font-size: 0.98rem;
    line-height: 1.55;
    color: #64748b;
}

@media (min-width: 768px) {
    .home-why__stats {
        grid-template-columns: 1.1fr 0.9fr;
        padding: 1.5rem 1.75rem;
    }

    .home-why__list {
        grid-template-columns: 1fr 1fr;
        gap: 0.75rem;
    }
}

@media (min-width: 992px) {
    .home-why__feature {
        display: grid;
        grid-template-columns: 0.9fr 1.2fr;
        gap: 1.5rem;
        align-items: center;
        padding: 1.75rem 1.75rem;
    }

    .home-why__feature-title {
        margin-bottom: 0;
    }

    .home-why__list {
        grid-template-columns: 1fr 1fr;
    }
}

html[data-theme="dark"] .home-why {
    background: #0a0a0a;
}

html[data-theme="dark"] .home-why__title,
html[data-theme="dark"] .home-why__stat-num,
html[data-theme="dark"] .home-why__feature-title,
html[data-theme="dark"] .home-why__list li {
    color: #f8fafc;
}

html[data-theme="dark"] .home-why__subtitle,
html[data-theme="dark"] .home-why__stat-label,
html[data-theme="dark"] .home-why__tagline {
    color: #94a3b8;
}

html[data-theme="dark"] .home-why__social,
html[data-theme="dark"] .home-why__stats {
    background: #141414;
    border-color: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .home-why__social-stat {
    color: #94a3b8;
}

html[data-theme="dark"] .home-why__social-stat strong {
    color: #f8fafc;
}

html[data-theme="dark"] .home-why__avatar {
    border-color: #141414;
}

html[data-theme="dark"] .home-why__feature {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.18);
}

html[data-theme="dark"] .home-why__list li {
    background: rgba(10, 10, 10, 0.55);
    border-color: rgba(255, 255, 255, 0.06);
}

html[data-theme="dark"] .home-why__icon {
    background: rgba(16, 185, 129, 0.18);
    color: #34d399;
}

/* ========== FAQ ========== */
.home-faq {
    background: #f8fafc;
    padding: clamp(2.75rem, 5vw, 4.25rem) 0;
}

.home-faq__inner {
    max-width: 820px;
}

.home-faq__header {
    text-align: center;
    margin-bottom: 1.5rem;
}

.home-faq__title {
    margin: 0 0 0.45rem;
    font-size: clamp(1.7rem, 4vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -0.03em;
    color: #0f172a;
}

.home-faq__subtitle {
    margin: 0;
    font-size: 1rem;
    color: #64748b;
}

.home-faq__list {
    display: flex;
    flex-direction: column;
    gap: 0.7rem;
}

.home-faq__item {
    border-radius: 16px;
    background: #ffffff;
    border: 1px solid rgba(15, 23, 42, 0.08);
    overflow: hidden;
}

.home-faq__question {
    list-style: none;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 1rem;
    padding: 1rem 1.15rem;
    font-size: 1rem;
    font-weight: 700;
    color: #0f172a;
    user-select: none;
}

.home-faq__question::-webkit-details-marker {
    display: none;
}

.home-faq__question::marker {
    content: "";
}

.home-faq__icon {
    flex: 0 0 auto;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: none;
    color: var(--brand-color);
    font-size: 0.85rem;
    transition: transform 0.2s ease;
}

.home-faq__item[open] .home-faq__icon {
    transform: rotate(45deg);
    background: none;
}

.home-faq__item[open] .home-faq__question {
    color: var(--brand-color);
}

.home-faq__answer {
    padding: 0 1.15rem 1.1rem;
}

.home-faq__answer p {
    margin: 0;
    font-size: 0.95rem;
    line-height: 1.6;
    color: #64748b;
}

html[data-theme="dark"] .home-faq {
    background: #050505;
}

html[data-theme="dark"] .home-faq__title {
    color: #f8fafc;
}

html[data-theme="dark"] .home-faq__subtitle,
html[data-theme="dark"] .home-faq__answer p {
    color: #94a3b8;
}

html[data-theme="dark"] .home-faq__item {
    background: #141414;
    border-color: rgba(255, 255, 255, 0.08);
}

html[data-theme="dark"] .home-faq__question {
    color: #f1f5f9;
}

html[data-theme="dark"] .home-faq__item[open] .home-faq__question {
    color: var(--brand-color);
}

/* Hear From Our Graduates — no video card shadows */
#alumni .reel-card,
#alumni .reel-card:hover {
    box-shadow: none;
}

/* ========== Final CTA ========== */
.home-final-cta {
    position: relative;
    overflow: hidden;
    isolation: isolate;
    background: #0b1020;
    padding: clamp(3.5rem, 7vw, 5.5rem) 0;
    text-align: center;
    margin-bottom: clamp(1.5rem, 4vw, 2.75rem);
}

.home-final-cta__glow {
    position: absolute;
    left: 50%;
    top: 45%;
    width: min(720px, 90vw);
    height: min(420px, 70%);
    transform: translate(-50%, -50%);
    border-radius: 50%;
    background: radial-gradient(circle, rgba(var(--brand-rgb), 0.38) 0%, rgba(var(--brand-rgb), 0.12) 42%, transparent 70%);
    pointer-events: none;
    z-index: 0;
    animation: homeFinalCtaPulse 7s ease-in-out infinite;
}

.home-final-cta__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 720px;
}

.home-final-cta__title {
    margin: 0 0 0.85rem;
    font-size: clamp(1.9rem, 5vw, 3rem);
    font-weight: 800;
    letter-spacing: -0.035em;
    line-height: 1.12;
    color: #f8fafc;
}

.home-final-cta__text {
    margin: 0 auto 1.6rem;
    max-width: 38ch;
    font-size: clamp(1rem, 2.2vw, 1.12rem);
    line-height: 1.55;
    color: #94a3b8;
}

.home-final-cta__btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 0.55rem;
    min-width: 168px;
    padding: 0.95rem 1.8rem;
    border-radius: 12px;
    background: var(--brand-color);
    color: #fff;
    font-size: 1.05rem;
    font-weight: 700;
    text-decoration: none;
    border: none;
    box-shadow: none;
    transition: background 0.2s ease, transform 0.2s ease, gap 0.2s ease;
}

.home-final-cta__btn i {
    font-size: 0.85rem;
    transition: transform 0.2s ease;
}

.home-final-cta__btn:hover {
    background: var(--brand-color-hover);
    color: #fff;
    transform: translateY(-2px);
    gap: 0.75rem;
}

.home-final-cta__btn:hover i {
    transform: translateX(2px);
}

.home-final-cta__btn:focus-visible {
    outline: 2px solid #fff;
    outline-offset: 3px;
}

@keyframes homeFinalCtaPulse {
    0%, 100% { opacity: 0.85; transform: translate(-50%, -50%) scale(1); }
    50% { opacity: 1; transform: translate(-50%, -50%) scale(1.05); }
}

@media (prefers-reduced-motion: reduce) {
    .home-final-cta__glow {
        animation: none;
    }
}

html[data-theme="light"] .home-final-cta {
    background: linear-gradient(180deg, #0f172a 0%, #111827 100%);
}

/* Legacy testimonial helpers (stars / avatars) */
.home-testimonial-stars-filled {
    color: var(--brand-color);
}
 
 .home-testimonial-stars-empty {
     color: var(--text-secondary);
     opacity: 0.45;
 }
 
 .home-testimonial-avatar-fallback {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     width: 48px;
     height: 48px;
     min-width: 48px;
     border-radius: 50%;
     background: rgba(var(--brand-rgb), 0.15);
     border: 1px solid rgba(var(--brand-rgb), 0.35);
     color: var(--brand-color);
     font-weight: 700;
     font-size: 1.1rem;
     line-height: 1;
 }
 
 /* Testimonials: first 3 visible, rest via Load more */
 .home-testimonials-block {
     width: 100%;
 }
 
 .home-testimonials-load-wrap {
     display: flex;
     justify-content: center;
     margin-top: 2rem;
     padding-top: 0.5rem;
 }
 
 .home-testimonials-load-more {
     display: inline-flex;
     align-items: center;
     justify-content: center;
     gap: 0.5rem;
     padding: 0.85rem 1.75rem;
     font-size: 0.95rem;
     font-weight: 600;
     letter-spacing: 0.02em;
     border-radius: 999px;
     border: 1px solid var(--border-subtle);
     background: var(--bg-glass);
     color: var(--text-primary);
     cursor: pointer;
     transition: border-color 0.25s ease, background 0.25s ease, box-shadow 0.25s ease, transform 0.2s ease;
     box-shadow: var(--header-shadow);
 }
 
 .home-testimonials-load-more:hover {
     border-color: rgba(var(--brand-rgb), 0.45);
     background: rgba(var(--brand-rgb), 0.08);
     box-shadow: 0 8px 32px rgba(0, 0, 0, 0.25);
 }
 
 .home-testimonials-load-more:focus-visible {
     outline: 2px solid var(--brand-color);
     outline-offset: 3px;
 }
 
 .home-testimonials-load-more:active {
     transform: scale(0.98);
 }
 
 .home-testimonials-load-more__meta {
     font-size: 0.85rem;
     font-weight: 500;
     color: var(--brand-color);
     opacity: 0.95;
 }
 
 .home-testimonials-load-more__icon {
     font-size: 0.75rem;
     opacity: 0.85;
     transition: transform 0.25s ease;
 }
 
 .home-testimonials-load-more:hover .home-testimonials-load-more__icon {
     transform: translateY(2px);
 }
 