:root{
    --bg-1:#131313;
    --bg-2:#054c5a;
    --card:rgba(255,255,255,.06);
    --card2:rgba(255,255,255,.08);
    --stroke:rgba(255,255,255,.12);
    --text:rgba(255,255,255,.92);
    --muted:rgba(255,255,255,.68);
    --muted2:rgba(255,255,255,.55);
    --brand:#5ee7ff;
    --brand2:#7c5cff;
    --accent-green: #79ff4d;
    --shadow: 0 20px 60px rgba(0,0,0,.45);
    --radius:16px;
    --brand-logo-w: 180px;
    --brand-logo-h: 46px;
    --header-h: 100px;
    --content-top-pad: 50px;
    --footer-h: 64px;
}




*{box-sizing:border-box}
html,body{height:100%}
body{
    margin:0;
    font-family:'Inter',system-ui,-apple-system,Segoe UI,Roboto,Arial,sans-serif;
    color:var(--text);
    background: #000;
    overflow:hidden;
}

*{min-width:0}

main{height:100%;overflow:hidden}

 body:has(.legal){
     overflow:auto;
 }

 body:has(.legal) main{
     height:auto;
     overflow:visible;
 }

 body:has(.legal) .header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    width: 100%;
    z-index: 100;

}

a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.container{
    width:min(1120px, calc(100% - 40px));
    margin-inline:auto;
}

.bg{
    position:fixed;
    inset:0;
    z-index:-2;
}
.bg::after{
    content:"";
    position:absolute;
    inset:0;
    background: rgba(0,0,0,.55);
    pointer-events:none;
}
.bg__gradient{
    position:absolute;
    inset:-20%;
    background: url('bg.jpg') center/cover no-repeat;
    filter: blur(5px);
    transform: scale(1.06);
}
.bg__grain{
    position:absolute;
    inset:0;
    pointer-events:none;
    opacity:0;
    background-image:none;
    mix-blend-mode:normal;
}

.header{
    position:sticky;
    top:0;
    z-index:50;
    backdrop-filter: none;
    background: transparent;
    border-bottom: 0;
}
.header__inner{
    display:grid;
    grid-template-columns: max-content auto;
    grid-template-rows: auto auto;
    grid-template-areas:
        "brand toggle"
        "nav nav";
    align-items:center;
    gap:12px;
    padding:80px 0 0 0;
}

.brand{grid-area:brand;display:flex;align-items:center;gap:10px;min-width:170px;max-width:100%;overflow:hidden}
.brand:hover {
    color: var(--brand); /* veya istediğin renk */
    text-decoration: none;
}
.brand__logo{width:auto;height:auto;max-width:var(--brand-logo-w);max-height:var(--brand-logo-h);object-fit:contain;flex:0 0 auto}
.brand__name{font-weight:800;letter-spacing:.08em;font-size:36px;text-transform:uppercase;white-space:nowrap;overflow:hidden;text-overflow:ellipsis}

.nav{grid-area:nav;display:flex;align-items:center;justify-content:flex-start;gap:10px}
.nav__link{
    appearance:none;
    -webkit-appearance:none;
    border:0;
    background:transparent;
    text-align:left;
    cursor:pointer;
    position:relative;
    font-size:13px;
    font-weight:600;
    color:var(--muted);
    padding:10px 10px;
    border-radius:12px;
    transition: background .2s ease, color .2s ease;
}
.nav__link::after{
    content:"";
    position:absolute;
    left:10px;
    right:10px;
    bottom:6px;
    height:2px;
    border-radius:999px;
    background: var(--brand);
    opacity:0;
    transform:scaleX(.6);
    transform-origin:center;
    transition: opacity .2s ease, transform .2s ease;
    pointer-events:none;
}
.nav__link:hover{background:transparent;color:var(--text)}
.nav__link:hover::after{opacity:1;transform:scaleX(1)}
.nav__link.is-active{color:var(--text)}
.nav__link.is-active::after{opacity:1;transform:scaleX(1)}
.nav__cta{
    appearance:none;
    -webkit-appearance:none;
    border:1px solid rgba(255,255,255,.14);
    cursor:pointer;
    margin-left:6px;
    font-size:13px;
    font-weight:700;
    padding:10px 14px;
    border-radius:12px;
    background: linear-gradient(135deg, rgba(94,231,255,.22), rgba(124,92,255,.22));
}

.slider{
    height:calc(100dvh - var(--header-h) - var(--footer-h));
}

.slider .carousel-inner,
.slider .carousel-item{
    height:calc(100dvh - var(--header-h) - var(--footer-h));
}

.slider .carousel-inner{
    overflow:hidden;
    background:transparent;
}

.slide{
    height:100%;
    margin-top:0;
    padding-top: var(--content-top-pad);
    padding-bottom:28px;
    overflow:hidden;
    overscroll-behavior:contain;
    touch-action:pan-x;
    background:transparent;
}

.slide::-webkit-scrollbar{width:0;height:0}
.slide{scrollbar-width:none}

.slider .carousel-item{
    background:transparent;
    overflow:hidden;
    opacity:0;
    transition:opacity .55s ease-in-out;
}

.slider .carousel-item .slide{
    position:relative;
    transition:opacity .55s ease-in-out;
    opacity:0;
}

.slider .carousel-item.active{
    opacity:1;
}

.slider .carousel-item.active .slide{
    opacity:1;
}

.slider .carousel-item-next,
.slider .carousel-item-prev,
.slider .carousel-item.active.carousel-item-left,
.slider .carousel-item.active.carousel-item-right{
    opacity:1;
}

.slider .carousel-item-next .slide,
.slider .carousel-item-prev .slide,
.slider .carousel-item.active.carousel-item-left .slide,
.slider .carousel-item.active.carousel-item-right .slide{
    opacity:1;
}

