:root{
  --bg:#0b1220;
  --panel:#0f1a2e;
  --card:#0e1930;
  --muted:#9fb0d0;
  --text:#eaf0ff;
  --line:rgba(255,255,255,.08);
  --primary:#2e7bff;
  --accent:#27d7a6;
  --danger:#ff4d4d;
  --shadow: 0 18px 50px rgba(0,0,0,.45);
  --r:18px;
}

*{box-sizing:border-box}
html,body{margin:0;padding:0;font-family:ui-sans-serif,system-ui,-apple-system,Segoe UI,Roboto,Arial; background:var(--bg); color:var(--text)}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}
.wrap{width:min(1180px, 92vw); margin:0 auto}
.muted{opacity:.75}

/* ===== PREMIUM LOADER (KURUMSAL) ===== */
.loader{
  position:fixed; inset:0;
  display:grid; place-items:center;
  background:
    radial-gradient(900px 600px at 40% 30%, rgba(46,123,255,.18), transparent 60%),
    radial-gradient(900px 600px at 70% 60%, rgba(39,215,166,.10), transparent 60%),
    #060a12;
  z-index:9999;
  opacity:1; visibility:visible;
  transition: opacity .45s ease, visibility .45s ease;
}
.loader.is-hidden{opacity:0; visibility:hidden; pointer-events:none}

.loaderCard{
  width:min(520px, 92vw);
  padding:22px 20px 18px;
  border-radius:24px;
  background: rgba(15,26,46,.58);
  border:1px solid rgba(255,255,255,.12);
  backdrop-filter: blur(14px);
  box-shadow: 0 24px 70px rgba(0,0,0,.45);
  text-align:center;
  transform: translateY(0);
  animation: loaderFloat 2.8s ease-in-out infinite;
}
@keyframes loaderFloat{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-6px)}
}

.loaderLogo{
  height:64px;
  width:auto;
  object-fit:contain;
  margin:0 auto 10px;
  filter: drop-shadow(0 12px 18px rgba(0,0,0,.35));
}

.loaderTitle{
  font-weight:900;
  letter-spacing:.2px;
  font-size:18px;
}
.loaderSub{
  margin-top:6px;
  font-size:13px;
  color: rgba(234,240,255,.78);
}

.bar{
  height:10px;
  border-radius:999px;
  overflow:hidden;
  margin:16px 0 14px;
  background: rgba(255,255,255,.08);
  border:1px solid rgba(255,255,255,.10);
}
.barFill{
  display:block;
  height:100%;
  width:40%;
  border-radius:999px;
  background: linear-gradient(90deg, rgba(46,123,255,1), rgba(39,215,166,1));
  animation: loadingBar 1.25s ease-in-out infinite;
}
@keyframes loadingBar{
  0%{transform:translateX(-110%); width:35%}
  50%{width:55%}
  100%{transform:translateX(260%); width:35%}
}

.loaderMini{
  display:flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  font-size:12px;
  color: rgba(234,240,255,.75);
}
.loaderMini .dot{
  width:10px; height:10px;
  border-radius:999px;
  background: rgba(39,215,166,1);
  box-shadow: 0 0 0 6px rgba(39,215,166,.12);
  animation: dotBlink 1.2s ease-in-out infinite;
}
@keyframes dotBlink{
  0%,100%{transform:scale(.95); opacity:.7}
  50%{transform:scale(1.12); opacity:1}
}

/* Mobilde logo biraz daha büyük görünsün */
@media (max-width: 720px){
  .loaderLogo{height:74px}
}

/* Topbar */
.topbar{
  position:sticky; top:0; z-index:50;
  background: rgba(11,18,32,.72);
  backdrop-filter: blur(14px);
  border-bottom:1px solid var(--line);
}
.topbar__in{display:flex; align-items:center; justify-content:space-between; padding:14px 0; gap:14px}

.brand{display:flex; align-items:center; min-width:150px}
.brand__logo{
  height:75px; width:auto;
  object-fit:contain;
  transform: translateZ(0);
}

.topbar__nav{display:flex; gap:18px; align-items:center}
.topbar__nav a{
  color:rgba(234,240,255,.86);
  font-size:14px;
  padding:8px 10px;
  border-radius:12px;
  transition: background .2s ease, transform .2s ease;
}
.topbar__nav a:hover{background:rgba(255,255,255,.06); transform: translateY(-1px)}

