/* TRUEMED - Innovation Kısmı */
.trumed-innovation{
    --height:420px;
    display:flex;
    width:100%;
    height:var(--height);
    overflow:hidden;
    background:#000;
    isolation:isolate;
}

.trumed-innovation-panel{
    position:relative;
    flex:1 1 0;
    overflow:hidden;
    transition:flex .45s ease;
}

.trumed-innovation-panel.left{
    clip-path:polygon(0 0,86% 0,100% 100%,0 100%);
    margin-right:-4.5%;
    z-index:1;
}

.trumed-innovation-panel.center{
    clip-path:polygon(0 0,86% 0,100% 100%,14% 100%);
    margin-left:-2.25%;
    margin-right:-2.25%;
    flex:1.15 1 0;
    z-index:2;
}

.trumed-innovation-panel.right{
    clip-path:polygon(0 0,100% 0,100% 100%,14% 100%);
    margin-left:-4.5%;
    z-index:1;
}

.panel-bg{
    position:absolute;
    inset:0;
    background-image:var(--bg);
    background-size:cover;
    background-position:center;
    transform:scale(1.02);
    filter:saturate(75%) contrast(90%);
    transition:transform .6s ease;
}

.panel-shade{
    position:absolute;
    inset:0;
    background:rgba(20,25,30,.68);
    z-index:1;
    transition:background .35s ease;
}

.panel-content,
.panel-hover{
    position:absolute;
    inset:0;
    z-index:2;
    display:flex;
    flex-direction:column;
    align-items:center;
    justify-content:center;
    text-align:center;
    color:#fff;
    padding:30px;
}

.panel-content h2{
    margin:0 0 14px;
    font-size:45px;
    font-weight:800;
    color:#fff;
}

.panel-content p{
    margin:0;
    font-size:16px;
    font-weight:600;
    line-height:1.35;
    color:#fff;
}

.panel-hover{
    opacity:0;
    transform:translateY(18px);
    transition:all .35s ease;
}

.panel-hover h3{
    margin:0;
    font-size:22px;
    font-weight:800;
    color:#fff;
}

.trumed-innovation:hover .trumed-innovation-panel{
    flex:.92 1 0;
}

.trumed-innovation-panel:hover{
    flex:1.35 1 0;
    z-index:5;
}

.trumed-innovation-panel:hover .panel-bg{
    transform:scale(1.08);
}

.trumed-innovation-panel:hover .panel-shade{
    background:rgba(0,0,0,.22);
}

.trumed-innovation:hover .panel-content{
    opacity:0;
    transform:translateY(-10px);
}

.trumed-innovation-panel:hover .panel-hover{
    opacity:1;
    transform:translateY(0);
}

/* Mobil */
@media(max-width:767px){
    .trumed-innovation{
        display:grid;
        grid-auto-flow:column;
        grid-auto-columns:84%;
        gap:14px;
        height:auto;
        overflow-x:auto;
        padding:0 8% 8px;
        scroll-snap-type:x mandatory;
    }

    .trumed-innovation-panel{
        height:320px;
        clip-path:none !important;
        margin:0 !important;
        border-radius:20px;
        scroll-snap-align:center;
        flex:none !important;
    }

    .panel-hover{
        display:none;
    }

    .panel-content h2{
        font-size:34px;
    }

    .panel-content p{
        font-size:15px;
    }
}




/* ========================================
   TRUEMED - ABOUT SECTION
======================================== */

.trumed-about-intro{
    position:relative;
    padding:80px 20px;
    background:transparent;
}

.trumed-about-intro-inner{
    max-width:1100px;
    margin:0 auto;
}

.trumed-about-title{
    margin-bottom:16px;
}

.trumed-about-title h2{
    margin:0;
    text-align:center;
    font-size:30px;
    line-height:1.15;
    font-weight:800;
    color:#101820;
}

.trumed-about-subtitle{
    max-width:760px;
    margin:0 auto 28px;
}

.trumed-about-subtitle p{
    margin:0;
    text-align:center;
    font-size:18px;
    line-height:1.45;
    font-weight:700;
    color:#3E99AD;
}

.trumed-about-text{
    width:100%;
    max-width:100%;
    margin:0;
}

