/* ════════════════════════════════════════════════════════
   ARLA MEDYA — main.css
   Tasarım sistemi: karanlık zemin, geniş tipografi, lime vurgu
   ════════════════════════════════════════════════════════ */

:root {
    --bg:        #0b0c0e;
    --bg-soft:   #121316;
    --bg-raise:  #17181c;
    --ink:       #f2f3ef;
    --ink-dim:   #b9bdb3;
    --muted:     #7d8287;
    --line:      rgba(255, 255, 255, .09);
    --line-soft: rgba(255, 255, 255, .05);
    --accent:    #c8f031;
    --accent-ink:#0b0c0e;
    --glow:      rgba(200, 240, 49, .07);
    --shadow:    0 30px 80px rgba(0, 0, 0, .55);

    --font-display: 'Space Grotesk', sans-serif;
    --font-body:    'Inter', sans-serif;

    --header-h: 92px;
    --topbar-h: 42px;
    --ease: cubic-bezier(.65, .05, 0, 1);
    --ease-soft: cubic-bezier(.25, .8, .25, 1);
}

[data-theme="light"] {
    --bg:        #f1f0ec;
    --bg-soft:   #e9e8e3;
    --bg-raise:  #ffffff;
    --ink:       #131418;
    --ink-dim:   #3c3f45;
    --muted:     #71757c;
    --line:      rgba(10, 12, 14, .12);
    --line-soft: rgba(10, 12, 14, .06);
    --accent:    #515b0a;
    --accent-ink:#f3f5e9;
    --glow:      rgba(140, 165, 20, .10);
    --shadow:    0 30px 80px rgba(20, 22, 10, .14);
}

/* ── Reset ─────────────────────────────────── */
*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

html { scroll-behavior: smooth; }

body {
    font-family: var(--font-body);
    background: var(--bg);
    color: var(--ink);
    line-height: 1.6;
    -webkit-font-smoothing: antialiased;
    overflow-x: hidden;
    transition: background .5s var(--ease-soft), color .5s var(--ease-soft);
}

img, svg { display: block; }
a { color: inherit; text-decoration: none; }
button { font: inherit; color: inherit; background: none; border: 0; cursor: pointer; }
ul { list-style: none; }

.container {
    width: min(100% - 48px, 1480px);
    margin-inline: auto;
}

/* geniş ekranda kenar raylarına (tema + sosyal) yer aç */
@media (min-width: 1201px) {
    .container { width: min(100% - 160px, 1480px); }
}

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

/* ════════ TOP BAR ════════ */
.topbar {
    height: var(--topbar-h);
    border-bottom: 1px solid var(--line-soft);
    font-size: 12px;
    letter-spacing: .04em;
    color: var(--muted);
    overflow: hidden;
    transition: height .45s var(--ease), opacity .35s;
}

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

.topbar__group { display: flex; align-items: center; gap: 22px; }

.topbar__item {
    display: inline-flex;
    align-items: center;
    gap: 7px;
    transition: color .25s;
}
.topbar__item svg { width: 14px; height: 14px; opacity: .7; }
a.topbar__item:hover { color: var(--ink); }

.topbar__note {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .28em;
    opacity: .55;
}

.topbar__sep { width: 1px; height: 14px; background: var(--line); }

.topbar__social { display: flex; gap: 14px; }
.topbar__social a { font-weight: 500; transition: color .25s; }
.topbar__social a:hover { color: var(--accent); }

/* ════════ NAVBAR ════════ */
.site-header {
    position: sticky;
    top: 0;
    z-index: 100;
    background: color-mix(in srgb, var(--bg) 82%, transparent);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    border-bottom: 1px solid var(--line-soft);
    transition: background .5s var(--ease-soft);
}

.site-header.is-scrolled .topbar { height: 0; opacity: 0; }

.navbar__inner {
    height: var(--header-h);
    display: grid;
    grid-template-columns: 1fr auto 1fr;
    align-items: center;
    transition: height .45s var(--ease);
}
.site-header.is-scrolled .navbar__inner { height: 72px; }

/* — MENU butonu — */
.menu-btn {
    justify-self: start;
    display: inline-flex;
    align-items: center;
    gap: 12px;
    padding: 13px 22px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .22em;
    transition: border-color .3s, background .3s;
}
.menu-btn:hover { border-color: var(--ink); }

.menu-btn__lines { display: flex; flex-direction: column; gap: 5px; width: 20px; }
.menu-btn__lines i {
    height: 1.5px;
    background: currentColor;
    transition: transform .4s var(--ease), width .4s var(--ease);
}
.menu-btn__lines i:last-child { width: 60%; }
.menu-btn:hover .menu-btn__lines i:last-child { width: 100%; }

/* — Nav grupları — */
.navbar__inner { grid-template-columns: auto 1fr auto 1fr auto; }

.nav { display: flex; align-items: center; gap: 6px; }
.menu-btn   { grid-column: 1; }
.nav--left  { grid-column: 2; justify-content: flex-end; margin-right: 28px; }
.brand      { grid-column: 3; }
.nav--right { grid-column: 4; justify-content: flex-start; margin-left: 28px; }
.navbar__actions { grid-column: 5; justify-self: end; }

.nav__item { position: relative; }

.nav__link {
    position: relative;
    display: inline-flex;
    align-items: baseline;
    gap: 3px;
    padding: 12px 18px;
    font-family: var(--font-display);
    font-size: 16.5px;
    font-weight: 500;
    color: var(--ink-dim);
    transition: color .3s;
}
.nav__link sup {
    font-size: 9.5px;
    font-weight: 600;
    letter-spacing: .08em;
    color: var(--muted);
    transform: translateY(-4px);
    transition: color .3s;
}
.nav__link:hover, .nav__link.is-active { color: var(--ink); }
.nav__link:hover sup, .nav__link.is-active sup { color: var(--accent); }

.nav__link::after {
    content: '';
    position: absolute;
    left: 18px; right: 18px; bottom: 6px;
    height: 1.5px;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: right;
    transition: transform .45s var(--ease);
}
.nav__link:hover::after, .nav__link.is-active::after {
    transform: scaleX(1);
    transform-origin: left;
}

.nav__caret {
    width: 13px; height: 13px;
    align-self: center;
    margin-left: 2px;
    opacity: .55;
    transition: transform .35s var(--ease);
}
.nav__item.is-open .nav__caret { transform: rotate(180deg); }

/* — Logo — */
.brand {
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 5px;
    padding-inline: 28px;
}

.brand__word {
    font-family: var(--font-display);
    font-size: 27px;
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1;
}
.brand__word em {
    font-style: normal;
    font-size: .58em;
    font-weight: 600;
    background: var(--ink);
    color: var(--bg);
    padding: 3px 7px 4px;
    border-radius: 5px;
    margin-left: 4px;
    vertical-align: 3px;
    transition: background .3s, color .3s;
}
.brand:hover .brand__word em { background: var(--accent); color: var(--accent-ink); }

.brand__tag {
    font-size: 9px;
    text-transform: uppercase;
    letter-spacing: .3em;
    color: var(--muted);
    white-space: nowrap;
}

/* — CTA — */
.btn {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    padding: 14px 26px;
    border-radius: 999px;
    font-family: var(--font-display);
    font-size: 14.5px;
    font-weight: 600;
    letter-spacing: .02em;
    transition: transform .35s var(--ease), background .3s, color .3s, box-shadow .3s;
}
.btn svg { width: 16px; height: 16px; transition: transform .35s var(--ease); }
.btn:hover svg { transform: translate(3px, -3px); }

.btn--primary {
    background: var(--accent);
    color: var(--accent-ink);
    box-shadow: 0 0 0 0 var(--glow);
}
.btn--primary:hover {
    transform: translateY(-2px);
    box-shadow: 0 14px 40px var(--glow), 0 4px 14px rgba(0,0,0,.3);
}

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

/* ════════ MEGA MENÜ ════════ */
.mega {
    position: fixed;
    left: 0; right: 0;
    top: var(--full-header-h, 134px);
    background: color-mix(in srgb, var(--bg) 94%, transparent);
    backdrop-filter: blur(24px);
    -webkit-backdrop-filter: blur(24px);
    border-bottom: 1px solid var(--line);
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-12px);
    transition: opacity .4s var(--ease-soft), transform .5s var(--ease), visibility 0s .4s;
    pointer-events: none;
}

.nav__item.is-open .mega {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity .4s var(--ease-soft), transform .5s var(--ease), visibility 0s;
    pointer-events: auto;
}

.mega__inner {
    display: grid;
    grid-template-columns: 320px 1fr;
    gap: 56px;
    padding-block: 52px;
}

.mega__kicker {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .3em;
    color: var(--accent);
    margin-bottom: 16px;
}

.mega__title {
    font-family: var(--font-display);
    font-size: clamp(22px, 1.8vw, 30px);
    font-weight: 600;
    line-height: 1.25;
    letter-spacing: -.01em;
    margin-bottom: 28px;
}

.mega__cta {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    color: var(--accent);
    border-bottom: 1px solid transparent;
    padding-bottom: 3px;
    transition: border-color .3s;
}
.mega__cta svg { width: 15px; height: 15px; transition: transform .35s var(--ease); }
.mega__cta:hover { border-color: var(--accent); }
.mega__cta:hover svg { transform: translate(3px, -3px); }

.mega__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 4px 32px;
    border-left: 1px solid var(--line);
    padding-left: 56px;
}

.mega__card {
    display: flex;
    align-items: center;
    gap: 16px;
    padding: 15px 16px;
    border-radius: 14px;
    transition: background .3s;
}
.mega__card:hover { background: var(--bg-raise); }

.mega__no {
    font-family: var(--font-display);
    font-size: 11px;
    font-weight: 600;
    color: var(--muted);
    transition: color .3s;
}
.mega__card:hover .mega__no { color: var(--accent); }