.slider .carousel-control-prev,
.slider .carousel-control-next{
    width:64px;
    opacity:.85;
}

.slider .carousel-control-prev:hover,
.slider .carousel-control-next:hover{
    opacity:1;
}

.nav-toggle{
    grid-area:toggle;
    display:none;
    width:44px;height:44px;
    border-radius:12px;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.10);
}
.nav-toggle__bar{display:block;height:2px;margin:6px 8px;background:rgba(255,255,255,.75);border-radius:2px}

.section{padding:0}
.hero{padding-top:0}

.badge{
    display:inline-flex;
    align-items:center;
    gap:8px;
    padding:8px 12px;
    border-radius:999px;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.10);
    color:rgba(255,255,255,.78);
    font-weight:700;
    font-size:12px;
}

.hero__grid{
    display:grid;
    grid-template-columns: 1.2fr .8fr;
    gap:28px;
    align-items:stretch;
}

.hero__logo-stage{
    position:relative;
    border:0;
    background: transparent;
    backdrop-filter: none;
    border-radius: 0;
    box-shadow: none;
    display:grid;
    place-items:end center;
    min-height:420px;
    justify-self:end;
}

.hero__logo-stage::after{
    content:"";
    position:absolute;
    left:50%;
    bottom:16px;
    width:clamp(460px, 60%, 420px);
    height:74px;
    transform:translateX(calc(-50% + 8px)) perspective(900px) rotateX(64deg) rotateZ(-2.5deg);
    transform-origin:center;
    border-radius: 52% 48% 60% 40% / 66% 62% 38% 34%;
    background:
        radial-gradient(ellipse at 50% 35%, rgba(255,255,255,.30), rgba(255,255,255,.10) 28%, rgba(255,255,255,.04) 55%, rgba(0,0,0,.22) 100%),
        linear-gradient(180deg, rgba(255,255,255,.12), rgba(255,255,255,.04));
    border:0;
    box-shadow:
        0 22px 40px rgba(0,0,0,.55),
        inset 0 2px 0 rgba(255,255,255,.18),
        inset 0 -18px 26px rgba(0,0,0,.30);
    filter: blur(0.8px);
    -webkit-mask-image: radial-gradient(ellipse at 46% 54%, rgba(0,0,0,1) 62%, rgba(0,0,0,0) 100%);
    mask-image: radial-gradient(ellipse at 46% 54%, rgba(0,0,0,1) 62%, rgba(0,0,0,0) 100%);
    clip-path: polygon(6% 46%, 12% 28%, 24% 18%, 38% 12%, 54% 10%, 68% 14%, 82% 24%, 92% 40%, 96% 54%, 90% 70%, 76% 82%, 58% 88%, 40% 86%, 24% 78%, 12% 66%);
    pointer-events:none;
    z-index:1;
}

.hero__logo-stage::before{
    content:none;
}

.hero__particles{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    pointer-events:none;
}

.hero__logo-glow{
    position:absolute;
    inset:-20%;
    background:
        radial-gradient(closest-side at 45% 55%, rgba(94,231,255,.22), transparent 62%),
        radial-gradient(closest-side at 65% 40%, rgba(124,92,255,.18), transparent 64%);
    filter: blur(18px);
    opacity:.9;
    animation: heroGlowPulse 3.6s ease-in-out infinite;
    pointer-events:none;
}

.hero__logo-img{
    position:relative;
    width:min(640px, 100%);
    filter: drop-shadow(0 0 10px rgba(94,231,255,.18)) drop-shadow(0 0 18px rgba(124,92,255,.14));
    transform: translateZ(0);
    animation: heroLogoGrow 4.2s ease-in-out infinite;
    margin-bottom: 44px;
    z-index:2;
}

@keyframes heroLogoGrow{
    0%,100%{transform:scale(1);}
    50%{transform:scale(1.012);}
}

@keyframes heroGlowPulse{
    0%,100%{transform:scale(1);opacity:.78;}
    50%{transform:scale(1.04);opacity:1;}
}

.hero__title{
    margin:14px 0 10px;
    font-size: clamp(42px, 6vw, 64px);
    line-height:1.02;
    letter-spacing:-.03em;
}
.hero__subtitle{margin:0 0 18px;font-size:18px;color:var(--accent-green)}
.hero__lead{margin:0 0 14px;color:var(--muted);line-height:1.75}

.hero__highlight{
    display:flex;
    gap:12px;
    align-items:flex-start;
    padding:14px 14px;
    border-radius: var(--radius);
    background: rgba(255,255,255,.06);
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: var(--shadow);
    margin:16px 0 14px;
}
.hero__highlight-icon{
    width:40px;height:40px;border-radius:14px;
    display:grid;place-items:center;
    background:linear-gradient(135deg, rgba(94,231,255,.22), rgba(124,92,255,.22));
    border:1px solid rgba(255,255,255,.12);
}
.hero__highlight-title{font-weight:800}
.hero__highlight-sub{color:var(--muted2);margin-top:2px}

.app-banner{
    position:relative;
    display:flex;align-items:center;gap:14px;
    padding:14px 16px;
    border-radius: var(--radius);
    border:1px solid transparent;
    background:
        linear-gradient(135deg, rgba(255,255,255,.06), rgba(255,255,255,.04)) padding-box,
        linear-gradient(135deg, rgba(94,231,255,.0), rgba(124,92,255,.0)) border-box;
    backdrop-filter: blur(8px);
    box-shadow: var(--shadow);
    transition: transform .18s ease, box-shadow .18s ease, background .18s ease;
}
.app-banner:hover{transform: translateY(-1px);box-shadow: 0 14px 40px rgba(0,0,0,.40)}
.app-banner__icon{
    width:52px;height:52px;border-radius:16px;display:grid;place-items:center;
    background:linear-gradient(135deg, rgba(94,231,255,.22), rgba(124,92,255,.22));
    border:1px solid rgba(255,255,255,.12);
    box-shadow: 0 10px 24px rgba(0,0,0,.35), inset 0 1px 0 rgba(255,255,255,.14);
    position:relative;overflow:hidden;
}
.app-banner__icon::after{
    content:"";position:absolute;inset:-20%;
    background: radial-gradient(closest-side at 60% 40%, rgba(255,255,255,.20), transparent 60%);
    filter: blur(10px);opacity:.7;pointer-events:none;
}
.app-banner__icon-img{width:30px;height:30px;object-fit:contain}
.app-banner__body{display:flex;flex-direction:column;gap:2px}
.app-banner__title{font-weight:900;letter-spacing:.01em}
.app-banner__desc{color:var(--muted2);font-weight:700;font-size:13px}

