:root {
    --ink: #14121f;
    --ink-2: #241f38;
    --muted: #6b6880;
    --muted-2: #9a97ad;
    --line: #e7e4f0;
    --line-2: #efedf6;
    --bg: #ffffff;
    --bg-soft: #f7f6fb;
    --bg-deep: #14121f;
    --brand: #5b2bd9;
    --brand-2: #8b5cf6;
    --brand-soft: #f0eaff;
    --brand-deep: #3f1c9e;
    --accent: #c6f24a;
    --accent-2: #d9ff6d;
    --accent-ink: #1d2a00;
    --ok: #10b981;
    --err: #e11d48;
    --radius: 20px;
    --radius-sm: 12px;
    --radius-lg: 32px;
    --shadow-sm: 0 4px 18px -6px rgba(20, 18, 31, .14);
    --shadow: 0 18px 50px -20px rgba(20, 18, 31, .28);
    --shadow-lg: 0 40px 90px -35px rgba(20, 18, 31, .45);
    --ease: cubic-bezier(.22, 1, .36, 1);
    --container: 1220px;
    --topbar-h: 40px;
    --header-h: 76px;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box
}

html {
    scroll-behavior: smooth;
    scroll-padding-top: 120px;
    -webkit-text-size-adjust: 100%
}

body {
    font-family: 'Manrope', system-ui, -apple-system, 'Segoe UI', sans-serif;
    color: var(--ink);
    background: var(--bg);
    line-height: 1.7;
    font-size: 16px;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
}

body.no-scroll {
    overflow: hidden
}

h1,
h2,
h3,
h4,
h5,
.display {
    line-height: 1.12;
    letter-spacing: -.025em;
    font-weight: 600
}

img {
    max-width: 100%;
    display: block
}

a {
    color: inherit;
    text-decoration: none
}

button,
input,
textarea,
select {
    font: inherit;
    color: inherit;
    background: none;
    border: none
}

button {
    cursor: pointer
}

ul {
    list-style: none
}

:focus-visible {
    outline: 3px solid var(--brand-2);
    outline-offset: 3px;
    border-radius: 6px
}

::selection {
    background: var(--accent);
    color: var(--accent-ink)
}

.container {
    width: 100%;
    max-width: var(--container);
    margin-inline: auto;
    padding-inline: 24px
}

.section {
    padding: 104px 0;
    position: relative
}

.section--tight {
    padding: 72px 0
}

.section--soft {
    background: var(--bg-soft)
}

.section--dark {
    background: var(--bg-deep);
    color: #fff
}

.section--dark .lead,
.section--dark .sec-desc {
    color: #a9a5bd
}

/* ============ 2. YARDIMCILAR ============ */
.eyebrow {
    display: inline-flex;
    align-items: center;
    gap: 9px;
    font-size: 12px;
    font-weight: 800;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--brand);
    background: var(--brand-soft);
    padding: 7px 15px;
    border-radius: 8px;
    margin-bottom: 18px;
}

.eyebrow::before {
    content: "";
    width: 6px;
    height: 6px;
    background: currentColor;
    transform: rotate(45deg)
}

.section--dark .eyebrow {
    background: rgba(139, 92, 246, .16);
    color: #c4b5fd
}

.eyebrow--accent {
    background: var(--accent);
    color: var(--accent-ink)
}

.sec-title {
    font-size: clamp(30px, 4.2vw, 52px);
    margin-bottom: 18px
}

.sec-title em {
    font-style: normal;
    color: var(--brand);
    position: relative;
    white-space: nowrap
}

.sec-title em::after {
    content: "";
    position: absolute;
    left: 0;
    right: 0;
    bottom: 6px;
    height: 10px;
    background: var(--accent);
    opacity: .55;
    z-index: -1;
    border-radius: 2px
}

.section--dark .sec-title em {
    color: var(--accent)
}

.section--dark .sec-title em::after {
    background: rgba(198, 242, 74, .25)
}

.sec-desc {
    color: var(--muted);
    max-width: 640px;
    font-size: 17px
}

.head {
    margin-bottom: 52px;
    max-width: 760px
}

.head--split {
    max-width: none;
    display: flex;
    justify-content: space-between;
    align-items: flex-end;
    gap: 36px;
    flex-wrap: wrap
}

.head--split .head-l {
    max-width: 660px
}

.head--center {
    margin-inline: auto;
    text-align: center
}

.head--center .sec-desc {
    margin-inline: auto
}

.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 9px;
    padding: 14px 26px;
    border-radius: 10px;
    border: 1.5px solid transparent;
    font-weight: 700;
    font-size: 15px;
    letter-spacing: -.01em;
    position: relative;
    overflow: hidden;
    transition: transform .3s var(--ease), box-shadow .3s var(--ease), background .25s, color .25s, border-color .25s;
}

.btn:hover {
    transform: translateY(-2px)
}

.btn:active {
    transform: translateY(0)
}

.btn svg {
    flex: none;
    transition: transform .3s var(--ease)
}

.btn:hover svg {
    transform: translateX(3px)
}

.btn-primary {
    background: var(--brand);
    color: #fff;
    box-shadow: 0 14px 30px -14px rgba(91, 43, 217, .85)
}

.btn-primary:hover {
    background: var(--brand-deep);
    box-shadow: 0 20px 40px -16px rgba(91, 43, 217, .9)
}

.btn-accent {
    background: var(--accent);
    color: var(--accent-ink);
    box-shadow: 0 14px 30px -16px rgba(198, 242, 74, .9)
}

.btn-accent:hover {
    background: var(--accent-2)
}

.btn-dark {
    background: var(--ink);
    color: #fff
}

.btn-dark:hover {
    background: var(--ink-2)
}

.btn-ghost {
    border-color: var(--line);
    color: var(--ink);
    background: #fff
}

.btn-ghost:hover {
    border-color: var(--brand);
    color: var(--brand);
    background: var(--brand-soft)
}

.section--dark .btn-ghost {
    background: transparent;
    border-color: rgba(255, 255, 255, .22);
    color: #fff
}

.section--dark .btn-ghost:hover {
    border-color: var(--accent);
    color: var(--accent);
    background: rgba(198, 242, 74, .08)
}

.btn-sm {
    padding: 10px 18px;
    font-size: 14px;
    border-radius: 9px
}

.btn-block {
    width: 100%
}

.btn-lg {
    padding: 17px 34px;
    font-size: 16px
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    font-weight: 700;
    color: var(--brand);
    font-size: 15px
}

.link-arrow svg {
    transition: transform .3s var(--ease)
}

.link-arrow:hover svg {
    transform: translateX(4px)
}

.section--dark .link-arrow {
    color: var(--accent)
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .04em;
    padding: 5px 11px;
    border-radius: 7px;
    background: var(--brand-soft);
    color: var(--brand);
    text-transform: uppercase
}

.tag--accent {
    background: var(--accent);
    color: var(--accent-ink)
}

.tag--line {
    background: transparent;
    border: 1px solid var(--line);
    color: var(--muted)
}

.tag--dark {
    background: rgba(255, 255, 255, .1);
    color: #fff
}

.card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: transform .4s var(--ease), box-shadow .4s var(--ease), border-color .3s
}

.card:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: transparent
}

.card-media {
    position: relative;
    aspect-ratio: 16/10;
    overflow: hidden;
    background: var(--bg-soft)
}

.card-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease)
}

.card:hover .card-media img {
    transform: scale(1.06)
}

.card-media .tag {
    position: absolute;
    left: 14px;
    top: 14px;
    backdrop-filter: blur(6px)
}

.card-body {
    padding: 22px
}

.card-title {
    font-size: 19px;
    margin-bottom: 8px
}

.card-text {
    color: var(--muted);
    font-size: 14.5px
}

.card-foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    padding: 16px 22px;
    border-top: 1px solid var(--line-2)
}

/* Slider iskeleti */
.rail-wrap {
    position: relative
}

.rail {
    display: flex;
    gap: 22px;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    scroll-behavior: smooth;
    padding-bottom: 8px;
    scrollbar-width: none
}

.rail::-webkit-scrollbar {
    display: none
}

.rail>* {
    scroll-snap-align: start;
    flex: 0 0 auto
}

.rail-nav {
    display: flex;
    gap: 10px
}

.rail-btn {
    width: 46px;
    height: 46px;
    border-radius: 12px;
    border: 1.5px solid var(--line);
    display: grid;
    place-items: center;
    background: #fff;
    transition: .25s
}

