@font-face {
    font-family: 'Trebuchet';
    src: url('/landing/fonts/trebuc.ttf') format('truetype');
    font-weight: 400;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Trebuchet';
    src: url('/landing/fonts/trebuchet_bold.ttf') format('truetype');
    font-weight: 700;
    font-style: normal;
    font-display: swap;
}

@font-face {
    font-family: 'Trebuchet';
    src: url('/landing/fonts/trebuchet_bold_italic.ttf') format('truetype');
    font-weight: 700;
    font-style: italic;
    font-display: swap;
}

:root {
    --primary: #9b0818;
    --secondary: #06365e;
}

html {
    scroll-snap-type: y proximity;
}

html, body {
    margin: 0;
    padding: 0;
    overflow-x: hidden;
}

main > section,
main > div > section {
    scroll-snap-align: start;
}

* {
    font-family: 'Trebuchet', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
        sans-serif;
    font-synthesis: weight style;
}

body {
    font-family: 'Trebuchet', -apple-system, BlinkMacSystemFont, 'Segoe UI', 'Roboto', 'Oxygen',
        'Ubuntu', 'Cantarell', 'Fira Sans', 'Droid Sans', 'Helvetica Neue',
        sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
}

.aspect-locked {
    aspect-ratio: 16 / 9;
    width: 100%;
    max-width: 1920px;
    margin: 0 auto;
}

* {
    border-radius: 0 !important;
    box-shadow: none !important;
}

.hero-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.hero-section .hero-stage {
    position: absolute;
    top: 0;
    left: 0;
    width: 1920px;
    height: 1080px;
    transform-origin: 0 0;
    transform: scale(var(--scale-x), var(--scale-y));
    container-type: inline-size;
}

.hero-section .hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.hero-content-img-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform-origin: center center;
    transform: scale(calc(var(--scale-y) / var(--scale-x)), 1);
}

.hero-content-img-link {
    display: block;
    width: 100%;
    height: 100%;
}

.hero-content-img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

/* ============ MOBILE OVERRIDES ============ */
/*
 * Mobilde hero ekrani kaplamaz; yuksekligi icerige gore kisalir, ardindan
 * features-section hemen devam eder.
 *
 * HeroContent.png geometrisi (1652x936 tuval):
 *   gorunur icerik kutusu = x 484..1166, y 142..616  -> 682x474
 *   gorunur genislik / tam genislik = 0.41283
 *   gorunur icerigin ALTINDA kalan seffaf pay = tam gorsel genisliginin 0.19371 kati
 * DBE-Online-Page-01_BG.jpg geometrisi:
 *   ufuk cizgisi gorsel yuksekliginin %68'inde, kopuk tepesi %84'unde
 *
 * Buradan:
 *   gorunur icerik 88vw  -> tam gorsel --hero-img-w = 88 / 0.41283 = 213.16vw
 *   bolum yuksekligi     -> --hero-h = 133.33vw (3:4), yani gokyuzu ustten,
 *                           dalganin kuyrugu alttan kirpilmis olur
 *   icerik ALTTAN %35'e yaslanir -> ufuk %32'de oldugu icin buton suyun
 *                           ~%3 uzerinde, ekran oranindan bagimsiz olarak durur
 *   min(..., 100svh / 159.87svh) yalnizca yatay/kisa ekranda devreye girer;
 *   portre telefonlarda belirleyici olan hep vw terimidir
 */
@media (max-width: 1024px) {
    .hero-section {
        --hero-h: min(133.33vw, 100vh);
        --hero-h: min(133.33vw, 100svh);
        --hero-img-w: min(213.16vw, 159.87vh);
        --hero-img-w: min(213.16vw, 159.87svh);
        --hero-content-bottom: 35%;

        width: 100%;
        height: var(--hero-h);
        aspect-ratio: auto;
        overflow: hidden;
    }

    .hero-section .hero-stage {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        transform: none;
        padding: 0;
        box-sizing: border-box;
    }

    .hero-section .hero-bg {
        position: absolute;
        inset: 0;
    }

    /* Kisalan bolumu doldurur; dalga altta kalir, kirpma gokyuzu/denizden olur */
    .hero-bg-img {
        object-fit: cover;
        object-position: center bottom;
    }

    /* Icerik gerdirilmiyor: kendi oraninda olceklenip suyun hemen ustune yaslaniyor */
    .hero-content-img-wrapper {
        position: absolute;
        left: 50%;
        right: auto;
        top: auto;
        bottom: calc(var(--hero-content-bottom) - 0.19371 * var(--hero-img-w));
        width: var(--hero-img-w);
        height: auto;
        transform: translateX(-50%);
    }

    .hero-content-img-link {
        height: auto;
    }

    .hero-content-img {
        display: block;
        width: 100%;
        height: auto;
        object-fit: contain;
    }
}

.nav-link {
    transition: all 0.3s ease;
}

.nav-link:hover {
    opacity: 0.8;
}

/* Features Section */
.features-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.features-section .features-stage {
    position: absolute;
    top: 0;
    left: 0;
    width: 1920px;
    height: 1080px;
    transform-origin: 0 0;
    transform: scale(var(--scale-x), var(--scale-y));
    container-type: inline-size;
    background: url('/landing/images/DBE-Online-Page-07---Neden-DBE-Online_BG.jpg') no-repeat top center;
    background-size: cover;
}

.features-content-img-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform-origin: left center;
    transform: scale(calc(var(--scale-y) / var(--scale-x)), 1);
}

.features-content-img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

/*
 * Hero ile ayni yaklasim; farki: bu bolumun icerigi SOLA yasli.
 *
 * FeaturesContent.png geometrisi (1652x936 tuval):
 *   gorunur icerik kutusu = x 77..1098, y 218..650  -> 1021x432
 *   gorunur genislik / tam genislik = 0.61804
 *   soldaki seffaf pay  = tam gorsel genisliginin 0.04661 kati
 *   ustteki seffaf pay  = tam gorsel genisliginin 0.13196 kati
 *
 * Buradan:
 *   gorunur icerik 92vw -> tam gorsel --feat-img-w = 92 / 0.61804 = 148.86vw
 *   icerik yuksekligi   = 0.26150 * --feat-img-w = 38.9vw
 *   bolum yuksekligi 85vw -> icerigin altinda ~37vw cicek bandi kalir
 *
 * background-position SOL alt: BG'de cicekler sagda yogun, sol taraf seyrek.
 * Ortadan kirpilirsa sagdaki cicekler metnin altina gelip okunurlugu bozuyor.
 */
@media (max-width: 1024px) {
    .features-section {
        --feat-img-w: 148.86vw;
        --feat-content-left: 4vw;
        --feat-content-top: 9vw;

        width: 100%;
        height: 85vw;
        aspect-ratio: auto;
        overflow: hidden;
    }

    .features-section .features-stage {
        position: absolute;
        top: 0;
        left: 0;
        width: 100%;
        height: 100%;
        transform: none;
        padding: 0;
        box-sizing: border-box;
        background-position: left bottom;
        background-size: cover;
    }

    /* Icerik gerdirilmiyor: kendi oraninda olceklenip sola yaslaniyor */
    .features-content-img-wrapper {
        position: absolute;
        left: calc(var(--feat-content-left) - 0.04661 * var(--feat-img-w));
        top: calc(var(--feat-content-top) - 0.13196 * var(--feat-img-w));
        right: auto;
        bottom: auto;
        width: var(--feat-img-w);
        height: auto;
        transform: none;
    }

    .features-content-img {
        display: block;
        width: 100%;
        height: auto;
        object-fit: contain;
    }
}

/* Comparison Section */
.comparison-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: #7fbcf2;
}

.comparison-section .comparison-stage {
    position: absolute;
    top: 0;
    left: 0;
    transform-origin: 0 0;
    container-type: inline-size;
    width: 100%;
    height: 100%;
}

.comparison-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2cqw;
}

.comparison-title {
    font-size: min(3.38cqw, 5.96vh);
    font-weight: bold;
    margin-bottom: 1cqw;
    padding-top: 3cqw;
    letter-spacing: -0.05em;
    color: #0f2670;
    text-align: center;
}

.comparison-table {
    width: min(80.09cqw, 141.35vh);
    height: min(38.01cqw, 67.09vh);
    box-sizing: border-box;
    margin: 0 auto;
    background-color: #b6d8f7;
    padding: 0.2cqw 5cqw 1cqw 5cqw;
}

.comparison-header {
    display: flex;
    margin-bottom: 0.3cqw;
    gap: 0.3cqw;
}

.comparison-col-feature {
    width: min(35.33cqw, 62.34vh);
}

.comparison-col-head {
    width: min(16.02cqw, 28.28vh);
    text-align: center;
    color: #0f2670;
    font-size: min(2.06cqw, 3.63vh);
    letter-spacing: -0.05em;
}

.comparison-row {
    display: flex;
    gap: 0.3cqw;
}