@media (max-width: 520px){
    .app-banner{gap:12px;padding:12px 14px}
    .app-banner__icon{width:46px;height:46px;border-radius:14px}
    .app-banner__icon-img{width:26px;height:26px}
}

.hero__actions{display:flex;gap:12px;flex-wrap:wrap;margin-top:18px}
.btn{
    display:inline-flex;align-items:center;justify-content:center;
    gap:10px;
    padding:12px 16px;
    border-radius:24px;
    font-weight:800;
    font-size:14px;
    border:1px solid rgba(255,255,255,.12);
    transition: transform .15s ease, background .15s ease, border-color .15s ease;
    cursor:pointer;
    min-height:44px;
    user-select:none;
}
.btn:focus{outline:none}
.btn:focus-visible{
    box-shadow: 0 0 0 4px rgba(94,231,255,.18), 0 12px 30px rgba(0,0,0,.35);
}
.btn:hover{transform:translateY(-1px)}
.btn:active{transform:translateY(1px)}
.btn--primary{
    border-color: rgba(0,255,240,.48);
    background: rgba(0,255,240,.26);
    color: rgba(255,255,255,.96);
    box-shadow: 0 12px 28px rgba(0,0,0,.30);
}
.btn--primary:hover{
    border-color: rgba(0,255,240,.70);
    background: rgba(0,255,240,.36);
    color: rgba(255,255,255,.98);
}
.btn--ghost{
    border-color: rgba(182,96,255,.48);
    background: rgba(182,96,255,.24);
    color: rgba(255,255,255,.96);
}
.btn--ghost:hover{
    border-color: rgba(182,96,255,.70);
    background: rgba(182,96,255,.34);
    color: rgba(255,255,255,.98);
}

.hero__card{
    border-radius: 22px;
    padding:16px;
    background: rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.12);
    box-shadow: var(--shadow);
    height:100%;
    display:flex;
    flex-direction:column;
    gap:14px;
}
.hero__card-top{display:flex;align-items:center;justify-content:space-between;gap:12px}
.hero__app{display:flex;align-items:center;gap:12px}
.hero__app-img{width:44px;height:44px;border-radius:14px;object-fit:cover;border:1px solid rgba(255,255,255,.12)}
.hero__app-name{font-weight:900;letter-spacing:.04em}
.hero__app-tag{color:var(--muted2);font-size:12px;margin-top:2px}
.hero__pill{
    font-size:12px;font-weight:800;color:rgba(255,255,255,.85);
    padding:8px 10px;border-radius:999px;
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.10);
    white-space:nowrap;
}

.hero__metrics{display:grid;grid-template-columns:repeat(3,1fr);gap:10px}
.metric{border-radius:16px;padding:12px;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.10)}
.metric__label{font-size:12px;color:var(--muted2);font-weight:700}
.metric__value{margin-top:6px;font-weight:900}

.hero__card-bottom{margin-top:auto}
.mini-list{display:flex;flex-wrap:wrap;gap:8px}
.mini-list__item{font-size:12px;font-weight:800;color:rgba(255,255,255,.80);padding:8px 10px;border-radius:999px;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.10)}

.section__header{max-width:860px;margin:0 0 22px}
.section__title{margin:12px 0 6px;font-size:34px;letter-spacing:-.02em}
.section__subtitle{margin:0 0 14px;color:var(--muted);font-weight:700}
.section__lead{margin:0;color:var(--muted);line-height:1.75}

.zeo-layout{
    position:relative;
    display:grid;
    grid-template-columns: minmax(0, 1fr) minmax(0, 420px);
    gap:18px;
    align-items:start;
}

.dot-nav{
    position:absolute;
    left:0;
    top: calc(var(--content-top-pad) - 50px);
    display:flex;
    flex-direction:column;
    gap:52px;
    padding-top:0;
    align-items:flex-start;
    isolation:isolate;
}

.dot-nav::before{
    content:"";
    position:absolute;
    top:0;
    bottom:0;
    left: 5px;
    width:2px;
    background: rgba(255,255,255,.18);
    z-index:0;
    pointer-events:none;
}

.dot-nav__item{
    display:grid;
    grid-template-columns: 12px max-content;
    align-items:center;
    column-gap:10px;
    width:max-content;
    justify-items:start;
    min-height:34px;
    border-radius:0;
    border:0;
    background: transparent;
    padding:0;
    cursor:pointer;
    transition: transform .15s ease, background .15s ease, border-color .15s ease, box-shadow .15s ease;
}

.dot-nav__item::before{
    content:"";
    width:12px;
    height:12px;
    border-radius:999px;
    background: rgba(255,255,255,.18);
    border:1px solid rgba(255,255,255,.26);
    grid-column:1;
    grid-row:1;
    justify-self:start;
    z-index:1;
}

.dot-nav__label{
    grid-column:2;
    grid-row:1;
    font-size:12px;
    font-weight:800;
    letter-spacing:.01em;
    color: rgba(255,255,255,.78);
    line-height:1;
    white-space:nowrap;
    text-align:left;
}