.rail-btn:hover {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff
}

.rail-btn:disabled {
    opacity: .35;
    cursor: not-allowed
}

.section--dark .rail-btn {
    background: transparent;
    border-color: rgba(255, 255, 255, .2);
    color: #fff
}

.section--dark .rail-btn:hover {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--accent-ink)
}

/* Reveal animasyonu */
.reveal {
    opacity: 0;
    transform: translateY(26px);
    transition: opacity .7s var(--ease), transform .7s var(--ease)
}

.reveal.in {
    opacity: 1;
    transform: none
}

@media (prefers-reduced-motion:reduce) {
    * {
        animation-duration: .01ms !important;
        transition-duration: .01ms !important;
        scroll-behavior: auto !important
    }

    .reveal {
        opacity: 1;
        transform: none
    }
}

.sr-only {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0 0 0 0);
    white-space: nowrap;
    border: 0
}

.skip-link {
    position: fixed;
    top: -100px;
    left: 16px;
    z-index: 9999;
    background: var(--brand);
    color: #fff;
    padding: 12px 20px;
    border-radius: 10px;
    transition: top .25s
}

.skip-link:focus {
    top: 16px
}

/* ============ 3. TOPBAR & HEADER ============ */
.topbar {
    background: var(--ink);
    color: #cfcbe0;
    font-size: 13px;
    height: var(--topbar-h);
    display: flex;
    align-items: center
}

.topbar .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px
}

.topbar-l,
.topbar-r {
    display: flex;
    align-items: center;
    gap: 22px
}

.topbar a {
    transition: color .2s
}

.topbar a:hover {
    color: var(--accent)
}

.tb-item {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    white-space: nowrap
}

.tb-item svg {
    opacity: .7
}

.socials {
    display: flex;
    align-items: center;
    gap: 14px
}

.socials a {
    display: grid;
    place-items: center;
    width: 26px;
    height: 26px;
    border-radius: 7px;
    background: rgba(255, 255, 255, .07)
}

.socials a:hover {
    background: var(--brand);
    color: #fff
}

.lang {
    display: flex;
    align-items: center;
    gap: 2px;
    background: rgba(255, 255, 255, .07);
    border-radius: 7px;
    padding: 3px
}

.lang button {
    padding: 2px 10px;
    border-radius: 5px;
    font-size: 12px;
    font-weight: 700;
    color: #cfcbe0;
    transition: .2s
}

.lang button.on {
    background: var(--accent);
    color: var(--accent-ink)
}

.header {
    position: sticky;
    top: 0;
    z-index: 900;
    background: rgba(255, 255, 255, .92);
    backdrop-filter: blur(14px);
    border-bottom: 1px solid var(--line-2);
    transition: box-shadow .3s, transform .35s var(--ease)
}

.header.stuck {
    box-shadow: 0 10px 30px -18px rgba(20, 18, 31, .35)
}

.header-in {
    height: var(--header-h);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 24px
}

.brand {
    display: flex;
    align-items: center;
    gap: 12px;
    flex: none
}

.brand img {
    height: 44px;
    width: auto;
    object-fit: contain
}

.brand-txt {
    display: flex;
    flex-direction: column;
    line-height: 1.05
}

.brand-txt b {
    font-size: 18px;
    letter-spacing: -.02em
}

.brand-txt span {
    font-size: 10.5px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted-2);
    font-weight: 700
}

.nav {
    display: flex;
    align-items: center;
    gap: 2px
}

.nav>li {
    position: relative
}

.nav>li>a,
.nav>li>button {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    padding: 10px 14px;
    border-radius: 9px;
    font-size: 14.5px;
    font-weight: 700;
    letter-spacing: -.01em;
    transition: .2s;
    white-space: nowrap
}

.nav>li>a:hover,
.nav>li>button:hover,
.nav>li.open>button {
    background: var(--brand-soft);
    color: var(--brand)
}

.nav .caret {
    transition: transform .25s
}

.nav>li.open .caret {
    transform: rotate(180deg)
}

/* Mega menü */
.mega {
    position: absolute;
    top: calc(100% + 14px);
    left: 50%;
    transform: translate(-50%, 10px);
    width: min(760px, 86vw);
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow-lg);
    padding: 26px;
    opacity: 0;
    visibility: hidden;
    transition: .3s var(--ease);
    z-index: 50
}

.nav>li.open .mega {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, 0)
}

.mega::before {
    content: "";
    position: absolute;
    top: -8px;
    left: 50%;
    transform: translateX(-50%) rotate(45deg);
    width: 16px;
    height: 16px;
    background: #fff;
    border-left: 1px solid var(--line);
    border-top: 1px solid var(--line)
}

.mega-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 26px
}

.mega-col h4 {
    font-size: 12px;
    letter-spacing: .16em;
    text-transform: uppercase;
    color: var(--muted-2);
    margin-bottom: 12px;
    font-weight: 800
}

.mega-link {
    display: flex;
    gap: 12px;
    padding: 11px 12px;
    border-radius: 12px;
    transition: .22s
}

.mega-link:hover {
    background: var(--bg-soft)
}

.mega-link .mi {
    width: 38px;
    height: 38px;
    flex: none;
    border-radius: 10px;
    background: var(--brand-soft);
    color: var(--brand);
    display: grid;
    place-items: center
}

.mega-link:hover .mi {
    background: var(--brand);
    color: #fff
}

.mega-link b {
    display: block;
    font-size: 14.5px;
    font-weight: 700
}

.mega-link span {
    display: block;
    font-size: 12.5px;
    color: var(--muted);
    line-height: 1.5
}

.mega-promo {
    background: var(--ink);
    color: #fff;
    border-radius: 16px;
    padding: 20px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    gap: 14px;
    min-height: 150px;
    background-image: linear-gradient(140deg, rgba(91, 43, 217, .9), rgba(20, 18, 31, .95)), url('https://images.unsplash.com/photo-1552664730-d307ca884978?auto=format&fit=crop&w=700&q=70');
    background-size: cover;
    background-position: center
}

.mega-promo b {
    font-size: 18px;
    display: block
}

.mega-promo p {
    font-size: 13px;
    color: #c9c4de
}

.header-r {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: none
}

.icon-btn {
    width: 44px;
    height: 44px;
    border-radius: 11px;
    border: 1.5px solid var(--line);
    display: grid;
    place-items: center;
    transition: .22s;
    background: #fff
}

.icon-btn:hover {
    border-color: var(--brand);
    color: var(--brand);
    background: var(--brand-soft)
}

/* hamburger: kutusuz, iki çizgi, 44px dokunma alanı */
.burger {
    display: none;
    width: 44px;
    height: 44px;
    border: 0;
    background: none;
    border-radius: 0;
    margin-right: -10px
}

.burger:hover {
    background: none;
    border-color: transparent;
    color: inherit
}

.burger span {
    display: block;
    width: 18px;
    height: 1.5px;
    background: currentColor;
    border-radius: 1px;
    transition: transform .4s var(--ease), width .3s var(--ease), opacity .2s
}

.burger span+span {
    margin-top: 5px
}

.burger span:nth-child(2) {
    display: none
}

.burger:hover span:nth-child(1) {
    width: 12px
}

.burger.on span:nth-child(1) {
    transform: translateY(3.25px) rotate(45deg);
    width: 18px
}

.burger.on span:nth-child(3) {
    transform: translateY(-3.25px) rotate(-45deg)
}

/* Mobil menü */
.mnav {
    position: fixed;
    inset: var(--header-h) 0 0;
    background: #fff;
    z-index: 880;
    transform: translateX(100%);
    transition: transform .4s var(--ease);
    overflow-y: auto;
    padding: 24px 0 120px;
    visibility: hidden
}

.mnav.on {
    transform: none;
    visibility: visible
}

.mnav .container>a,
.macc-head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    width: 100%;
    padding: 16px 4px;
    border-bottom: 1px solid var(--line-2);
    font-weight: 700;
    font-size: 17px;
}

.macc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s var(--ease)
}

.macc.on .macc-body {
    max-height: 420px
}

.macc.on .macc-head svg {
    transform: rotate(180deg)
}

.macc-head svg {
    transition: transform .3s
}

.macc-body a {
    display: block;
    padding: 11px 16px;
    color: var(--muted);
    font-size: 15px;
    border-bottom: 1px solid var(--line-2)
}