.comparison-cell {
    margin-bottom: 0.3cqw;
    color: #0f2670;
    background-color: white;
    border: 0.1cqw solid #0f2670;
    box-sizing: border-box;
    display: flex;
    align-items: center;
}

.comparison-cell-feature {
    width: min(35.33cqw, 62.34vh);
    height: min(2.88cqw, 5.09vh);
    font-size: min(1.51cqw, 2.67vh);
    padding: 0 1cqw;
}

.comparison-cell-value {
    width: min(16.02cqw, 28.28vh);
    height: min(2.88cqw, 5.09vh);
    font-size: min(1.82cqw, 3.21vh);
    padding: 0 1cqw;
    justify-content: center;
}

.comparison-cell-value--alt {
    background-color: #fcf6f6;
}

.comparison-cell.is-bold {
    font-weight: bold;
}

@media (max-width: 1024px) {
    .comparison-section {
        width: 100%;
        height: auto;
        overflow: visible;
    }

    .comparison-section .comparison-stage {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        height: auto;
        transform: none;
        padding: 3rem 1rem 2rem;
        box-sizing: border-box;
    }

    .comparison-content {
        position: relative;
        inset: auto;
        padding: 0;
        transform: none;
    }

    .comparison-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .comparison-table {
        width: 100%;
        height: auto;
        padding: 0.75rem;
    }

    .comparison-header {
        padding-left: 0;
        margin-bottom: 0.25rem;
        gap: 0.25rem;
        position: sticky;
        top: 0;
        background-color: #b6d8f7;
        z-index: 1;
        padding-top: 0.25rem;
        padding-bottom: 0.25rem;
    }

    .comparison-col-feature,
    .comparison-cell-feature {
        flex: 1.6 1 0;
        width: auto;
    }

    .comparison-col-head,
    .comparison-cell-value {
        flex: 1 1 0;
        width: auto;
        font-size: 0.85rem;
    }

    .comparison-row {
        gap: 0.25rem;
    }

    .comparison-cell {
        font-size: 0.8rem;
        margin-bottom: 0.25rem;
        border-width: 1px;
        height: auto;
        min-height: 2.25rem;
    }

    .comparison-cell-feature {
        height: auto;
        font-size: 0.78rem;
        padding: 0.4rem 0.5rem;
        line-height: 1.2;
    }

    .comparison-cell-value {
        height: auto;
        font-size: 0.85rem;
        padding: 0.4rem 0.5rem;
    }
}

@media (max-width: 480px) {
    .comparison-title {
        font-size: 1.2rem;
    }

    .comparison-table {
        padding: 0.5rem;
    }

    .comparison-col-head {
        font-size: 0.72rem;
        line-height: 1.15;
    }

    .comparison-cell-feature {
        font-size: 0.7rem;
        padding: 0.35rem 0.4rem;
    }

    .comparison-cell-value {
        font-size: 0.75rem;
        padding: 0.35rem 0.25rem;
    }
}

/* Therapists Section */
.therapists-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: #bfebff;
}

.therapists-section .therapists-stage {
    position: absolute;
    top: 0;
    left: 0;
    transform-origin: 0 0;
    container-type: inline-size;
    width: 100%;
    height: 100%;
}

.therapists-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding: 0;
}

.therapists-title {
    font-size: min(3.27cqw, 5.77vh);
    font-weight: bold;
    color: #9b0818;
    margin-bottom: 1.7cqw;
    text-align: center;
    letter-spacing: -0.05em;
}

.therapists-carousel {
    background-color: #88c9ee;
    height: min(22.09cqw, 39vh);
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    gap: 1cqw;
}

.therapists-carousel-inner {
    display: flex;
    gap: 1cqw;
    justify-content: center;
}

.therapists-nav {
    display: flex;
    flex-direction: column;
    justify-content: flex-end;
    align-content: end;
}

.therapists-nav-btn {
    width: 2.3cqw;
    height: 2.3cqw;
    background-color: white;
    border: 0.1cqw solid #9b0818;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    flex-shrink: 0;
    padding: 0.5cqw;
}

.therapists-nav-icon {
    width: 1.5cqw;
    height: 1.5cqw;
}

.therapists-cards {
    display: flex;
    gap: 0.8cqw;
}

.therapist-card {
    width: min(22.34cqw, 39.42vh);
    height: min(15.5cqw, 27.35vh);
    flex-shrink: 0;
    background-color: white;
    border: 0.15cqw solid #9b0818;
    padding: 0.5cqw 0.5cqw 1cqw;
}

.therapist-card.is-hidden {
    display: none;
}

.therapist-card-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5cqw;
    border-bottom: 0.2cqw solid #9b0818;
}

.therapist-card-name {
    font-size: min(1.33cqw, 2.35vh);
    font-weight: bold;
    color: #9b0818;
}

.therapist-card-prefix {
    font-size: min(0.85cqw, 1.49vh);
    font-weight: 900;
    color: #9b0818;
}

.therapist-card-body {
    display: flex;
    gap: 0.5cqw;
}

.therapist-card-left {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.therapist-photo {
    width: min(7.39cqw, 13.03vh);
    height: min(7.57cqw, 13.36vh);
    background-color: #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0.5cqw;
}

.therapist-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.therapist-card-btn {
    margin-top: 0.8cqw;
    background-color: #9b0818;
    color: white;
    font-size: min(0.85cqw, 1.49vh);
    /*font-weight: bold;*/
    cursor: pointer;
    width: min(7.69cqw, 13.57vh);
    height: min(1.21cqw, 2.14vh);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.therapist-card-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.therapist-card-expertise {
    font-size: min(0.74cqw, 1.31vh);
    color: #9b0818;
    font-weight: bold;
    margin-bottom: 0.8cqw;
    letter-spacing: -0.05em;
}

.therapist-card-spec {
    line-height: 1;
    font-size: min(0.74cqw, 1.31vh);
    margin-bottom: 0.3cqw;
    color: #5f5f5f;
}

.therapists-view-all-wrapper {
    text-align: center;
    margin-top: 2.2cqw;
    font-size: 1.9cqw;
    letter-spacing: -0.05em;
}

.therapists-view-all {
    background-color: white;
    color: #9b0818;
    font-size: min(2.04cqw, 3.6vh);
    width: min(22.46cqw, 39.64vh);
    height: min(2.6cqw, 4.59vh);
    cursor: pointer;
    text-decoration: none;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

@media (max-width: 1024px) {
    .therapists-section {
        width: 100%;
        height: auto;
        overflow: visible;
    }

    .therapists-section .therapists-stage {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        height: auto;
        transform: none;
        padding: 3rem 0 2rem;
        box-sizing: border-box;
    }

    .therapists-content {
        position: relative;
        inset: auto;
        padding: 0 1rem;
    }

    .therapists-title {
        font-size: 1.5rem;
        margin-bottom: 1rem;
    }

    .therapists-carousel {
        height: auto;
        padding: 1rem 0;
        gap: 0.5rem;
        overflow: hidden;
    }

    .therapists-carousel-inner {
        flex-direction: row;
        flex-wrap: wrap;
        justify-content: center;
        align-items: center;
        gap: 0.75rem;
        width: 100%;
    }

    /* Yatay scroll-snap carousel — kartlar yan yana, parmakla kaydirilir */
    .therapists-cards {
        flex: 1 1 100%;
        order: 1;
        flex-direction: row;
        gap: 0.75rem;
        width: 100%;
        overflow-x: auto;
        overflow-y: hidden;
        scroll-snap-type: x mandatory;
        scroll-padding: 0 1rem;
        padding: 0 1rem 0.5rem;
        -webkit-overflow-scrolling: touch;
        scrollbar-width: none;
    }

    .therapists-cards::-webkit-scrollbar {
        display: none;
    }

    .therapist-card {
        width: 80%;
        max-width: 22rem;
        flex-shrink: 0;
        height: auto;
        padding: 0.75rem;
        border-width: 2px;
        scroll-snap-align: start;
    }

    .therapist-card.is-hidden {
        /* Mobilde tum kartlar gorunur — tek tek scroll-snap ile gezilir */
        display: block;
    }

    .therapist-card-header {
        margin-bottom: 0.5rem;
        border-bottom-width: 2px;
    }

    .therapist-card-name {
        font-size: 1rem;
    }

    .therapist-card-prefix {
        font-size: 0.75rem;
    }

    .therapist-card-body {
        gap: 0.75rem;
    }

    .therapist-photo {
        width: 4.5rem;
        height: 4.5rem;
        margin-top: 0.25rem;
    }

    .therapist-card-btn {
        width: auto;
        min-width: 4.5rem;
        font-size: 0.7rem;
        padding: 0.3rem 0.6rem;
        margin-top: 0.5rem;
        height: auto;
        white-space: nowrap;
    }

    .therapist-card-expertise {
        font-size: 0.75rem;
    }

    .therapist-card-spec {
        font-size: 0.75rem;
        line-height: 1.2;
    }

    /* Mobilde nav butonlari gizli — kullanici parmakla scroll-snap ile gezer */
    .therapists-nav {
        display: none;
    }

    .therapists-view-all-wrapper {
        margin-top: 1.25rem;
        transform: none;
    }

    .therapists-view-all {
        font-size: 1rem;
        padding: 0.5rem 1.5rem;
        width: auto;
        height: auto;
    }
}

@media (max-width: 480px) {
    .therapist-card {
        width: 88%;
    }

    .therapist-card-name {
        font-size: 0.95rem;
    }

    .therapist-photo {
        width: 4rem;
        height: 4rem;
    }

    .therapist-card-btn {
        min-width: 4rem;
        font-size: 0.65rem;
        padding: 0.25rem 0.5rem;
    }
}

/* Quick Help Section */
.quickhelp-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
    background-color: #f3faff;
}

.quickhelp-section .quickhelp-stage {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    transform-origin: 0 0;
    container-type: inline-size;
}

.quickhelp-content {
    position: absolute;
    inset: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 2cqw;
}

.quickhelp-box {
    background-color: #309ce1;
    padding: 5cqw 4cqw 6cqw 4cqw;
    margin-top: 5cqw;
    width: 60%;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 2cqw;
}

.quickhelp-title {
    font-size: 2.8cqw;
    font-weight: bold;
    color: white;
    text-align: center;
    margin-bottom: 0.5cqw;
}

.quickhelp-faqs {
    display: flex;
    flex-direction: column;
    gap: 0.2cqw;
    width: 95%;
}

.quickhelp-item {
    border: 0.2cqw solid #0f2670;
}

.quickhelp-item-btn {
    width: 100%;
    background-color: white;
    border: none;
    padding: 0.1cqw 1.5cqw;
    display: flex;
    align-items: center;
    justify-content: space-between;
    cursor: pointer;
}

.quickhelp-item-q {
    font-size: 1.3cqw;
    color: #0f2670;
    text-align: left;
}

.quickhelp-item-arrow {
    font-size: 1.5cqw;
    color: #0f2670;
    font-weight: bold;
    transition: transform 0.3s ease;
}

.quickhelp-item-panel {
    display: none;
    background-color: white;
    border-top: 1px solid #e0e0e0;
    padding: 1cqw 1.5cqw;
}

.quickhelp-item-a {
    font-size: 1.1cqw;
    color: #555;
    line-height: 1.2;
}

@media (max-width: 1024px) {
    .quickhelp-section {
        width: 100%;
        height: auto;
        min-height: 0;
        overflow: visible;
    }

    .quickhelp-section .quickhelp-stage {
        position: relative;
        top: auto;
        left: auto;
        width: 100%;
        height: auto;
        min-height: 0;
        transform: none;
        padding: 4rem 1rem;
        box-sizing: border-box;
    }

    .quickhelp-content {
        position: relative;
        inset: auto;
        padding: 0;
        transform: none;
    }

    .quickhelp-box {
        width: 100%;
        padding: 1.25rem 1rem;
        margin-top: 0;
        gap: 1rem;
    }

    .quickhelp-title {
        font-size: 1.5rem;
        margin-bottom: 0.25rem;
    }

    .quickhelp-faqs {
        gap: 0.6rem;
    }

    .quickhelp-item {
        border-width: 2px;
    }

    .quickhelp-item-btn {
        padding: 0.6rem 0.9rem;
    }

    .quickhelp-item-q {
        font-size: 0.9rem;
    }

    .quickhelp-item-arrow {
        font-size: 1.1rem;
    }

    .quickhelp-item-panel {
        padding: 0.75rem 0.9rem;
    }

    .quickhelp-item-a {
        font-size: 0.85rem;
        line-height: 1.4;
    }
}

/* How It Works Section */
.howitworks-hero-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.howitworks-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.howitworks-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: right center;
}

.howitworks-hero-content-img-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    overflow: hidden;
}