.mega__icon {
    flex: 0 0 auto;
    width: 44px; height: 44px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: var(--ink-dim);
    transition: border-color .3s, color .3s, background .3s;
}
.mega__icon svg { width: 21px; height: 21px; }
.mega__card:hover .mega__icon {
    border-color: var(--accent);
    color: var(--accent);
}

.mega__body { display: flex; flex-direction: column; gap: 2px; min-width: 0; }
.mega__body strong {
    font-family: var(--font-display);
    font-size: 15.5px;
    font-weight: 600;
}
.mega__body small { font-size: 12.5px; color: var(--muted); line-height: 1.45; }

.mega__arrow {
    width: 16px; height: 16px;
    margin-left: auto;
    color: var(--accent);
    opacity: 0;
    transform: translate(-6px, 6px);
    transition: opacity .3s, transform .35s var(--ease);
}
.mega__card:hover .mega__arrow { opacity: 1; transform: translate(0, 0); }

/* ════════ KÜÇÜK DROPDOWN ════════ */
.drop {
    position: absolute;
    top: calc(100% + 10px);
    left: 8px;
    min-width: 240px;
    padding: 10px;
    background: color-mix(in srgb, var(--bg-raise) 96%, transparent);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid var(--line);
    border-radius: 18px;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: opacity .35s var(--ease-soft), transform .45s var(--ease), visibility 0s .35s;
}

.nav__item.is-open .drop {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
    transition: opacity .35s var(--ease-soft), transform .45s var(--ease), visibility 0s;
}

.drop a {
    display: flex;
    align-items: center;
    padding: 11px 16px;
    border-radius: 10px;
    font-family: var(--font-display);
    font-size: 14.5px;
    font-weight: 500;
    color: var(--ink-dim);
    transition: background .25s, color .25s, padding-left .3s var(--ease);
}
.drop a::before {
    content: '';
    width: 0; height: 1.5px;
    background: var(--accent);
    margin-right: 0;
    transition: width .3s var(--ease), margin-right .3s var(--ease);
}
.drop a:hover {
    background: var(--bg-soft);
    color: var(--ink);
}
.drop a:hover::before { width: 14px; margin-right: 10px; }

/* ════════ TEMA RAYI & SOSYAL RAY ════════ */
.theme-rail {
    position: fixed;
    left: 26px;
    top: 50%;
    z-index: 90;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 14px;
    padding: 18px 9px;
    border: 1px solid var(--line);
    border-radius: 999px;
    background: color-mix(in srgb, var(--bg-raise) 80%, transparent);
    backdrop-filter: blur(12px);
    font-size: 10.5px;
    letter-spacing: .18em;
    text-transform: uppercase;
    color: var(--muted);
}
.theme-rail__opt { writing-mode: vertical-rl; transition: color .3s; }
[data-theme="dark"]  .theme-rail__opt[data-mode="dark"],
[data-theme="light"] .theme-rail__opt[data-mode="light"] { color: var(--ink); font-weight: 600; }
.theme-rail__dot {
    width: 7px; height: 7px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 12px var(--accent);
}


/* ════════ HERO ════════ */
.hero {
    position: relative;
    min-height: calc(100vh - var(--header-h) - var(--topbar-h));
    display: flex;
    flex-direction: column;
    overflow: hidden;
}

.hero__glow {
    position: absolute;
    top: -20%; left: 50%;
    width: 900px; height: 700px;
    transform: translateX(-50%);
    background: radial-gradient(ellipse at center, var(--glow) 0%, transparent 65%);
    pointer-events: none;
}

.hero__grid-lines {
    position: absolute;
    inset: 0;
    display: flex;
    justify-content: space-evenly;
    pointer-events: none;
}
.hero__grid-lines i { width: 1px; background: var(--line-soft); }

.hero__inner {
    position: relative;
    flex: 1;
    display: flex;
    flex-direction: column;
    justify-content: center;
    padding-block: 64px 40px;
}

/* — Slider — */
.hero-slider {
    position: relative;
    display: grid;
    min-height: 380px;
}

.hero-slide {
    grid-area: 1 / 1;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .6s var(--ease-soft), visibility 0s .6s;
}
.hero-slide.is-active {
    opacity: 1;
    visibility: visible;
    transition: opacity .6s var(--ease-soft) .15s, visibility 0s;
}

.hero-slide__kicker {
    display: inline-flex;
    align-items: center;
    gap: 12px;
    font-size: clamp(13px, 1.2vw, 16px);
    letter-spacing: .06em;
    color: var(--ink-dim);
    margin-bottom: clamp(20px, 3vh, 36px);
}
.hero-slide__kicker .dot {
    width: 8px; height: 8px;
    border-radius: 50%;
    background: var(--accent);
    box-shadow: 0 0 14px var(--accent);
    animation: pulse 2.4s ease-in-out infinite;
}
@keyframes pulse {
    0%, 100% { transform: scale(1); opacity: 1; }
    50%      { transform: scale(.65); opacity: .6; }
}

.hero-slide__title {
    font-family: var(--font-display);
    font-size: clamp(44px, 7.2vw, 118px);
    font-weight: 600;
    line-height: 1.04;
    letter-spacing: -.03em;
    margin-bottom: clamp(20px, 3.4vh, 38px);
}

.hero-slide__title .line {
    display: block;
    overflow: hidden;
}
.hero-slide__title .line > span {
    display: block;
    transform: translateY(110%);
}
.hero-slide.is-active .line > span {
    animation: lineUp 1s var(--ease) forwards;
}
.hero-slide.is-active .line:nth-child(2) > span { animation-delay: .12s; }

@keyframes lineUp {
    to { transform: translateY(0); }
}

.hero-slide__title .line--em > span {
    background: linear-gradient(100deg, var(--ink) 30%, var(--accent) 85%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.hero-slide__desc {
    max-width: 560px;
    font-size: clamp(14.5px, 1.2vw, 17px);
    color: var(--muted);
    line-height: 1.75;
}

.hero-slider__ghost {
    position: absolute;
    right: -1%;
    bottom: -8%;
    font-family: var(--font-display);
    font-size: clamp(120px, 17vw, 280px);
    font-weight: 700;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px var(--line);
    pointer-events: none;
    user-select: none;
    transition: opacity .5s;
}

/* — Kontroller — */
.hero__controls {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 36px;
    margin-top: clamp(28px, 4vh, 48px);
}

.hero__counter {
    display: flex;
    align-items: center;
    gap: 16px;
    font-family: var(--font-display);
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: .1em;
    color: var(--muted);
}
.hero__counter #slideCurrent { color: var(--ink); }

.hero__counter-track {
    position: relative;
    width: 200px;
    height: 1.5px;
    background: var(--line);
    overflow: hidden;
}
.hero__counter-bar {
    position: absolute;
    inset: 0;
    background: var(--accent);
    transform: scaleX(0);
    transform-origin: left;
}
.hero__counter-bar.is-running {
    animation: progress var(--slide-duration, 6.5s) linear forwards;
}
@keyframes progress {
    to { transform: scaleX(1); }
}

.hero__arrows { display: flex; gap: 10px; }

.arrow-btn {
    width: 52px; height: 52px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--ink-dim);
    transition: border-color .3s, color .3s, background .3s, transform .3s var(--ease);
}
.arrow-btn svg { width: 19px; height: 19px; }
.arrow-btn:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-2px);
}
.arrow-btn:active { transform: translateY(0) scale(.95); }

/* — Rozetler — */
.badges {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: clamp(20px, 3.4vw, 60px);
    margin-top: clamp(36px, 6vh, 68px);
    padding-top: clamp(26px, 4vh, 42px);
    border-top: 1px solid var(--line-soft);
}

.badge {
    display: flex;
    align-items: center;
    gap: 14px;
    opacity: 0;
    transform: translateY(16px);
    animation: badgeIn .8s var(--ease) forwards;
}
.badge:nth-child(1) { animation-delay: .55s; }
.badge:nth-child(2) { animation-delay: .67s; }
.badge:nth-child(3) { animation-delay: .79s; }
.badge:nth-child(4) { animation-delay: .91s; }
.badge:nth-child(5) { animation-delay: 1.03s; }
@keyframes badgeIn {
    to { opacity: 1; transform: translateY(0); }
}

.badge__icon {
    flex: 0 0 auto;
    width: 50px; height: 50px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--ink-dim);
    transition: border-color .3s, color .3s;
}
.badge__icon svg { width: 22px; height: 22px; }
.badge:hover .badge__icon { border-color: var(--accent); color: var(--accent); }

.badge__text {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    line-height: 1.4;
}

/* ════════ MARQUEE ════════ */
.marquee {
    position: relative;
    padding-block: 30px 44px;
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent);
}

.marquee__track {
    display: flex;
    gap: 22px;
    width: max-content;
    animation: marquee 170s linear infinite;
}
.marquee:hover .marquee__track { animation-play-state: paused; }

@keyframes marquee {
    to { transform: translateX(-50%); }
}

.pcard {
    position: relative;
    width: 320px;
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--bg-soft);
    overflow: hidden;
    transition: transform .45s var(--ease), border-color .35s;
}
.pcard:hover { transform: translateY(-6px); border-color: var(--accent); }

.pcard__visual {
    position: relative;
    height: 168px;
    background: var(--bg-raise);
    overflow: hidden;
}

.pcard__visual img {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
    object-position: top center;
    /* renkli ekran görüntüleri sistemin görünümünü bozmasın diye hafif filtre */
    filter: grayscale(.45) saturate(.7) brightness(.92) contrast(.96);
    transform: scale(1.01);
    transition: filter .5s var(--ease-soft), transform .65s var(--ease);
}