.macc-body a:hover {
    color: var(--brand)
}

.mnav-cta {
    margin-top: 24px;
    display: grid;
    gap: 10px
}

/* ============ 4. ARAMA & KULAKÇIK ============ */
.search-ov {
    position: fixed;
    inset: 0;
    z-index: 960;
    background: rgba(20, 18, 31, .6);
    backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: .3s
}

.search-ov.on {
    opacity: 1;
    visibility: visible
}

.search-box {
    background: #fff;
    max-width: 760px;
    margin: 12vh auto 0;
    border-radius: var(--radius);
    padding: 28px;
    transform: translateY(-18px);
    transition: transform .35s var(--ease);
    box-shadow: var(--shadow-lg)
}

.search-ov.on .search-box {
    transform: none
}

.search-field {
    display: flex;
    align-items: center;
    gap: 14px;
    border-bottom: 2px solid var(--ink);
    padding-bottom: 14px
}

.search-field input {
    flex: 1;
    font-size: 22px;
    font-weight: 500
}

.search-field input::placeholder {
    color: var(--muted-2)
}

.search-hint {
    margin-top: 18px;
    font-size: 13px;
    color: var(--muted);
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    align-items: center
}

.search-hint a {
    padding: 6px 12px;
    border: 1px solid var(--line);
    border-radius: 100px;
    transition: .2s
}

.search-hint a:hover {
    background: var(--brand-soft);
    border-color: var(--brand);
    color: var(--brand)
}

.search-results {
    margin-top: 20px;
    max-height: 44vh;
    overflow: auto;
    display: grid;
    gap: 6px
}

.sr-item {
    display: flex;
    gap: 14px;
    align-items: center;
    padding: 12px;
    border-radius: 12px;
    transition: .2s
}

.sr-item:hover {
    background: var(--bg-soft)
}

.sr-item .tag {
    flex: none
}

.sr-item b {
    font-size: 15px;
    font-weight: 700
}

.sr-item p {
    font-size: 13px;
    color: var(--muted);
    margin: 0
}

.sr-empty {
    padding: 22px;
    text-align: center;
    color: var(--muted);
    font-size: 14px
}

/* Sabit teklif kulakçığı */
.tab-cta {
    position: fixed;
    right: 0;
    top: 50%;
    transform: translateY(-50%);
    z-index: 850;
    background: var(--accent);
    color: var(--accent-ink);
    font-weight: 800;
    font-size: 14px;
    letter-spacing: .06em;
    padding: 20px 12px;
    border-radius: 14px 0 0 14px;
    writing-mode: vertical-rl;
    text-orientation: mixed;
    display: flex;
    align-items: center;
    gap: 10px;
    box-shadow: -8px 12px 34px -14px rgba(20, 18, 31, .5);
    transition: padding .3s var(--ease), background .25s
}

.tab-cta:hover {
    padding-right: 18px;
    background: var(--accent-2)
}

.tab-cta svg {
    transform: rotate(90deg)
}

.tab-cta::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: inherit;
    box-shadow: 0 0 0 0 rgba(198, 242, 74, .7);
    animation: pulseCta 2.6s infinite
}

@keyframes pulseCta {
    0% {
        box-shadow: 0 0 0 0 rgba(198, 242, 74, .6)
    }

    70% {
        box-shadow: 0 0 0 16px rgba(198, 242, 74, 0)
    }

    100% {
        box-shadow: 0 0 0 0 rgba(198, 242, 74, 0)
    }
}

/* Mobil alt bar */
.mobile-bar {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 850;
    display: none;
    background: rgba(255, 255, 255, .96);
    backdrop-filter: blur(12px);
    border-top: 1px solid var(--line);
    padding: 10px 14px calc(10px + env(safe-area-inset-bottom));
    gap: 10px
}

.mobile-bar .btn {
    flex: 1
}

/* Scroll ilerleme */
.progress {
    position: fixed;
    top: 0;
    left: 0;
    height: 3px;
    width: 0;
    background: linear-gradient(90deg, var(--brand), var(--accent));
    z-index: 999;
    transition: width .1s linear
}

