/* ==========================================================================
   BANNER / HERO SECTION (home.css)
   ========================================================================== */
.banner {
    position: relative;
    background: url("/simpleslidehub/public_html/images/bg/BG-1.png") no-repeat center bottom / cover;
    padding-top: 50px;
    padding-bottom: 90px;
    text-align: center;
    overflow: hidden;
}

.banner__wrapper {
    max-width: 980px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
}

/* Badge / Pill Tag */
.banner__badge {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 5px 18px 5px 6px;
    background: #ffffff;
    border: 1px solid rgba(220, 227, 238, 0.85);
    border-radius: 100px;
    box-shadow: 0 2px 10px rgba(9, 27, 87, 0.04);
    margin-bottom: 28px;
    transition: transform 0.25s ease, box-shadow 0.25s ease;
    cursor: default;
}

.banner__badge:hover {
    transform: translateY(-1px);
    box-shadow: 0 4px 14px rgba(9, 27, 87, 0.08);
}

.banner__badge-tag {
    background-color: var(--Light-Tertiary-95, #fef9f2);
    color: var(--Light-Tertiary-50, #f17e01);
    font-size: 13px;
    font-weight: 700;
    padding: 3px 10px;
    border-radius: 100px;
    line-height: 1.2;
}

.banner__badge-text {
    font-size: 13px;
    color: var(--Light_mode-Gray_Scale-30, #666666);
    font-weight: 400;
    line-height: 1.2;
}

/* Headline Title */
.banner__title {
    font-size: 52px;
    line-height: 1.25;
    font-weight: 700;
    color: var(--Light_mode-Gray_Scale-5, #111111);
    letter-spacing: -0.5px;
    margin: 0 0 22px 0;
}

.banner__title-highlight {
    color: var(--Light-Primary-50, #3BAEFF);
}

.banner__title-muted {
    color: #b5bcc9;
    font-weight: 600;
}

/* Interactive Switch Toggle in Title */
.banner__switch {
    display: inline-flex;
    align-items: center;
    width: 62px;
    height: 34px;
    background-color: var(--Light-Primary-50, #3BAEFF);
    border-radius: 100px;
    padding: 3px;
    vertical-align: middle;
    margin: 0 8px;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.12),
        0 4px 12px rgba(59, 174, 255, 0.35);
    position: relative;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.banner__switch:hover {
    transform: scale(1.05);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.12),
        0 6px 16px rgba(59, 174, 255, 0.45);
}

.banner__switch-bar {
    width: 28px;
    height: 28px;
    background-color: #ffffff;
    border-radius: 50%;
    box-shadow: 0 2px 6px rgba(0, 0, 0, 0.2);
    display: flex;
    align-items: center;
    justify-content: center;
    position: relative;
    transform: translateX(28px);
    transition: transform 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.banner__switch-bar::after {
    content: '';
    width: 2px;
    height: 10px;
    background-color: var(--Light-Primary-50, #3BAEFF);
    border-radius: 2px;
}

/* Off State when clicked */
.banner__switch.is-off {
    background-color: #d1d5db;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.12);
}

.banner__switch.is-off .banner__switch-bar {
    transform: translateX(0);
}

.banner__switch.is-off .banner__switch-bar::after {
    background-color: #9ca3af;
}

/* Description */
.banner__desc {
    font-size: 15px;
    line-height: 1.65;
    color: var(--Light_mode-Gray_Scale-30, #666666);
    max-width: 680px;
    margin: 0 auto 36px auto;
    font-weight: 400;
}

/* Action Buttons */
.banner__actions {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 16px;
    margin-bottom: 78px;
}

/* Statistics Grid */
.banner__stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 32px;
    width: 100%;
    padding-top: 10px;
}

.banner__stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.banner__stat-number {
    font-size: 38px;
    font-weight: 700;
    color: var(--Light_mode-Gray_Scale-5, #111111);
    line-height: 1.1;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 6px;
    letter-spacing: -0.5px;
}

.banner__stat-star {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    width: 24px;
    height: 24px;
    background-color: #ff9800;
    color: #ffffff;
    border-radius: 50%;
    font-size: 12px;
    margin-left: 2px;
}

.banner__stat-label {
    font-size: 13px;
    line-height: 1.45;
    color: var(--Light_mode-Gray_Scale-30, #666666);
    font-weight: 400;
    max-width: 190px;
    margin: 0 auto;
}

/* ==========================================================================
   PARTNERS / CUSTOMERS MARQUEE SLIDER (home.css)
   ========================================================================== */
.partners {
    padding-top: 50px;
    padding-bottom: 70px;
    background-color: #ffffff;
    text-align: center;
    overflow: hidden;
}

.partners__title {
    font-size: 15px;
    font-weight: 400;
    color: var(--Light_mode-Gray_Scale-40, #808080);
    margin: 0 0 36px 0;
    line-height: 1.5;
}

.partners__slider {
    position: relative;
    width: 100%;
    overflow: hidden;
    padding: 10px 0;
}

/* Gradient Mask Edges */
.partners__slider::before,
.partners__slider::after {
    content: '';
    position: absolute;
    top: 0;
    width: 140px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.partners__slider::before {
    left: 0;
    background: linear-gradient(to right, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

.partners__slider::after {
    right: 0;
    background: linear-gradient(to left, #ffffff 0%, rgba(255, 255, 255, 0) 100%);
}

/* Track Animation */
.partners__track {
    display: flex;
    width: max-content;
    animation: partnersMarquee 28s linear infinite;
    will-change: transform;
}

.partners__slider:hover .partners__track {
    animation-play-state: paused;
}

.partners__group {
    display: flex;
    align-items: center;
    gap: 56px;
    padding-right: 56px;
    flex-shrink: 0;
}

.partners__item {
    display: flex;
    align-items: center;
    justify-content: center;
    height: 48px;
    flex-shrink: 0;
}

.partners__logo {
    height: 28px;
    width: auto;
    max-width: 160px;
    object-fit: contain;
    opacity: 0.85;
    transition: opacity 0.3s ease, transform 0.3s ease, filter 0.3s ease;
    filter: grayscale(10%);
}

.partners__logo:hover {
    opacity: 1;
    filter: grayscale(0%);
    transform: scale(1.06);
}

@keyframes partnersMarquee {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

/* ==========================================================================
   REASONS / SOLUTION SECTION (home.css)
   ========================================================================== */
.reasons {
    padding: 70px 0;
}

.reasons [class*="col-"] {
    margin-bottom: 24px;
}

.reasons__card {
    position: relative;
    background: url("/simpleslidehub/public_html/images/bg/Union.png") no-repeat center center / 100% 100%;
    border: none;
    border-radius: 0;
    padding: 42px 36px 48px 36px;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: none;
    filter: drop-shadow(0 4px 16px rgba(9, 27, 87, 0.04));
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        filter 0.35s ease;
}

.reasons__card:hover {
    transform: translateY(-6px);
    filter: drop-shadow(0 14px 28px rgba(9, 27, 87, 0.1));
}

.reasons__card-number {
    font-size: 48px;
    font-weight: 500;
    color: var(--Light_mode-Gray_Scale-5, #111111);
    line-height: 1;
    margin-bottom: 24px;
    letter-spacing: -1px;
}

.reasons__card-title {
    font-size: 19px;
    font-weight: 600;
    color: var(--Light_mode-Gray_Scale-5, #111111);
    line-height: 1.35;
    margin: 0 0 14px 0;
    letter-spacing: -0.3px;
}

/* Negative / Problem Bullet */
.reasons__card-problem {
    display: flex;
    align-items: flex-start;
    gap: 8px;
    font-size: 13px;
    line-height: 1.5;
    color: #8595ad;
    margin-bottom: 20px;
    font-weight: 400;
}

.reasons__card-cross {
    color: #ff5252;
    font-size: 12px;
    margin-top: 2px;
    flex-shrink: 0;
}

.reasons__card-desc {
    font-size: 14px;
    line-height: 1.65;
    color: var(--Light_mode-Gray_Scale-20, #4d4d4d);
    font-weight: 400;
    margin: 0;
    margin-top: auto;
}

/* ==========================================================================
   SLIDE COURSES SECTION (home.css)
   ========================================================================== */
.courses {
    padding-top: 70px;
    padding-bottom: 90px;
    background: linear-gradient(180deg, #FFFFFF 0%, #D8EFFF 100%);
}

.courses [class*="col-"] {
    margin-bottom: 30px;
}

/* Category Filter Bar */
.courses__filter {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 16px;
    margin-bottom: 40px;
}

.courses__filter-group {
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.courses__filter-label {
    font-size: 14px;
    font-weight: 500;
    color: var(--Light_mode-Gray_Scale-30, #666666);
    margin-right: 4px;
}

.courses__filter-pill {
    padding: 9px 22px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 500;
    background-color: #f0f4f9;
    color: var(--Light_mode-Gray_Scale-20, #4d4d4d);
    border: none;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
}

.courses__filter-pill:hover {
    background-color: #e2eaf4;
    color: var(--Light_mode-Gray_Scale-5, #111111);
}

.courses__filter-pill.is-active {
    background-color: var(--Light-Primary-50, #3BAEFF);
    color: #ffffff;
}

.courses__filter-count {
    font-size: 14px;
    color: var(--Light_mode-Gray_Scale-40, #808080);
    font-weight: 400;
}

/* Course Card */
.course-card {
    background: #ffffff;
    border: 1px solid #e6eef8;
    border-radius: 24px;
    padding: 16px;
    display: flex;
    flex-direction: column;
    height: 100%;
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.35s ease,
        border-color 0.35s ease;
    box-shadow: 0 4px 20px rgba(9, 27, 87, 0.03);
}

.course-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(9, 27, 87, 0.08);
    border-color: #bad8ff;
}

/* Cover Image Preview Frame */
.course-card__cover {
    position: relative;
    border-radius: 16px;
    overflow: hidden;
    margin-bottom: 20px;
    aspect-ratio: 16 / 10;
    background-color: #eef5ff;
}

.course-card__badge {
    position: absolute;
    top: 12px;
    left: 12px;
    z-index: 2;
    padding: 5px 14px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    color: #ffffff;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15);
}

.course-card__badge--banchay {
    background-color: #ff7a00;
}

.course-card__badge--moi {
    background-color: #20c997;
}

.course-card__badge--phobien {
    background-color: #ffb703;
    color: #111111;
}

.course-card__badge--khuyendung {
    background-color: #3baeff;
}

.course-card__badge--hot {
    background-color: #ff4757;
}

.course-card__img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
    transition: transform 0.4s ease;
}

.course-card:hover .course-card__img {
    transform: scale(1.05);
}

.course-card__pages {
    position: absolute;
    bottom: 12px;
    right: 12px;
    z-index: 2;
    padding: 4px 12px;
    border-radius: 100px;
    font-size: 12px;
    font-weight: 600;
    color: #ffffff;
    background: rgba(17, 17, 17, 0.75);
    backdrop-filter: blur(4px);
}

/* Course Card Body */
.course-card__tag {
    display: inline-block;
    padding: 4px 12px;
    background-color: #eef6ff;
    color: var(--Light-Primary-50, #3BAEFF);
    border-radius: 100px;
    font-size: 12px;
    font-weight: 500;
    margin-bottom: 10px;
    align-self: flex-start;
}

.course-card__title {
    font-size: 20px;
    font-weight: 600;
    color: var(--Light_mode-Gray_Scale-5, #111111);
    line-height: 1.35;
    margin: 0 0 10px 0;
    letter-spacing: -0.3px;
}

.course-card__desc {
    font-size: 13px;
    line-height: 1.6;
    color: var(--Light_mode-Gray_Scale-30, #666666);
    margin-bottom: 16px;
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
    font-weight: 300;
}

.course-card__meta {
    font-size: 13px;
    color: var(--Light_mode-Gray_Scale-40, #808080);
    padding-bottom: 16px;
    margin-bottom: 16px;
    border-bottom: 1px dashed #e6eef8;
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
}

/* Footer Price & Action */
.course-card__footer {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    margin-top: auto;
}

.course-card__price-box {
    display: flex;
    flex-direction: column;
}

.course-card__price {
    font-size: 19px;
    font-weight: 700;
    color: var(--Light_mode-Gray_Scale-5, #111111);
    line-height: 1.2;
}

.course-card__price span {
    font-size: 12px;
    font-weight: 400;
    color: var(--Light_mode-Gray_Scale-40, #808080);
}

.course-card__subprice {
    font-size: 11px;
    color: var(--Light_mode-Gray_Scale-40, #999999);
    font-weight: 400;
    margin-top: 2px;
}

.course-card__btn {
    padding: 10px 20px;
    border-radius: 100px;
    background-color: var(--Light-Primary-20, #091b57);
    color: #ffffff;
    font-size: 13px;
    font-weight: 600;
    border: none;
    cursor: pointer;
    transition: all 0.25s cubic-bezier(0.4, 0, 0.2, 1);
    white-space: nowrap;
}

.course-card__btn:hover {
    background-color: var(--Light-Primary-50, #3BAEFF);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(59, 174, 255, 0.35);
}

/* ==========================================================================
   SLIDE DETAIL MODAL POPUP (home.css)
   ========================================================================== */
.slide-modal {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    z-index: 2000;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 20px;
    visibility: hidden;
    opacity: 0;
    transition: visibility 0.3s ease, opacity 0.3s ease;
}

.slide-modal.is-open {
    visibility: visible;
    opacity: 1;
}

.slide-modal__backdrop {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(9, 27, 87, 0.45);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
}

.slide-modal__container {
    position: relative;
    z-index: 2;
    width: 860px;
    max-width: 100%;
    max-height: 90vh;
    background: #ffffff;
    border-radius: 28px;
    box-shadow: 0 20px 50px rgba(9, 27, 87, 0.25);
    overflow-y: auto;
    padding: 36px;
    transform: scale(0.92);
    transition: transform 0.35s cubic-bezier(0.16, 1, 0.3, 1);
}

.slide-modal.is-open .slide-modal__container {
    transform: scale(1);
}

.slide-modal__close {
    position: absolute;
    padding: 0;
    top: 24px;
    right: 24px;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: #f0f4f9;
    border: none;
    font-size: 20px;
    color: var(--Light_mode-Gray_Scale-10, #333333);
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: all 0.25s ease;
    z-index: 10;
}

.slide-modal__close:hover {
    background-color: #e2eaf4;
    color: #000000;
    transform: rotate(90deg);
}

/* Modal Header */
.slide-modal__header {
    margin-bottom: 28px;
    padding-right: 40px;
}

.slide-modal__badges {
    display: flex;
    align-items: center;
    gap: 8px;
    flex-wrap: wrap;
    margin-bottom: 12px;
}

.slide-modal__badge {
    padding: 4px 14px;
    border-radius: 100px;
    font-size: 13px;
    font-weight: 500;
    background-color: #eef6ff;
    color: var(--Light-Primary-50, #3BAEFF);
}

.slide-modal__badge--gray {
    background-color: #f0f4f9;
    color: var(--Light_mode-Gray_Scale-20, #4d4d4d);
}

.slide-modal__title {
    font-size: 32px;
    font-weight: 700;
    color: var(--Light_mode-Gray_Scale-5, #111111);
    margin: 0 0 10px 0;
    line-height: 1.25;
}

.slide-modal__desc {
    font-size: 15px;
    line-height: 1.6;
    color: var(--Light_mode-Gray_Scale-30, #666666);
    margin: 0;
}

/* Section Divider Header */
.slide-modal__sec-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 16px;
}

.slide-modal__sec-title {
    font-size: 18px;
    font-weight: 700;
    color: var(--Light_mode-Gray_Scale-5, #111111);
    margin: 0;
}

.slide-modal__sec-count {
    font-size: 13px;
    color: var(--Light_mode-Gray_Scale-40, #808080);
}

/* Main Slide Viewer Frame */
.slide-modal__stage {
    position: relative;
    border-radius: 20px;
    overflow: hidden;
    background-color: #0f172a;
    margin-bottom: 14px;
    aspect-ratio: 16 / 9;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow: 0 8px 24px rgba(0, 0, 0, 0.12);
}

.slide-modal__stage-img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    background-color: #f8fafc;
    transition: opacity 0.25s ease;
}

.slide-modal__watermark {
    position: absolute;
    top: 20px;
    left: 24px;
    color: rgba(59, 174, 255, 0.35);
    font-size: 14px;
    font-weight: 700;
    transform: rotate(-15deg);
    pointer-events: none;
    letter-spacing: 1px;
}

.slide-modal__nav {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    width: 44px;
    height: 44px;
    border-radius: 50%;
    background: rgba(255, 255, 255, 0.9);
    border: none;
    box-shadow: 0 4px 14px rgba(0, 0, 0, 0.18);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 16px;
    color: #111111;
    cursor: pointer;
    transition: all 0.2s ease;
    z-index: 5;
}

.slide-modal__nav:hover {
    background: #ffffff;
    transform: translateY(-50%) scale(1.08);
}

.slide-modal__nav--prev {
    left: 16px;
}

.slide-modal__nav--next {
    right: 16px;
}

.slide-modal__bar {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    padding: 12px 20px;
    background: rgba(15, 23, 42, 0.85);
    backdrop-filter: blur(8px);
    -webkit-backdrop-filter: blur(8px);
    display: flex;
    align-items: center;
    justify-content: space-between;
    color: #ffffff;
    font-size: 13px;
    z-index: 4;
}

.slide-modal__bar-title {
    font-weight: 500;
}

.slide-modal__bar-counter {
    font-weight: 600;
    background: rgba(255, 255, 255, 0.15);
    padding: 2px 10px;
    border-radius: 100px;
}

/* Thumbnails Strip */
.slide-modal__thumbs {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 10px;
    margin-bottom: 36px;
}

.slide-modal__thumb {
    aspect-ratio: 16 / 10;
    border-radius: 10px;
    overflow: hidden;
    border: 2px solid transparent;
    cursor: pointer;
    transition: all 0.25s ease;
    opacity: 0.65;
    background-color: #eef5ff;
}

.slide-modal__thumb.is-active,
.slide-modal__thumb:hover {
    border-color: var(--Light-Primary-50, #3BAEFF);
    opacity: 1;
    transform: scale(1.03);
}

.slide-modal__thumb img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

/* Roadmap / Curriculum Accordion */
.slide-modal__roadmap {
    margin-bottom: 28px;
}

.slide-modal__module {
    background-color: #f8fafc;
    border-radius: 16px;
    margin-bottom: 12px;
    overflow: hidden;
    border: 1px solid #eef3f8;
}

.slide-modal__module-head {
    padding: 16px 20px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
    user-select: none;
    transition: background-color 0.2s ease;
}

.slide-modal__module-head:hover {
    background-color: #f1f5f9;
}

.slide-modal__module-title {
    font-size: 15px;
    font-weight: 700;
    color: var(--Light_mode-Gray_Scale-5, #111111);
    display: flex;
    align-items: center;
    gap: 10px;
}

.slide-modal__module-arrow {
    font-size: 12px;
    color: var(--Light_mode-Gray_Scale-40, #808080);
    transition: transform 0.3s ease;
}

.slide-modal__module.is-open .slide-modal__module-arrow {
    transform: rotate(90deg);
}

.slide-modal__module-meta {
    font-size: 13px;
    color: var(--Light_mode-Gray_Scale-40, #808080);
}

.slide-modal__module-body {
    padding: 8px 20px 16px 20px;
    border-top: 1px solid #eef3f8;
    display: none;
}

.slide-modal__module.is-open .slide-modal__module-body {
    display: block;
}

.slide-modal__lesson {
    padding: 10px 0;
    display: flex;
    align-items: center;
    justify-content: space-between;
    font-size: 14px;
    color: var(--Light_mode-Gray_Scale-10, #333333);
    border-bottom: 1px dashed #e2e8f0;
}

.slide-modal__lesson:last-child {
    border-bottom: none;
}

.slide-modal__lesson-pages {
    font-size: 13px;
    color: var(--Light_mode-Gray_Scale-40, #808080);
}

/* Footer Note */
.slide-modal__note {
    padding: 16px 20px;
    background-color: #f0f7ff;
    border-radius: 16px;
    border: 1px solid #d4e8ff;
    font-size: 13px;
    line-height: 1.65;
    color: var(--Light_mode-Gray_Scale-20, #4d4d4d);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.slide-modal__note-icon {
    font-size: 16px;
    flex-shrink: 0;
    margin-top: 2px;
}

/* ==========================================================================
   PRICING TABLE SECTION (home.css)
   ========================================================================== */
.pricing {
    position: relative;
    padding-top: 85px;
    padding-bottom: 110px;
    background-color: #ffffff;
}

.pricing [class*="col-"] {
    margin-bottom: 30px;
}

/* Pricing Toggle Switch */
.pricing__toggle-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    margin-bottom: 50px;
}

.pricing__toggle-pills {
    display: inline-flex;
    align-items: center;
    background-color: #f0f4f9;
    padding: 5px;
    border-radius: 100px;
    gap: 4px;
}

.pricing__toggle-btn {
    padding: 10px 24px;
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    color: var(--Light_mode-Gray_Scale-20, #4d4d4d);
    background: transparent;
    border: none;
    cursor: pointer;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    transition: all 0.25s ease;
}

.pricing__toggle-btn.is-active {
    background-color: #ffffff;
    color: var(--Light_mode-Gray_Scale-5, #111111);
    box-shadow: 0 4px 12px rgba(9, 27, 87, 0.08);
}

.pricing__toggle-badge {
    padding: 2px 8px;
    border-radius: 100px;
    font-size: 11px;
    font-weight: 700;
    background-color: #20c997;
    color: #ffffff;
}

.pricing__toggle-note {
    font-size: 13px;
    color: var(--Light_mode-Gray_Scale-40, #808080);
    margin-top: 14px;
    text-align: center;
}

/* Pricing Card Component */
.pricing-card {
    position: relative;
    background: #ffffff;
    border: 1.5px solid #e2edfa;
    border-radius: 28px;
    padding: 36px 32px;
    display: flex;
    flex-direction: column;
    height: 100%;
    box-shadow: 0 4px 24px rgba(9, 27, 87, 0.03);
    transition: transform 0.35s cubic-bezier(0.4, 0, 0.2, 1),
        box-shadow 0.35s ease,
        border-color 0.35s ease;
}

.pricing-card:hover {
    transform: translateY(-6px);
    box-shadow: 0 16px 36px rgba(9, 27, 87, 0.08);
    border-color: #bad8ff;
}

/* Popular Highlighted Card (Card 2) */
.pricing-card--popular {
    background: linear-gradient(180deg, #0f1d40 0%, #172a59 100%);
    border-color: #0f1d40;
    color: #ffffff;
    box-shadow: 0 20px 48px rgba(15, 29, 64, 0.28);
    transform: scale(1.03);
    z-index: 2;
}

.pricing-card--popular:hover {
    transform: scale(1.03) translateY(-6px);
    box-shadow: 0 24px 56px rgba(15, 29, 64, 0.38);
}

.pricing-card__popular-badge {
    position: absolute;
    top: -18px;
    left: 50%;
    transform: translateX(-50%);
    background: linear-gradient(90deg, #3baeff 0%, #2f8bf5 100%);
    color: #ffffff;
    font-size: 13px;
    font-weight: 700;
    padding: 6px 20px;
    border-radius: 100px;
    box-shadow: 0 6px 18px rgba(59, 174, 255, 0.45);
    white-space: nowrap;
}

/* Card Header */
.pricing-card__title {
    font-size: 24px;
    font-weight: 600;
    color: var(--Light_mode-Gray_Scale-5, #111111);
    margin: 0 0 20px 0;
}

.pricing-card--popular .pricing-card__title {
    color: #ffffff;
}

/* Top Feature Badge Box */
.pricing-card__box {
    background-color: #f0f6ff;
    border-radius: 16px;
    padding: 16px 20px;
    display: flex;
    align-items: center;
    gap: 16px;
    margin-bottom: 24px;
}

.pricing-card--popular .pricing-card__box {
    background-color: rgba(255, 255, 255, 0.08);
}

.pricing-card__box-num {
    font-size: 32px;
    font-weight: 700;
    color: var(--Light_mode-Gray_Scale-5, #111111);
    line-height: 1;
}

.pricing-card--popular .pricing-card__box-num {
    color: #ffffff;
}

.pricing-card__box-info {
    display: flex;
    flex-direction: column;
}

.pricing-card__box-info strong {
    font-size: 14px;
    font-weight: 700;
    color: var(--Light_mode-Gray_Scale-5, #111111);
    line-height: 1.3;
}

.pricing-card--popular .pricing-card__box-info strong {
    color: #ffffff;
}

.pricing-card__box-info span {
    font-size: 12px;
    color: var(--Light_mode-Gray_Scale-30, #666666);
    margin-top: 2px;
}

.pricing-card--popular .pricing-card__box-info span {
    color: rgba(255, 255, 255, 0.7);
}

/* Price Box */
.pricing-card__price-box {
    margin-bottom: 24px;
}

.pricing-card__label {
    font-size: 13px;
    color: var(--Light_mode-Gray_Scale-40, #808080);
    margin-bottom: 4px;
}

.pricing-card--popular .pricing-card__label {
    color: rgba(255, 255, 255, 0.6);
}

.pricing-card__price-val {
    font-size: 38px;
    font-weight: 600;
    color: var(--Light_mode-Gray_Scale-5, #111111);
    line-height: 1.1;
    letter-spacing: -1px;
    margin-bottom: 8px;
    display: flex;
    align-items: baseline;
    gap: 6px;
    flex-wrap: wrap;
}

.pricing-card--popular .pricing-card__price-val {
    color: #ffffff;
}

.pricing-card__unit {
    font-size: 15px;
    font-weight: 500;
    color: var(--Light_mode-Gray_Scale-30, #666666);
}

.pricing-card--popular .pricing-card__unit {
    color: rgba(255, 255, 255, 0.75);
}

.pricing-card__save-badge {
    font-size: 12px;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 100px;
    background-color: #fff3d6;
    color: #b77900;
}

.pricing-card__sub1 {
    font-size: 13px;
    font-weight: 500;
    color: var(--Light_mode-Gray_Scale-20, #4d4d4d);
    margin-bottom: 2px;
}

.pricing-card--popular .pricing-card__sub1 {
    color: rgba(255, 255, 255, 0.85);
}

.pricing-card__sub2 {
    font-size: 12px;
    color: var(--Light_mode-Gray_Scale-40, #808080);
}

.pricing-card--popular .pricing-card__sub2 {
    color: rgba(255, 255, 255, 0.6);
}

/* Card Button */
.pricing-card__btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    padding: 14px 24px;
    border-radius: 100px;
    font-size: 15px;
    font-weight: 600;
    text-align: center;
    border: 1.5px solid #d0e3fb;
    background-color: #ffffff;
    color: var(--Light_mode-Gray_Scale-5, #111111);
    transition: all 0.25s ease;
    text-decoration: none;
    margin-bottom: 28px;
    margin-top: 10px;
}

.pricing-card__btn:hover {
    border-color: var(--Light-Primary-50, #3BAEFF);
    color: var(--Light-Primary-50, #3BAEFF);
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(59, 174, 255, 0.15);
}

.pricing-card--popular .pricing-card__btn {
    background: linear-gradient(90deg, #3baeff 0%, #2f8bf5 100%);
    border: none;
    color: #ffffff;
    box-shadow: 0 6px 20px rgba(59, 174, 255, 0.4);
}

.pricing-card--popular .pricing-card__btn:hover {
    background: linear-gradient(90deg, #4eb5ff 0%, #3ca0f7 100%);
    color: #ffffff;
    box-shadow: 0 10px 24px rgba(59, 174, 255, 0.55);
}

/* Feature List */
.pricing-card__features {
    list-style: none;
    padding: 0;
    margin: 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    border-top: 1px solid #eef4fc;
    padding-top: 24px;
}

.pricing-card--popular .pricing-card__features {
    border-top-color: rgba(255, 255, 255, 0.1);
}

.pricing-card__feature {
    font-size: 14px;
    line-height: 1.5;
    color: var(--Light_mode-Gray_Scale-10, #333333);
    display: flex;
    align-items: flex-start;
    gap: 10px;
}

.pricing-card--popular .pricing-card__feature {
    color: rgba(255, 255, 255, 0.9);
}

.pricing-card__feature--disabled {
    color: #b0b8c4;
}

.pricing-card__icon-check {
    color: #20c997;
    font-size: 13px;
    margin-top: 3px;
    flex-shrink: 0;
}

.pricing-card__icon-cross {
    color: #d1d5db;
    font-size: 13px;
    margin-top: 3px;
    flex-shrink: 0;
}

@media(max-width: 991px) {
    .pricing {
        padding-top: 52px;
        padding-bottom: 32px;
    }
}

/* ==========================================================================
   COMPARISON TABLE SECTION WITH BLUE GRADIENT BG (home.css)
   ========================================================================== */
.comparison-sec {
    position: relative;
    padding-top: 85px;
    padding-bottom: 110px;
    background: linear-gradient(180deg, #edf6ff 0%, #d5e9ff 50%, #ebf4ff 100%);
    overflow: hidden;
}

.compare-card {
    background: #ffffff;
    border-radius: 28px;
    border: 1.5px solid #d4e7fc;
    box-shadow: 0 16px 40px rgba(9, 27, 87, 0.06);
    max-width: 980px;
    margin: 0 auto;
    overflow: hidden;
}

.compare-table {
    width: 100%;
    border-collapse: collapse;
}

.compare-table th,
.compare-table td {
    padding: 20px 28px;
    font-size: 14px;
    line-height: 1.5;
    vertical-align: middle;
    border-bottom: 1px solid #edf4fc;
}

.compare-table tr:last-child th,
.compare-table tr:last-child td {
    border-bottom: none;
}

/* Column Header */
.compare-table th {
    font-size: 15px;
    font-weight: 700;
    color: var(--Light_mode-Gray_Scale-5, #111111);
    background-color: #f8fafc;
    text-align: center;
}

.compare-table th:first-child {
    text-align: left;
}

.compare-table th.compare-col--brand {
    color: var(--Light-Primary-50, #3BAEFF);
    background-color: #f0f7ff;
}

/* Column Cells */
.compare-table td:first-child {
    font-weight: 600;
    color: var(--Light_mode-Gray_Scale-5, #111111);
    width: 35%;
}

.compare-table td:nth-child(2) {
    color: var(--Light_mode-Gray_Scale-40, #8595ad);
    text-align: center;
    width: 32%;
}

.compare-table td.compare-col--brand {
    font-weight: 600;
    color: #20c997;
    background-color: #f7fbff;
    text-align: center;
    width: 33%;
}

.compare-table .compare-check-icon {
    margin-right: 6px;
    font-size: 13px;
    font-weight: bold;
}

@media(max-width: 991px) {
    .comparison-sec {
        padding-top: 52px;
        padding-bottom: 32px;
    }
}

/* ==========================================================================
   REVIEWS / TESTIMONIALS SECTION (home.css)
   ========================================================================== */
.reviews {
    position: relative;
    padding-top: 85px;
    padding-bottom: 100px;
    background-color: #f7faff;
    background-image:
        linear-gradient(to right, rgba(59, 174, 255, 0.05) 1px, transparent 1px),
        linear-gradient(to bottom, rgba(59, 174, 255, 0.05) 1px, transparent 1px);
    background-size: 36px 36px;
    overflow: hidden;
}

/* Stats Bar */
.reviews__stats {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 48px;
    margin-top: 40px;
    margin-bottom: 60px;
    flex-wrap: wrap;
}

.reviews__stat-item {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.reviews__stat-num {
    font-size: 42px;
    font-weight: 600;
    color: var(--Light_mode-Gray_Scale-5, #111111);
    line-height: 1.1;
    margin-bottom: 8px;
    display: flex;
    align-items: center;
    gap: 6px;
}

.reviews__stat-star {
    color: #ffb703;
    font-size: 32px;
}

.reviews__stat-label {
    font-size: 13px;
    color: var(--Light_mode-Gray_Scale-30, #666666);
    max-width: 220px;
    line-height: 1.45;
}

/* Review Slider / Marquee Tracks */
.reviews__sliders {
    display: flex;
    flex-direction: column;
    gap: 24px;
    width: 100%;
}

.reviews__track-wrapper {
    display: flex;
    overflow: hidden;
    width: 100%;
    position: relative;
    user-select: none;
}

.reviews__track-wrapper::before,
.reviews__track-wrapper::after {
    content: "";
    position: absolute;
    top: 0;
    width: 80px;
    height: 100%;
    z-index: 2;
    pointer-events: none;
}

.reviews__track-wrapper::before {
    left: 0;
    background: linear-gradient(to right, #f7faff 0%, transparent 100%);
}

.reviews__track-wrapper::after {
    right: 0;
    background: linear-gradient(to left, #f7faff 0%, transparent 100%);
}

.reviews__track {
    display: flex;
    width: max-content;
}

.reviews__track--left {
    animation: reviewsMarqueeLeft 35s linear infinite;
}

.reviews__track--right {
    animation: reviewsMarqueeRight 35s linear infinite;
}

.reviews__track-wrapper:hover .reviews__track {
    animation-play-state: paused;
}

.reviews__group {
    display: flex;
    gap: 24px;
    padding-right: 24px;
    flex-shrink: 0;
}

@keyframes reviewsMarqueeLeft {
    0% {
        transform: translateX(0);
    }

    100% {
        transform: translateX(-50%);
    }
}

@keyframes reviewsMarqueeRight {
    0% {
        transform: translateX(-50%);
    }

    100% {
        transform: translateX(0);
    }
}

/* Review Card Item */
.review-card {
    width: 360px;
    flex-shrink: 0;
    background: #ffffff;
    border: 1px solid #e6eef8;
    border-radius: 20px;
    padding: 24px;
    display: flex;
    flex-direction: column;
    box-shadow: 0 4px 16px rgba(9, 27, 87, 0.03);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.review-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 12px 28px rgba(9, 27, 87, 0.08);
}

.review-card__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 14px;
}

.review-card__stars {
    color: #ffb703;
    font-size: 13px;
    display: flex;
    gap: 2px;
}

.review-card__tag {
    font-size: 11px;
    font-weight: 500;
    padding: 3px 10px;
    border-radius: 100px;
    background-color: #f0f4f9;
    color: var(--Light_mode-Gray_Scale-30, #666666);
}

.review-card__body {
    font-size: 14px;
    line-height: 1.6;
    color: var(--Light_mode-Gray_Scale-20, #4d4d4d);
    margin-bottom: 20px;
    flex-grow: 1;
}

.review-card__body strong {
    color: var(--Light_mode-Gray_Scale-5, #111111);
    font-weight: 700;
}

.review-card__user {
    display: flex;
    align-items: center;
    gap: 12px;
    border-top: 1px dashed #eef4fc;
    padding-top: 16px;
}

.review-card__avatar {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    color: #ffffff;
    font-size: 16px;
    font-weight: 700;
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
}

.review-card__info {
    display: flex;
    flex-direction: column;
}

.review-card__name {
    font-size: 14px;
    font-weight: 700;
    color: var(--Light_mode-Gray_Scale-5, #111111);
    line-height: 1.3;
}

.review-card__role {
    font-size: 12px;
    color: var(--Light_mode-Gray_Scale-40, #808080);
    margin-top: 2px;
}

@media(max-width: 991px) {
    .reviews {
        padding-top: 52px;
        padding-bottom: 32px;
    }
}

/* ==========================================================================
   FAQ SECTION (home.css)
   ========================================================================== */
.faq-sec {
    position: relative;
    padding: 85px 0;
}

.faq-container {
    max-width: 860px;
    margin: 0 auto;
}

.faq-list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 48px;
}

.faq-item {
    background: #ffffff;
    border: 1.5px solid #e2edfa;
    border-radius: 20px;
    overflow: hidden;
    box-shadow: 0 4px 16px rgba(9, 27, 87, 0.02);
    transition: border-color 0.3s ease, box-shadow 0.3s ease, transform 0.25s ease;
}

.faq-item:hover {
    border-color: #bad8ff;
    box-shadow: 0 8px 24px rgba(9, 27, 87, 0.06);
}

.faq-item.is-open {
    border-color: var(--Light-Primary-50, #3BAEFF);
    box-shadow: 0 10px 30px rgba(59, 174, 255, 0.12);
}

.faq-item__head {
    padding: 22px 28px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 16px;
    cursor: pointer;
    user-select: none;
}

.faq-item__title-box {
    display: flex;
    align-items: center;
    gap: 12px;
    flex-wrap: wrap;
}

.faq-item__title {
    font-size: 16px;
    font-weight: 700;
    color: var(--Light_mode-Gray_Scale-5, #111111);
    line-height: 1.4;
    margin: 0;
}

.faq-item__title span {
    font-size: 11px;
    font-weight: 600;
    padding: 3px 12px;
    border-radius: 100px;
    background-color: #fff3d6;
    color: #b77900;
    margin-left: 15px;
}

.faq-item__icon {
    width: 32px;
    height: 32px;
    border-radius: 50%;
    background-color: #eef6ff;
    color: var(--Light-Primary-50, #3BAEFF);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 13px;
    flex-shrink: 0;
    transition: all 0.3s ease;
}

.faq-item.is-open .faq-item__icon {
    background-color: var(--Light-Primary-50, #3BAEFF);
    color: #ffffff;
    transform: rotate(45deg);
}

.faq-item__body {
    padding: 0 28px 24px 28px;
    font-size: 14px;
    line-height: 1.65;
    color: var(--Light_mode-Gray_Scale-30, #666666);
    display: none;
    border-top: 1px dashed #edf4fc;
    margin-top: -6px;
    padding-top: 18px;
}

.faq-item.is-open .faq-item__body {
    display: block;
}

.faq-item__body strong {
    color: var(--Light_mode-Gray_Scale-5, #111111);
    font-weight: 700;
}

@media(max-width: 991px) {
    .faq-sec {
        padding-top: 52px;
        padding-bottom: 32px;
    }
}

/* ==========================================================================
   CONTACT / REGISTRATION FORM SECTION (home.css)
   ========================================================================== */
.contact-sec {
    position: relative;
    padding-top: 85px;
    padding-bottom: 0;
    margin-bottom: -150px;
    z-index: 10;
}

.contact-card {
    background: url('/simpleslidehub/public_html/images/bg/BG-2.png') no-repeat center center / cover;
    border-radius: 36px;
    padding: 50px;
    display: flex;
    gap: 40px;
    align-items: stretch;
    box-shadow: 0 20px 50px rgba(9, 27, 87, 0.08);
    max-width: 1140px;
    margin: 0 auto;
    border: 1.5px solid #d4e7fc;
}

.contact-info {
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    padding: 10px 20px 10px 10px;
}

.contact-info__tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-size: 13px;
    font-weight: 600;
    color: var(--Light_mode-Gray_Scale-5, #111111);
    background: #ffffff;
    padding: 6px 18px;
    border-radius: 100px;
    box-shadow: 0 2px 10px rgba(9, 27, 87, 0.04);
    margin-bottom: 24px;
    width: fit-content;
}

.contact-info__title {
    font-size: 42px;
    font-weight: 600;
    color: var(--Light_mode-Gray_Scale-5, #111111);
    line-height: 1.25;
    margin-bottom: 30px;
}

.contact-info__list {
    display: flex;
    flex-direction: column;
    gap: 24px;
    margin-top: auto;
}

.contact-info__item {
    display: flex;
    align-items: center;
    gap: 16px;
}

.contact-info__icon {
    width: 48px;
    height: 48px;
    border-radius: 50%;
    background-color: #ffffff;
    color: var(--Light-Primary-50, #3BAEFF);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
    box-shadow: 0 4px 14px rgba(9, 27, 87, 0.06);
    flex-shrink: 0;
}

.contact-info__label {
    font-size: 13px;
    font-weight: 700;
    color: var(--Light_mode-Gray_Scale-5, #111111);
    margin-bottom: 2px;
}

.contact-info__val {
    font-size: 14px;
    color: var(--Light_mode-Gray_Scale-30, #555555);
}

/* Right Form Card */
.contact-form-card {
    width: 480px;
    flex-shrink: 0;
    background: #ffffff;
    border-radius: 28px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(9, 27, 87, 0.06);
}

.contact-form-title {
    font-size: 24px;
    font-weight: 600;
    color: #0c1e40;
    margin-bottom: 26px;
}



/* Form Submit Button */
.c-button-1 {
    width: 100%;
    height: 50px;
    border-radius: 100px;
    background-color: var(--Light-Primary-50, #3BAEFF);
    color: #ffffff;
    font-size: 15px;
    font-weight: 700;
    border: none;
    cursor: pointer;
    margin-top: 10px;
    box-shadow: 0 6px 18px rgba(59, 174, 255, 0.3);
    transition: all 0.3s ease;
}

.c-button-1:hover {
    background-color: #2795e6;
    transform: translateY(-2px);
    box-shadow: 0 10px 24px rgba(59, 174, 255, 0.4);
}


/* ==========================================================================
   RESPONSIVE (home.css)
   ========================================================================== */
@media screen and (max-width: 991px) {

    .courses {
        padding-top: 32px;
        padding-bottom: 32px;
    }

    .slide-modal__container {
        padding: 24px;
    }

    .slide-modal__title {
        font-size: 26px;
    }

    .slide-modal__thumbs {
        grid-template-columns: repeat(3, 1fr);
    }

    .contact-sec {
        margin-bottom: -100px;
        padding-top: 32px;
    }

    .contact-card {
        flex-direction: column;
        padding: 32px 24px;
        gap: 30px;
    }

    .contact-info__title {
        font-size: 30px;
    }

    .contact-form-card {
        width: 100%;
        padding: 28px 20px;
    }
}

/* ==========================================================================
   RESPONSIVE (home.css)
   ========================================================================== */
@media screen and (max-width: 991px) {
    .banner {
        padding-top: 40px;
        padding-bottom: 70px;
    }

    .banner__title {
        font-size: 40px;
        line-height: 1.3;
    }

    .banner__switch {
        width: 52px;
        height: 30px;
    }

    .banner__switch-bar {
        width: 24px;
        height: 24px;
        transform: translateX(22px);
    }

    .banner__switch.is-off .banner__switch-bar {
        transform: translateX(0);
    }

    .banner__stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 28px 20px;
    }

    .banner__stat-number {
        font-size: 32px;
    }

    .reasons {
        padding-top: 0;
        padding-bottom: 0;
    }

    /* Responsive <= 991px switches Union.png to gradient card background */
    .reasons__card {
        background: linear-gradient(180deg, #edf5ff 0%, #f7faff 100%);
        border: 1.5px solid var(--Light-Primary-50, #3BAEFF);
        border-radius: 28px;
        padding: 32px 26px;
        filter: none;
        box-shadow: 0 4px 16px rgba(9, 27, 87, 0.04);
    }
}

@media screen and (max-width: 768px) {
    .partners {
        padding-top: 36px;
        padding-bottom: 50px;
    }

    .partners__title {
        font-size: 13px;
        margin-bottom: 24px;
        padding: 0 16px;
    }

    .partners__slider::before,
    .partners__slider::after {
        width: 60px;
    }

    .partners__group {
        gap: 36px;
        padding-right: 36px;
    }

    .partners__logo {
        height: 24px;
    }
}

@media screen and (max-width: 576px) {
    .banner {
        padding-top: 30px;
        padding-bottom: 60px;
    }

    .banner__badge {
        padding: 4px 14px 4px 4px;
        margin-bottom: 20px;
    }

    .banner__badge-tag {
        font-size: 12px;
        padding: 2px 8px;
    }

    .banner__badge-text {
        font-size: 12px;
    }

    .banner__title {
        font-size: 28px;
        line-height: 1.35;
        margin-bottom: 16px;
    }

    .banner__switch {
        width: 44px;
        height: 26px;
        margin: 0 4px;
    }

    .banner__switch-bar {
        width: 20px;
        height: 20px;
        transform: translateX(18px);
    }

    .banner__switch-bar::after {
        height: 8px;
    }

    .banner__desc {
        font-size: 13px;
        line-height: 1.6;
        margin-bottom: 28px;
    }

    .banner__actions {
        flex-direction: column;
        width: 100%;
        gap: 12px;
        margin-bottom: 50px;
    }

    .banner__actions .button-1,
    .banner__actions .button-ghost {
        width: 100%;
        justify-content: center;
    }

    .banner__stats {
        grid-template-columns: repeat(2, 1fr);
        gap: 24px 12px;
    }

    .banner__stat-number {
        font-size: 26px;
    }

    .banner__stat-label {
        font-size: 12px;
        max-width: 100%;
    }

    .reasons__card {
        padding: 26px 20px 28px 20px;
        border-radius: 22px;
    }

    .reasons__card-number {
        font-size: 38px;
        margin-bottom: 18px;
    }

    .reasons__card-title {
        font-size: 17px;
    }
}