:root{
    --dark:#0f172a;
    --dark2:#020617;
    --orange:#f97316;
    --soft:#f8fafc;
    --text:#1e293b;
    --muted:#64748b;
    --line:#e2e8f0;
}

*{
    box-sizing:border-box;
}

html{
    scroll-behavior:smooth;
}

body{
    margin:0;
    font-family:Inter,Arial,sans-serif;
    color:var(--text);
    background:#fff;
}

a{
    text-decoration:none;
    color:inherit;
}

img{
    max-width:100%;
    display:block;
}

.container{
    width:min(1180px,92%);
    margin:auto;
}

/* Üst Bar */

.pretop{
    background:#07111f;
    color:#dbeafe;
    font-size:13px;
}

.pretop-inner{
    display:flex;
    justify-content:space-between;
    padding:9px 0;
}

/* Menü */

.topbar{
    position:sticky;
    top:0;
    z-index:20;
    background:rgba(255,255,255,.92);
    backdrop-filter:blur(18px);
    border-bottom:1px solid var(--line);
}

.nav{
    height:78px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:24px;
}

.brand{
    display:flex;
    align-items:center;
    font-weight:900;
    font-size:22px;
    color:var(--dark);
}

.brand span{
    color:var(--orange);
    margin-right:8px;
}

.site-logo{
    max-height:48px;
    width:auto;
    object-fit:contain;
}

.nav nav{
    display:flex;
    gap:24px;
}

.nav nav a{
    font-weight:800;
    color:#334155;
}

.nav-cta{
    background:var(--dark);
    color:#fff;
    padding:12px 18px;
    border-radius:999px;
    font-weight:900;
}

.menu-btn{
    display:none;
    background:#fff;
    border:1px solid var(--line);
    border-radius:12px;
    padding:10px 13px;
    font-size:20px;
}

/* Hero */

.hero{
    background:
        radial-gradient(circle at 75% 15%,rgba(249,115,22,.35),transparent 30%),
        linear-gradient(135deg,#020617,#0f172a 55%,#111827);
    color:#fff;
    padding:94px 0 110px;
    overflow:hidden;
}

.hero-grid{
    display:grid;
    grid-template-columns:1.05fr .95fr;
    gap:52px;
    align-items:center;
}

.hero h1{
    font-size:61px;
    letter-spacing:-2px;
    line-height:1.03;
    margin:20px 0;
}

.hero p{
    font-size:20px;
    line-height:1.75;
    color:#cbd5e1;
}

.badge{
    display:inline-flex;
    background:#fff1e8;
    color:#c2410c;
    padding:10px 15px;
    border-radius:999px;
    font-weight:900;
    font-size:13px;
}

.badge.dark{
    background:#e2e8f0;
    color:#0f172a;
}

.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    border:0;
    border-radius:15px;
    padding:15px 23px;
    font-weight:900;
    cursor:pointer;
}