.topbar__cta{display:flex; gap:10px; align-items:center}

/* Buttons */
.btn{
  display:inline-flex; align-items:center; justify-content:center;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  font-weight:700;
  letter-spacing:.1px;
  transition: transform .18s ease, box-shadow .18s ease, background .18s ease, border-color .18s ease;
  user-select:none;
  cursor:pointer;
}
.btn:active{transform: translateY(0)}
.btn--primary{
  background: linear-gradient(135deg, rgba(46,123,255,1), rgba(46,123,255,.72));
  box-shadow: 0 14px 30px rgba(46,123,255,.22);
}
.btn--accent{
  background: linear-gradient(135deg, rgba(39,215,166,1), rgba(39,215,166,.68));
  box-shadow: 0 14px 30px rgba(39,215,166,.20);
}
.btn--ghost{
  background: rgba(255,255,255,.06);
}
.btn:hover{
  transform: translateY(-1px);
  border-color: rgba(255,255,255,.22);
  box-shadow: 0 18px 44px rgba(0,0,0,.35);
}
.btn--wide{width:100%}
.btn--pulse{
  position:relative;
}
.btn--pulse::after{
  content:"";
  position:absolute; inset:-6px;
  border-radius:18px;
  border:1px solid rgba(46,123,255,.45);
  opacity:.0;
  animation: pulse 1.6s ease-out infinite;
}
@keyframes pulse{
  0%{transform:scale(.92); opacity:.0}
  25%{opacity:.45}
  100%{transform:scale(1.08); opacity:0}
}

/* Hero */
.hero{position:relative; min-height:92vh; display:grid; align-items:center; overflow:hidden}
.hero__bg{
  position:absolute; inset:0;
  background-size:cover;
  background-position:center;
  transform: scale(1.03);
  filter: saturate(1.05) contrast(1.05);
  transition: opacity .9s ease, transform 5.5s ease;
  opacity:1;
}
.hero__bg.is-zoom{transform: scale(1.08)}
.hero__overlay{
  position:absolute; inset:0;
  background:
    radial-gradient(900px 650px at 35% 30%, rgba(46,123,255,.20), transparent 58%),
    radial-gradient(900px 650px at 75% 45%, rgba(39,215,166,.14), transparent 60%),
    linear-gradient(180deg, rgba(11,18,32,.50), rgba(11,18,32,.88));
}

.hero__in{
  position:relative; z-index:1;
  display:grid; grid-template-columns: 1.15fr .85fr;
  gap:26px;
  padding:36px 0 54px;
}
.badge{
  display:inline-flex; align-items:center; gap:10px;
  padding:10px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  color:rgba(234,240,255,.88);
  width:fit-content;
}
.dot{
  width:10px;height:10px;border-radius:999px;
  background: var(--accent);
  box-shadow: 0 0 0 6px rgba(39,215,166,.12);
  animation: blink 1.4s ease-in-out infinite;
}
@keyframes blink{
  0%,100%{transform:scale(.95); opacity:.75}
  50%{transform:scale(1.12); opacity:1}
}

.hero__title{font-size: clamp(34px, 4vw, 52px); line-height:1.05; margin:14px 0 10px}
.grad{
  background: linear-gradient(90deg, rgba(46,123,255,1), rgba(39,215,166,1));
  -webkit-background-clip:text; background-clip:text; color:transparent;
}
.hero__desc{color:rgba(234,240,255,.86); font-size:16px; line-height:1.6; max-width:62ch; margin:0 0 18px}
.hero__cta{display:flex; gap:12px; flex-wrap:wrap; margin:10px 0 18px}

.hero__meta{
  display:grid; grid-template-columns:repeat(3, minmax(0,1fr));
  gap:10px;
  margin-top:10px;
}
.metaCard{
  padding:12px;
  border-radius:16px;
  background: rgba(15,26,46,.55);
  border:1px solid rgba(255,255,255,.10);
  backdrop-filter: blur(10px);
}
.metaCard strong{display:block; font-size:13px; color:rgba(234,240,255,.92)}
.metaCard span{display:block; font-size:12px; color:var(--muted); margin-top:3px}
.metaCard a{text-decoration:underline; text-underline-offset:3px}