.howitworks-hero-content-img {
    position: absolute;
    top: 0;
    height: 100%;
    width: auto;
    /* left set dynamically by JS to align natural pixel x=454 with logo */
}

.howitworks-hero-btn {
    position: absolute;
    display: block;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 1;
}

.howitworks-steps-bg-img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.howitworks-steps-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.howitworks-steps-section .howitworks-steps-stage {
    position: absolute;
    top: 0;
    left: 0;
    width: 1920px;
    height: 1080px;
    transform-origin: 0 0;
    transform: scale(var(--scale-x), var(--scale-y));
    container-type: inline-size;
}

.howitworks-steps-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.howitworks-steps-content-img-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform-origin: center center;
    transform: scale(calc(var(--scale-y) / var(--scale-x)), 1);
}

.howitworks-steps-content-img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.howitworks-steps-btn {
    position: absolute;
    display: block;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 1;
}

.howitworks-steps-mobile {
    display: none;
}

@media (max-width: 1024px) {
    /*
     * HowItWorks-Content.png (1920x936 tuval):
     *   gorunur icerik = x 452..1261, y 176..378  -> 809x202
     *   gorunur/tam genislik = 0.42135, soldaki pay 0.23542, ustteki pay 0.09167
     *   icerik 88vw olsun -> --hiw-img-w = 88 / 0.42135 = 208.85vw
     *   icerigi ortalamak icin sol kaydirma = 0.23542 + 0.42135/2 = 0.44609
     * HowItWorks-BG.png: ust %25'i tamamen temiz mavi, bulutlar %37'den sonra basliyor.
     *   Beyaz metin bulutun uzerine denk gelmesin diye BG kutusu %180'e buyutulup
     *   uste yaslanir; boylece yalnizca gorselin ust ~%40'i gorunur.
     * Kadin figuru mobilde kirpiliyor (object-position: left top).
     */
    .howitworks-hero-section {
        --hiw-img-w: 208.85vw;
        --hiw-content-top: 24vw;

        width: 100%;
        height: 72vw;
        aspect-ratio: auto;
        overflow: hidden;
    }

    .howitworks-bg {
        inset: 0 0 auto 0;
        height: 180%;
    }

    .howitworks-bg-img {
        object-fit: cover;
        object-position: left top;
    }

    /*
     * JS mobilde inline stilleri temizler, konumlandirmayi bu kural yapar.
     * max-width: none SART: Tailwind preflight'in img{max-width:100%} kurali
     * --hiw-img-w'yi wrapper genisligine kirpiyor, icerik sola tasiyordu.
     */
    .howitworks-hero-content-img {
        left: calc(50% - 0.44609 * var(--hiw-img-w));
        top: calc(var(--hiw-content-top) - 0.09167 * var(--hiw-img-w));
        width: var(--hiw-img-w);
        max-width: none;
        height: auto;
    }

    /*
     * Mobilde tek parca content gorseli yerine, AYNI howitw.png'den CSS sprite ile
     * kesilen baslik + 3 kart alt alta diziliyor (yeni dosya uretilmiyor).
     * Bolum yuksekligini bu akis belirler; stage yalnizca arka plani tasir.
     *
     * howitw.png (1652x936) dilimleri:
     *   baslik x 676..979  y 266..319  -> 304x54
     *   kart 1 x  84..529  y 424..776  -> 446x353
     *   kart 2 x 605..1050
     *   kart 3 x1125..1570
     * sprite genisligi = hedef_genislik * 1652 / dilim_genisligi
     * konum            = -(dilim_x / 1652) * sprite,  -(dilim_y / 1652) * sprite
     */
    .howitworks-steps-section {
        width: 100%;
        height: auto;
        aspect-ratio: auto;
        min-height: 0;
        overflow: hidden;
    }

    .howitworks-steps-section .howitworks-steps-stage {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        transform: none;
        padding: 0;
        box-sizing: border-box;
    }

    .howitworks-steps-section .howitworks-steps-bg {
        position: absolute;
        inset: 0;
    }

    .howitworks-steps-bg-img {
        object-fit: cover;
    }

    /* masaustunun tek parca gorseli ve JS ile konumlanan hotspot'lari mobilde kapali */
    .howitworks-steps-content-img-wrapper,
    .howitworks-steps-btn {
        display: none;
    }

    .howitworks-steps-mobile {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 7vw;
        padding: 8vw 0 10vw;
    }

    .hiw-m-title,
    .hiw-m-card {
        display: block;
        background-image: url('/landing/images/howitw.png');
        background-repeat: no-repeat;
    }

    /* baslik 45vw -> sprite 45 * 1652/304 = 244.54vw */
    .hiw-m-title {
        width: 45vw;
        height: 7.99vw;
        background-size: 244.54vw auto;
        background-position: -100.07vw -39.37vw;
    }

    /* kartlar 88vw -> sprite 88 * 1652/446 = 325.96vw */
    .hiw-m-card {
        width: 88vw;
        height: 69.65vw;
        background-size: 325.96vw auto;
    }

    .hiw-m-card--1 {
        background-position: -16.57vw -83.66vw;
    }

    .hiw-m-card--2 {
        background-position: -119.37vw -83.66vw;
    }

    .hiw-m-card--3 {
        background-position: -221.97vw -83.66vw;
    }
}