.dot-nav__item:hover .dot-nav__label{
    transform: scale(1.1);
    display:inline-block;
    color: rgba(0,255,240,.70);
}

.dot-nav__item.is-active{
    color: rgba(0,255,240,.70);
}

.dot-nav__item.is-active::before{
    background: rgba(0,255,240,.55);
    border-color: rgba(0,255,240,.70);
}

.zeo-content{
    min-width:0;
    margin-left: 182px;
}
.zeo-panel{display:none}
.zeo-panel.is-active{display:block}
.zeo-panel__title{margin:0 0 12px;font-size:22px;letter-spacing:-.01em}
.zeo-panel__lead{margin:0;color:var(--muted);line-height:1.75}

.store-button{
    display:inline-block;
    margin-top:10px;
    transition:transform .15s ease;
}

.store-button:hover{
    transform:translateY(-1px);
}

.store-button__badge{
    display:block;
    height:60px;
    width:auto;
}

.zeo-visual{position:relative;justify-self:end}
.zeo-visual__stage{
    position:relative;
    display:flex; /* grid'den flex'e çevrildi */
    flex-direction:column;
    align-items:center;
    justify-content:flex-end;
    min-height:420px;
    gap:20px; /* görsel ve buton arasına boşluk */
}




.zeo-visual__particles{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    pointer-events:none;
    z-index:0;
}

.zeo-visual__img{position:relative;width:min(320px, 100%);margin-bottom:0px;z-index:2;filter: drop-shadow(0 0 10px rgba(0,255,240,.18)) drop-shadow(0 0 18px rgba(182,96,255,.14))}

@media (max-width: 980px){
    .zeo-layout{grid-template-columns: 1fr;}
    .dot-nav{position:relative;top:auto;flex-direction:row;justify-content:center}
    .zeo-visual{justify-self:center}
    .zeo-visual__stage{min-height:360px}
}
.zeo-visual__caption{
    text-align: center;
    color: rgba(249, 149, 0, 0.986);
    font-size: 14px;
    margin: 0 0 10px 0;
    letter-spacing: 2px; /* harfler arası boşluk için */
    font-weight: 600;

}

@media (max-width: 520px){
    .dot-nav__label{
        display:none;
    }
    .dot-nav__item{padding:8px 10px}

    .store-button__badge{
        height:52px;
    }
}

.grid{display:grid;gap:16px}
.grid--2{grid-template-columns:repeat(2, minmax(0,1fr))}
.grid--3{grid-template-columns:repeat(3, minmax(0,1fr))}
.mt-24{margin-top:24px}

.card{
    border-radius: var(--radius);
    padding:18px;
    background: rgba(255,255,255,.05);
    border:1px solid rgba(255,255,255,.12);
    box-shadow: 0 12px 30px rgba(0,0,0,.25);
}
.card--soft{background: rgba(255,255,255,.04)}
.card__title{margin:0 0 10px;font-size:18px;letter-spacing:-.01em}

.list{margin:12px 0 0;padding-left:18px;color:var(--muted);line-height:1.75}
.list li{margin:6px 0}

.chips{display:flex;flex-wrap:wrap;gap:10px}
.chip{font-size:12px;font-weight:800;color:rgba(255,255,255,.82);padding:10px 12px;border-radius:999px;background:rgba(255,255,255,.05);border:1px solid rgba(255,255,255,.10)}

.muted{color:var(--muted)}

.steps{display:grid;gap:12px}
.step{display:flex;gap:12px;align-items:flex-start;padding:16px;border-radius:var(--radius);background:rgba(255,255,255,.04);border:1px solid rgba(255,255,255,.10)}
.step__num{width:44px;height:44px;border-radius:16px;display:grid;place-items:center;background:rgba(255,255,255,.06);border:1px solid rgba(255,255,255,.10)}
.step__title{font-weight:900}
.step__text{color:var(--muted);margin-top:4px;line-height:1.6}

.faq{display:grid;gap:14px;max-width:920px}
.faq-layout{
    display:grid;
    grid-template-columns:minmax(0, 1.1fr) minmax(300px, .9fr);
    gap:24px;
    align-items:center;
}
.faq__item{
    width: 100%;
    text-align: left;
    border-radius:calc(var(--radius) + 2px);
    background:linear-gradient(180deg, rgba(255,255,255,.07), rgba(255,255,255,.035));
    border:1px solid rgba(255,255,255,.12);
    box-shadow:0 14px 30px rgba(0,0,0,.18);
    overflow:hidden;
    transition:border-color .2s ease, transform .2s ease, box-shadow .2s ease, background .2s ease;
    cursor: pointer;
}
.faq__item:hover{
    transform:translateY(-2px);
    border-color:rgba(94,231,255,.28);
    box-shadow:0 18px 36px rgba(0,0,0,.22);
}
.faq__q{
    font-weight:900;
    padding:18px 52px 18px 18px;
    position:relative;
    line-height:1.45;
    display: block;
    color: var(--text);
}
.faq__item::after{
    content:"?";
    position:absolute;
    right:18px;
    top:50%;
    transform:translateY(-50%);
    width:28px;
    height:28px;
    display:grid;
    place-items:center;
    border-radius:999px;
    background:rgba(94,231,255,.12);
    border:1px solid rgba(94,231,255,.24);
    color:var(--brand);
    font-size:16px;
    font-weight:700;
    transition:transform .2s ease, background .2s ease, border-color .2s ease;
    pointer-events: none;
}
.faq__item:hover::after{
    background:rgba(94,231,255,.18);
    border-color:rgba(94,231,255,.34);
    transform:translateY(-50%) scale(1.1);
}