/* zemin + lime tonlu hafif örtü — temayla bütünleştirir */
.pcard__visual::after {
    content: '';
    position: absolute;
    inset: 0;
    background:
        linear-gradient(165deg,
            color-mix(in srgb, var(--bg) 32%, transparent) 0%,
            transparent 45%,
            color-mix(in srgb, var(--accent) 10%, transparent) 100%);
    pointer-events: none;
    transition: opacity .5s var(--ease-soft);
}

/* hover'da gerçek renkler ortaya çıkar */
.pcard:hover .pcard__visual img {
    filter: grayscale(0) saturate(1) brightness(1) contrast(1);
    transform: scale(1.05);
}
.pcard:hover .pcard__visual::after { opacity: .35; }

.pcard__meta {
    display: flex;
    flex-direction: column;
    gap: 3px;
    padding: 16px 20px 18px;
}
.pcard__meta strong {
    font-family: var(--font-display);
    font-size: 16px;
    font-weight: 600;
}
.pcard__meta small {
    font-size: 12px;
    letter-spacing: .06em;
    text-transform: uppercase;
    color: var(--muted);
}

/* — Scroll ipucu — */
.hero__scroll {
    position: absolute;
    left: 50%;
    bottom: 18px;
    transform: translateX(-50%);
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
    font-size: 10.5px;
    text-transform: uppercase;
    letter-spacing: .3em;
    color: var(--muted);
    transition: color .3s;
}
.hero__scroll:hover { color: var(--ink); }
.hero__scroll-line {
    width: 1px; height: 34px;
    background: var(--line);
    position: relative;
    overflow: hidden;
}
.hero__scroll-line::after {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--accent);
    animation: scrollHint 2.2s var(--ease) infinite;
}
@keyframes scrollHint {
    0%   { transform: translateY(-100%); }
    55%  { transform: translateY(0); }
    100% { transform: translateY(100%); }
}

/* ════════ TAM EKRAN MENÜ ════════ */
.overlay {
    position: fixed;
    inset: 0;
    z-index: 200;
    visibility: hidden;
    transition: visibility 0s .8s;
}
.overlay.is-open { visibility: visible; transition: visibility 0s; }

.overlay__backdrop {
    position: absolute;
    inset: 0;
    background: rgba(0, 0, 0, .5);
    backdrop-filter: blur(6px);
    opacity: 0;
    transition: opacity .5s;
}
.overlay.is-open .overlay__backdrop { opacity: 1; }

.overlay__panel {
    position: absolute;
    inset: 0;
    background: var(--bg);
    clip-path: inset(0 0 100% 0);
    transition: clip-path .8s var(--ease);
    overflow-y: auto;
}
.overlay.is-open .overlay__panel { clip-path: inset(0 0 0 0); }

.overlay__inner {
    min-height: 100%;
    display: flex;
    flex-direction: column;
    padding-block: 34px 28px;
}

.overlay__head {
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding-bottom: 28px;
    border-bottom: 1px solid var(--line-soft);
}

.overlay__close {
    position: relative;
    width: 52px; height: 52px;
    border: 1px solid var(--line);
    border-radius: 50%;
    transition: border-color .3s, transform .4s var(--ease);
}
.overlay__close:hover { border-color: var(--accent); transform: rotate(90deg); }
.overlay__close span {
    position: absolute;
    top: 50%; left: 50%;
    width: 20px; height: 1.5px;
    background: var(--ink);
}
.overlay__close span:first-child { transform: translate(-50%, -50%) rotate(45deg); }
.overlay__close span:last-child  { transform: translate(-50%, -50%) rotate(-45deg); }

.overlay__grid {
    flex: 1;
    display: grid;
    grid-template-columns: 1.4fr 1fr;
    gap: 64px;
    align-content: center;
    padding-block: 48px;
}

.overlay__nav { display: flex; flex-direction: column; }

.overlay__link {
    display: flex;
    align-items: baseline;
    gap: 18px;
    width: 100%;
    text-align: left;
    padding: 16px 0;
    font-family: var(--font-display);
    font-size: clamp(32px, 4.6vw, 56px);
    font-weight: 600;
    letter-spacing: -.02em;
    line-height: 1.1;
    color: var(--ink-dim);
    border-bottom: 1px solid var(--line-soft);
    transition: color .3s, padding-left .4s var(--ease);
    opacity: 0;
    transform: translateY(24px);
}
.overlay.is-open .overlay__link {
    animation: overlayLink .7s var(--ease) forwards;
}
.overlay.is-open .overlay__link:nth-of-type(1) { animation-delay: .35s; }
.overlay.is-open .overlay__link:nth-of-type(2) { animation-delay: .42s; }
.overlay.is-open .overlay__link:nth-of-type(3) { animation-delay: .49s; }
.overlay.is-open .overlay__link:nth-of-type(4) { animation-delay: .56s; }
@keyframes overlayLink {
    to { opacity: 1; transform: translateY(0); }
}

.overlay__link sup {
    font-size: 13px;
    color: var(--accent);
}
.overlay__link svg {
    width: 22px; height: 22px;
    align-self: center;
    margin-left: auto;
    opacity: .5;
    transition: transform .35s var(--ease);
}
.overlay__link:hover, .overlay__link.is-active { color: var(--ink); padding-left: 12px; }
.overlay__link[aria-expanded="true"] svg { transform: rotate(180deg); }

.overlay__sub {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .55s var(--ease);
}
.overlay__sub.is-open { grid-template-rows: 1fr; }

.overlay__sub-in { min-height: 0; overflow: hidden; }
.overlay__sub-in a:first-child { margin-top: 14px; }
.overlay__sub-in a:last-child { margin-bottom: 18px; }
.overlay__sub a {
    display: block;
    padding: 8px 0 8px 44px;
    font-size: 16px;
    color: var(--muted);
    transition: color .25s, padding-left .3s var(--ease);
}
.overlay__sub a:hover { color: var(--accent); padding-left: 52px; }

.overlay__aside {
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 38px;
    padding-left: 56px;
    border-left: 1px solid var(--line-soft);
}

.overlay__label {
    font-size: 11px;
    text-transform: uppercase;
    letter-spacing: .3em;
    color: var(--muted);
    margin-bottom: 12px;
}

.overlay__contact {
    display: block;
    font-family: var(--font-display);
    font-size: 21px;
    font-weight: 600;
    padding-block: 3px;
    transition: color .3s;
}
.overlay__contact:hover { color: var(--accent); }

.overlay__social { display: flex; gap: 20px; }
.overlay__social a {
    font-size: 14.5px;
    color: var(--ink-dim);
    border-bottom: 1px solid var(--line);
    padding-bottom: 2px;
    transition: color .3s, border-color .3s;
}
.overlay__social a:hover { color: var(--accent); border-color: var(--accent); }

.overlay__foot {
    padding-top: 24px;
    border-top: 1px solid var(--line-soft);
    font-size: 12px;
    color: var(--muted);
    letter-spacing: .04em;
}

/* ════════ RESPONSIVE ════════ */
@media (max-width: 1380px) {
    .nav__link { padding: 12px 13px; font-size: 15.5px; }
    .brand__tag { display: none; }
}

@media (max-width: 1200px) {
    .theme-rail { display: none; }
    .mega__inner { grid-template-columns: 1fr; gap: 32px; padding-block: 40px; }
    .mega__aside { display: none; }
    .mega__grid { border-left: 0; padding-left: 0; }
}

@media (max-width: 1024px) {
    .nav { display: none; }
    .navbar__inner { grid-template-columns: auto 1fr auto; }
    .menu-btn { grid-column: 1; }
    .brand { grid-column: 2; }
    .navbar__actions { grid-column: 3; }
    .topbar__note { display: none; }
    .hero-slider__ghost { display: none; }
    .overlay__grid { grid-template-columns: 1fr; gap: 40px; }
    .overlay__aside { padding-left: 0; border-left: 0; }
}

@media (max-width: 640px) {
    .container { width: calc(100% - 36px); }
    :root { --header-h: 76px; }
    .topbar__group:last-child { display: none; }
    .topbar__inner { justify-content: center; }
    .menu-btn__label { display: none; }
    .menu-btn { padding: 13px 16px; }
    .brand__word { font-size: 22px; }
    .navbar__actions .btn--primary span { display: none; }
    .navbar__actions .btn--primary { padding: 13px; border-radius: 50%; }
    .theme-rail { display: none; }
    .hero__counter-track { width: 90px; }
    .hero__controls { gap: 20px; }
    .badges { gap: 18px 26px; justify-content: flex-start; }
    .badge__icon { width: 42px; height: 42px; }
    .badge__text { font-size: 12.5px; }
    .pcard { width: 250px; }
    .pcard__visual { height: 130px; }
    .hero__scroll { display: none; }
}

/* ════════ ERİŞİLEBİLİRLİK ════════ */
@media (prefers-reduced-motion: reduce) {
    *, *::before, *::after {
        animation-duration: .01ms !important;
        animation-iteration-count: 1 !important;
        transition-duration: .01ms !important;
    }
}

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

/* ════════ BÖLÜM 2 — HİZMETLER ════════ */
.services {
    position: relative;
    padding-block: clamp(80px, 12vh, 150px);
    border-top: 1px solid var(--line-soft);
    scroll-margin-top: 90px;
}

/* — Bölüm başlığı — */
.section-head {
    display: grid;
    grid-template-columns: 1.5fr 1fr;
    gap: 48px;
    align-items: end;
    margin-bottom: clamp(48px, 7vh, 84px);
}

.section-head__kicker {
    display: flex;
    align-items: center;
    gap: 14px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .22em;
    text-transform: uppercase;
    color: var(--muted);
    margin-bottom: 26px;
}
.section-head__kicker span { color: var(--accent); }
.section-head__kicker i {
    width: 44px;
    height: 1px;
    background: var(--line);
}