/* About Section */
.about-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.about-section .about-stage {
    position: absolute;
    top: 0;
    left: 0;
    width: 1920px;
    height: 1080px;
    transform-origin: 0 0;
    transform: scale(var(--scale-x), var(--scale-y));
    container-type: inline-size;
}

.about-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.about-bg-img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.about-content-img-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform-origin: center center;
    transform: scale(calc(var(--scale-y) / var(--scale-x)), 1);
}

.about-content-img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

/*
 * about_content.png (1652x936 tuval):
 *   gorunur icerik = x 330..1289, y 230..722  -> 959x492 (baslik + cerceveli metin kutusu)
 *   gorunur/tam genislik = 0.58051, soldaki pay 0.19976, ustteki pay 0.13923
 *   icerik 94vw olsun -> --ab-img-w = 94 / 0.58051 = 161.93vw
 *   yatay ortalama kaydirmasi = 0.19976 + 0.58051/2 = 0.49001
 *   icerik ustten 18vw'ye konur -> 3.5rem'lik fixed nav'in altinda kalir
 * NOT: kutu icindeki govde metni 1652 tuvalde ~32px; 94vw'de ~12px'e dusuyor.
 * Bu, tek parca gorselle ulasilabilecek tavan (metin dar olcuye yeniden sarilamiyor).
 */
@media (max-width: 1024px) {
    .about-section {
        --ab-img-w: 161.93vw;
        --ab-content-top: 18vw;

        width: 100%;
        height: 92vw;
        aspect-ratio: auto;
        overflow: hidden;
    }

    .about-section .about-stage {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        transform: none;
        padding: 0;
        box-sizing: border-box;
    }

    .about-section .about-bg {
        position: absolute;
        inset: 0;
    }

    .about-bg-img {
        object-fit: cover;
        object-position: center bottom;
    }

    /* Olcu wrapper'da; img width:100% kaliyor ki Tailwind'in img{max-width:100%}
       kurali degeri kirpmasin */
    .about-content-img-wrapper {
        position: absolute;
        left: calc(50% - 0.49001 * var(--ab-img-w));
        top: calc(var(--ab-content-top) - 0.13923 * var(--ab-img-w));
        right: auto;
        bottom: auto;
        width: var(--ab-img-w);
        height: auto;
        transform: none;
    }

    .about-content-img {
        display: block;
        width: 100%;
        height: auto;
        object-fit: contain;
    }
}

/* Contact Section */
.contact-section {
    position: relative;
    width: 100%;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}

.contact-content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    padding: 5vw;
    min-height: 100%;
}

.contact-bg {
    position: absolute;
    inset: 0;
}

.contact-bg-img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.contact-title {
    font-size: 3vw;
    font-weight: bold;
    color: #9b0818;
    text-align: center;
    margin-bottom: 3vw;
}

.contact-cards {
    display: flex;
    gap: 3vw;
    justify-content: center;
    flex-wrap: wrap;
}

.contact-card {
    background-color: white;
    border: 0.15vw solid #0f2670;
    padding: 2vw;
    width: 22vw;
    min-height: 15vw;
    box-sizing: border-box;
}

.contact-card-header {
    display: flex;
    align-items: center;
    margin-bottom: 1.5vw;
}

.contact-card-icon {
    width: 3vw;
    height: 3vw;
    background-color: #4da6e8;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 1vw;
    flex-shrink: 0;
}

.contact-card-icon-svg {
    width: 1.8vw;
    height: 1.8vw;
    color: white;
}

.contact-card-title {
    font-size: 1.3vw;
    font-weight: bold;
    color: #0f2670;
    margin: 0;
}

.contact-card-text {
    font-size: 1vw;
    color: #333;
    line-height: 1.6;
    margin: 0;
}

.contact-card-text--phone {
    font-size: 1.1vw;
    line-height: 1.8;
    font-weight: 600;
}

.contact-card-text--email {
    font-size: 1.1vw;
    line-height: 1.8;
}

@media (max-width: 1024px) {
    .contact-section {
        aspect-ratio: auto;
        min-height: 100vh;
    }

    .contact-bg-img {
        object-fit: cover;
    }

    .contact-content {
        padding: 5rem 1.25rem 2rem;
        min-height: 100vh;
        box-sizing: border-box;
        justify-content: flex-start;
    }

    .contact-title {
        font-size: 1.75rem;
        margin-bottom: 1.5rem;
    }

    .contact-cards {
        flex-direction: column;
        gap: 1rem;
        width: 100%;
        align-items: stretch;
    }

    .contact-card {
        width: 100%;
        min-height: 0;
        padding: 1.25rem;
        border-width: 1px;
    }

    .contact-card-header {
        margin-bottom: 0.75rem;
    }

    .contact-card-icon {
        width: 2.25rem;
        height: 2.25rem;
        margin-right: 0.75rem;
    }

    .contact-card-icon-svg {
        width: 1.25rem;
        height: 1.25rem;
    }

    .contact-card-title {
        font-size: 1.1rem;
    }

    .contact-card-text {
        font-size: 0.95rem;
        line-height: 1.5;
    }

    .contact-card-text--phone,
    .contact-card-text--email {
        font-size: 0.95rem;
        line-height: 1.6;
    }
}

/* Training Section */
.training-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.training-section .training-stage {
    position: absolute;
    top: 0;
    left: 0;
    width: 1920px;
    height: 1080px;
    transform-origin: 0 0;
    transform: scale(var(--scale-x), var(--scale-y));
    container-type: inline-size;
}

.training-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.training-bg-img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.training-content-img-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform-origin: center center;
    transform: scale(calc(var(--scale-y) / var(--scale-x)), 1);
}

.training-content-img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.training-content-btn {
    position: absolute;
    display: block;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 1;
}

.training-mobile {
    display: none;
}

/*
 * Mobilde tek parca content gorseli yerine, AYNI trainings_2.png'den CSS sprite ile
 * kesilen baslik + 3 kart alt alta diziliyor (how-it-works ikinci bolumu ile ayni desen).
 *
 * trainings_2.png (1652x936) dilimleri:
 *   baslik x 452..1206 y 219..272  -> 755x54
 *   kart 1 x  85..529  y 325..649  -> 445x325
 *   kart 2 x 606..1050
 *   kart 3 x1126..1570
 * sprite genisligi = hedef_genislik * 1652 / dilim_genisligi
 * konum            = -(dilim_x / 1652) * sprite,  -(dilim_y / 1652) * sprite
 */
@media (max-width: 1024px) {
    .training-section {
        width: 100%;
        height: auto;
        aspect-ratio: auto;
        min-height: 0;
        overflow: hidden;
    }

    .training-section .training-stage {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        transform: none;
        padding: 0;
        box-sizing: border-box;
    }

    /*
     * BG'nin ust %70'i duz beyaz, alt %30'unda renkli dalga var. Bolum uzadigi icin
     * cover kullanmak dalgayi 5 kat buyutup bulaniklastiriyor; bunun yerine gorsel
     * dogal oraninda alta yaslanip ustu duz beyazla dolduruluyor.
     */
    .training-section .training-bg {
        position: absolute;
        inset: 0;
        background-color: #fff;
    }

    .training-bg-img {
        object-fit: contain;
        object-position: center bottom;
    }

    .training-content-img-wrapper,
    .training-content-btn {
        display: none;
    }

    .training-mobile {
        position: relative;
        z-index: 1;
        display: flex;
        flex-direction: column;
        align-items: center;
        gap: 7vw;
        padding: 8vw 0 10vw;
    }

    .tr-m-title,
    .tr-m-card {
        display: block;
        background-image: url('/landing/images/trainings_2.png');
        background-repeat: no-repeat;
    }

    /* baslik 84vw -> sprite 84 * 1652/755 = 183.80vw */
    .tr-m-title {
        width: 84vw;
        height: 6.01vw;
        background-size: 183.80vw auto;
        background-position: -50.29vw -24.37vw;
    }

    /* kartlar 88vw -> sprite 88 * 1652/445 = 326.69vw */
    .tr-m-card {
        width: 88vw;
        height: 64.27vw;
        background-size: 326.69vw auto;
    }

    .tr-m-card--1 {
        background-position: -16.81vw -64.27vw;
    }

    .tr-m-card--2 {
        background-position: -119.84vw -64.27vw;
    }

    .tr-m-card--3 {
        background-position: -222.67vw -64.27vw;
    }
}

/* ============ LANDING FOOTER ============ */
.landing-footer {
    position: relative;
    z-index: 1;
    background-color: #2d2d2d;
    color: white;
    padding: 3vw 5vw;
}

.landing-footer-grid {
    display: flex;
    justify-content: space-between;
    gap: 4vw;
    flex-wrap: wrap;
}

.landing-footer-col {
    flex: 1;
    min-width: 15vw;
}

.landing-footer-logo {
    height: 4vw;
    width: auto;
    margin-bottom: 1vw;
}

