.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-carousel-wrap {
        filter: drop-shadow(0 18px 36px rgba(23, 29, 39, 0.12));
    }

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

    .kt-video-promo-card__feat {
        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;
    }
}

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

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

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

    .kt-video-promo-card__bar {
        grid-template-columns: 1fr;
    }

    .kt-video-promo-card__feat {
        border-right: 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: cover;
    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%;
    }
}