.trumed-about-text p{
    margin-bottom:22px;
    font-size:16px;
    line-height:1.75;
    text-align:left;
    color:#181d24;
    font-weight:500;
}

.trumed-about-note{
    margin-top:42px;
    padding:26px 30px;
    border-radius:22px;
    background:rgba(255,255,255,.55);
    border:1px solid rgba(108,188,207,.24);
    backdrop-filter:blur(22px);
    -webkit-backdrop-filter:blur(22px);
    box-shadow:
        0 10px 28px rgba(62,153,173,.10),
        0 0 18px rgba(108,188,207,.08);
}

.trumed-about-note p{
    margin-bottom:15px;
    font-size:15px;
    line-height:1.75;
    color:#4B5563;
}

.trumed-about-note h2,
.trumed-about-note h3,
.trumed-about-note h4{
    margin:12px 0 0;
    font-size:18px;
    line-height:1.4;
    font-weight:800;
    color:#101820;
}

/* Mobile */

@media(max-width:767px){

    .trumed-about-intro{
        padding:56px 18px;
    }

    .trumed-about-title h2{
        font-size:30px;
    }

    .trumed-about-subtitle{
        margin-bottom:24px;
    }

    .trumed-about-subtitle p{
        font-size:16px;
    }

    .trumed-about-text p{
        font-size:16px;
        line-height:1.7;
        margin-bottom:18px;
    }

    .trumed-about-note{
        margin-top:30px;
        padding:22px;
        border-radius:18px;
    }

    .trumed-about-note p{
        font-size:15px;
        line-height:1.7;
    }

    .trumed-about-note h2,
    .trumed-about-note h3,
    .trumed-about-note h4{
        font-size:17px;
    }

}




/* ========================================
   TRUEMED - CATALOG SECTION
======================================== */

.trumed-catalog-section{
    position:relative;
    padding:80px 20px 90px;
    background:transparent;
}

.trumed-catalog-inner{
    max-width:1180px;
    margin:0 auto;
    display:grid;
    grid-template-columns:1.05fr .95fr;
    align-items:center;
    gap:36px;
}

.trumed-catalog-visual{
    display:flex;
    align-items:center;
    justify-content:center;
}

.trumed-catalog-visual img{
    width:100%;
    max-width:460px;
    display:block;
    border-radius:0;
}

.trumed-catalog-content{
    max-width:560px;
}

.trumed-catalog-title{
    margin-bottom:20px;
}

.trumed-catalog-title h2,
.trumed-catalog-title h3{
    margin:0;
    font-size:30px;
    line-height:1.15;
    font-weight:800;
    color:#101820;
}

.trumed-catalog-lead{
    max-width:520px;
    margin-bottom:24px;
}

.trumed-catalog-lead,
.trumed-catalog-lead *{
    font-weight:800 !important;
}

.trumed-catalog-lead p{
    margin:0;
    font-size:18px;
    line-height:1.45;
    color:#1F2937;
}

.trumed-catalog-text{
    max-width:540px;
    margin-bottom:26px;
}

.trumed-catalog-text p{
    margin:0;
    font-size:16px;
    line-height:1.75;
    font-weight:500;
    color:#4B5563;
}