.landing-footer-heading {
    font-size: 1.3vw;
    font-weight: bold;
    margin-bottom: 1vw;
    color: white;
}

.landing-footer-list {
    list-style: none;
    padding: 0;
    margin: 0;
}

.landing-footer-li {
    margin-bottom: 0.5vw;
}

.landing-footer-link {
    font-size: 1vw;
    color: #b0b0b0;
    text-decoration: none;
}

.landing-footer-text {
    font-size: 1vw;
    color: #b0b0b0;
    margin-bottom: 0.5vw;
}

.landing-footer-copy {
    font-size: 0.9vw;
    color: #808080;
    margin-top: 1vw;
}

.landing-footer-payments {
    border-top: 1px solid #444;
    margin-top: 2vw;
    padding-top: 1.5vw;
    display: flex;
    justify-content: center;
}

.landing-footer-payment-logo {
    height: 2.5vw;
    width: auto;
    opacity: 0.85;
}

@media (max-width: 1024px) {
    .landing-footer {
        padding: 2rem 1.25rem;
    }

    .landing-footer-grid {
        flex-direction: column;
        gap: 1.5rem;
    }

    .landing-footer-col {
        min-width: 0;
    }

    .landing-footer-logo {
        height: 2.5rem;
        margin-bottom: 0.5rem;
    }

    .landing-footer-heading {
        font-size: 1rem;
        margin-bottom: 0.5rem;
    }

    .landing-footer-li {
        margin-bottom: 0.35rem;
    }

    .landing-footer-link,
    .landing-footer-text {
        font-size: 0.9rem;
    }

    .landing-footer-copy {
        font-size: 0.8rem;
        margin-top: 0.5rem;
    }

    .landing-footer-payments {
        margin-top: 1.25rem;
        padding-top: 1rem;
    }

    .landing-footer-payment-logo {
        height: 2rem;
    }
}

/* ============ LANDING NAV (HEADER) ============ */
.landing-nav {
    position: fixed;
    top: 0;
    left: 1vw;
    right: 1vw;
    height: 6vw;
    z-index: 50;
    background-color: var(--primary);
}

.landing-nav-inner {
    width: 100%;
    height: 100%;
    padding: 0 2vw 0 min(2.6cqw, 4.59vh);
}

.landing-nav-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    height: 100%;
}

.landing-nav-logo-link {
    flex-shrink: 0;
}

.landing-nav-logo {
    height: 5vw;
    width: auto;
    border: 0.15vw solid white;
}

.landing-nav-desktop-links {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 2.8vw;
    flex: 1;
    font-size: 1.2vw;
}

.landing-nav-desktop-actions {
    display: flex;
    align-items: center;
    gap: 0.5vw;
    flex-shrink: 0;
    font-size: 1.2vw;
}

.landing-nav-link {
    color: white;
    font-weight: 500;
    text-decoration: none;
}

.landing-nav-lang {
    display: flex;
    align-items: center;
    gap: 0.5rem;
}

.landing-nav-lang-btn {
    display: flex;
    align-items: center;
    padding: 0.5rem 0.75rem;
    font-size: 0.875rem;
    font-weight: 600;
    text-decoration: none;
    background-color: transparent;
    color: white;
    border: 2px solid white;
    transition: all 0.2s;
}

.landing-nav-lang-btn.is-active,
.landing-nav-lang-btn:hover {
    background-color: white;
    color: var(--primary);
}

.landing-nav-cta {
    padding: 0.5rem 1.5rem;
    font-weight: 900;
    color: white;
    text-decoration: none;
    display: inline-block;
    transition: all 0.2s;
}

.landing-nav-cta:hover {
    background-color: transparent;
    color: white;
}

.landing-nav-mobile-btn-wrap {
    display: none;
    align-items: center;
}

.landing-nav-mobile-btn {
    background: none;
    border: none;
    color: white;
    padding: 0.5rem;
    cursor: pointer;
}

.landing-nav-mobile-btn:hover {
    opacity: 0.8;
}

.landing-nav-mobile-icon {
    height: 1.5rem;
    width: 1.5rem;
}

.landing-nav-mobile-icon.is-hidden {
    display: none;
}

.landing-nav-mobile {
    display: none;
    flex-direction: column;
    gap: 0.75rem;
    background-color: var(--primary);
    padding: 1rem;
}

.landing-nav-mobile.is-hidden {
    display: none;
}

.landing-nav-mobile-link {
    color: white;
    font-weight: 500;
    padding: 0.5rem 0;
    text-decoration: none;
}

.landing-nav-lang--mobile {
    margin-top: 0.5rem;
}

.landing-nav-mobile-cta {
    background-color: white;
    color: var(--primary);
    padding: 0.5rem 1.5rem;
    font-weight: 600;
    text-align: center;
    width: 100%;
    margin-top: 0.5rem;
    text-decoration: none;
    display: inline-block;
    box-sizing: border-box;
}

@media (max-width: 1023px) {
    .landing-nav-desktop-links,
    .landing-nav-desktop-actions {
        display: none;
    }

    .landing-nav-mobile-btn-wrap {
        display: flex;
    }

    .landing-nav-mobile {
        display: flex;
    }

    .landing-nav-mobile.is-hidden {
        display: none;
    }
}

@media (max-width: 1024px) {
    .landing-nav {
        left: 0;
        right: 0;
        height: 3.5rem;
    }

    .landing-nav-inner {
        padding: 0 1rem;
    }

    .landing-nav-logo {
        height: 2.5rem;
        border-width: 2px;
    }
}

/* ============ COOKIE CONSENT ============ */
.cookie-consent {
    display: none;
    position: fixed;
    bottom: 0;
    left: 0;
    right: 0;
    background-color: #1a1a2e;
    color: white;
    padding: 1.2vw 3vw;
    align-items: center;
    justify-content: space-between;
    z-index: 9999;
    gap: 2vw;
    flex-wrap: wrap;
}

.cookie-consent-text {
    font-size: 0.95vw;
    margin: 0;
    flex: 1;
    min-width: 200px;
    line-height: 1.6;
}

.cookie-consent-link {
    color: #4da6e8;
    text-decoration: underline;
    margin-left: 0.5vw;
}

.cookie-consent-btn {
    background-color: #9b0818;
    color: white;
    border: none;
    padding: 0.6vw 2vw;
    font-size: 0.95vw;
    font-weight: 600;
    cursor: pointer;
    white-space: nowrap;
}

@media (max-width: 1024px) {
    .cookie-consent {
        padding: 0.9rem 1rem;
        gap: 0.75rem;
    }

    .cookie-consent-text {
        font-size: 0.85rem;
        line-height: 1.45;
    }

    .cookie-consent-link {
        margin-left: 0.25rem;
    }

    .cookie-consent-btn {
        padding: 0.6rem 1.25rem;
        font-size: 0.9rem;
        width: 100%;
    }
}

/* ============ TRAINING HERO (pre-existing 3-card section) ============ */
.training-hero-section {
    position: relative;
    width: 100vw;
    height: 100vh;
    overflow: hidden;
}

.training-hero-section .training-hero-stage {
    position: absolute;
    top: 0;
    left: 0;
    width: 1920px;
    height: 1080px;
    transform-origin: 0 0;
    transform: scale(var(--scale-x), var(--scale-y));
    container-type: inline-size;
}

.training-hero-bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
}

.training-hero-bg-img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.training-hero-content-img-wrapper {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    transform-origin: left center;
    transform: scale(calc(var(--scale-y) / var(--scale-x)), 1);
}

.training-hero-content-img {
    width: 100%;
    height: 100%;
    object-fit: fill;
}

.training-hero-btn {
    position: absolute;
    display: block;
    background: transparent;
    border: none;
    padding: 0;
    cursor: pointer;
    z-index: 1;
}


/*
 * traning-special.png (1652x936 tuval):
 *   gorunur icerik = x 73..1000, y 232..669  -> 927x437, SOLA yasli
 *   gorunur/tam genislik = 0.56114, soldaki pay 0.04419, ustteki pay 0.14044
 *   icerik 92vw olsun -> --tr-img-w = 92 / 0.56114 = 163.95vw
 * BG'de renkli dalga sagda/altta yogun; soldan kirpilinca metin beyaz zeminde kalir.
 * icerik ustten 21vw'ye konur, boylece bordo baslik 3.5rem'lik fixed nav'in altinda kalir.
 */