.section-head__title {
    font-family: var(--font-display);
    font-size: clamp(34px, 4.6vw, 64px);
    font-weight: 600;
    line-height: 1.08;
    letter-spacing: -.025em;
}
.section-head__title em {
    font-style: normal;
    color: var(--accent);
}

.section-head__side {
    display: flex;
    flex-direction: column;
    gap: 22px;
    padding-bottom: 8px;
}
.section-head__side p {
    font-size: 15.5px;
    line-height: 1.75;
    color: var(--muted);
    max-width: 420px;
}

.link-arrow {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    color: var(--ink);
    width: fit-content;
    border-bottom: 1px solid var(--line);
    padding-bottom: 6px;
    transition: border-color .3s, color .3s;
}
.link-arrow svg { width: 16px; height: 16px; color: var(--accent); transition: transform .35s var(--ease); }
.link-arrow:hover { border-color: var(--accent); color: var(--accent); }
.link-arrow:hover svg { transform: translate(3px, -3px); }

/* — Hizmet satırları — */
.svc-list { border-top: 1px solid var(--line); }

.svc {
    border-bottom: 1px solid var(--line);
    scroll-margin-top: 110px;
}

.svc__row {
    position: relative;
    display: grid;
    grid-template-columns: 64px 72px 1fr auto 64px;
    align-items: center;
    gap: clamp(16px, 2.4vw, 36px);
    padding: clamp(22px, 3.2vh, 34px) clamp(8px, 1.4vw, 24px);
    overflow: hidden;
}

/* hover süpürme efekti */
.svc__row::before {
    content: '';
    position: absolute;
    inset: 0;
    background: var(--bg-soft);
    transform: scaleY(0);
    transform-origin: bottom;
    transition: transform .5s var(--ease);
    z-index: -1;
}
.svc__row:hover::before { transform: scaleY(1); transform-origin: top; }

.svc__no {
    font-family: var(--font-display);
    font-size: 14px;
    font-weight: 600;
    letter-spacing: .1em;
    color: var(--muted);
    transition: color .3s;
}
.svc__row:hover .svc__no { color: var(--accent); }

.svc__icon {
    width: 60px;
    height: 60px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 16px;
    color: var(--ink-dim);
    transition: border-color .35s, color .35s, transform .45s var(--ease);
}
.svc__icon svg { width: 26px; height: 26px; }
.svc__row:hover .svc__icon {
    border-color: var(--accent);
    color: var(--accent);
    transform: rotate(-6deg) scale(1.05);
}

.svc__body { min-width: 0; }

.svc__title {
    font-family: var(--font-display);
    font-size: clamp(20px, 2.4vw, 32px);
    font-weight: 600;
    letter-spacing: -.015em;
    line-height: 1.2;
    color: var(--ink-dim);
    transition: color .3s, transform .45s var(--ease);
}
.svc__row:hover .svc__title {
    color: var(--ink);
    transform: translateX(10px);
}

/* hover'da açılan açıklama */
.svc__reveal {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .55s var(--ease);
}
.svc__row:hover .svc__reveal { grid-template-rows: 1fr; }
.svc__reveal-in { min-height: 0; overflow: hidden; display: block; }
.svc__desc {
    display: block;
    padding-top: 10px;
    max-width: 560px;
    font-size: 14.5px;
    line-height: 1.7;
    color: var(--muted);
    transform: translateX(10px) ;
    transition: transform .45s var(--ease);
}

.svc__tags {
    display: flex;
    gap: 8px;
    flex-wrap: wrap;
    justify-content: flex-end;
    max-width: 320px;
}
.svc__tags i {
    font-style: normal;
    font-size: 12px;
    letter-spacing: .04em;
    color: var(--muted);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 6px 14px;
    white-space: nowrap;
    transition: border-color .3s, color .3s, background .3s;
}
.svc__row:hover .svc__tags i { border-color: var(--line); color: var(--ink-dim); }

.svc__arrow {
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--ink-dim);
    transform: rotate(45deg);
    transition: transform .45s var(--ease), background .35s, color .35s, border-color .35s;
}
.svc__arrow svg { width: 20px; height: 20px; }
.svc__row:hover .svc__arrow {
    transform: rotate(0deg);
    background: var(--accent);
    border-color: var(--accent);
    color: var(--accent-ink);
}

/* — Bölüm alt çağrısı — */
.services__foot {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 28px;
    flex-wrap: wrap;
    margin-top: clamp(44px, 6vh, 72px);
}
.services__foot p {
    font-family: var(--font-display);
    font-size: clamp(17px, 1.6vw, 22px);
    font-weight: 500;
    color: var(--ink-dim);
}

/* — Scroll reveal — */
[data-reveal] {
    opacity: 0;
    transform: translateY(34px);
    transition: opacity .8s var(--ease-soft), transform .9s var(--ease);
}
[data-reveal].is-visible {
    opacity: 1;
    transform: translateY(0);
}

/* — Responsive — */
@media (max-width: 1024px) {
    .section-head { grid-template-columns: 1fr; gap: 28px; align-items: start; }
    .svc__row { grid-template-columns: 44px 1fr auto; }
    .svc__icon { display: none; }
    .svc__tags { display: none; }
}

@media (max-width: 640px) {
    .svc__row { grid-template-columns: 36px 1fr 48px; gap: 14px; padding-inline: 4px; }
    .svc__arrow { width: 44px; height: 44px; }
    .svc__arrow svg { width: 17px; height: 17px; }
    /* dokunmatikte açıklama her zaman açık */
    .svc__reveal { grid-template-rows: 1fr; }
    .services__foot { justify-content: center; text-align: center; }
}

/* ════════ BÖLÜM 3 — NEDEN ARLA MEDYA ════════ */
.why {
    position: relative;
    padding-block: 0 clamp(80px, 12vh, 150px);
    border-top: 1px solid var(--line-soft);
    overflow: hidden;
    scroll-margin-top: 90px;
}

/* — Dev outlined yazı şeridi — */
.strip {
    padding-block: clamp(28px, 4.5vh, 52px);
    border-bottom: 1px solid var(--line-soft);
    overflow: hidden;
    -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
    mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}

.strip__track {
    display: flex;
    align-items: center;
    gap: 38px;
    width: max-content;
    animation: marquee 38s linear infinite;
}
.strip:hover .strip__track { animation-play-state: paused; }

.strip__word {
    font-family: var(--font-display);
    font-size: clamp(46px, 6vw, 92px);
    font-weight: 700;
    letter-spacing: -.02em;
    line-height: 1;
    white-space: nowrap;
    color: transparent;
    -webkit-text-stroke: 1px var(--muted);
    transition: color .4s, -webkit-text-stroke-color .4s;
}
.strip__word:hover {
    color: var(--accent);
    -webkit-text-stroke-color: var(--accent);
}

.strip__star {
    font-size: clamp(16px, 2vw, 26px);
    color: var(--accent);
    opacity: .7;
}

/* — Manifesto — */
.section-head--solo {
    grid-template-columns: 1fr;
    margin-bottom: clamp(32px, 5vh, 56px);
    margin-top: clamp(56px, 9vh, 110px);
}

.manifesto {
    max-width: 1180px;
    font-family: var(--font-display);
    font-size: clamp(27px, 3.6vw, 54px);
    font-weight: 500;
    line-height: 1.35;
    letter-spacing: -.02em;
}

/* JS her kelimeyi .w span'ına sarar; scroll'la aydınlanır */
.manifesto .w {
    opacity: .18;
    transition: opacity .35s var(--ease-soft);
}
.manifesto .w.lit { opacity: 1; }
.manifesto em { font-style: normal; color: var(--accent); }

/* — İstatistikler — */
.stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    margin-top: clamp(60px, 9vh, 110px);
    border-top: 1px solid var(--line);
}

.stat {
    padding: clamp(28px, 4vh, 44px) clamp(20px, 2vw, 36px) 8px;
    border-right: 1px solid var(--line-soft);
    transition: background .4s;
}
.stat:last-child { border-right: 0; }
.stat:hover { background: var(--bg-soft); }

.stat strong {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(46px, 4.6vw, 76px);
    font-weight: 600;
    line-height: 1;
    letter-spacing: -.03em;
    margin-bottom: 14px;
    font-variant-numeric: tabular-nums;
}
.stat:hover strong { color: var(--accent); }
.stat strong { transition: color .35s; }

.stat__label {
    display: block;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 600;
    letter-spacing: .02em;
    margin-bottom: 10px;
}

.stat p {
    font-size: 13.5px;
    line-height: 1.65;
    color: var(--muted);
    padding-bottom: 20px;
}

@media (max-width: 1024px) {
    .stats { grid-template-columns: repeat(2, 1fr); }
    .stat:nth-child(2n) { border-right: 0; }
    .stat:nth-child(-n+2) { border-bottom: 1px solid var(--line-soft); }
}

@media (max-width: 560px) {
    .stats { grid-template-columns: 1fr; }
    .stat { border-right: 0 !important; border-bottom: 1px solid var(--line-soft); }
    .stat:last-child { border-bottom: 0; }
}

/* ════════ BÖLÜM 4 — NASIL ÇALIŞIYORUZ ════════ */
.process {
    padding-block: clamp(80px, 12vh, 150px);
    border-top: 1px solid var(--line-soft);
    scroll-margin-top: 90px;
}

.process__grid {
    display: grid;
    grid-template-columns: 1fr 1.35fr;
    gap: clamp(48px, 6vw, 110px);
}