/* ============ 5. HERO (tasarim4 hero portu) ============ */
.hero {
    /* hero'ya özel token'lar — sayfanın geri kalanını etkilemez */
    --h-violet: #6020d2;
    --h-amber: #ffb606;
    --h-ink: #140d2b;
    --h-body: #4b4467;
    --h-line: #e8e4f6;
    --h-lilac: #f5f3ff;
    --h-lilac-2: #ece8ff;
    --h-grad: linear-gradient(115deg, #6a11cb 0%, #6020d2 38%, #2575fc 100%);
    --h-grad-2: linear-gradient(115deg, #2575fc, #12c6a3);
    --h-grad-3: linear-gradient(115deg, #ffb606, #e62640);
    --h-grad-text: linear-gradient(100deg, #6a11cb, #2575fc 60%, #12c6a3);
    --h-sh-sm: 0 2px 8px rgba(96, 32, 210, .06);
    --h-sh: 0 14px 34px -14px rgba(96, 32, 210, .24), 0 3px 10px rgba(96, 32, 210, .05);
    --h-sh-lg: 0 40px 70px -30px rgba(96, 32, 210, .42), 0 10px 24px -14px rgba(96, 32, 210, .20);
    --h-sh-amber: 0 18px 40px -18px rgba(255, 182, 6, .6);
    --h-sq: 34px 34px 34px 6px;
    --h-sq-r: 34px 34px 6px 34px;
    --h-pill: 999px;
    --h-bounce: cubic-bezier(.34, 1.56, .64, 1);
    position: relative;
    overflow: hidden;
    background: #fff;
    color: var(--h-body);
    padding: clamp(40px, 6vw, 80px) 0 clamp(56px, 7vw, 90px);
}

.blob {
    position: absolute;
    border-radius: 50%;
    filter: blur(60px);
    opacity: .5;
    pointer-events: none
}

.blob-1 {
    width: 46vw;
    height: 46vw;
    max-width: 620px;
    max-height: 620px;
    background: #c4b5fd;
    top: -16%;
    right: -10%
}

.blob-2 {
    width: 32vw;
    height: 32vw;
    max-width: 420px;
    max-height: 420px;
    background: #a7d8ff;
    bottom: -14%;
    left: -8%;
    opacity: .45
}

.blob-3 {
    width: 20vw;
    height: 20vw;
    max-width: 260px;
    max-height: 260px;
    background: #ffd98a;
    top: 44%;
    right: 34%;
    opacity: .35
}

.hero-dots-bg {
    position: absolute;
    inset: 0;
    pointer-events: none;
    opacity: .5;
    background-image: radial-gradient(rgba(96, 32, 210, .14) 1.4px, transparent 1.4px);
    background-size: 26px 26px;
    mask-image: radial-gradient(70% 60% at 50% 40%, #000, transparent 75%);
    -webkit-mask-image: radial-gradient(70% 60% at 50% 40%, #000, transparent 75%);
}

.hero .container {
    position: relative;
    z-index: 2;
    display: grid;
    gap: clamp(40px, 5vw, 56px);
    align-items: center
}

@media (min-width:1020px) {
    .hero .container {
        grid-template-columns: 1.05fr .95fr
    }
}

.hero .d1 {
    transition-delay: .07s
}

.hero .d2 {
    transition-delay: .14s
}

.hero .d3 {
    transition-delay: .21s
}

.hero .d4 {
    transition-delay: .28s
}

.hero-chip {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 6px 16px 6px 6px;
    border-radius: var(--h-pill);
    background: #fff;
    box-shadow: var(--h-sh-sm);
    border: 1px solid var(--h-line);
    font-size: 13.5px;
    font-weight: 500;
    color: var(--h-body);
}

.hero-chip .n {
    padding: 5px 11px;
    border-radius: var(--h-pill);
    background: var(--h-grad);
    color: #fff;
    font-size: 12px;
    font-weight: 700;
    letter-spacing: .03em;
}

.hero h1 {
    margin: 24px 0 0;
    color: var(--h-ink);
    font-size: clamp(2.4rem, 6.4vw, 4.7rem);
    letter-spacing: -.045em;
    font-weight: 700
}

.rotor {
    display: block;
    position: relative;
    /* Yükseklik span puntosuna göre (55px x 1.12) — aksi halde dönen yazının
       altında boşluk kalıyordu. */
    height: 62px;
    overflow: hidden;
    margin-top: .05em
}

.rotor span {
    position: absolute;
    inset: 0;
    display: block;
    font-size: 55px;
    line-height: 1.12;
    white-space: nowrap;
    background: var(--h-grad-text);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
    opacity: 0;
    transform: translateY(70%) rotate(2deg);
    transition: opacity .5s var(--ease), transform .6s var(--h-bounce);
}

.rotor span.on {
    opacity: 1;
    transform: none
}

.rotor span.out {
    opacity: 0;
    transform: translateY(-70%) rotate(-2deg)
}

.hero p.lead {
    margin-top: 26px;
    color: var(--h-body);
    font-size: clamp(1.05rem, 1.5vw, 1.22rem);
    max-width: 52ch
}

.hero .hl {
    position: relative;
    display: inline-block;
    z-index: 1;
    font-weight: 700;
    color: var(--h-ink)
}

.hero .hl::after {
    content: "";
    position: absolute;
    left: -2px;
    right: -2px;
    bottom: .06em;
    height: .42em;
    z-index: -1;
    background: var(--h-amber);
    opacity: .32;
    border-radius: 3px;
}

.hero-btns {
    display: flex;
    flex-wrap: wrap;
    gap: 12px;
    margin-top: 32px
}

.hero .btn--amber {
    background: var(--h-amber);
    color: var(--h-ink);
    box-shadow: var(--h-sh-amber)
}

.hero .btn--amber:hover {
    background: #ffc933
}

.hero .btn--line {
    background: none;
    color: var(--h-ink);
    border: 2px solid var(--h-line);
    box-shadow: none
}

.hero .btn--line:hover {
    border-color: var(--h-violet);
    color: var(--h-violet);
    background: var(--h-lilac)
}

.hero-proof {
    display: flex;
    align-items: center;
    gap: 16px;
    margin-top: 36px;
    flex-wrap: wrap
}

.faces {
    display: flex
}

.faces span {
    width: 44px;
    height: 44px;
    border-radius: 50%;
    border: 3px solid #fff;
    margin-left: -12px;
    background: var(--h-grad);
    color: #fff;
    display: grid;
    place-items: center;
    font-size: 13px;
    font-weight: 700;
    box-shadow: var(--h-sh-sm);
}

.faces span:first-child {
    margin-left: 0
}

.faces span:nth-child(2) {
    background: var(--h-grad-2)
}

.faces span:nth-child(3) {
    background: var(--h-grad-3);
    color: var(--h-ink)
}

.faces span:nth-child(4) {
    background: var(--h-ink)
}

.hero-proof p {
    font-size: 14px;
    line-height: 1.45;
    color: var(--h-body)
}

.hero-proof b {
    color: var(--h-ink);
    font-weight: 700
}

.stars {
    color: var(--h-amber);
    letter-spacing: 2px;
    font-size: 14px
}

.shots {
    position: relative;
    padding-block: 10px
}

.shot {
    position: relative;
    overflow: hidden;
    box-shadow: var(--h-sh-lg);
    background: var(--h-lilac-2)
}

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

.shot-main {
    border-radius: var(--h-sq);
    aspect-ratio: 4/3.35
}

.shot-sub {
    position: absolute;
    width: 47%;
    aspect-ratio: 1/1;
    border-radius: var(--h-sq-r);
    border: 6px solid #fff;
    right: -6%;
    bottom: -9%;
}

.sticker {
    position: absolute;
    z-index: 4;
    padding: 12px 18px;
    border-radius: var(--h-pill);
    background: #fff;
    box-shadow: var(--h-sh);
    display: flex;
    align-items: center;
    gap: 10px;
    font-size: 14px;
    font-weight: 600;
    color: var(--h-ink);
}

.sticker .em {
    width: 34px;
    height: 34px;
    border-radius: 50%;
    display: grid;
    place-items: center;
    flex: none;
    color: #fff
}

.st-1 {
    top: 6%;
    left: -6%;
    transform: rotate(-5deg);
    animation: bob 5.5s ease-in-out infinite
}

.st-1 .em {
    background: var(--h-grad-3);
    color: var(--h-ink)
}

.st-2 {
    bottom: 22%;
    left: -9%;
    transform: rotate(4deg);
    animation: bob 6.5s ease-in-out infinite .8s
}

.st-2 .em {
    background: var(--h-grad-2)
}

@keyframes bob {
    50% {
        translate: 0 -12px
    }
}

.spin {
    position: absolute;
    z-index: 5;
    right: -4%;
    top: -5%;
    width: 112px;
    height: 112px;
    display: grid;
    place-items: center
}

.spin>svg.ring {
    grid-area: 1/1;
    place-self: center;
    width: 100%;
    height: 100%;
    display: block;
    transform-origin: 50% 50%;
    animation: heroSpin 18s linear infinite
}

@keyframes heroSpin {
    to {
        rotate: 360deg
    }
}

.spin i {
    grid-area: 1/1;
    place-self: center;
    position: relative;
    z-index: 1;
    width: 56px;
    height: 56px;
    border-radius: 50%;
    background: var(--h-ink);
    color: var(--h-amber);
    display: grid;
    place-items: center;
    font-style: normal;
}

.spin i svg {
    width: 22px;
    height: 22px;
    display: block
}

.spin text {
    font-size: 10.4px;
    font-weight: 700;
    fill: var(--h-violet)
}

@media (prefers-reduced-motion:reduce) {
    .spin>svg.ring {
        animation: none
    }
}

@media (max-width:900px) {
    .spin {
        width: 86px;
        height: 86px;
        right: 0;
        top: -3%
    }

    .spin i {
        width: 44px;
        height: 44px
    }

    .sticker {
        font-size: 13px;
        padding: 10px 14px
    }

    .st-1 {
        left: -2%
    }

    .st-2 {
        left: -4%;
        bottom: 16%
    }

    .shot-sub {
        width: 44%;
        right: -2%;
        bottom: -6%
    }

    .hero-btns .btn {
        flex: 1 1 100%;
        justify-content: center
    }
}

@media (max-width:420px) {
    .hero-chip {
        font-size: 12.5px
    }
}

/* .hero-actions hero dışında da kullanılıyor (hakkımızda vb.) */
.hero-actions {
    display: flex;
    gap: 12px;
    flex-wrap: wrap
}

/* Hızlı erişim şeridi */
.quickbar {
    background: var(--brand);
    color: #fff;
    padding: 0
}

.quickbar-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr)
}

.qb {
    display: flex;
    align-items: center;
    gap: 14px;
    padding: 26px 24px;
    border-right: 1px solid rgba(255, 255, 255, .14);
    transition: .28s
}

.qb:last-child {
    border-right: 0
}

.qb:hover {
    background: var(--brand-deep)
}

.qb i {
    width: 42px;
    height: 42px;
    flex: none;
    border-radius: 11px;
    background: rgba(255, 255, 255, .14);
    display: grid;
    place-items: center
}

.qb b {
    display: block;
    font-size: 15px;
    font-weight: 700
}

.qb span {
    display: block;
    font-size: 12.5px;
    color: #d6cdfa
}

/* ============ HAKKIMIZDA / DEĞERLER / SAYAÇ ============ */
.about-grid {
    display: grid;
    grid-template-columns: 1.05fr .95fr;
    gap: 64px;
    align-items: center
}

.about-media {
    position: relative
}

.about-media .m1 {
    border-radius: var(--radius-lg);
    overflow: hidden;
    aspect-ratio: 4/3;
    box-shadow: var(--shadow)
}

.about-media .m1 img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.about-media .m2 {
    position: absolute;
    right: -24px;
    bottom: -38px;
    width: 56%;
    border-radius: var(--radius);
    overflow: hidden;
    border: 6px solid #fff;
    box-shadow: var(--shadow);
    aspect-ratio: 4/3
}

.about-media .m2 img {
    width: 100%;
    height: 100%;
    object-fit: cover
}

.about-media .badge {
    position: absolute;
    left: -22px;
    top: 28px;
    background: var(--accent);
    color: var(--accent-ink);
    border-radius: 16px;
    padding: 14px 18px;
    box-shadow: var(--shadow-sm);
    font-weight: 800;
    font-size: 13px;
    line-height: 1.3;
    max-width: 170px
}

.about-media .badge b {
    font-size: 26px;
    display: block
}

.play-btn {
    position: absolute;
    inset: 0;
    margin: auto;
    width: 76px;
    height: 76px;
    border-radius: 50%;
    background: #fff;
    color: var(--brand);
    display: grid;
    place-items: center;
    box-shadow: var(--shadow);
    z-index: 3
}

.play-btn::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 50%;
    box-shadow: 0 0 0 0 rgba(255, 255, 255, .6);
    animation: pulseCta 2.4s infinite
}

.lead {
    font-size: 18.5px;
    color: var(--muted);
    margin-bottom: 26px
}

.manifest {
    border-left: 3px solid var(--accent);
    padding-left: 20px;
    font-size: 20px;
    line-height: 1.5;
    margin-bottom: 28px;
    letter-spacing: -.02em
}

.values {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 18px;
    margin-top: 72px
}

.value {
    padding: 26px;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    background: #fff;
    transition: .35s var(--ease);
    position: relative;
    overflow: hidden
}

.value::after {
    content: "";
    position: absolute;
    left: 0;
    top: 0;
    height: 3px;
    width: 0;
    background: var(--accent);
    transition: width .45s var(--ease)
}

.value:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow);
    border-color: transparent
}

.value:hover::after {
    width: 100%
}

.value i {
    width: 48px;
    height: 48px;
    border-radius: 13px;
    background: var(--brand-soft);
    color: var(--brand);
    display: grid;
    place-items: center;
    margin-bottom: 16px
}

.value:hover i {
    background: var(--brand);
    color: #fff
}

.value h4 {
    font-size: 17px;
    margin-bottom: 8px
}

.value p {
    font-size: 14.5px;
    color: var(--muted)
}

.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 20px
}

