:root{
    --bg:#030712;
    --bg-soft:#07111f;
    --bg-card:#0f172a;
    --text:#f8fafc;
    --muted:#94a3b8;
    --blue:#2563eb;
    --cyan:#38bdf8;
    --border:rgba(148,163,184,.18);
    --radius:22px;
}

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

html{
    scroll-behavior:smooth;
}

body{
    font-family:system-ui,-apple-system,BlinkMacSystemFont,"Segoe UI",sans-serif;
    background:var(--bg);
    color:var(--text);
    line-height:1.6;
    overflow-x:hidden;
}

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

.container{
    width:86%;
    max-width:1320px;
    margin:0 auto;
}

/* NAVBAR */
.navbar{
    position:fixed;
    top:0;
    left:0;
    width:100%;
    z-index:999;
    background:rgba(3,7,18,.76);
    backdrop-filter:blur(18px);
    border-bottom:1px solid rgba(148,163,184,.12);
}

.nav-container{
    height:76px;
    display:flex;
    align-items:center;
    justify-content:space-between;
}

.logo{
    display:flex;
    align-items:center;
    gap:10px;
    font-size:22px;
    font-weight:800;
    letter-spacing:-.5px;
}

.logo-icon{
    width:42px;
    height:42px;
    border-radius:12px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(37,99,235,.18);
    border:1px solid rgba(56,189,248,.35);
    color:var(--cyan);
    font-family:monospace;
}

.text-neon{
    color:var(--cyan);
}

.nav-links{
    display:flex;
    align-items:center;
    gap:32px;
    list-style:none;
}

.nav-links a{
    color:rgba(255,255,255,.72);
    font-size:15px;
    font-weight:600;
    transition:.25s;
}

.nav-links a:hover{
    color:#fff;
}

.btn-outline-small{
    padding:10px 18px;
    border:1px solid rgba(56,189,248,.55);
    border-radius:999px;
    color:#fff !important;
    background:rgba(3,7,18,.35);
}

.mobile-toggle{
    display:none;
    background:none;
    border:0;
    color:#fff;
    font-size:30px;
    cursor:pointer;
}

/* BUTTONS */
.btn{
    display:inline-flex;
    align-items:center;
    justify-content:center;
    gap:14px;
    min-width:210px;
    height:60px;
    padding:0 26px;
    border-radius:10px;
    font-size:16px;
    font-weight:750;
    transition:.25s ease;
}

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