/* FAQ Modal */
.faq-modal{
    position: fixed;
    inset: 0;
    z-index: 1000;
    display: flex;
    align-items: center;
    justify-content: center;
    opacity: 0;
    visibility: hidden;
    transition: opacity .3s ease, visibility .3s ease;
}
.faq-modal.is-open{
    opacity: 1;
    visibility: visible;
}
.faq-modal__backdrop{
    position: absolute;
    inset: 0;
    background: rgba(0,0,0,.7);
    backdrop-filter: blur(4px);
}
.faq-modal__dialog{
    position: relative;
    background: linear-gradient(180deg, rgba(30,40,60,.98), rgba(20,25,40,.98));
    border: 1px solid rgba(94,231,255,.25);
    border-radius: var(--radius);
    padding: 28px;
    max-width: 520px;
    width: calc(100% - 40px);
    box-shadow: 0 24px 60px rgba(0,0,0,.5), 0 0 40px rgba(94,231,255,.15);
    transform: translateY(20px) scale(.95);
    transition: transform .3s ease;
}
.faq-modal.is-open .faq-modal__dialog{
    transform: translateY(0) scale(1);
}
.faq-modal__close{
    position: absolute;
    top: 14px;
    right: 14px;
    width: 32px;
    height: 32px;
    border-radius: 999px;
    background: rgba(255,255,255,.08);
    border: 1px solid rgba(255,255,255,.15);
    color: var(--muted);
    font-size: 20px;
    cursor: pointer;
    display: grid;
    place-items: center;
    transition: background .2s ease, color .2s ease, border-color .2s ease;
}
.faq-modal__close:hover{
    background: rgba(94,231,255,.15);
    border-color: rgba(94,231,255,.35);
    color: var(--brand);
}
.faq-modal__title{
    margin: 0 0 16px;
    font-size: 20px;
    font-weight: 800;
    color: var(--brand);
    padding-right: 36px;
    line-height: 1.4;
}
.faq-modal__answer{
    margin: 0;
    color: var(--muted);
    line-height: 1.8;
    font-size: 15px;
}

.faq-visual{
    position:relative;
    justify-self:end;
    width:100%;
}

.faq-visual__stage{
    position:relative;
    min-height:460px;
    display:grid;
    place-items:center;
    overflow:hidden;
    perspective:1200px;
}

.faq-visual__particles{
    position:absolute;
    inset:0;
    width:100%;
    height:100%;
    pointer-events:none;
    z-index:0;
}

.faq-visual__glow{
    position:absolute;
    inset:12% 14%;
    background:
        radial-gradient(circle at 50% 50%, rgba(94,231,255,.18), transparent 46%),
        radial-gradient(circle at 50% 50%, rgba(124,92,255,.14), transparent 62%);
    filter:blur(26px);
    z-index:1;
    pointer-events:none;
}

.faq-visual__mark{
    position:relative;
    z-index:2;
    display:block;
    width:clamp(220px, 30vw, 300px);
    aspect-ratio:1;
    transform-style:preserve-3d;
    backface-visibility:visible;
    animation:faqMarkSpin3d 9.5s ease-in-out infinite;
}

.faq-visual__mark-face,
.faq-visual__mark-side{
    position:absolute;
    inset:0;
    display:grid;
    place-items:center;
    font-size:clamp(210px, 24vw, 300px);
    font-weight:900;
    line-height:1;
    font-family:inherit;
    transform-style:preserve-3d;
    -webkit-user-select:none;
    user-select:none;
}

.faq-visual__mark-face{
    color:transparent;
    background:linear-gradient(180deg, rgba(255,255,255,.99) 0%, rgba(220,247,255,.96) 22%, rgba(131,224,255,.92) 62%, rgba(82,138,255,.95) 100%);
    -webkit-background-clip:text;
    background-clip:text;
    transform:translateZ(22px);
    text-shadow:
        0 8px 14px rgba(0,0,0,.18),
        0 0 20px rgba(94,231,255,.24),
        0 0 38px rgba(124,92,255,.18);
    filter:drop-shadow(0 12px 20px rgba(0,0,0,.22));
}

.faq-visual__mark-side{
    color:rgba(62,108,214,.98);
    text-shadow:
        0 0 12px rgba(70,176,255,.14),
        0 8px 12px rgba(0,0,0,.16);
}

.faq-visual__mark-side--1{transform:translateZ(16px)}
.faq-visual__mark-side--2{transform:translateZ(12px); color:rgba(56,100,201,.98)}
.faq-visual__mark-side--3{transform:translateZ(8px); color:rgba(49,90,188,.98)}
.faq-visual__mark-side--4{transform:translateZ(4px); color:rgba(42,80,170,.98)}

@keyframes faqMarkSpin3d{
    0%{transform:rotateX(-10deg) rotateY(-20deg) scale(1)}
    25%{transform:rotateX(-10deg) rotateY(55deg) scale(.985)}
    50%{transform:rotateX(-10deg) rotateY(140deg) scale(1)}
    75%{transform:rotateX(-10deg) rotateY(235deg) scale(.985)}
    100%{transform:rotateX(-10deg) rotateY(340deg) scale(1)}
}