.primary{
    background:linear-gradient(135deg,var(--orange),#ea580c);
    color:#fff;
    box-shadow:0 14px 28px rgba(249,115,22,.28);
}

.ghost{
    background:rgba(255,255,255,.1);
    color:#fff;
    border:1px solid rgba(255,255,255,.24);
}

.hero-actions{
    display:flex;
    gap:12px;
    margin-top:28px;
    flex-wrap:wrap;
}

.hero-mini{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:16px;
    margin-top:34px;
}

.hero-mini div{
    background:rgba(255,255,255,.08);
    border:1px solid rgba(255,255,255,.13);
    border-radius:18px;
    padding:15px;
}

.hero-mini b{
    display:block;
    font-size:22px;
}

.hero-mini span{
    font-size:12px;
    color:#cbd5e1;
}

.hero-visual{
    background:rgba(255,255,255,.08);
    padding:28px;
    border-radius:36px;
    border:1px solid rgba(255,255,255,.14);
    box-shadow:0 30px 80px rgba(0,0,0,.25);
}

/* Güven Kartları */

.trust{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:20px;
    margin-top:-42px;
    position:relative;
    z-index:3;
}

.trust div,
.service-card,
.blog-card,
.testimonial,
.process-box div{
    background:#fff;
    border:1px solid var(--line);
    border-radius:24px;
    padding:28px;
    box-shadow:0 18px 42px rgba(15,23,42,.08);
}

.trust b{
    color:var(--orange);
    font-size:30px;
}

.trust p,
.service-card p,
.blog-card p,
.split p,
.faq-list p{
    color:var(--muted);
    line-height:1.65;
}

/* Kampanya */

.campaign{
    margin-top:44px;
    background:linear-gradient(135deg,#fff7ed,#ffedd5);
    border:1px solid #fed7aa;
    border-radius:28px;
    padding:30px;
    display:flex;
    align-items:center;
    justify-content:space-between;
    gap:20px;
}

.campaign span{
    color:#c2410c;
    font-weight:900;
}

.campaign h2{
    margin:8px 0;
    font-size:32px;
}

/* Genel Alanlar */

.section{
    padding:86px 0;
}

.alt{
    background:var(--soft);
}

.section-head{
    max-width:760px;
    margin-bottom:36px;
}

.section-head span{
    color:var(--orange);
    font-weight:900;
}

.section-head h2{
    font-size:42px;
    letter-spacing:-1px;
    line-height:1.13;
    margin:10px 0;
}

/* Kartlar */

.cards,
.blog-grid,
.testimonial-grid,
.gallery{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:22px;
}

.cards{
    grid-template-columns:repeat(4,1fr);
}

.service-card,
.blog-card{
    padding:0;
    overflow:hidden;
}

.service-card img,
.blog-card img{
    height:190px;
    width:100%;
    object-fit:cover;
}

.service-card h3,
.service-card p,
.service-card a{
    margin-left:22px;
    margin-right:22px;
}

.service-card a,
.blog-card a{
    display:inline-block;
    color:var(--orange);
    font-weight:900;
    margin-bottom:22px;
}

/* Split */

.split{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:54px;
    align-items:center;
}

.split h2{
    font-size:42px;
}

.checklist{
    padding:0;
    list-style:none;
}

.checklist li{
    margin:13px 0;
    padding-left:32px;
    position:relative;
    font-weight:700;
}

.checklist li:before{
    content:'✓';
    position:absolute;
    left:0;
    color:var(--orange);
    font-weight:900;
}

/* Süreç */

.process-box{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:18px;
}

.process-box div{
    padding:24px;
}

.process-box strong{
    display:grid;
    place-items:center;
    width:42px;
    height:42px;
    border-radius:50%;
    background:var(--orange);
    color:#fff;
}

/* Galeri */

.gallery figure{
    margin:0;
    background:#fff;
    border-radius:26px;
    overflow:hidden;
    border:1px solid var(--line);
    box-shadow:0 16px 30px rgba(15,23,42,.06);
}

.gallery img{
    width:100%;
    height:242px;
    object-fit:cover;
}

.gallery figcaption{
    font-weight:900;
    padding:16px;
}

/* Yorumlar */

.testimonial .stars{
    color:#f59e0b;
    letter-spacing:2px;
}

.testimonial p{
    line-height:1.75;
    color:#475569;
}

.testimonial b{
    display:block;
    margin-top:14px;
}

.testimonial span{
    color:var(--muted);
    font-size:14px;
}

/* SSS */

.faq-list{
    display:grid;
    gap:14px;
    max-width:900px;
}

.faq-list details{
    background:#fff;
    border:1px solid var(--line);
    border-radius:18px;
    padding:20px;
    box-shadow:0 10px 24px rgba(15,23,42,.05);
}

.faq-list summary{
    font-weight:900;
    cursor:pointer;
}

/* Blog */

.blog-card div{
    padding:22px;
}

/* İletişim */

.contact-section{
    background:linear-gradient(135deg,#0f172a,#1e293b);
    color:#fff;
    padding:84px 0;
}

.contact-grid{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:44px;
}

.contact-form{
    background:#fff;
    color:var(--text);
    padding:28px;
    border-radius:26px;
    display:grid;
    gap:14px;
    box-shadow:0 24px 50px rgba(0,0,0,.22);
}

.contact-form input,
.contact-form select,
.contact-form textarea{
    border:1px solid var(--line);
    border-radius:13px;
    padding:15px;
    font:inherit;
}

.contact-form textarea{
    min-height:120px;
}

.success{
    background:#dcfce7;
    color:#166534;
    padding:12px;
    border-radius:12px;
}

/* Footer */

.footer{
    background:#020617;
    color:#cbd5e1;
    padding-top:54px;
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr;
    gap:32px;
}

.footer h3,
.footer h4{
    color:#fff;
}

.footer a{
    display:block;
    margin:8px 0;
    color:#cbd5e1;
}

.footer-brand{
    display:flex;
    flex-direction:column;
    gap:14px;
}

.footer-logo{
    width:140px;
    max-width:100%;
    height:auto;
    object-fit:contain;
    display:block;
}

.copyright{
    text-align:center;
    border-top:1px solid #1e293b;
    margin-top:30px;
    padding:20px;
}

/* Sabit Butonlar */

.whatsapp{
    position:fixed;
    right:22px;
    bottom:22px;
    background:#22c55e;
    color:#fff;
    padding:14px 18px;
    border-radius:999px;
    font-weight:900;
    z-index:30;
}

.mobile-action-bar{
    display:none;
}

/* Sayfa Başlıkları */

.page-title{
    background:linear-gradient(135deg,#020617,#0f172a);
    color:#fff;
    padding:80px 0;
}

.page-title h1{
    font-size:48px;
    margin:0 0 12px;
}

.article{
    max-width:900px;
}

.article p{
    font-size:18px;
    line-height:1.8;
}

/* Responsive */

@media(max-width:1050px){

    .cards{
        grid-template-columns:repeat(2,1fr);
    }

    .hero h1{
        font-size:48px;
    }

    .hero-grid,
    .split,
    .contact-grid{
        grid-template-columns:1fr;
    }
}

@media(max-width:800px){

    .pretop{
        display:none;
    }

    .nav nav{
        display:none;
        position:absolute;
        left:4%;
        right:4%;
        top:78px;
        background:#fff;
        border:1px solid var(--line);
        border-radius:18px;
        padding:18px;
        box-shadow:0 20px 40px rgba(15,23,42,.12);
    }

    .nav nav.open{
        display:grid;
        gap:16px;
    }

    .menu-btn{
        display:block;
    }

    .nav-cta{
        display:none;
    }

    .trust,
    .testimonial-grid,
    .blog-grid,
    .gallery,
    .process-box{
        grid-template-columns:1fr 1fr;
    }

    .hero-mini{
        grid-template-columns:1fr;
    }

    .hero h1{
        font-size:39px;
    }

    .section-head h2,
    .split h2{
        font-size:34px;
    }

    .whatsapp{
        display:none;
    }

    .mobile-action-bar{
        display:grid;
        grid-template-columns:1fr 1fr;
        position:fixed;
        left:0;
        right:0;
        bottom:0;
        z-index:40;
    }

    .mobile-action-bar a{
        background:#0f172a;
        color:#fff;
        text-align:center;
        padding:15px;
        font-weight:900;
    }

    .mobile-action-bar a:last-child{
        background:#22c55e;
    }

    body{
        padding-bottom:54px;
    }
}

@media(max-width:620px){

    .cards,
    .blog-grid,
    .gallery,
    .trust,
    .footer-grid,
    .testimonial-grid,
    .process-box{
        grid-template-columns:1fr;
    }

    .campaign{
        display:block;
    }

    .campaign .btn{
        margin-top:18px;
    }

    .hero h1{
        font-size:34px;
    }

    .hero{
        padding-top:64px;
    }

    .footer-logo{
        width:120px;
    }
}
.menu-btn{
    width:58px;
    height:58px;
    display:none;
    align-items:center;
    justify-content:center;
    flex-direction:column;
    gap:6px;
    background:#fff;
    border:1px solid var(--line);
    border-radius:18px;
    box-shadow:0 12px 30px rgba(15,23,42,.08);
}

.menu-btn span{
    width:24px;
    height:3px;
    background:#0f172a;
    border-radius:99px;
    transition:.25s;
}

.menu-btn.active span:nth-child(1){
    transform:translateY(9px) rotate(45deg);
}

.menu-btn.active span:nth-child(2){
    opacity:0;
}

.menu-btn.active span:nth-child(3){
    transform:translateY(-9px) rotate(-45deg);
}

.scroll-top-btn{
    position:fixed;
    right:22px;
    bottom:88px;
    width:52px;
    height:52px;
    border:0;
    border-radius:50%;
    background:#f97316;
    color:#fff;
    font-size:24px;
    font-weight:900;
    cursor:pointer;
    z-index:50;
    box-shadow:0 14px 35px rgba(249,115,22,.35);
    opacity:0;
    pointer-events:none;
    transform:translateY(12px);
    transition:.25s;
}

.scroll-top-btn.show{
    opacity:1;
    pointer-events:auto;
    transform:translateY(0);
}

@media(max-width:800px){

    .menu-btn{
        display:flex;
    }

    .nav nav{
        top:88px;
        left:20px;
        right:20px;
        padding:22px;
        border-radius:28px;
        background:rgba(255,255,255,.96);
        backdrop-filter:blur(18px);
    }

    .nav nav.open{
        display:grid;
        animation:mobileMenu .25s ease;
    }

    .nav nav a{
        font-size:20px;
        padding:10px 12px;
        border-radius:14px;
    }

    .nav nav a:hover{
        background:#fff7ed;
        color:#f97316;
    }

    .scroll-top-btn{
        right:18px;
        bottom:76px;
        width:48px;
        height:48px;
    }
}

@keyframes mobileMenu{
    from{
        opacity:0;
        transform:translateY(-12px);
    }

    to{
        opacity:1;
        transform:translateY(0);
    }
}
@media(max-width:800px){

    .scroll-top-btn{
        display:flex !important;
        align-items:center;
        justify-content:center;

        position:fixed !important;
        right:18px !important;
        bottom:82px !important;

        width:48px !important;
        height:48px !important;

        z-index:9999 !important;
    }

    .scroll-top-btn.show{
        opacity:1 !important;
        pointer-events:auto !important;
        transform:translateY(0) !important;
    }
}
/* Yukarı Çık Butonu - Kesin Çözüm */

.scroll-top-btn{
    position:fixed !important;
    right:18px !important;
    bottom:90px !important;

    width:50px !important;
    height:50px !important;

    z-index:999999 !important;

    border:0 !important;
    border-radius:50% !important;

    background:#f97316 !important;
    color:#fff !important;

    font-size:24px !important;
    font-weight:900 !important;

    display:flex !important;
    align-items:center !important;
    justify-content:center !important;

    box-shadow:0 14px 35px rgba(249,115,22,.35) !important;

    opacity:0;
    pointer-events:none;

    transform:translateY(12px);
    transition:.25s;
}

.scroll-top-btn.show{
    opacity:1 !important;
    pointer-events:auto !important;
    transform:translateY(0) !important;
}

@media(max-width:800px){

    .scroll-top-btn{
        display:flex !important;
        right:18px !important;
        bottom:78px !important;
        width:48px !important;
        height:48px !important;
        z-index:999999 !important;
    }

}
@import url('premium-musteri.css');
@import url('ileri-seviye.css');