.stat {
    text-align: center;
    padding: 34px 18px;
    border-right: 1px solid rgba(255, 255, 255, .12)
}

.stat:last-child {
    border-right: 0
}

.stat b {
    font-size: clamp(34px, 4.4vw, 54px);
    color: var(--accent);
    display: block;
    line-height: 1;
    letter-spacing: -.03em
}

.stat span {
    display: block;
    margin-top: 10px;
    font-size: 14px;
    color: #a9a5bd;
    font-weight: 600
}

/* ============ 6. 4'LÜ HİZMET KUTUSU ============ */
.services {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 22px
}

.svc {
    display: flex;
    flex-direction: column;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: .4s var(--ease);
    position: relative
}

.svc:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent
}

.svc-media {
    aspect-ratio: 16/11;
    overflow: hidden;
    position: relative
}

.svc-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease)
}

.svc:hover .svc-media img {
    transform: scale(1.07)
}

.svc-media::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, transparent 45%, rgba(20, 18, 31, .55))
}

.svc-num {
    position: absolute;
    left: 16px;
    top: 14px;
    z-index: 2;
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: var(--accent);
    color: var(--accent-ink);
    display: grid;
    place-items: center;
    font-weight: 800;
    font-size: 15px
}

/* İkon .svc-body içinde: .svc-media overflow:hidden olduğu için orada kırpılıyordu */
.svc-ico {
    position: absolute;
    right: 16px;
    top: -26px;
    z-index: 3;
    width: 52px;
    height: 52px;
    border-radius: 15px;
    background: #fff;
    color: var(--brand);
    display: grid;
    place-items: center;
    box-shadow: var(--shadow-sm)
}

.svc-body {
    padding: 38px 22px 20px;
    flex: 1;
    position: relative
}

.svc-body h3 {
    font-size: 20px;
    margin-bottom: 10px
}

.svc-body p {
    color: var(--muted);
    font-size: 14.5px
}

.svc-list {
    margin-top: 14px;
    display: grid;
    gap: 7px
}

.svc-list li {
    font-size: 13.5px;
    color: var(--muted);
    display: flex;
    gap: 8px;
    align-items: flex-start
}

.svc-list li svg {
    flex: none;
    color: var(--brand);
    margin-top: 4px
}

/* Kapalı durumda 53px yer ayrılır (9px boşluk + 44px buton) — hover'da kart boyu değişmez */
.svc-foot {
    padding: 0 22px 75px;
    display: grid;
    grid-template-columns: 1fr;
    gap: 0;
    transition: padding-bottom .42s var(--ease)
}

.svc:hover .svc-foot,
.svc:focus-within .svc-foot {
    padding-bottom: 22px
}

.svc-foot .btn {
    width: 100%
}

/* "Teklif Alın" butonu kart hover'ında / klavye odağında açılır */
.svc-quote {
    max-height: 0;
    opacity: 0;
    overflow: hidden;
    margin-top: 0;
    transform: translateY(-8px);
    transition: max-height .42s var(--ease), margin-top .42s var(--ease), opacity .3s var(--ease), transform .42s var(--ease)
}

.svc-quote .btn {
    height: 44px
}

.svc:hover .svc-quote,
.svc:focus-within .svc-quote {
    max-height: 44px;
    opacity: 1;
    margin-top: 9px;
    transform: none
}

.svc-body h3 {
    transition: color .3s
}

.svc:hover .svc-body h3 {
    color: var(--brand)
}

.svc:hover .svc-ico {
    transform: translateY(-4px) rotate(-6deg);
    background: var(--brand);
    color: #fff
}

.svc-ico {
    transition: transform .4s var(--ease), background .3s, color .3s
}

.svc:hover .svc-foot .btn-ghost {
    border-color: var(--brand);
    color: var(--brand)
}

/* Dokunmatik ve dar ekranlarda hover yok: buton her zaman açık */
@media (hover:none),
(max-width:980px) {
    .svc-quote {
        max-height: 64px;
        opacity: 1;
        margin-top: 9px;
        transform: none
    }
}

/* ============ 7. ETKİNLİK TAKVİMİ ============ */
.cal-toolbar {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 16px;
    flex-wrap: wrap;
    margin-bottom: 26px
}

.seg {
    display: inline-flex;
    background: var(--bg-soft);
    border: 1px solid var(--line);
    border-radius: 12px;
    padding: 4px;
    gap: 4px
}

.seg button {
    padding: 9px 16px;
    border-radius: 9px;
    font-size: 14px;
    font-weight: 700;
    color: var(--muted);
    transition: .22s;
    display: inline-flex;
    align-items: center;
    gap: 7px
}

.seg button.on {
    background: var(--ink);
    color: #fff
}

.filters {
    display: flex;
    gap: 8px;
    flex-wrap: wrap
}

.chip {
    padding: 9px 16px;
    border: 1.5px solid var(--line);
    border-radius: 100px;
    font-size: 13.5px;
    font-weight: 700;
    color: var(--muted);
    transition: .22s;
    background: #fff
}

.chip:hover {
    border-color: var(--brand);
    color: var(--brand)
}

.chip.on {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff
}

.ev-list {
    display: grid;
    gap: 14px
}

.ev {
    display: grid;
    grid-template-columns: 104px 1fr auto;
    gap: 24px;
    align-items: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px 24px;
    transition: .32s var(--ease)
}

.ev:hover {
    border-color: var(--brand);
    box-shadow: var(--shadow);
    transform: translateX(4px)
}

.ev-date {
    text-align: center;
    border-right: 1px solid var(--line-2);
    padding-right: 20px
}

.ev-date b {
    display: block;
    font-size: 34px;
    line-height: 1;
    color: var(--brand)
}

.ev-date span {
    font-size: 12.5px;
    font-weight: 700;
    letter-spacing: .1em;
    text-transform: uppercase;
    color: var(--muted)
}

.ev-main h4 {
    font-size: 18px;
    margin-bottom: 8px
}

.ev-meta {
    display: flex;
    gap: 16px;
    flex-wrap: wrap;
    font-size: 13px;
    color: var(--muted)
}

.ev-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px
}

.ev-cta {
    display: flex;
    flex-direction: column;
    gap: 8px;
    align-items: flex-end
}

.quota {
    font-size: 12px;
    color: var(--muted)
}

.quota b {
    color: var(--err)
}

.cal-grid {
    display: none;
    grid-template-columns: repeat(7, 1fr);
    gap: 8px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 20px
}

.cal-grid.on {
    display: grid
}

.ev-list.off {
    display: none
}

.cal-dow {
    text-align: center;
    font-size: 12px;
    font-weight: 800;
    color: var(--muted-2);
    text-transform: uppercase;
    letter-spacing: .08em;
    padding: 6px 0
}