/* — Sol yapışkan sütun — */
.process__sticky {
    position: sticky;
    top: 140px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.process__sticky .section-head__kicker { margin-bottom: 26px; }
.process__sticky .section-head__title { margin-bottom: 24px; }

.process__lead {
    max-width: 420px;
    font-size: 15.5px;
    line-height: 1.75;
    color: var(--muted);
    margin-bottom: 34px;
}

/* — Adım kartları — */
.steps {
    display: flex;
    flex-direction: column;
    gap: clamp(20px, 3vh, 32px);
    counter-reset: step;
    position: relative;
}

/* adımları bağlayan dikey çizgi */
.steps::before {
    content: '';
    position: absolute;
    left: 31px;
    top: 40px;
    bottom: 40px;
    width: 1px;
    background: var(--line-soft);
}

.step {
    position: relative;
    padding: clamp(28px, 4vh, 40px) clamp(24px, 2.6vw, 44px);
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--bg-soft);
    overflow: hidden;
    transition: border-color .4s, transform .5s var(--ease), background .4s;
}
.step:hover {
    border-color: var(--accent);
    transform: translateY(-4px);
    background: var(--bg-raise);
}

.step__ghost {
    position: absolute;
    top: -26px;
    right: 6px;
    font-family: var(--font-display);
    font-size: clamp(110px, 11vw, 170px);
    font-weight: 700;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px var(--line);
    pointer-events: none;
    user-select: none;
    transition: -webkit-text-stroke-color .4s, color .4s;
}
.step:hover .step__ghost {
    -webkit-text-stroke-color: color-mix(in srgb, var(--accent) 45%, transparent);
}

.step__head {
    display: flex;
    align-items: center;
    gap: 18px;
    margin-bottom: 18px;
}

.step__icon {
    flex: 0 0 auto;
    width: 56px;
    height: 56px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    background: var(--bg);
    color: var(--ink-dim);
    position: relative;
    z-index: 1;
    transition: border-color .35s, color .35s, transform .45s var(--ease);
}
.step__icon svg { width: 24px; height: 24px; }
.step:hover .step__icon {
    border-color: var(--accent);
    color: var(--accent);
    transform: rotate(-8deg) scale(1.06);
}

.step__title {
    font-family: var(--font-display);
    font-size: clamp(21px, 2.1vw, 28px);
    font-weight: 600;
    letter-spacing: -.015em;
    display: flex;
    align-items: baseline;
    gap: 10px;
}
.step__title sup {
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .1em;
    color: var(--accent);
}

.step__desc {
    max-width: 560px;
    font-size: 14.5px;
    line-height: 1.75;
    color: var(--muted);
    margin-bottom: 20px;
}

.step__tags { display: flex; flex-wrap: wrap; gap: 8px; }
.step__tags i {
    font-style: normal;
    font-size: 12px;
    letter-spacing: .04em;
    color: var(--ink-dim);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 6px 14px;
    transition: border-color .3s, color .3s;
}
.step:hover .step__tags i { border-color: var(--line); }
.step .step__tags i:hover { border-color: var(--accent); color: var(--accent); }

@media (max-width: 1024px) {
    .process__grid { grid-template-columns: 1fr; }
    .process__sticky { position: static; }
    .steps::before { display: none; }
}

/* ════════ BÖLÜM 5 — SIKÇA SORULAN SORULAR ════════ */
.faq {
    padding-block: clamp(80px, 12vh, 150px);
    border-top: 1px solid var(--line-soft);
    scroll-margin-top: 90px;
}

.faq__grid {
    display: grid;
    grid-template-columns: 1fr 1.55fr;
    gap: clamp(48px, 6vw, 110px);
}

.faq__sticky {
    position: sticky;
    top: 140px;
    display: flex;
    flex-direction: column;
    align-items: flex-start;
}
.faq__sticky .section-head__kicker { margin-bottom: 26px; }
.faq__sticky .section-head__title { margin-bottom: 24px; }

.faq__lead {
    max-width: 400px;
    font-size: 15.5px;
    line-height: 1.75;
    color: var(--muted);
    margin-bottom: 34px;
}

.faq__actions {
    display: flex;
    align-items: center;
    gap: 28px;
    flex-wrap: wrap;
}

/* — Akordeon — */
.faq__list { border-top: 1px solid var(--line); }

.faq__item { border-bottom: 1px solid var(--line); }

.faq__q {
    display: grid;
    grid-template-columns: 40px 1fr 44px;
    align-items: center;
    gap: 16px;
    width: 100%;
    text-align: left;
    padding: clamp(22px, 3vh, 30px) 4px;
    transition: padding-left .35s var(--ease);
}
.faq__q:hover { padding-left: 12px; }

.faq__q sup {
    font-family: var(--font-display);
    font-size: 12px;
    font-weight: 600;
    letter-spacing: .1em;
    color: var(--muted);
    transition: color .3s;
}
.faq__item.is-open .faq__q sup,
.faq__q:hover sup { color: var(--accent); }

.faq__q > span:not(.faq__plus) {
    font-family: var(--font-display);
    font-size: clamp(17px, 1.7vw, 22px);
    font-weight: 600;
    letter-spacing: -.01em;
    line-height: 1.35;
    color: var(--ink-dim);
    transition: color .3s;
}
.faq__item.is-open .faq__q > span:not(.faq__plus),
.faq__q:hover > span:not(.faq__plus) { color: var(--ink); }

/* artı / çarpı ikonu */
.faq__plus {
    position: relative;
    width: 44px;
    height: 44px;
    border: 1px solid var(--line);
    border-radius: 50%;
    justify-self: end;
    transition: border-color .35s, background .35s, transform .5s var(--ease);
}
.faq__plus i {
    position: absolute;
    top: 50%; left: 50%;
    width: 16px; height: 1.5px;
    background: var(--ink-dim);
    transform: translate(-50%, -50%);
    transition: transform .5s var(--ease), background .35s;
}
.faq__plus i:last-child { transform: translate(-50%, -50%) rotate(90deg); }

.faq__item.is-open .faq__plus {
    background: var(--accent);
    border-color: var(--accent);
    transform: rotate(135deg);
}
.faq__item.is-open .faq__plus i { background: var(--accent-ink); }

/* cevap paneli */
.faq__a {
    display: grid;
    grid-template-rows: 0fr;
    transition: grid-template-rows .6s var(--ease);
}
.faq__item.is-open .faq__a { grid-template-rows: 1fr; }

.faq__a-in { min-height: 0; overflow: hidden; }
.faq__a p {
    max-width: 640px;
    padding: 0 4px 28px 56px;
    font-size: 15px;
    line-height: 1.8;
    color: var(--muted);
}

@media (max-width: 1024px) {
    .faq__grid { grid-template-columns: 1fr; gap: 40px; }
    .faq__sticky { position: static; }
    .faq__a p { padding-left: 0; }
    .faq__q { grid-template-columns: 28px 1fr 40px; }
    .faq__plus { width: 38px; height: 38px; }
}

/* ════════ CTA BANNER — Fikriniz mi var? ════════ */
.cta {
    position: relative;
    padding-block: clamp(90px, 14vh, 170px);
    border-top: 1px solid var(--line-soft);
    overflow: hidden;
    scroll-margin-top: 90px;
}

.cta__glow {
    position: absolute;
    bottom: -45%;
    left: 50%;
    width: 1100px;
    height: 750px;
    transform: translateX(-50%);
    background: radial-gradient(ellipse at center, var(--glow) 0%, transparent 62%);
    pointer-events: none;
}

.cta__inner {
    position: relative;
    display: grid;
    grid-template-columns: 1fr auto;
    align-items: center;
    gap: clamp(40px, 5vw, 90px);
}

.cta__title {
    font-family: var(--font-display);
    font-size: clamp(42px, 6.2vw, 96px);
    font-weight: 600;
    line-height: 1.05;
    letter-spacing: -.03em;
    margin-bottom: 26px;
}
.cta__title em {
    font-style: normal;
    background: linear-gradient(100deg, var(--ink) 10%, var(--accent) 70%);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
}

.cta__sub {
    max-width: 520px;
    font-size: clamp(15px, 1.3vw, 17.5px);
    line-height: 1.75;
    color: var(--muted);
    margin-bottom: 38px;
}

.cta__actions {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
}

/* — Dönen rozet — */
.cta__badge {
    position: relative;
    width: clamp(150px, 14vw, 210px);
    aspect-ratio: 1;
    display: grid;
    place-items: center;
    color: var(--ink-dim);
    transition: color .4s;
}
.cta__badge:hover { color: var(--accent); }

.cta__badge-ring {
    position: absolute;
    inset: 0;
    width: 100%;
    height: 100%;
    animation: spin 16s linear infinite;
}
.cta__badge:hover .cta__badge-ring { animation-play-state: paused; }
@keyframes spin { to { transform: rotate(360deg); } }

.cta__badge-ring text {
    font-family: var(--font-display);
    font-size: 11.5px;
    font-weight: 600;
    letter-spacing: .32em;
    text-transform: uppercase;
    fill: currentColor;
}

.cta__badge-arrow {
    width: 42px;
    height: 42px;
    border: 1px solid var(--line);
    border-radius: 50%;
    padding: 10px;
    transition: background .35s, border-color .35s, color .35s, transform .45s var(--ease);
}
.cta__badge:hover .cta__badge-arrow {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--accent-ink);
    transform: translate(3px, -3px);
}

/* ════════ FOOTER ════════ */
.footer {
    border-top: 1px solid var(--line);
    background: var(--bg-soft);
}

.footer__grid {
    display: grid;
    grid-template-columns: 1.6fr 1fr 1fr 1.2fr;
    gap: clamp(36px, 4vw, 72px);
    padding-block: clamp(56px, 8vh, 88px) clamp(40px, 6vh, 64px);
}

.footer__brand { display: flex; flex-direction: column; align-items: flex-start; gap: 20px; }

.footer__tagline {
    max-width: 320px;
    font-size: 14px;
    line-height: 1.75;
    color: var(--muted);
}

.footer__social { display: flex; gap: 10px; }
.footer__social a {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 50%;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    color: var(--ink-dim);
    transition: border-color .3s, color .3s, background .3s, transform .35s var(--ease);
}
.footer__social a:hover {
    border-color: var(--accent);
    background: var(--accent);
    color: var(--accent-ink);
    transform: translateY(-3px);
}