@media (max-width: 1024px) {
    .training-hero-section {
        --tr-img-w: 163.95vw;
        --tr-content-left: 4vw;
        --tr-content-top: 21vw;

        width: 100%;
        height: 95vw;
        aspect-ratio: auto;
        overflow: hidden;
    }

    .training-hero-section .training-hero-stage {
        position: absolute;
        inset: 0;
        width: 100%;
        height: 100%;
        transform: none;
        padding: 0;
        box-sizing: border-box;
    }

    .training-hero-bg {
        position: absolute;
        inset: 0;
    }

    .training-hero-bg-img {
        object-fit: cover;
        object-position: left bottom;
    }

    /* Olcu wrapper'a veriliyor; img width:100% kaliyor ki Tailwind'in
       img{max-width:100%} kurali degeri kirpmasin */
    .training-hero-content-img-wrapper {
        position: absolute;
        left: calc(var(--tr-content-left) - 0.04419 * var(--tr-img-w));
        top: calc(var(--tr-content-top) - 0.14044 * var(--tr-img-w));
        right: auto;
        bottom: auto;
        width: var(--tr-img-w);
        height: auto;
        transform: none;
    }

    .training-hero-content-img {
        display: block;
        width: 100%;
        height: auto;
        object-fit: contain;
    }
}

/* ============ THERAPIST PROFILE DETAIL PAGE (cqw stage) ============ */
.therapist-profile-page {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
}

.therapist-profile-page .therapist-profile-stage {
    position: relative;
    width: 100%;
    container-type: inline-size;
}

.therapist-profile-page .therapist-profile-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.therapist-profile-page .therapist-profile-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.therapist-profile-page .therapist-profile-content-outer {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 9cqw 0 5cqw 0;
    box-sizing: border-box;
}

.therapist-profile-page .therapist-profile-title-bar {
    background-color: #2a8fc8;
    width: min(133cqw, 147.25vh);
    height: min(4.20cqw, 4.63vh);
    box-sizing: border-box;
    padding: 0.5cqw 0;
    display: flex;
    align-items: center;
}

.therapist-profile-page .therapist-profile-title {
    font-size: min(2.78cqw, 3.07vh);
    font-weight: bold;
    color: white;
    line-height: 1;
    margin: 0;
    margin-left: 0;
}

.therapist-profile-page .therapist-profile-box {
    background-color: #eaf7ff;
    border: 0.15cqw solid #0f2670;
    border-top: none;
    width: min(133cqw, 147.25vh);
    min-height: min(53.79cqw, 59.24vh);
    padding: 3cqw 3cqw 4cqw 0;
    display: flex;
    box-sizing: border-box;
}

.therapist-profile-page .therapist-profile-left-col {
    flex-shrink: 0;
    width: min(29.89cqw, 32.19vh);
}

.therapist-profile-page .therapist-profile-photo-wrap {
    margin-left: min(4.13cqw, 4.55vh);
    width: 100%;
}

.therapist-profile-page .therapist-profile-photo {
    width: min(18cqw, 20vh);
    height: min(18cqw, 20vh);
    background-color: #e5e5e5;
    margin-bottom: 1.5cqw;
    clip-path: circle(50%);
    overflow: hidden;
}

.therapist-profile-page .therapist-profile-photo img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.therapist-profile-page .therapist-profile-section {
    margin-bottom: 1.5cqw;
    letter-spacing: -0.025 cqw;
}

.therapist-profile-page .therapist-profile-section:last-child {
    margin-bottom: 0;
}

.therapist-profile-page .therapist-profile-section-heading {
    font-size: min(2.12cqw, 2.31vh);
    color: #0f2670;
    background-color: #d8dfe3;
    padding-left: min(4.13cqw, 4.55vh);
    margin: 0 0 0.5cqw 0;
}

.therapist-profile-page .therapist-profile-section-list {
    list-style: disc outside;
    padding-left: min(4.13cqw, 4.55vh);
    margin: 0;
    margin-top: 0.5cqw;
    margin-left: 0.8cqw;
}

.therapist-profile-page .therapist-profile-section-item {
    font-size: min(1.42cqw, 1.52vh);
    line-height: 1;
    margin-bottom: 0.2cqw;
    color: #5f5f5f;
}

.therapist-profile-page .therapist-profile-divider {
    width: 0.15cqw;
    background-color: #9b0818;
    margin-left: 1cqw;
    margin-right: 1cqw;
    align-self: stretch;
    flex-shrink: 0;
}

.therapist-profile-page .therapist-profile-right-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.therapist-profile-page .therapist-profile-name-row {
    display: flex;
    justify-content: space-between;
    align-items: start;
    padding-bottom: 0.8cqw;
    margin-bottom: 1cqw;
    gap: 1cqw;
}

.therapist-profile-page .therapist-profile-name {
    font-size: min(2.78cqw, 3.07vh);
    font-weight: bold;
    color: #9b0818;
    margin: 0;
    line-height: 1;
    letter-spacing: -0.05em;
}

.therapist-profile-page .therapist-profile-request-btn {
    background-color: white;
    color: #9b0818;
    border: 0.15cqw solid #9b0818;
    width: min(21.7cqw, 23.8vh);
    height: min(3.5cqw, 3.7vh);
    box-sizing: border-box;
    font-size: min(2.2cqw, 2.2vh);
    line-height: 1.2;
    cursor: pointer;
    text-decoration: none;
    white-space: nowrap;
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.therapist-profile-page .therapist-profile-bio {
    font-size: min(1.42cqw, 1.52vh);
    line-height: 1.2;
    color: #2d2d2e;
}

.therapist-profile-page .therapist-profile-bio * {
    font-family: inherit !important;
    font-style: inherit !important;
    font-size: inherit !important;
}

/* ============ TRAINING DETAIL PAGE (cqw stage) ============ */
.training-detail-page {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
}

.training-detail-page .training-detail-stage {
    position: relative;
    width: 100%;
    container-type: inline-size;
}

.training-detail-page .training-detail-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.training-detail-page .training-detail-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.training-detail-page .training-detail-content-outer {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-height: 100vh;
    padding: 9cqw 0 5cqw 0;
    box-sizing: border-box;
}

.training-detail-page .training-detail-title-bar {
    background-color: #2a8fc8;
    width: min(93.71cqw, 103.2vh);
    height: min(4.42cqw, 4.87vh);
    box-sizing: border-box;
    padding: 0.5cqw 0;
    display: flex;
    align-items: center;
}

.training-detail-page .training-detail-title {
    font-size: min(2.42cqw, 2.67vh);
    font-weight: bold;
    color: white;
    line-height: 1.1;
    margin: 0;
    margin-left: 0;
    text-align: center;
    letter-spacing: -0.025em;
}

.training-detail-page .training-detail-box {
    background-color: #eaf7ff;
    border: 0.15cqw solid #0f2670;
    border-top: none;
    width: min(93.74cqw, 103.24vh);
    min-height: min(56.62cqw, 62.36vh);
    padding: 2cqw 3cqw 4cqw 0cqw;
    display: flex;
    box-sizing: border-box;
}

.training-detail-page .training-detail-left-col {
    flex-shrink: 0;
    width: min(23.26cqw, 25.62vh);
    display: flex;
    flex-direction: column;
}

.training-detail-page .training-detail-cover {
    width: min(13.62cqw, 15vh);
    height: min(13.62cqw, 15vh);
    background-color: #e5e5e5;
    margin-bottom: 1cqw;
    margin-left: min(4.13cqw, 4.55vh);
    overflow: hidden;
    display: flex;
    align-items: center;
    justify-content: center;
}

.training-detail-page .training-detail-cover img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    display: block;
}

.training-detail-page .training-detail-stats {
    margin-bottom: 1cqw;
}

.training-detail-page .training-detail-stat {
    font-size: 0.7cqw;
    color: #5f5f5f;
    margin: 0 0 0.2cqw 0;
}

.training-detail-page .training-detail-stat-value {
    color: #0f2670;
    font-weight: bold;
}