.cal-day {
    aspect-ratio: 1;
    border-radius: 12px;
    border: 1px solid var(--line-2);
    padding: 8px;
    font-size: 13px;
    position: relative;
    transition: .22s
}

.cal-day.mut {
    opacity: .35
}

.cal-day.has {
    border-color: var(--brand);
    background: var(--brand-soft);
    cursor: pointer;
    font-weight: 700
}

.cal-day.has:hover {
    background: var(--brand);
    color: #fff
}

.cal-day .dot {
    position: absolute;
    left: 8px;
    bottom: 8px;
    width: 6px;
    height: 6px;
    border-radius: 50%;
    background: var(--accent)
}

.cal-day em {
    font-style: normal;
    font-size: 10px;
    position: absolute;
    left: 8px;
    bottom: 16px;
    color: var(--brand);
    font-weight: 700;
    display: none
}

.cal-day.has em {
    display: block
}

/* ============ 8. EĞİTMENLER ============ */
.trainer {
    width: 280px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden;
    transition: .38s var(--ease)
}

.trainer:hover {
    transform: translateY(-8px);
    box-shadow: var(--shadow-lg);
    border-color: transparent
}

.trainer-media {
    aspect-ratio: 3/3.4;
    overflow: hidden;
    position: relative;
    background: var(--bg-soft)
}

.trainer-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    filter: grayscale(.25);
    transition: .6s var(--ease)
}

.trainer:hover .trainer-media img {
    filter: none;
    transform: scale(1.05)
}

.trainer-social {
    position: absolute;
    right: 12px;
    bottom: 12px;
    display: flex;
    flex-direction: column;
    gap: 8px;
    opacity: 0;
    transform: translateX(14px);
    transition: .35s var(--ease)
}

.trainer:hover .trainer-social {
    opacity: 1;
    transform: none
}

.trainer-social a {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    background: #fff;
    display: grid;
    place-items: center;
    color: var(--ink);
    box-shadow: var(--shadow-sm)
}

.trainer-social a:hover {
    background: var(--brand);
    color: #fff
}

.trainer-body {
    padding: 18px 20px 20px
}

.trainer-body h4 {
    font-size: 17.5px
}

.trainer-body .role {
    color: var(--brand);
    font-size: 13.5px;
    font-weight: 700;
    margin-bottom: 10px
}

.trainer-tags {
    display: flex;
    gap: 6px;
    flex-wrap: wrap
}

@keyframes fadeIn {
    from {
        opacity: 0;
        transform: translateY(10px)
    }

    to {
        opacity: 1;
        transform: none
    }
}

.sticky-form {
    position: sticky;
    top: 120px;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius);
    box-shadow: var(--shadow);
    overflow: hidden
}

.sticky-form-head {
    background: var(--brand);
    color: #fff;
    padding: 20px 22px
}

.sticky-form-head b {
    font-size: 18px;
    display: block
}

.sticky-form-head span {
    font-size: 13px;
    color: #ddd3ff
}

.sticky-form form {
    padding: 22px
}

/* ============ 9. EĞİTİM / DİJİTAL ============ */
.course {
    width: 330px
}

.course .card-media {
    aspect-ratio: 16/10
}

.course-meta {
    display: flex;
    gap: 14px;
    font-size: 12.5px;
    color: var(--muted);
    margin-bottom: 10px;
    flex-wrap: wrap
}

.course-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px
}

.digital {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px
}

.dig {
    position: relative;
    border-radius: var(--radius);
    overflow: hidden;
    min-height: 330px;
    display: flex;
    align-items: flex-end;
    color: #fff;
    padding: 26px;
    transition: .4s var(--ease)
}

.dig img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease)
}

.dig::after {
    content: "";
    position: absolute;
    inset: 0;
    background: linear-gradient(180deg, rgba(20, 18, 31, .15) 20%, rgba(20, 18, 31, .92))
}

.dig:hover {
    transform: translateY(-6px);
    box-shadow: var(--shadow-lg)
}

.dig:hover img {
    transform: scale(1.07)
}

.dig-in {
    position: relative;
    z-index: 2;
    width: 100%
}

.dig-in h3 {
    font-size: 21px;
    margin: 10px 0 8px
}

.dig-in p {
    font-size: 14px;
    color: #c9c4de;
    margin-bottom: 16px
}

.dig-links {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

/* ============ 10. OYUNLAR ============ */
.game {
    width: 360px;
    border-radius: var(--radius);
    overflow: hidden;
    position: relative;
    background: #fff;
    border: 1px solid rgba(255, 255, 255, .1);
    transition: .4s var(--ease)
}

.game:hover {
    transform: translateY(-8px)
}

.game-media {
    aspect-ratio: 16/10;
    overflow: hidden;
    position: relative
}

.game-media img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform .8s var(--ease)
}

.game:hover .game-media img {
    transform: scale(1.08)
}

.game-body {
    padding: 22px;
    background: #1d1930;
    color: #fff
}

.game-body h3 {
    font-size: 20px;
    margin-bottom: 8px
}

.game-body p {
    font-size: 14px;
    color: #a9a5bd;
    margin-bottom: 14px
}

.game-specs {
    display: flex;
    gap: 16px;
    font-size: 12.5px;
    color: #c9c4de;
    margin-bottom: 16px;
    flex-wrap: wrap
}

.game-specs span {
    display: inline-flex;
    gap: 6px;
    align-items: center
}

.custom-game {
    margin-top: 44px;
    background: linear-gradient(120deg, var(--brand), #7c3aed);
    border-radius: var(--radius-lg);
    padding: 44px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    position: relative;
    overflow: hidden
}

.custom-game::after {
    content: "";
    position: absolute;
    right: -80px;
    bottom: -120px;
    width: 340px;
    height: 340px;
    border-radius: 50%;
    background: rgba(198, 242, 74, .16)
}

.custom-game h3 {
    font-size: clamp(24px, 3vw, 34px);
    color: #fff;
    margin-bottom: 10px;
    position: relative;
    z-index: 2
}

.custom-game p {
    color: #e0d7ff;
    max-width: 520px;
    position: relative;
    z-index: 2
}

.custom-game .btn {
    position: relative;
    z-index: 2
}

/* ============ 11. TEKLİF FORMU ============ */
.quote-wrap {
    background: #fff;
    border-radius: var(--radius-lg);
    box-shadow: var(--shadow-lg);
    overflow: hidden;
    border: 1px solid var(--line)
}

.qtabs {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    background: var(--bg-soft);
    border-bottom: 1px solid var(--line)
}

.qtab {
    padding: 20px 16px;
    font-weight: 700;
    font-size: 14px;
    color: var(--muted);
    border-bottom: 3px solid transparent;
    transition: .25s;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 8px;
    text-align: center;
    line-height: 1.35
}

.qtab i {
    width: 40px;
    height: 40px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    color: var(--muted);
    transition: .25s
}

.qtab:hover {
    color: var(--ink);
    background: #fff
}

.qtab.on {
    color: var(--brand);
    background: #fff;
    border-bottom-color: var(--brand)
}

.qtab.on i {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff
}

.qbody {
    padding: 36px
}

.qpanel {
    display: none
}

.qpanel.on {
    display: block;
    animation: fadeIn .35s var(--ease)
}

.qpanel-head {
    margin-bottom: 24px
}

.qpanel-head h3 {
    font-size: 22px;
    margin-bottom: 6px
}

.qpanel-head p {
    color: var(--muted);
    font-size: 14.5px
}

.form-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px
}

.field {
    display: flex;
    flex-direction: column;
    gap: 7px
}

.field.full {
    grid-column: 1/-1
}

.field label {
    font-size: 13.5px;
    font-weight: 700
}

.field label .req {
    color: var(--err)
}

.field input,
.field select,
.field textarea {
    border: 1.5px solid var(--line);
    border-radius: 11px;
    padding: 13px 15px;
    font-size: 15px;
    background: #fff;
    transition: .22s;
    width: 100%
}

.field input:focus,
.field select:focus,
.field textarea:focus {
    border-color: var(--brand);
    box-shadow: 0 0 0 4px rgba(91, 43, 217, .1);
    outline: none
}

.field textarea {
    min-height: 120px;
    resize: vertical
}