.contact{display:grid;grid-template-columns:minmax(0, .95fr) minmax(0, 1.05fr);gap:18px;align-items:stretch}
.contact__card{
    border-radius:calc(var(--radius) + 1px);
    padding:19px;
    background:linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
    border:1px solid rgba(255,255,255,.10);
    box-shadow:0 12px 28px rgba(0,0,0,.16);
}
.contact__intro{
    display:flex;
    flex-direction:column;
    justify-content:space-between;
    gap:14px;
}
.contact__eyebrow{
    margin:0;
    font-size:12px;
    font-weight:800;
    letter-spacing:.14em;
    text-transform:uppercase;
    color:var(--brand);
}
.contact__title{
    margin:0;
    font-size:28px;
    letter-spacing:-.02em;
}
.contact__text{
    margin:0;
    color:var(--muted);
    line-height:1.8;
}
.contact__channels{display:grid;gap:10px}
.contact__channel{
    display:flex;
    align-items:center;
    gap:12px;
    padding:11px 14px;
    border-radius:16px;
    background:rgba(255,255,255,.03);
    border:1px solid rgba(255,255,255,.08);
    cursor:default;
    text-decoration:none;
    transition:transform .18s ease, border-color .18s ease, background .18s ease, color .18s ease;
}
.contact__channel:hover{
    transform:translateY(-1px);
    border-color:rgba(94,231,255,.18);
    background:rgba(255,255,255,.045);
    text-decoration:none;
}
.contact__channel strong{display:block;font-size:14px;transition:color .18s ease}
.contact__channel small{display:block;color:var(--muted2);font-size:13px;margin-top:2px;transition:color .18s ease}
.contact__channel:hover strong,
.contact__channel:hover small{
    color:rgba(94,231,255,.88);
}
.contact__icon{
    width:40px;
    height:40px;
    flex:0 0 40px;
    display:grid;
    place-items:center;
    border-radius:12px;
    background:rgba(94,231,255,.10);
    border:1px solid rgba(94,231,255,.14);
    font-size:17px;
}
.contact__form{display:grid;gap:12px}
.contact__field{display:grid;gap:6px}
.contact__field span{font-size:13px;font-weight:700;color:rgba(255,255,255,.84)}
.contact__input{
    width:100%;
    border:1px solid rgba(255,255,255,.10);
    background:rgba(7,10,18,.46);
    color:rgba(255,255,255,.94);
    border-radius:14px;
    padding:12px 14px;
    outline:none;
    transition:border-color .18s ease, box-shadow .18s ease, background .18s ease;
}
.contact__input::placeholder{color:rgba(255,255,255,.34)}
.contact__input:focus{
    border-color:rgba(94,231,255,.28);
    box-shadow:0 0 0 3px rgba(94,231,255,.06);
    background:rgba(7,10,18,.56);
}
.contact__textarea{min-height:120px;resize:vertical}
.contact__submit{justify-content:center;margin-top:2px}

.zeo-panel ul.list{
    list-style:none;
    padding:0;
    margin:0;
}
.zeo-panel ul.list li{

    font-weight:600;
    margin-bottom:8px;
    position:relative;
    padding-left:20px;
}
.zeo-panel ul.list li::before{
    content:"♦";
    position:absolute;
    left:0;
    color: rgba(0,255,240,.70) !important;
}

@media (max-width: 980px){
    .faq-layout{grid-template-columns:1fr}
    .faq-visual{justify-self:center;max-width:420px}
    .faq-visual__stage{min-height:320px}
}

.footer{
    position:fixed;
    left:0;
    right:0;
    bottom:0;
    z-index:60;
    height:var(--footer-h);
    margin-top:0;
    padding:0;
    display:flex;
    align-items:center;
    background: rgba(0,0,0,.45);
    backdrop-filter: blur(8px);
    border-top:1px solid rgba(255,255,255,.10);
}
.footer__inner{display:flex;align-items:center;justify-content:space-between;gap:16px;flex-wrap:wrap;width:100%}
.footer__brand{display:flex;align-items:center;gap:12px}
.footer__logo{
    width:86px;
    height:26px;
    object-fit:contain;
   
}
.footer__name{font-weight:1000;letter-spacing:.06em;text-transform:uppercase;font-size:13px}
.footer__tag{color:var(--muted2);font-size:12px;margin-top:2px}
.footer__copy{display:flex;align-items:center;gap:10px;color:var(--muted2);font-size:13px;flex-wrap:wrap}
.footer__divider{color:rgba(255,255,255,.28)}
.footer__link{
    color:var(--muted2);
    text-decoration:none;
    transition:color .18s ease;
}
.footer__link:hover{
    color:rgba(94,231,255,.88);
    text-decoration:none;
}

@media (max-width: 980px){
    .hero__grid{grid-template-columns:1fr;}
    .contact{grid-template-columns:1fr}
    .grid--3{grid-template-columns:repeat(2, minmax(0,1fr))}
    .hero__logo-stage{min-height:360px}
    .hero__logo-stage{justify-self:center}
}