.trumed-catalog-button .elementor-button{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    padding:12px 22px;
    border-radius:8px;
    background:linear-gradient(135deg, #6CBCCF 0%, #3E99AD 100%);
    color:#fff;
    font-size:15px;
    font-weight:700;
    line-height:1;
    border:1px solid rgba(255,255,255,.18);
    box-shadow:0 10px 24px rgba(62,153,173,.20);
    transition:all .25s ease;
}

.trumed-catalog-button .elementor-button:hover{
    background:linear-gradient(135deg, #3E99AD 0%, #2D869A 100%);
    transform:translateY(-2px);
    box-shadow:0 14px 30px rgba(62,153,173,.30);
}

.trumed-catalog-button .elementor-button-icon{
    font-size:15px;
}

/* Mobile */

@media(max-width:767px){

    .trumed-catalog-section{
        padding:60px 18px 70px;
    }

    .trumed-catalog-inner{
        grid-template-columns:1fr;
        gap:34px;
    }

    .trumed-catalog-visual img{
        max-width:100%;
    }

    .trumed-catalog-content{
        max-width:100%;
    }

    .trumed-catalog-title h2,
    .trumed-catalog-title h3{
        font-size:28px;
    }

    .trumed-catalog-lead{
        margin-bottom:20px;
    }

    .trumed-catalog-lead p{
        font-size:17px;
        line-height:1.45;
    }

    .trumed-catalog-text{
        margin-bottom:24px;
    }

    .trumed-catalog-text p{
        font-size:15px;
        line-height:1.7;
    }

}




/* ========================================
   TRUEMED - STORY STICKY SECTION
======================================== */

.trumed-story-section{
    position:relative;
    padding:90px 20px 160px;
    background:transparent;
    overflow:visible !important;
}

.trumed-story-inner{
    max-width:1180px;
    margin:0 auto;
    display:grid;
    grid-template-columns:.95fr 1.05fr;
    gap:70px;
    align-items:start;
    overflow:visible !important;
}

.trumed-story-left{
    align-self:flex-start;
    z-index:2;
}

.trumed-story-eyebrow{
    margin-bottom:10px;
    font-size:12px;
    font-weight:700;
    letter-spacing:.20em;
    color:#3E99AD;
    text-transform:uppercase;
}

.trumed-story-title h2,
.trumed-story-title h3{
    margin:0 0 14px;
    font-size:22px;
    line-height:1.08;
    font-weight:800;
    color:#3B414A;
}

.trumed-story-desc p{
    margin:0 0 18px;
    font-size:20px;
    line-height:1.22;
    font-weight:400;
    color:#444B54;
}

.trumed-story-badges{
    display:grid;
    grid-template-columns:repeat(2, max-content);
    gap:12px 14px;
    align-items:center;
}

.trumed-story-badge{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    min-height:42px;
    padding:9px 16px;
    border-radius:999px;
    background:rgba(255,255,255,.65);
    border:1px solid rgba(16,24,32,.10);
    box-shadow:0 10px 24px rgba(16,24,32,.05);
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);
}

.trumed-story-badge:nth-child(3),
.trumed-story-badge:nth-child(4){
    background:rgba(108,188,207,.15);
    border-color:rgba(62,153,173,.28);
}

.trumed-story-badge h2,
.trumed-story-badge h3,
.trumed-story-badge h4,
.trumed-story-badge p{
    margin:0;
    font-size:16px;
    line-height:1.2;
    font-weight:700;
    color:#2B3440;
}

.trumed-story-right{
    display:flex;
    flex-direction:column;
    gap:24px;
}

.trumed-story-card{
    position:relative;
    padding:28px 30px;
    border-radius:24px;
    background:rgba(255,255,255,.72);
    border:1px solid rgba(16,24,32,.08);
    box-shadow:0 16px 38px rgba(16,24,32,.06);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    overflow:hidden;
}

.trumed-story-card-label{
    margin-bottom:10px;
    font-size:12px;
    line-height:1.2;
    letter-spacing:.12em;
    font-weight:800;
    color:#339999;
    text-transform:uppercase;
}

.trumed-story-card-title h3,
.trumed-story-card-title h4{
    margin:0 0 10px;
    font-size:22px;
    line-height:1.3;
    font-weight:800;
    color:#111827;
}

.trumed-story-card-text p{
    margin:0;
    font-size:16px;
    line-height:1.65;
    font-weight:500;
    color:#374151;
}

.trumed-story-card-more{
    max-height:0;
    overflow:hidden;
    opacity:0;
    transition:max-height .35s ease, opacity .25s ease, margin-top .25s ease;
}

.trumed-story-card-more p{
    margin:0;
    font-size:16px;
    line-height:1.65;
    font-weight:500;
    color:#374151;
}

.trumed-story-card.is-open .trumed-story-card-more{
    max-height:240px;
    opacity:1;
    margin-top:14px;
}

.trumed-story-readmore{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:8px;
    width:auto;
    max-width:max-content;
    margin-top:14px;
    padding:8px 16px;
    border-radius:999px;
    border:1px solid rgba(16,24,32,.12);
    background:rgba(255,255,255,.78);
    color:#374151;
    font-size:14px;
    line-height:1;
    font-weight:500;
    cursor:pointer;
    transition:all .25s ease;
    text-transform:none !important;
    letter-spacing:normal !important;
}

.trumed-story-readmore span{
    text-transform:none !important;
    letter-spacing:normal !important;
}

.trumed-story-readmore:hover{
    border-color:rgba(62,153,173,.32);
    color:#3E99AD;
    background:#fff;
}

.trumed-story-readmore svg{
    width:14px;
    height:14px;
    display:block;
    flex-shrink:0;
    transition:transform .25s ease;
}

.trumed-story-card.is-open .trumed-story-readmore svg{
    transform:rotate(180deg);
}

/* Mobile */

@media(max-width:991px){

    .trumed-story-inner{
        grid-template-columns:1fr;
        gap:40px;
    }

    .trumed-story-left{
        position:relative !important;
        top:auto !important;
    }

}

@media(max-width:767px){

    .trumed-story-section{
        padding:65px 18px 90px;
    }

    .trumed-story-title h2,
    .trumed-story-title h3{
        font-size:28px;
    }

    .trumed-story-desc p{
        font-size:15px;
        line-height:1.55;
    }

    .trumed-story-badges{
        grid-template-columns:1fr 1fr;
        gap:10px;
    }

    .trumed-story-badge{
        min-height:40px;
        padding:8px 12px;
    }

    .trumed-story-badge h2,
    .trumed-story-badge h3,
    .trumed-story-badge h4,
    .trumed-story-badge p{
        font-size:14px;
    }

    .trumed-story-card{
        padding:24px 22px;
        border-radius:20px;
    }

}




/* ========================================
   TRUEMED - STORY TIMELINE
======================================== */

.trumed-story-timeline{
    width:100%;
    overflow-x:auto;
    overflow-y:hidden;
    -webkit-overflow-scrolling:touch;
    padding:8px 0 14px;
    margin-top:6px;
    scrollbar-width:thin;
    scrollbar-color:rgba(16,24,32,.20) transparent;
}

.trumed-story-timeline::-webkit-scrollbar{
    height:6px;
}

.trumed-story-timeline::-webkit-scrollbar-track{
    background:rgba(16,24,32,.08);
    border-radius:999px;
}

.trumed-story-timeline::-webkit-scrollbar-thumb{
    background:rgba(16,24,32,.24);
    border-radius:999px;
}

.trumed-story-timeline-track{
    display:flex;
    gap:14px;
    min-width:max-content;
}

.trumed-timeline-card{
    width:390px;
    height:160px;
    flex:0 0 390px;
    padding:16px 22px;
    border-radius:22px;
    background:rgba(255,255,255,.72);
    border:1px solid rgba(16,24,32,.06);
    box-shadow:0 14px 32px rgba(16,24,32,.05);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    overflow:hidden;
}

.trumed-timeline-head{
    display:flex;
    align-items:flex-start;
    justify-content:space-between;
    gap:18px;
    margin-bottom:2px;
}

.trumed-timeline-title h2,
.trumed-timeline-title h3,
.trumed-timeline-title h4{
    margin:0;
    font-size:18px;
    line-height:1.2;
    font-weight:800;
    color:#2B3440;
}

.trumed-timeline-year h2,
.trumed-timeline-year h3,
.trumed-timeline-year h4{
    margin:0;
    font-size:16px;
    line-height:1.35;
    font-weight:800;
    color:#339999;
    white-space:nowrap;
}

.trumed-timeline-text p{
    margin:0;
    max-width:330px;
    font-size:16px;
    line-height:1.35;
    font-weight:400;
    color:#111827;
}

/* Mobile */

@media(max-width:767px){

    .trumed-timeline-card{
        width:86vw;
        flex-basis:86vw;
        height:165px;
        padding:22px;
        border-radius:20px;
    }

    .trumed-timeline-title h2,
    .trumed-timeline-title h3,
    .trumed-timeline-title h4{
        font-size:17px;
    }

    .trumed-timeline-year h2,
    .trumed-timeline-year h3,
    .trumed-timeline-year h4{
        font-size:15px;
    }

    .trumed-timeline-text p{
        font-size:15px;
    }

}