:root{
  --bg:#f6f8fc;
  --surface:#ffffff;
  --text:#0b1220;
  --muted:#5b6b82;
  --border:#e6edf7;
  --shadow:0 18px 45px rgba(11,18,32,.08);
  --radius:18px;

  --primary:#0d5bff;
  --primary2:#3aa0ff;

  --soft:rgba(13,91,255,.08);
  --soft2:rgba(58,160,255,.08);
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family: system-ui,-apple-system,Segoe UI,Roboto,Arial;
  background:var(--bg);
  color:var(--text);
}
a{text-decoration:none;color:inherit}
.wrap{max-width:1200px;margin:0 auto;padding:22px}
@media(max-width:900px){.wrap{padding:16px}}

/* HEADER */
.header{
  position:sticky; top:0; z-index:50;
  background:rgba(255,255,255,.86);
  backdrop-filter: blur(10px);
  border-bottom:1px solid var(--border);
}
.nav{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  padding:14px 0;
}
.brand{display:flex;gap:12px;align-items:center;min-width:260px}
.brand img{height:42px;width:auto}
.links{display:flex;gap:8px;flex-wrap:wrap;justify-content:flex-end}
.links a{
  padding:10px 12px;
  border-radius:12px;
  border:1px solid transparent;
}
.links a:hover{
  background:#fff;
  border-color:var(--border);
  box-shadow:0 10px 22px rgba(11,18,32,.06);
}
.ctaTop{
  background:linear-gradient(135deg,var(--primary),var(--primary2));
  color:#fff;
  border-color:transparent;
  box-shadow:0 14px 30px rgba(13,91,255,.20);
}
.ctaTop:hover{opacity:.96}

/* HERO */
.hero{
  margin-top:16px;
  border-radius:26px;
  overflow:hidden;
  position:relative;
  background:#fff;
  border:1px solid var(--border);
  box-shadow:var(--shadow);
}

/* Arka plan (sade gradient) */
.heroBg{
  position:absolute;
  inset:0;
  background:
    radial-gradient(900px 360px at 15% 0%, rgba(13,91,255,.12), transparent 60%),
    radial-gradient(900px 360px at 85% 10%, rgba(58,160,255,.10), transparent 62%),
    linear-gradient(180deg, #ffffff 0%, #f7fbff 100%);
}

/* Eğer istersen heroBg'ye arka plan resim de verebilirsin:
.heroBg{ background-image:url('/assets/img/hero/hero-main.webp'); ... }
Ama rollup sağda olacağı için buna gerek yok.
*/

/* İç yerleşim: ✅ tekrar 2 kolon */
.heroInner{
  position:relative;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:22px;
  padding:34px;
  align-items:center;
}
@media(max-width:900px){
  .heroInner{
    grid-template-columns:1fr;
    padding:18px;
  }
}

.kicker{
  display:inline-flex;
  gap:8px;
  align-items:center;
  padding:7px 10px;
  border-radius:999px;
  border:1px solid rgba(13,91,255,.18);
  background:rgba(13,91,255,.08);
  font-size:12px;
  font-weight:900;
  color:#07328f;
  width:fit-content;
}

.h1{
  font-size:48px;
  line-height:1.05;
  letter-spacing:-.6px;
  margin:12px 0 10px;
  max-width: 18ch;
}
@media(max-width:900px){
  .h1{font-size:34px;max-width:unset}
}

.sub{
  color:var(--muted);
  max-width:60ch;
  line-height:1.65;
  margin:0 0 14px;
  font-size:16px;
}

/* Butonlar */
.heroActions{
  margin-top:14px;
  display:flex;
  gap:12px;
  flex-wrap:wrap;
}
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:12px 18px;
  border-radius:14px;
  border:1px solid var(--border);
  background:#fff;
  font-weight:950;
  transition:.15s ease;
}
.btn:hover{transform:translateY(-1px)}
.btnPrimary{
  background:linear-gradient(135deg,var(--primary),var(--primary2));
  color:#fff;
  border:none;
  box-shadow:0 14px 30px rgba(13,91,255,.18);
}
.btnPrimary:hover{opacity:.96}

/* Mini proof */
.heroMiniProof{
  margin-top:14px;
  display:flex;
  gap:10px;
  flex-wrap:wrap;
  color:var(--muted);
  font-size:13px;
}
.heroMiniProof span{
  padding:6px 10px;
  border-radius:999px;
  border:1px solid rgba(230,237,247,.95);
  background: rgba(255,255,255,.75);
  backdrop-filter: blur(10px);
}

/* ✅ HERO sağ panel artık kullanılacak */
.heroVisual{
  display:flex;
  align-items:center;
  justify-content:center;
  border-radius:18px;
  border:1px solid rgba(230,237,247,.95);
  background: rgba(255,255,255,.70);
  backdrop-filter: blur(10px);
  box-shadow:0 16px 34px rgba(11,18,32,.08);
  overflow:hidden;
  min-height: 320px;
}

/* Roll-up görseli için */
.heroRollup img{
  width:100%;
  height:100%;
  object-fit: cover;
  display:block;
}

@media(max-width:900px){
  .heroVisual{min-height:240px}
}

/* SERVICES */
.section{margin-top:26px}
.sectionHead{
  display:flex;
  justify-content:space-between;
  align-items:flex-end;
  gap:12px;
  flex-wrap:wrap;
}
.h2{margin:0;font-size:24px}
.lead{margin:6px 0 0;color:var(--muted);line-height:1.6}

.grid4{
  margin-top:16px;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
}
@media(max-width:1100px){.grid4{grid-template-columns:repeat(2,1fr)}}
@media(max-width:650px){.grid4{grid-template-columns:1fr}}

.serviceCard{
  background:#fff;
  border:1px solid var(--border);
  border-radius:18px;
  padding:18px;
  transition:.18s ease;
  box-shadow:0 16px 34px rgba(11,18,32,.05);
}
.serviceCard:hover{
  transform:translateY(-3px);
  box-shadow:0 22px 48px rgba(11,18,32,.10);
  border-color:rgba(13,91,255,.18);
}
.serviceK{font-size:12px;color:var(--muted);font-weight:900}
.serviceT{font-weight:1000;margin:8px 0 6px;font-size:17px}
.serviceD{font-size:14px;color:var(--muted);line-height:1.55;margin:0}
.serviceLink{
  display:inline-flex;
  margin-top:12px;
  color:var(--primary);
  font-weight:950;
}

/* FOOTER */
.footer{
  margin-top:26px;
  padding:18px 0;
  border-top:1px solid var(--border);
  display:flex;
  justify-content:space-between;
  gap:10px;
  flex-wrap:wrap;
  color:var(--muted);
  font-size:13px;
}
.footer a:hover{color:var(--text)}