:root{
  --bg:#0b1220;
  --panel:#0f1b33;
  --panel2: rgba(255,255,255,.04);
  --text:#eef2ff;
  --muted:#b6bfdc;
  --border: rgba(255,255,255,.10);
  --shadow: 0 12px 30px rgba(0,0,0,.35);
  --radius: 18px;

  /* Marka renkleri (isterseniz buradan değiştirin) */
  --primary:#0A2A66;
  --accent:#F4B400;
  --accent2:#2dd4bf;

  --max: 1060px;
  --font: ui-sans-serif, system-ui, -apple-system, Segoe UI, Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
}

*{box-sizing:border-box}
html,body{height:100%}
body{
  margin:0;
  font-family:var(--font);
  color:var(--text);
  background:
    radial-gradient(1000px 600px at 15% 0%, rgba(244,180,0,.18), transparent 60%),
    radial-gradient(900px 500px at 90% 25%, rgba(45,212,191,.14), transparent 60%),
    var(--bg);
}
a{color:inherit}
.container{max-width:var(--max); margin:0 auto; padding:18px}
.muted{color:var(--muted)}
.lead{color:var(--muted); font-size:16px; line-height:1.7}
.main{padding-top:18px; padding-bottom:40px}

.topbar{
  position:sticky; top:0; z-index:10;
  backdrop-filter: blur(10px);
  background: rgba(11,18,32,.65);
  border-bottom: 1px solid var(--border);
}
.topbar__inner{
  display:flex; align-items:center; gap:14px; justify-content:space-between;
}
.brand__name{font-weight:900; letter-spacing:-.02em}
.brand__tagline{color:var(--muted); font-size:12px; margin-top:4px}
.nav{display:flex; gap:10px; flex-wrap:wrap; align-items:center}
.nav__link{
  text-decoration:none;
  padding:10px 12px;
  border:1px solid var(--border);
  border-radius:999px;
  background: rgba(255,255,255,.03);
  transition: transform .15s ease, border-color .15s ease;
}
.nav__link:hover{transform: translateY(-1px); border-color: rgba(244,180,0,.55)}
.nav__link.is-active{border-color: rgba(244,180,0,.65); box-shadow: 0 0 0 3px rgba(244,180,0,.16)}

.btn{
  display:inline-flex; align-items:center; justify-content:center;
  gap:8px;
  border:none;
  border-radius:14px;
  padding:11px 14px;
  background: linear-gradient(90deg, var(--primary), #153a86);
  color:white; font-weight:800;
  cursor:pointer;
  text-decoration:none;
  transition: transform .15s ease, filter .15s ease;
}
.btn:hover{transform: translateY(-1px); filter: brightness(1.05)}
.btn--ghost{
  background: rgba(255,255,255,.03);
  border:1px solid var(--border);
}
.btn--ghost:hover{border-color: rgba(244,180,0,.55)}

.hero{
  border:1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,.05), rgba(255,255,255,.02));
  border-radius: var(--radius);
  padding: 24px;
  box-shadow: var(--shadow);
  display:grid;
  grid-template-columns: 1.2fr .8fr;
  gap: 18px;
}
.hero__cta{display:flex; gap:10px; flex-wrap:wrap; margin-top:14px}
.hero__stats{
  display:grid;
  grid-template-columns: 1fr;
  gap:10px;
  align-content:start;
}
.stat{
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  border-radius: 16px;
  padding: 14px;
}
.stat__num{font-size:28px; font-weight:900}
.stat__label{color:var(--muted); font-size:12px}

.section{margin-top:18px}
h1{margin:0 0 10px 0; font-size:34px; letter-spacing:-.03em}
h2{margin:0 0 12px 0; font-size:22px}
h3{margin:0 0 8px 0; font-size:16px}
.card{
  border:1px solid var(--border);
  background: rgba(15,27,51,.82);
  border-radius: var(--radius);
  padding: 16px;
}
.grid2{display:grid; grid-template-columns: 1fr 1fr; gap:12px}
.list{margin:0; padding-left:18px; color:var(--muted); line-height:1.8}

.filters{
  display:grid;
  grid-template-columns: 1fr 1fr 1fr auto auto;
  gap:10px;
  margin: 14px 0;
  align-items:center;
}
select, input, textarea{
  width:100%;
  padding: 12px 12px;
  border-radius: 14px;
  border:1px solid var(--border);
  background: rgba(255,255,255,.04);
  color: var(--text);
  outline:none;
}
select:focus, input:focus, textarea:focus{
  border-color: rgba(244,180,0,.60);
  box-shadow: 0 0 0 3px rgba(244,180,0,.16);
}