.hero__panel .panel{
  background: rgba(15,26,46,.62);
  border:1px solid rgba(255,255,255,.12);
  border-radius: 22px;
  padding:18px;
  box-shadow: var(--shadow);
  backdrop-filter: blur(12px);
  transform: translateY(0);
  animation: floaty 5.2s ease-in-out infinite;
}
@keyframes floaty{
  0%,100%{transform:translateY(0)}
  50%{transform:translateY(-6px)}
}
.panel h2{margin:0 0 6px; font-size:18px}
.panel p{margin:0 0 14px; color:rgba(234,240,255,.82); font-size:13px; line-height:1.55}
.field{display:flex; flex-direction:column; gap:7px; margin-bottom:12px}
label{font-size:12px; color:rgba(234,240,255,.86)}
select,input{
  padding:12px 12px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(11,18,32,.50);
  color:var(--text);
  outline:none;
}
select:focus,input:focus{border-color: rgba(46,123,255,.55); box-shadow: 0 0 0 6px rgba(46,123,255,.12)}
.hint{margin-top:10px; color:var(--muted); font-size:12px; line-height:1.5}
.mini{display:flex; gap:10px; align-items:center; margin-top:14px; color:rgba(234,240,255,.82); font-size:12px}
.mini__link{text-decoration:underline; text-underline-offset:3px}
.mini__sep{opacity:.55}

/* Scroll cue */
.scrollCue{
  position:absolute; left:50%; bottom:14px; transform:translateX(-50%);
  width:28px; height:42px;
  border-radius:999px;
  border:1px solid rgba(255,255,255,.18);
  background: rgba(255,255,255,.05);
  display:grid; place-items:center;
}
.scrollCue span{
  width:6px; height:6px; border-radius:999px;
  background: rgba(255,255,255,.62);
  animation: drop 1.35s ease-in-out infinite;
}
@keyframes drop{
  0%{transform: translateY(-10px); opacity:.35}
  50%{opacity:1}
  100%{transform: translateY(10px); opacity:.35}
}