.footer__col { display: flex; flex-direction: column; align-items: flex-start; gap: 12px; }

.footer__head {
    font-size: 11.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .26em;
    color: var(--muted);
    margin-bottom: 10px;
}

.footer__col > a {
    display: inline-flex;
    align-items: center;
    font-size: 14.5px;
    color: var(--ink-dim);
    transition: color .25s;
}
.footer__col > a::before {
    content: '';
    width: 0;
    height: 1.5px;
    background: var(--accent);
    margin-right: 0;
    transition: width .3s var(--ease), margin-right .3s var(--ease);
}
.footer__col > a:hover { color: var(--ink); }
.footer__col > a:hover::before { width: 14px; margin-right: 8px; }

.footer__contact-line {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    font-size: 14.5px;
    color: var(--ink-dim);
    transition: color .25s;
}
.footer__contact-line svg { width: 16px; height: 16px; opacity: .6; flex: 0 0 auto; }
a.footer__contact-line:hover { color: var(--accent); }
.footer__contact .link-arrow { margin-top: 10px; font-size: 14px; }

/* — Alt bar — */
.footer__bottom {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 20px;
    flex-wrap: wrap;
    padding-block: 26px;
    border-top: 1px solid var(--line-soft);
    font-size: 13px;
    color: var(--muted);
}

.footer__legal { display: flex; gap: 26px; flex-wrap: wrap; }
.footer__legal a { transition: color .25s; }
.footer__legal a:hover { color: var(--accent); }

.footer__top {
    display: grid;
    place-items: center;
    width: 46px;
    height: 46px;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--ink-dim);
    transition: border-color .3s, color .3s, transform .35s var(--ease);
}
.footer__top svg { width: 18px; height: 18px; }
.footer__top:hover {
    border-color: var(--accent);
    color: var(--accent);
    transform: translateY(-4px);
}

/* ════════ İLETİŞİM SAYFASI ════════ */
.contact {
    min-height: 55vh;
    padding-block: clamp(60px, 9vh, 110px) clamp(70px, 10vh, 130px);
}
.contact .section-head--solo { margin-top: 0; }

.contact__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 18px;
    margin-top: clamp(40px, 6vh, 64px);
}

.contact__card {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    padding: clamp(26px, 3.4vh, 38px) clamp(22px, 2vw, 32px);
    border: 1px solid var(--line);
    border-radius: 20px;
    background: var(--bg-soft);
    transition: border-color .35s, transform .45s var(--ease), background .35s;
}
.contact__card:hover {
    border-color: var(--accent);
    background: var(--bg-raise);
    transform: translateY(-4px);
}

.contact__icon {
    width: 52px;
    height: 52px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 14px;
    color: var(--ink-dim);
    transition: border-color .3s, color .3s;
}
.contact__icon svg { width: 23px; height: 23px; }
.contact__card:hover .contact__icon { border-color: var(--accent); color: var(--accent); }

.contact__label {
    font-size: 11.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .22em;
    color: var(--muted);
}

.contact__value {
    font-family: var(--font-display);
    font-size: clamp(15.5px, 1.4vw, 18.5px);
    font-weight: 600;
    color: var(--ink);
    transition: color .3s;
}
a.contact__value:hover { color: var(--accent); }

.contact__note {
    margin-top: clamp(36px, 5vh, 52px);
    font-size: 14.5px;
    color: var(--muted);
}

/* — Responsive: banner + footer + iletişim — */
@media (max-width: 1024px) {
    .cta__inner { grid-template-columns: 1fr; }
    .cta__badge { display: none; }
    .footer__grid { grid-template-columns: 1fr 1fr; }
    .contact__grid { grid-template-columns: repeat(2, 1fr); }
}

@media (max-width: 640px) {
    .footer__grid { grid-template-columns: 1fr; gap: 36px; }
    .footer__bottom { justify-content: center; text-align: center; }
    .contact__grid { grid-template-columns: 1fr; }
}

/* — İletişim formu — */
.contact__form {
    margin-top: clamp(56px, 8vh, 90px);
    padding: clamp(28px, 4vw, 56px);
    border: 1px solid var(--line);
    border-radius: 24px;
    background: var(--bg-soft);
}

.contact__form-head { margin-bottom: clamp(24px, 4vh, 40px); }
.contact__form-head .section-head__kicker { margin-bottom: 18px; }

.contact__form-title {
    font-family: var(--font-display);
    font-size: clamp(26px, 3vw, 42px);
    font-weight: 600;
    letter-spacing: -.02em;
}
.contact__form-title em { font-style: normal; color: var(--accent); }

/* kart içinde iki telefon satırı alt alta nefes alsın */
.contact__card .contact__value + .contact__value { margin-top: 2px; }

/* ════════ HAKKIMIZDA SAYFASI ════════ */
.about-head {
    padding-block: clamp(60px, 9vh, 110px) clamp(40px, 6vh, 70px);
}
.about-head .section-head--solo { margin-top: 0; margin-bottom: 30px; }
.about-head__title { max-width: 1100px; }

.about-head__lead {
    max-width: 760px;
    font-size: clamp(16px, 1.5vw, 19px);
    line-height: 1.8;
    color: var(--ink-dim);
}

/* — Hikâyemiz — */
.story {
    padding-block: clamp(60px, 9vh, 110px);
    border-top: 1px solid var(--line-soft);
}

.story__grid {
    display: grid;
    grid-template-columns: 1fr 1.5fr;
    gap: clamp(48px, 6vw, 110px);
}

.story__sticky { position: sticky; top: 140px; }
.story__sticky .section-head__kicker { margin-bottom: 24px; }

.story__year {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(90px, 11vw, 180px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -.04em;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--accent);
    user-select: none;
}

.story__since {
    font-family: var(--font-display);
    font-size: clamp(17px, 1.6vw, 22px);
    font-weight: 600;
    color: var(--muted);
    margin-top: 8px;
}

.story__body {
    display: flex;
    flex-direction: column;
    gap: clamp(22px, 3.4vh, 34px);
}

.story__body p {
    font-size: clamp(15.5px, 1.4vw, 18px);
    line-height: 1.85;
    color: var(--ink-dim);
    max-width: 680px;
}
.story__body p:first-child {
    font-family: var(--font-display);
    font-size: clamp(18px, 1.8vw, 24px);
    line-height: 1.6;
    color: var(--ink);
}
.story__body em {
    font-style: normal;
    color: var(--accent);
}

/* — Hibrit yapı — */
.culture {
    padding-block: clamp(70px, 10vh, 130px);
    border-top: 1px solid var(--line-soft);
}

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

.culture__card {
    position: relative;
    padding: clamp(28px, 3.6vh, 42px) clamp(24px, 2.2vw, 36px);
    border: 1px solid var(--line);
    border-radius: 22px;
    background: var(--bg-soft);
    overflow: hidden;
    transition: border-color .4s, transform .5s var(--ease), background .4s;
}
.culture__card:hover {
    border-color: var(--accent);
    background: var(--bg-raise);
    transform: translateY(-5px);
}

.culture__no {
    position: absolute;
    top: 22px;
    right: 26px;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .1em;
    color: var(--muted);
    transition: color .3s;
}
.culture__card:hover .culture__no { color: var(--accent); }

.culture__icon {
    display: grid;
    place-items: center;
    width: 58px;
    height: 58px;
    border: 1px solid var(--line);
    border-radius: 16px;
    color: var(--ink-dim);
    margin-bottom: 22px;
    transition: border-color .35s, color .35s, transform .45s var(--ease);
}
.culture__icon svg { width: 26px; height: 26px; }
.culture__card:hover .culture__icon {
    border-color: var(--accent);
    color: var(--accent);
    transform: rotate(-6deg) scale(1.05);
}

.culture__card h3 {
    font-family: var(--font-display);
    font-size: clamp(19px, 1.8vw, 24px);
    font-weight: 600;
    letter-spacing: -.01em;
    margin-bottom: 12px;
}

.culture__card p {
    font-size: 14px;
    line-height: 1.7;
    color: var(--muted);
}

.culture__chips {
    display: flex;
    align-items: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: clamp(28px, 4vh, 44px);
}
.culture__chips span {
    font-family: var(--font-display);
    font-size: 13.5px;
    font-weight: 600;
    color: var(--muted);
    margin-right: 6px;
}
.culture__chips i {
    font-style: normal;
    font-size: 13px;
    letter-spacing: .03em;
    color: var(--ink-dim);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 18px;
    transition: border-color .3s, color .3s, background .3s;
}
.culture__chips i:hover {
    border-color: var(--accent);
    color: var(--accent);
}

/* — Değerlerimiz — */
.values {
    padding-block: clamp(70px, 10vh, 130px) clamp(40px, 6vh, 70px);
    border-top: 1px solid var(--line-soft);
}
.values .section-head--solo { margin-top: 0; }

.values__grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
}

.values__item {
    padding: clamp(26px, 4vh, 40px) clamp(18px, 2vw, 32px);
    border-right: 1px solid var(--line-soft);
    transition: background .4s;
}
.values__item:last-child { border-right: 0; }
.values__item:hover { background: var(--bg-soft); }

.values__icon {
    display: grid;
    place-items: center;
    width: 52px;
    height: 52px;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--ink-dim);
    margin-bottom: 20px;
    transition: border-color .35s, color .35s;
}
.values__icon svg { width: 23px; height: 23px; }
.values__item:hover .values__icon { border-color: var(--accent); color: var(--accent); }

.values__item h3 {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    margin-bottom: 10px;
}
.values__item p {
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--muted);
}

/* — Kapanış — */
.about-closing {
    padding-block: clamp(60px, 9vh, 110px);
    border-top: 1px solid var(--line-soft);
}