.training-detail-page .training-detail-cta {
    background-color: white;
    color: #9b0818;
    border: 0.15cqw solid #9b0818;
    width: 8cqw;
    height: min(2.72cqw, 3vh);
    box-sizing: border-box;
    font-size: 1cqw;
    text-decoration: none;
    cursor: pointer;
    margin-left: min(4.13cqw, 4.55vh);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.training-detail-page .training-detail-divider {
    width: 0.15cqw;
    background-color: #9b0818;
    margin-left: 1cqw;
    margin-right: 1cqw;
    align-self: stretch;
    flex-shrink: 0;
}

.training-detail-page .training-detail-right-col {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.training-detail-page .training-detail-description {
    margin-bottom: 1.2cqw;
    font-size: min(1.27cqw, 1.35vh);
    line-height: 1.2;
    letter-spacing: 0.01em;
    color: #2d2d2e;
}

.training-detail-page .training-detail-section {
    margin-top: 1cqw;
    margin-bottom: 1cqw;
}

.training-detail-page .training-detail-section-heading {
    font-size: min(1.81cqw, 1.97vh);
    font-weight: bold;
    color: #0f2670;
    background-color: #d8dfe3;
    padding: 0.3cqw;
    margin: 0 0 0.5cqw 0;
    padding-left: min(4.13cqw, 4.55vh);
}

.training-detail-page .training-detail-section-list {
    list-style: disc;
    padding-left: min(4.13cqw, 4.55vh);
    margin: 0;
}

.training-detail-page .training-detail-section-item {
    font-size: min(1.27cqw, 1.35vh);
    line-height: 1.3;
    margin-bottom: 0.2cqw;
    color: #5f5f5f;
}

/* ============ THERAPISTS LIST PAGE (cqw stage) ============ */
.therapists-list-page {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
}

.therapists-list-page .therapist-list-stage {
    position: relative;
    width: 100%;
    container-type: inline-size;
}

.therapists-list-page .therapist-list-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.therapists-list-page .therapist-list-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.therapists-list-page .therapist-list-content {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    padding: 7cqw 0 5cqw 0;
    box-sizing: border-box;
    overflow: auto;
    transform: scale(0.80);
    transform-origin: top center;
    margin-top: 1.5cqw;
}

.therapists-list-page .therapist-list-title {
    font-size: min(3.38cqw, 5.96vh);
    font-weight: bold;
    color: #0f2670;
    text-align: center;
    line-height: 1.4;
    letter-spacing: -0.05em;
}

.therapists-list-page .therapist-list-grid-outer {
    display: flex;
    justify-content: center;
}

.therapists-list-page .therapist-list-grid-wrapper {
    background-color: #daf2ff;
    width: min(111.55cqw, 196.89vh);
    box-sizing: border-box;
    padding: 2cqw;
    padding-top: 1cqw;
    /*padding-bottom: 1cqw;*/
    display: flex;
    justify-content: center;
    align-items: center;
}

.therapists-list-page .therapist-list-grid {
    display: grid;
    grid-template-columns: repeat(3, min(33.78cqw, 59.62vh));
    column-gap: min(0.92cqw, 1.23vh);
    row-gap: min(1.05cqw, 1.4vh);
}

.therapists-list-page .therapist-list-card {
    width: min(33.78cqw, 59.62vh);
    height: min(15.2cqw, 26.82vh);
    flex-shrink: 0;
    background-color: white;
    border: 0.15cqw solid #9b0818;
    padding: 0.5cqw 0.5cqw 1cqw;
}

.therapists-list-page .therapist-list-card-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5cqw;
    border-bottom: 0.2cqw solid #9b0818;
}

.therapists-list-page .therapist-list-card-name {
    font-size: min(1.61cqw, 2.85vh);
    font-weight: bold;
    color: #9b0818;
}

.therapists-list-page .therapist-list-card-prefix {
    font-size: min(1.03cqw, 1.80vh);
    font-weight: 900;
    color: #9b0818;
}

.therapists-list-page .therapist-list-card-body {
    display: flex;
    gap: 0.5cqw;
}

.therapists-list-page .therapist-list-card-left {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.therapists-list-page .therapist-list-card-photo {
    width: min(7.49cqw, 13.21vh);
    height: min(7.57cqw, 13.36vh);
    background-color: #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0.5cqw;
}

.therapists-list-page .therapist-list-card-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.therapists-list-page .therapist-list-card-btn {
    margin-top: 0.4cqw;
    background-color: #9b0818;
    color: white;
    font-size: min(1.03cqw, 1.80vh);
    cursor: pointer;
    width: min(7.49cqw, 13.21vh);
    height: min(1.2cqw, 1.8vh);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.therapists-list-page .therapist-list-card-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.therapists-list-page .therapist-list-card-expertise {
    font-size: min(0.89cqw, 1.58vh);
    color: #9b0818;
    font-weight: bold;
    margin-bottom: 0.8cqw;
    letter-spacing: -0.02em;
}

.therapists-list-page .therapist-list-card-spec {
    line-height: 1;
    font-size: min(0.89cqw, 1.58vh);
    margin-bottom: 0.3cqw;
    color: #5f5f5f;
}

/* ============ TRAININGS LIST PAGE (cqw stage) ============ */
.trainings-list-page {
    position: relative;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
}

.trainings-list-page .training-list-stage {
    position: relative;
    width: 100%;
    container-type: inline-size;
}

.trainings-list-page .training-list-bg {
    position: fixed;
    inset: 0;
    z-index: 0;
    pointer-events: none;
}

.trainings-list-page .training-list-bg-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.trainings-list-page .training-list-content {
    position: relative;
    z-index: 1;
    min-height: 100vh;
    padding: 7cqw 0 5cqw 0;
    box-sizing: border-box;
    transform: scale(0.9);
    transform-origin: top center;
    margin-top: 1.5cqw;
}

.trainings-list-page .training-list-title {
    font-size: min(3.38cqw, 5.96vh);
    font-weight: bold;
    color: #0f2670;
    text-align: center;
    line-height: 1.4;
    letter-spacing: -0.05em;
}

.trainings-list-page .training-list-empty {
    text-align: center;
    font-size: 1.2cqw;
    color: #9b0818;
}

.trainings-list-page .training-list-grid-outer {
    display: flex;
    justify-content: center;
}

.trainings-list-page .training-list-grid-wrapper {
    background-color: #daf2ff;
    width: min(72.88cqw, 128.63vh);
    box-sizing: border-box;
    padding: 2cqw;
    padding-top: 1cqw;
    display: inline-block;
}

.trainings-list-page .training-list-grid {
    display: grid;
    grid-template-columns: repeat(3, min(22.07cqw, 38.95vh));
    column-gap: min(0.92cqw, 1.23vh);
    row-gap: min(1.05cqw, 1.4vh);
}

/* ============ TRAINING LIST CARD (independent from therapist card) ============ */
.training-list-card {
    width: min(22.07cqw, 38.95vh);
    flex-shrink: 0;
    background-color: white;
    border: 0.15cqw solid #9b0818;
    padding: 0.5cqw 0.5cqw 1cqw;
}

.training-list-card-header {
    display: flex;
    justify-content: space-between;
    align-items: baseline;
    margin-bottom: 0.5cqw;
    border-bottom: 0.2cqw solid #9b0818;
}

.training-list-card-name {
    font-size: min(1.33cqw, 2.35vh);
    font-weight: bold;
    color: #9b0818;
}

.training-list-card-body {
    display: flex;
    gap: 1cqw;
}

.training-list-card-left {
    display: flex;
    flex-direction: column;
    flex-shrink: 0;
}

.training-list-card-photo {
    width: min(7.49cqw, 13.21vh);
    height: min(7.57cqw, 13.36vh);
    background-color: #e5e5e5;
    display: flex;
    align-items: center;
    justify-content: center;
    overflow: hidden;
    margin-top: 0.5cqw;
}

.training-list-card-photo-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.training-list-card-btn {
    margin-top: 0.8cqw;
    background-color: #9b0818;
    color: white;
    font-size: min(0.85cqw, 1.49vh);
    cursor: pointer;
    width: min(7.49cqw, 13.21vh);
    height: min(1.2cqw, 1.85vh);
    text-align: center;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
}

.training-list-card-right {
    flex: 1;
    display: flex;
    flex-direction: column;
    min-width: 0;
}

.training-list-card-desc {
    font-size: min(0.74cqw, 1.31vh);
    line-height: 1.2;
    color: #5f5f5f;
    margin: 0 0 0.5cqw 0;
    display: -webkit-box;
    -webkit-line-clamp: 4;
    -webkit-box-orient: vertical;
    overflow: hidden;
}

.training-list-card-desc * {
    all: unset !important;
    display: revert !important;
}

.training-list-card-meta {
    font-size: min(0.74cqw, 1.31vh);
    color: #9b0818;
    font-weight: bold;
    margin: auto 0 0 0;
    letter-spacing: -0.05em;
}

@media (max-width: 1024px) {
    .training-list-card {
        width: 100%;
        height: auto;
        padding: 0.75rem;
        border-width: 2px;
    }

    .training-list-card-header {
        margin-bottom: 0.5rem;
        border-bottom-width: 2px;
    }

    .training-list-card-name {
        font-size: 1rem;
    }

    .training-list-card-body {
        gap: 0.75rem;
    }

    .training-list-card-photo {
        width: 6rem;
        height: 6rem;
        margin-top: 0.25rem;
    }

    .training-list-card-btn {
        width: auto;
        min-width: 6rem;
        height: auto;
        font-size: 0.75rem;
        padding: 0.35rem 0.6rem;
        margin-top: 0.5rem;
        white-space: nowrap;
    }

    .training-list-card-desc {
        font-size: 0.85rem;
        line-height: 1.35;
        margin-bottom: 0.4rem;
        -webkit-line-clamp: 3;
    }

    .training-list-card-meta {
        font-size: 0.8rem;
    }
}

/* ============ MOBILE: THERAPISTS + TRAININGS LIST/DETAIL PAGES ============ */
@media (max-width: 1024px) {
    /* ---- Therapists list page (/tr/therapists) ---- */
    .therapists-list-page .therapist-list-content {
        padding: 4.5rem 1rem 2rem !important;
        transform: none !important;
        margin-top: 0 !important;
    }

    .therapists-list-page .therapist-list-title {
        font-size: 1.5rem !important;
        margin-bottom: 1.25rem !important;
        padding: 0 1rem !important;
    }

    .therapists-list-page .therapist-list-grid-outer {
        padding: 0 0.75rem !important;
    }

    .therapists-list-page .therapist-list-grid-wrapper {
        padding: 0.75rem !important;
        display: block !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .therapists-list-page .therapist-list-grid {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
    }

    /* Kart icerigi: cqw birimlerini ezerek mobil-uyumlu rem degerlerine cevir */
    .therapists-list-page .therapist-list-card {
        width: 100% !important;
        height: auto !important;
        padding: 0.75rem !important;
        border-width: 2px !important;
        box-sizing: border-box !important;
    }

    .therapists-list-page .therapist-list-card-header {
        margin-bottom: 0.5rem !important;
        border-bottom-width: 2px !important;
    }

    .therapists-list-page .therapist-list-card-name {
        font-size: 1rem !important;
    }

    .therapists-list-page .therapist-list-card-prefix {
        font-size: 0.75rem !important;
    }

    .therapists-list-page .therapist-list-card-body {
        gap: 0.75rem !important;
    }

    .therapists-list-page .therapist-list-card-photo {
        width: 4.5rem !important;
        height: 4.5rem !important;
        margin-top: 0.25rem !important;
    }

    .therapists-list-page .therapist-list-card-btn {
        width: auto !important;
        min-width: 4.5rem !important;
        height: auto !important;
        margin-top: 0.5rem !important;
        font-size: 0.7rem !important;
        padding: 0.3rem 0.6rem !important;
        white-space: nowrap !important;
    }

    .therapists-list-page .therapist-list-card-expertise {
        font-size: 0.75rem !important;
        margin-bottom: 0.4rem !important;
    }

    .therapists-list-page .therapist-list-card-spec {
        font-size: 0.75rem !important;
        line-height: 1.2 !important;
        margin-bottom: 0.2rem !important;
    }
}

@media (max-width: 480px) {
    .therapists-list-page .therapist-list-content {
        padding: 4rem 0.5rem 2rem !important;
    }

    .therapists-list-page .therapist-list-title {
        font-size: 1.2rem !important;
    }

    .therapists-list-page .therapist-list-grid-wrapper {
        padding: 0.5rem !important;
    }

    .therapists-list-page .therapist-list-card-name {
        font-size: 0.95rem !important;
    }

    .therapists-list-page .therapist-list-card-photo {
        width: 4rem !important;
        height: 4rem !important;
    }

    .therapists-list-page .therapist-list-card-btn {
        min-width: 4rem !important;
        font-size: 0.65rem !important;
        padding: 0.25rem 0.5rem !important;
    }

    .therapists-list-page .therapist-list-card-expertise,
    .therapists-list-page .therapist-list-card-spec {
        font-size: 0.7rem !important;
    }
}

@media (max-width: 1024px) {

    /* ---- Trainings list page (/tr/trainings) ---- */
    .trainings-list-page .training-list-content {
        padding: 4.5rem 0.5rem 2rem !important;
    }

    .trainings-list-page .training-list-title {
        font-size: 1.5rem !important;
        margin-bottom: 1.25rem !important;
        padding: 0 1rem !important;
    }

    .trainings-list-page .training-list-empty {
        font-size: 0.95rem !important;
        padding: 0 1rem !important;
    }

    .trainings-list-page .training-list-grid-outer {
        padding: 0 0.25rem !important;
    }

    .trainings-list-page .training-list-grid-wrapper {
        padding: 0.5rem !important;
        display: block !important;
        width: 100% !important;
        box-sizing: border-box !important;
    }

    .trainings-list-page .training-list-grid {
        grid-template-columns: 1fr !important;
        gap: 0.75rem !important;
    }

    /* ---- Shared detail pages (/tr/therapists/{uuid}, /tr/trainings/{id}) ---- */
    .therapist-profile-page,
    .training-detail-page {
        min-height: auto !important;
        height: auto !important;
        overflow: visible !important;
    }

    .therapist-profile-page .therapist-profile-stage,
    .training-detail-page .training-detail-stage {
        position: relative !important;
        top: auto !important;
        left: auto !important;
        width: 100% !important;
        height: auto !important;
        transform: none !important;
        container-type: normal !important;
    }

    .therapist-profile-page .therapist-profile-bg,
    .training-detail-page .training-detail-bg {
        position: fixed !important;
    }

    .therapist-profile-page .therapist-profile-content-outer,
    .training-detail-page .training-detail-content-outer {
        position: relative !important;
        inset: auto !important;
        min-height: 0 !important;
        justify-content: flex-start !important;
        padding: 4.5rem 1rem 2rem !important;
        box-sizing: border-box !important;
    }

    .therapist-profile-page .therapist-profile-title-bar,
    .training-detail-page .training-detail-title-bar {
        width: 100% !important;
        height: auto !important;
        min-height: 3rem !important;
        padding: 0.5rem 0.75rem !important;
    }

    .therapist-profile-page .therapist-profile-title,
    .training-detail-page .training-detail-title {
        font-size: 1.3rem !important;
        line-height: 1.3 !important;
        padding: 0 !important;
        letter-spacing: 0 !important;
    }

    .therapist-profile-page .therapist-profile-box,
    .training-detail-page .training-detail-box {
        width: 100% !important;
        padding: 1rem !important;
        flex-direction: column !important;
        box-sizing: border-box !important;
        border-width: 1px !important;
    }

    .therapist-profile-page .therapist-profile-left-col,
    .training-detail-page .training-detail-left-col {
        width: 100% !important;
    }

    .therapist-profile-page .therapist-profile-divider,
    .training-detail-page .training-detail-divider {
        width: 100% !important;
        height: 1px !important;
        margin: 1rem 0 !important;
        align-self: auto !important;
    }

    .therapist-profile-page .therapist-profile-right-col,
    .training-detail-page .training-detail-right-col {
        flex: 1 !important;
    }

    /* ---- Therapist profile specific ---- */
    .therapist-profile-page .therapist-profile-photo {
        width: 7rem !important;
        height: 7rem !important;
        margin-bottom: 1rem !important;
    }

    .therapist-profile-page .therapist-profile-section {
        margin-bottom: 1rem !important;
    }

    .therapist-profile-page .therapist-profile-section-heading {
        font-size: 0.95rem !important;
        padding: 0.2rem !important;
        margin-bottom: 0.4rem !important;
    }

    .therapist-profile-page .therapist-profile-section-list {
        padding-left: 1.1rem !important;
    }

    .therapist-profile-page .therapist-profile-section-item {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
        margin-bottom: 0.25rem !important;
    }

    .therapist-profile-page .therapist-profile-name-row {
        flex-direction: column !important;
        align-items: flex-start !important;
        gap: 0.6rem !important;
        padding-bottom: 0.6rem !important;
        margin-bottom: 0.75rem !important;
    }

    .therapist-profile-page .therapist-profile-name {
        font-size: 1.1rem !important;
    }

    .therapist-profile-page .therapist-profile-request-btn {
        width: auto !important;
        height: auto !important;
        font-size: 0.9rem !important;
        padding: 0.5rem 1rem !important;
        border-width: 2px !important;
        white-space: normal !important;
        text-align: center !important;
        align-self: stretch !important;
    }

    .therapist-profile-page .therapist-profile-bio {
        font-size: 0.9rem !important;
        line-height: 1.5 !important;
    }

    /* ---- Training detail specific ---- */
    .training-detail-page .training-detail-cover {
        width: 100% !important;
        max-width: 22rem !important;
        height: auto !important;
        aspect-ratio: 16 / 9 !important;
        margin: 0 auto 0.75rem !important;
        background-color: transparent !important;
    }

    .training-detail-page .training-detail-cover img {
        object-fit: contain !important;
    }

    .training-detail-page .training-detail-stats {
        margin-bottom: 0.75rem !important;
    }

    .training-detail-page .training-detail-stat {
        font-size: 0.9rem !important;
        margin-bottom: 0.2rem !important;
    }

    .training-detail-page .training-detail-cta {
        width: 100% !important;
        height: auto !important;
        font-size: 0.95rem !important;
        padding: 0.6rem 1rem !important;
        margin: 0 !important;
        border-width: 2px !important;
        box-sizing: border-box !important;
        white-space: normal !important;
        text-align: center !important;
    }

    .training-detail-page .training-detail-description {
        font-size: 0.9rem !important;
        margin-bottom: 1rem !important;
    }

    .training-detail-page .training-detail-section {
        margin-top: 1rem !important;
        margin-bottom: 1rem !important;
    }

    .training-detail-page .training-detail-section-heading {
        font-size: 1rem !important;
        padding: 0.45rem !important;
        margin-bottom: 0.5rem !important;
    }

    .training-detail-page .training-detail-section-list {
        padding-left: 1.1rem !important;
    }

    .training-detail-page .training-detail-section-item {
        font-size: 0.85rem !important;
        line-height: 1.4 !important;
        margin-bottom: 0.25rem !important;
    }
}