.btn-primary{
    color:#fff;
    background:linear-gradient(135deg,#2563eb,#0b5cff);
    box-shadow:0 16px 38px rgba(37,99,235,.34);
}

.btn-outline,
.btn-outline-white{
    color:#fff;
    border:1px solid rgba(96,165,250,.62);
    background:rgba(3,7,18,.35);
}

.btn b{
    font-size:22px;
    font-weight:400;
}

/* HERO */
.hero{
    position:relative;
    min-height:820px;
    display:flex;
    align-items:center;
    background-size:cover;
    background-position:center right;
    background-repeat:no-repeat;
    overflow:hidden;
    border-bottom:1px solid rgba(148,163,184,.12);
}

.hero::before{
    content:"";
    position:absolute;
    inset:0;
    background:
        linear-gradient(90deg, rgba(3,7,18,.98) 0%, rgba(3,7,18,.84) 33%, rgba(3,7,18,.22) 68%, rgba(3,7,18,.08) 100%),
        linear-gradient(180deg, rgba(3,7,18,.45) 0%, rgba(3,7,18,.05) 44%, rgba(3,7,18,.82) 100%);
    z-index:1;
}

.hero-inner{
    position:relative;
    z-index:2;
}

.hero-content{
    max-width:720px;
    padding-top:76px;
}

.eyebrow{
    display:inline-flex;
    margin-bottom:20px;
    padding:8px 15px;
    border-radius:999px;
    color:var(--cyan);
    font-size:13px;
    font-weight:800;
    letter-spacing:.4px;
    background:rgba(56,189,248,.09);
    border:1px solid rgba(56,189,248,.24);
}

.hero-content h1{
    margin:0 0 28px;
    color:#fff;
    font-size:64px;
    line-height:1.08;
    letter-spacing:-2px;
    font-weight:850;
}

.hero-content h1 span{
    color:#3b82f6;
}

.hero-desc{
    max-width:620px;
    margin:0 0 36px;
    color:rgba(255,255,255,.82);
    font-size:20px;
    line-height:1.65;
    font-weight:500;
}

.hero-actions{
    display:flex;
    align-items:center;
    gap:18px;
    flex-wrap:wrap;
}

.hero-features{
    display:flex;
    align-items:center;
    gap:22px;
    margin-top:38px;
    flex-wrap:wrap;
}

.hero-feature{
    display:flex;
    align-items:center;
    gap:12px;
    color:#fff;
    font-size:15px;
    font-weight:750;
    line-height:1.22;
}

.feature-icon{
    width:50px;
    height:50px;
    border:1px solid rgba(59,130,246,.85);
    border-radius:14px;
    display:flex;
    align-items:center;
    justify-content:center;
    color:var(--cyan);
    font-size:23px;
    background:rgba(3,7,18,.35);
    box-shadow:0 0 24px rgba(56,189,248,.18);
}

.feature-separator{
    width:1px;
    height:40px;
    background:rgba(255,255,255,.2);
}

/* SECTIONS */
.section{
    padding:110px 0;
    background:var(--bg);
}

.section-alt{
    background:linear-gradient(180deg,#050b16,#07111f);
}

.section-header{
    text-align:center;
    max-width:820px;
    margin:0 auto 58px;
}

.section-header-between{
    max-width:none;
    display:flex;
    align-items:flex-end;
    justify-content:space-between;
    gap:32px;
    text-align:left;
}

.section-label{
    display:block;
    margin-bottom:12px;
    color:var(--cyan);
    font-size:13px;
    font-weight:850;
    letter-spacing:2.5px;
    text-transform:uppercase;
}

.section-header h2,
.split-content h2,
.cta-container h2{
    margin:0 0 18px;
    color:#fff;
    font-size:42px;
    line-height:1.18;
    letter-spacing:-1px;
    font-weight:850;
}

.section-sub,
.split-content p,
.cta-container p{
    color:rgba(255,255,255,.68);
    font-size:18px;
    line-height:1.7;
}

.section-link,
.card-link,
.project-info a,
.blog-card a{
    color:#60a5fa;
    font-weight:750;
}

/* CARDS */
.cards-grid,
.blog-grid{
    display:grid;
    grid-template-columns:repeat(3,1fr);
    gap:26px;
}

.card,
.blog-card,
.value-item{
    padding:34px;
    border:1px solid var(--border);
    border-radius:var(--radius);
    background:linear-gradient(180deg,rgba(15,23,42,.84),rgba(3,7,18,.92));
    box-shadow:0 24px 70px rgba(0,0,0,.28);
    transition:.28s ease;
}

.card:hover,
.blog-card:hover,
.value-item:hover{
    transform:translateY(-6px);
    border-color:rgba(56,189,248,.46);
    box-shadow:0 30px 90px rgba(37,99,235,.18);
}

.card-icon{
    width:60px;
    height:60px;
    margin-bottom:24px;
    border-radius:18px;
    display:flex;
    align-items:center;
    justify-content:center;
    background:rgba(37,99,235,.14);
    border:1px solid rgba(56,189,248,.28);
    font-size:30px;
}

.card h3,
.blog-card h3,
.value-item h3,
.step h3{
    margin:0 0 14px;
    color:#fff;
    font-size:23px;
    line-height:1.3;
    font-weight:820;
}

.card p,
.blog-card p,
.value-item p,
.step p,
.project-info p{
    color:rgba(255,255,255,.66);
    font-size:16px;
    line-height:1.7;
}

/* PROJECTS */
.projects-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:26px;
}

.project-card{
    display:grid;
    grid-template-columns:150px 1fr;
    overflow:hidden;
    border:1px solid var(--border);
    border-radius:var(--radius);
    background:linear-gradient(180deg,rgba(15,23,42,.84),rgba(3,7,18,.92));
    transition:.28s ease;
}

.project-card:hover{
    transform:translateY(-5px);
    border-color:rgba(56,189,248,.42);
}

.project-thumb{
    min-height:180px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:48px;
    background:linear-gradient(135deg,rgba(37,99,235,.22),rgba(56,189,248,.08));
}

.project-info{
    padding:28px;
}

.project-info h3{
    margin:8px 0 12px;
    font-size:24px;
}

.tag,
.blog-category{
    display:inline-flex;
    width:max-content;
    padding:6px 12px;
    border-radius:999px;
    color:var(--cyan);
    background:rgba(56,189,248,.1);
    border:1px solid rgba(56,189,248,.22);
    font-size:12px;
    font-weight:800;
}

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

.industry-item{
    padding:22px 24px;
    border-radius:18px;
    border:1px solid var(--border);
    background:rgba(15,23,42,.62);
    color:rgba(255,255,255,.82);
    font-weight:750;
}

/* WHY */
.split-section{
    display:grid;
    grid-template-columns:.9fr 1.1fr;
    gap:56px;
    align-items:center;
}

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

.value-item strong{
    display:block;
    margin-bottom:10px;
    color:var(--cyan);
    font-size:14px;
}

/* STEPS */
.steps{
    display:grid;
    grid-template-columns:repeat(4,1fr);
    gap:22px;
}

.step{
    padding:30px;
    border:1px solid var(--border);
    border-radius:var(--radius);
    background:rgba(15,23,42,.62);
}

.step-number{
    margin-bottom:18px;
    color:rgba(56,189,248,.28);
    font-size:48px;
    font-weight:900;
    line-height:1;
}

/* BLOG */
.blog-card{
    min-height:300px;
}

.blog-card h3{
    margin-top:18px;
}

/* CTA */
.cta-section{
    position:relative;
    overflow:hidden;
    text-align:center;
    background:
        radial-gradient(circle at 50% 0%, rgba(37,99,235,.32), transparent 38%),
        linear-gradient(180deg,#07111f,#030712);
    border-top:1px solid var(--border);
}

.cta-container{
    max-width:860px;
}

.cta-actions{
    display:flex;
    justify-content:center;
    gap:16px;
    flex-wrap:wrap;
    margin-top:34px;
}

/* FOOTER */
.footer{
    padding:70px 0 24px;
    background:#020617;
    border-top:1px solid rgba(148,163,184,.14);
}

.footer-grid{
    display:grid;
    grid-template-columns:2fr 1fr 1fr 1fr;
    gap:42px;
    margin-bottom:42px;
}

.footer-brand p,
.footer-links li,
.footer-links a{
    color:rgba(255,255,255,.62);
    font-size:15px;
}

.footer-brand p{
    margin-top:16px;
    max-width:360px;
}

.footer-links h5{
    margin-bottom:16px;
    font-size:16px;
}

.footer-links ul{
    list-style:none;
}

.footer-links li{
    margin-bottom:10px;
}

.footer-bottom{
    padding-top:22px;
    border-top:1px solid rgba(148,163,184,.12);
    text-align:center;
    color:rgba(255,255,255,.5);
    font-size:14px;
}

/* RESPONSIVE */
@media(max-width:980px){
    .nav-links{
        display:none;
        position:absolute;
        top:76px;
        left:0;
        width:100%;
        flex-direction:column;
        padding:24px;
        gap:18px;
        background:rgba(3,7,18,.98);
        border-bottom:1px solid var(--border);
    }

    .nav-links.active{
        display:flex;
    }

    .mobile-toggle{
        display:block;
    }

    .hero{
        min-height:760px;
    }

    .hero-content h1{
        font-size:50px;
    }

    .hero-desc{
        font-size:18px;
    }

    .cards-grid,
    .blog-grid,
    .industry-grid,
    .steps,
    .projects-grid,
    .split-section{
        grid-template-columns:1fr;
    }

    .section-header-between{
        display:block;
        text-align:left;
    }

    .section-link{
        display:inline-flex;
        margin-top:20px;
    }

    .footer-grid{
        grid-template-columns:1fr 1fr;
    }
}

@media(max-width:767px){
    .container{
        width:90%;
    }

    .hero{
        min-height:auto;
        padding:130px 0 80px;
        background-position:center;
    }

    .hero::before{
        background:rgba(3,7,18,.84);
    }

    .hero-content{
        padding-top:0;
    }

    .hero-content h1{
        font-size:36px;
        letter-spacing:-1px;
    }

    .hero-desc{
        font-size:16px;
    }

    .hero-actions,
    .cta-actions{
        width:100%;
    }

    .btn{
        width:100%;
        min-width:0;
        height:56px;
        font-size:15px;
    }

    .hero-feature{
        width:100%;
    }

    .feature-separator{
        display:none;
    }

    .section{
        padding:76px 0;
    }

    .section-header h2,
    .split-content h2,
    .cta-container h2{
        font-size:29px;
    }

    .section-sub,
    .split-content p,
    .cta-container p{
        font-size:16px;
    }

    .project-card{
        grid-template-columns:1fr;
    }

    .project-thumb{
        min-height:120px;
    }

    .footer-grid{
        grid-template-columns:1fr;
    }
}

.logo {
    display: flex;
    align-items: center;
    gap: 10px;
    text-decoration: none;
}

.logo-icon-img {
    height: 40px;   /* Navbar yüksekliğine göre ayarlayabilirsin */
    width: auto;
}

/* PAGE HERO */
.page-hero{
    padding:160px 0 90px;
    background:
        radial-gradient(circle at 20% 10%, rgba(37,99,235,.22), transparent 34%),
        linear-gradient(180deg,#030712,#07111f);
    border-bottom:1px solid rgba(148,163,184,.14);
}

.page-hero-inner{
    max-width:980px;
}

.page-hero h1{
    margin:0 0 24px;
    color:#fff;
    font-size:56px;
    line-height:1.1;
    letter-spacing:-2px;
    font-weight:850;
}

.page-hero p{
    max-width:820px;
    color:rgba(255,255,255,.76);
    font-size:19px;
    line-height:1.7;
}

/* ABOUT */
.about-box-grid{
    display:grid;
    grid-template-columns:repeat(2,1fr);
    gap:18px;
}

.about-box{
    padding:28px;
    border-radius:22px;
    border:1px solid rgba(148,163,184,.18);
    background:linear-gradient(180deg,rgba(15,23,42,.84),rgba(3,7,18,.92));
}

.about-box strong{
    display:block;
    color:#38bdf8;
    font-size:30px;
    line-height:1.1;
    margin-bottom:8px;
}

.about-box span{
    color:rgba(255,255,255,.72);
    font-size:15px;
}

.split-content p + p{
    margin-top:18px;
}

@media(max-width:980px){
    .page-hero{
        padding:130px 0 70px;
    }

    .page-hero h1{
        font-size:42px;
    }

    .about-box-grid{
        grid-template-columns:1fr;
    }
}

@media(max-width:767px){
    .page-hero{
        padding:120px 0 60px;
    }

    .page-hero h1{
        font-size:33px;
        letter-spacing:-1px;
    }

    .page-hero p{
        font-size:16px;
    }
}

.project-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
    display:block;
}

.project-thumb span{
    font-size:46px;
}

.section-bottom-action{
    display:flex;
    justify-content:center;
    margin-top:42px;
}
/* ================================
   PROJECT CARDS FIX
================================ */

.projects-grid{
    display:grid;
    grid-template-columns:repeat(2,minmax(0,1fr));
    gap:28px;
}

.project-card{
    display:grid;
    grid-template-columns:220px 1fr;
    min-height:240px;
    overflow:hidden;

    border:1px solid rgba(148,163,184,.18);
    border-radius:24px;

    background:
        linear-gradient(
            180deg,
            rgba(15,23,42,.88),
            rgba(3,7,18,.96)
        );

    box-shadow:0 24px 70px rgba(0,0,0,.28);
    transition:.28s ease;
}

.project-card:hover{
    transform:translateY(-6px);
    border-color:rgba(56,189,248,.42);
    box-shadow:0 34px 100px rgba(37,99,235,.18);
}

.project-thumb{
    position:relative;
    width:220px;
    min-height:240px;
    overflow:hidden;

    background:
        linear-gradient(
            135deg,
            rgba(37,99,235,.22),
            rgba(56,189,248,.08)
        );
}

.project-thumb img{
    width:100%;
    height:100%;
    object-fit:cover;
    object-position:center;
    display:block;
    transition:transform .35s ease;
}

.project-card:hover .project-thumb img{
    transform:scale(1.05);
}

.project-thumb span{
    width:100%;
    height:100%;

    display:flex;
    align-items:center;
    justify-content:center;

    font-size:56px;
    color:#38bdf8;
}

.project-info{
    padding:30px;

    display:flex;
    flex-direction:column;
    justify-content:center;
}

.project-info .tag{
    margin-bottom:14px;
}

.project-info h3{
    margin:0 0 14px;

    color:#fff;
    font-size:26px;
    line-height:1.22;
    letter-spacing:-.6px;
}

.project-info p{
    margin-bottom:20px;

    color:rgba(255,255,255,.68);
    font-size:15px;
    line-height:1.75;

    display:-webkit-box;
    -webkit-box-orient:vertical;

    overflow:hidden;
}

.project-info a{
    margin-top:auto;

    color:#60a5fa;
    font-weight:800;
    font-size:15px;
}

.section-bottom-action{
    display:flex;
    justify-content:center;
    margin-top:46px;
}

/* ================================
   TABLET
================================ */

@media(max-width:1100px){

    .projects-grid{
        grid-template-columns:1fr;
    }

    .project-card{
        grid-template-columns:240px 1fr;
    }

    .project-thumb{
        width:240px;
    }
}

/* ================================
   MOBILE
================================ */

@media(max-width:767px){

    .project-card{
        grid-template-columns:1fr;
    }

    .project-thumb{
        width:100%;
        height:240px;
        min-height:240px;
    }

    .project-info{
        padding:24px;
    }

    .project-info h3{
        font-size:23px;
    }

}


/* ================================
   SERVICES
================================ */

.service-card h2{
    margin:0 0 14px;
    font-size:28px;
    line-height:1.2;
    color:#fff;
}

.rich-content{
    color:rgba(255,255,255,.72);
    font-size:17px;
    line-height:1.9;
}

.rich-content p{
    margin-bottom:18px;
}

.legal-hero {
    padding: 120px 0 70px;
    background:
        radial-gradient(circle at top right, rgba(0, 229, 255, 0.18), transparent 35%),
        linear-gradient(135deg, #020617 0%, #0f172a 55%, #020617 100%);
    color: #fff;
}

.legal-eyebrow {
    display: inline-block;
    margin-bottom: 14px;
    color: #22d3ee;
    font-size: 14px;
    font-weight: 700;
    letter-spacing: 0.12em;
    text-transform: uppercase;
}

.legal-hero h1 {
    margin: 0;
    max-width: 850px;
    font-size: clamp(34px, 5vw, 58px);
    line-height: 1.1;
    letter-spacing: -0.04em;
}

.legal-page {
    padding: 70px 0 90px;
    background: #f8fafc;
}

.legal-container {
    max-width: 920px;
    background: #ffffff;
    border: 1px solid #e5e7eb;
    border-radius: 28px;
    padding: clamp(28px, 5vw, 56px);
    box-shadow: 0 24px 70px rgba(15, 23, 42, 0.08);
}

.legal-page p,
.legal-page li {
    color: #475569;
    font-size: 16px;
    line-height: 1.85;
}

.legal-page h2 {
    margin: 34px 0 14px;
    color: #0f172a;
    font-size: 24px;
    line-height: 1.3;
}

.legal-page ul {
    margin: 14px 0 24px;
    padding-left: 22px;
}

.legal-page li {
    margin-bottom: 10px;
}

.legal-page hr {
    border: 0;
    border-top: 1px solid #e5e7eb;
    margin: 32px 0;
}

.legal-page a {
    color: #0891b2;
    font-weight: 700;
    text-decoration: none;
}

.legal-page a:hover {
    text-decoration: underline;
}

.legal-date {
    color: #64748b !important;
    margin-bottom: 28px;
}