/* — Responsive — */
@media (max-width: 1024px) {
    .story__grid { grid-template-columns: 1fr; gap: 36px; }
    .story__sticky { position: static; }
    .culture__grid { grid-template-columns: 1fr; }
    .values__grid { grid-template-columns: repeat(2, 1fr); }
    .values__item:nth-child(2n) { border-right: 0; }
    .values__item:nth-child(-n+2) { border-bottom: 1px solid var(--line-soft); }
}

@media (max-width: 560px) {
    .values__grid { grid-template-columns: 1fr; }
    .values__item { border-right: 0 !important; border-bottom: 1px solid var(--line-soft); }
    .values__item:last-child { border-bottom: 0; }
}

/* ════════ VİZYON & MİSYON / KALİTE SAYFALARI ════════ */
.story__word {
    display: block;
    font-family: var(--font-display);
    font-size: clamp(56px, 7vw, 110px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -.03em;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--accent);
    user-select: none;
    margin-top: 6px;
}

.policy {
    padding-block: clamp(40px, 6vh, 70px) clamp(70px, 10vh, 120px);
}

.policy__grid {
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 18px;
}

.policy__card .step__desc { margin-bottom: 0; }

@media (max-width: 1024px) {
    .policy__grid { grid-template-columns: 1fr; }
}

/* — "ve daha fazlası" kartı — */
.pcard--more {
    display: grid;
    place-items: center;
    background: linear-gradient(160deg, var(--bg-raise), var(--bg-soft));
}

.pcard__more {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
    gap: 6px;
    padding: 28px 24px;
}

.pcard__more strong {
    font-family: var(--font-display);
    font-size: clamp(40px, 4vw, 56px);
    font-weight: 700;
    line-height: 1;
    letter-spacing: -.03em;
    color: transparent;
    -webkit-text-stroke: 1.5px var(--accent);
}

.pcard__more span {
    font-family: var(--font-display);
    font-size: 17px;
    font-weight: 600;
    color: var(--ink);
}

.pcard__more small {
    font-size: 12.5px;
    color: var(--muted);
    max-width: 200px;
    line-height: 1.6;
}

/* ════════ REFERANSLAR SAYFASI ════════ */
.refs {
    padding-block: clamp(60px, 9vh, 110px) clamp(70px, 10vh, 130px);
}
.refs .section-head--solo { margin-top: 0; margin-bottom: 30px; }

.refs__filter {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-block: clamp(32px, 5vh, 52px) clamp(28px, 4vh, 40px);
}

.refs__filter button {
    font-family: var(--font-display);
    font-size: 13.5px;
    font-weight: 600;
    letter-spacing: .02em;
    color: var(--ink-dim);
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 11px 22px;
    transition: border-color .3s, color .3s, background .3s;
}
.refs__filter button:hover { border-color: var(--accent); color: var(--accent); }
.refs__filter button.is-active {
    background: var(--accent);
    border-color: var(--accent);
    color: var(--accent-ink);
}

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

.refs__card { width: auto; }
.refs__card.is-hidden { display: none; }

