/* ============================================================
   ÜNİTERCİH 360 — Anasayfa stilleri
   ============================================================ */

/* ---------- Bölüm genel ---------- */
.section { padding: 5.5rem 0; }
.section--alt { background: var(--ink-50); }
.section__head { max-width: 720px; margin: 0 auto 3rem; text-align: center; }
.section__title { font-size: clamp(1.6rem, 3.5vw, 2.4rem); }
.section__sub { color: var(--ink-500); font-size: 1.05rem; margin: 0; }

.grid { display: grid; gap: 1.25rem; }
.grid--3 { grid-template-columns: repeat(3, 1fr); }
.grid--4 { grid-template-columns: repeat(4, 1fr); }
.grid--5 { grid-template-columns: repeat(5, 1fr); }
.grid--modules { grid-template-columns: repeat(4, 1fr); }

/* Görsel sarmalayıcı */
.media { border-radius: var(--radius-lg); overflow: hidden; box-shadow: var(--shadow-lg); position: relative; }
.media img { width: 100%; height: 100%; object-fit: cover; }

/* ============================================================
   HERO SLIDER — Tercih dönemi
   ============================================================ */
.tslider { position: relative; background: var(--brand-800); --tslider-autoplay: 6.5s; }
.tslider__viewport {
    position: relative;
    height: clamp(500px, 70vh, 680px);
    overflow: hidden;
}

/* Slaytlar — crossfade */
.tslide {
    position: absolute; inset: 0;
    opacity: 0; visibility: hidden;
    transition: opacity .8s ease, visibility .8s ease;
    display: flex; align-items: center;
}
.tslide.is-active { opacity: 1; visibility: visible; z-index: 1; }

.tslide__bg { position: absolute; inset: 0; z-index: 0; overflow: hidden; }
.tslide__bg img {
    width: 100%; height: 100%; object-fit: cover; object-position: center;
    transform: scale(1.06);
    transition: transform 7s ease-out;
    filter: brightness(1.08) saturate(1.04);
}
.tslide.is-active .tslide__bg img { transform: scale(1); }
/* Video zaten hareketli — Ken Burns uygulanmaz */
.tslide__bg video {
    width: 100%; height: 100%; object-fit: cover; object-position: center;
    filter: brightness(1.08) saturate(1.04);
}

/* Örtü: sağda görsel görünür kalır, solda düz lacivert diyagonal panel */
.tslide__veil {
    position: absolute; inset: 0;
    background: rgba(15, 20, 36, .22);
}
.tslide__veil::before {
    content: ""; position: absolute; inset: 0;
    background: rgba(13, 18, 34, .58);
    clip-path: polygon(0 0, 58% 0, 42% 100%, 0 100%);
}
.tslide__veil::after {
    content: ""; position: absolute; inset: 0;
    background: var(--accent-500);
    clip-path: polygon(58% 0, 58.45% 0, 42.45% 100%, 42% 100%);
}