/* Sections */
.sec{padding:70px 0}
.sec--alt{
  background: radial-gradient(900px 500px at 30% 30%, rgba(46,123,255,.10), transparent 60%),
              radial-gradient(900px 500px at 70% 60%, rgba(39,215,166,.08), transparent 60%);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.secHead{display:flex; flex-direction:column; gap:8px; margin-bottom:22px}
.secHead h2{margin:0; font-size:28px}
.secHead p{margin:0; color:rgba(234,240,255,.80); line-height:1.6}

/* Cards */
.grid3{display:grid; grid-template-columns:repeat(3, minmax(0,1fr)); gap:14px}
.card{
  background: rgba(14,25,48,.70);
  border:1px solid rgba(255,255,255,.10);
  border-radius: 22px;
  overflow:hidden;
  box-shadow: 0 18px 46px rgba(0,0,0,.28);
  transform: translateY(0);
  transition: transform .2s ease, border-color .2s ease;
}
.card:hover{transform: translateY(-4px); border-color: rgba(255,255,255,.16)}
.card img{width:100%; height:180px; object-fit:cover}
.card__in{padding:14px}
.card__in h3{margin:0 0 6px}
.card__in p{margin:0; color:rgba(234,240,255,.78); line-height:1.6; font-size:13px}

/* Chips */
.chips{display:flex; flex-wrap:wrap; gap:10px}
.chips span{
  padding:10px 12px;
  border-radius:999px;
  background: rgba(255,255,255,.06);
  border:1px solid rgba(255,255,255,.10);
  color:rgba(234,240,255,.86);
  font-size:13px;
}

/* Callout */
.callout{
  margin-top:18px;
  padding:16px;
  border-radius:22px;
  background: rgba(15,26,46,.55);
  border:1px solid rgba(255,255,255,.10);
  display:flex; align-items:center; justify-content:space-between; gap:14px;
}
.callout strong{display:block}
.callout span{display:block; color:rgba(234,240,255,.80); margin-top:4px}
.callout__cta{display:flex; gap:10px; flex-wrap:wrap}

/* Features */
.grid2{display:grid; grid-template-columns:repeat(2, minmax(0,1fr)); gap:14px}
.feature{
  padding:16px;
  border-radius:22px;
  background: rgba(14,25,48,.62);
  border:1px solid rgba(255,255,255,.10);
}
.feature h3{margin:0 0 6px}
.feature p{margin:0; color:rgba(234,240,255,.78); line-height:1.6}

/* Footer */
.footer{
  border-top:1px solid var(--line);
  background: radial-gradient(1200px 600px at 40% 0%, rgba(46,123,255,.12), transparent 60%),
              #060a12;
}
.footer__top{
  padding:46px 0 24px;
  display:grid;
  grid-template-columns: 1.05fr .95fr;
  gap:16px;
}
.footer__logo{height:48px; width:auto; object-fit:contain}
.footer__brand p{color:rgba(234,240,255,.78); line-height:1.65; margin:10px 0 14px}
.footer__actions{display:flex; gap:10px; flex-wrap:wrap}

.footer__cols{
  display:grid;
  grid-template-columns: repeat(3, minmax(0,1fr));
  gap:12px;
}
.col{
  padding:14px;
  border-radius:22px;
  background: rgba(255,255,255,.04);
  border:1px solid rgba(255,255,255,.08);
}
.col h4{margin:0 0 10px; font-size:14px}
.col a,.col span{
  display:block;
  color:rgba(234,240,255,.80);
  font-size:13px;
  padding:6px 0;
}
.col a:hover{text-decoration:underline; text-underline-offset:3px}

.mapWrap{
  height:340px;
  border-top:1px solid rgba(255,255,255,.08);
  border-bottom:1px solid rgba(255,255,255,.08);
}
.mapWrap iframe{width:100%; height:100%; border:0; filter: saturate(1.05) contrast(1.02)}

.footer__bottom{
  padding:14px 0 22px;
  display:flex; justify-content:space-between; gap:10px; flex-wrap:wrap;
  color:rgba(234,240,255,.72);
}

/* Floating CTAs */
.floatCtas{
  position:fixed; right:16px; bottom:16px; z-index:60;
  display:flex; flex-direction:column; gap:10px;
}
.floatCtas a{
  padding:12px 14px;
  border-radius: 16px;
  border:1px solid rgba(255,255,255,.12);
  background: rgba(15,26,46,.72);
  backdrop-filter: blur(12px);
  box-shadow: 0 18px 46px rgba(0,0,0,.35);
  font-weight:800;
  letter-spacing:.1px;
  transition: transform .18s ease, border-color .18s ease;
}
.floatCtas a:hover{transform: translateY(-2px); border-color: rgba(255,255,255,.20)}
.floatCtas__wa{
  background: linear-gradient(135deg, rgba(39,215,166,.95), rgba(15,26,46,.72)) !important;
}
.floatCtas__call{
  background: linear-gradient(135deg, rgba(46,123,255,.95), rgba(15,26,46,.72)) !important;
}

/* Reveal animation */
.reveal{opacity:0; transform: translateY(14px); transition: opacity .6s ease, transform .6s ease}
.reveal.is-in{opacity:1; transform: translateY(0)}

/* Responsive (mobil üst: logo büyük, yanında WhatsApp + Ara) */
@media (max-width: 980px){
  .hero__in{grid-template-columns:1fr; padding:26px 0 44px}
  .hero__meta{grid-template-columns:1fr; gap:10px}
  .topbar__nav{display:none}

  /* SADECE MOBİLDE BÜYÜK LOGO */
  .brand__logo{
    height:82px;
  }

  /* Butonlar alta düşmesin diye header hizalama */
  .topbar__in{
    align-items:center;
    gap:8px;
  }

  .topbar__cta .btn{
    padding:10px 12px;
    font-size:13px;
  }
}
@media (max-width: 720px){
  .grid3{grid-template-columns:1fr}
  .grid2{grid-template-columns:1fr}
  .footer__top{grid-template-columns:1fr}
  .footer__cols{grid-template-columns:1fr}
  .topbar__cta .btn{padding:11px 12px; border-radius:14px}
  .brand{min-width:auto}
  .floatCtas{right:12px; bottom:12px}
}