@media (max-width: 720px){
    /* ===== MOBIL TEMEL AYARLAR ===== */
    /* Scroll için html ve body ayarları */
    html{
        height: auto !important;
        overflow-y: auto !important;
        -webkit-overflow-scrolling: touch;
    }
    body{
        overflow-y: auto !important;
        overflow-x: hidden !important;
        height: auto !important;
        min-height: 100vh;
        -webkit-overflow-scrolling: touch;
        touch-action: pan-y;
        position: relative;
    }
    main{
        height: auto !important;
        overflow: visible !important;
        position: relative;
        z-index: 1;
    }
    
    /* Arkaplan sabit kalmalı, içerik üzerinde scroll etmeli */
    .bg{
        position: fixed !important;
        inset: 0 !important;
        z-index: -2;
    }
    .bg__gradient{
        position: fixed !important;
        inset: -20% !important;
    }
    .bg__grain{
        position: fixed !important;
        inset: 0 !important;
    }
    .bg::after{
        position: fixed !important;
        inset: 0 !important;
    }
    
    /* ===== FIXED/STICKY ÖĞELER NORMAL AKISA ===== */
    .header{
        position: relative;
        top: auto;
        background: transparent;
    }
    .footer{
        position: relative;
        bottom: auto;
        height: auto;
        padding: 20px 0;
        margin-top: 40px;
    }
    
    /* ===== MOBIL HEADER: LOGO SOL, HAMBURGER SAG ===== */
    .header__inner{
        display: flex;
        flex-direction: row;
        align-items: center;
        justify-content: space-between;
        padding: 16px 20px;
        position: relative;
        gap: 0;
    }
    .brand{
        justify-content: flex-start;
        min-width: auto;
    }
    .brand__logo{
        max-width: 120px;
        max-height: 32px;
    }
    
    /* ===== SADE HAMBURGER MENÜ ===== */
    .nav-toggle{
        display: flex;
        flex-direction: column;
        justify-content: center;
        align-items: center;
        width: 40px;
        height: 40px;
        border-radius: 10px;
        background: rgba(255,255,255,.08);
        border: 1px solid rgba(255,255,255,.12);
        cursor: pointer;
        transition: all .2s ease;
    }
    .nav-toggle:hover{
        background: rgba(255,255,255,.12);
    }
    .nav-toggle__bar{
        display: block;
        width: 18px;
        height: 2px;
        margin: 2.5px 0;
        background: rgba(255,255,255,.85);
        border-radius: 1px;
        transition: all .25s ease;
    }
    .nav-toggle.is-open .nav-toggle__bar:nth-child(1){
        transform: rotate(45deg) translate(3px, 3px);
    }
    .nav-toggle.is-open .nav-toggle__bar:nth-child(2){
        opacity: 0;
    }
    .nav-toggle.is-open .nav-toggle__bar:nth-child(3){
        transform: rotate(-45deg) translate(3px, -3px);
    }
    
    /* ===== SİDEBAR MENÜ PANEL (CAM EFEKTİ) ===== */
    .nav-overlay{
        display: none;
        position: fixed;
        top: 0;
        left: 0;
        right: 0;
        bottom: 0;
        background: rgba(0,0,0,.4);
        z-index: 199;
    }
    .nav-overlay.is-open{
        display: block;
    }
    .nav{
        display: flex;
        position: fixed;
        top: 0;
        right: 0;
        bottom: 0;
        width: 280px;
        max-width: 80vw;
        background: rgba(255,255,255,.08);
        backdrop-filter: blur(8px) saturate(180%);
        -webkit-backdrop-filter: blur(8px) saturate(180%);
        z-index: 200;
        padding: 70px 24px 30px;
        flex-direction: column;
        align-items: stretch;
        gap: 0;
        overflow-y: auto;
        transform: translateX(100%);
        transition: transform .3s cubic-bezier(.4,0,.2,1);
        box-shadow: -4px 0 24px rgba(0,0,0,.25);
        border-left: 1px solid rgba(255,255,255,.1);
    }
    .nav.is-open{
        transform: translateX(0);
    }
    .nav__link{
        position: relative;
        padding: 14px 20px;
        font-size: 15px;
        font-weight: 500;
        color: rgba(255,255,255,.7);
        background: transparent;
        border: none;
        margin-bottom: 2px;
        transition: color .15s ease, background .15s ease;
        text-align: left;
        border-radius: 8px;
    }
    .nav__link:hover{
        color: rgba(255,255,255,.95);
        background: rgba(255,255,255,.06);
    }
    .nav__link.is-active{
        color: var(--brand);
        background: transparent;
    }
    .nav__link::after{
        display: none;
    }
    .nav__link.is-active::before{
        content: "";
        position: absolute;
        left: -24px;
        top: 50%;
        transform: translateY(-50%);
        width: 3px;
        height: 24px;
        background: var(--brand);
        border-radius: 0 2px 2px 0;
    }
    .nav__cta{
        margin: 20px 0 0;
        text-align: center;
        padding: 13px 18px;
        font-size: 14px;
        border-radius: 10px;
    }
    
    /* ===== SLIDER MOBIL: SWIPE KAPALI ===== */
    .slider{
        height: auto !important;
        position: relative;
        z-index: 1;
    }
    .slider .carousel-inner,
    .slider .carousel-item{
        height: auto !important;
    }
    .slide{
        height: auto !important;
        min-height: auto;
        overflow: visible;
        padding-top: 20px;
        padding-bottom: 40px;
        touch-action: pan-y;
        overscroll-behavior: auto;
    }
    .slider .carousel-control-prev,
    .slider .carousel-control-next{
        display: none;
    }
    
    /* ===== HERO (ANASAYFA) - GÖRSEL ÜSTTE ===== */
    .hero__grid{
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    .hero__logo-stage{
        order: 1;
        min-height: 200px;
        justify-self: center;
    }
    .hero__content{
        order: 2;
    }
    
    /* ===== ZEO BÖLÜMÜ - GÖRSEL ÜSTTE, TÜM PANELLER ALT ALTA ===== */
    .zeo-layout{
        display: flex;
        flex-direction: column;
        gap: 20px;
    }
    /* Zeo görsel üstte */
    .zeo-visual{
        order: 1;
        justify-self: center;
    }
    .zeo-visual__stage{
        min-height: auto;
        padding: 20px 0;
    }
    .zeo-visual__img{
        width: min(200px, 100%);
    }
    /* Dot nav gizlensin, paneller alt alta görünsün */
    .dot-nav{
        display: none;
    }
    .zeo-content{
        order: 2;
        margin-left: 0;
    }
    /* Tüm paneller görünür olsun */
    .zeo-panel{
        display: block !important;
        margin-bottom: 24px;
        padding-bottom: 20px;
        border-bottom: 1px solid rgba(255,255,255,.08);
    }
    .zeo-panel:last-child{
        border-bottom: none;
        margin-bottom: 0;
    }
    
    /* ===== SSS - ANİMASYON BAŞLIKTAN ÖNCE ===== */
    .slide[aria-label="SSS"]{
        display: flex;
        flex-direction: column;
    }
    .slide[aria-label="SSS"] .container{
        display: flex;
        flex-direction: column;
    }
    .slide[aria-label="SSS"] .section__header{
        order: 2;
    }
    .slide[aria-label="SSS"] .faq-layout{
        order: 1;
        display: contents;
    }
    .slide[aria-label="SSS"] .faq-visual{
        order: 1;
    }
    .slide[aria-label="SSS"] .faq{
        order: 3;
    }
    .faq-visual{
        justify-self: center;
        max-width: 100%;
    }
    .faq-visual__stage{
        min-height: 160px;
    }
    
    /* ===== ILETISIM - ÖNCE FORM, SONRA BIZE ULASIN ===== */
    .contact{
        display: flex;
        flex-direction: column;
    }
    .contact__form{
        order: 1;
    }
    .contact__intro{
        order: 2;
    }
    
    /* ===== MOBIL FOOTER DÜZENI ===== */
    .footer__inner{
        flex-direction: column;
        align-items: center;
        gap: 16px;
        padding: 10px 20px;
    }
    .footer__brand{
        flex-direction: column;
        align-items: center;
        gap: 8px;
    }
    .footer__logo{
        width: 70px;
        height: 22px;
    }
    .footer__copy{
        flex-direction: column;
        align-items: center;
        gap: 8px;
        text-align: center;
    }
    .footer__divider{
        display: none;
    }
    
    /* ===== DIGER MOBIL AYARLAR ===== */
    .section{padding:30px 0}
    .grid--2{grid-template-columns:1fr}
    .grid--3{grid-template-columns:1fr}
    .hero__title{font-size:28px}
    .hero__subtitle{font-size:14px}
    .hero__lead{font-size:14px;line-height:1.7}
}

.legal{
    padding-top: calc(var(--header-h) + var(--content-top-pad));
    padding-bottom: calc(var(--footer-h) + 40px);
    min-height: 100vh;
}

.legal__layout{
    display:grid;
    grid-template-columns: minmax(220px, 280px) minmax(0, 1fr);
    gap:18px;
    align-items:start;
}

.legal__sidebar{
    position:sticky;
    top: calc(var(--header-h) + var(--content-top-pad) + 0px);
    align-self:start;
    border-radius: calc(var(--radius) + 2px);
    background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: 0 12px 28px rgba(0,0,0,.18);
    padding:14px;
    margin-top: 0;
    max-height: calc(100vh - var(--header-h) - var(--content-top-pad) - var(--footer-h) - 40px);
    overflow-y: auto;
}

.legal__sidebar-title{
    font-size:12px;
    font-weight:900;
    letter-spacing:.14em;
    text-transform:uppercase;
    color: rgba(255,255,255,.80);
    margin: 2px 0 10px;
}

.legal__nav{display:flex;flex-direction:column;gap:6px}

.legal__nav-link{
    display:block;
    padding:10px 10px;
    border-radius:14px;
    border:1px solid transparent;
    color: var(--muted);
    font-weight:800;
    font-size:13px;
    transition: background .18s ease, color .18s ease, border-color .18s ease;
}

.legal__nav-link:hover{
    color: rgba(255,255,255,.92);
    background: rgba(255,255,255,.04);
    border-color: rgba(255,255,255,.10);
    text-decoration: none;
}

.legal__nav-link.is-active{
    color: rgba(255,255,255,.96);
    background: linear-gradient(135deg, rgba(94,231,255,.18), rgba(124,92,255,.14));
    border-color: rgba(94,231,255,.24);
}

.legal__content{
    min-width:0;
    border-radius: calc(var(--radius) + 2px);
    background: rgba(255,255,255,.04);
    border: 1px solid rgba(255,255,255,.10);
    box-shadow: 0 12px 28px rgba(0,0,0,.16);
    padding:20px 20px;
    margin-top: 0;
    align-self: start;
}

.legal__doc{display:none;scroll-margin-top: calc(var(--header-h) + var(--content-top-pad) + 28px)}
.legal__doc.is-active{display:block}

.legal__title{margin:0 0 10px;font-size:32px;letter-spacing:-.02em}

.legal__meta{
    display:flex;
    gap:10px;
    flex-wrap:wrap;
    color: var(--muted2);
    font-size:13px;
    font-weight:700;
    margin-bottom:18px;
}

.legal__content h2{margin:18px 0 10px;font-size:20px;letter-spacing:-.01em}
.legal__content h3{margin:18px 0 8px;font-size:16px;letter-spacing:-.01em}
.legal__content h4{margin:14px 0 6px;font-size:14px;letter-spacing:-.01em;color: rgba(255,255,255,.88)}
.legal__content p{margin:0 0 12px;color: var(--muted);line-height:1.85}
.legal__content ul{margin: 0 0 12px 0;padding-left: 18px;color: var(--muted);line-height:1.85}
.legal__content li{margin:6px 0}

 .legal__table{
     margin: 10px 0 14px;
     overflow:auto;
     border-radius: 14px;
     border: 1px solid rgba(255,255,255,.10);
     background: rgba(0,0,0,.18);
 }

 .legal__table table{
     width:100%;
     border-collapse:separate;
     border-spacing:0;
     min-width: 720px;
 }

 .legal__table th,
 .legal__table td{
     text-align:left;
     vertical-align:top;
     padding:12px 12px;
     border-bottom: 1px solid rgba(255,255,255,.08);
     color: var(--muted);
     line-height:1.6;
     font-size:13px;
 }

 .legal__table th{
     position:sticky;
     top:0;
     background: rgba(10,12,18,.92);
     color: rgba(255,255,255,.88);
     font-weight:900;
     letter-spacing:.01em;
     border-bottom-color: rgba(255,255,255,.12);
 }

 .legal__table tbody tr:last-child td{border-bottom:0}

.legal__footer{
    margin-top:18px;
    padding-top:14px;
    border-top:1px solid rgba(255,255,255,.10);
    color: var(--muted);
}

@media (max-width: 980px){
    .legal__layout{grid-template-columns:1fr}
    .legal__sidebar{position:relative;top:auto}
}