.jobs{display:grid; gap:12px; margin-top:12px}
.job{
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius);
  padding: 16px;
}
.job__head{display:flex; justify-content:space-between; gap:12px; align-items:flex-start; flex-wrap:wrap}
.job__actions{display:flex; gap:10px; flex-wrap:wrap; margin-top:10px}
.badges{display:flex; gap:8px; flex-wrap:wrap}
.badge{
  font-size:12px;
  color: var(--muted);
  border:1px solid var(--border);
  padding:6px 10px;
  border-radius:999px;
  background: rgba(255,255,255,.03);
}
.badge--accent{border-color: rgba(244,180,0,.55); color: #ffe7a3}

.form{max-width:720px; display:grid; gap:12px; margin-top:14px}
label{display:grid; gap:6px; color: var(--muted); font-size:14px}
.checkbox{display:flex; gap:10px; align-items:flex-start}
.checkbox input{width:auto; margin-top:3px}
.alert{padding:12px; border-radius:14px; border:1px solid var(--border); background: rgba(255,255,255,.03)}
.alert.ok{border-color: rgba(45,212,191,.5)}
.alert.err{border-color: rgba(255,107,107,.5)}

.testimonial{margin-top:10px}
.testimonial__track{
  display:flex; gap:12px;
  overflow:hidden;
  scroll-behavior:smooth;
}
.tcard{
  min-width: 100%;
  border:1px solid var(--border);
  background: rgba(255,255,255,.03);
  border-radius: var(--radius);
  padding: 16px;
  color: var(--muted);
}
.tcard span{display:block; margin-top:10px; color: #fff; font-weight:800}
.testimonial__dots{display:flex; gap:8px; margin-top:10px}
.dot{width:10px; height:10px; border-radius:999px; background: rgba(255,255,255,.25); border:1px solid var(--border); cursor:pointer}
.dot.is-active{background: rgba(244,180,0,.75)}

.footer{
  border-top:1px solid var(--border);
  color: var(--muted);
  padding: 18px 0;
  background: rgba(11,18,32,.55);
}
.footer__inner{display:flex; justify-content:space-between; gap:12px; flex-wrap:wrap}

.prose{color: var(--muted); line-height:1.8}

@media (max-width: 980px){
  .hero{grid-template-columns: 1fr}
  .filters{grid-template-columns: 1fr; }
}


/* ====== v2 additions: auth + admin polish ====== */
.auth{
  min-height: calc(100vh - 80px);
  display:flex;
  align-items:center;
  justify-content:center;
  padding: 26px 0;
}
.auth__card{
  width: min(520px, 100%);
  border:1px solid var(--border);
  background: linear-gradient(180deg, rgba(255,255,255,.06), rgba(255,255,255,.03));
  border-radius: 22px;
  padding: 20px;
  box-shadow: var(--shadow);
}
.auth__brand{margin-bottom:10px}
.auth__title{font-weight:950; font-size:22px; letter-spacing:-.02em}
.auth__subtitle{color:var(--muted); font-size:13px; margin-top:4px}

body.admin .card table th,
body.admin .card table td{font-size:13px}
body.admin .card table tr:hover{background: rgba(255,255,255,.02)}
.admin__who{display:flex; gap:10px; align-items:center; flex-wrap:wrap}

/* animate blocks */
[data-animate]{
  opacity:0;
  transform: translateY(10px);
  transition: opacity .5s ease, transform .5s ease;
}
[data-animate].in{
  opacity:1;
  transform: translateY(0);
}



/* ======================================================================
   MODERN CORPORATE UI (Light) – overrides (appended)
   ====================================================================== */

/* Optional: Inter-like font (safe fallback if blocked) */
@import url('https://fonts.googleapis.com/css2?family=Inter:wght@400;500;600;700&display=swap');

:root{
  --bg: #ffffff;
  --surface: #ffffff;
  --surface2: #f7f8fb;
  --text: #0f172a;
  --muted: #475569;
  --muted2:#64748b;
  --border: rgba(15,23,42,.10);
  --shadow: 0 12px 30px rgba(15,23,42,.10);
  --shadow2: 0 8px 18px rgba(15,23,42,.08);
  --primary: #7b0f16;
  --primary2: #5e0b10;
  --ring: rgba(11,95,255,.16);
  --radius: 18px;

  --font-sans: "Inter", ui-sans-serif, system-ui, -apple-system, "Segoe UI", Roboto, Arial, "Noto Sans", "Liberation Sans", sans-serif;
}

/* Global */
html,body{ background: var(--bg) !important; color: var(--text) !important; font-family: var(--font-sans) !important; }
*{ box-sizing: border-box; }
a{ color: var(--primary); text-decoration: none; }
a:hover{ color: var(--primary2); }

/* Background wrapper */
.bg{
  min-height: 100vh;
  background:
    radial-gradient(900px 520px at 10% 0%, rgba(255, 205, 0, .14), transparent 60%),
    radial-gradient(900px 520px at 90% 0%, rgba(11,95,255,.12), transparent 60%),
    linear-gradient(180deg, #ffffff 0%, #f7f8fb 55%, #ffffff 100%) !important;
}

/* Container max width */
.container, .wrap{
  max-width: 1100px;
  margin: 0 auto;
  padding: 0 18px;
}

/* Top bar */
.topbar{
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(255,255,255,.82) !important;
  border-bottom: 1px solid var(--border) !important;
  backdrop-filter: blur(10px);
}

.topbar__inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap: 14px;
  padding: 14px 0;
}

.brand{ display:flex; align-items:center; gap: 12px; }
.brand__title{
  font-size: 14px;
  letter-spacing: .02em;
  font-weight: 700;
  color: var(--text) !important;
  text-transform: uppercase;
}
.brand__subtitle{
  margin-top: 2px;
  font-size: 12px;
  color: var(--muted2) !important;
}

/* Logo (if any) */
.brand__logo{
  width: auto;
  height: 52px;
  max-height: 52px;
  border-radius: 12px;
  border: 1px solid var(--border);
  background: #fff;
  padding: 8px 10px;
  object-fit: contain;
  box-shadow: 0 6px 14px rgba(15,23,42,.06);
}
@media (max-width: 720px){
  .brand__logo{ height: 44px; max-height: 44px; padding: 6px 8px; }
}
/* Nav pills */
nav, .nav{ display:flex; gap: 8px; align-items:center; flex-wrap:wrap; justify-content:flex-end; }
.nav__link{
  font-size: 13px;
  font-weight: 600;
  color: var(--muted) !important;
  padding: 9px 12px;
  border-radius: 999px;
  border: 1px solid rgba(15,23,42,.08) !important;
  background: rgba(255,255,255,.72) !important;
  transition: all .18s ease;
}
.nav__link:hover{
  transform: translateY(-1px);
  box-shadow: var(--shadow2);
  color: var(--text) !important;
}
.nav__link.is-active{
  color: var(--text) !important;
  background: rgba(11,95,255,.10) !important;
  border-color: rgba(11,95,255,.26) !important;
}

/* Main sections spacing */
main, .main{ padding: 26px 0 44px; }

/* Hero card */
.hero, .hero-card, .card--hero, .home-hero{
  border-radius: 26px !important;
}
.card, .panel, .job-card, .tablewrap{
  background: var(--surface) !important;
  border: 1px solid var(--border) !important;
  border-radius: var(--radius) !important;
  box-shadow: var(--shadow) !important;
}
.card{
  padding: 22px !important;
}

/* Headings */
.h1{
  font-size: 36px !important;
  line-height: 1.08 !important;
  letter-spacing: -0.03em !important;
  margin: 0 0 10px !important;
  color: var(--text) !important;
}
.h2{ font-size: 22px !important; letter-spacing: -0.02em !important; color: var(--text) !important; }
.h3{ font-size: 16px !important; color: var(--text) !important; }
p, .p{ color: var(--muted) !important; line-height: 1.65 !important; }

/* Buttons */
.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap: 8px;
  padding: 10px 14px !important;
  border-radius: 12px !important;
  font-weight: 700 !important;
  font-size: 13px !important;
  background: var(--primary) !important;
  border: 1px solid rgba(11,95,255,.35) !important;
  color: #fff !important;
  transition: all .18s ease;
}
.btn:hover{ transform: translateY(-1px); box-shadow: var(--shadow2); filter: none !important; }
.btn--ghost{
  background: #fff !important;
  color: var(--text) !important;
  border: 1px solid var(--border) !important;
}
.btn--ghost:hover{ border-color: rgba(11,95,255,.25) !important; }

/* Stats pills */
.stats, .statgrid{
  display:grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
  margin-top: 12px;
}
.stat, .stat__item{
  border: 1px solid var(--border) !important;
  background: var(--surface2) !important;
  border-radius: 16px !important;
  padding: 14px !important;
}
.stat__num{
  font-size: 22px !important;
  font-weight: 800 !important;
  color: var(--text) !important;
}
.stat__label{
  font-size: 12px !important;
  color: var(--muted2) !important;
  margin-top: 4px !important;
}

/* Forms */
input,select,textarea{
  background:#fff !important;
  border:1px solid rgba(15,23,42,.12) !important;
  border-radius: 12px !important;
  padding: 10px 12px !important;
  color: var(--text) !important;
}
input:focus,select:focus,textarea:focus{
  outline:none !important;
  border-color: rgba(11,95,255,.45) !important;
  box-shadow: 0 0 0 4px var(--ring) !important;
}

/* Tables */
table{ border-collapse: separate !important; border-spacing: 0; width: 100%; }
th, td{ border-bottom: 1px solid rgba(15,23,42,.08) !important; padding: 10px 10px !important; }
th{ text-align:left; color: var(--muted2) !important; font-size: 12px !important; font-weight: 700 !important; }

/* Footer */
.footer{
  background: transparent !important;
  border-top: 1px solid var(--border) !important;
  color: var(--muted2) !important;
  padding: 18px 0 !important;
}
.footer a{ color: var(--muted2) !important; }
.footer a:hover{ color: var(--primary) !important; }

/* Make sure nothing is accidentally invisible */
[data-animate], .reveal{ opacity: 1 !important; transform: none !important; }

/* Brand typography tune */
.brand__title{ font-size: 13px !important; }



/* ======================================================================
   BİLEN brand polish – logo prominence + brand color accents
   ====================================================================== */

:root{
  --primary: #7b0f16 !important;
  --primary2: #5e0b10 !important;
  --brand-maroon: #7b0f16;
  --brand-gold: #f0c200;
  --link: #7b0f16;
}

a{ color: var(--brand-maroon) !important; }
a:hover{ color: var(--primary2) !important; }

.btn{ background: var(--brand-maroon) !important; border-color: rgba(123,15,22,.35) !important; }
.btn:hover{ box-shadow: 0 10px 24px rgba(123,15,22,.18) !important; }
.btn--ghost:hover{ border-color: rgba(123,15,22,.25) !important; }

.nav__link.is-active{
  background: rgba(123,15,22,.08) !important;
  border-color: rgba(123,15,22,.26) !important;
  box-shadow: 0 10px 22px rgba(123,15,22,.10) !important;
}
.nav__link:hover{ border-color: rgba(123,15,22,.18) !important; }

.h1, .h2, .h3{ color: #0b1220 !important; }
/* subtle brand accent on section titles underline */
.section-title::after{
  background: linear-gradient(90deg, var(--brand-maroon), var(--brand-gold)) !important;
}

/* --- Logo prominence --- */
.topbar__inner{ padding: 12px 0 !important; }
.brand{ gap: 14px !important; }
.brand__logo{
  width: 64px !important;
  height: 64px !important;
  padding: 0 !important;
  border-radius: 16px !important;
  border: 1px solid rgba(123,15,22,.14) !important;
  box-shadow: 0 10px 22px rgba(123,15,22,.12) !important;
}
.brand__title{
  font-size: 16px !important;
  font-weight: 800 !important;
  letter-spacing: .02em !important;
}
.brand__subtitle{
  font-size: 12px !important;
  color: rgba(15,23,42,.62) !important;
}
/* make brand block visually stronger */
.brand__stack{
  display:flex;
  flex-direction:column;
  line-height: 1.15;
}
.brand__title span.brand-accent{
  color: var(--brand-maroon) !important;
}

/* Mobile adjustments */
@media (max-width: 900px){
  .brand__logo{ width: 48px !important; height: 48px !important; border-radius: 14px !important; }
  .brand__title{ font-size: 14px !important; }
  .brand__subtitle{ display:none !important; }
}


/* bilen ss fix (fallback) */
.container{max-width:1180px;margin:0 auto;padding:0 18px;box-sizing:border-box;}
.topbar__inner{display:flex;align-items:center;justify-content:space-between;gap:18px;width:100%;}
/* driftfix fallback */
.topbar__inner{align-items:center;justify-content:space-between;}