@media (max-width: 1280px) { .refs__grid { grid-template-columns: repeat(3, 1fr); } }
@media (max-width: 900px)  { .refs__grid { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 560px)  { .refs__grid { grid-template-columns: 1fr; } }

/* ════════ SÖZLEŞMELER ════════ */
.docs, .doc {
    padding-block: clamp(60px, 9vh, 110px) clamp(70px, 10vh, 130px);
}
.docs .section-head--solo, .doc .section-head--solo { margin-top: 0; margin-bottom: 26px; }

.docs__list {
    margin-top: clamp(36px, 5vh, 56px);
    border-top: 1px solid var(--line);
    max-width: 980px;
}

.docs__list li { border-bottom: 1px solid var(--line); }

.docs__row {
    display: grid;
    grid-template-columns: 44px 56px 1fr 52px;
    align-items: center;
    gap: 18px;
    padding: clamp(20px, 2.8vh, 28px) 6px;
    transition: padding-left .35s var(--ease), background .3s;
}
.docs__row:hover { padding-left: 16px; }

.docs__no {
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .1em;
    color: var(--muted);
    transition: color .3s;
}
.docs__row:hover .docs__no { color: var(--accent); }

.docs__icon {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 12px;
    color: var(--ink-dim);
    transition: border-color .3s, color .3s;
}
.docs__icon svg { width: 21px; height: 21px; }
.docs__row:hover .docs__icon { border-color: var(--accent); color: var(--accent); }

.docs__title {
    font-family: var(--font-display);
    font-size: clamp(17px, 1.7vw, 22px);
    font-weight: 600;
    letter-spacing: -.01em;
    color: var(--ink-dim);
    transition: color .3s;
}
.docs__row:hover .docs__title { color: var(--ink); }

.docs__arrow {
    width: 48px;
    height: 48px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 50%;
    color: var(--ink-dim);
    transform: rotate(45deg);
    transition: transform .45s var(--ease), background .3s, border-color .3s, color .3s;
}
.docs__arrow svg { width: 18px; height: 18px; }
.docs__row:hover .docs__arrow {
    transform: rotate(0);
    background: var(--accent);
    border-color: var(--accent);
    color: var(--accent-ink);
}

/* — Sözleşme detay (yer tutucu) — */
.doc__back {
    color: var(--accent);
    transition: opacity .25s;
}
.doc__back:hover { opacity: .75; }

.doc__body { max-width: 980px; }

.doc__placeholder {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 14px;
    margin-top: clamp(24px, 4vh, 40px);
    padding: clamp(32px, 5vh, 56px) clamp(26px, 3vw, 48px);
    border: 1px dashed var(--line);
    border-radius: 24px;
    background: var(--bg-soft);
}

.doc__placeholder-icon {
    width: 58px;
    height: 58px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 16px;
    color: var(--accent);
    margin-bottom: 8px;
}
.doc__placeholder-icon svg { width: 26px; height: 26px; }

.doc__placeholder h2 {
    font-family: var(--font-display);
    font-size: clamp(20px, 2vw, 27px);
    font-weight: 600;
    letter-spacing: -.01em;
}

.doc__placeholder p {
    max-width: 520px;
    font-size: 15px;
    line-height: 1.75;
    color: var(--muted);
}

.doc__placeholder-actions {
    display: flex;
    align-items: center;
    gap: 26px;
    flex-wrap: wrap;
    margin-top: 14px;
}

@media (max-width: 640px) {
    .docs__row { grid-template-columns: 32px 1fr 44px; }
    .docs__icon { display: none; }
    .docs__arrow { width: 42px; height: 42px; }
}

/* ════════ SÖZLEŞME İÇERİĞİ (legal) ════════ */
.legal-grid {
    display: grid;
    grid-template-columns: 290px 1fr;
    gap: clamp(40px, 5vw, 80px);
    margin-top: clamp(28px, 4vh, 44px);
}

.legal-aside__sticky {
    position: sticky;
    top: 120px;
}

.legal-aside__label {
    font-size: 11.5px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: .26em;
    color: var(--muted);
    margin-bottom: 16px;
}

.legal-toc {
    display: flex;
    flex-direction: column;
    border-left: 1px solid var(--line);
    max-height: calc(100vh - 200px);
    overflow-y: auto;
}

.legal-toc a {
    position: relative;
    padding: 9px 0 9px 18px;
    font-family: var(--font-display);
    font-size: 13.5px;
    font-weight: 500;
    line-height: 1.4;
    color: var(--muted);
    transition: color .25s;
}
.legal-toc a::before {
    content: '';
    position: absolute;
    left: -1px;
    top: 0;
    bottom: 0;
    width: 2px;
    background: var(--accent);
    transform: scaleY(0);
    transition: transform .3s var(--ease);
}
.legal-toc a:hover { color: var(--ink); }
.legal-toc a.is-active { color: var(--accent); }
.legal-toc a.is-active::before { transform: scaleY(1); }

/* — Metin tipografisi — */
.legal {
    max-width: 860px;
    font-size: 15.5px;
    line-height: 1.85;
    color: var(--ink-dim);
}

.legal h2 {
    font-family: var(--font-display);
    font-size: clamp(20px, 2vw, 26px);
    font-weight: 600;
    letter-spacing: -.01em;
    color: var(--ink);
    padding-top: clamp(28px, 4vh, 44px);
    margin-bottom: 16px;
    scroll-margin-top: 110px;
}
.legal h2:first-child { padding-top: 0; }

.legal p { margin-bottom: 14px; }
.legal p strong { color: var(--ink); font-weight: 600; }

.legal ul {
    margin: 4px 0 18px;
    padding-left: 4px;
}
.legal ul li {
    position: relative;
    padding-left: 24px;
    margin-bottom: 8px;
}
.legal ul li::before {
    content: '';
    position: absolute;
    left: 4px;
    top: 12px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: var(--accent);
    opacity: .7;
}

.legal a {
    color: var(--accent);
    border-bottom: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
    transition: border-color .25s;
}
.legal a:hover { border-color: var(--accent); }

.legal__note {
    font-size: 13.5px;
    color: var(--muted);
    border-left: 2px solid var(--accent);
    padding: 8px 0 8px 16px;
    background: var(--bg-soft);
    border-radius: 0 10px 10px 0;
}

.legal__closing {
    margin-top: clamp(28px, 4vh, 44px);
    padding: clamp(20px, 3vh, 30px) clamp(20px, 2.4vw, 32px);
    border: 1px solid var(--line);
    border-radius: 18px;
    background: var(--bg-soft);
    font-size: 14.5px;
}

@media (max-width: 1024px) {
    .legal-grid { grid-template-columns: 1fr; gap: 28px; }
    .legal-aside__sticky { position: static; }
    .legal-toc { max-height: none; }
}

.legal h3 {
    font-family: var(--font-display);
    font-size: clamp(16.5px, 1.5vw, 19px);
    font-weight: 600;
    color: var(--ink);
    padding-top: 18px;
    margin-bottom: 12px;
    scroll-margin-top: 110px;
}

/* ════════ HİZMET DETAY SAYFASI ════════ */
.svchero {
    position: relative;
    padding-block: clamp(60px, 9vh, 110px) clamp(50px, 7vh, 90px);
    overflow: hidden;
}
.svchero .section-head--solo { margin-top: 0; margin-bottom: 28px; }

.svchero__ghost {
    position: absolute;
    top: 50%;
    right: -2%;
    transform: translateY(-50%);
    font-family: var(--font-display);
    font-size: clamp(160px, 24vw, 380px);
    font-weight: 700;
    line-height: 1;
    color: transparent;
    -webkit-text-stroke: 1px var(--line);
    pointer-events: none;
    user-select: none;
}

.svchero__actions {
    display: flex;
    align-items: center;
    gap: 32px;
    flex-wrap: wrap;
    margin-top: clamp(28px, 4vh, 44px);
}

/* — Alt hizmetler — */
.svcsub {
    padding-block: clamp(60px, 9vh, 110px);
    border-top: 1px solid var(--line-soft);
}
.svcsub__grid { grid-template-columns: repeat(3, 1fr); }
.svcsub__grid--4 { grid-template-columns: repeat(2, 1fr); }

/* — Kompakt süreç — */
.mini-steps {
    padding-block: clamp(60px, 9vh, 110px);
    border-top: 1px solid var(--line-soft);
}

.mini-steps__row {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border-top: 1px solid var(--line);
    counter-reset: ms;
}

.mini-steps__item {
    position: relative;
    padding: clamp(26px, 4vh, 40px) clamp(18px, 2vw, 32px) clamp(20px, 3vh, 32px);
    border-right: 1px solid var(--line-soft);
    transition: background .4s;
}
.mini-steps__item:last-child { border-right: 0; }
.mini-steps__item:hover { background: var(--bg-soft); }

.mini-steps__item::before {
    content: '';
    position: absolute;
    top: -1px;
    left: 0;
    width: 0;
    height: 2px;
    background: var(--accent);
    transition: width .5s var(--ease);
}
.mini-steps__item:hover::before { width: 100%; }

.mini-steps__no {
    display: block;
    font-family: var(--font-display);
    font-size: 13px;
    font-weight: 600;
    letter-spacing: .12em;
    color: var(--accent);
    margin-bottom: 16px;
}

.mini-steps__item h3 {
    font-family: var(--font-display);
    font-size: clamp(17px, 1.6vw, 21px);
    font-weight: 600;
    letter-spacing: -.01em;
    margin-bottom: 10px;
}

.mini-steps__item p {
    font-size: 13.5px;
    line-height: 1.7;
    color: var(--muted);
}

.svcwhy { padding-top: clamp(60px, 9vh, 110px); }
.svcfaq { scroll-margin-top: 90px; }

@media (max-width: 1024px) {
    .svcsub__grid { grid-template-columns: 1fr; }
    .mini-steps__row { grid-template-columns: repeat(2, 1fr); }
    .mini-steps__item:nth-child(2n) { border-right: 0; }
    .mini-steps__item:nth-child(-n+2) { border-bottom: 1px solid var(--line-soft); }
    .svchero__ghost { display: none; }
}

@media (max-width: 560px) {
    .mini-steps__row { grid-template-columns: 1fr; }
    .mini-steps__item { border-right: 0 !important; border-bottom: 1px solid var(--line-soft); }
    .mini-steps__item:last-child { border-bottom: 0; }
}

/* ════════ DIŞ PLATFORM YÖNLENDİRME PANELİ ════════ */
.ext-panel-wrap { padding-block: clamp(20px, 3vh, 40px) clamp(40px, 6vh, 70px); }

.ext-panel {
    position: relative;
    display: grid;
    grid-template-columns: 1.6fr 1fr;
    gap: clamp(32px, 4vw, 64px);
    align-items: center;
    padding: clamp(32px, 5vh, 56px) clamp(26px, 3.4vw, 56px);
    border: 1px solid color-mix(in srgb, var(--accent) 35%, var(--line));
    border-radius: 26px;
    background:
        radial-gradient(ellipse at top right, var(--glow) 0%, transparent 55%),
        var(--bg-soft);
    overflow: hidden;
}

.ext-panel__title {
    font-family: var(--font-display);
    font-size: clamp(26px, 3.2vw, 44px);
    font-weight: 600;
    line-height: 1.15;
    letter-spacing: -.02em;
    margin-block: 22px 18px;
}
.ext-panel__title em { font-style: normal; color: var(--accent); }

.ext-panel__desc {
    max-width: 560px;
    font-size: 15px;
    line-height: 1.75;
    color: var(--muted);
    margin-bottom: 28px;
}

.ext-panel__list {
    display: flex;
    flex-direction: column;
    gap: 14px;
    padding-left: clamp(24px, 3vw, 48px);
    border-left: 1px solid var(--line);
}
.ext-panel__list li {
    position: relative;
    padding-left: 30px;
    font-family: var(--font-display);
    font-size: 15px;
    font-weight: 500;
    color: var(--ink-dim);
}
.ext-panel__list li::before {
    content: '';
    position: absolute;
    left: 0;
    top: 4px;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    background: var(--accent);
    -webkit-mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3'%3E%3Cpath d='M5 13l4 4 10-10'/%3E%3C/svg%3E") center / contain no-repeat;
    mask: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' viewBox='0 0 24 24' fill='none' stroke='black' stroke-width='3'%3E%3Cpath d='M5 13l4 4 10-10'/%3E%3C/svg%3E") center / contain no-repeat;
}

@media (max-width: 1024px) {
    .ext-panel { grid-template-columns: 1fr; }
    .ext-panel__list { border-left: 0; padding-left: 0; border-top: 1px solid var(--line); padding-top: 24px; }
}

/* ════════ YÜZEN WHATSAPP (mobil) ════════ */
.wa-float {
    position: fixed;
    right: 18px;
    bottom: 22px;
    z-index: 95;
    width: 56px;
    height: 56px;
    display: none;
    place-items: center;
    border-radius: 50%;
    background: var(--accent);
    color: var(--accent-ink);
    box-shadow: 0 10px 30px rgba(0, 0, 0, .35), 0 0 0 1px color-mix(in srgb, var(--accent) 50%, transparent);
    transition: transform .35s var(--ease), opacity .3s;
}
.wa-float svg { width: 27px; height: 27px; }
.wa-float:active { transform: scale(.92); }

.wa-float__ring {
    position: absolute;
    inset: 0;
    border-radius: 50%;
    border: 1.5px solid var(--accent);
    animation: waPulse 2.6s var(--ease-soft) infinite;
    pointer-events: none;
}
@keyframes waPulse {
    0%   { transform: scale(1); opacity: .8; }
    70%  { transform: scale(1.55); opacity: 0; }
    100% { transform: scale(1.55); opacity: 0; }
}

/* yalnızca mobil/tablet görünümde */
@media (max-width: 1024px) {
    .wa-float { display: grid; }
}

/* çerez banner'ı açıkken üstüne kaymasın diye yukarı taşı (gizlenmesin) */
body.has-consent .wa-float { transform: translateY(-110px); }
@media (max-width: 760px) {
    body.has-consent .wa-float { transform: translateY(-250px); }
}

/* ════════ ÇEREZ ONAYI ════════ */
.consent {
    position: fixed;
    left: 0;
    right: 0;
    bottom: 0;
    z-index: 150;
    padding: 16px clamp(16px, 3vw, 32px) clamp(16px, 2.5vh, 24px);
    transform: translateY(110%);
    transition: transform .6s var(--ease);
}
.consent.is-visible { transform: translateY(0); }

.consent__inner {
    display: flex;
    align-items: center;
    gap: clamp(14px, 2vw, 26px);
    width: min(100%, 1080px);
    margin-inline: auto;
    padding: clamp(18px, 2.4vh, 24px) clamp(18px, 2.4vw, 30px);
    border: 1px solid var(--line);
    border-radius: 20px;
    background: color-mix(in srgb, var(--bg-raise) 92%, transparent);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    box-shadow: var(--shadow);
}

.consent__icon {
    flex: 0 0 auto;
    width: 50px;
    height: 50px;
    display: grid;
    place-items: center;
    border: 1px solid var(--line);
    border-radius: 14px;
    color: var(--accent);
}
.consent__icon svg { width: 24px; height: 24px; }

.consent__text { flex: 1; min-width: 0; }
.consent__text strong {
    display: block;
    font-family: var(--font-display);
    font-size: 15.5px;
    font-weight: 600;
    margin-bottom: 4px;
}
.consent__text p {
    font-size: 13px;
    line-height: 1.6;
    color: var(--muted);
}
.consent__text a {
    color: var(--accent);
    border-bottom: 1px solid color-mix(in srgb, var(--accent) 40%, transparent);
}

.consent__actions {
    display: flex;
    align-items: center;
    gap: 10px;
    flex: 0 0 auto;
}

.btn--ghost {
    border: 1px solid var(--line);
    color: var(--ink-dim);
    background: transparent;
}
.btn--ghost:hover { border-color: var(--ink); color: var(--ink); }

/* footer'daki çerez tercihleri butonu link gibi görünsün */
.footer__legal button {
    font-size: 13px;
    color: var(--muted);
    transition: color .25s;
}
.footer__legal button:hover { color: var(--accent); }

@media (max-width: 760px) {
    .consent { padding-inline: 12px; }
    .consent__inner { flex-direction: column; align-items: flex-start; gap: 14px; }
    .consent__icon { display: none; }
    .consent__actions { width: 100%; }
    .consent__actions .btn { flex: 1; justify-content: center; padding-inline: 14px; }
}
