.kt-video-promo-section {
    position: relative;
    padding: 100px 0 120px;
    overflow: hidden;
    background: linear-gradient(180deg, #fbfcff 0%, #ffffff 38%, #f6f7ff 100%);
}

.kt-video-promo-section::before {
    content: '';
    position: absolute;
    left: 50%;
    top: -120px;
    transform: translateX(-50%);
    width: min(900px, 90vw);
    height: 360px;
    border-radius: 50%;
    background: radial-gradient(ellipse at center, rgba(91, 107, 255, 0.07) 0%, transparent 70%);
    pointer-events: none;
    z-index: 0;
}

.kt-video-promo-section > .container {
    position: relative;
    z-index: 1;
}

.kt-video-promo-section__rings {
    pointer-events: none;
    position: absolute;
    inset: 0;
    max-width: 1400px;
    margin: 0 auto;
    z-index: 0;
}

.kt-video-promo-section__ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(118, 75, 162, 0.14);
    background: radial-gradient(circle at 30% 30%, rgba(255, 255, 255, 0.5) 0%, transparent 55%);
    box-shadow: 0 0 0 1px rgba(255, 255, 255, 0.4) inset;
}

.kt-video-promo-section__ring--1 {
    width: min(520px, 55vw);
    height: min(520px, 55vw);
    left: -12%;
    bottom: -8%;
    top: auto;
    transform: none;
    opacity: 0.95;
}

.kt-video-promo-section__ring--2 {
    width: min(480px, 50vw);
    height: min(480px, 50vw);
    right: -10%;
    top: -6%;
    left: auto;
    transform: none;
    opacity: 0.9;
}

.kt-video-promo-section__heading {
    margin-bottom: 40px;
}