.field select {
    appearance: none;
    background-image: url("data:image/svg+xml;utf8,<svg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 24 24' fill='none' stroke='%236b6880' stroke-width='2.5'><path d='M6 9l6 6 6-6'/></svg>");
    background-repeat: no-repeat;
    background-position: right 14px center
}

.field .err-msg {
    font-size: 12.5px;
    color: var(--err);
    display: none
}

.field.invalid input,
.field.invalid select,
.field.invalid textarea {
    border-color: var(--err);
    background: #fff5f7
}

.field.invalid .err-msg {
    display: block
}

.radio-row {
    display: flex;
    gap: 10px;
    flex-wrap: wrap
}

.radio-pill {
    position: relative
}

.radio-pill input {
    position: absolute;
    opacity: 0;
    width: 0;
    height: 0
}

.radio-pill span {
    display: inline-flex;
    padding: 11px 20px;
    border: 1.5px solid var(--line);
    border-radius: 100px;
    font-size: 14px;
    font-weight: 600;
    transition: .2s;
    cursor: pointer
}

.radio-pill input:checked+span {
    background: var(--brand);
    border-color: var(--brand);
    color: #fff
}

.radio-pill input:focus-visible+span {
    outline: 3px solid var(--brand-2);
    outline-offset: 2px
}

.check {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    font-size: 13.5px;
    color: var(--muted);
    cursor: pointer;
    line-height: 1.55
}

.check input {
    appearance: none;
    width: 20px;
    height: 20px;
    flex: none;
    border: 1.5px solid var(--line);
    border-radius: 6px;
    margin-top: 2px;
    transition: .2s;
    position: relative;
    background: #fff;
    cursor: pointer
}

.check input:checked {
    background: var(--brand);
    border-color: var(--brand)
}

.check input:checked::after {
    content: "";
    position: absolute;
    left: 6px;
    top: 2px;
    width: 5px;
    height: 10px;
    border: 2px solid #fff;
    border-top: 0;
    border-left: 0;
    transform: rotate(45deg)
}

.check a {
    color: var(--brand);
    font-weight: 700;
    text-decoration: underline
}

.check.invalid input {
    border-color: var(--err)
}

.hp {
    position: absolute !important;
    left: -9999px !important;
    opacity: 0;
    height: 0;
    width: 0
}

.captcha {
    display: flex;
    align-items: center;
    gap: 12px;
    border: 1.5px dashed var(--line);
    border-radius: 12px;
    padding: 14px 16px;
    font-size: 13.5px;
    color: var(--muted);
    background: var(--bg-soft)
}

.captcha .box {
    width: 26px;
    height: 26px;
    border: 1.5px solid var(--line);
    border-radius: 6px;
    background: #fff;
    flex: none;
    display: grid;
    place-items: center;
    color: var(--ok)
}

.form-actions {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    flex-wrap: wrap;
    margin-top: 26px;
    padding-top: 24px;
    border-top: 1px solid var(--line-2)
}

.form-note {
    font-size: 12.5px;
    color: var(--muted-2);
    max-width: 420px
}

.form-ok {
    display: none;
    text-align: center;
    padding: 44px 20px
}

.form-ok.on {
    display: block;
    animation: fadeIn .4s var(--ease)
}

.form-ok .ic {
    width: 74px;
    height: 74px;
    border-radius: 50%;
    background: #e8fbf3;
    color: var(--ok);
    display: grid;
    place-items: center;
    margin: 0 auto 18px
}

.form-ok h3 {
    font-size: 24px;
    margin-bottom: 10px
}

.form-ok p {
    color: var(--muted);
    max-width: 440px;
    margin: 0 auto 20px
}

/* Modal */
.modal {
    position: fixed;
    inset: 0;
    z-index: 970;
    display: flex;
    align-items: flex-start;
    justify-content: center;
    background: rgba(20, 18, 31, .65);
    backdrop-filter: blur(6px);
    opacity: 0;
    visibility: hidden;
    transition: .3s;
    overflow-y: auto;
    padding: 5vh 16px
}

.modal.on {
    opacity: 1;
    visibility: visible
}

.modal-box {
    background: #fff;
    border-radius: var(--radius-lg);
    width: min(980px, 100%);
    transform: translateY(22px);
    transition: transform .38s var(--ease);
    position: relative
}

.modal.on .modal-box {
    transform: none
}

.modal-close {
    position: absolute;
    right: 16px;
    top: 16px;
    z-index: 5;
    width: 42px;
    height: 42px;
    border-radius: 12px;
    background: #fff;
    border: 1px solid var(--line);
    display: grid;
    place-items: center;
    transition: .2s
}

.modal-close:hover {
    background: var(--ink);
    color: #fff;
    border-color: var(--ink)
}

.modal .quote-wrap {
    box-shadow: none;
    border: 0
}

.modal .qbody {
    padding: 30px
}

/* ============ 12. BLOG & REFERANSLAR ============ */
.blog-grid {
    display: grid;
    grid-template-columns: 1.4fr 1fr 1fr;
    gap: 22px
}

.post-lg .card-media {
    aspect-ratio: 16/11
}

.post-meta {
    display: flex;
    gap: 14px;
    font-size: 12.5px;
    color: var(--muted);
    margin-bottom: 10px;
    flex-wrap: wrap;
    align-items: center
}

.post-meta span {
    display: inline-flex;
    align-items: center;
    gap: 6px
}

.post-author {
    display: flex;
    align-items: center;
    gap: 9px;
    font-size: 13px;
    color: var(--muted)
}

.post-author img {
    width: 30px;
    height: 30px;
    border-radius: 50%;
    object-fit: cover
}

.logo-grid {
    display: grid;
    grid-template-columns: repeat(6, 1fr);
    gap: 1px;
    background: var(--line);
    border: 1px solid var(--line);
    border-radius: var(--radius);
    overflow: hidden
}

.logo-cell {
    background: #fff;
    aspect-ratio: 16/9;
    display: grid;
    place-items: center;
    padding: 16px;
    transition: .3s
}

.logo-cell:hover {
    background: var(--bg-soft)
}

.logo-cell span {
    font-weight: 700;
    font-size: 16px;
    color: var(--muted-2);
    letter-spacing: -.02em;
    filter: grayscale(1);
    transition: .3s;
    text-align: center;
    line-height: 1.2
}

.logo-cell:hover span {
    color: var(--ink)
}

.ref-cards {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 22px;
    margin-top: 34px
}

.ref {
    border: 1px solid var(--line);
    border-radius: var(--radius);
    padding: 26px;
    background: #fff;
    transition: .35s var(--ease);
    display: flex;
    flex-direction: column;
    gap: 14px
}

.ref:hover {
    box-shadow: var(--shadow);
    transform: translateY(-5px);
    border-color: transparent
}

.ref-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px
}

.ref-logo {
    font-weight: 700;
    font-size: 17px;
    color: var(--brand)
}

.ref h4 {
    font-size: 18px
}

.ref p {
    font-size: 14.5px;
    color: var(--muted);
    flex: 1
}

.ref-stats {
    display: flex;
    gap: 18px;
    padding-top: 14px;
    border-top: 1px solid var(--line-2)
}

.ref-stats div b {
    display: block;
    font-size: 20px;
    color: var(--ink)
}

.ref-stats div span {
    font-size: 12px;
    color: var(--muted)
}

.tst-wrap {
    position: relative;
    max-width: 820px;
    margin: 0 auto;
    text-align: center
}

.tst {
    display: none
}

.tst.on {
    display: block;
    animation: fadeIn .5s var(--ease)
}

.tst .quote-mark {
    font-size: 72px;
    line-height: 1;
    color: var(--accent);
    display: block;
    margin-bottom: -10px
}

.tst p {
    font-size: clamp(18px, 2.2vw, 24px);
    line-height: 1.55;
    letter-spacing: -.02em;
    margin-bottom: 26px
}

.tst-person {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 14px
}

.tst-person img {
    width: 56px;
    height: 56px;
    border-radius: 50%;
    object-fit: cover;
    border: 3px solid rgba(255, 255, 255, .15)
}

.tst-person b {
    display: block;
    font-size: 15.5px
}

.tst-person span {
    font-size: 13px;
    color: #a9a5bd
}

.tst-nav {
    display: flex;
    justify-content: center;
    gap: 10px;
    margin-top: 30px
}

.tst-dot {
    width: 9px;
    height: 9px;
    border-radius: 50%;
    background: rgba(255, 255, 255, .25);
    transition: .25s
}

