:root{
    --aralis-blue:#083f78;
    --aralis-blue-dark:#052f5c;
    --aralis-orange:#ff7a3d;
    --aralis-sea:#8fd3df;
    --aralis-text:#5f7188;
    --aralis-soft:#f5f8fc;
    --aralis-white:#ffffff;
    --aralis-border:rgba(8,63,120,.10);
    --aralis-glass:rgba(255,255,255,.78);
    --aralis-shadow:0 24px 70px rgba(8,63,120,.12);
    --smooth:all .35s ease;
}

*{
    box-sizing:border-box;
}

html,
body{
    margin:0;
    padding:0;
    overflow-x:hidden;
    scroll-behavior:smooth;
}

body{
    padding-top:76px;
    color:var(--aralis-text);
    background:
        radial-gradient(circle at top right, rgba(255,122,61,.10), transparent 30%),
        radial-gradient(circle at 10% 18%, rgba(143,211,223,.20), transparent 32%),
        linear-gradient(135deg,#ffffff 0%,#f7fbff 48%,#edf6fb 100%);
}

a{
    text-decoration:none;
}

.container{
    width:min(1320px, calc(100% - 84px));
    margin:0 auto;
}

/* MOBILE DRAWER */

.mobile-drawer{
    position:fixed;
    inset:76px 0 0 0;
    z-index:9998;
    display:none;
    background:rgba(245,248,252,.96);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
}

.mobile-drawer.open{
    display:block;
}

.mobile-nav{
    display:flex;
    flex-direction:column;
    gap:14px;
    padding:28px;
}

.mobile-nav a{
    color:var(--aralis-blue);
}

/* HERO SLIDER */

.v-slider-section{
    position:relative;
    width:100%;
    height:542px;
    min-height:542px;
    overflow:hidden;
    background:#061f3d;
}

.v-slider-wrapper{
    position:relative;
    width:100%;
    height:100%;
    overflow:hidden;
}

.v-slide{
    position:absolute;
    inset:0;
    z-index:1;
    width:100%;
    height:100%;
    display:flex;
    align-items:center;
    opacity:0;
    visibility:hidden;
    overflow:hidden;
    background:#061f3d;
    transition:opacity 1.15s ease, visibility 1.15s ease;
}

.v-slide.active{
    z-index:10;
    opacity:1;
    visibility:visible;
}

/* SAĞDAKİ RESİM / VİDEO ALANI */

.v-slide-bg{
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    left:auto;
    z-index:1;
    width:68%;
    height:100%;
    background-size:cover;
    background-position:center right;
    background-repeat:no-repeat;
    transform:none;
    transition:none;
    clip-path:polygon(16% 0, 100% 0, 100% 100%, 0 100%, 9% 67%, 0 50%, 9% 33%);
}

.hero-video{
    position:absolute;
    top:0;
    right:0;
    bottom:0;
    left:auto;
    z-index:1;
    width:68%;
    height:100%;
    object-fit:cover;
    object-position:center right;
    transform:none;
    transition:none;
    clip-path:polygon(16% 0, 100% 0, 100% 100%, 0 100%, 9% 67%, 0 50%, 9% 33%);
}

/* RESMİN SOLUNDAKİ KIRIKLI TURUNCU ÇİZGİ */

.v-slide::after{
    content:"";
    position:absolute;
    top:0;
    bottom:0;
    left:31.5%;
    z-index:9;
    width:20%;
    pointer-events:none;
    background:var(--aralis-orange);
    clip-path:polygon(
        48% 0,
        52% 0,
        18% 50%,
        42% 100%,
        38% 100%,
        14% 50%
    );
    filter:drop-shadow(0 0 14px rgba(255,122,61,.35));
}

/* SOL LACİVERT ALAN */

.v-slide::before{
    content:"";
    position:absolute;
    inset:0;
    z-index:2;
    pointer-events:none;
    background:
        linear-gradient(
            90deg,
            rgba(4,24,48,1) 0%,
            rgba(5,31,61,.98) 24%,
            rgba(5,47,92,.90) 35%,
            rgba(5,47,92,.62) 45%,
            rgba(5,47,92,.15) 55%,
            rgba(5,47,92,0) 100%
        );
}

/* HAFİF KURUMSAL DOKU */

.v-overlay{
    position:absolute;
    inset:0;
    z-index:3;
    pointer-events:none;
    background:
        radial-gradient(circle at 17% 46%, rgba(255,122,61,.13), transparent 28%),
        radial-gradient(circle at 8% 22%, rgba(143,211,223,.10), transparent 24%);
}

.v-overlay::before{
    content:"";
    position:absolute;
    left:36px;
    top:38px;
    width:210px;
    height:150px;
    opacity:.18;
    background-image:radial-gradient(rgba(255,255,255,.55) 1.4px, transparent 1.4px);
    background-size:22px 22px;
}

.v-overlay::after{
    content:"";
    position:absolute;
    left:24px;
    bottom:28px;
    width:180px;
    height:90px;
    opacity:.14;
    background-image:radial-gradient(rgba(255,255,255,.55) 1.4px, transparent 1.4px);
    background-size:22px 22px;
}

/* YAZI ALANI */

.v-slide-content{
    position:relative;
    z-index:20;
    width:35%;
    max-width:640px;
    padding-left:3.5%;
    padding-right:16px;
}

.v-slide-content > *{
    opacity:0;
    transform:translateY(22px);
    transition:var(--smooth);
}

.v-slide.active .v-slide-content > *{
    opacity:1;
    transform:translateY(0);
}

.v-slide.active .hero-badge{
    transition-delay:.20s;
}

.v-slide.active h1{
    transition-delay:.34s;
}

.v-slide.active p{
    transition-delay:.48s;
}

.v-slide.active .cta-btn{
    transition-delay:.62s;
}

.hero-badge{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-bottom:22px;
    padding:10px 20px;
    border-radius:999px;
    color:#fff;
    background:rgba(255,255,255,.13);
    border:1px solid rgba(255,255,255,.22);
    backdrop-filter:blur(16px);
    -webkit-backdrop-filter:blur(16px);
    font-size:13px;
    font-weight:700;
    letter-spacing:1.8px;
    text-transform:uppercase;
}

.hero-badge i{
    color:var(--aralis-orange);
}

.v-slide-content h1{
    max-width:780px;
    margin:0 0 22px;
    color:#fff;
    font-size:clamp(34px,4.4vw,60px);
    font-weight:800;
    line-height:1;
    letter-spacing:-.05em;
}

.v-slide-content h1 span{
    color:var(--aralis-orange);
}

.v-slide-content p{
    max-width:620px;
    margin:0 0 32px;
    color:rgba(255,255,255,.84);
    font-size:16px;
    line-height:1.72;
}

.cta-btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    min-height:50px;
    padding:0 28px;
    border-radius:999px;
    color:#fff;
    background:linear-gradient(135deg,var(--aralis-orange),#ff9b66);
    box-shadow:0 18px 38px rgba(255,122,61,.28);
    font-size:14px;
    font-weight:700;
    letter-spacing:.4px;
    transition:var(--smooth);
}

.cta-btn:hover{
    color:var(--aralis-blue);
    background:#fff;
    transform:translateY(-4px);
}

/* HERO INFO CARDS */

.hero-info-cards{
    position:absolute;
    right:8%;
    top:50%;
    z-index:40;
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:14px;
    width:min(520px,40vw);
    transform:translateY(-50%);
}

.hero-info-card{
    min-height:128px;
    padding:20px;
    border-radius:24px;
    color:#fff;
    background:rgba(255,255,255,.13);
    border:1px solid rgba(255,255,255,.22);
    backdrop-filter:blur(18px);
    -webkit-backdrop-filter:blur(18px);
    box-shadow:0 18px 44px rgba(0,0,0,.12);
}

.hero-info-card i{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    width:38px;
    height:38px;
    margin-bottom:14px;
    border-radius:14px;
    color:#fff;
    background:var(--aralis-orange);
}

.hero-info-card strong{
    display:block;
    color:#fff;
    font-size:16px;
    font-weight:800;
}

.hero-info-card span{
    display:block;
    margin-top:6px;
    color:rgba(255,255,255,.76);
    font-size:13px;
    line-height:1.45;
}

/* SOUND CONTROL */

.volume-control{
    position:absolute;
    right:8%;
    bottom:84px;
    z-index:100;
}

.mute-btn{
    width:42px;
    height:42px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:16px;
    color:#fff;
    background:rgba(255,255,255,.13);
    border:1px solid rgba(255,255,255,.22);
    cursor:pointer;
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    transition:var(--smooth);
}

.mute-btn:hover{
    background:var(--aralis-orange);
    transform:translateY(-3px);
}

/* SLIDER CONTROLS */

.slider-controls{
    position:absolute;
    right:8%;
    bottom:28px;
    z-index:100;
    display:flex;
    align-items:center;
    gap:8px;
    padding:8px 11px;
    border-radius:999px;
    background:rgba(255,255,255,.13);
    border:1px solid rgba(255,255,255,.20);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
}

.nav-btn{
    width:34px;
    height:34px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border:none;
    border-radius:50%;
    color:#fff;
    background:rgba(255,255,255,.11);
    cursor:pointer;
    transition:var(--smooth);
}

.nav-btn:hover{
    background:var(--aralis-orange);
}

.slide-numbers{
    min-width:66px;
    padding:0 7px;
    color:#fff;
    font-size:13px;
    font-weight:700;
    text-align:center;
    font-variant-numeric:tabular-nums;
}

.slide-progress-container{
    position:absolute;
    left:0;
    bottom:0;
    z-index:110;
    width:100%;
    height:4px;
    background:rgba(255,255,255,.16);
}

.slide-progress-bar{
    width:0%;
    height:100%;
    background:linear-gradient(90deg,var(--aralis-orange),#ffb27f);
}

/* PREMIUM TICKER */

.ticker-wrapper{
    position:relative;
    width:100vw;
    left:50%;
    transform:translateX(-50%);
    overflow:hidden;
    padding:18px 0;
    background:linear-gradient(180deg,#ffffff 0%,#f6f9fd 100%);
    border-top:1px solid rgba(8,63,120,.08);
    border-bottom:1px solid rgba(8,63,120,.08);
}

.ticker-overlay{
    position:absolute;
    top:0;
    z-index:5;
    width:140px;
    height:100%;
    pointer-events:none;
}

.ticker-overlay-left{
    left:0;
    background:linear-gradient(90deg,#f8fbff 0%,rgba(248,251,255,0) 100%);
}

.ticker-overlay-right{
    right:0;
    background:linear-gradient(270deg,#f8fbff 0%,rgba(248,251,255,0) 100%);
}

.ticker-track{
    display:flex;
    width:max-content;
    animation:tickerMove 42s linear infinite;
}

.ticker-wrapper:hover .ticker-track{
    animation-play-state:paused;
}

.ticker-content{
    display:flex;
    align-items:center;
    gap:18px;
    padding-right:18px;
}

.ticker-item{
    min-width:max-content;
    display:flex;
    align-items:center;
    gap:14px;
    padding:14px 20px;
    border-radius:18px;
    background:linear-gradient(145deg,rgba(255,255,255,.96),rgba(246,249,253,.96));
    border:1px solid rgba(8,63,120,.08);
    box-shadow:0 10px 28px rgba(8,63,120,.06);
    transition:var(--smooth);
}

.ticker-item:hover{
    transform:translateY(-3px);
    border-color:rgba(255,122,61,.22);
    box-shadow:0 16px 36px rgba(8,63,120,.10);
}

.ticker-item i{
    width:42px;
    height:42px;
    flex:0 0 42px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:14px;
    color:var(--aralis-orange);
    background:linear-gradient(145deg,#fff3ec,#ffe3d3);
    box-shadow:
        inset 0 1px 0 rgba(255,255,255,.9),
        0 8px 18px rgba(255,122,61,.12);
}

.ticker-item strong{
    display:block;
    color:var(--aralis-blue);
    font-size:14px;
    font-weight:800;
}

.ticker-item small{
    display:block;
    margin-top:2px;
    color:#6d8198;
    font-size:12px;
}

@keyframes tickerMove{
    0%{
        transform:translateX(0);
    }

    100%{
        transform:translateX(-50%);
    }
}

/* ABOUT SHORT */

.about-short-section{
    position:relative;
    overflow:hidden;
    padding:96px 0;
    background:
        radial-gradient(circle at 85% 20%, rgba(255,122,61,.10), transparent 30%),
        linear-gradient(135deg,#ffffff 0%,#f7fbff 100%);
}

.about-short-section::before{
    content:"";
    position:absolute;
    left:-180px;
    bottom:-220px;
    width:520px;
    height:520px;
    border-radius:50%;
    background:radial-gradient(circle, rgba(143,211,223,.25), transparent 66%);
    pointer-events:none;
}

.about-short-grid{
    position:relative;
    z-index:2;
    display:grid;
    grid-template-columns:1.15fr .95fr;
    gap:76px;
    align-items:center;
}

.about-short-content{
    max-width:760px;
}

.section-tag{
    display:inline-flex;
    align-items:center;
    gap:10px;
    margin-bottom:22px;
    color:var(--aralis-orange);
    font-size:13px;
    font-weight:800;
    letter-spacing:1.8px;
    text-transform:uppercase;
}

.section-tag::before{
    content:"";
    width:28px;
    height:2px;
    border-radius:20px;
    background:var(--aralis-orange);
}

.about-short-title{
    margin:0 0 24px;
    color:var(--aralis-blue);
    font-size:clamp(26px,3vw,40px);
    font-weight:800;
    line-height:1.14;
    letter-spacing:-.035em;
}

.about-short-title span{
    color:var(--aralis-orange);
}

.about-short-content p{
    max-width:720px;
    margin:0 0 30px;
    color:var(--aralis-text);
    font-size:15px;
    line-height:1.8;
}

.about-short-content p strong{
    color:#2f3b4a;
}

.about-short-list{
    display:grid;
    gap:14px;
    margin:0 0 34px;
    padding:0;
    list-style:none;
}

.about-short-list li{
    display:flex;
    align-items:center;
    gap:12px;
    color:var(--aralis-blue);
    font-size:15px;
    font-weight:700;
}

.about-short-list i{
    width:24px;
    height:24px;
    flex:0 0 24px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border-radius:9px;
    color:#fff;
    background:var(--aralis-orange);
    font-size:11px;
}

.about-short-link{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:12px;
    min-height:48px;
    padding:0 22px;
    border-radius:999px;
    color:#fff;
    background:linear-gradient(135deg,var(--aralis-blue),#0a5598);
    font-size:14px;
    font-weight:800;
    box-shadow:0 16px 34px rgba(8,63,120,.16);
    transition:var(--smooth);
}

.about-short-link:hover{
    transform:translateY(-4px);
    background:linear-gradient(135deg,var(--aralis-orange),#ff9b66);
}

/* STAT CARDS */

.about-stat-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:22px;
}

.about-stat-card{
    position:relative;
    overflow:hidden;
    min-height:178px;
    padding:28px;
    border-radius:28px;
    background:rgba(255,255,255,.86);
    border:1px solid rgba(8,63,120,.08);
    box-shadow:0 20px 48px rgba(8,63,120,.08);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    transition:var(--smooth);
}

.about-stat-card::after{
    content:"";
    position:absolute;
    right:-42px;
    bottom:-42px;
    width:124px;
    height:124px;
    border-radius:50%;
    background:rgba(255,122,61,.10);
}

.about-stat-card:hover{
    transform:translateY(-6px);
    box-shadow:0 30px 70px rgba(8,63,120,.13);
}

.stat-index{
    position:absolute;
    top:18px;
    right:20px;
    color:rgba(8,63,120,.13);
    font-size:34px;
    font-weight:900;
    line-height:1;
}

.stat-icon{
    width:52px;
    height:52px;
    display:flex;
    align-items:center;
    justify-content:center;
    border-radius:18px;
    color:#fff;
    background:linear-gradient(135deg,var(--aralis-blue),#0a5598);
    box-shadow:0 16px 30px rgba(8,63,120,.16);
}

.stat-orange .stat-icon{
    background:linear-gradient(135deg,var(--aralis-orange),#ff9b66);
    box-shadow:0 16px 30px rgba(255,122,61,.20);
}

.stat-content{
    position:relative;
    z-index:2;
    margin-top:24px;
}

.stat-content strong{
    display:block;
    color:var(--aralis-blue);
    font-size:34px;
    font-weight:900;
    line-height:1;
}

.stat-content span{
    display:block;
    margin-top:10px;
    color:var(--aralis-text);
    font-size:13px;
    font-weight:800;
    letter-spacing:1px;
    text-transform:uppercase;
}

/* SOLUTIONS */

.solutions-section{
    position:relative;
    overflow:hidden;
    padding:96px 0;
    background:
        radial-gradient(circle at top right, rgba(255,122,61,.10), transparent 30%),
        linear-gradient(135deg,#f5f8fc 0%,#edf6fb 100%);
    border-top:1px solid var(--aralis-border);
    border-bottom:1px solid var(--aralis-border);
}

.section-head{
    max-width:780px;
    margin-bottom:46px;
}

.section-head p{
    max-width:720px;
    margin:0;
    color:var(--aralis-text);
    font-size:15px;
    line-height:1.8;
}

.section-title{
    margin:0 0 22px;
    color:var(--aralis-blue);
    font-size:clamp(26px,3vw,40px);
    font-weight:800;
    line-height:1.14;
    letter-spacing:-.035em;
}

.section-title span{
    color:var(--aralis-orange);
}

.solution-grid{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.solution-card{
    position:relative;
    overflow:hidden;
    min-height:252px;
    padding:30px;
    border-radius:30px;
    background:rgba(255,255,255,.88);
    border:1px solid rgba(8,63,120,.08);
    box-shadow:0 18px 45px rgba(8,63,120,.06);
    backdrop-filter:blur(14px);
    -webkit-backdrop-filter:blur(14px);
    transition:var(--smooth);
}

.solution-card::after{
    content:"";
    position:absolute;
    right:-36px;
    bottom:-36px;
    width:112px;
    height:112px;
    border-radius:50%;
    background:rgba(255,122,61,.08);
}

.solution-card:hover{
    transform:translateY(-7px);
    border-color:rgba(255,122,61,.36);
    box-shadow:0 28px 70px rgba(8,63,120,.12);
}

.solution-icon{
    width:56px;
    height:56px;
    display:inline-flex;
    align-items:center;
    justify-content:center;
    margin-bottom:24px;
    border-radius:18px;
    color:#fff;
    background:linear-gradient(135deg,var(--aralis-orange),#ff9b66);
    box-shadow:0 16px 30px rgba(255,122,61,.18);
}

.solution-card h3{
    margin:0 0 13px;
    color:var(--aralis-blue);
    font-size:20px;
    font-weight:800;
}

.solution-card p{
    margin:0;
    color:var(--aralis-text);
    font-size:14px;
    line-height:1.75;
}

/* RESPONSIVE */

@media(max-width:1200px){
    .hero-info-cards{
        display:none;
    }

    .solution-grid{
        grid-template-columns:repeat(2,1fr);
    }

    .v-slide-content{
        width:42%;
        padding-left:4%;
    }

    .v-slide-bg,
    .hero-video{
        width:68%;
    }

    .v-slide::after{
        left:31.5%;
    }
}

@media(max-width:992px){
    body{
        padding-top:70px;
    }

    .container{
        width:min(100% - 44px,1320px);
    }

    .v-slider-section{
        height:500px;
        min-height:500px;
    }

    .v-slide-bg,
    .hero-video{
        width:100%;
        clip-path:none;
        background-position:center center;
        object-position:center center;
    }

    .v-slide::after{
        display:none;
    }

    .v-slide::before{
        background:
            linear-gradient(
                90deg,
                rgba(5,31,61,.94) 0%,
                rgba(5,47,92,.78) 55%,
                rgba(5,47,92,.35) 100%
            );
    }

    .v-slide-content{
        width:100%;
        max-width:720px;
        padding-left:34px;
        padding-right:34px;
    }

    .volume-control{
        right:30px;
        bottom:82px;
    }

    .slider-controls{
        right:30px;
        bottom:26px;
    }

    .about-short-grid{
        grid-template-columns:1fr;
        gap:50px;
    }

    .solutions-section,
    .about-short-section{
        padding:82px 0;
    }
}

@media(max-width:768px){
    .ticker-overlay{
        width:70px;
    }

    .ticker-item{
        padding:12px 16px;
    }

    .ticker-item i{
        width:36px;
        height:36px;
        flex:0 0 36px;
    }

    .v-overlay::before,
    .v-overlay::after{
        display:none;
    }
}

@media(max-width:650px){
    .solution-grid,
    .about-stat-grid{
        grid-template-columns:1fr;
    }
}

@media(max-width:560px){
    .container{
        width:min(100% - 32px,1320px);
    }

    .v-slider-section{
        height:430px;
        min-height:430px;
    }

    .v-slide-content{
        padding:0 24px;
    }

    .v-slide-content h1{
        font-size:34px;
        line-height:1.08;
    }

    .v-slide-content p{
        font-size:14px;
        line-height:1.65;
    }

    .hero-badge{
        font-size:11px;
        padding:8px 14px;
    }

    .volume-control{
        display:none;
    }

    .slider-controls{
        left:20px;
        right:20px;
        justify-content:center;
    }

    .about-short-title,
    .section-title{
        font-size:28px;
        line-height:1.14;
    }

    .about-short-section,
    .solutions-section{
        padding:68px 0;
    }

    .about-stat-card{
        min-height:150px;
    }
}
.v-slide::after{
    display:none !important;
}
/* ==============================
   ÇEREZ POLİTİKASI - GÜNCEL
================================= */

.cookie-consent-box {
    position: fixed !important;
    left: 24px;
    right: 24px;
    bottom: 24px;
    z-index: 99998;
    display: flex;
    align-items: center;
    gap: 18px;
    padding: 18px;
    border-radius: 22px;
    background: rgba(8, 18, 35, 0.96);
    border: 1px solid rgba(255, 255, 255, 0.14);
    box-shadow: 0 24px 80px rgba(0, 0, 0, 0.38);
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    color: #fff;
}

.cookie-consent-box.is-hidden {
    display: none !important;
}

.cookie-consent-icon {
    width: 54px;
    height: 54px;
    min-width: 54px;
    border-radius: 18px;
    display: flex;
    align-items: center;
    justify-content: center;
    background: linear-gradient(135deg, var(--aralis-orange), #ff9b66);
    color: #fff;
    font-size: 23px;
    box-shadow: 0 14px 35px rgba(255, 122, 61, 0.35);
}

.cookie-consent-content {
    flex: 1;
    min-width: 0;
}

.cookie-consent-content strong {
    display: block;
    margin-bottom: 5px;
    color: #fff;
    font-size: 17px;
    font-weight: 800;
    letter-spacing: -0.02em;
}

.cookie-consent-content p {
    margin: 0;
    max-width: 900px;
    color: rgba(255, 255, 255, 0.80);
    font-size: 14px;
    line-height: 1.6;
}

.cookie-consent-actions {
    display: flex;
    align-items: center;
    justify-content: flex-end;
    gap: 10px;
    flex-wrap: wrap;
}

.cookie-policy-btn,
.cookie-reject-btn,
.cookie-accept-btn {
    appearance: none;
    -webkit-appearance: none;
    border: 0;
    outline: none;
    cursor: pointer;
    height: 42px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 16px;
    border-radius: 999px;
    font-size: 13px;
    font-weight: 800;
    line-height: 1;
    white-space: nowrap;
    transition: all 0.25s ease;
}

.cookie-policy-btn {
    color: #fff;
    background: rgba(255, 255, 255, 0.10);
    border: 1px solid rgba(255, 255, 255, 0.16);
}

.cookie-policy-btn:hover {
    background: rgba(255, 255, 255, 0.18);
}

.cookie-reject-btn {
    color: #e5e7eb;
    background: rgba(255, 255, 255, 0.08);
}

.cookie-reject-btn:hover {
    background: rgba(255, 255, 255, 0.14);
}

.cookie-accept-btn {
    color: #fff;
    background: linear-gradient(135deg, var(--aralis-orange), #ea580c);
    box-shadow: 0 14px 32px rgba(255, 122, 61, 0.35);
}

.cookie-accept-btn:hover {
    transform: translateY(-1px);
    box-shadow: 0 18px 38px rgba(255, 122, 61, 0.45);
}

/* MODAL */

.cookie-policy-modal {
    position: fixed !important;
    inset: 0;
    z-index: 99999;
    display: none;
}

.cookie-policy-modal.is-open {
    display: block;
}

.cookie-policy-backdrop {
    position: absolute;
    inset: 0;
    background: rgba(2, 6, 23, 0.72);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

.cookie-policy-panel {
    position: relative;
    width: min(980px, calc(100% - 32px));
    max-height: calc(100vh - 48px);
    margin: 24px auto;
    display: flex;
    flex-direction: column;
    overflow: hidden;
    border-radius: 26px;
    background: #fff;
    box-shadow: 0 30px 100px rgba(0, 0, 0, 0.42);
}

.cookie-policy-header {
    display: flex;
    align-items: flex-start;
    justify-content: space-between;
    gap: 20px;
    padding: 24px 26px;
    background:
        radial-gradient(circle at top left, rgba(255, 122, 61, 0.20), transparent 34%),
        linear-gradient(135deg, #052f5c, #083f78);
    color: #fff;
}

.cookie-policy-header span {
    display: inline-flex;
    margin-bottom: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(255, 122, 61, 0.16);
    color: #fed7aa;
    font-size: 11px;
    font-weight: 900;
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.cookie-policy-header h2 {
    margin: 0;
    color: #fff;
    font-size: 24px;
    line-height: 1.25;
    letter-spacing: -0.04em;
}

.cookie-policy-header p {
    margin: 8px 0 0;
    color: rgba(255, 255, 255, 0.72);
    font-size: 13px;
}

.cookie-policy-close {
    width: 42px;
    height: 42px;
    min-width: 42px;
    border: 0;
    border-radius: 14px;
    cursor: pointer;
    color: #fff;
    background: rgba(255, 255, 255, 0.12);
    transition: all 0.25s ease;
}

.cookie-policy-close:hover {
    background: rgba(255, 255, 255, 0.22);
}

.cookie-policy-body {
    padding: 26px;
    overflow-y: auto;
    color: #334155;
}

.cookie-policy-body h3 {
    margin: 26px 0 10px;
    color: var(--aralis-blue);
    font-size: 18px;
    font-weight: 900;
    letter-spacing: -0.02em;
}

.cookie-policy-body h4 {
    margin: 18px 0 8px;
    color: #1e293b;
    font-size: 15px;
    font-weight: 900;
}

.cookie-policy-body p {
    margin: 0 0 14px;
    color: #334155;
    font-size: 14px;
    line-height: 1.75;
}

.cookie-policy-body ul {
    margin: 0 0 16px;
    padding-left: 22px;
}

.cookie-policy-body li {
    margin-bottom: 8px;
    color: #334155;
    font-size: 14px;
    line-height: 1.65;
}

.cookie-policy-company {
    margin-top: 26px;
    padding: 18px;
    display: grid;
    grid-template-columns: 150px 1fr;
    gap: 8px 14px;
    border-radius: 18px;
    background: #f8fafc;
    border: 1px solid #e2e8f0;
}

.cookie-policy-company strong {
    color: #0f172a;
}

.cookie-policy-company span {
    color: #475569;
}

.cookie-policy-footer {
    display: flex;
    justify-content: flex-end;
    gap: 10px;
    padding: 18px 26px;
    border-top: 1px solid #e2e8f0;
    background: #f8fafc;
}

.cookie-policy-footer .cookie-reject-btn {
    color: #475569;
    background: #e2e8f0;
}

.cookie-policy-footer .cookie-accept-btn {
    color: #fff;
}

/* MOBİL ÇEREZ TASARIMI */

@media (max-width: 768px) {
    .cookie-consent-box {
        left: 12px !important;
        right: 12px !important;
        bottom: 12px !important;
        width: auto !important;
        max-width: none !important;
        display: grid !important;
        grid-template-columns: 46px 1fr;
        align-items: flex-start;
        gap: 12px;
        padding: 15px;
        border-radius: 20px;
    }

    .cookie-consent-icon {
        width: 46px;
        height: 46px;
        min-width: 46px;
        border-radius: 15px;
        font-size: 20px;
    }

    .cookie-consent-content {
        width: 100%;
    }

    .cookie-consent-content strong {
        margin-bottom: 4px;
        font-size: 15px;
        line-height: 1.3;
    }

    .cookie-consent-content p {
        font-size: 12.5px;
        line-height: 1.5;
    }

    .cookie-consent-actions {
        grid-column: 1 / -1;
        width: 100%;
        display: grid !important;
        grid-template-columns: 1fr;
        gap: 8px;
        margin-top: 4px;
    }

    .cookie-policy-btn,
    .cookie-reject-btn,
    .cookie-accept-btn {
        width: 100% !important;
        height: 42px;
        padding: 0 12px;
        border-radius: 14px;
        font-size: 12.5px;
        text-align: center;
    }

    .cookie-policy-panel {
        width: calc(100% - 20px);
        max-height: calc(100vh - 20px);
        margin: 10px auto;
        border-radius: 20px;
    }

    .cookie-policy-header {
        padding: 18px;
        gap: 12px;
    }

    .cookie-policy-header span {
        font-size: 9px;
        line-height: 1.4;
    }

    .cookie-policy-header h2 {
        font-size: 18px;
        line-height: 1.25;
    }

    .cookie-policy-header p {
        font-size: 12px;
    }

    .cookie-policy-close {
        width: 38px;
        height: 38px;
        min-width: 38px;
        border-radius: 12px;
    }

    .cookie-policy-body {
        padding: 18px;
    }

    .cookie-policy-body h3 {
        margin: 22px 0 8px;
        font-size: 16px;
    }

    .cookie-policy-body h4 {
        font-size: 14px;
    }

    .cookie-policy-body p,
    .cookie-policy-body li {
        font-size: 13px;
        line-height: 1.65;
    }

    .cookie-policy-company {
        grid-template-columns: 1fr;
        padding: 14px;
    }

    .cookie-policy-footer {
        padding: 14px 18px;
        display: grid;
        grid-template-columns: 1fr;
    }
}

@media (max-width: 420px) {
    .cookie-consent-box {
        grid-template-columns: 40px 1fr;
        padding: 13px;
        gap: 10px;
    }

    .cookie-consent-icon {
        width: 40px;
        height: 40px;
        min-width: 40px;
        border-radius: 13px;
        font-size: 18px;
    }

    .cookie-consent-content strong {
        font-size: 14px;
    }

    .cookie-consent-content p {
        font-size: 12px;
    }
}
/* ==============================
   MOBİL ÇEREZ ZORLAYICI DÜZELTME
   BUNU style.css EN ALTINA KOY
================================= */

@media only screen and (max-width: 768px) {

    body .cookie-consent-box#cookieConsentBox {
        position: fixed !important;
        left: 12px !important;
        right: 12px !important;
        bottom: 12px !important;
        top: auto !important;

        width: auto !important;
        max-width: none !important;
        min-width: 0 !important;

        z-index: 2147483647 !important;

        display: grid !important;
        grid-template-columns: 44px minmax(0, 1fr) !important;
        align-items: start !important;
        gap: 12px !important;

        padding: 14px !important;
        margin: 0 !important;

        border-radius: 20px !important;
        background: rgba(8, 18, 35, 0.97) !important;
        border: 1px solid rgba(255, 255, 255, 0.16) !important;
        box-shadow: 0 20px 70px rgba(0, 0, 0, 0.42) !important;

        color: #fff !important;
        overflow: hidden !important;

        backdrop-filter: blur(18px) !important;
        -webkit-backdrop-filter: blur(18px) !important;
    }

    body .cookie-consent-box#cookieConsentBox.is-hidden {
        display: none !important;
    }

    body .cookie-consent-box#cookieConsentBox .cookie-consent-icon {
        width: 44px !important;
        height: 44px !important;
        min-width: 44px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        border-radius: 15px !important;
        background: linear-gradient(135deg, #ff7a3d, #ff9b66) !important;
        color: #fff !important;
        font-size: 19px !important;
        line-height: 1 !important;
    }

    body .cookie-consent-box#cookieConsentBox .cookie-consent-content {
        display: block !important;
        width: 100% !important;
        min-width: 0 !important;
        padding: 0 !important;
        margin: 0 !important;
    }

    body .cookie-consent-box#cookieConsentBox .cookie-consent-content strong {
        display: block !important;
        margin: 0 0 5px !important;
        padding: 0 !important;

        color: #fff !important;
        font-size: 15px !important;
        font-weight: 800 !important;
        line-height: 1.25 !important;
        letter-spacing: -0.02em !important;
    }

    body .cookie-consent-box#cookieConsentBox .cookie-consent-content p {
        display: block !important;
        margin: 0 !important;
        padding: 0 !important;

        color: rgba(255, 255, 255, 0.78) !important;
        font-size: 12.5px !important;
        line-height: 1.5 !important;
        max-width: none !important;
    }

    body .cookie-consent-box#cookieConsentBox .cookie-consent-actions {
        grid-column: 1 / -1 !important;

        width: 100% !important;
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 8px !important;

        margin: 4px 0 0 !important;
        padding: 0 !important;
    }

    body .cookie-consent-box#cookieConsentBox .cookie-policy-btn,
    body .cookie-consent-box#cookieConsentBox .cookie-reject-btn,
    body .cookie-consent-box#cookieConsentBox .cookie-accept-btn {
        width: 100% !important;
        max-width: none !important;
        min-width: 0 !important;
        height: 42px !important;

        display: flex !important;
        align-items: center !important;
        justify-content: center !important;

        padding: 0 12px !important;
        margin: 0 !important;

        border-radius: 14px !important;
        border: 0 !important;

        font-size: 12.5px !important;
        font-weight: 800 !important;
        line-height: 1 !important;
        text-align: center !important;
        white-space: nowrap !important;

        cursor: pointer !important;
        appearance: none !important;
        -webkit-appearance: none !important;
    }

    body .cookie-consent-box#cookieConsentBox .cookie-policy-btn {
        color: #fff !important;
        background: rgba(255, 255, 255, 0.12) !important;
        border: 1px solid rgba(255, 255, 255, 0.18) !important;
    }

    body .cookie-consent-box#cookieConsentBox .cookie-reject-btn {
        color: #e5e7eb !important;
        background: rgba(255, 255, 255, 0.09) !important;
    }

    body .cookie-consent-box#cookieConsentBox .cookie-accept-btn {
        color: #fff !important;
        background: linear-gradient(135deg, #ff7a3d, #ea580c) !important;
        box-shadow: 0 12px 28px rgba(255, 122, 61, 0.34) !important;
    }

    body .cookie-policy-modal#cookiePolicyModal {
        position: fixed !important;
        inset: 0 !important;
        z-index: 2147483647 !important;
    }

    body .cookie-policy-modal#cookiePolicyModal.is-open {
        display: block !important;
    }

    body .cookie-policy-panel {
        width: calc(100% - 20px) !important;
        max-height: calc(100vh - 20px) !important;
        margin: 10px auto !important;
        border-radius: 20px !important;
    }

    body .cookie-policy-header {
        padding: 18px !important;
    }

    body .cookie-policy-header h2 {
        font-size: 18px !important;
        line-height: 1.25 !important;
    }

    body .cookie-policy-body {
        padding: 18px !important;
    }

    body .cookie-policy-body h3 {
        font-size: 16px !important;
    }

    body .cookie-policy-body p,
    body .cookie-policy-body li {
        font-size: 13px !important;
        line-height: 1.65 !important;
    }

    body .cookie-policy-company {
        grid-template-columns: 1fr !important;
    }

    body .cookie-policy-footer {
        display: grid !important;
        grid-template-columns: 1fr !important;
        gap: 8px !important;
        padding: 14px 18px !important;
    }
}