.kt-video-promo-section__heading .sub-heading {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 7px 16px;
    border-radius: 999px;
    background: linear-gradient(135deg, #f0f2ff 0%, #f6f4ff 100%);
    border: 1px solid rgba(91, 107, 255, 0.18);
    color: #171d27;
    font-size: 12px;
    font-weight: 700;
    margin-bottom: 14px;
    box-shadow: 0 4px 14px rgba(91, 107, 255, 0.08);
}

.kt-video-promo-section__heading .heading-icon {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    background: rgba(91, 107, 255, 0.16);
    color: #5b6bff;
    font-size: 12px;
}

.kt-video-promo-section__heading .section-title {
    font-size: 34px;
    font-weight: 900;
    color: #171d27;
    margin: 0;
    line-height: 1.25;
    letter-spacing: -0.02em;
}

.kt-video-promo-carousel-wrap {
    max-width: 920px;
    margin: 0 auto;
    filter: drop-shadow(0 28px 50px rgba(23, 29, 39, 0.14)) drop-shadow(0 12px 28px rgba(91, 107, 255, 0.12));
}

.kt-video-promo-card {
    background: #ffffff;
    border-radius: 22px;
    overflow: hidden;
    border: 1px solid rgba(23, 29, 39, 0.07);
    box-shadow:
        0 4px 8px rgba(23, 29, 39, 0.04),
        0 20px 40px rgba(23, 29, 39, 0.1),
        0 40px 72px rgba(23, 29, 39, 0.08),
        0 0 0 1px rgba(255, 255, 255, 0.8) inset;
}

.kt-video-promo-card__media {
    position: relative;
    aspect-ratio: 16 / 9;
    background: linear-gradient(145deg, #eef1ff 0%, #f5f2ff 50%, #ebe8ff 100%);
    box-shadow:
        0 16px 40px rgba(23, 29, 39, 0.12),
        inset 0 1px 0 rgba(255, 255, 255, 0.35);
}

.kt-video-promo-card__media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.kt-video-promo-card__media-placeholder {
    width: 100%;
    height: 100%;
    background: linear-gradient(135deg, #e8ecff 0%, #f3efff 100%);
}

.kt-video-promo-card__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.kt-video-promo-card__play-inner {
    width: 88px;
    height: 88px;
    border-radius: 50%;
    background: #ffffff;
    display: flex;
    align-items: center;
    justify-content: center;
    box-shadow:
        0 8px 24px rgba(23, 29, 39, 0.12),
        0 20px 48px rgba(91, 107, 255, 0.22);
    color: #5b6bff;
    font-size: 28px;
    padding-left: 6px;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.kt-video-promo-card__play:hover .kt-video-promo-card__play-inner {
    transform: scale(1.05);
    box-shadow:
        0 12px 32px rgba(23, 29, 39, 0.14),
        0 24px 56px rgba(91, 107, 255, 0.32);
}

.kt-video-promo-card__bar {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 0;
    border-top: 1px solid rgba(23, 29, 39, 0.07);
    background: #ffffff;
    box-shadow: 0 -8px 32px rgba(23, 29, 39, 0.04);
}

.kt-video-promo-card__feat {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 10px;
    padding: 22px 12px;
    border-right: 1px solid rgba(23, 29, 39, 0.06);
}

.kt-video-promo-card__feat:last-child {
    border-right: 0;
}

.kt-video-promo-card__feat-icon {
    width: 44px;
    height: 44px;
    border-radius: 12px;
    background: rgba(91, 107, 255, 0.12);
    color: #5b6bff;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 18px;
}

.kt-video-promo-card__feat-text {
    font-size: 13px;
    font-weight: 800;
    color: #171d27;
    line-height: 1.35;
}

.kt-video-promo-carousel .owl-nav {
    margin-top: 22px;
    display: flex;
    justify-content: center;
    gap: 12px;
}

.kt-video-promo-carousel .owl-nav div {
    position: static;
    transform: none;
    width: 46px;
    height: 46px;
    border-radius: 999px;
    background: #ffffff;
    border: 1px solid rgba(23, 29, 39, 0.10);
    box-shadow: 0 12px 28px rgba(23, 29, 39, 0.08);
    margin: 0;
}

.kt-video-promo-carousel .owl-nav div:hover {
    background: #5b6bff;
    border-color: #5b6bff;
}

.kt-video-promo-carousel .owl-nav div:hover i {
    color: #fff;
}

.kt-video-promo-carousel .owl-dots {
    margin-top: 14px;
}

@media (max-width: 991.98px) {
    .kt-video-promo-section {
        padding: 64px 0 72px;
    }

    .kt-video-promo-carousel-wrap {
        max-width: 100%;
        filter: drop-shadow(0 18px 36px rgba(23, 29, 39, 0.12));
    }

    .kt-video-promo-card {
        border-radius: 18px;
    }

    .kt-video-promo-card__play-inner {
        width: 72px;
        height: 72px;
        font-size: 24px;
    }

    .kt-video-promo-card__bar {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .kt-video-promo-card__feat {
        gap: 8px;
        padding: 16px 8px;
        border-right: 1px solid rgba(23, 29, 39, 0.06);
        border-bottom: 0;
    }

    .kt-video-promo-card__feat:last-child {
        border-right: 0;
    }

    .kt-video-promo-card__feat-icon {
        width: 40px;
        height: 40px;
        border-radius: 10px;
        font-size: 16px;
    }

    .kt-video-promo-card__feat-text {
        font-size: 12px;
    }

    .kt-video-promo-carousel .owl-nav {
        margin-top: 16px;
        gap: 10px;
    }

    .kt-video-promo-carousel .owl-nav div {
        width: 40px;
        height: 40px;
    }
}

@media (max-width: 575.98px) {
    .kt-video-promo-section {
        padding: 48px 0 56px;
    }

    .kt-video-promo-section__heading {
        margin-bottom: 24px;
    }

    .kt-video-promo-section__heading .section-title {
        font-size: 22px;
    }

    .kt-video-promo-section__ring--1,
    .kt-video-promo-section__ring--2 {
        opacity: 0.45;
    }

    .kt-video-promo-card {
        border-radius: 16px;
    }

    .kt-video-promo-card__media {
        aspect-ratio: 16 / 10;
    }

    .kt-video-promo-card__play-inner {
        width: 58px;
        height: 58px;
        font-size: 20px;
        padding-left: 4px;
        box-shadow:
            0 6px 18px rgba(23, 29, 39, 0.12),
            0 14px 32px rgba(91, 107, 255, 0.2);
    }

    /* Tek satır / kompakt mobil: 4 özellik yan yana */
    .kt-video-promo-card__bar {
        grid-template-columns: repeat(4, minmax(0, 1fr));
    }

    .kt-video-promo-card__feat {
        gap: 6px;
        padding: 12px 4px;
        border-right: 1px solid rgba(23, 29, 39, 0.06);
        border-bottom: 0;
    }

    .kt-video-promo-card__feat:last-child {
        border-right: 0;
    }

    .kt-video-promo-card__feat-icon {
        width: 34px;
        height: 34px;
        border-radius: 9px;
        font-size: 14px;
    }

    .kt-video-promo-card__feat-text {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: -0.01em;
    }

    .kt-video-promo-carousel .owl-nav {
        margin-top: 14px;
    }

    .kt-video-promo-carousel .owl-nav div {
        width: 38px;
        height: 38px;
    }

    .kt-video-promo-carousel .owl-dots {
        margin-top: 10px;
    }
}

/* Çok dar ekran: 2x2 grid (etiket taşmasın) */
@media (max-width: 380px) {
    .kt-video-promo-card__bar {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .kt-video-promo-card__feat {
        padding: 12px 8px;
        border-right: 1px solid rgba(23, 29, 39, 0.06);
        border-bottom: 1px solid rgba(23, 29, 39, 0.06);
    }

    .kt-video-promo-card__feat:nth-child(2n) {
        border-right: 0;
    }

    .kt-video-promo-card__feat:nth-last-child(-n+2) {
        border-bottom: 0;
    }
}

/* Video promo — newsletter strip below carousel */
.kt-video-promo-section--cta-only {
    padding-top: 72px;
    padding-bottom: 0;
}

.kt-video-promo-section--has-subscribe-below:not(.kt-video-promo-section--cta-only) {
    padding-bottom: 48px;
}

.kt-video-subscribe-cta-bleed {
    width: 100%;
    max-width: 100%;
    margin-top: 0px;
    box-sizing: border-box;
}

.kt-video-promo-section--cta-only + .kt-video-subscribe-cta-bleed {
    margin-top: 0;
}

.kt-video-subscribe-cta {
    margin-top: 0;
    width: 100%;
    border-radius: 0;
    overflow: hidden;
    background: linear-gradient(118deg, #5b6bff 0%, #4d5ef0 48%, #5a63ea 100%);
    box-shadow:
        0 16px 40px rgba(91, 107, 255, 0.35),
        0 8px 24px rgba(23, 29, 39, 0.12);
}

.kt-video-subscribe-cta__row {
    min-height: 300px;
}

.kt-video-subscribe-cta__col-visual {
    position: relative;
    padding: 18px 0 18px 0;
}

@media (min-width: 992px) {
    .kt-video-subscribe-cta__col-visual {
        padding: 22px 0 22px 0;
    }
}

.kt-video-subscribe-cta__visual {
    height: 100%;
    min-height: 260px;
    border-radius: 18px 0 0 18px;
    overflow: hidden;
    border: 2px solid rgba(255, 255, 255, 0.45);
    box-shadow: 0 12px 32px rgba(23, 29, 39, 0.18);
}

@media (min-width: 992px) {
    .kt-video-subscribe-cta__visual {
        clip-path: polygon(0 0, 100% 0, 82% 100%, 0 100%);
        border-radius: 0 18px 18px 0;
    }
}

.kt-video-subscribe-cta__visual img {
    width: 100%;
    height: 100%;
    min-height: 260px;
    object-fit: cover;
    display: block;
}

.kt-video-subscribe-cta__visual-placeholder {
    width: 100%;
    min-height: 260px;
    background: linear-gradient(135deg, rgba(255, 255, 255, 0.25) 0%, rgba(255, 255, 255, 0.08) 100%);
}

.kt-video-subscribe-cta__col-content {
    display: flex;
    align-items: center;
}

.kt-video-subscribe-cta__inner {
    padding: 36px 28px 40px 28px;
    max-width: 560px;
}

@media (min-width: 992px) {
    .kt-video-subscribe-cta__inner {
        padding: 44px max(40px, env(safe-area-inset-right, 0px)) 48px 24px;
    }
}

.kt-video-subscribe-cta__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: #ffffff;
    color: #171d27;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 16px;
    box-shadow: 0 4px 14px rgba(23, 29, 39, 0.08);
}

.kt-video-subscribe-cta__badge-icon {
    width: 20px;
    height: 20px;
    border-radius: 999px;
    background: rgba(91, 107, 255, 0.14);
    color: #5b6bff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.kt-video-subscribe-cta__title {
    font-size: clamp(26px, 3.2vw, 36px);
    font-weight: 900;
    color: #ffffff;
    line-height: 1.2;
    margin: 0 0 14px;
    letter-spacing: -0.02em;
}

.kt-video-subscribe-cta__text {
    font-size: 15px;
    line-height: 1.65;
    color: rgba(255, 255, 255, 0.92);
    margin: 0 0 24px;
}

.kt-video-subscribe-cta__fields {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-bottom: 16px;
}

.kt-video-subscribe-cta__input {
    flex: 1 1 200px;
    min-width: 0;
    height: 50px;
    padding: 0 18px;
    border-radius: 999px;
    border: 1px solid rgba(255, 255, 255, 0.55);
    background: rgba(255, 255, 255, 0.12);
    color: #ffffff;
    font-size: 14px;
    font-weight: 600;
    outline: none;
    transition: border-color 0.2s ease, background 0.2s ease;
}

.kt-video-subscribe-cta__input::placeholder {
    color: rgba(255, 255, 255, 0.75);
}

.kt-video-subscribe-cta__input:focus {
    border-color: rgba(255, 255, 255, 0.95);
    background: rgba(255, 255, 255, 0.18);
}

.kt-video-subscribe-cta__submit {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    height: 50px;
    padding: 0 28px;
    border-radius: 999px;
    border: 0;
    background: #ffffff;
    color: #5b6bff;
    font-size: 14px;
    font-weight: 800;
    cursor: pointer;
    box-shadow: 0 10px 28px rgba(23, 29, 39, 0.12);
    transition: transform 0.18s ease, box-shadow 0.18s ease;
}

.kt-video-subscribe-cta__submit:hover {
    transform: translateY(-1px);
    box-shadow: 0 14px 34px rgba(23, 29, 39, 0.16);
}

.kt-video-subscribe-cta__submit-arrow {
    font-size: 16px;
    line-height: 1;
}

@media (max-width: 991.98px) {
    .kt-video-subscribe-cta-bleed {
        margin-top: 32px;
    }

    .kt-video-subscribe-cta__col-visual {
        padding: 18px max(18px, env(safe-area-inset-left, 0px)) 0 max(18px, env(safe-area-inset-right, 0px));
    }

    .kt-video-subscribe-cta__visual {
        border-radius: 18px;
        clip-path: none;
        min-height: 220px;
    }

    .kt-video-subscribe-cta__inner {
        padding: 28px max(22px, env(safe-area-inset-left, 0px)) 36px max(22px, env(safe-area-inset-right, 0px));
        max-width: none;
    }
}

/* Homepage — Hakkımızda: tek section, tek renk alanı (kurumsaltema) */
.kt-home-about-company {
    position: relative;
    overflow: hidden;
    background: linear-gradient(180deg, #e8f4ff 0%, #edf4ff 32%, #f0f6ff 58%, #f6f9ff 100%);
    padding: 52px 0 88px;
}

.kt-home-about-company__decor {
    position: absolute;
    inset: 0;
    pointer-events: none;
    z-index: 0;
    overflow: hidden;
}

.kt-home-about-company__shape {
    position: absolute;
    border-radius: 50%;
}

.kt-home-about-company__shape--1 {
    width: min(520px, 95vw);
    height: min(520px, 95vw);
    left: 50%;
    top: 8%;
    transform: translate(-50%, -35%);
    background: radial-gradient(circle at 42% 42%, rgba(91, 107, 255, 0.09) 0%, transparent 65%);
}

.kt-home-about-company__shape--2 {
    width: min(240px, 50vw);
    height: min(240px, 50vw);
    right: -5%;
    bottom: 8%;
    border: 1px solid rgba(91, 107, 255, 0.12);
    opacity: 0.5;
}

.kt-home-about-company__ring {
    position: absolute;
    border-radius: 50%;
    border: 1px solid rgba(91, 107, 255, 0.12);
}

.kt-home-about-company__ring--1 {
    width: min(420px, 70vw);
    height: min(420px, 70vw);
    left: -120px;
    bottom: 5%;
    opacity: 0.5;
}

.kt-home-about-company__ring--2 {
    width: min(280px, 55vw);
    height: min(280px, 55vw);
    right: -70px;
    top: 22%;
    opacity: 0.38;
}

.kt-home-about-company__wrap {
    position: relative;
    z-index: 1;
}

.kt-home-about-company__head {
    margin-bottom: 44px;
}

.kt-home-about-company__head .sub-heading {
    display: inline-flex;
    align-items: flex-start;
    gap: 10px;
    padding: 9px 18px;
    border-radius: 999px;
    background: rgba(255, 255, 255, 0.78);
    border: 1px solid rgba(91, 107, 255, 0.22);
    color: #171d27;
    font-size: 13px;
    font-weight: 700;
    line-height: 1.45;
    margin: 0 auto 18px;
    max-width: min(920px, 100%);
    text-align: left;
    box-shadow: 0 8px 28px rgba(23, 29, 39, 0.06);
}

.kt-home-about-company__head .sub-heading .heading-icon {
    width: 28px;
    height: 28px;
    border-radius: 999px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    margin-top: 2px;
    background: rgba(91, 107, 255, 0.14);
    color: #5b6bff;
    font-size: 13px;
}

.kt-home-about-company__head .section-title {
    font-size: clamp(26px, 3.2vw, 38px);
    font-weight: 900;
    color: #171d27;
    margin: 0;
    letter-spacing: -0.02em;
    line-height: 1.2;
}

.kt-home-about-company__head .section-title .kt-home-about-company__accent,
.kt-home-about-company__head .kt-home-about-company__accent {
    color: #5b6bff;
}

.kt-home-about-company__grid {
    margin-top: 0;
}

.kt-home-about-company__collage {
    position: relative;
    min-height: 340px;
    max-width: 520px;
    margin: 0 auto;
}

.kt-home-about-company__pic {
    position: absolute;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 18px 45px rgba(23, 29, 39, 0.12);
    border: 1px solid rgba(23, 29, 39, 0.06);
    background: #eef0ff;
}

.kt-home-about-company__pic img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.kt-home-about-company__pic--top {
    width: 46%;
    left: 0;
    top: 0;
    z-index: 2;
    aspect-ratio: 3 / 4;
}

.kt-home-about-company__pic--bottom {
    width: 72%;
    right: 0;
    bottom: 0;
    z-index: 1;
    aspect-ratio: 16 / 10;
}

.kt-home-about-company__card {
    background: #ffffff;
    border-radius: 22px;
    padding: 36px 32px 40px;
    box-shadow: 0 20px 50px rgba(23, 29, 39, 0.08);
    border: 1px solid rgba(23, 29, 39, 0.06);
}

.kt-home-about-company__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 14px;
    border-radius: 999px;
    background: #f3f4ff;
    color: #171d27;
    font-size: 12px;
    font-weight: 800;
    margin-bottom: 16px;
}

.kt-home-about-company__badge-icon {
    width: 22px;
    height: 22px;
    border-radius: 999px;
    background: rgba(91, 107, 255, 0.16);
    color: #5b6bff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 11px;
}

.kt-home-about-company__title {
    font-size: clamp(24px, 2.8vw, 34px);
    font-weight: 900;
    color: #171d27;
    line-height: 1.25;
    margin: 0 0 22px;
    letter-spacing: -0.02em;
}

.kt-home-about-company__title .kt-home-about-company__accent,
.kt-home-about-company__accent {
    color: #5b6bff;
}

.kt-home-about-company__tablist {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 20px;
}

.kt-home-about-company__tab {
    border: 0 !important;
    outline: none !important;
    cursor: pointer;
    padding: 10px 20px !important;
    border-radius: 999px !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    line-height: 1.3 !important;
    color: #5b6bff !important;
    background: #f0f2ff !important;
    box-shadow: none !important;
    transition: background 0.2s ease, color 0.2s ease, box-shadow 0.2s ease;
    appearance: none;
    -webkit-appearance: none;
}

.kt-home-about-company__tab:hover {
    background: #e4e8ff !important;
    color: #4d5ef0 !important;
}

.kt-home-about-company__tab.is-active {
    background: linear-gradient(118deg, #5b6bff 0%, #4d5ef0 100%) !important;
    color: #ffffff !important;
    box-shadow: 0 10px 24px rgba(91, 107, 255, 0.35) !important;
}

.kt-home-about-company__panel[hidden] {
    display: none !important;
}

.kt-home-about-company__panel {
    display: none;
}

.kt-home-about-company__panel.is-active {
    display: block;
}

.kt-home-about-company__body {
    font-size: 15px;
    line-height: 1.75;
    color: #4a5160;
    margin-bottom: 24px;
    max-width: 100%;
}

.kt-home-about-company__features {
    list-style: none;
    padding: 0;
    margin: 8px 0 0;
    display: flex;
    flex-direction: column;
    gap: 14px;
    border-top: 1px solid #eef0f5;
    padding-top: 20px;
}

.kt-home-about-company__feature {
    display: flex;
    align-items: flex-start;
    gap: 14px;
    font-size: 15px;
    font-weight: 600;
    color: #171d27;
    margin: 0;
}

.kt-home-about-company__feature-num {
    flex-shrink: 0;
    font-weight: 900;
    font-size: 14px;
    color: #5b6bff;
    min-width: 28px;
}

.kt-home-about-company__feature-text {
    flex: 1;
    line-height: 1.5;
}

@media (max-width: 991.98px) {
    .kt-home-about-company {
        padding: 40px 0 64px;
    }

    .kt-home-about-company__head .sub-heading {
        font-size: 12px;
        padding: 8px 14px;
    }

    .kt-home-about-company__head {
        margin-bottom: 32px;
    }

    .kt-home-about-company__collage {
        min-height: 280px;
        max-width: 100%;
    }

    .kt-home-about-company__card {
        padding: 28px 22px 32px;
    }

    .kt-home-about-company__tablist {
        gap: 8px;
    }

    .kt-home-about-company__tab {
        padding: 9px 16px !important;
        font-size: 12px !important;
    }
}

/* —— Eğitmen Ol (Become Instructor) —— */
.kt-become-instructor-section {
    position: relative;
    padding: 64px 0 80px;
    overflow: hidden;
    background: linear-gradient(180deg, #f4f6fc 0%, #fafbff 45%, #ffffff 100%);
}

.kt-become-instructor-section--embed {
    padding: 0;
    background: transparent;
}

.kt-become-instructor-section__bg {
    pointer-events: none;
    position: absolute;
    inset: 0;
    z-index: 0;
    background: radial-gradient(ellipse 70% 50% at 20% 30%, rgba(91, 107, 255, 0.06) 0%, transparent 55%);
}

.kt-become-instructor-section > .container {
    position: relative;
    z-index: 1;
}

.kt-become-instructor-card {
    background: #ffffff;
    border: 1px solid rgba(23, 29, 39, 0.05);
    border-radius: 24px;
    padding: clamp(32px, 4vw, 44px) clamp(28px, 4vw, 48px);
    box-shadow: 0 10px 40px rgba(23, 29, 39, 0.07);
}

.kt-become-instructor-section__badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 14px;
    margin-bottom: 20px;
    border-radius: 999px;
    font-size: 11px;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    color: #5b6bff;
    background: #eef1ff;
    border: 1px solid rgba(91, 107, 255, 0.15);
}

.kt-become-instructor-section__badge i {
    font-size: 12px;
    opacity: 0.9;
}

.kt-become-instructor-section__title {
    font-size: clamp(32px, 3.5vw, 44px);
    font-weight: 800;
    line-height: 1.15;
    letter-spacing: -0.02em;
    color: #171d27;
    margin: 0 0 14px;
    max-width: 14ch;
}

.kt-become-instructor-section__subtitle {
    font-size: clamp(15px, 1.5vw, 16px);
    line-height: 1.65;
    color: #6b7280;
    margin: 0 0 26px;
    max-width: 36ch;
}

.kt-become-instructor-section__actions {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
}

.kt-become-instructor-section__cta {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 13px 26px;
    border-radius: 10px;
    font-size: 15px;
    font-weight: 700;
    color: #fff !important;
    text-decoration: none !important;
    background: linear-gradient(105deg, #6b7bff 0%, #5b6bff 42%, #6d5ce8 100%);
    box-shadow: 0 10px 28px rgba(91, 107, 255, 0.32);
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.kt-become-instructor-section__cta i {
    font-size: 12px;
    transition: transform 0.2s ease;
}

.kt-become-instructor-section__cta:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(91, 107, 255, 0.4);
    color: #fff !important;
}

.kt-become-instructor-section__cta:hover i {
    transform: translateX(3px);
}

.kt-become-instructor-section__visual {
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    min-height: 300px;
    padding: 16px 24px;
}

.kt-become-instructor-section__frame {
    position: relative;
    width: min(100%, 320px);
    aspect-ratio: 1 / 1;
    padding: 10px;
    border-radius: 20px;
    border: 2px solid #cdd8ff;
    background: #f8faff;
    box-shadow: 0 14px 36px rgba(91, 107, 255, 0.14);
    overflow: hidden;
}

.kt-become-instructor-section__frame-ring,
.kt-become-instructor-section__frame-glow {
    display: none;
}

.kt-become-instructor-section__photo {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center top;
    border-radius: 12px;
    display: block;
}

.kt-become-instructor-section__photo-placeholder {
    width: 100%;
    height: 100%;
    min-height: 260px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: linear-gradient(145deg, #e8ecff 0%, #f4f6ff 100%);
    color: #5b6bff;
    font-size: 4rem;
}

.kt-become-instructor-section__float {
    position: absolute;
    width: 48px;
    height: 48px;
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 12px;
    background: #ffffff;
    color: #5b6bff;
    font-size: 17px;
    box-shadow: 0 8px 22px rgba(23, 29, 39, 0.1);
    z-index: 3;
    animation: kt-become-instructor-float 4s ease-in-out infinite;
}

.kt-become-instructor-section__float--video {
    top: 6%;
    right: 4%;
    animation-delay: 0s;
}

.kt-become-instructor-section__float--chart {
    bottom: 10%;
    left: 0;
    animation-delay: 1.2s;
}

/* legacy class names */
.kt-become-instructor-section__float--1 {
    top: 6%;
    right: 4%;
}

.kt-become-instructor-section__float--2 {
    bottom: 10%;
    left: 0;
}

@keyframes kt-become-instructor-float {
    0%, 100% { transform: translateY(0); }
    50% { transform: translateY(-6px); }
}

@media (max-width: 991.98px) {
    .kt-become-instructor-section {
        padding: 48px 0 64px;
    }

    .kt-become-instructor-card {
        border-radius: 22px;
        padding: 28px 22px 32px;
    }

    .kt-become-instructor-section__title {
        max-width: 100%;
    }

    .kt-become-instructor-section__subtitle {
        max-width: 100%;
    }

    .kt-become-instructor-section__visual {
        min-height: 220px;
        margin-bottom: 8px;
    }

    .kt-become-instructor-section__float--1 {
        right: 2%;
    }
}

/* —— Social proof / testimonials (3-col) —— */
.kt-social-proof {
    padding: 56px 0 64px;
    background:
        radial-gradient(1200px 400px at 10% 0%, rgba(15, 23, 42, 0.04), transparent 60%),
        linear-gradient(180deg, #f8fafc 0%, #ffffff 100%);
}

.kt-social-proof__head {
    margin-bottom: 36px;
}

.kt-social-proof__title {
    margin: 0 0 10px;
    font-size: clamp(26px, 3.2vw, 38px);
    font-weight: 900;
    letter-spacing: -0.02em;
    line-height: 1.2;
    color: #171d27;
}

.kt-social-proof__subtitle {
    margin: 0 auto;
    max-width: 42rem;
    color: #6b7280;
    font-size: 15px;
    line-height: 1.65;
}

.kt-sp-col__title {
    margin: 0 0 14px;
    text-align: center;
    font-size: 1.05rem;
    font-weight: 800;
    letter-spacing: -0.01em;
    color: #171d27;
}

.kt-sp-card {
    background: #fff;
    border: 1px solid rgba(15, 23, 42, 0.06);
    border-radius: 18px;
    box-shadow: 0 10px 30px rgba(15, 23, 42, 0.05);
    padding: 18px;
}

.kt-sp-card--slider {
    display: block;
    overflow: hidden;
    height: 316px;
    min-height: 316px;
    max-height: 316px;
}

.kt-sp-carousel {
    width: 100%;
    overflow: hidden;
    height: 280px;
}

.kt-sp-card--comments .kt-sp-carousel {
    height: 280px;
}

#ktCommentCarousel .owl-stage-outer,
#ktScoreCarousel .owl-stage-outer,
#ktYouCarousel .owl-stage-outer {
    overflow: hidden;
    height: 100%;
}

#ktCommentCarousel .owl-stage,
#ktCommentCarousel .owl-item,
#ktCommentCarousel .item {
    height: 100%;
}

.kt-sp-quote {
    padding: 4px 6px 8px;
    height: 100%;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.kt-sp-quote__stars {
    color: #f59e0b;
    margin-bottom: 10px;
    letter-spacing: 1px;
    flex-shrink: 0;
}

.kt-sp-quote__body {
    margin: 0 0 10px;
    color: #4a5160;
    font-size: 15px;
    line-height: 1.65;
    flex: 1 1 auto;
    min-height: 0;
    max-height: 100%;
    overflow-y: auto;
    overflow-x: hidden;
    padding-right: 6px;
    word-break: break-word;
}

.kt-sp-quote__body::-webkit-scrollbar {
    width: 5px;
}

.kt-sp-quote__body::-webkit-scrollbar-thumb {
    background: #cbd5e1;
    border-radius: 999px;
}

.kt-sp-quote__body::-webkit-scrollbar-track {
    background: transparent;
}

.kt-sp-quote__author {
    font-weight: 700;
    color: #171d27;
    font-size: 0.95rem;
    flex-shrink: 0;
    margin-top: auto;
    padding-top: 8px;
}

.kt-sp-media a {
    display: block;
    border-radius: 14px;
    overflow: hidden;
    background: #f1f5f9;
}

.kt-sp-media img {
    width: 100%;
    height: 280px;
    max-height: 280px;
    object-fit: contain;
    display: block;
    transition: transform 0.35s ease;
}

.kt-sp-media a:hover img {
    transform: scale(1.03);
}

.kt-sp-empty {
    width: 100%;
    text-align: center;
    color: #94a3b8;
    padding: 40px 12px;
}

.kt-sp-form-card {
    min-height: 0;
    display: block;
    padding: 16px 18px;
}

.kt-sp-form-card__bar {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
}

.kt-sp-form-card__label {
    font-weight: 700;
    color: #171d27;
}

.kt-sp-form-card__toggle {
    width: 40px;
    height: 40px;
    border: 0;
    border-radius: 12px;
    background: var(--system_primery_color, #2563eb);
    color: #fff;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

.kt-sp-form-card__toggle:hover {
    opacity: 0.92;
    transform: translateY(-1px);
}

.kt-sp-form {
    margin-top: 16px;
}

.kt-sp-form__group {
    margin-bottom: 12px;
}

.kt-sp-form__group label,
.kt-sp-form__label-text {
    display: block;
    margin-bottom: 6px;
    font-size: 0.85rem;
    font-weight: 650;
    color: #334155;
}

.kt-sp-form__input {
    width: 100%;
    border: 1px solid #e2e8f0;
    border-radius: 12px;
    padding: 10px 14px;
    font-size: 0.95rem;
    color: #0f172a;
    background: #fff;
    outline: none;
    transition: border-color 0.2s ease, box-shadow 0.2s ease;
}

.kt-sp-form__input:focus {
    border-color: var(--system_primery_color, #2563eb);
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.12);
}

.kt-sp-form__submit {
    width: 100%;
    border: 0;
    border-radius: 12px;
    padding: 12px 16px;
    font-weight: 750;
    letter-spacing: 0.02em;
    text-transform: uppercase;
    color: #fff;
    background: var(--system_primery_color, #2563eb);
    cursor: pointer;
    transition: opacity 0.2s ease, transform 0.2s ease;
}

.kt-sp-form__submit:hover {
    opacity: 0.94;
    transform: translateY(-1px);
}

.kt-sp-form__submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

.kt-starrating > input {
    display: none;
}

.kt-starrating > label {
    color: #cbd5e1;
    font-size: 11px;
    cursor: pointer;
    padding: 0 2px;
}

.kt-starrating > label:before {
    content: "☆";
    font-size: 2.1em;
}

.kt-starrating > input:checked ~ label:before,
.kt-starrating > input:hover ~ label:before {
    content: "★";
    color: #f59e0b;
}

.kt-social-proof .owl-dots {
    display: none !important;
}

.kt-social-proof .owl-nav {
    display: none !important;
}

@media (max-width: 767.98px) {
    .kt-social-proof {
        padding: 40px 0 48px;
    }

    .kt-sp-card {
        min-height: 0;
    }

    .kt-sp-media img {
        height: 240px;
    }

    /* 2. ve 3. kolonlardaki başlıklara margin-top ekle */
    .kt-social-proof__grid > div:nth-child(2) .kt-sp-col__title,
    .kt-social-proof__grid > div:nth-child(3) .kt-sp-col__title {
        margin-top: 24px;
    }
}

/* Ana sayfa kurs kartları — 4 sütun + fiyat badge düzeni */
.lms_course_section_wrapper .lms_course_grid {
    display: grid !important;
    grid-template-columns: repeat(4, minmax(0, 1fr)) !important;
    gap: 20px;
    width: 100%;
    padding: 12px 0;
    align-items: stretch;
}

@media (max-width: 991.98px) {
    .lms_course_section_wrapper .lms_course_grid {
        grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
        gap: 12px;
        padding: 8px 0;
    }

    .lms_course_section_wrapper .modern_card {
        background: #ffffff !important;
        border-color: #e2e8f4;
        border-radius: 16px;
        overflow: hidden;
    }

    .lms_course_section_wrapper .card_content_part {
        background: #ffffff !important;
        padding: 0.85rem !important;
    }

    .lms_course_section_wrapper .card_thumb_part {
        max-height: 128px;
        aspect-ratio: 16 / 10;
        background: #ffffff;
    }

    .lms_course_section_wrapper .card_price_actions {
        gap: 12px;
    }

    .lms_course_section_wrapper .card_title {
        font-size: 0.88rem !important;
        line-height: 1.38;
        min-height: calc(1.38em * 2);
        margin-bottom: 10px !important;
    }

    .lms_course_section_wrapper .course-item-price {
        min-height: 44px;
        margin-bottom: 10px !important;
        gap: 8px !important;
    }

    .lms_course_section_wrapper .course-item-price__inner {
        gap: 8px !important;
    }

    .lms_course_section_wrapper .course-item-price__badge {
        min-width: 46px !important;
        height: 30px !important;
        padding: 0 7px !important;
        font-size: 0.8rem !important;
        border-radius: 8px !important;
    }

    .lms_course_section_wrapper .course-item-price__old {
        font-size: 0.76rem !important;
    }

    .lms_course_section_wrapper .course-item-price__current,
    .lms_course_section_wrapper .course-item-price__current--solo {
        font-size: 1rem !important;
    }

    .lms_course_section_wrapper .course-item-price__free {
        color: #16a34a !important;
        font-size: 1rem !important;
        font-weight: 800 !important;
        opacity: 1 !important;
    }

    .lms_course_section_wrapper .card_price_actions__btn,
    .lms_course_section_wrapper .course-card-actions {
        min-height: 38px;
    }

    .lms_course_section_wrapper .course_card_modern_wrapper .modern-btn-gradient,
    .lms_course_section_wrapper .course-card-actions__btn {
        padding: 9px 8px !important;
        font-size: 0.76rem !important;
        border-radius: 999px !important;
    }

    .lms_course_section_wrapper .course-card-actions__btn span,
    .lms_course_section_wrapper .card_price_actions__btn span {
        gap: 3px;
    }

    .lms_course_section_wrapper .course-card-actions__btn i,
    .lms_course_section_wrapper .card_price_actions__btn i {
        font-size: 0.72rem !important;
        margin-right: 3px !important;
    }

    .lms_course_section_wrapper .course-card-actions {
        gap: 7px;
    }

    .lms_course_section_wrapper .card_footer_modern {
        margin-top: 8px !important;
        padding-top: 10px !important;
        min-height: 38px;
        border-color: #dde4f0 !important;
    }

    .lms_course_section_wrapper .card_footer_modern .instructor_pill {
        font-size: 0.76rem;
    }

    .lms_course_section_wrapper .card_footer_modern .instructor_pill img {
        width: 24px;
        height: 24px;
    }

    .lms_course_section_wrapper .instructor_name {
        font-size: 0.76rem;
    }
}

.lms_course_section_wrapper .course-item-price {
    width: 100%;
}

.lms_course_section_wrapper .course-item-price__inner {
    display: flex !important;
    align-items: center !important;
    gap: 12px !important;
    width: 100%;
}

.lms_course_section_wrapper .course-item-price__inner--regular {
    display: block !important;
    margin-bottom: 14px;
}

.lms_course_section_wrapper .course-item-price__inner--discount {
    margin-bottom: 14px;
}

.lms_course_section_wrapper .course_card_modern_wrapper {
    height: 100%;
    padding: 0;
}

.lms_course_section_wrapper .modern_card {
    height: 100%;
    display: flex;
    flex-direction: column;
}

.lms_course_section_wrapper .card_content_part {
    flex: 1 1 auto;
    display: flex;
    flex-direction: column;
    min-height: 0;
}

.lms_course_section_wrapper .card_content_bottom {
    display: flex;
    flex-direction: column;
    margin-top: auto;
}

.lms_course_section_wrapper .card_title {
    font-size: 1.15rem !important;
    font-weight: 700 !important;
    line-height: 1.4;
    min-height: calc(1.4em * 2);
    margin-bottom: 16px !important;
}

.lms_course_section_wrapper .course-item-price {
    min-height: 52px;
    display: flex;
    align-items: center;
    margin-bottom: 12px !important;
}

.lms_course_section_wrapper .course-item-price__inner--regular,
.lms_course_section_wrapper .course-item-price__inner--discount {
    margin-bottom: 0 !important;
}

.lms_course_section_wrapper .course-item-price__free {
    color: #16a34a !important;
    font-size: 1.2rem !important;
    font-weight: 800 !important;
    opacity: 1 !important;
    margin-bottom: 0 !important;
}

.lms_course_section_wrapper .card_price_actions {
    display: flex;
    flex-direction: column;
    gap: 14px;
    margin-top: 0 !important;
}

.lms_course_section_wrapper .card_price_actions__btn,
.lms_course_section_wrapper .course-card-actions {
    min-height: 42px;
}

.lms_course_section_wrapper .card_footer_modern {
    margin-top: 12px !important;
    padding-top: 12px !important;
    min-height: 48px;
}

/* Ana sayfa — sadece sınav kartları: başlık / fiyat / buton arası sıkı */
.lms_quiz_section_wrapper .card_title {
    min-height: 0 !important;
    margin-bottom: 6px !important;
    line-height: 1.3 !important;
}

.lms_quiz_section_wrapper .card_content_bottom {
    margin-top: 0 !important;
    gap: 8px;
}

.lms_quiz_section_wrapper .card_price_actions {
    gap: 8px !important;
}

.lms_quiz_section_wrapper .course-item-price {
    min-height: 0 !important;
    margin-bottom: 0 !important;
}

.lms_quiz_section_wrapper .card_footer_modern {
    margin-top: 8px !important;
    padding-top: 10px !important;
    min-height: 0 !important;
}

@media (max-width: 991.98px) {
    .lms_quiz_section_wrapper .card_title {
        min-height: 0 !important;
        margin-bottom: 5px !important;
    }

    .lms_quiz_section_wrapper .card_price_actions {
        gap: 6px !important;
    }

    .lms_quiz_section_wrapper .course-item-price {
        min-height: 0 !important;
        margin-bottom: 0 !important;
    }

    .lms_quiz_section_wrapper .card_content_bottom {
        margin-top: 0 !important;
        gap: 6px;
    }
}

.lms_course_section_wrapper .modern_hover_preview {
    display: none !important;
}

.lms_course_section_wrapper .course_card_modern_wrapper:hover {
    z-index: 1 !important;
}

.lms_course_section_wrapper .modern_card:hover {
    transform: none;
    box-shadow: 0 12px 28px rgba(15, 23, 42, 0.08) !important;
}

.lms_course_section_wrapper .modern_hover_preview .hover_meta .badge,
.lms_course_section_wrapper .modern_hover_preview .bg-soft-primary {
    display: none !important;
}

.lms_course_section_wrapper .course-item-price__badge {
    display: inline-flex !important;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    min-width: 56px;
    height: 36px;
    padding: 0 10px;
    border-radius: 10px;
    background: #d9363e !important;
    color: #fff !important;
    font-size: 0.95rem !important;
    font-weight: 700 !important;
    line-height: 1 !important;
}

.lms_course_section_wrapper .course-item-price__values {
    display: flex !important;
    flex-direction: column !important;
    align-items: flex-start !important;
    justify-content: center;
    gap: 4px;
    min-width: 0;
}

.lms_course_section_wrapper .course-item-price__old {
    position: relative;
    display: inline-block;
    color: #9ca3af !important;
    font-size: 0.875rem !important;
    font-weight: 500 !important;
    line-height: 1.2;
    white-space: nowrap;
}

.lms_course_section_wrapper .course-item-price__old::after {
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    top: 50%;
    height: 1px;
    background: #9ca3af;
    transform: translateY(-50%);
}

.lms_course_section_wrapper .course-item-price__current {
    color: #1b7340 !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
    line-height: 1.15;
    white-space: nowrap;
}

.lms_course_section_wrapper .course-item-price__current--solo {
    display: inline-block;
    color: #1b7340 !important;
    font-size: 1.2rem !important;
    font-weight: 700 !important;
}

.lms_course_section_wrapper .course_card_modern_wrapper .modern-btn-gradient {
    width: 100%;
    justify-content: center;
    padding: 12px 18px;
    font-size: 0.88rem;
    border-radius: 50px;
}

.lms_course_section_wrapper .course-card-actions {
    display: flex !important;
    flex-direction: row !important;
    align-items: stretch;
    gap: 8px;
    width: 100%;
}

.lms_course_section_wrapper .course-card-actions__btn {
    flex: 1 1 0;
    min-width: 0;
    width: auto !important;
    padding: 11px 10px !important;
    font-size: 0.82rem !important;
    white-space: nowrap;
}

.lms_course_section_wrapper .lms_course_section__view-all-btn {
    width: auto !important;
    display: inline-flex !important;
    padding: 16px 45px !important;
    font-size: 1.05rem !important;
}