.tslide__inner {
    position: relative; z-index: 1; width: 100%;
    display: grid; grid-template-columns: minmax(0, 1fr) auto;
    gap: clamp(1.5rem, 4vw, 3.5rem); align-items: center;
    padding-bottom: 3.25rem;
}
.tslide__content { max-width: 600px; color: #fff; }

/* İçerik giriş animasyonu (aktif slaytta) */
.tslide__eyebrow,
.tslide__title,
.tslide__text,
.tslide__actions {
    opacity: 0; transform: translateY(18px);
}
.tslide.is-active .tslide__eyebrow { animation: tslide-in .6s .10s forwards; }
.tslide.is-active .tslide__title   { animation: tslide-in .6s .20s forwards; }
.tslide.is-active .tslide__text    { animation: tslide-in .6s .32s forwards; }
.tslide.is-active .tslide__actions { animation: tslide-in .6s .44s forwards; }
@keyframes tslide-in { to { opacity: 1; transform: translateY(0); } }

.tslide__eyebrow {
    display: inline-flex; align-items: center; gap: .45rem;
    padding: .4rem .85rem; border-radius: 999px;
    background: rgba(255,255,255,.14); border: 1px solid rgba(255,255,255,.22);
    backdrop-filter: blur(6px);
    color: #fff; font-size: .82rem; font-weight: 700; letter-spacing: .01em;
    margin-bottom: 1.1rem;
}
.tslide__eyebrow .icon { color: var(--accent-300); }
.tslide__title {
    font-size: clamp(2rem, 4.4vw, 3.2rem); line-height: 1.08; letter-spacing: -.02em;
    color: #fff; margin: 0 0 1rem; font-weight: 800;
}
.tslide__title em { font-style: normal; color: var(--accent-400); }
.tslide__text { font-size: clamp(1rem, 1.5vw, 1.14rem); line-height: 1.6; color: rgba(226,232,244,.92); max-width: 52ch; margin: 0 0 1.75rem; }
.tslide__actions { display: flex; flex-wrap: wrap; gap: .8rem; align-items: center; }

/* Sağ panel — yüzen bilgi kartları */
.tslide__panel {
    width: min(400px, 100%);
    display: flex; flex-direction: column; gap: 1rem;
    justify-self: end;
}
.tslide__badge {
    align-self: flex-end;
    display: flex; align-items: baseline; gap: .55rem;
    margin: 0 .5rem 0 0; padding: .65rem 1.15rem;
    background: var(--accent-500); color: #fff; border-radius: 14px;
    box-shadow: 0 14px 30px -12px rgba(225, 29, 47, .65);
    opacity: 0; transform: translateY(-14px) scale(.94);
}
.tslide.is-active .tslide__badge { animation: tslide-pop .55s .40s forwards; }
@keyframes tslide-pop { to { opacity: 1; transform: translateY(0) scale(1); } }
.tslide__badge-value { font-size: 1.45rem; font-weight: 800; letter-spacing: -.02em; }
.tslide__badge-label { font-size: .84rem; font-weight: 600; opacity: .92; }

.tslide__cards { list-style: none; margin: 0; padding: 0; display: flex; flex-direction: column; gap: .8rem; }
.tslide__card {
    display: flex; align-items: center; gap: .9rem;
    padding: .9rem 1.05rem; border-radius: 15px;
    background: rgba(255, 255, 255, .14);
    border: 1px solid rgba(255, 255, 255, .28);
    backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
    color: #fff;
    opacity: 0; transform: translateX(34px);
}
.tslide__card:nth-child(1) { margin-right: 2.4rem; }
.tslide__card:nth-child(2) { margin-left: 2.4rem; }
.tslide__card:nth-child(3) { margin-right: 1.2rem; margin-left: 1.2rem; }
.tslide.is-active .tslide__card:nth-child(1) { animation: tslide-card .55s .50s forwards; }
.tslide.is-active .tslide__card:nth-child(2) { animation: tslide-card .55s .62s forwards; }
.tslide.is-active .tslide__card:nth-child(3) { animation: tslide-card .55s .74s forwards; }
@keyframes tslide-card { to { opacity: 1; transform: translateX(0); } }
.tslide__card-ico {
    flex: none; display: grid; place-items: center;
    width: 44px; height: 44px; border-radius: 12px;
    background: rgba(255, 255, 255, .16); color: #fff;
}
.tslide__card-ico .icon { width: 20px; height: 20px; }
.tslide__card-body { display: flex; flex-direction: column; gap: .1rem; min-width: 0; }
.tslide__card-body strong { font-size: .95rem; line-height: 1.25; }
.tslide__card-body span { font-size: .8rem; color: rgba(226, 232, 244, .82); }

/* Kontrol çubuğu — noktalar, sayaç, oklar */
.tslider__controls {
    position: absolute; left: 50%; bottom: 3.4rem; transform: translateX(-50%); z-index: 3;
    width: 100%; max-width: var(--container); padding-inline: 20px;
    display: flex; align-items: center; gap: 1.1rem;
    pointer-events: none;
}
.tslider__controls > * { pointer-events: auto; }

.tslider__dots { display: flex; gap: .5rem; }
.tslider__dot {
    position: relative; width: 30px; height: 6px; border-radius: 999px;
    background: rgba(255, 255, 255, .28); border: none; cursor: pointer; padding: 0;
    overflow: hidden; transition: background .3s ease;
}
.tslider__dot:hover { background: rgba(255, 255, 255, .45); }
.tslider__dot-fill {
    position: absolute; inset: 0; border-radius: inherit;
    background: #fff; transform: scaleX(0); transform-origin: left center;
}
.tslider__dot.is-active .tslider__dot-fill { animation: tdot-fill var(--tslider-autoplay) linear forwards; }
.tslider.is-paused .tslider__dot.is-active .tslider__dot-fill { animation-play-state: paused; }
@keyframes tdot-fill { to { transform: scaleX(1); } }

.tslider__counter {
    display: flex; align-items: baseline; gap: .35rem; margin: 0;
    color: rgba(255, 255, 255, .9); font-size: .85rem; font-weight: 700;
    letter-spacing: .08em; font-variant-numeric: tabular-nums;
}
.tslider__counter-sep { color: rgba(255, 255, 255, .45); }

.tslider__nav { margin-left: auto; display: flex; gap: .55rem; }
.tslider__arrow {
    width: 44px; height: 44px; border-radius: 50%;
    display: grid; place-items: center; cursor: pointer;
    background: rgba(255, 255, 255, .12); border: 1px solid rgba(255, 255, 255, .28);
    color: #fff; backdrop-filter: blur(8px); -webkit-backdrop-filter: blur(8px);
    transition: background .2s ease, border-color .2s ease;
}
.tslider__arrow:hover { background: var(--accent-500); border-color: var(--accent-500); }
.tslider__arrow--prev .icon { transform: rotate(180deg); }
.tslider__arrow .icon { width: 20px; height: 20px; }

/* Hızlı erişim kartları */
.tslider__quicknav {
    position: relative; z-index: 4;
    display: grid; grid-template-columns: repeat(3, 1fr); gap: 1rem;
    margin: -2.5rem auto 0; padding-bottom: .25rem;
}
.quicknav-card {
    display: flex; align-items: center; gap: .9rem;
    background: var(--white); border: 1px solid var(--ink-100); border-radius: var(--radius);
    padding: 1.1rem 1.2rem; box-shadow: var(--shadow);
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.quicknav-card:hover { transform: translateY(-4px); box-shadow: var(--shadow-lg); border-color: var(--brand-200); }
.quicknav-card__icon {
    flex: none; display: grid; place-items: center; width: 48px; height: 48px; border-radius: 13px;
    background: var(--gradient); color: #fff; box-shadow: 0 8px 18px -8px rgba(29,43,76,.6);
}
.quicknav-card__body { display: flex; flex-direction: column; gap: .1rem; min-width: 0; }
.quicknav-card__title { color: var(--ink-900); font-size: .98rem; line-height: 1.25; }
.quicknav-card__desc { color: var(--ink-500); font-size: .82rem; }
.quicknav-card__arrow { color: var(--brand-400); margin-left: auto; flex: none; transition: transform .2s ease; }
.quicknav-card:hover .quicknav-card__arrow { transform: translateX(4px); color: var(--accent-500); }

@media (prefers-reduced-motion: reduce) {
    .tslide, .tslide__bg img,
    .tslide__eyebrow, .tslide__title, .tslide__text, .tslide__actions,
    .tslide__badge, .tslide__card, .tslider__dot-fill {
        transition: none; animation: none; opacity: 1; transform: none;
    }
    .tslider__dot.is-active { background: #fff; }
}

/* ---------- HERO ---------- */
.hero { position: relative; overflow: hidden; padding: clamp(3rem, 7vw, 6rem) 0 clamp(3.5rem, 8vw, 7rem); }
.hero__bg { position: absolute; inset: 0; z-index: 0; pointer-events: none; }
.hero__orb { position: absolute; border-radius: 50%; filter: blur(70px); opacity: .5; }
.hero__orb--1 { width: 460px; height: 460px; background: var(--brand-300); top: -120px; right: -80px; }
.hero__orb--2 { width: 360px; height: 360px; background: var(--accent-300); bottom: -140px; left: -100px; opacity: .3; }
.hero__grid {
    position: absolute; inset: 0;
    background-image: linear-gradient(var(--ink-100) 1px, transparent 1px), linear-gradient(90deg, var(--ink-100) 1px, transparent 1px);
    background-size: 44px 44px;
    -webkit-mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 70%);
    mask-image: radial-gradient(circle at 50% 30%, #000 0%, transparent 70%);
    opacity: .55;
}
.hero__inner {
    position: relative; z-index: 1;
    display: grid; grid-template-columns: 1.1fr .9fr; gap: 3rem; align-items: center;
}
.hero__title { font-size: clamp(2.1rem, 5vw, 3.4rem); margin-bottom: 1.1rem; }
.hero__lead { font-size: 1.15rem; color: var(--ink-700); max-width: 52ch; }
.hero__actions { display: flex; flex-wrap: wrap; gap: .8rem; margin: 1.8rem 0; }
.hero__stats { display: flex; flex-wrap: wrap; gap: 2rem; margin-top: 1.5rem; }
.hero__stat-value { display: block; font-size: 1.7rem; font-weight: 800; color: var(--ink-900); letter-spacing: -.03em; }
.hero__stat-label { font-size: .85rem; color: var(--ink-500); }

/* UNI kartı (hero görseli) */
.hero__visual { display: flex; justify-content: center; position: relative; }
.uni-card {
    width: 100%; max-width: 380px; background: var(--white); border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg); border: 1px solid var(--ink-100); overflow: hidden;
    animation: float 6s ease-in-out infinite;
}
@keyframes float { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-10px); } }
.uni-card__head { display: flex; align-items: center; gap: .75rem; padding: 1rem 1.25rem; background: var(--gradient); color: #fff; }
.uni-avatar { display: grid; place-items: center; width: 44px; height: 44px; border-radius: 12px; background: rgba(255,255,255,.2); color: #fff; }
.uni-avatar--sm { width: 34px; height: 34px; border-radius: 10px; background: var(--brand-50); color: var(--brand-600); }
.uni-card__name { margin: 0; font-weight: 800; }
.uni-card__status { margin: 0; font-size: .8rem; opacity: .9; display: flex; align-items: center; gap: .4rem; }
.uni-card__body { padding: 1.25rem; display: flex; flex-direction: column; gap: .6rem; }
.bubble { padding: .65rem .9rem; border-radius: 14px; font-size: .9rem; max-width: 85%; }
.bubble--uni { background: var(--brand-50); color: var(--ink-800); border-bottom-left-radius: 4px; align-self: flex-start; }
.bubble--me { background: var(--gradient-warm); color: #fff; border-bottom-right-radius: 4px; align-self: flex-end; }
.uni-card__tasks { padding: 1rem 1.25rem 1.25rem; border-top: 1px solid var(--ink-100); }
.uni-card__tasks-title { font-size: .75rem; text-transform: uppercase; letter-spacing: .08em; color: var(--ink-400); font-weight: 700; margin-bottom: .6rem; }
.task { display: flex; align-items: center; gap: .6rem; padding: .35rem 0; font-size: .9rem; color: var(--ink-700); }
.task input { width: 18px; height: 18px; accent-color: var(--brand-600); }
.task input:checked + span { color: var(--ink-400); text-decoration: line-through; }

/* Hero sosyal kanıt rozeti */
.hero__proof {
    position: absolute; left: -8px; bottom: 8px;
    display: flex; align-items: center; gap: .6rem;
    background: var(--white); border: 1px solid var(--ink-100); border-radius: 999px;
    padding: .5rem .9rem .5rem .5rem; box-shadow: var(--shadow);
}
.hero__proof img { width: 38px; height: 38px; border-radius: 50%; object-fit: cover; }
.hero__proof strong { display: block; font-size: .9rem; color: var(--ink-900); }
.hero__proof span { font-size: .75rem; color: var(--ink-500); }

/* ---------- Güven şeridi ---------- */
.trust {
    padding: 1.1rem 0;
    background: var(--brand-50, #f2f5fb);
    border-top: 1px solid var(--brand-100, #e2e8f4);
    border-bottom: 1px solid var(--brand-100, #e2e8f4);
}
.trust__inner {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    justify-content: center;
    text-align: center;
    gap: 1rem 2rem;
}
.trust__items {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-wrap: wrap;
    gap: .75rem 2rem;
}
.trust__item {
    display: flex;
    align-items: center;
    gap: .55rem;
    color: var(--brand-700, #1d2b4c);
    font-weight: 600;
    font-size: .9rem;
}
.trust__item .icon { color: var(--accent-500, #e11d2f); }
.trust__social {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .75rem;
    flex-wrap: wrap;
}
.trust__social-label {
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ink-500, #64748b);
    white-space: nowrap;
}

@media (max-width: 900px) {
    .trust__inner { flex-direction: column; }
    .trust__items { gap: .65rem 1.25rem; }
    .trust__social {
        padding-top: .35rem;
        border-top: 1px solid var(--brand-100, #e2e8f4);
    }
}

/* ---------- Üniversite logo şeridi (marquee) ---------- */
.logos { padding: 2.75rem 0 2.25rem; }
.logos__caption {
    text-align: center; color: var(--ink-400); font-size: .78rem; font-weight: 700;
    letter-spacing: .12em; text-transform: uppercase; margin: 0 0 1.6rem;
}
.logos__viewport {
    position: relative; overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 7%, #000 93%, transparent);
}
.logos__track {
    display: flex; align-items: center; width: max-content;
    animation: logos-scroll 42s linear infinite;
}
.logos__viewport:hover .logos__track,
.logos__viewport:focus-within .logos__track { animation-play-state: paused; }
.logos__item {
    display: flex; align-items: center; justify-content: center;
    margin: 0 2.4rem; flex: none;
}
.logos__item a { display: flex; align-items: center; justify-content: center; }
.logos__logo {
    display: block; height: 52px; width: auto; max-width: 168px;
    object-fit: contain; object-position: center;
    filter: grayscale(1); opacity: .72;
    transition: filter .25s ease, opacity .25s ease, transform .25s ease;
}
.logos__item:hover .logos__logo,
.logos__item:focus-within .logos__logo {
    filter: none; opacity: 1; transform: scale(1.04);
}

@keyframes logos-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }

@media (prefers-reduced-motion: reduce) {
    .logos__viewport {
        -webkit-mask-image: none; mask-image: none;
    }
    .logos__track {
        animation: none; flex-wrap: wrap; justify-content: center;
        width: 100%; gap: .5rem 0;
    }
}

/* ---------- Problem kartları ---------- */
.problem-card {
    background: var(--white); border: 1px solid var(--ink-100); border-radius: var(--radius);
    padding: 1.5rem 1.25rem; text-align: center; transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
}
.problem-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--brand-100); }
.problem-card__icon {
    display: grid; place-items: center; width: 52px; height: 52px; margin: 0 auto 1rem;
    border-radius: 14px; background: var(--brand-50); color: var(--brand-600);
}
.problem-card__title { font-size: 1.05rem; margin-bottom: .35rem; }
.problem-card__text { color: var(--ink-500); font-size: .92rem; margin: 0; }

/* ---------- Farklılaştırma (değer) kartları ---------- */
.value-card {
    background: var(--white); border: 1px solid var(--ink-100); border-radius: var(--radius);
    padding: 1.75rem; display: flex; flex-direction: column; gap: .6rem;
    border-top: 3px solid var(--brand-500); transition: transform .2s ease, box-shadow .2s ease;
}
.value-card:nth-child(2) { border-top-color: var(--accent-500); }
.value-card:nth-child(3) { border-top-color: var(--brand-700); }
.value-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.value-card__num { font-size: .85rem; font-weight: 800; color: var(--brand-600); letter-spacing: .05em; }
.value-card__title { font-size: 1.25rem; margin: 0; }
.value-card__text { color: var(--ink-500); margin: 0; }

/* ---------- UNI bölümü ---------- */
.uni-section { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.uni-section__text .eyebrow { text-align: left; }
.check-list { margin-top: 1.5rem; display: flex; flex-direction: column; gap: .75rem; }
.check-list li { display: flex; align-items: center; gap: .6rem; color: var(--ink-700); font-weight: 500; }
.check-list .icon { color: var(--success); }
/* UNI maskotu */
.uni-mascot { position: relative; display: flex; align-items: center; justify-content: center; min-height: 360px; }
.uni-mascot__glow {
    position: absolute; width: 92%; aspect-ratio: 1; border-radius: 50%; z-index: 0;
    background: rgba(42, 61, 99, .16);
    filter: blur(26px);
}
.uni-mascot__bubble {
    position: absolute; top: 4%; right: 0; z-index: 2; max-width: 210px;
    background: var(--white); border: 1px solid var(--ink-100); border-radius: 16px 16px 4px 16px;
    padding: .7rem .95rem; font-size: .9rem; font-weight: 500; color: var(--ink-800); box-shadow: var(--shadow);
}

/* Animasyonlu SVG maskot */
.uni-svg {
    position: relative; z-index: 1; width: 100%; max-width: 430px; height: auto;
    transform-origin: 50% 92%;
    animation: uni-breathe 4.8s ease-in-out infinite;
    filter: drop-shadow(0 16px 22px rgba(8, 80, 72, .26));
}
.uni-svg__eye { transform-box: fill-box; transform-origin: center; animation: uni-blink 6s infinite; }
.uni-svg__wave { transform-box: fill-box; transform-origin: 82% 88%; animation: uni-wave 5.2s ease-in-out infinite; }

/* Nefes alma — belirgin zıplama yerine yumuşak hacim hareketi */
@keyframes uni-breathe {
    0%, 100% { transform: translateY(0) scale(1); }
    50% { transform: translateY(-4px) scale(1.012); }
}
/* Seyrek, doğal göz kırpma (çift kırpış) */
@keyframes uni-blink {
    0%, 44%, 100% { transform: scaleY(1); }
    47% { transform: scaleY(0.08); }
    50% { transform: scaleY(1); }
    91% { transform: scaleY(1); }
    94% { transform: scaleY(0.08); }
    97% { transform: scaleY(1); }
}
/* Çoğu zaman dinlenir, ara sıra nazikçe el sallar */
@keyframes uni-wave {
    0%, 52%, 100% { transform: rotate(-5deg); }
    60% { transform: rotate(-17deg); }
    68% { transform: rotate(-1deg); }
    76% { transform: rotate(-17deg); }
    84% { transform: rotate(-6deg); }
}

/* UNI örnek mesajları */
.uni-messages { display: grid; grid-template-columns: repeat(3, 1fr); gap: 1.25rem; margin-top: 3.5rem; }
.uni-msg {
    display: flex; gap: .85rem; align-items: flex-start; background: var(--white);
    border: 1px solid var(--ink-100); border-radius: var(--radius); padding: 1.1rem 1.25rem; box-shadow: var(--shadow-sm);
}
.uni-msg__avatar { width: 40px; height: 40px; border-radius: 10px; object-fit: cover; object-position: center top; background: var(--brand-50); flex: none; }
.uni-msg p { margin: 0; color: var(--ink-700); font-size: .92rem; }

/* UNI ruh hali kütüphanesi */
.uni-moods { margin-top: 3.5rem; padding-top: 2.5rem; border-top: 1px solid var(--ink-100); }
.uni-moods__title { text-align: center; font-weight: 800; color: var(--ink-900); font-size: 1.1rem; margin-bottom: 1.75rem; }
.uni-moods__grid { display: grid; grid-template-columns: repeat(5, 1fr); gap: 1rem; }
.mood-card { margin: 0; text-align: center; transition: transform .2s ease; }
.mood-card:hover { transform: translateY(-6px); }
.mood-card__img { width: 100%; max-width: 132px; height: auto; margin: 0 auto .5rem; }
.mood-card figcaption strong { display: block; color: var(--ink-900); font-size: .95rem; }
.mood-card figcaption span { display: block; color: var(--ink-500); font-size: .82rem; }

/* ---------- Destek kartları ---------- */
.support { display: grid; grid-template-columns: .9fr 1.1fr; gap: 3rem; align-items: center; }
.support__media { min-height: 320px; }
.support__cards { display: grid; grid-template-columns: 1fr 1fr; gap: 1rem; }
.support-card {
    background: var(--white); border: 1px solid var(--ink-100); border-radius: var(--radius); padding: 1.3rem;
    display: flex; flex-direction: column; gap: .5rem; transition: transform .2s ease, box-shadow .2s ease;
}
.support-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.support-card__icon {
    display: grid; place-items: center; width: 50px; height: 50px; border-radius: 14px;
    background: var(--gradient); color: #fff; box-shadow: 0 8px 18px -8px rgba(29,43,76,.6);
}
.support-card .badge { align-self: flex-start; }
.support-card__title { font-size: 1.05rem; margin: 0; }
.support-card__text { color: var(--ink-500); font-size: .9rem; margin: 0; }

/* ---------- BURS (öne çıkan farklılaştırıcı) ---------- */
.scholarship { background: var(--brand-700); color: #fff; }
.scholarship__inner { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.scholarship .eyebrow { color: var(--brand-200); }
.scholarship__title { color: #fff; font-size: clamp(1.7rem, 3.6vw, 2.5rem); }
.scholarship__text { color: rgba(255,255,255,.85); font-size: 1.08rem; }
.scholarship__steps { display: flex; flex-direction: column; gap: .9rem; margin: 1.5rem 0; }
.scholarship__step { display: flex; align-items: center; gap: .85rem; }
.scholarship__step span.num { display: grid; place-items: center; width: 34px; height: 34px; border-radius: 50%; background: var(--accent-500); color: #fff; font-weight: 800; flex: none; }
.scholarship__step p { margin: 0; color: rgba(255,255,255,.95); font-weight: 500; }
.scholarship__media { position: relative; }
.scholarship__media .media { box-shadow: 0 30px 60px -20px rgba(0,0,0,.5); }
.scholarship__offer {
    position: absolute; bottom: 16px; left: 16px; right: 16px;
    background: rgba(255,255,255,.96); border-radius: var(--radius); padding: 1rem 1.2rem;
    display: flex; align-items: center; gap: .8rem; box-shadow: var(--shadow);
}
.scholarship__offer .icon { color: var(--accent-500); }
.scholarship__offer strong { display: block; color: var(--ink-900); font-size: .95rem; }
.scholarship__offer span { font-size: .82rem; color: var(--ink-500); }

/* ---------- Split (portfolyo) ---------- */
.split { display: grid; grid-template-columns: 1fr 1fr; gap: 3rem; align-items: center; }
.split__text .eyebrow { text-align: left; }
.source-list { display: flex; flex-direction: column; gap: 1rem; margin-top: 1.75rem; }
.source { display: flex; gap: 1rem; align-items: flex-start; }
.source__icon { display: grid; place-items: center; width: 40px; height: 40px; border-radius: 10px; background: var(--brand-50); color: var(--brand-600); flex: none; }
.source strong { display: block; color: var(--ink-900); }
.source span { color: var(--ink-500); font-size: .9rem; }

.portfolio-card { background: var(--white); border: 1px solid var(--ink-100); border-radius: var(--radius-lg); padding: 1.75rem; box-shadow: var(--shadow-lg); }
.portfolio-card__head { display: flex; align-items: center; gap: .75rem; margin-bottom: 1.5rem; }
.portfolio-card__name { margin: 0; font-weight: 800; }
.portfolio-card__meta { margin: 0; font-size: .82rem; color: var(--ink-400); }
.portfolio-card__head .badge { margin-left: auto; }
.meter { display: grid; grid-template-columns: 110px 1fr; align-items: center; gap: .75rem; margin-bottom: .85rem; }
.meter__label { font-size: .85rem; color: var(--ink-700); }
.meter__bar { height: 10px; background: var(--ink-100); border-radius: 999px; overflow: hidden; }
.meter__fill { display: block; height: 100%; width: var(--w); background: var(--gradient); border-radius: 999px; }
.portfolio-card__chips { display: flex; flex-wrap: wrap; gap: .5rem; margin-top: 1.25rem; }

/* ---------- Modüller ---------- */
.filter-bar { display: flex; justify-content: center; flex-wrap: wrap; gap: .5rem; margin-bottom: 2.5rem; }
.chip {
    border: 1px solid var(--ink-200); background: var(--white); color: var(--ink-700);
    font-weight: 600; font-size: .9rem; padding: .5rem 1.1rem; border-radius: 999px; transition: all .2s ease;
}
.chip:hover { border-color: var(--brand-300); color: var(--brand-700); }
.chip.is-active { background: var(--gradient); color: #fff; border-color: transparent; }

.module-card {
    background: var(--white); border: 1px solid var(--ink-100); border-radius: var(--radius); padding: 1.25rem;
    display: flex; flex-direction: column; gap: .5rem; transition: transform .2s ease, box-shadow .2s ease, border-color .2s;
}
.module-card.is-hidden { display: none; }
.module-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); border-color: var(--brand-100); }
.module-card__top { display: flex; align-items: center; justify-content: space-between; }
.module-card__icon { display: grid; place-items: center; width: 46px; height: 46px; border-radius: 12px; background: var(--brand-50); color: var(--brand-600); }
.module-card__no { font-size: 1.4rem; font-weight: 800; color: var(--ink-200); letter-spacing: -.03em; }
.module-card__title { font-size: 1.02rem; margin: 0; }
.module-card__desc { color: var(--ink-500); font-size: .88rem; margin: 0; flex: 1; }
.tag { align-self: flex-start; font-size: .72rem; font-weight: 700; padding: .2rem .6rem; border-radius: 6px; }
.tag--mvp { background: rgba(16,185,129,.12); color: var(--success); }
.tag--phase2 { background: var(--accent-50); color: var(--accent-600); }

/* ---------- Panel kartları ---------- */
.panel-card {
    background: var(--white); border: 1px solid var(--ink-100); border-radius: var(--radius); padding: 1.6rem;
    display: flex; flex-direction: column; gap: .5rem; transition: transform .2s ease, box-shadow .2s ease;
}
.panel-card:hover { transform: translateY(-4px); box-shadow: var(--shadow); }
.panel-card__icon { display: grid; place-items: center; width: 52px; height: 52px; border-radius: 14px; background: var(--brand-50); color: var(--brand-600); }
.panel-card__title { font-size: 1.15rem; margin: 0; }
.panel-card__text { color: var(--ink-500); font-size: .92rem; margin: 0; }

/* ---------- Öğrenci yorumu (sosyal kanıt) ---------- */
.testimonial { display: grid; grid-template-columns: .8fr 1.2fr; gap: 3rem; align-items: center; }
.testimonial__media { max-width: 360px; }
.testimonial__media .media { aspect-ratio: 4 / 5; }
.testimonial__quote { font-size: clamp(1.3rem, 2.6vw, 1.8rem); font-weight: 700; color: var(--ink-900); line-height: 1.4; letter-spacing: -.02em; }
.testimonial__mark { color: var(--brand-400); font-size: 3rem; line-height: 1; display: block; margin-bottom: .5rem; }
.testimonial__who { margin-top: 1.25rem; color: var(--ink-500); }
.testimonial__who strong { color: var(--ink-900); display: block; }

/* ---------- Timeline ---------- */
.timeline { display: grid; grid-template-columns: repeat(4, 1fr); gap: 1.5rem; position: relative; }
.timeline__item { position: relative; padding-top: 3.5rem; }
.timeline__dot {
    position: absolute; top: 0; left: 0; width: 44px; height: 44px; border-radius: 50%;
    display: grid; place-items: center; font-weight: 800; color: #fff; background: var(--gradient);
    box-shadow: 0 8px 18px -8px rgba(29,43,76,.6); z-index: 1;
}
.timeline__item::before { content: ""; position: absolute; top: 22px; left: 44px; right: -1.5rem; height: 2px; background: var(--ink-200); }
.timeline__item:last-child::before { display: none; }
.timeline__body h3 { font-size: 1.05rem; margin-bottom: .25rem; }
.timeline__body p { color: var(--ink-500); font-size: .9rem; margin: 0; }

/* ---------- Fiyatlandırma ---------- */
.pricing { display: grid; grid-template-columns: repeat(2, minmax(0, 380px)); gap: 1.5rem; justify-content: center; }
.price-card {
    background: var(--white); border: 1px solid var(--ink-200); border-radius: var(--radius-lg); padding: 2rem;
    display: flex; flex-direction: column; position: relative;
}
.price-card--featured { border-color: var(--brand-200); box-shadow: var(--shadow-lg); background: var(--white); }
.price-card__ribbon {
    position: absolute; top: -12px; right: 1.5rem; background: var(--gradient-warm); color: #fff;
    font-size: .75rem; font-weight: 700; padding: .3rem .8rem; border-radius: 999px;
}
.price-card__name { font-size: 1.15rem; }
.price-card__price { font-size: 2.8rem; font-weight: 800; color: var(--ink-900); letter-spacing: -.03em; margin: .25rem 0 1.25rem; }
.price-card__currency { font-size: 1.4rem; vertical-align: super; }
.price-card__period { font-size: .95rem; font-weight: 600; color: var(--ink-400); }
.price-card__features { display: flex; flex-direction: column; gap: .65rem; margin-bottom: 1.75rem; flex: 1; }
.price-card__features li { display: flex; align-items: flex-start; gap: .55rem; color: var(--ink-700); font-size: .92rem; }
.price-card__features .icon { color: var(--success); margin-top: 2px; }
.pricing__note { text-align: center; color: var(--ink-400); font-size: .82rem; margin-top: 1.5rem; }

/* ---------- CTA bandı (kampüs görseli arka plan) ---------- */
.cta-band { position: relative; overflow: hidden; padding: 5rem 0; background: var(--brand-700); }
.cta-band__img { position: absolute; inset: 0; z-index: 0; }
.cta-band__img img { width: 100%; height: 100%; object-fit: cover; opacity: .25; }
.cta-band::after { content: ""; position: absolute; inset: 0; z-index: 0; background: rgba(20, 30, 54, .88); }
.cta-band__inner { text-align: center; position: relative; z-index: 1; }
.cta-band__title { color: #fff; font-size: clamp(1.7rem, 4vw, 2.6rem); }
.cta-band__text { color: rgba(255,255,255,.92); max-width: 52ch; margin: 0 auto 2rem; font-size: 1.1rem; }
.cta-band__actions { display: flex; flex-wrap: wrap; gap: .8rem; justify-content: center; }

/* ============================================================
   Responsive
   ============================================================ */
@media (max-width: 1024px) {
    .grid--modules { grid-template-columns: repeat(3, 1fr); }
    .grid--5 { grid-template-columns: repeat(3, 1fr); }
    .tslide__panel { width: min(340px, 100%); }
    .tslide__card:nth-child(1) { margin-right: 1.2rem; }
    .tslide__card:nth-child(2) { margin-left: 1.2rem; }
    .tslide__card:nth-child(3) { margin-right: .6rem; margin-left: .6rem; }
}

@media (max-width: 900px) {
    .hero__inner { grid-template-columns: 1fr; gap: 2.5rem; }
    .hero__visual { order: -1; }
    .tslider__quicknav { grid-template-columns: 1fr; margin-top: -1.75rem; }
    .tslide__inner { grid-template-columns: 1fr; }
    .tslide__panel { display: none; }
    .tslide__veil { background: rgba(15, 20, 36, .68); }
    .tslide__veil::before, .tslide__veil::after { display: none; }
    .uni-section, .split, .scholarship__inner, .support, .testimonial { grid-template-columns: 1fr; gap: 2rem; }
    .split__visual, .scholarship__media, .testimonial__media { order: -1; }
    .testimonial__media { max-width: 280px; }
    .grid--4 { grid-template-columns: repeat(2, 1fr); }
    .timeline { grid-template-columns: repeat(2, 1fr); }
    .timeline__item:nth-child(2)::before { display: none; }
}

@media (max-width: 640px) {
    .section { padding: 3.5rem 0; }
    .grid--3, .grid--4, .grid--5, .grid--modules { grid-template-columns: 1fr 1fr; }
    .support__cards { grid-template-columns: 1fr; }
    .uni-messages { grid-template-columns: 1fr; }
    .uni-moods__grid { grid-template-columns: repeat(3, 1fr); }
    .pricing { grid-template-columns: 1fr; }
    .hero__stats { gap: 1.25rem; }
    .hero__stat-value { font-size: 1.4rem; }
    .tslider__viewport { height: clamp(440px, 82vh, 580px); }
    .tslider__arrow { width: 40px; height: 40px; }
    .tslider__controls { bottom: 3rem; }
    .tslide__actions .btn { flex: 1 1 auto; justify-content: center; }
}

@media (max-width: 460px) {
    .grid--3, .grid--4, .grid--5, .grid--modules { grid-template-columns: 1fr; }
    .uni-moods__grid { grid-template-columns: repeat(2, 1fr); }
    .timeline { grid-template-columns: 1fr; }
    .timeline__item { padding-top: 0; padding-left: 3.5rem; }
    .timeline__item::before { display: none; }
    .hero__actions .btn, .cta-band__actions .btn { width: 100%; }
    .hero__proof { position: static; margin-top: 1rem; }
    .tslider__nav { display: none; }
    .tslide__actions .btn { width: 100%; }
}

/* ============================================================
   ANA SAYFA FUAR BÖLÜMÜ — sekmeli, modern kart tasarımı
   Palet: lacivert / kırmızı / gri. Gradyansız, responsive.
   ============================================================ */
.home-fairs {
    padding: 4.5rem 0;
    background: var(--ink-50, #f6f7fb);
    border-top: 1px solid var(--ink-100);
    scroll-margin-top: calc(var(--header-h) + 20px);
}
.page-fairs .home-fairs--page {
    min-height: calc(100vh - var(--header-h, 72px) - 120px);
    border-top: 0;
    padding-top: clamp(2.5rem, 5vw, 4rem);
}

/* ---------- Ortalanmış giriş + fuar görseli ---------- */
.home-fairs__intro {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.35rem;
    margin-bottom: 2rem;
}
.home-fairs__intro-text {
    display: flex;
    flex-direction: column;
    align-items: center;
    max-width: 720px;
}
.home-fairs__title {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: baseline;
    gap: .35em;
    margin: 0 0 .75rem;
    font-size: clamp(1.85rem, 3.8vw, 2.5rem);
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.15;
}
.home-fairs__title-brand {
    position: relative;
    color: var(--accent-500, #e0322d);
}
.home-fairs__title-brand::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: -.12em;
    height: 4px;
    border-radius: 2px;
    background: var(--accent-500, #e0322d);
}
.home-fairs__title-rest {
    color: var(--brand-700, #14213d);
}
.home-fairs__sub {
    margin: 0;
    max-width: 520px;
    color: var(--ink-600);
    font-size: 1rem;
    line-height: 1.6;
}
.home-fairs__cta .icon { transition: transform .18s ease; }
.home-fairs__cta:hover .icon { transform: translateX(3px); }

.home-fairs__foot {
    display: flex;
    justify-content: center;
    margin-top: 1.75rem;
}

/* ---------- Sanal Tercih Fuarı (anasayfa iframe) ---------- */
.home-vfair {
    padding: 2.5rem 0 3rem;
    background:
        radial-gradient(ellipse 70% 50% at 50% 0%, rgba(29, 43, 76, .06), transparent 60%),
        var(--brand-50, #f2f5fb);
}
.home-vfair__head {
    display: flex;
    flex-wrap: wrap;
    align-items: flex-end;
    justify-content: space-between;
    gap: 1rem 1.5rem;
    margin-bottom: 1.15rem;
}
.home-vfair__eyebrow {
    display: block;
    margin: 0 0 .25rem;
    font-size: .72rem;
    font-weight: 700;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--brand-500, #3c5180);
}
.home-vfair__title {
    margin: 0;
    font-size: clamp(1.35rem, 3vw, 1.7rem);
    font-weight: 800;
    letter-spacing: -.02em;
    color: var(--brand-800, #141e36);
}
.home-vfair__lead {
    margin: .35rem 0 0;
    max-width: 44ch;
    font-size: .92rem;
    line-height: 1.45;
    color: var(--ink-600, #475569);
}
.home-vfair__open { flex: none; }
.home-vfair__frame {
    position: relative;
    width: 100%;
    height: min(92vh, 1080px);
    min-height: 520px;
    border-radius: 16px;
    overflow: hidden;
    background: #0f172a;
    border: 1px solid var(--ink-200, #e2e8f0);
    box-shadow: var(--shadow, 0 10px 25px -5px rgba(15, 23, 42, .12));
    overscroll-behavior: none;
    touch-action: none;
}
.home-vfair__iframe {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
    display: block;
    overscroll-behavior: none;
}
html.vfair-noscroll,
html.vfair-noscroll body {
    overflow: hidden !important;
    overscroll-behavior: none;
    touch-action: none;
}
@media (max-width: 700px) {
    .home-vfair { padding: 1.75rem 0 2.25rem; }
    .home-vfair__head { align-items: stretch; }
    .home-vfair__open { width: 100%; text-align: center; }
    .home-vfair__frame {
        height: min(85vh, 820px);
        min-height: 420px;
        border-radius: 12px;
    }
}

/* ---------- Sekmeler — ayrı pill butonlar (referans tasarım) ---------- */
.hf-tabs-wrap {
    display: flex;
    justify-content: center;
    width: 100%;
}
.hf-tabs {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .65rem;
    padding: 0;
    background: transparent;
    border: 0;
    border-radius: 0;
    box-shadow: none;
}
.hf-tab {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: .7rem 1.45rem;
    font: inherit;
    font-size: .92rem;
    font-weight: 700;
    color: var(--brand-700, #14213d);
    background: var(--ink-100, #eef0f4);
    border: 0;
    border-radius: 999px;
    cursor: pointer;
    white-space: nowrap;
    transition: background .16s ease, color .16s ease, box-shadow .16s ease;
}
.hf-tab:hover:not(.is-active) {
    color: var(--brand-700);
    background: var(--ink-200, #e2e5ec);
}
.hf-tab.is-active {
    background: var(--accent-500, #e0322d);
    color: #fff;
    box-shadow: 0 4px 14px rgba(224, 50, 45, .32);
}
.hf-tab:focus-visible {
    outline: 2px solid var(--brand-700);
    outline-offset: 2px;
}

/* ---------- Paneller ---------- */
.hf-panel { display: none; }
.hf-panel.is-active {
    display: block;
    animation: hf-fade .3s ease;
}
@keyframes hf-fade {
    from { opacity: 0; transform: translateY(8px); }
    to   { opacity: 1; transform: translateY(0); }
}

/* ---------- Kart ızgarası ---------- */
.hf-grid {
    display: grid;
    grid-template-columns: repeat(4, minmax(0, 1fr));
    gap: 1.25rem;
}

@media (max-width: 1200px) {
    .hf-grid { grid-template-columns: repeat(3, minmax(0, 1fr)); }
}

@media (max-width: 900px) {
    .hf-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

/* ---------- Fuar kartı ---------- */
.hf-card {
    position: relative;
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--ink-200);
    border-radius: 18px;
    overflow: hidden;
    transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.hf-card__cover {
    position: absolute;
    inset: 0;
    z-index: 1;
    border-radius: inherit;
    text-decoration: none;
}
.hf-card__cover:focus-visible {
    outline: 2px solid var(--brand-700);
    outline-offset: -2px;
}
.hf-card__action {
    position: relative;
    z-index: 2;
}
.hf-card__action--detail {
    width: 100%;
    justify-content: center;
    gap: .35rem;
}
.hf-card__action--detail .icon { transition: transform .16s ease; }
.hf-card:hover .hf-card__action--detail .icon { transform: translateX(3px); }
.hf-card:hover {
    transform: translateY(-4px);
    border-color: var(--brand-300, #b9c7e0);
    box-shadow: 0 16px 36px rgba(20, 33, 61, .12);
}
.hf-card--past { opacity: .88; }
.hf-card--past:hover { opacity: 1; }

/* Üst görsel */
.hf-card__media {
    position: relative;
    height: 160px;
    background: var(--brand-800);
    overflow: hidden;
}
.hf-card__img {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}
.hf-card:hover .hf-card__img { transform: scale(1.05); }

.hf-card__badge {
    position: absolute;
    top: .75rem;
    left: .75rem;
    z-index: 2;
    box-shadow: 0 2px 8px rgba(0, 0, 0, .25);
}

/* Tarih rozeti — görselin içinde, sağ alt köşe */
.hf-card__date {
    position: absolute;
    right: .75rem;
    bottom: .75rem;
    z-index: 2;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    min-width: 112px;
    max-width: 156px;
    height: auto;
    min-height: 100px;
    padding: .7rem .75rem;
    background: #fff;
    border: 2px solid #fff;
    border-radius: 16px;
    box-shadow:
        0 8px 28px rgba(20, 33, 61, .32),
        0 2px 10px rgba(0, 0, 0, .14);
    line-height: 1.1;
    font-family: 'Poppins', var(--font);
    text-align: center;
}
.hf-card__date strong {
    display: block;
    font-size: 2rem;
    font-weight: 800;
    color: var(--brand-700);
    line-height: 1;
    letter-spacing: -.03em;
}
.hf-card__date--range {
    min-width: 116px;
    min-height: 104px;
    padding: .6rem .55rem;
}
.hf-card__date--range strong {
    font-size: 1.28rem;
    font-weight: 800;
    letter-spacing: -.03em;
    word-break: keep-all;
}
.hf-card__date-month {
    display: block;
    margin-top: .28rem;
    font-size: .82rem;
    font-weight: 800;
    letter-spacing: .01em;
    text-transform: none;
    color: var(--accent-500, #e11d2f);
    line-height: 1.15;
    word-break: break-word;
}
.hf-card__date-year {
    display: block;
    margin-top: .18rem;
    font-size: .76rem;
    font-weight: 800;
    letter-spacing: .03em;
    color: var(--brand-700);
    line-height: 1;
}

/* Gövde */
.hf-card__body {
    flex: 1;
    padding: 1rem 1.15rem .9rem;
}
.hf-card__type {
    display: inline-block;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: var(--ink-500);
    margin-bottom: .4rem;
}
.hf-card__title {
    margin: 0 0 .65rem;
    font-family: 'Poppins', var(--font);
    font-size: 1.05rem;
    font-weight: 700;
    line-height: 1.35;
    color: var(--brand-700);
    word-break: break-word;
}
.hf-card__meta {
    display: flex;
    align-items: flex-start;
    gap: .45rem;
    margin: 0 0 .35rem;
    font-size: .85rem;
    color: var(--ink-600);
}
.hf-card__meta .icon {
    flex-shrink: 0;
    margin-top: .12rem;
    color: var(--ink-400);
}

/* Alt satır */
.hf-card__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: .6rem;
    padding: .85rem 1.15rem;
    border-top: 1px solid var(--ink-100);
}
.hf-card__link {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    font-size: .88rem;
    font-weight: 700;
    color: var(--brand-700);
    text-decoration: none;
    pointer-events: none;
}
.hf-card:hover .hf-card__link .icon { transform: translateX(3px); }
.hf-card__link .icon { transition: transform .16s ease; }
.hf-card__link:hover .icon { transform: none; }

.hf-card__countdown {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    padding: .75rem 1.15rem 1rem;
    border-top: 1px solid var(--ink-100);
    color: var(--ink-600);
    font-size: .82rem;
    line-height: 1.45;
    text-align: center;
}
.hf-card__countdown-ico {
    flex-shrink: 0;
    color: var(--brand-500, #3d5a80);
    opacity: .85;
}
.hf-card__countdown-text strong {
    font-weight: 800;
    color: var(--brand-700, #14213d);
}

/* ============================================================
   TERCİH SİHİRBAZI — etkili CTA banner (görsel + slogan)
   ============================================================ */
.wiz-cta {
    padding: 1.75rem 0;
    background: var(--ink-50, #f6f7fb);
}
.wiz-cta__card {
    position: relative;
    display: grid;
    grid-template-columns: minmax(200px, 28%) 1fr auto;
    align-items: stretch;
    min-height: 158px;
    background: var(--brand-800, #141e36);
    border: 1px solid var(--brand-700, #1d2b4c);
    border-left: 4px solid var(--accent-500, #e11d2f);
    border-radius: 20px;
    overflow: hidden;
    text-decoration: none;
    box-shadow: 0 16px 40px rgba(20, 30, 54, .22);
    transition: transform .2s ease, box-shadow .2s ease;
}
.wiz-cta__card:hover {
    transform: translateY(-3px);
    box-shadow: 0 22px 48px rgba(20, 30, 54, .3);
}
.wiz-cta__visual {
    position: relative;
    margin: 0;
    min-height: 148px;
    overflow: hidden;
    line-height: 0;
}
.wiz-cta__photo {
    display: block;
    width: 100%;
    height: 100%;
    min-height: 148px;
    object-fit: cover;
    object-position: center center;
    transition: transform .35s ease;
}
.wiz-cta__card:hover .wiz-cta__photo { transform: scale(1.05); }
.wiz-cta__chip {
    position: absolute;
    top: .75rem;
    left: .75rem;
    padding: .32rem .75rem;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: #fff;
    background: var(--accent-500, #e11d2f);
    border-radius: 999px;
    line-height: 1;
    box-shadow: 0 4px 12px rgba(225, 29, 47, .4);
}
.wiz-cta__body {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: .4rem;
    padding: 1.15rem 1.35rem;
    min-width: 0;
}
.wiz-cta__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .4rem;
    font-size: .72rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .65);
    line-height: 1;
}
.wiz-cta__eyebrow .icon { color: var(--accent-500, #e11d2f); }
.wiz-cta__title {
    font-size: clamp(1.15rem, 2.2vw, 1.45rem);
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.22;
    color: #fff;
}
.wiz-cta__title em {
    font-style: normal;
    color: #ff6b73;
}
.wiz-cta__desc {
    font-size: .88rem;
    line-height: 1.45;
    color: rgba(255, 255, 255, .78);
    max-width: 520px;
}
.wiz-cta__tags {
    display: flex;
    flex-wrap: wrap;
    gap: .45rem;
    margin-top: .25rem;
}
.wiz-cta__tag {
    display: inline-flex;
    align-items: center;
    gap: .32rem;
    padding: .28rem .65rem;
    font-size: .72rem;
    font-weight: 700;
    color: rgba(255, 255, 255, .92);
    background: rgba(255, 255, 255, .1);
    border: 1px solid rgba(255, 255, 255, .16);
    border-radius: 999px;
    line-height: 1;
}
.wiz-cta__tag .icon {
    width: 13px;
    height: 13px;
    opacity: .9;
}
.wiz-cta__action {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .45rem;
    padding: 1rem 1.35rem;
    background: rgba(0, 0, 0, .18);
    border-left: 1px solid rgba(255, 255, 255, .08);
}
.wiz-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .72rem 1.35rem;
    font-size: .88rem;
    font-weight: 800;
    color: #fff;
    background: var(--accent-500, #e11d2f);
    border-radius: 999px;
    white-space: nowrap;
    box-shadow: 0 8px 20px rgba(225, 29, 47, .4);
    transition: background .16s ease;
}
.wiz-cta__card:hover .wiz-cta__btn { background: var(--accent-600, #c0392b); }
.wiz-cta__btn .icon { transition: transform .18s ease; }
.wiz-cta__card:hover .wiz-cta__btn .icon { transform: translateX(3px); }
.wiz-cta__hint {
    font-size: .72rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .55);
    white-space: nowrap;
}
.wiz-cta__card:focus-visible {
    outline: 3px solid var(--accent-500, #e11d2f);
    outline-offset: 3px;
}

@media (max-width: 900px) {
    .wiz-cta__card {
        grid-template-columns: 120px 1fr;
        grid-template-rows: auto auto;
    }
    .wiz-cta__visual {
        grid-row: span 2;
        min-height: 100%;
    }
    .wiz-cta__action {
        grid-column: 2;
        flex-direction: row;
        justify-content: flex-start;
        padding: 0 1.35rem 1.15rem;
        background: transparent;
        border-left: 0;
    }
    .wiz-cta__hint { display: none; }
}
@media (max-width: 640px) {
    .wiz-cta { padding: 1.25rem 0; }
    .wiz-cta__card {
        grid-template-columns: 1fr;
        grid-template-rows: auto;
        min-height: 0;
    }
    .wiz-cta__visual { min-height: 120px; }
    .wiz-cta__photo { min-height: 120px; }
    .wiz-cta__body { padding: 1rem 1.15rem .75rem; }
    .wiz-cta__action {
        grid-column: 1;
        padding: 0 1.15rem 1.15rem;
    }
    .wiz-cta__btn { width: 100%; justify-content: center; }
}

/* ============================================================
   HAKKIMIZDA — içerik + fotoğraf, yüzen rozet kartları
   ============================================================ */
.habout {
    padding: 5rem 0;
    background: #fff;
    border-top: 1px solid var(--ink-100);
}
.habout__grid {
    display: grid;
    grid-template-columns: 1.05fr 1fr;
    gap: 3.5rem;
    align-items: center;
}
.habout__eyebrow {
    display: inline-block;
    padding: .42rem 1.05rem;
    margin-bottom: 1rem;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #fff;
    background: var(--accent-500, #e11d2f);
    border-radius: 999px;
    line-height: 1;
}
.habout__title {
    margin: 0 0 1rem;
    font-size: clamp(1.7rem, 3.4vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.2;
    color: var(--brand-700, #1d2b4c);
}
.habout__title em {
    font-style: normal;
    color: var(--accent-500, #e11d2f);
}
.habout__text {
    margin: 0 0 1.6rem;
    font-size: 1rem;
    line-height: 1.7;
    color: var(--ink-600);
}
.habout__stats {
    display: flex;
    flex-wrap: wrap;
    gap: .85rem;
    margin-bottom: 1.6rem;
}
.habout__stat {
    flex: 1 1 130px;
    padding: .95rem 1.1rem;
    background: var(--ink-50, #f6f7fb);
    border: 1px solid var(--ink-100);
    border-radius: 14px;
}
.habout__stat-num {
    display: block;
    font-size: 1.55rem;
    font-weight: 800;
    letter-spacing: -.01em;
    color: var(--accent-500, #e11d2f);
    line-height: 1.1;
}
.habout__stat-label {
    display: block;
    margin-top: .25rem;
    font-size: .8rem;
    font-weight: 600;
    color: var(--ink-600);
    line-height: 1.3;
}
.habout__checks {
    display: flex;
    flex-direction: column;
    gap: .55rem;
    margin: 0;
    padding: 0;
    list-style: none;
}
.habout__checks li {
    display: flex;
    align-items: center;
    gap: .55rem;
    font-size: .92rem;
    font-weight: 600;
    color: var(--brand-700, #1d2b4c);
}
.habout__checks .icon {
    flex-shrink: 0;
    color: var(--accent-500, #e11d2f);
}

/* Fotoğraf + yüzen kartlar */
.habout__media {
    position: relative;
    padding: 0 1rem 3.2rem 0;
}
.habout__photo {
    margin: 0;
    border-radius: 22px;
    overflow: hidden;
    box-shadow: 0 24px 54px rgba(20, 33, 61, .18);
    line-height: 0;
}
.habout__photo img {
    display: block;
    width: 100%;
    height: auto;
    object-fit: cover;
}
.habout__float {
    position: absolute;
    display: flex;
    align-items: center;
    gap: .7rem;
    padding: .8rem 1.1rem;
    background: #fff;
    border: 1px solid var(--ink-100);
    border-radius: 16px;
    box-shadow: 0 14px 34px rgba(20, 33, 61, .16);
}
.habout__float--exp {
    left: -1.25rem;
    top: 1.5rem;
}
.habout__float--fair {
    right: 0;
    bottom: .6rem;
}
.habout__float-ico {
    display: flex;
    align-items: center;
    justify-content: center;
    flex-shrink: 0;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: var(--accent-500, #e11d2f);
    color: #fff;
}
.habout__float-ico--navy {
    background: var(--brand-700, #1d2b4c);
}
.habout__float-ico .icon {
    width: 21px;
    height: 21px;
}
.habout__float-text {
    display: flex;
    flex-direction: column;
    gap: .1rem;
    line-height: 1.25;
}
.habout__float-text strong {
    font-size: .88rem;
    font-weight: 800;
    color: var(--brand-700, #1d2b4c);
}
.habout__float-text span {
    font-size: .76rem;
    font-weight: 600;
    color: var(--ink-500);
}

@media (max-width: 900px) {
    .habout { padding: 3.5rem 0; }
    .habout__grid {
        grid-template-columns: 1fr;
        gap: 2.5rem;
    }
    .habout__media {
        order: -1;
        padding: 0 0 3rem;
    }
    .habout__float--exp { left: .5rem; }
    .habout__float--fair { right: .5rem; }
}
@media (max-width: 640px) {
    .habout__stats { gap: .6rem; }
    .habout__stat { padding: .8rem .9rem; }
    .habout__float {
        padding: .6rem .85rem;
        gap: .55rem;
    }
    .habout__float-ico { width: 36px; height: 36px; }
    .habout__float-text strong { font-size: .8rem; }
    .habout__float-text span { font-size: .7rem; }
}

/* ============================================================
   ÜNİVERSİTELERİ TANIYALIM — fullwidth parallax CTA
   ============================================================ */
.uni-cta {
    position: relative;
    width: 100%;
    padding: 6.5rem 0;
    background-image: url("../img/slider/slide-universities.jpg");
    background-size: cover;
    background-position: center 30%;
    background-repeat: no-repeat;
    background-attachment: fixed; /* hafif parallax etkisi */
    overflow: hidden;
}
.uni-cta__overlay {
    position: absolute;
    inset: 0;
    background: rgba(15, 23, 44, .72);
    pointer-events: none;
}
.uni-cta__inner {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 1.1rem;
}
.uni-cta__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .5rem;
    padding: .45rem 1rem;
    font-size: .78rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #fff;
    background: rgba(225, 29, 47, .9);
    border-radius: 999px;
    line-height: 1;
}
.uni-cta__slogan {
    margin: 0;
    max-width: 720px;
    font-size: clamp(1.9rem, 4.5vw, 3rem);
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.18;
    color: #fff;
    text-shadow: 0 2px 18px rgba(0, 0, 0, .35);
}
.uni-cta__slogan em {
    font-style: normal;
    color: #ff5a63;
}
.uni-cta__desc {
    margin: 0;
    max-width: 560px;
    font-size: 1.05rem;
    line-height: 1.6;
    color: rgba(255, 255, 255, .85);
}
.uni-cta__tags {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: .55rem;
    margin-top: .25rem;
}
.uni-cta__tag {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
    padding: .42rem .9rem;
    font-size: .8rem;
    font-weight: 700;
    color: #fff;
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .22);
    border-radius: 999px;
    backdrop-filter: blur(4px);
    line-height: 1;
}
.uni-cta__tag .icon {
    width: 14px;
    height: 14px;
}
.uni-cta__btn {
    display: inline-flex;
    align-items: center;
    gap: .55rem;
    margin-top: .85rem;
    padding: .95rem 2.1rem;
    font-size: 1rem;
    font-weight: 800;
    color: #fff;
    background: var(--accent-500, #e11d2f);
    border-radius: 999px;
    text-decoration: none;
    box-shadow: 0 10px 28px rgba(225, 29, 47, .42);
    transition: background .18s ease, transform .18s ease, box-shadow .18s ease;
}
.uni-cta__btn:hover {
    background: var(--accent-600, #c0392b);
    transform: translateY(-2px);
    box-shadow: 0 14px 34px rgba(225, 29, 47, .5);
}
.uni-cta__btn .icon { transition: transform .18s ease; }
.uni-cta__btn:hover .icon { transform: translateX(4px); }
.uni-cta__btn:focus-visible {
    outline: 3px solid #fff;
    outline-offset: 3px;
}

/* Mobil ve dokunmatik cihazlarda sabit arkaplan sorun çıkarır */
@media (max-width: 900px), (hover: none) {
    .uni-cta { background-attachment: scroll; }
}
@media (max-width: 640px) {
    .uni-cta { padding: 4.5rem 0; }
    .uni-cta__desc { font-size: .95rem; }
    .uni-cta__btn {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================
   KENDİNİ KEŞFET — kişilik ve ilgi testleri (footer üstü)
   ============================================================ */
.htests {
    padding: 5rem 0;
    background:
        radial-gradient(ellipse 80% 60% at 50% 0%, rgba(225, 29, 47, .06), transparent 60%),
        linear-gradient(180deg, #f8f9fc 0%, #f1f3f8 100%);
    border-top: 1px solid var(--ink-100);
}
.htests__head {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2.5rem;
}
.htests__eyebrow {
    display: inline-block;
    padding: .42rem 1.05rem;
    margin-bottom: 1rem;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #fff;
    background: linear-gradient(135deg, var(--accent-500, #e11d2f), #b91525);
    border-radius: 999px;
    line-height: 1;
    box-shadow: 0 8px 20px rgba(225, 29, 47, .25);
}
.htests__title {
    margin: 0 0 .6rem;
    font-size: clamp(1.7rem, 3.4vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.2;
    color: var(--brand-700, #1d2b4c);
}
.htests__title em {
    font-style: normal;
    color: var(--accent-500, #e11d2f);
}
.htests__sub {
    margin: 0;
    max-width: 560px;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--ink-600);
}
.htests__grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 1.35rem;
}

/* Test kartı — premium kapak + cam panel */
.htest-card {
    --htest-accent: #e11d2f;
    --htest-accent-soft: rgba(225, 29, 47, .18);
    position: relative;
    display: flex;
    align-items: stretch;
    min-height: 380px;
    border-radius: 24px;
    overflow: hidden;
    text-decoration: none;
    border: 1px solid rgba(255, 255, 255, .14);
    box-shadow:
        0 4px 6px rgba(20, 33, 61, .04),
        0 20px 48px rgba(20, 33, 61, .14);
    transition: transform .28s cubic-bezier(.22, 1, .36, 1), box-shadow .28s ease;
}
.htest-card--holland {
    --htest-accent: #2d9a8a;
    --htest-accent-soft: rgba(45, 154, 138, .2);
}
.htest-card:hover {
    transform: translateY(-6px);
    box-shadow:
        0 8px 12px rgba(20, 33, 61, .06),
        0 28px 56px rgba(20, 33, 61, .2);
}
.htest-card__media {
    position: absolute;
    inset: 0;
    display: block;
}
.htest-card__bg {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .55s cubic-bezier(.22, 1, .36, 1);
}
.htest-card:hover .htest-card__bg {
    transform: scale(1.06);
}
.htest-card__overlay {
    position: absolute;
    inset: 0;
    background:
        linear-gradient(145deg, rgba(15, 23, 44, .15) 0%, rgba(15, 23, 44, .05) 42%, rgba(15, 23, 44, .82) 100%);
    transition: opacity .28s ease;
}
.htest-card--bigfive .htest-card__overlay {
    background:
        linear-gradient(135deg, rgba(139, 30, 45, .35) 0%, transparent 45%),
        linear-gradient(180deg, rgba(15, 23, 44, .08) 0%, rgba(10, 16, 32, .88) 100%);
}
.htest-card--holland .htest-card__overlay {
    background:
        linear-gradient(135deg, rgba(45, 154, 138, .28) 0%, transparent 48%),
        linear-gradient(180deg, rgba(15, 23, 44, .08) 0%, rgba(8, 20, 28, .9) 100%);
}
.htest-card__shine {
    position: absolute;
    inset: 0;
    background: linear-gradient(115deg, transparent 38%, rgba(255, 255, 255, .12) 50%, transparent 62%);
    transform: translateX(-120%);
    transition: transform .65s ease;
    pointer-events: none;
}
.htest-card:hover .htest-card__shine {
    transform: translateX(120%);
}
.htest-card__badge {
    position: absolute;
    top: 1.25rem;
    right: 1.25rem;
    z-index: 2;
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border-radius: 16px;
    background: rgba(255, 255, 255, .14);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    border: 1px solid rgba(255, 255, 255, .22);
    color: #fff;
    box-shadow: 0 8px 24px rgba(0, 0, 0, .2);
}
.htest-card__badge--teal {
    background: rgba(45, 154, 138, .25);
    border-color: rgba(45, 154, 138, .45);
}
.htest-card__badge .icon {
    width: 26px;
    height: 26px;
}
.htest-card__content {
    position: relative;
    z-index: 1;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    justify-content: flex-end;
    gap: .5rem;
    padding: 1.65rem 1.75rem 1.75rem;
    width: 100%;
    margin-top: auto;
}
.htest-card__tags {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    gap: .45rem;
}
.htest-card__tag {
    display: inline-block;
    padding: .34rem .85rem;
    font-size: .68rem;
    font-weight: 800;
    letter-spacing: .08em;
    text-transform: uppercase;
    color: #fff;
    background: var(--htest-accent);
    border-radius: 999px;
    line-height: 1;
    box-shadow: 0 4px 12px var(--htest-accent-soft);
}
.htest-card__tag--navy {
    background: var(--brand-700, #1d2b4c);
    box-shadow: 0 4px 12px rgba(29, 43, 76, .35);
}
.htest-card__chip {
    display: inline-block;
    padding: .32rem .72rem;
    font-size: .66rem;
    font-weight: 700;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: rgba(255, 255, 255, .92);
    background: rgba(255, 255, 255, .12);
    border: 1px solid rgba(255, 255, 255, .2);
    border-radius: 999px;
    backdrop-filter: blur(6px);
    -webkit-backdrop-filter: blur(6px);
}
.htest-card__name {
    font-size: clamp(1.25rem, 2.2vw, 1.55rem);
    font-weight: 800;
    letter-spacing: -.02em;
    color: #fff;
    line-height: 1.15;
    text-shadow: 0 2px 16px rgba(0, 0, 0, .35);
}
.htest-card__desc {
    max-width: 440px;
    font-size: .9rem;
    line-height: 1.55;
    color: rgba(255, 255, 255, .88);
}
.htest-card__meta {
    display: flex;
    flex-wrap: wrap;
    gap: .65rem 1rem;
    margin-top: .15rem;
    font-size: .78rem;
    font-weight: 600;
    color: rgba(255, 255, 255, .75);
}
.htest-card__meta span {
    display: inline-flex;
    align-items: center;
    gap: .35rem;
}
.htest-card__meta .icon {
    opacity: .85;
}
.htest-card__cta {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    margin-top: .55rem;
    padding: .68rem 1.4rem;
    font-size: .88rem;
    font-weight: 800;
    color: var(--brand-800, #141e36);
    background: #fff;
    border-radius: 999px;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .28);
    transition: transform .2s ease, box-shadow .2s ease;
}
.htest-card__cta--teal {
    color: #0d4f4a;
}
.htest-card:hover .htest-card__cta {
    transform: translateX(4px);
    box-shadow: 0 10px 26px rgba(0, 0, 0, .32);
}
.htest-card__cta .icon {
    transition: transform .18s ease;
}
.htest-card:hover .htest-card__cta .icon {
    transform: translateX(3px);
}
.htest-card:focus-visible {
    outline: 3px solid var(--htest-accent);
    outline-offset: 3px;
}

@media (max-width: 900px) {
    .htests { padding: 3.5rem 0; }
    .htests__grid {
        grid-template-columns: 1fr;
        gap: 1.1rem;
    }
    .htest-card { min-height: 320px; }
}
@media (max-width: 640px) {
    .htest-card__content { padding: 1.3rem 1.25rem 1.35rem; }
    .htest-card__badge {
        width: 44px;
        height: 44px;
        top: 1rem;
        right: 1rem;
    }
    .htest-card__cta {
        width: 100%;
        justify-content: center;
    }
}

/* ============================================================
   ÖĞRENCİ RÖPORTAJLARI — footer üstü video grid
   ============================================================ */
.hintv {
    padding: 4.5rem 0 5rem;
    background: #fff;
    border-top: 1px solid var(--ink-100);
}
.hintv__head {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    margin-bottom: 2.25rem;
}
.hintv__eyebrow {
    display: inline-flex;
    align-items: center;
    gap: .45rem;
    padding: .42rem 1.05rem;
    margin-bottom: 1rem;
    font-size: .75rem;
    font-weight: 800;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: #fff;
    background: var(--accent-500, #e11d2f);
    border-radius: 999px;
    line-height: 1;
}
.hintv__title {
    margin: 0 0 .6rem;
    font-size: clamp(1.7rem, 3.4vw, 2.35rem);
    font-weight: 800;
    letter-spacing: -.02em;
    line-height: 1.2;
    color: var(--brand-700, #1d2b4c);
}
.hintv__title em {
    font-style: normal;
    color: var(--accent-500, #e11d2f);
}
.hintv__sub {
    margin: 0;
    max-width: 560px;
    font-size: 1rem;
    line-height: 1.6;
    color: var(--ink-600);
}
.hintv__grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.35rem;
}

.hintv-card {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--ink-200);
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 8px 22px rgba(20, 33, 61, .08);
    transition: transform .2s ease, box-shadow .2s ease;
}
.hintv-card:hover {
    transform: translateY(-3px);
    box-shadow: 0 14px 32px rgba(20, 33, 61, .14);
}
.hintv-card__media {
    position: relative;
    display: block;
    width: 100%;
    padding: 0;
    border: 0;
    background: var(--brand-800);
    cursor: pointer;
    aspect-ratio: 16 / 9;
    overflow: hidden;
}
.hintv-card__thumb {
    display: block;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .35s ease;
}
.hintv-card:hover .hintv-card__thumb { transform: scale(1.04); }
.hintv-card__play {
    position: absolute;
    inset: 0;
    display: flex;
    align-items: center;
    justify-content: center;
    background: rgba(15, 23, 44, .28);
    transition: background .2s ease;
}
.hintv-card__play .icon {
    width: 52px;
    height: 52px;
    padding: .85rem;
    color: var(--accent-500, #e11d2f);
    background: #fff;
    border-radius: 50%;
    box-shadow: 0 8px 22px rgba(0, 0, 0, .28);
}
.hintv-card__media:hover .hintv-card__play { background: rgba(15, 23, 44, .38); }
.hintv-card__body {
    padding: 1rem 1.1rem 1.15rem;
}
.hintv-card__title {
    margin: 0 0 .45rem;
    font-size: .98rem;
    font-weight: 800;
    line-height: 1.35;
    color: var(--brand-700, #1d2b4c);
    display: -webkit-box;
    -webkit-line-clamp: 2;
    -webkit-box-orient: vertical;
    overflow: hidden;
}
.hintv-card__uni {
    display: flex;
    align-items: center;
    gap: .4rem;
    margin: 0;
    font-size: .82rem;
    font-weight: 600;
    color: var(--ink-500);
}
.hintv-card__uni .icon {
    flex-shrink: 0;
    color: var(--accent-500, #e11d2f);
}

/* Video modal */
.hintv-modal[hidden] { display: none; }
.hintv-modal {
    position: fixed;
    inset: 0;
    z-index: 1200;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 1.25rem;
}
.hintv-modal__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(10, 16, 30, .78);
}
.hintv-modal__dialog {
    position: relative;
    z-index: 1;
    width: min(920px, 100%);
    background: #fff;
    border-radius: 18px;
    overflow: hidden;
    box-shadow: 0 28px 64px rgba(0, 0, 0, .35);
}
.hintv-modal__close {
    position: absolute;
    top: .75rem;
    right: .75rem;
    z-index: 2;
    display: flex;
    align-items: center;
    justify-content: center;
    width: 38px;
    height: 38px;
    padding: 0;
    border: 0;
    border-radius: 50%;
    background: rgba(255, 255, 255, .95);
    color: var(--brand-700);
    cursor: pointer;
    box-shadow: 0 4px 12px rgba(0, 0, 0, .2);
}
.hintv-modal__title {
    margin: 0;
    padding: 1rem 3.25rem .75rem 1.15rem;
    font-size: 1rem;
    font-weight: 800;
    color: var(--brand-700);
    line-height: 1.35;
    border-bottom: 1px solid var(--ink-100);
}
.hintv-modal__frame-wrap {
    position: relative;
    aspect-ratio: 16 / 9;
    background: #000;
}
.hintv-modal__frame {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    border: 0;
}

@media (max-width: 1024px) {
    .hintv__grid { grid-template-columns: repeat(2, 1fr); }
}
@media (max-width: 640px) {
    .hintv { padding: 3.25rem 0 3.75rem; }
    .hintv__grid { grid-template-columns: 1fr; gap: 1rem; }
}

/* ---------- Boş durum ---------- */
.hf-empty {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    gap: .8rem;
    padding: 3.25rem 1.5rem;
    background: #fff;
    border: 1px dashed var(--ink-300, #cbd5e1);
    border-radius: 18px;
    text-align: center;
}
.hf-empty__icon {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--ink-50);
    color: var(--ink-400);
}
.hf-empty__icon .icon { width: 26px; height: 26px; }
.hf-empty__text {
    margin: 0;
    font-size: .95rem;
    font-weight: 600;
    color: var(--ink-500);
}

/* ---------- Responsive ---------- */
@media (max-width: 640px) {
    .home-fairs { padding: 3rem 0; }
    .home-fairs__intro { gap: 1.35rem; margin-bottom: 1.5rem; }
    .home-fairs__title { font-size: clamp(1.55rem, 6vw, 1.85rem); }
    .home-fairs__foot { margin-top: 1.35rem; }
    .home-fairs__cta { width: 100%; justify-content: center; }
    .hf-tabs {
        gap: .5rem;
        width: 100%;
    }
    .hf-tab {
        flex: 1 1 calc(50% - .25rem);
        min-width: 0;
        padding: .62rem .85rem;
        font-size: .78rem;
        white-space: normal;
        text-align: center;
        line-height: 1.25;
    }
    .hf-grid { grid-template-columns: 1fr; }
}