.tst-dot.on {
    background: var(--accent);
    width: 26px;
    border-radius: 5px
}

/* ============ 13. SSS ============ */
.faq-layout {
    display: grid;
    grid-template-columns: 340px 1fr;
    gap: 44px;
    align-items: start
}

.faq-cats {
    display: grid;
    gap: 6px;
    position: sticky;
    top: 120px
}

.faq-cat {
    padding: 14px 18px;
    border-radius: 12px;
    text-align: left;
    font-weight: 700;
    font-size: 15px;
    color: var(--muted);
    transition: .22s;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px
}

.faq-cat:hover {
    background: var(--bg-soft);
    color: var(--ink)
}

.faq-cat.on {
    background: var(--ink);
    color: #fff
}

.faq-cat small {
    font-size: 12px;
    opacity: .6
}

.faq-group {
    display: none
}

.faq-group.on {
    display: grid;
    gap: 12px;
    animation: fadeIn .35s var(--ease)
}

.acc {
    border: 1px solid var(--line);
    border-radius: 14px;
    background: #fff;
    overflow: hidden;
    transition: .25s
}

.acc.on {
    border-color: var(--brand);
    box-shadow: var(--shadow-sm)
}

.acc-head {
    width: 100%;
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 18px;
    padding: 19px 22px;
    text-align: left;
    font-weight: 700;
    font-size: 16px
}

.acc-head i {
    width: 30px;
    height: 30px;
    flex: none;
    border-radius: 9px;
    background: var(--bg-soft);
    display: grid;
    place-items: center;
    transition: .3s
}

.acc.on .acc-head i {
    background: var(--brand);
    color: #fff;
    transform: rotate(180deg)
}

.acc-body {
    max-height: 0;
    overflow: hidden;
    transition: max-height .35s var(--ease)
}

.acc-body p {
    padding: 0 22px 20px;
    color: var(--muted);
    font-size: 15px
}

/* ============ 14. FOOTER & ÇEREZ ============ */
.footer {
    background: var(--bg-deep);
    color: #a9a5bd;
    padding-top: 72px
}

.footer-top {
    display: grid;
    grid-template-columns: 1.5fr 1fr 1fr 1fr;
    gap: 44px;
    padding-bottom: 52px;
    border-bottom: 1px solid rgba(255, 255, 255, .08)
}

.footer-brand img {
    height: 52px;
    width: auto;
    margin-bottom: 18px;
    filter: brightness(0) invert(1)
}

.footer-brand p {
    font-size: 14.5px;
    margin-bottom: 22px;
    max-width: 330px
}

.f-contact {
    display: grid;
    gap: 11px;
    font-size: 14px
}

.f-contact a,
.f-contact div {
    display: flex;
    gap: 11px;
    align-items: flex-start;
    transition: color .2s
}

.f-contact a:hover {
    color: var(--accent)
}

.f-contact svg {
    flex: none;
    margin-top: 4px;
    color: var(--brand-2)
}

.footer h4 {
    color: #fff;
    font-size: 13px;
    letter-spacing: .16em;
    text-transform: uppercase;
    margin-bottom: 20px;
    font-weight: 800
}

.f-links {
    display: grid;
    gap: 11px;
    font-size: 14.5px
}

.f-links a {
    transition: .2s;
    display: inline-flex;
    align-items: center;
    gap: 8px
}

.f-links a::before {
    content: "";
    width: 0;
    height: 1px;
    background: var(--accent);
    transition: width .25s
}

.f-links a:hover {
    color: #fff
}

.f-links a:hover::before {
    width: 10px
}

.footer-mid {
    padding: 34px 0;
    border-bottom: 1px solid rgba(255, 255, 255, .08);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap
}

.footer-mid .socials a {
    width: 40px;
    height: 40px;
    border-radius: 11px
}

.footer-bot {
    padding: 24px 0 30px;
    display: flex;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    font-size: 13px
}

.footer-bot nav {
    display: flex;
    gap: 20px;
    flex-wrap: wrap
}

.footer-bot a:hover {
    color: var(--accent)
}

.to-top {
    position: fixed;
    right: 20px;
    bottom: 96px;
    z-index: 840;
    width: 46px;
    height: 46px;
    border-radius: 13px;
    background: var(--ink);
    color: #fff;
    display: grid;
    place-items: center;
    opacity: 0;
    visibility: hidden;
    transform: translateY(12px);
    transition: .3s
}

.to-top.on {
    opacity: 1;
    visibility: visible;
    transform: none
}

.to-top:hover {
    background: var(--brand)
}

.toast {
    position: fixed;
    left: 50%;
    bottom: 32px;
    transform: translate(-50%, 150%);
    z-index: 990;
    background: var(--ink);
    color: #fff;
    padding: 14px 22px;
    border-radius: 12px;
    font-size: 14.5px;
    font-weight: 600;
    box-shadow: var(--shadow-lg);
    transition: transform .45s var(--ease);
    display: flex;
    gap: 10px;
    align-items: center
}

.toast.on {
    transform: translate(-50%, 0)
}

.toast svg {
    color: var(--accent)
}

/* ============ 15. RESPONSIVE ============ */
@media (max-width:1100px) {
    .about-grid {
        grid-template-columns: 1fr;
        gap: 80px
    }

    .services {
        grid-template-columns: repeat(2, 1fr)
    }

    .digital {
        grid-template-columns: repeat(2, 1fr)
    }

    .blog-grid {
        grid-template-columns: 1fr 1fr
    }

    .logo-grid {
        grid-template-columns: repeat(4, 1fr)
    }

    .ref-cards {
        grid-template-columns: 1fr 1fr
    }

    .sticky-form {
        position: static
    }

    .faq-layout {
        grid-template-columns: 1fr;
        gap: 26px
    }

    .faq-cats {
        position: static;
        grid-auto-flow: column;
        grid-auto-columns: max-content;
        overflow-x: auto;
        padding-bottom: 6px
    }

    .quickbar-grid {
        grid-template-columns: repeat(2, 1fr)
    }

    .qb {
        border-bottom: 1px solid rgba(255, 255, 255, .14)
    }
}

@media (max-width:980px) {
    :root {
        --header-h: 68px
    }

    .nav,
    .header .desk-only {
        display: none
    }

    .burger {
        display: grid
    }

    .topbar .tb-item.addr {
        display: none
    }

    .qtabs {
        grid-template-columns: 1fr 1fr
    }

    .stats {
        grid-template-columns: repeat(2, 1fr)
    }

    .stat {
        border-right: 0;
        border-bottom: 1px solid rgba(255, 255, 255, .12)
    }

    .tab-cta {
        display: none
    }

    .mobile-bar {
        display: flex
    }

    .to-top {
        bottom: 88px
    }

    body {
        padding-bottom: 0
    }

    .footer {
        padding-bottom: 74px
    }
}

@media (max-width:760px) {
    .section {
        padding: 72px 0
    }

    .container {
        padding-inline: 18px
    }

    .topbar-l .socials {
        display: none
    }

    .values {
        grid-template-columns: 1fr
    }

    .services {
        grid-template-columns: 1fr
    }

    .digital {
        grid-template-columns: 1fr
    }

    .blog-grid {
        grid-template-columns: 1fr
    }

    .ref-cards {
        grid-template-columns: 1fr
    }

    .logo-grid {
        grid-template-columns: repeat(3, 1fr)
    }

    .footer-top {
        grid-template-columns: 1fr;
        gap: 34px
    }

    .form-grid {
        grid-template-columns: 1fr
    }

    .ev {
        grid-template-columns: 76px 1fr;
        gap: 16px
    }

    .ev-cta {
        grid-column: 1/-1;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        width: 100%
    }

    .ev-date b {
        font-size: 27px
    }

    .head--split {
        align-items: flex-start
    }

    .custom-game {
        padding: 30px
    }

    .qbody {
        padding: 22px
    }

    .modal {
        padding: 0
    }

    .modal-box {
        border-radius: 0;
        min-height: 100%
    }

    .cal-grid {
        padding: 10px;
        gap: 4px
    }

    .cal-day {
        padding: 4px;
        font-size: 11px;
        border-radius: 8px
    }

    .trainer,
    .course,
    .game {
        width: 78vw
    }

    .search-box {
        margin-top: 8vh;
        padding: 20px
    }

    .search-field input {
        font-size: 18px
    }
}