*{box-sizing:border-box}
html{scroll-behavior:smooth}
body{
  margin:0;
  font-family:-apple-system,BlinkMacSystemFont,"SF Pro Display","Segoe UI",Arial,sans-serif;
  background:#f5f5f7;
  color:#1d1d1f;
}
a{color:inherit;text-decoration:none}
img{max-width:100%;display:block}

.nav{
  position:sticky;
  top:0;
  z-index:999;
  display:flex;
  justify-content:space-between;
  align-items:center;
  padding:14px 7%;
  background:rgba(255,255,255,.78);
  backdrop-filter:blur(22px);
  border-bottom:1px solid rgba(0,0,0,.08);
}
.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:700;
  color:#1d1d1f;
}
.brand img{
  width:34px;
  height:34px;
  object-fit:contain;
}
.brand span{font-size:18px}
.nav nav{
  display:flex;
  gap:28px;
  font-size:14px;
  color:#3a3a3c;
}
.nav nav a:hover{color:#0071e3}

.btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:0;
  border-radius:999px;
  padding:13px 24px;
  background:#0071e3;
  color:#fff;
  font-weight:700;
  cursor:pointer;
  box-shadow:none;
  transition:.25s ease;
}
.btn:hover{
  background:#0077ed;
  transform:translateY(-1px);
}
.btn.small{padding:9px 17px;font-size:14px}
.btn.ghost{
  background:transparent;
  color:#0071e3;
  border:1px solid rgba(0,113,227,.35);
}
.btn.ghost:hover{
  background:#eaf4ff;
}

.hero{
  min-height:88vh;
  display:grid;
  grid-template-columns:1fr;
  gap:36px;
  align-items:center;
  text-align:center;
  padding:90px 7% 70px;
  background:linear-gradient(180deg,#fff 0%,#f5f5f7 100%);
}
.eyebrow,.section span,.about span,.contact span{
  color:#6e6e73;
  font-weight:700;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:12px;
}
.hero h1{
  max-width:980px;
  margin:16px auto;
  font-size:clamp(48px,8vw,96px);
  line-height:.96;
  letter-spacing:-.055em;
  color:#1d1d1f;
}
.hero p{
  max-width:760px;
  margin:0 auto;
  font-size:clamp(19px,2vw,26px);
  line-height:1.45;
  color:#6e6e73;
}
.actions{
  display:flex;
  justify-content:center;
  gap:14px;
  flex-wrap:wrap;
  margin-top:30px;
}

.heroCard{
  position:relative;
  max-width:1040px;
  width:100%;
  min-height:520px;
  margin:20px auto 0;
  border-radius:42px;
  background:linear-gradient(145deg,#111 0%,#2b2b2f 100%);
  overflow:hidden;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 30px 90px rgba(0,0,0,.18);
}
.heroCard img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.avatar{
  font-size:110px;
  font-weight:800;
  letter-spacing:-8px;
  color:#fff;
}
.float{
  position:absolute;
  left:28px;
  bottom:28px;
  padding:14px 20px;
  background:rgba(255,255,255,.82);
  color:#1d1d1f;
  border-radius:999px;
  backdrop-filter:blur(18px);
  font-weight:700;
}

.section{
  padding:95px 7%;
}
.sectionHead{
  text-align:center;
  max-width:850px;
  margin:0 auto 38px;
}
.section h2{
  font-size:clamp(38px,5vw,68px);
  margin:10px 0 0;
  line-height:1;
  letter-spacing:-.045em;
  color:#1d1d1f;
}

.cards{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:22px;
}
.card{
  min-height:250px;
  padding:32px;
  border-radius:32px;
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  box-shadow:0 10px 35px rgba(0,0,0,.05);
}
.card b{
  font-size:42px;
  color:#0071e3;
}
.card h3{
  font-size:23px;
  letter-spacing:-.02em;
}
.card p,.portfolio p,.about p,.contact p{
  color:#6e6e73;
  line-height:1.65;
}

.about{
  display:grid;
  grid-template-columns:1.2fr .8fr;
  gap:34px;
  padding:50px;
  border-radius:40px;
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  box-shadow:0 14px 45px rgba(0,0,0,.05);
}
.about h2{
  font-size:clamp(36px,4vw,58px);
  letter-spacing:-.04em;
}
.stats{
  display:grid;
  gap:16px;
}
.stats div{
  padding:28px;
  border-radius:28px;
  background:#f5f5f7;
}
.stats strong{
  font-size:42px;
  display:block;
  color:#1d1d1f;
}
.stats small{color:#6e6e73}

.portfolio{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}
.portfolio article{
  overflow:hidden;
  border-radius:36px;
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  box-shadow:0 14px 45px rgba(0,0,0,.06);
  transition:.25s ease;
}
.portfolio article:hover{
  transform:translateY(-5px);
  box-shadow:0 24px 70px rgba(0,0,0,.1);
}
.thumb{
  height:300px;
  background:linear-gradient(145deg,#1d1d1f,#3a3a3c);
  display:flex;
  align-items:center;
  justify-content:center;
}
.thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.thumb span{
  color:#fff;
  font-size:36px;
  font-weight:800;
}
.workInfo{
  padding:25px;
}
.workInfo h3{
  font-size:24px;
  letter-spacing:-.03em;
}
.workInfo small{
  color:#0071e3;
  font-weight:700;
}

.contact{
  display:grid;
  grid-template-columns:.9fr 1.1fr;
  gap:34px;
  padding:50px;
  border-radius:40px;
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  box-shadow:0 14px 45px rgba(0,0,0,.05);
}
.form{
  padding:28px;
  display:grid;
  gap:14px;
  border-radius:30px;
  background:#f5f5f7;
}
.form input,.form textarea{
  width:100%;
  border:1px solid rgba(0,0,0,.1);
  background:#fff;
  color:#1d1d1f;
  border-radius:18px;
  padding:15px;
  font:inherit;
}
.form input::placeholder,.form textarea::placeholder{color:#86868b}

.socials{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}
.socials a{
  padding:10px 16px;
  border-radius:999px;
  background:#f5f5f7;
  color:#0071e3;
  font-weight:700;
}

.ok{color:#16a34a!important}
footer{
  padding:36px 7%;
  color:#6e6e73;
  text-align:center;
  border-top:1px solid rgba(0,0,0,.08);
}

/* ADMIN PANEL */
.adminBody{
  background:#f5f5f7;
  color:#1d1d1f;
}
.login{
  max-width:420px;
  margin:10vh auto;
  padding:34px;
  border-radius:30px;
  background:#fff;
  box-shadow:0 20px 70px rgba(0,0,0,.08);
}
.adminWrap{
  display:grid;
  grid-template-columns:260px 1fr;
  min-height:100vh;
}
.sidebar{
  background:#fff;
  border-right:1px solid rgba(0,0,0,.08);
  padding:24px;
  position:sticky;
  top:0;
  height:100vh;
}
.sidebar h2{
  color:#1d1d1f;
}
.sidebar a{
  display:block;
  padding:12px 14px;
  border-radius:14px;
  color:#3a3a3c;
}
.sidebar a:hover{
  background:#f5f5f7;
  color:#0071e3;
}
.panel{padding:32px}
.box{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:28px;
  padding:24px;
  margin-bottom:24px;
  box-shadow:0 10px 35px rgba(0,0,0,.04);
}
.grid2{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:16px;
}
.row{
  display:grid;
  gap:10px;
  margin-bottom:12px;
}
.repeat{
  border:1px solid rgba(0,0,0,.08);
  border-radius:22px;
  padding:16px;
  margin:14px 0;
  background:#fafafa;
}
.admin input,.admin textarea,.admin select,.login input{
  width:100%;
  border:1px solid rgba(0,0,0,.12);
  background:#fff;
  color:#1d1d1f;
  border-radius:16px;
  padding:14px;
  font:inherit;
}
.danger{
  background:#ef4444!important;
  color:#fff!important;
}
.muted{color:#86868b}
.table{
  width:100%;
  border-collapse:collapse;
}
.table td,.table th{
  padding:12px;
  border-bottom:1px solid rgba(0,0,0,.08);
  text-align:left;
}

@media(max-width:900px){
  .hero,.about,.contact,.adminWrap{grid-template-columns:1fr}
  .cards,.portfolio{grid-template-columns:1fr}
  .nav nav{display:none}
  .heroCard{min-height:360px;border-radius:30px}
  .sidebar{position:relative;height:auto}
  .sectionHead{text-align:left}
  .grid2{grid-template-columns:1fr}
}
.portfolio{
  display:flex;
  gap:28px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  padding:20px 7% 50px;
  margin-left:-7%;
  margin-right:-7%;
}
.portfolio article{
  min-width:82vw;
  height:72vh;
  scroll-snap-align:center;
  border-radius:42px;
}
.thumb{
  height:58vh;
}
.workInfo{
  text-align:center;
}
.portfolio::-webkit-scrollbar{
  display:none;
}
.socials{
    display:flex;
    flex-wrap:wrap;
    gap:15px;
    margin-top:25px;
}

.socials a{
    display:flex;
    align-items:center;
    justify-content:center;
    min-width:180px;
    height:58px;
    background:#fff;
    border:1px solid rgba(0,0,0,.08);
    border-radius:18px;
    color:#1d1d1f;
    font-weight:600;
    transition:.25s;
    box-shadow:0 8px 30px rgba(0,0,0,.05);
}

.socials a:hover{
    transform:translateY(-4px);
    box-shadow:0 15px 40px rgba(0,0,0,.12);
    color:#0071e3;
}
.portfolio{
  display:flex;
  gap:28px;
  overflow-x:auto;
  scroll-snap-type:x mandatory;
  padding:20px 7% 50px;
  margin-left:-7%;
  margin-right:-7%;
}

.portfolio article{
  min-width:82vw;
  max-width:82vw;
  height:auto;
  scroll-snap-align:center;
  border-radius:42px;
  overflow:hidden;
  background:#fff;
}

.portfolio article .thumb{
  height:62vh;
  background:linear-gradient(145deg,#1d1d1f,#3a3a3c);
}

.portfolio article .thumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.workInfo{
  text-align:center;
  padding:28px;
}

.projectCard{
  display:block;
  min-width:82vw;
  max-width:82vw;
  scroll-snap-align:center;
  color:inherit;
}
.portfolio{
  display:flex!important;
  flex-direction:row!important;
  gap:28px!important;
  overflow-x:auto!important;
  overflow-y:hidden!important;
  scroll-snap-type:x mandatory!important;
  padding:20px 7% 50px!important;
  margin-left:-7%!important;
  margin-right:-7%!important;
}

.projectCard{
  flex:0 0 82vw!important;
  max-width:82vw!important;
  scroll-snap-align:center!important;
  display:block!important;
  color:inherit!important;
}

.projectCard article{
  width:100%!important;
  height:auto!important;
  border-radius:42px!important;
  overflow:hidden!important;
  background:#fff!important;
}

.projectCard .thumb{
  height:62vh!important;
  min-height:420px!important;
}

.projectCard .thumb img{
  width:100%!important;
  height:100%!important;
  object-fit:cover!important;
}

.projectCard .workInfo{
  text-align:center!important;
  padding:28px!important;
}
@media (max-width:768px){

.projectCard{
    display:flex !important;
    flex-direction:column !important;
    width:100% !important;
}

.projectImage{
    width:100% !important;
    height:auto !important;
}

.projectContent{
    width:100% !important;
    padding:25px !important;
}

.projectContent h2{
    font-size:32px !important;
    line-height:1.2 !important;
}

.projectContent p{
    font-size:16px !important;
    line-height:1.7 !important;
}

}
@media(max-width:768px){
  #portfolio{
    padding-left:20px!important;
    padding-right:20px!important;
    overflow:hidden!important;
  }

  #portfolio .sectionHead{
    text-align:left!important;
    margin-bottom:24px!important;
  }

  #portfolio .sectionHead h2{
    font-size:42px!important;
    line-height:1!important;
  }

  .portfolio{
    display:block!important;
    overflow:visible!important;
    padding:0!important;
    margin:0!important;
  }

  .projectCard{
    display:block!important;
    width:100%!important;
    max-width:100%!important;
    min-width:0!important;
    margin-bottom:28px!important;
  }

  .projectCard article{
    display:block!important;
    width:100%!important;
    border-radius:28px!important;
    overflow:hidden!important;
    background:#fff!important;
  }

  .projectCard .thumb{
    width:100%!important;
    height:330px!important;
    min-height:0!important;
  }

  .projectCard .thumb img{
    width:100%!important;
    height:100%!important;
    object-fit:cover!important;
  }

  .projectCard .thumb span{
    font-size:34px!important;
    line-height:1!important;
  }

  .projectCard .workInfo{
    width:100%!important;
    text-align:left!important;
    padding:24px!important;
  }

  .projectCard .workInfo h3{
    font-size:28px!important;
    line-height:1.1!important;
    margin:10px 0!important;
  }

  .projectCard .workInfo p{
    font-size:16px!important;
    line-height:1.55!important;
    text-align:left!important;
  }
}

/* ===== PRO ADMIN PANEL v1 ===== */
.proLogin{
  min-height:100vh;
  display:grid;
  place-items:center;
  background:
    radial-gradient(circle at 10% 10%,rgba(0,113,227,.14),transparent 30%),
    radial-gradient(circle at 90% 20%,rgba(17,17,17,.08),transparent 34%),
    #f5f5f7;
}
.loginBadge{
  width:62px;height:62px;border-radius:18px;
  display:grid;place-items:center;
  color:#fff;background:#0071e3;font-weight:900;margin-bottom:18px;
}
.proAdmin{
  --adminBlue:#0071e3;
  --adminInk:#111827;
  --adminMuted:#6b7280;
  --adminLine:rgba(17,24,39,.08);
  background:#f5f5f7;
}
.adminShell{
  display:grid;
  grid-template-columns:290px minmax(0,1fr);
  min-height:100vh;
}
.proSidebar{
  background:rgba(255,255,255,.82);
  backdrop-filter:blur(24px);
  border-right:1px solid var(--adminLine);
  padding:22px;
  position:sticky;
  top:0;
  height:100vh;
  overflow:auto;
}
.adminBrand{
  display:flex;align-items:center;gap:12px;
  padding:12px 10px 26px;
  border-bottom:1px solid var(--adminLine);
  margin-bottom:14px;
}
.adminLogo{
  width:44px;height:44px;border-radius:14px;
  display:grid;place-items:center;
  background:#111827;color:#fff;font-weight:900;
}
.adminBrand h2{font-size:18px;margin:0;color:#111827}
.adminBrand small{color:#6b7280}
.proSidebar a{
  display:flex!important;
  align-items:center;
  gap:10px;
  padding:13px 14px!important;
  border-radius:16px!important;
  color:#374151!important;
  font-weight:650;
}
.proSidebar a:hover{
  background:#eef6ff!important;
  color:#0071e3!important;
}
.sideActions{
  margin-top:20px;
  padding-top:20px;
  border-top:1px solid var(--adminLine);
}
.proPanel{
  padding:34px;
  max-width:1500px;
  width:100%;
}
.topBar{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  margin-bottom:24px;
}
.eyebrowAdmin{
  margin:0 0 6px;
  color:#0071e3;
  text-transform:uppercase;
  letter-spacing:.12em;
  font-size:12px;
  font-weight:800;
}
.topBar h1{
  margin:0;
  font-size:42px;
  letter-spacing:-.045em;
}
.topActions{display:flex;gap:10px}
.notice{
  background:#ecfdf5;
  border:1px solid #bbf7d0;
  padding:14px 18px;
  border-radius:18px;
}
.dashboardGrid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:16px;
  margin-bottom:24px;
}
.dashCard{
  background:#fff;
  border:1px solid var(--adminLine);
  border-radius:26px;
  padding:22px;
  box-shadow:0 16px 40px rgba(17,24,39,.05);
}
.dashCard span{
  color:#6b7280;
  font-size:13px;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
}
.dashCard strong{
  display:block;
  font-size:44px;
  letter-spacing:-.05em;
  margin:8px 0 2px;
}
.dashCard small{color:#6b7280}
.proBox{
  border-radius:30px!important;
  padding:26px!important;
  box-shadow:0 18px 50px rgba(17,24,39,.06)!important;
}
.boxHead{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  gap:18px;
  margin-bottom:18px;
}
.boxHead span{
  color:#0071e3;
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.1em;
  font-size:12px;
}
.boxHead h2{
  margin:6px 0 0;
  font-size:28px;
  letter-spacing:-.035em;
}
.proAdmin label{
  font-weight:750;
  color:#374151;
  font-size:13px;
}
.proAdmin input,
.proAdmin textarea,
.proAdmin select{
  border-radius:18px!important;
  border:1px solid rgba(17,24,39,.10)!important;
  background:#fbfbfd!important;
  transition:.2s ease;
}
.proAdmin input:focus,
.proAdmin textarea:focus{
  outline:none;
  border-color:#0071e3!important;
  box-shadow:0 0 0 4px rgba(0,113,227,.12);
}
.compactRow{margin-bottom:12px}
.proRepeat{
  background:#fbfbfd!important;
  border-radius:22px!important;
}
.miniPreview{
  width:80px;
  height:80px;
  object-fit:contain;
  background:#f3f4f6;
  border-radius:16px;
  padding:10px;
  margin-top:10px;
}
.widePreview{
  max-width:360px;
  border-radius:20px;
  margin-top:12px;
  box-shadow:0 12px 35px rgba(17,24,39,.10);
}
.portfolioAdminCard{
  background:#fbfbfd;
  border:1px solid rgba(17,24,39,.08);
  border-radius:28px;
  padding:20px;
  margin:18px 0;
}
.portfolioAdminTop{
  display:grid;
  grid-template-columns:52px 1fr;
  gap:14px;
  align-items:center;
  margin-bottom:14px;
}
.projectIndex{
  width:52px;height:52px;border-radius:18px;
  display:grid;place-items:center;
  background:#111827;color:#fff;font-weight:900;
}
.mediaManager{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:18px;
  margin-top:14px;
}
.coverManager,.galleryManager{
  background:#fff;
  border:1px solid rgba(17,24,39,.07);
  border-radius:24px;
  padding:16px;
}
.coverPreview img{
  width:100%;
  max-height:260px;
  object-fit:cover;
  border-radius:18px;
  margin-top:12px;
}
.coverPreview label,
.galleryItemAdmin label{
  display:flex;
  align-items:center;
  gap:8px;
  margin-top:10px;
  color:#ef4444;
}
.coverPreview input,
.galleryItemAdmin input{width:auto!important}
.galleryGridAdmin{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(120px,1fr));
  gap:12px;
  margin-top:14px;
}
.galleryItemAdmin{
  background:#f5f5f7;
  border-radius:18px;
  padding:8px;
}
.galleryItemAdmin img{
  width:100%;
  height:105px;
  object-fit:cover;
  border-radius:14px;
}
.saveDock{
  position:sticky;
  bottom:16px;
  z-index:9999;
  background:rgba(255,255,255,.88);
  backdrop-filter:blur(18px);
  padding:14px;
  border-radius:24px;
  border:1px solid rgba(17,24,39,.08);
  box-shadow:0 18px 60px rgba(17,24,39,.16);
  margin:26px 0;
}
.saveDock .btn{
  width:100%;
  padding:17px;
  font-size:17px;
}
.tableWrap{overflow:auto}
@media(max-width:1000px){
  .adminShell{grid-template-columns:1fr}
  .proSidebar{position:relative;height:auto}
  .dashboardGrid{grid-template-columns:repeat(2,1fr)}
  .mediaManager{grid-template-columns:1fr}
}
@media(max-width:700px){
  .proPanel{padding:18px}
  .topBar{display:block}
  .topBar h1{font-size:34px}
  .dashboardGrid{grid-template-columns:1fr}
  .portfolioAdminTop{grid-template-columns:1fr}
}

/* ADMIN PLUS PANEL */
.loginPro{
  position:relative;
}
.loginMark{
  width:64px;
  height:64px;
  border-radius:18px;
  background:#0071e3;
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-weight:900;
  letter-spacing:-.04em;
  margin-bottom:25px;
}
.adminPlusWrap{
  grid-template-columns:290px 1fr;
}
.adminSidebar{
  background:rgba(255,255,255,.86);
  backdrop-filter:blur(22px);
  box-shadow:12px 0 35px rgba(0,0,0,.04);
}
.adminLogoBox{
  display:flex;
  align-items:center;
  gap:12px;
  margin-bottom:24px;
}
.adminLogo{
  width:48px;
  height:48px;
  border-radius:16px;
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  background:#0071e3;
  font-weight:900;
}
.adminLogoBox h2{
  margin:0;
  font-size:18px;
}
.adminLogoBox p{
  margin:4px 0 0;
  color:#86868b;
  font-size:13px;
}
.badge{
  float:right;
  background:#0071e3;
  color:#fff;
  border-radius:999px;
  min-width:24px;
  height:24px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  font-size:12px;
}
.adminPanel{
  max-width:1500px;
}
.adminTopbar{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:20px;
  margin-bottom:25px;
}
.adminTopbar h1{
  margin:0;
  font-size:42px;
  letter-spacing:-.04em;
}
.adminTopbar p{
  margin:7px 0 0;
  color:#86868b;
}
.themeToggle{
  border:0;
  border-radius:999px;
  padding:12px 18px;
  background:#fff;
  box-shadow:0 10px 35px rgba(0,0,0,.06);
  cursor:pointer;
  font-weight:700;
}
.adminNotice{
  padding:15px 18px;
  border-radius:18px;
  margin-bottom:20px;
  background:#ecfdf5;
}
.dashboardGrid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  margin-bottom:24px;
}
.dashCard{
  background:#fff;
  border-radius:26px;
  padding:25px;
  box-shadow:0 12px 35px rgba(0,0,0,.05);
  border:1px solid rgba(0,0,0,.06);
}
.dashCard span{
  color:#86868b;
  font-weight:700;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.06em;
}
.dashCard strong{
  display:block;
  font-size:46px;
  letter-spacing:-.05em;
  margin-top:10px;
}
.dashCard p{
  margin:5px 0 0;
  color:#86868b;
}
.proBox{
  border-radius:30px;
  overflow:hidden;
}
.proBox h2{
  font-size:28px;
  letter-spacing:-.03em;
}
.proRepeat{
  position:relative;
  background:#fbfbfd;
  border-radius:24px;
}
.dragHandle{
  display:inline-flex;
  padding:8px 12px;
  border-radius:999px;
  background:#eef5ff;
  color:#0071e3;
  font-weight:800;
  margin-bottom:12px;
  cursor:grab;
}
.portfolioAdminItem.dragging{
  opacity:.4;
  transform:scale(.98);
}
.dropArea{
  min-height:62px;
  border:1.5px dashed rgba(0,113,227,.35);
  background:#f6faff;
  border-radius:18px;
  display:flex;
  align-items:center;
  justify-content:center;
  text-align:center;
  color:#0071e3;
  font-weight:800;
  padding:16px;
  cursor:pointer;
  transition:.2s;
}
.dropArea input{
  display:none!important;
}
.dropArea.dragActive,
.dropArea.fileReady{
  border-color:#0071e3;
  background:#eaf4ff;
}
.previewBlock{
  margin-top:15px;
  padding:14px;
  background:#fff;
  border-radius:18px;
  border:1px solid rgba(0,0,0,.08);
}
.previewBlock img{
  max-width:260px;
  border-radius:14px;
  border:1px solid #ddd;
}
.previewBlock label,
.galleryAdminItem label{
  display:flex;
  align-items:center;
  gap:8px;
  margin-top:10px;
}
.previewBlock input,
.galleryAdminItem input{
  width:auto!important;
}
.galleryAdminGrid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(130px,1fr));
  gap:14px;
  margin-top:15px;
}
.galleryAdminItem{
  background:#fff;
  border-radius:16px;
  padding:9px;
  border:1px solid rgba(0,0,0,.08);
}
.galleryAdminItem img{
  width:100%;
  height:95px;
  object-fit:cover;
  border-radius:12px;
}
.latestMessages .messageList{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:15px;
}
.messageCard{
  background:#f5f5f7;
  border-radius:20px;
  padding:18px;
}
.messageCard strong{
  display:block;
}
.messageCard span{
  color:#86868b;
  font-size:12px;
}
.messageCard p{
  color:#3a3a3c;
}
.backupActions{
  display:flex;
  gap:15px;
  flex-wrap:wrap;
  align-items:center;
}
.saveDock{
  position:sticky;
  bottom:15px;
  z-index:999;
  background:rgba(255,255,255,.82);
  backdrop-filter:blur(18px);
  padding:15px;
  border-radius:22px;
  border:1px solid rgba(0,0,0,.08);
  box-shadow:0 15px 45px rgba(0,0,0,.12);
}
.saveDock .btn{
  width:100%;
  font-size:18px;
  padding:17px;
}

/* ADMIN DARK MODE */
.adminDark{
  background:#0b1020!important;
  color:#f5f5f7!important;
}
.adminDark .adminSidebar,
.adminDark .box,
.adminDark .dashCard,
.adminDark .themeToggle,
.adminDark .login,
.adminDark .saveDock{
  background:#101827!important;
  color:#f5f5f7!important;
  border-color:rgba(255,255,255,.09)!important;
}
.adminDark .sidebar a,
.adminDark .adminTopbar p,
.adminDark .dashCard p,
.adminDark .dashCard span,
.adminDark .muted,
.adminDark .adminLogoBox p{
  color:#aab3c5!important;
}
.adminDark .sidebar a:hover{
  background:#172033!important;
}
.adminDark input,
.adminDark textarea,
.adminDark select{
  background:#0b1020!important;
  border-color:rgba(255,255,255,.12)!important;
  color:#fff!important;
}
.adminDark .proRepeat,
.adminDark .messageCard,
.adminDark .dropArea,
.adminDark .previewBlock,
.adminDark .galleryAdminItem{
  background:#0f172a!important;
  border-color:rgba(255,255,255,.1)!important;
}
.adminDark .dropArea{
  color:#60a5fa!important;
}
.adminDark .adminNotice{
  background:#052e1a!important;
}

@media(max-width:1000px){
  .adminPlusWrap{
    grid-template-columns:1fr;
  }
  .dashboardGrid,
  .latestMessages .messageList{
    grid-template-columns:1fr;
  }
  .adminTopbar{
    flex-direction:column;
    align-items:flex-start;
  }
}


/* ===== CUSTOMER REVIEWS SYSTEM ===== */
.reviewsSection{background:#f5f5f7}
.reviewNotice{max-width:700px;margin:0 auto 24px;text-align:center;background:#ecfdf5;padding:14px 18px;border-radius:18px}
.reviewsGrid{display:grid;grid-template-columns:repeat(3,1fr);gap:22px;margin-bottom:30px}
.reviewCard{background:#fff;border:1px solid rgba(0,0,0,.06);border-radius:30px;padding:26px;box-shadow:0 14px 45px rgba(0,0,0,.05)}
.reviewPhoto{width:72px;height:72px;object-fit:cover;border-radius:50%;margin-bottom:16px}
.stars{color:#ffb800;font-size:20px;letter-spacing:2px;margin-bottom:12px}
.reviewCard p{color:#444;line-height:1.65}.reviewCard strong{display:block;margin-top:14px}.reviewCard small{color:#86868b}.emptyReview{text-align:center;grid-column:1/-1}
.reviewForm{max-width:760px;margin:0 auto;background:#fff;border-radius:32px;padding:30px;box-shadow:0 14px 45px rgba(0,0,0,.05);display:grid;gap:14px}
.reviewForm h3{margin:0 0 8px;font-size:28px;letter-spacing:-.03em}.reviewForm input,.reviewForm textarea,.reviewForm select{width:100%;border:1px solid rgba(0,0,0,.1);background:#fff;color:#1d1d1f;border-radius:18px;padding:15px;font:inherit}
.reviewUpload{display:flex;align-items:center;justify-content:space-between;gap:12px;padding:14px 16px;border-radius:18px;background:#f5f5f7;color:#0071e3;font-weight:700}.reviewUpload input{padding:0;border:0;background:transparent}
.adminReviewsList{display:grid;gap:16px}.adminReviewItem{display:grid;grid-template-columns:90px 1fr auto;gap:18px;align-items:center;background:#fbfbfd;border:1px solid rgba(0,0,0,.08);border-radius:24px;padding:18px}.adminReviewItem.pending{border-color:rgba(255,184,0,.35);background:#fffaf0}.adminReviewItem.approved{border-color:rgba(22,163,74,.25)}
.adminReviewPhoto{width:78px;height:78px;object-fit:cover;border-radius:18px}.reviewAdminActions{display:flex;gap:10px;flex-wrap:wrap}.reviewAdminActions .btn{padding:10px 16px}
@media(max-width:900px){.reviewsGrid{grid-template-columns:1fr}.reviewForm{padding:22px}.adminReviewItem{grid-template-columns:1fr}.reviewAdminActions{justify-content:flex-start}}
.btn,
.backBtn,
.loginMark,
.adminLogo,
.badge{
  background:var(--primary)!important;
}

.workInfo small,
.socials a:hover,
.nav nav a:hover,
.eyebrow,
.section span,
.about span,
.contact span{
  color:var(--primary)!important;
}

.btn.ghost{
  color:var(--primary)!important;
  border-color:var(--primary)!important;
}

.card b{
  color:var(--primary)!important;
}


/* ===== SITE THEME SWITCHER v1 ===== */
:root{
  --site-primary:var(--primary,#0071e3);
  --site-accent:var(--accent,#111111);
}
input[type="color"]{
  height:56px!important;
  padding:6px!important;
  border-radius:18px!important;
  cursor:pointer;
}
.btn,.backBtn,.loginMark,.adminLogo,.badge{
  background:var(--primary,#0071e3)!important;
}
.btn.ghost{
  background:transparent!important;
  color:var(--primary,#0071e3)!important;
  border-color:color-mix(in srgb,var(--primary,#0071e3) 55%, transparent)!important;
}
.workInfo small,.socials a:hover,.nav nav a:hover,.eyebrow,.section span,.about span,.contact span,.card b{
  color:var(--primary,#0071e3)!important;
}

/* Admin theme selector helper */
.proAdmin select,
.admin select{
  width:100%;
  border:1px solid rgba(0,0,0,.12);
  background:#fff;
  color:#1d1d1f;
  border-radius:16px;
  padding:14px;
  font:inherit;
}

/* Shared theme improvements */
body[class^="theme-"] .nav,
body[class*=" theme-"] .nav{
  transition:.25s ease;
}
body[class^="theme-"] .hero,
body[class*=" theme-"] .hero,
body[class^="theme-"] .card,
body[class*=" theme-"] .card,
body[class^="theme-"] .about,
body[class*=" theme-"] .about,
body[class^="theme-"] .contact,
body[class*=" theme-"] .contact,
body[class^="theme-"] .reviewCard,
body[class*=" theme-"] .reviewCard{
  transition:.25s ease;
}

/* 1 - Apple Beyaz */
body.theme-apple{
  background:#f5f5f7!important;
  color:#1d1d1f!important;
}

/* 2 - Dark Premium */
body.theme-dark{
  background:#07080d!important;
  color:#f5f5f7!important;
}
body.theme-dark .nav{
  background:rgba(7,8,13,.78)!important;
  border-bottom:1px solid rgba(255,255,255,.08)!important;
}
body.theme-dark .brand,body.theme-dark .nav nav,body.theme-dark .nav nav a{color:#f5f5f7!important}
body.theme-dark .hero{
  background:radial-gradient(circle at 70% 20%,rgba(0,113,227,.24),transparent 35%),linear-gradient(180deg,#090b12,#07080d)!important;
}
body.theme-dark .hero h1,body.theme-dark .section h2,body.theme-dark .about h2,body.theme-dark .contact h2{color:#fff!important}
body.theme-dark .hero p,body.theme-dark .card p,body.theme-dark .portfolio p,body.theme-dark .about p,body.theme-dark .contact p{color:#b8bfcc!important}
body.theme-dark .card,body.theme-dark .about,body.theme-dark .contact,body.theme-dark .reviewCard,body.theme-dark .reviewForm,body.theme-dark .portfolio article{
  background:#111827!important;
  border-color:rgba(255,255,255,.08)!important;
  box-shadow:0 18px 60px rgba(0,0,0,.32)!important;
}
body.theme-dark .form,body.theme-dark .stats div{background:#0b1020!important}
body.theme-dark input,body.theme-dark textarea,body.theme-dark select{background:#0b1020!important;color:#fff!important;border-color:rgba(255,255,255,.12)!important}
body.theme-dark footer{border-top-color:rgba(255,255,255,.08)!important}

/* 3 - Mavi Teknoloji */
body.theme-blue{
  background:#eef6ff!important;
}
body.theme-blue .hero{
  background:radial-gradient(circle at 50% 0%,rgba(0,113,227,.18),transparent 35%),linear-gradient(180deg,#ffffff,#eef6ff)!important;
}
body.theme-blue .card,body.theme-blue .about,body.theme-blue .contact,body.theme-blue .reviewCard,body.theme-blue .portfolio article{
  border-color:rgba(0,113,227,.12)!important;
  box-shadow:0 20px 55px rgba(0,113,227,.10)!important;
}
body.theme-blue .thumb{background:linear-gradient(145deg,#031633,#0071e3)!important}

/* 4 - Mor Kreatif */
body.theme-purple{
  background:#f6f1ff!important;
}
body.theme-purple .hero{
  background:radial-gradient(circle at 20% 10%,rgba(124,58,237,.18),transparent 35%),linear-gradient(180deg,#fff,#f6f1ff)!important;
}
body.theme-purple .btn{background:#7c3aed!important}
body.theme-purple .btn.ghost{color:#7c3aed!important;border-color:#c4b5fd!important}
body.theme-purple .section span,body.theme-purple .eyebrow,body.theme-purple .workInfo small,body.theme-purple .card b{color:#7c3aed!important}
body.theme-purple .card,body.theme-purple .about,body.theme-purple .contact,body.theme-purple .reviewCard{box-shadow:0 18px 55px rgba(124,58,237,.10)!important}
body.theme-purple .thumb{background:linear-gradient(145deg,#170c2f,#7c3aed)!important}

/* 5 - Turuncu Enerjik */
body.theme-orange{
  background:#fff7ed!important;
}
body.theme-orange .hero{
  background:radial-gradient(circle at 80% 10%,rgba(249,115,22,.18),transparent 35%),linear-gradient(180deg,#fff,#fff7ed)!important;
}
body.theme-orange .btn{background:#f97316!important}
body.theme-orange .btn.ghost{color:#f97316!important;border-color:#fed7aa!important}
body.theme-orange .section span,body.theme-orange .eyebrow,body.theme-orange .workInfo small,body.theme-orange .card b{color:#f97316!important}
body.theme-orange .thumb{background:linear-gradient(145deg,#2d1204,#f97316)!important}

/* 6 - Siyah Minimal */
body.theme-minimal{
  background:#fff!important;
}
body.theme-minimal .nav{background:rgba(255,255,255,.92)!important}
body.theme-minimal .hero{
  background:#fff!important;
}
body.theme-minimal .btn{background:#111!important}
body.theme-minimal .btn.ghost{color:#111!important;border-color:#111!important}
body.theme-minimal .card,body.theme-minimal .about,body.theme-minimal .contact,body.theme-minimal .reviewCard,body.theme-minimal .portfolio article{
  box-shadow:none!important;
  border:1px solid #e5e5e5!important;
}
body.theme-minimal .thumb{background:#111!important}

/* 7 - Neon Cyber */
body.theme-neon{
  background:#030712!important;
  color:#e5f7ff!important;
}
body.theme-neon .nav{
  background:rgba(3,7,18,.72)!important;
  border-color:rgba(0,245,255,.18)!important;
}
body.theme-neon .brand,body.theme-neon .nav a{color:#e5f7ff!important}
body.theme-neon .hero{
  background:radial-gradient(circle at 15% 20%,rgba(0,245,255,.18),transparent 28%),radial-gradient(circle at 85% 10%,rgba(124,58,237,.25),transparent 30%),#030712!important;
}
body.theme-neon .hero h1,body.theme-neon .section h2,body.theme-neon .about h2,body.theme-neon .contact h2{color:#fff!important}
body.theme-neon .btn{background:#00d4ff!important;color:#001018!important}
body.theme-neon .btn.ghost{color:#00d4ff!important;border-color:#00d4ff!important}
body.theme-neon .card,body.theme-neon .about,body.theme-neon .contact,body.theme-neon .reviewCard,body.theme-neon .reviewForm,body.theme-neon .portfolio article{
  background:rgba(15,23,42,.84)!important;
  border-color:rgba(0,212,255,.18)!important;
  box-shadow:0 0 45px rgba(0,212,255,.08)!important;
}
body.theme-neon .form,body.theme-neon .stats div{background:#07111f!important}
body.theme-neon p,body.theme-neon .muted{color:#b8c7d9!important}
body.theme-neon input,body.theme-neon textarea,body.theme-neon select{background:#07111f!important;color:#fff!important;border-color:rgba(0,212,255,.2)!important}
body.theme-neon .thumb{background:linear-gradient(145deg,#020617,#00d4ff)!important}

/* 8 - Yeşil Studio */
body.theme-forest{
  background:#f0fdf4!important;
}
body.theme-forest .hero{background:linear-gradient(180deg,#fff,#f0fdf4)!important}
body.theme-forest .btn{background:#16a34a!important}
body.theme-forest .btn.ghost{color:#16a34a!important;border-color:#86efac!important}
body.theme-forest .section span,body.theme-forest .eyebrow,body.theme-forest .workInfo small,body.theme-forest .card b{color:#16a34a!important}
body.theme-forest .thumb{background:linear-gradient(145deg,#052e16,#16a34a)!important}

/* 9 - Rose Modern */
body.theme-rose{
  background:#fff1f2!important;
}
body.theme-rose .hero{background:linear-gradient(180deg,#fff,#fff1f2)!important}
body.theme-rose .btn{background:#e11d48!important}
body.theme-rose .btn.ghost{color:#e11d48!important;border-color:#fecdd3!important}
body.theme-rose .section span,body.theme-rose .eyebrow,body.theme-rose .workInfo small,body.theme-rose .card b{color:#e11d48!important}
body.theme-rose .thumb{background:linear-gradient(145deg,#3f0713,#e11d48)!important}

/* 10 - Gold Luxury */
body.theme-gold{
  background:#fbf7ef!important;
}
body.theme-gold .hero{
  background:radial-gradient(circle at 70% 0%,rgba(180,130,35,.18),transparent 32%),linear-gradient(180deg,#fff,#fbf7ef)!important;
}
body.theme-gold .btn{background:#b8860b!important}
body.theme-gold .btn.ghost{color:#8a6508!important;border-color:#dec27a!important}
body.theme-gold .section span,body.theme-gold .eyebrow,body.theme-gold .workInfo small,body.theme-gold .card b{color:#b8860b!important}
body.theme-gold .card,body.theme-gold .about,body.theme-gold .contact,body.theme-gold .reviewCard{border-color:rgba(184,134,11,.16)!important}
body.theme-gold .thumb{background:linear-gradient(145deg,#19130a,#b8860b)!important}

/* 11 - Glassmorphism */
body.theme-glass{
  background:linear-gradient(135deg,#eef6ff,#f8fafc,#f6f1ff)!important;
}
body.theme-glass .nav,body.theme-glass .card,body.theme-glass .about,body.theme-glass .contact,body.theme-glass .reviewCard,body.theme-glass .reviewForm,body.theme-glass .portfolio article{
  background:rgba(255,255,255,.58)!important;
  backdrop-filter:blur(22px)!important;
  border:1px solid rgba(255,255,255,.65)!important;
  box-shadow:0 18px 55px rgba(15,23,42,.08)!important;
}
body.theme-glass .hero{background:transparent!important}

/* 12 - Editorial Dergi */
body.theme-editorial{
  background:#faf7f0!important;
  font-family:Georgia,"Times New Roman",serif!important;
}
body.theme-editorial .nav,body.theme-editorial .btn,body.theme-editorial input,body.theme-editorial textarea{
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Arial,sans-serif!important;
}
body.theme-editorial .hero h1,body.theme-editorial .section h2,body.theme-editorial .about h2,body.theme-editorial .contact h2{
  font-family:Georgia,"Times New Roman",serif!important;
  letter-spacing:-.035em!important;
}
body.theme-editorial .btn{background:#111!important}
body.theme-editorial .card,body.theme-editorial .about,body.theme-editorial .contact,body.theme-editorial .reviewCard{
  border-radius:8px!important;
  box-shadow:none!important;
  border:1px solid #d7d0c4!important;
}
body.theme-editorial .portfolio article{border-radius:8px!important}
body.theme-editorial .thumb{background:#191919!important}

/* 13 - Gradient Soft */
body.theme-gradient{
  background:linear-gradient(135deg,#f0f9ff,#fdf2f8,#f5f3ff)!important;
}
body.theme-gradient .hero{
  background:linear-gradient(135deg,#f0f9ff,#fdf2f8,#f5f3ff)!important;
}
body.theme-gradient .btn{background:linear-gradient(135deg,#0071e3,#7c3aed)!important}
body.theme-gradient .card,body.theme-gradient .about,body.theme-gradient .contact,body.theme-gradient .reviewCard{
  background:rgba(255,255,255,.78)!important;
}
body.theme-gradient .thumb{background:linear-gradient(135deg,#0071e3,#7c3aed,#e11d48)!important}

/* 14 - Mono Grid */
body.theme-mono{
  background-color:#fff!important;
  background-image:linear-gradient(rgba(0,0,0,.035) 1px,transparent 1px),linear-gradient(90deg,rgba(0,0,0,.035) 1px,transparent 1px)!important;
  background-size:34px 34px!important;
}
body.theme-mono .hero{background:transparent!important}
body.theme-mono .btn{background:#000!important}
body.theme-mono .card,body.theme-mono .about,body.theme-mono .contact,body.theme-mono .reviewCard{
  box-shadow:8px 8px 0 #111!important;
  border:2px solid #111!important;
  border-radius:18px!important;
}
body.theme-mono .portfolio article{border:2px solid #111!important;box-shadow:8px 8px 0 #111!important}
body.theme-mono .thumb{background:#000!important}

/* 15 - Midnight Blue */
body.theme-midnight{
  background:#061226!important;
  color:#eaf4ff!important;
}
body.theme-midnight .nav{
  background:rgba(6,18,38,.80)!important;
  border-color:rgba(255,255,255,.08)!important;
}
body.theme-midnight .brand,body.theme-midnight .nav a{color:#eaf4ff!important}
body.theme-midnight .hero{
  background:radial-gradient(circle at 60% 10%,rgba(56,189,248,.16),transparent 35%),linear-gradient(180deg,#071a34,#061226)!important;
}
body.theme-midnight .hero h1,body.theme-midnight .section h2,body.theme-midnight .about h2,body.theme-midnight .contact h2{color:#fff!important}
body.theme-midnight .card,body.theme-midnight .about,body.theme-midnight .contact,body.theme-midnight .reviewCard,body.theme-midnight .reviewForm,body.theme-midnight .portfolio article{
  background:#0b1f3d!important;
  border-color:rgba(255,255,255,.09)!important;
}
body.theme-midnight p,body.theme-midnight .muted{color:#bfd3ea!important}
body.theme-midnight .form,body.theme-midnight .stats div{background:#071a34!important}
body.theme-midnight input,body.theme-midnight textarea,body.theme-midnight select{background:#071a34!important;color:#fff!important;border-color:rgba(255,255,255,.12)!important}
body.theme-midnight .thumb{background:linear-gradient(145deg,#020617,#0ea5e9)!important}

@media(max-width:768px){
  body[class^="theme-"] .hero,body[class*=" theme-"] .hero{
    padding-top:55px!important;
  }
}
/* PORTFOLYO KAPAK GÖRSELİ TAM OTURSUN */
.projectCard .thumb{
  height:auto!important;
  min-height:0!important;
  background:#f5f5f7!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
}

.projectCard .thumb img{
  width:100%!important;
  height:auto!important;
  object-fit:contain!important;
  display:block!important;
}

.projectCard article{
  height:auto!important;
}

/* ===== VISITOR DASHBOARD ADDON ===== */
.dashboardGridPlus{
  grid-template-columns:repeat(4,1fr);
}
.visitorSummary{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:14px;
  margin:18px 0 26px;
}
.visitorSummary div{
  background:#f5f7fb;
  border:1px solid rgba(0,0,0,.06);
  border-radius:22px;
  padding:20px;
}
.visitorSummary strong{
  display:block;
  font-size:36px;
  letter-spacing:-.04em;
}
.visitorSummary span{
  color:#6e6e73;
  font-weight:700;
}
.visitorChart{
  min-height:190px;
  display:flex;
  align-items:flex-end;
  gap:14px;
  padding:24px;
  margin:18px 0;
  background:#f8fafc;
  border:1px solid rgba(0,0,0,.06);
  border-radius:26px;
}
.visitorBarItem{
  flex:1;
  display:grid;
  gap:8px;
  justify-items:center;
  align-items:end;
}
.visitorBar{
  width:100%;
  max-width:72px;
  min-height:8px;
  border-radius:16px 16px 8px 8px;
  background:linear-gradient(180deg,#0071e3,#004b9b);
  position:relative;
  display:flex;
  align-items:flex-start;
  justify-content:center;
  color:#fff;
  font-weight:800;
  padding-top:8px;
}
.visitorBar span{
  font-size:13px;
}
.visitorBarItem small{
  color:#1d1d1f;
  font-weight:800;
}
.visitorBarItem em{
  font-style:normal;
  color:#86868b;
  font-size:12px;
}
.adminDark .visitorSummary div,
.adminDark .visitorChart{
  background:#0f172a!important;
  border-color:rgba(255,255,255,.1)!important;
}
.adminDark .visitorBarItem small{
  color:#f8fafc!important;
}
@media(max-width:900px){
  .dashboardGridPlus,
  .visitorSummary{
    grid-template-columns:1fr 1fr;
  }
  .visitorChart{
    overflow-x:auto;
    align-items:flex-end;
  }
  .visitorBarItem{
    min-width:70px;
  }
}
@media(max-width:560px){
  .dashboardGridPlus,
  .visitorSummary{
    grid-template-columns:1fr;
  }
}

/* ===== ADMIN NOTIFICATION + SEO + SPEED ADDON ===== */
.notificationCenter{
  background:#fff;
  border:1px solid rgba(239,68,68,.18);
  border-radius:26px;
  padding:18px;
  margin:0 0 22px;
  box-shadow:0 18px 50px rgba(239,68,68,.08);
}
.notificationHead{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:14px;
  margin-bottom:14px;
}
.notificationHead strong{
  font-size:18px;
}
.notificationHead span{
  background:#ef4444;
  color:#fff;
  border-radius:999px;
  padding:7px 12px;
  font-size:13px;
  font-weight:900;
}
.notificationList{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}
.notificationList a{
  display:block;
  background:#fff5f5;
  border:1px solid rgba(239,68,68,.14);
  border-radius:18px;
  padding:14px;
  font-weight:800;
  color:#991b1b;
}
.seoPanelBox .seoPreview{
  margin-top:18px;
  background:#f8fafc;
  border:1px solid rgba(0,0,0,.08);
  border-radius:22px;
  padding:18px;
}
.seoPreview span{
  color:#6e6e73;
  font-weight:900;
  text-transform:uppercase;
  font-size:12px;
  letter-spacing:.08em;
}
.seoPreview h3{
  margin:8px 0;
  color:#1a0dab;
  font-size:20px;
  font-weight:500;
}
.seoPreview p{
  margin:0 0 6px;
  color:#4d5156;
}
.seoPreview small{
  color:#188038;
}
input[type="color"]{
  height:58px!important;
  padding:6px!important;
  border-radius:18px!important;
  cursor:pointer;
}
.adminDark .notificationCenter,
.adminDark .seoPreview{
  background:#101827!important;
  border-color:rgba(255,255,255,.1)!important;
}
.adminDark .notificationList a{
  background:#2a1111!important;
  color:#fecaca!important;
  border-color:rgba(248,113,113,.25)!important;
}
.adminDark .seoPreview h3{
  color:#8ab4f8!important;
}
.adminDark .seoPreview p,
.adminDark .seoPreview span{
  color:#cbd5e1!important;
}
@media(max-width:900px){
  .notificationList{
    grid-template-columns:1fr;
  }
}
/* ===== İL / İLÇE SEÇİCİ TASARIMI ===== */
.addressSelects{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:12px;
}

.addressSelects select{
  width:100%;
  height:56px;
  border:1px solid rgba(0,0,0,.13);
  background:#fff;
  color:#1d1d1f;
  border-radius:18px;
  padding:0 16px;
  font:inherit;
  outline:none;
}

.addressSelects select:focus{
  border-color:var(--primary,#0071e3);
  box-shadow:0 0 0 4px rgba(0,113,227,.12);
}

.addressSelects select:disabled{
  color:#86868b;
  background:#f5f5f7;
}

@media(max-width:700px){
  .addressSelects{
    grid-template-columns:1fr;
  }
}
/* ===== ÇOKLU DİL SEÇİCİ ===== */
.langSwitcher{
  position:relative;
  z-index:9999;
}

.langBtn{
  border:1px solid rgba(0,0,0,.08);
  background:#fff;
  color:#1d1d1f;
  border-radius:999px;
  height:44px;
  padding:0 14px;
  display:flex;
  align-items:center;
  gap:8px;
  font-weight:900;
  cursor:pointer;
  box-shadow:0 10px 30px rgba(0,0,0,.06);
}

.langMenu{
  position:absolute;
  right:0;
  top:54px;
  width:230px;
  max-height:360px;
  overflow:auto;
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:22px;
  box-shadow:0 24px 80px rgba(0,0,0,.16);
  padding:8px;
  display:none;
}

.langMenu.active{
  display:block;
}

.langMenu button{
  width:100%;
  border:0;
  background:transparent;
  color:#1d1d1f;
  padding:12px 14px;
  border-radius:14px;
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  text-align:left;
  cursor:pointer;
}

.langMenu button:hover{
  background:#f5f5f7;
}

/* Google Translate üst bar gizleme */
.goog-te-banner-frame,
.goog-te-balloon-frame,
#goog-gt-tt{
  display:none!important;
}

body{
  top:0!important;
}

.skiptranslate iframe{
  display:none!important;
}

/* Mobil */
@media(max-width:900px){
  .nav{
    gap:10px;
  }

  .langBtn{
    height:40px;
    padding:0 12px;
  }

  .langMenu{
    right:-70px;
    width:220px;
  }
}
@media(max-width:700px){
  .nav{
    display:flex!important;
    align-items:center!important;
    justify-content:space-between!important;
    padding:14px 18px!important;
    gap:10px!important;
  }

  .nav nav{
    display:none!important;
  }

  .brand span{
    font-size:20px!important;
  }

  .langSwitcher{
    position:relative!important;
  }

  .langBtn{
    height:38px!important;
    padding:0 12px!important;
    font-size:14px!important;
  }

  .langMenu{
    position:absolute!important;
    top:46px!important;
    right:0!important;
    width:210px!important;
    max-height:320px!important;
    overflow-y:auto!important;
    display:none!important;
    z-index:99999!important;
  }

  .langMenu.active{
    display:block!important;
  }

  .langMenu button{
    font-size:14px!important;
    padding:10px 12px!important;
  }

  .nav .btn.small{
    padding:11px 16px!important;
    font-size:14px!important;
    white-space:nowrap!important;
  }
}
.langMenu{
  display:none!important;
}

.langMenu.active{
  display:grid!important;
  grid-template-columns:1fr!important;
}

@media(max-width:700px){
  .langMenu{
    position:fixed!important;
    top:74px!important;
    left:50%!important;
    right:auto!important;
    transform:translateX(-50%)!important;
    width:86vw!important;
    max-width:320px!important;
    max-height:55vh!important;
    overflow-y:auto!important;
    background:#fff!important;
    border-radius:22px!important;
    padding:10px!important;
    z-index:999999!important;
    box-shadow:0 30px 90px rgba(0,0,0,.22)!important;
  }
}
/* GOOGLE TRANSLATE GİZLE */
.goog-te-gadget,
.goog-te-gadget-simple,
.goog-te-menu-value,
.goog-te-banner-frame,
.goog-te-balloon-frame,
.goog-tooltip,
.goog-tooltip:hover,
.goog-text-highlight,
#goog-gt-tt{
    display:none !important;
}

body{
    top:0 !important;
}

.skiptranslate{
    display:none !important;
}

/* SADECE BİZİM MENÜ */
.langMenu{
    display:none !important;
}

.langMenu.active{
    display:block !important;
}

@media(max-width:768px){

    .langSwitcher{
        position:relative !important;
    }

    .langMenu{
        position:absolute !important;
        top:50px !important;
        right:0 !important;
        width:220px !important;
        max-height:300px !important;
        overflow-y:auto !important;
        background:#fff !important;
        border-radius:16px !important;
        z-index:999999 !important;
        box-shadow:0 10px 40px rgba(0,0,0,.15) !important;
    }

    .langMenu button{
        width:100% !important;
        display:block !important;
        text-align:left !important;
        padding:10px 15px !important;
    }
}
/* ===== MOBİL UYUMLU KOMPAKT DİL SEÇİCİ ===== */
.langMenu,
.langBtn{
  display:none!important;
}

.compactLang{
  position:relative!important;
  z-index:9999!important;
  flex-shrink:0!important;
}

.compactLang select{
  height:42px!important;
  border:1px solid rgba(0,0,0,.08)!important;
  background:#fff!important;
  color:#1d1d1f!important;
  border-radius:999px!important;
  padding:0 28px 0 12px!important;
  font-weight:900!important;
  font-size:14px!important;
  outline:none!important;
  box-shadow:0 10px 30px rgba(0,0,0,.06)!important;
  max-width:96px!important;
}

.goog-te-gadget,
.goog-te-gadget-simple,
.goog-te-banner-frame,
.goog-te-balloon-frame,
.goog-tooltip,
.goog-tooltip:hover,
.goog-text-highlight,
#goog-gt-tt,
.skiptranslate{
  display:none!important;
}

body{
  top:0!important;
}

@media(max-width:768px){
  .nav{
    display:flex!important;
    align-items:center!important;
    justify-content:space-between!important;
    gap:8px!important;
    padding:12px 14px!important;
    min-height:70px!important;
  }

  .nav nav{
    display:none!important;
  }

  .brand{
    min-width:0!important;
    flex:1!important;
  }

  .brand span{
    font-size:19px!important;
    white-space:nowrap!important;
    overflow:hidden!important;
    text-overflow:ellipsis!important;
  }

  .brand img{
    width:28px!important;
    height:28px!important;
  }

  .compactLang select{
    height:38px!important;
    max-width:84px!important;
    font-size:13px!important;
    padding-left:10px!important;
  }

  .nav .btn.small{
    height:42px!important;
    padding:0 14px!important;
    font-size:14px!important;
    white-space:nowrap!important;
    flex-shrink:0!important;
  }
}
/* ===== PROJECT LIGHTBOX GALERİ ===== */
.projectPage{
  background:#f5f5f7!important;
  color:#1d1d1f!important;
}

.projectHeaderMini{
  position:sticky;
  top:0;
  z-index:50;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:18px 6%;
  background:rgba(255,255,255,.82);
  backdrop-filter:blur(20px);
  border-bottom:1px solid rgba(0,0,0,.08);
}

.projectHeaderMini a{
  color:#0071e3;
  font-weight:900;
}

.projectHeaderMini strong{
  font-size:16px;
  color:#1d1d1f;
}

.projectGalleryOnly{
  width:min(1500px,94%);
  margin:38px auto 80px;
  columns:3 320px;
  column-gap:24px;
}

.projectGalleryItem{
  width:100%;
  padding:0;
  margin:0 0 24px;
  border:0;
  background:transparent;
  cursor:zoom-in;
  display:block;
  break-inside:avoid;
}

.projectGalleryItem img{
  width:100%;
  height:auto;
  display:block;
  border-radius:26px;
  box-shadow:0 24px 70px rgba(0,0,0,.14);
  transition:transform .25s ease, box-shadow .25s ease;
}

.projectGalleryItem:hover img{
  transform:translateY(-5px);
  box-shadow:0 34px 90px rgba(0,0,0,.2);
}

.emptyProjectGallery{
  min-height:70vh;
  display:grid;
  place-content:center;
  text-align:center;
  padding:40px;
}

.emptyProjectGallery h1{
  font-size:clamp(34px,6vw,76px);
  margin:0 0 12px;
}

.emptyProjectGallery p{
  color:#6e6e73;
  font-size:18px;
}

/* Lightbox */
.mdLightbox{
  position:fixed;
  inset:0;
  z-index:999999;
  background:rgba(0,0,0,.94);
  display:none;
  align-items:center;
  justify-content:center;
  padding:26px;
}

.mdLightbox.active{
  display:flex;
}

.mdLightbox img{
  max-width:92vw;
  max-height:86vh;
  width:auto;
  height:auto;
  object-fit:contain;
  border-radius:18px;
  box-shadow:0 30px 120px rgba(0,0,0,.6);
}

.mdLightboxClose,
.mdLightboxArrow{
  position:absolute;
  border:0;
  background:rgba(255,255,255,.16);
  color:#fff;
  backdrop-filter:blur(14px);
  cursor:pointer;
  transition:.2s ease;
}

.mdLightboxClose:hover,
.mdLightboxArrow:hover{
  background:rgba(255,255,255,.28);
}

.mdLightboxClose{
  top:24px;
  right:24px;
  width:52px;
  height:52px;
  border-radius:50%;
  font-size:38px;
  line-height:1;
}

.mdLightboxArrow{
  top:50%;
  transform:translateY(-50%);
  width:62px;
  height:62px;
  border-radius:50%;
  font-size:54px;
  line-height:1;
}

.mdLeft{left:24px}
.mdRight{right:24px}

.mdLightboxCounter{
  position:absolute;
  left:50%;
  bottom:24px;
  transform:translateX(-50%);
  color:#fff;
  background:rgba(255,255,255,.16);
  backdrop-filter:blur(14px);
  border-radius:999px;
  padding:9px 16px;
  font-weight:800;
}

@media(max-width:800px){
  .projectHeaderMini{
    padding:14px 18px;
  }

  .projectHeaderMini strong{
    max-width:55vw;
    white-space:nowrap;
    overflow:hidden;
    text-overflow:ellipsis;
  }

  .projectGalleryOnly{
    width:92%;
    columns:1;
    margin-top:24px;
  }

  .projectGalleryItem img{
    border-radius:20px;
  }

  .mdLightbox{
    padding:14px;
  }

  .mdLightbox img{
    max-width:96vw;
    max-height:78vh;
    border-radius:12px;
  }

  .mdLightboxClose{
    top:14px;
    right:14px;
    width:44px;
    height:44px;
    font-size:32px;
  }

  .mdLightboxArrow{
    width:44px;
    height:44px;
    font-size:38px;
  }

  .mdLeft{left:12px}
  .mdRight{right:12px}
}



/* ===== İLETİŞİM FORMU DOSYA YÜKLEME FIX ===== */
.clientFileUpload{
  display:flex;
  flex-direction:column;
  gap:5px;
  border:1.5px dashed rgba(0,113,227,.32);
  background:#f6faff;
  color:#1d1d1f;
  border-radius:20px;
  padding:16px;
  cursor:pointer;
  transition:.2s ease;
}
.clientFileUpload:hover{
  border-color:var(--primary,#0071e3);
  background:#eef6ff;
}
.clientFileUpload span{
  color:var(--primary,#0071e3);
  font-weight:900;
}
.clientFileUpload small{
  color:#6e6e73;
  font-size:13px;
}
.clientFileUpload input{
  margin-top:8px;
  padding:0!important;
  border:0!important;
  background:transparent!important;
  border-radius:0!important;
}
.clientFileLink{
  display:inline-flex;
  margin-top:10px;
  padding:8px 12px;
  border-radius:999px;
  background:#eef6ff;
  color:#0071e3!important;
  font-weight:900;
}
/* FORM SELECT TASARIM FIX */
.form select{
  width:100%!important;
  height:56px!important;
  border:1px solid rgba(0,0,0,.1)!important;
  background:#fff!important;
  color:#1d1d1f!important;
  border-radius:18px!important;
  padding:0 15px!important;
  font:inherit!important;
  outline:none!important;
  appearance:auto!important;
}

.quoteFields{
  display:grid!important;
  grid-template-columns:1fr 1fr!important;
  gap:12px!important;
}

@media(max-width:700px){
  .quoteFields{
    grid-template-columns:1fr!important;
  }
}

/* ===== ADMIN KESİN FIX ===== */
.dashboardGrid{
  grid-template-columns:repeat(auto-fit,minmax(190px,1fr))!important;
}
.previewBlock img,
.galleryAdminItem img,
.adminReviewPhoto{
  background:#f5f5f7;
}
.clientFileLink{
  display:inline-flex;
  margin-top:10px;
  padding:8px 12px;
  border-radius:999px;
  background:#eef6ff;
  color:#0071e3!important;
  font-weight:900;
  text-decoration:none!important;
}
.table .clientFileLink{
  margin-top:0;
}
.galleryAdminGrid{
  align-items:start;
}
.dropArea.fileReady{
  border-color:#16a34a!important;
  background:#ecfdf5!important;
  color:#16a34a!important;
}
.admin textarea{
  min-height:70px;
}
@media(max-width:900px){
  .table{
    min-width:900px;
  }
}

/* ===== SAĞ ALT POPUP BİLDİRİM MERKEZİ ===== */
.notificationCenter{
  display:none!important;
}

.adminToastStack{
  position:fixed;
  right:24px;
  bottom:24px;
  z-index:999999;
  display:grid;
  gap:12px;
  width:min(360px, calc(100vw - 32px));
}

.adminToast{
  position:relative;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(18px);
  border:1px solid rgba(0,113,227,.14);
  border-radius:22px;
  box-shadow:0 24px 80px rgba(0,0,0,.14);
  overflow:hidden;
  animation:toastIn .35s ease both;
}

.adminToast a{
  display:grid;
  gap:5px;
  padding:18px 48px 18px 18px;
  color:#1d1d1f!important;
}

.adminToast strong{
  font-size:14px;
  color:#0071e3;
}

.adminToast span{
  font-size:15px;
  font-weight:800;
}

.adminToastClose{
  position:absolute;
  right:12px;
  top:12px;
  width:30px;
  height:30px;
  border:0;
  border-radius:50%;
  background:#f5f5f7;
  color:#1d1d1f;
  cursor:pointer;
  font-size:20px;
  line-height:1;
}

.adminToastClose:hover{
  background:#e5e7eb;
}

@keyframes toastIn{
  from{
    opacity:0;
    transform:translateY(14px) scale(.96);
  }
  to{
    opacity:1;
    transform:translateY(0) scale(1);
  }
}

.adminDark .adminToast{
  background:rgba(15,23,42,.94)!important;
  border-color:rgba(255,255,255,.12)!important;
}

.adminDark .adminToast a,
.adminDark .adminToastClose{
  color:#fff!important;
}

.adminDark .adminToastClose{
  background:rgba(255,255,255,.12)!important;
}

@media(max-width:700px){
  .adminToastStack{
    left:16px;
    right:16px;
    bottom:16px;
    width:auto;
  }
}
/* ===== ADMIN MEDYA ALANLARI PREMIUM FIX ===== */
.admin .dropArea{
  min-height:76px!important;
  border:1.5px dashed rgba(0,113,227,.35)!important;
  background:linear-gradient(180deg,#f7fbff,#eef6ff)!important;
  border-radius:22px!important;
  color:#0071e3!important;
  font-weight:900!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  text-align:center!important;
  padding:18px!important;
  cursor:pointer!important;
}

.admin .dropArea::before{
  content:"＋ ";
  font-size:20px;
}

.admin .dropArea.fileReady{
  background:#ecfdf5!important;
  border-color:#16a34a!important;
  color:#16a34a!important;
}

.admin .previewBlock{
  margin-top:14px!important;
  background:#fff!important;
  border:1px solid rgba(0,0,0,.08)!important;
  border-radius:24px!important;
  padding:14px!important;
  box-shadow:0 12px 35px rgba(0,0,0,.05)!important;
}

.admin .previewBlock img{
  width:100%!important;
  max-width:340px!important;
  height:190px!important;
  object-fit:cover!important;
  border-radius:18px!important;
  background:#f5f5f7!important;
}

.admin .previewBlock label{
  margin-top:12px!important;
  display:inline-flex!important;
  align-items:center!important;
  gap:8px!important;
  padding:9px 13px!important;
  border-radius:999px!important;
  background:#fff1f2!important;
  color:#e11d48!important;
  font-weight:800!important;
}

.admin .previewBlock input[type="checkbox"]{
  width:auto!important;
}

.admin .galleryAdminGrid{
  display:grid!important;
  grid-template-columns:repeat(auto-fill,minmax(150px,1fr))!important;
  gap:14px!important;
  margin-top:16px!important;
}

.admin .galleryAdminItem{
  background:#fff!important;
  border:1px solid rgba(0,0,0,.08)!important;
  border-radius:22px!important;
  padding:10px!important;
  box-shadow:0 10px 30px rgba(0,0,0,.05)!important;
}

.admin .galleryAdminItem img{
  width:100%!important;
  height:130px!important;
  object-fit:cover!important;
  border-radius:16px!important;
  background:#f5f5f7!important;
}

.admin .galleryAdminItem label{
  margin-top:9px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  gap:7px!important;
  padding:8px!important;
  border-radius:999px!important;
  background:#fff1f2!important;
  color:#e11d48!important;
  font-weight:800!important;
}

.admin .galleryAdminItem input[type="checkbox"]{
  width:auto!important;
}

.admin .portfolioAdminItem{
  border:1px solid rgba(0,0,0,.08)!important;
  box-shadow:0 18px 50px rgba(0,0,0,.05)!important;
}
/* ===== ADMIN DOSYA ÖNİZLEME + KAYDETMEDEN SİLME ===== */
.selectedFilesPreview{
  margin:14px 0 20px;
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:22px;
  padding:14px;
  box-shadow:0 12px 34px rgba(0,0,0,.05);
}

.selectedFilesHead{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:12px;
}

.selectedFilesHead strong{
  color:#16a34a;
}

.selectedFilesHead button,
.selectedFileRemove{
  border:0;
  border-radius:999px;
  background:#fff1f2;
  color:#e11d48;
  font-weight:900;
  padding:8px 12px;
  cursor:pointer;
}

.selectedFilesGrid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(150px,1fr));
  gap:12px;
}

.selectedFileCard{
  position:relative;
  border:1px solid rgba(0,0,0,.08);
  border-radius:18px;
  padding:9px;
  background:#f8fafc;
}

.selectedFileThumb{
  height:120px;
  border-radius:14px;
  overflow:hidden;
  background:#eef2f7;
  display:grid;
  place-items:center;
}

.selectedFileThumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.selectedFileThumb span{
  font-size:38px;
}

.selectedFileInfo{
  margin:9px 0;
}

.selectedFileInfo strong{
  display:block;
  font-size:13px;
  line-height:1.25;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.selectedFileInfo small{
  color:#6e6e73;
}

.selectedFileRemove{
  width:100%;
}

.adminDark .selectedFilesPreview{
  background:#0f172a!important;
  border-color:rgba(255,255,255,.1)!important;
}

.adminDark .selectedFileCard{
  background:#111827!important;
  border-color:rgba(255,255,255,.1)!important;
}

.adminDark .selectedFileInfo strong{
  color:#fff!important;
}
/* ===== ADMIN DOSYA / GÖRSEL ÖNİZLEME + KAYDETMEDEN SİLME ===== */
.selectedFilesPreview{
  margin:14px 0 20px;
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:22px;
  padding:14px;
  box-shadow:0 12px 34px rgba(0,0,0,.05);
}

.selectedFilesHead{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  margin-bottom:12px;
}

.selectedFilesHead strong{
  color:#16a34a;
}

.selectedFilesHead button,
.selectedFileRemove{
  border:0;
  border-radius:999px;
  background:#fff1f2;
  color:#e11d48;
  font-weight:900;
  padding:8px 12px;
  cursor:pointer;
}

.selectedFilesGrid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(150px,1fr));
  gap:12px;
}

.selectedFileCard{
  position:relative;
  border:1px solid rgba(0,0,0,.08);
  border-radius:18px;
  padding:9px;
  background:#f8fafc;
}

.selectedFileThumb{
  height:120px;
  border-radius:14px;
  overflow:hidden;
  background:#eef2f7;
  display:grid;
  place-items:center;
}

.selectedFileThumb img{
  width:100%;
  height:100%;
  object-fit:cover;
}

.selectedFileThumb span{
  font-size:38px;
}

.selectedFileInfo{
  margin:9px 0;
}

.selectedFileInfo strong{
  display:block;
  font-size:13px;
  line-height:1.25;
  white-space:nowrap;
  overflow:hidden;
  text-overflow:ellipsis;
}

.selectedFileInfo small{
  color:#6e6e73;
}

.selectedFileRemove{
  width:100%;
}

.admin .dropArea.fileReady{
  border-color:#16a34a!important;
  background:#ecfdf5!important;
  color:#16a34a!important;
}

.adminDark .selectedFilesPreview{
  background:#0f172a!important;
  border-color:rgba(255,255,255,.1)!important;
}

.adminDark .selectedFileCard{
  background:#111827!important;
  border-color:rgba(255,255,255,.1)!important;
}

.adminDark .selectedFileInfo strong{
  color:#fff!important;
}

/* ===== KVKK / GİZLİLİK / ÇEREZ ===== */
.kvkkCheck{
  display:flex;
  align-items:flex-start;
  gap:10px;
  padding:14px;
  border-radius:18px;
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  color:#3a3a3c;
  line-height:1.5;
  font-size:14px;
}
.kvkkCheck input{
  width:auto!important;
  margin-top:4px;
}
.kvkkCheck a{
  color:var(--primary,#0071e3);
  font-weight:800;
}
.kvkkWarn{
  padding:12px 14px;
  border-radius:16px;
}
.legalFooter{
  margin-top:18px;
  display:flex;
  gap:14px;
  justify-content:center;
  flex-wrap:wrap;
  font-size:14px;
}
.legalFooter a{
  color:#0071e3;
  font-weight:800;
}
.cookieBanner{
  position:fixed;
  left:22px;
  right:22px;
  bottom:22px;
  z-index:999999;
  max-width:760px;
  margin:auto;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  padding:18px;
  background:rgba(255,255,255,.94);
  backdrop-filter:blur(18px);
  border:1px solid rgba(0,0,0,.08);
  border-radius:24px;
  box-shadow:0 24px 80px rgba(0,0,0,.16);
}
.cookieBanner strong{
  display:block;
  margin-bottom:4px;
}
.cookieBanner p{
  margin:0;
  color:#6e6e73;
  line-height:1.45;
}
.cookieActions{
  display:flex;
  align-items:center;
  gap:10px;
  flex-shrink:0;
}
.cookieActions a{
  color:#0071e3;
  font-weight:800;
}
.cookieActions button{
  border:0;
  border-radius:999px;
  padding:12px 18px;
  background:#0071e3;
  color:#fff;
  font-weight:900;
  cursor:pointer;
}
.legalPage{
  background:#f5f5f7;
}
.legalContent{
  max-width:980px;
  margin:40px auto 90px;
  padding:0 22px;
}
.legalContent h1{
  font-size:clamp(42px,7vw,82px);
  letter-spacing:-.055em;
  line-height:1;
}
.legalContent h2{
  margin-top:34px;
  font-size:28px;
  letter-spacing:-.03em;
}
.legalContent p,
.legalContent li{
  font-size:18px;
  line-height:1.8;
  color:#3a3a3c;
}
.legalContent ul{
  background:#fff;
  border-radius:24px;
  padding:24px 24px 24px 44px;
  border:1px solid rgba(0,0,0,.06);
}
@media(max-width:700px){
  .cookieBanner{
    display:block;
    left:14px;
    right:14px;
    bottom:14px;
  }
  .cookieActions{
    margin-top:14px;
    justify-content:space-between;
  }
}

/* ===== MÜŞTERİ TAKİP / TEKLİF / ŞEHİR / BİLDİRİM 2.0 ===== */
.requestGrid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(320px,1fr));
  gap:18px;
}
.requestCard{
  background:#fbfbfd;
  border:1px solid rgba(0,0,0,.08);
  border-radius:26px;
  padding:18px;
  display:grid;
  gap:10px;
}
.requestTop{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.requestTop strong{
  color:#0071e3;
}
.requestTop span{
  background:#eef6ff;
  color:#0071e3;
  border-radius:999px;
  padding:7px 10px;
  font-weight:900;
  font-size:12px;
}
.requestActions{
  display:flex;
  flex-wrap:wrap;
  gap:8px;
}
.cityStatsGrid{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(220px,1fr));
  gap:14px;
}
.cityStatItem{
  background:#fbfbfd;
  border:1px solid rgba(0,0,0,.08);
  border-radius:22px;
  padding:16px;
}
.cityStatItem strong{
  display:block;
  font-size:18px;
}
.cityStatItem span{
  color:#6e6e73;
  font-weight:800;
}
.cityStatItem div{
  height:8px;
  background:#e5e7eb;
  border-radius:999px;
  overflow:hidden;
  margin-top:12px;
}
.cityStatItem i{
  display:block;
  height:100%;
  background:#0071e3;
  border-radius:999px;
}
.trackPage,.quotePrintPage{
  background:#f5f5f7;
  color:#1d1d1f;
}
.trackWrap{
  max-width:980px;
  margin:50px auto 90px;
  padding:0 22px;
}
.trackHero{
  text-align:center;
}
.trackHero h1{
  font-size:clamp(44px,7vw,82px);
  letter-spacing:-.06em;
  line-height:1;
}
.trackHero p{
  color:#6e6e73;
  font-size:20px;
}
.trackForm{
  display:flex;
  gap:12px;
  background:#fff;
  border-radius:999px;
  padding:10px;
  margin:28px auto;
  max-width:620px;
  box-shadow:0 18px 60px rgba(0,0,0,.08);
}
.trackForm input{
  flex:1;
  border:0;
  padding:0 18px;
  font:inherit;
  outline:none;
}
.trackCard{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:32px;
  padding:30px;
  box-shadow:0 18px 60px rgba(0,0,0,.08);
}
.trackCard.error{
  color:#e11d48;
  font-weight:900;
}
.trackStatus{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  margin-bottom:12px;
}
.trackStatus span{
  color:#6e6e73;
  text-transform:uppercase;
  font-weight:900;
  letter-spacing:.08em;
}
.trackStatus strong{
  color:#0071e3;
  background:#eef6ff;
  border-radius:999px;
  padding:10px 14px;
}
.quoteBox{
  margin-top:22px;
  background:#f5f5f7;
  border-radius:24px;
  padding:22px;
}
.quoteBox.note{
  background:#fff7ed;
}
.quoteDocument{
  max-width:900px;
  margin:30px auto;
  background:#fff;
  padding:46px;
  border-radius:28px;
  box-shadow:0 24px 80px rgba(0,0,0,.12);
}
.quoteDocument header{
  display:flex;
  justify-content:space-between;
  align-items:flex-start;
  border-bottom:2px solid #111;
  padding-bottom:22px;
}
.quoteDocument header h1{
  margin:0;
  font-size:42px;
  letter-spacing:-.05em;
}
.quoteDocument header strong{
  font-size:34px;
}
.quoteMeta{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:12px;
  margin:28px 0;
}
.quoteMeta div{
  background:#f5f5f7;
  border-radius:18px;
  padding:14px;
}
.quoteMeta span{
  display:block;
  color:#6e6e73;
  font-size:12px;
  font-weight:900;
}
.quotePrice{
  margin:30px 0;
  padding:24px;
  border-radius:24px;
  background:#111827;
  color:#fff;
  display:flex;
  justify-content:space-between;
  align-items:center;
}
.quotePrice strong{
  font-size:36px;
}
.quoteDocument footer{
  border-top:1px solid #ddd;
  padding-top:18px;
  color:#6e6e73;
}
.quoteDocument footer button{
  border:0;
  border-radius:999px;
  background:#0071e3;
  color:#fff;
  font-weight:900;
  padding:13px 20px;
  cursor:pointer;
}
@media print{
  body{background:#fff}
  .projectHeaderMini,.quoteDocument footer button{display:none!important}
  .quoteDocument{box-shadow:none;margin:0;border-radius:0}
}
@media(max-width:700px){
  .trackForm{border-radius:24px;display:grid}
  .trackForm input{padding:14px}
  .quoteMeta{grid-template-columns:1fr 1fr}
  .quoteDocument{padding:24px;margin:12px}
  .quoteDocument header{display:block}
}

/* ===== PORTFOLYODAN TEK TIKLA TEKLİF İSTE ===== */
.projectQuoteBtn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  margin-top:14px;
  padding:11px 16px;
  border-radius:999px;
  background:var(--primary,#0071e3);
  color:#fff;
  font-weight:900;
  font-size:14px;
  cursor:pointer;
  transition:.22s ease;
}
.projectQuoteBtn:hover{
  transform:translateY(-2px);
  box-shadow:0 14px 35px rgba(0,113,227,.22);
}
.referenceProjectBox{
  background:#eef6ff;
  border:1px solid rgba(0,113,227,.18);
  border-radius:20px;
  padding:16px;
  display:grid;
  gap:5px;
}
.referenceProjectBox strong{
  color:#0071e3;
  font-size:13px;
  text-transform:uppercase;
  letter-spacing:.06em;
}
.referenceProjectBox span{
  font-size:18px;
  font-weight:900;
  color:#1d1d1f;
}
.referenceProjectBox small{
  color:#6e6e73;
}
.detailQuoteCta{
  width:min(1200px,92%);
  margin:24px auto 0;
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:28px;
  padding:18px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  box-shadow:0 18px 60px rgba(0,0,0,.08);
}
.detailQuoteCta div{
  display:grid;
  gap:4px;
}
.detailQuoteCta span{
  color:#6e6e73;
  font-weight:800;
}
.detailQuoteCta strong{
  font-size:22px;
  letter-spacing:-.03em;
}
.refProjectAdmin{
  background:#eef6ff;
  color:#0071e3;
  border-radius:14px;
  padding:10px 12px;
  font-weight:800;
}
.demandList{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(240px,1fr));
  gap:14px;
}
.demandItem{
  background:#fbfbfd;
  border:1px solid rgba(0,0,0,.08);
  border-radius:22px;
  padding:16px;
}
.demandItem strong{
  display:block;
  font-size:17px;
}
.demandItem span{
  color:#0071e3;
  font-weight:900;
}
.demandItem div{
  height:8px;
  background:#e5e7eb;
  border-radius:999px;
  overflow:hidden;
  margin-top:12px;
}
.demandItem i{
  display:block;
  height:100%;
  background:#0071e3;
  border-radius:999px;
}
@media(max-width:700px){
  .detailQuoteCta{
    display:grid;
    border-radius:22px;
  }
  .detailQuoteCta .btn{
    width:100%;
  }
}

/* ===== TEK TIK TEKLİF PREMIUM TASARIM FIX ===== */
.projectQuoteBtn{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  margin-top:14px!important;
  padding:11px 16px!important;
  border-radius:999px!important;
  background:var(--primary,#0071e3)!important;
  color:#fff!important;
  font-weight:900!important;
  font-size:14px!important;
  cursor:pointer!important;
  transition:.22s ease!important;
}
.projectQuoteBtn:hover{
  transform:translateY(-2px)!important;
  box-shadow:0 14px 35px rgba(0,113,227,.22)!important;
}
.detailQuoteCta.proCta{
  width:min(1200px,92%)!important;
  margin:24px auto 28px!important;
  background:linear-gradient(135deg,#ffffff,#f4f8ff)!important;
  border:1px solid rgba(0,113,227,.12)!important;
  border-radius:30px!important;
  padding:22px!important;
  display:flex!important;
  align-items:center!important;
  justify-content:space-between!important;
  gap:22px!important;
  box-shadow:0 24px 80px rgba(0,0,0,.10)!important;
}
.proCtaText{
  display:grid!important;
  gap:5px!important;
}
.proCtaText span{
  color:#0071e3!important;
  font-weight:900!important;
  text-transform:uppercase!important;
  font-size:12px!important;
  letter-spacing:.08em!important;
}
.proCtaText strong{
  font-size:clamp(24px,3vw,38px)!important;
  letter-spacing:-.04em!important;
}
.proCtaText p{
  margin:0!important;
  color:#6e6e73!important;
}
.proCtaBtn{
  white-space:nowrap!important;
  padding:15px 22px!important;
}
.referenceProjectBox{
  background:#eef6ff!important;
  border:1px solid rgba(0,113,227,.18)!important;
  border-radius:20px!important;
  padding:16px!important;
  display:grid!important;
  gap:5px!important;
}
.referenceProjectBox strong{
  color:#0071e3!important;
  font-size:13px!important;
  text-transform:uppercase!important;
  letter-spacing:.06em!important;
}
.referenceProjectBox span{
  font-size:18px!important;
  font-weight:900!important;
  color:#1d1d1f!important;
}
.referenceProjectBox small{
  color:#6e6e73!important;
}
.refProjectAdmin{
  background:#eef6ff!important;
  color:#0071e3!important;
  border-radius:16px!important;
  padding:10px 12px!important;
  font-weight:800!important;
}
.premiumDemandList{
  display:grid!important;
  gap:14px!important;
}
.premiumDemandItem{
  display:grid!important;
  grid-template-columns:62px 1fr!important;
  gap:14px!important;
  align-items:center!important;
  background:#fbfbfd!important;
  border:1px solid rgba(0,0,0,.08)!important;
  border-radius:24px!important;
  padding:16px!important;
  box-shadow:0 12px 36px rgba(0,0,0,.045)!important;
}
.demandRank{
  width:54px!important;
  height:54px!important;
  border-radius:18px!important;
  background:#0071e3!important;
  color:#fff!important;
  display:grid!important;
  place-items:center!important;
  font-weight:1000!important;
  font-size:18px!important;
}
.demandMain strong{
  display:block!important;
  font-size:20px!important;
  letter-spacing:-.03em!important;
}
.demandMain span{
  display:inline-flex!important;
  margin:5px 0 10px!important;
  color:#0071e3!important;
  font-weight:900!important;
}
.demandBar{
  height:10px!important;
  background:#e5e7eb!important;
  border-radius:999px!important;
  overflow:hidden!important;
}
.demandBar i{
  display:block!important;
  height:100%!important;
  background:linear-gradient(90deg,#0071e3,#00c2ff)!important;
  border-radius:999px!important;
}
.admin .table th:nth-child(7),
.admin .table td:nth-child(7){
  /* Dosya sütunu temiz kalsın */
  text-align:center!important;
}
@media(max-width:700px){
  .detailQuoteCta.proCta{
    display:grid!important;
    border-radius:22px!important;
  }
  .proCtaBtn{
    width:100%!important;
  }
  .premiumDemandItem{
    grid-template-columns:48px 1fr!important;
  }
  .demandRank{
    width:44px!important;
    height:44px!important;
  }
}
/* ===== UYUMLU HAREKETLİ GIF DEKORLAR ===== */
.hero{
  position:relative!important;
  overflow:hidden!important;
}
.mdDecorGif,
.mdSectionGif,
.mdContactGif{
  pointer-events:none!important;
  user-select:none!important;
}
.mdAnimHero{
  position:absolute!important;
  right:4%!important;
  top:18%!important;
  width:150px!important;
  height:auto!important;
  opacity:.78!important;
  filter:drop-shadow(0 18px 45px rgba(0,113,227,.18))!important;
  z-index:1!important;
}
.heroText,
.heroCard{
  position:relative!important;
  z-index:2!important;
}
.mdSectionGif{
  display:block!important;
  width:130px!important;
  height:auto!important;
  margin:-10px auto 24px!important;
  opacity:.88!important;
  filter:drop-shadow(0 14px 30px rgba(0,113,227,.14))!important;
}
.mdAnimPortfolio{
  width:145px!important;
}
.mdContactGif{
  width:125px!important;
  margin:0 0 10px!important;
  opacity:.9!important;
  filter:drop-shadow(0 12px 30px rgba(0,113,227,.14))!important;
}
@media(max-width:900px){
  .mdAnimHero{
    width:105px!important;
    right:8px!important;
    top:58%!important;
    opacity:.45!important;
  }
  .mdSectionGif{
    width:105px!important;
    margin-top:0!important;
  }
  .mdContactGif{
    width:105px!important;
  }
}
@media(max-width:520px){
  .mdAnimHero{
    display:none!important;
  }
}



/* ===== PREMIUM INFRASTRUCTURE PACK ===== */
.healthGrid,
.deliveryAdminGrid,
.viewStatsList,
.backupList{
  display:grid;
  grid-template-columns:repeat(auto-fill,minmax(240px,1fr));
  gap:14px;
}
.healthItem,
.backupItem,
.viewStatItem,
.deliveryAdminCard{
  background:#fbfbfd;
  border:1px solid rgba(0,0,0,.08);
  border-radius:22px;
  padding:16px;
}
.healthItem strong,
.backupItem strong,
.viewStatItem strong{
  display:block;
  font-size:17px;
  margin-bottom:5px;
}
.healthItem span,
.backupItem span,
.viewStatItem span{
  color:#6e6e73;
  font-weight:700;
}
.okHealth{
  border-color:rgba(22,163,74,.25)!important;
  background:#f0fdf4!important;
}
.badHealth{
  border-color:rgba(239,68,68,.25)!important;
  background:#fff1f2!important;
}
.deliveryAdminCard{
  display:grid;
  gap:10px;
}
.deliveryAdminTop{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}
.deliveryAdminTop strong{
  color:#0071e3;
}
.deliveryAdminTop span{
  background:#eef6ff;
  color:#0071e3;
  padding:7px 10px;
  border-radius:999px;
  font-size:12px;
  font-weight:900;
}
.deliveryMiniList,
.deliveryFilesList{
  display:grid;
  gap:10px;
}
.deliveryMiniItem,
.deliveryFileItem{
  display:grid;
  gap:4px;
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:16px;
  padding:12px;
}
.deliveryMiniItem{
  grid-template-columns:1fr auto auto;
  align-items:center;
}
.deliveryMiniItem a,
.deliveryFileItem strong{
  color:#0071e3;
  font-weight:900;
}
.deliveryMiniItem span,
.deliveryFileItem span{
  color:#6e6e73;
  font-size:13px;
}
.revisionAdminList{
  background:#fff7ed;
  border-radius:16px;
  padding:12px;
}
.revisionAdminList p{
  margin:8px 0 0;
  color:#7c2d12;
}
.deliveryNotice{
  background:#ecfdf5;
  color:#16a34a;
  border-radius:14px;
  padding:10px 12px;
  font-weight:900;
}
.revisionForm{
  display:grid;
  gap:12px;
}
.revisionForm textarea{
  width:100%;
  border:1px solid rgba(0,0,0,.1);
  background:#fff;
  border-radius:18px;
  padding:14px;
  font:inherit;
}
.viewStatItem div{
  height:9px;
  background:#e5e7eb;
  border-radius:999px;
  overflow:hidden;
  margin-top:10px;
}
.viewStatItem i{
  display:block;
  height:100%;
  background:linear-gradient(90deg,#0071e3,#00c2ff);
  border-radius:999px;
}
@media(max-width:700px){
  .deliveryMiniItem{
    grid-template-columns:1fr;
  }
}
/* ===== ADMIN SOL MENÜ SCROLL FIX ===== */
.adminSidebar,
.sidebar{
  max-height:100vh!important;
  height:100vh!important;
  overflow-y:auto!important;
  overflow-x:hidden!important;
  padding-bottom:90px!important;
  scrollbar-width:thin!important;
}

.adminSidebar::-webkit-scrollbar,
.sidebar::-webkit-scrollbar{
  width:7px!important;
}

.adminSidebar::-webkit-scrollbar-thumb,
.sidebar::-webkit-scrollbar-thumb{
  background:rgba(0,113,227,.35)!important;
  border-radius:999px!important;
}

.adminSidebar a:last-child,
.sidebar a:last-child{
  margin-bottom:70px!important;
}

@media(max-width:900px){
  .adminSidebar,
  .sidebar{
    position:relative!important;
    height:auto!important;
    max-height:none!important;
    overflow:visible!important;
    padding-bottom:24px!important;
  }
}
.footer-clock{
    display:flex;
    justify-content:center;
    align-items:center;
    gap:12px;

    margin-top:15px;

    font-size:17px;
    font-weight:600;

    color:#666;
}
footer{
  padding:28px 7% 24px!important;
  display:flex!important;
  flex-direction:column!important;
  align-items:center!important;
  justify-content:center!important;
  gap:14px!important;
}

.footer-clock{
  margin:0!important;
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  gap:10px!important;
  padding:10px 18px!important;
  border-radius:999px!important;
  background:#fff!important;
  border:1px solid rgba(0,0,0,.08)!important;
  box-shadow:0 10px 30px rgba(0,0,0,.06)!important;
  font-size:17px!important;
  font-weight:800!important;
  color:#555!important;
}

.legalFooter{
  margin:0!important;
}


/* ===== PREMIUM NEXT DAY PACK ===== */
.projectPremiumIntro{width:min(1200px,92%);margin:30px auto;display:grid;grid-template-columns:1.1fr .9fr;gap:22px;align-items:stretch}
.projectPremiumIntro>div,.projectMetaCards div,.processStep{background:#fff;border:1px solid rgba(0,0,0,.08);border-radius:30px;padding:26px;box-shadow:0 18px 55px rgba(0,0,0,.06)}
.projectPremiumIntro span{color:var(--primary,#0071e3);font-weight:900;text-transform:uppercase;letter-spacing:.09em;font-size:12px}
.projectPremiumIntro h1{margin:10px 0;font-size:clamp(42px,6vw,78px);line-height:.95;letter-spacing:-.055em}
.projectPremiumIntro p{color:#6e6e73;line-height:1.7;font-size:18px}
.projectMetaCards{display:grid;gap:14px}
.projectMetaCards div{box-shadow:none}
.projectMetaCards strong{display:block;color:#1d1d1f;margin-bottom:6px}
.projectMetaCards span{text-transform:none;letter-spacing:0;font-size:15px;color:#6e6e73}
.projectProcess{width:min(1200px,92%);margin:24px auto 34px;display:grid;grid-template-columns:repeat(4,1fr);gap:14px}
.processStep b{color:var(--primary,#0071e3);font-size:14px}
.processStep strong{display:block;margin:10px 0;font-size:21px}
.processStep p{margin:0;color:#6e6e73;line-height:1.55}
.trackProgressBox{background:#f5f5f7;border-radius:26px;padding:22px;margin:18px 0}
.trackProgressTop{display:flex;justify-content:space-between;align-items:center;gap:12px;margin-bottom:12px}
.trackProgressTop strong{font-size:20px}.trackProgressTop span{color:var(--primary,#0071e3);font-weight:1000;font-size:22px}
.trackProgressBar{height:12px;background:#e5e7eb;border-radius:999px;overflow:hidden}
.trackProgressBar i{display:block;height:100%;background:linear-gradient(90deg,var(--primary,#0071e3),#00c2ff);border-radius:999px}
.trackSteps{display:grid;grid-template-columns:repeat(6,1fr);gap:8px;margin-top:16px}
.trackSteps div{background:#fff;border:1px solid rgba(0,0,0,.08);border-radius:16px;padding:10px;text-align:center;color:#86868b;font-weight:800;font-size:12px}
.trackSteps div.done{color:#16a34a;background:#ecfdf5;border-color:rgba(22,163,74,.25)}
.trackSteps b{display:block;font-size:18px;margin-bottom:4px}.estimatedDue{margin:14px 0 0;color:#6e6e73}
.requestProgressMini{margin:10px 0}.requestProgressMini span{font-weight:900;color:var(--primary,#0071e3)}
.requestProgressMini div{height:8px;background:#e5e7eb;border-radius:999px;overflow:hidden;margin-top:7px}
.requestProgressMini i{display:block;height:100%;background:linear-gradient(90deg,var(--primary,#0071e3),#00c2ff)}
.adminLiveToast{position:fixed;right:24px;bottom:24px;z-index:9999999;width:min(360px,calc(100vw - 32px));padding:18px 20px;border-radius:22px;background:rgba(255,255,255,.94);backdrop-filter:blur(18px);border:1px solid rgba(0,113,227,.16);box-shadow:0 24px 80px rgba(0,0,0,.16);opacity:0;transform:translateY(20px) scale(.96);transition:.28s ease}
.adminLiveToast.show{opacity:1;transform:translateY(0) scale(1)}
.adminLiveToast strong{display:block;color:var(--primary,#0071e3);margin-bottom:5px}.adminLiveToast span{font-weight:900;color:#1d1d1f}
.turkeyCityMapLite{margin-top:22px;background:#fbfbfd;border:1px solid rgba(0,0,0,.08);border-radius:26px;padding:22px}
.turkeyCityMapLite h3{margin-top:0}.cityMapCloud{display:flex;flex-wrap:wrap;gap:10px;align-items:center}
.cityMapCloud span{display:inline-flex;gap:7px;align-items:center;padding:10px 14px;border-radius:999px;background:#eef6ff;color:var(--primary,#0071e3);font-size:var(--s);line-height:1;font-weight:900}
.cityMapCloud b{background:#fff;color:#1d1d1f;border-radius:999px;padding:4px 8px;font-size:13px}
.adminSidebar,.sidebar{max-height:100vh!important;height:100vh!important;overflow-y:auto!important;overflow-x:hidden!important;padding-bottom:90px!important;scrollbar-width:thin!important}
.adminSidebar a:last-child,.sidebar a:last-child{margin-bottom:70px!important}
@media(max-width:900px){.projectPremiumIntro,.projectProcess{grid-template-columns:1fr}.trackSteps{grid-template-columns:repeat(2,1fr)}.adminSidebar,.sidebar{position:relative!important;height:auto!important;max-height:none!important;overflow:visible!important}}



/* ===== AI TEKLİF HESAPLAYICI ===== */
.aiQuoteSection{
  background:
    radial-gradient(circle at 15% 10%, rgba(0,113,227,.10), transparent 30%),
    radial-gradient(circle at 85% 20%, rgba(17,0,255,.08), transparent 28%),
    #f5f5f7;
}

.aiQuoteSection .sectionHead p{
  color:#6e6e73;
  max-width:720px;
  margin:14px auto 0;
  line-height:1.65;
}

.aiQuoteBox{
  max-width:1120px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr .9fr;
  gap:24px;
  align-items:stretch;
}

.aiQuoteForm,
.aiQuoteResult{
  background:#fff;
  border:1px solid rgba(0,0,0,.08);
  border-radius:34px;
  padding:28px;
  box-shadow:0 20px 70px rgba(0,0,0,.07);
}

.aiQuoteForm{
  display:grid;
  gap:14px;
}

.aiQuoteForm label{
  font-weight:900;
  color:#1d1d1f;
}

.aiQuoteForm select{
  width:100%;
  border:1px solid rgba(0,0,0,.10);
  background:#fbfbfd;
  border-radius:18px;
  padding:15px;
  font:inherit;
}

.aiChecks{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:10px;
}

.aiChecks label{
  display:flex;
  align-items:center;
  gap:9px;
  padding:12px;
  border-radius:16px;
  background:#f5f5f7;
  color:#3a3a3c;
  font-weight:800;
  font-size:14px;
}

.aiChecks input{
  width:auto!important;
}

.aiQuoteResult{
  display:grid;
  align-content:center;
  justify-items:start;
  gap:14px;
  position:relative;
  overflow:hidden;
}

.aiQuoteResult:before{
  content:"";
  position:absolute;
  right:-70px;
  top:-70px;
  width:180px;
  height:180px;
  border-radius:50%;
  background:rgba(0,113,227,.10);
}

.aiResultIcon{
  width:64px;
  height:64px;
  border-radius:22px;
  display:grid;
  place-items:center;
  background:var(--primary,#0071e3);
  color:#fff;
  font-size:30px;
  box-shadow:0 18px 45px rgba(0,113,227,.22);
}

.aiQuoteResult h3{
  margin:0;
  font-size:32px;
  letter-spacing:-.04em;
}

.aiResultPrice{
  font-size:clamp(34px,4vw,54px);
  font-weight:1000;
  letter-spacing:-.055em;
  color:#1d1d1f;
}

.aiResultMeta{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}

.aiResultMeta span{
  padding:9px 12px;
  border-radius:999px;
  background:#eef6ff;
  color:var(--primary,#0071e3);
  font-weight:900;
  font-size:14px;
}

#aiQuoteNote{
  color:#6e6e73;
  line-height:1.6;
}

.aiQuoteContact{
  margin-top:4px;
}

.aiAdminInfoGrid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(180px,1fr));
  gap:12px;
}

.aiAdminInfoGrid div{
  background:#fbfbfd;
  border:1px solid rgba(0,0,0,.08);
  border-radius:18px;
  padding:16px;
}

.aiAdminInfoGrid strong{
  display:block;
  margin-bottom:5px;
}

.aiAdminInfoGrid span{
  color:var(--primary,#0071e3);
  font-weight:900;
}

@media(max-width:850px){
  .aiQuoteBox{
    grid-template-columns:1fr;
  }

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



/* ===== AI ADMIN + PROCESS + FIX PACK ===== */
.processSection{
  background:#fff;
}

.processSection .sectionHead p{
  color:#6e6e73;
  max-width:720px;
  margin:14px auto 0;
  line-height:1.65;
}

.processFlow{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
  max-width:1180px;
  margin:0 auto;
}

.processFlow article{
  position:relative;
  background:#f5f5f7;
  border:1px solid rgba(0,0,0,.08);
  border-radius:30px;
  padding:26px;
  overflow:hidden;
}

.processFlow article:before{
  content:"";
  position:absolute;
  right:-50px;
  top:-50px;
  width:120px;
  height:120px;
  border-radius:50%;
  background:rgba(0,113,227,.10);
}

.processFlow b{
  color:var(--primary,#0071e3);
  font-size:14px;
  font-weight:1000;
}

.processFlow h3{
  font-size:26px;
  letter-spacing:-.035em;
  margin:12px 0;
}

.processFlow p{
  color:#6e6e73;
  line-height:1.6;
  margin:0;
}

.aiAdminSettingsGrid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:14px;
  margin:18px 0;
}

.aiAdminSettingsGrid.smallGrid{
  grid-template-columns:repeat(auto-fit,minmax(260px,1fr));
}

.aiAdminSettingCard{
  background:#fbfbfd;
  border:1px solid rgba(0,0,0,.08);
  border-radius:22px;
  padding:16px;
  display:grid;
  gap:8px;
}

.aiAdminSettingCard h3{
  margin:0 0 8px;
  color:var(--primary,#0071e3);
}

.aiQuoteBadgeAdmin{
  background:#eef6ff;
  border:1px solid rgba(0,113,227,.16);
  color:var(--primary,#0071e3);
  border-radius:16px;
  padding:10px 12px;
  font-weight:900;
  margin:10px 0;
}

@media(max-width:850px){
  .processFlow{
    grid-template-columns:1fr;
  }
}



/* ===== BUSINESS DASHBOARD + CUSTOMER PANEL + LIKES ===== */
.successCounters{
  padding-top:50px!important;
  padding-bottom:50px!important;
  background:#fff;
}
.successGrid{
  max-width:1100px;
  margin:0 auto;
  display:grid;
  grid-template-columns:repeat(4,1fr);
  gap:18px;
}
.successGrid div{
  background:#f5f5f7;
  border:1px solid rgba(0,0,0,.08);
  border-radius:28px;
  padding:24px;
  text-align:center;
}
.successGrid strong{
  display:block;
  font-size:48px;
  letter-spacing:-.05em;
  color:var(--primary,#0071e3);
}
.successGrid span{
  color:#6e6e73;
  font-weight:900;
}
.portfolioLikeBtn{
  margin-top:14px;
  border:0;
  border-radius:999px;
  padding:10px 15px;
  background:#fff1f2;
  color:#e11d48;
  font-weight:900;
  cursor:pointer;
}
.portfolioLikeBtn.liked{
  background:#e11d48;
  color:#fff;
}
.customerPanelSummary{
  margin:18px 0;
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:12px;
}
.customerPanelSummary div{
  background:#f5f5f7;
  border-radius:20px;
  padding:16px;
}
.customerPanelSummary span{
  display:block;
  color:#6e6e73;
  font-weight:900;
  font-size:12px;
  text-transform:uppercase;
}
.customerPanelSummary strong{
  font-size:20px;
}
.businessStatsGrid{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(190px,1fr));
  gap:14px;
}
.businessStatsGrid div,
.likeStatItem{
  background:#fbfbfd;
  border:1px solid rgba(0,0,0,.08);
  border-radius:22px;
  padding:18px;
}
.businessStatsGrid span{
  color:#6e6e73;
  font-weight:900;
  font-size:12px;
  text-transform:uppercase;
}
.businessStatsGrid strong{
  display:block;
  font-size:42px;
  letter-spacing:-.05em;
  color:var(--primary,#0071e3);
  margin-top:8px;
}
.likesStatsList{
  display:grid;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr));
  gap:14px;
}
.likeStatItem strong{
  display:block;
  margin-bottom:8px;
}
.likeStatItem span{
  color:#e11d48;
  font-weight:900;
}
.quoteDocument header em{
  display:block;
  margin-top:8px;
  font-style:normal;
  color:#6e6e73;
  font-weight:900;
}
.quoteBackBtn{
  display:inline-flex;
  margin-left:10px;
  border-radius:999px;
  padding:13px 18px;
  background:#f5f5f7;
  color:#0071e3;
  font-weight:900;
}
@media(max-width:800px){
  .successGrid,
  .customerPanelSummary{
    grid-template-columns:1fr;
  }
}



/* ===== PREMIUM SUCCESS COUNTERS FIX ===== */
.premiumSuccess{
  position:relative!important;
  overflow:hidden!important;
  padding:80px 7%!important;
  margin:0!important;
  background:
    radial-gradient(circle at 15% 20%, rgba(0,113,227,.12), transparent 28%),
    radial-gradient(circle at 85% 15%, rgba(0,194,255,.10), transparent 30%),
    linear-gradient(180deg,#ffffff 0%,#f5f5f7 100%)!important;
}

.premiumSuccess:before{
  content:""!important;
  position:absolute!important;
  inset:auto 7% 35px 7%!important;
  height:1px!important;
  background:linear-gradient(90deg,transparent,rgba(0,113,227,.22),transparent)!important;
}

.successIntro{
  max-width:900px!important;
  margin:0 auto 34px!important;
  text-align:center!important;
}

.successIntro span{
  color:var(--primary,#0071e3)!important;
  font-weight:1000!important;
  text-transform:uppercase!important;
  letter-spacing:.12em!important;
  font-size:12px!important;
}

.successIntro h2{
  margin:12px 0 12px!important;
  font-size:clamp(36px,5vw,64px)!important;
  line-height:1!important;
  letter-spacing:-.055em!important;
  color:#1d1d1f!important;
}

.successIntro p{
  max-width:720px!important;
  margin:0 auto!important;
  color:#6e6e73!important;
  font-size:18px!important;
  line-height:1.65!important;
}

.premiumSuccess .successGrid{
  max-width:1180px!important;
  margin:0 auto!important;
  display:grid!important;
  grid-template-columns:repeat(4,1fr)!important;
  gap:18px!important;
}

.successCard{
  position:relative!important;
  min-height:210px!important;
  padding:26px!important;
  border-radius:34px!important;
  background:rgba(255,255,255,.78)!important;
  border:1px solid rgba(255,255,255,.75)!important;
  box-shadow:0 22px 70px rgba(0,0,0,.08)!important;
  backdrop-filter:blur(18px)!important;
  overflow:hidden!important;
  display:flex!important;
  flex-direction:column!important;
  align-items:flex-start!important;
  justify-content:space-between!important;
  transition:.25s ease!important;
}

.successCard:before{
  content:""!important;
  position:absolute!important;
  right:-55px!important;
  top:-55px!important;
  width:135px!important;
  height:135px!important;
  border-radius:50%!important;
  background:rgba(0,113,227,.11)!important;
  transition:.25s ease!important;
}

.successCard:hover{
  transform:translateY(-6px)!important;
  box-shadow:0 28px 90px rgba(0,113,227,.13)!important;
}

.successCard:hover:before{
  transform:scale(1.25)!important;
}

.successCard i{
  width:56px!important;
  height:56px!important;
  border-radius:20px!important;
  display:grid!important;
  place-items:center!important;
  background:#eef6ff!important;
  font-style:normal!important;
  font-size:26px!important;
  position:relative!important;
  z-index:1!important;
}

.successCard strong{
  display:block!important;
  margin-top:22px!important;
  font-size:clamp(42px,5vw,62px)!important;
  line-height:.9!important;
  letter-spacing:-.065em!important;
  color:#1d1d1f!important;
  position:relative!important;
  z-index:1!important;
}

.successCard span{
  margin-top:8px!important;
  color:#6e6e73!important;
  font-weight:900!important;
  font-size:15px!important;
  position:relative!important;
  z-index:1!important;
}

#process{
  margin-top:0!important;
}

@media(max-width:1000px){
  .premiumSuccess .successGrid{
    grid-template-columns:repeat(2,1fr)!important;
  }
}

@media(max-width:620px){
  .premiumSuccess{
    padding:62px 20px!important;
  }

  .premiumSuccess .successGrid{
    grid-template-columns:1fr!important;
  }

  .successCard{
    min-height:180px!important;
  }
}



/* ===== PREMIUM ADMIN COMMAND CENTER + LIVE NOTIFICATIONS ===== */
.commandCenterBox{
  position:relative!important;
  overflow:hidden!important;
  background:
    radial-gradient(circle at 20% 10%, rgba(0,113,227,.13), transparent 30%),
    linear-gradient(135deg,#ffffff,#f7fbff)!important;
}

.commandCenterBox:before{
  content:""!important;
  position:absolute!important;
  right:-80px!important;
  top:-80px!important;
  width:220px!important;
  height:220px!important;
  border-radius:50%!important;
  background:rgba(0,113,227,.09)!important;
}

.commandHero{
  position:relative!important;
  z-index:1!important;
  display:flex!important;
  justify-content:space-between!important;
  gap:20px!important;
  align-items:flex-start!important;
  margin-bottom:20px!important;
}

.commandHero span{
  color:var(--primary,#0071e3)!important;
  text-transform:uppercase!important;
  letter-spacing:.1em!important;
  font-size:12px!important;
  font-weight:1000!important;
}

.commandHero h2{
  margin:8px 0!important;
  font-size:clamp(30px,4vw,48px)!important;
  letter-spacing:-.055em!important;
}

.commandHero p{
  color:#6e6e73!important;
  max-width:650px!important;
  line-height:1.6!important;
}

.notifyPermissionBtn{
  border:0!important;
  border-radius:999px!important;
  padding:12px 16px!important;
  background:#111827!important;
  color:#fff!important;
  font-weight:900!important;
  cursor:pointer!important;
  white-space:nowrap!important;
}

.liveStatusPill{
  display:inline-flex!important;
  align-items:center!important;
  gap:9px!important;
  background:#ecfdf5!important;
  color:#16a34a!important;
  border:1px solid rgba(22,163,74,.18)!important;
  border-radius:999px!important;
  padding:10px 14px!important;
  font-weight:900!important;
  white-space:nowrap!important;
}

.liveStatusPill b{
  width:10px!important;
  height:10px!important;
  border-radius:50%!important;
  background:#16a34a!important;
  display:block!important;
}

.liveStatusPill b.pulse{
  animation:adminPulse .85s ease;
}

@keyframes adminPulse{
  0%{box-shadow:0 0 0 0 rgba(22,163,74,.4)}
  100%{box-shadow:0 0 0 12px rgba(22,163,74,0)}
}

.quickActionsGrid{
  position:relative!important;
  z-index:1!important;
  display:grid!important;
  grid-template-columns:repeat(auto-fit,minmax(160px,1fr))!important;
  gap:12px!important;
  margin:18px 0!important;
}

.quickActionsGrid a{
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  min-height:58px!important;
  border-radius:20px!important;
  background:#fff!important;
  border:1px solid rgba(0,0,0,.08)!important;
  box-shadow:0 10px 30px rgba(0,0,0,.045)!important;
  color:#1d1d1f!important;
  font-weight:900!important;
  transition:.22s ease!important;
}

.quickActionsGrid a:hover{
  transform:translateY(-3px)!important;
  color:var(--primary,#0071e3)!important;
  box-shadow:0 16px 45px rgba(0,113,227,.12)!important;
}

.adminSearchBox{
  position:relative!important;
  z-index:1!important;
  display:grid!important;
  gap:8px!important;
}

.adminSearchBox input{
  width:100%!important;
  border-radius:22px!important;
  padding:16px 18px!important;
  border:1px solid rgba(0,0,0,.10)!important;
  background:#fff!important;
  font:inherit!important;
}

.adminSearchBox small{
  color:#6e6e73!important;
}

.adminSearchHit{
  outline:3px solid rgba(0,113,227,.18)!important;
  box-shadow:0 0 0 8px rgba(0,113,227,.06), 0 18px 55px rgba(0,113,227,.10)!important;
}

#adminProToastWrap{
  position:fixed!important;
  right:22px!important;
  bottom:22px!important;
  z-index:99999999!important;
  display:grid!important;
  gap:12px!important;
  width:min(380px,calc(100vw - 30px))!important;
}

.adminProToast{
  position:relative!important;
  padding:18px 44px 18px 18px!important;
  border-radius:22px!important;
  background:rgba(255,255,255,.96)!important;
  border:1px solid rgba(0,113,227,.16)!important;
  box-shadow:0 24px 80px rgba(0,0,0,.17)!important;
  backdrop-filter:blur(18px)!important;
  transform:translateY(20px) scale(.96)!important;
  opacity:0!important;
  transition:.28s ease!important;
}

.adminProToast.show{
  transform:translateY(0) scale(1)!important;
  opacity:1!important;
}

.adminProToast strong{
  display:block!important;
  color:var(--primary,#0071e3)!important;
  margin-bottom:5px!important;
  font-size:16px!important;
}

.adminProToast span{
  color:#1d1d1f!important;
  font-weight:800!important;
}

.adminProToast button{
  position:absolute!important;
  right:12px!important;
  top:12px!important;
  border:0!important;
  width:26px!important;
  height:26px!important;
  border-radius:50%!important;
  background:#f5f5f7!important;
  cursor:pointer!important;
  font-weight:900!important;
}

.adminProToast.new{
  border-color:rgba(22,163,74,.22)!important;
}

.adminMobileDock{
  display:none!important;
}

@media(max-width:900px){
  .commandHero{
    display:grid!important;
  }

  .notifyPermissionBtn,
  .liveStatusPill{
    width:100%!important;
    justify-content:center!important;
  }

  .adminMobileDock{
    display:grid!important;
    grid-template-columns:repeat(4,1fr)!important;
    position:fixed!important;
    left:12px!important;
    right:12px!important;
    bottom:12px!important;
    z-index:999999!important;
    background:rgba(255,255,255,.92)!important;
    backdrop-filter:blur(18px)!important;
    border:1px solid rgba(0,0,0,.08)!important;
    border-radius:24px!important;
    padding:8px!important;
    box-shadow:0 20px 70px rgba(0,0,0,.18)!important;
  }

  .adminMobileDock a{
    display:grid!important;
    place-items:center!important;
    gap:2px!important;
    color:#1d1d1f!important;
    font-size:18px!important;
    font-weight:900!important;
  }

  .adminMobileDock span{
    font-size:11px!important;
  }

  .adminPanel,
  .proPanel,
  .panel{
    padding-bottom:100px!important;
  }
}



/* ===== ADMIN QUICK ACTION CLICK FIX ===== */
.adminScrollFocus{
  outline:4px solid rgba(0,113,227,.22)!important;
  box-shadow:0 0 0 10px rgba(0,113,227,.08), 0 24px 80px rgba(0,113,227,.13)!important;
  transition:.25s ease!important;
}

.quickActionsGrid a{
  cursor:pointer!important;
  user-select:none!important;
}

.notifyPermissionBtn{
  cursor:pointer!important;
}



/* ===== MOBILE PREMIUM LAYOUT FIX: SUCCESS + AI QUOTE ===== */
@media(max-width:768px){

  body{
    overflow-x:hidden!important;
  }

  .section{
    padding-left:22px!important;
    padding-right:22px!important;
  }

  /* Başarı sayaçları mobilde webdeki gibi kartlı görünüm */
  .premiumSuccess,
  .successCounters{
    padding:58px 22px 54px!important;
    min-height:auto!important;
    background:
      radial-gradient(circle at 20% 10%, rgba(0,113,227,.10), transparent 32%),
      linear-gradient(180deg,#fff,#f5f5f7)!important;
  }

  .successIntro{
    text-align:left!important;
    margin-bottom:24px!important;
  }

  .successIntro span{
    font-size:12px!important;
    letter-spacing:.12em!important;
  }

  .successIntro h2{
    font-size:42px!important;
    line-height:1.02!important;
    letter-spacing:-.055em!important;
    margin:12px 0!important;
  }

  .successIntro p{
    font-size:19px!important;
    line-height:1.45!important;
    margin:0!important;
  }

  .premiumSuccess .successGrid,
  .successGrid{
    display:grid!important;
    grid-template-columns:1fr 1fr!important;
    gap:12px!important;
    margin:24px 0 0!important;
    max-width:100%!important;
  }

  .successCard,
  .successGrid > div{
    min-height:145px!important;
    border-radius:24px!important;
    padding:18px!important;
    background:rgba(255,255,255,.86)!important;
    border:1px solid rgba(0,0,0,.07)!important;
    box-shadow:0 14px 38px rgba(0,0,0,.07)!important;
    display:flex!important;
    flex-direction:column!important;
    align-items:flex-start!important;
    justify-content:space-between!important;
  }

  .successCard i{
    width:42px!important;
    height:42px!important;
    border-radius:16px!important;
    font-size:22px!important;
  }

  .successCard strong,
  .successGrid strong{
    font-size:34px!important;
    line-height:1!important;
    letter-spacing:-.055em!important;
    color:#1d1d1f!important;
    margin:12px 0 4px!important;
  }

  .successCard span,
  .successGrid span{
    font-size:12px!important;
    line-height:1.25!important;
    color:#6e6e73!important;
    letter-spacing:0!important;
    text-transform:none!important;
  }

  /* AI teklif bölümü mobilde kutulu/web mantığında */
  .aiQuoteSection{
    padding:62px 22px!important;
    overflow:hidden!important;
  }

  .aiQuoteSection .sectionHead{
    text-align:left!important;
    margin:0 0 24px!important;
    max-width:100%!important;
  }

  .aiQuoteSection .sectionHead span{
    font-size:12px!important;
    letter-spacing:.12em!important;
  }

  .aiQuoteSection .sectionHead h2{
    font-size:42px!important;
    line-height:1.02!important;
    letter-spacing:-.055em!important;
    margin:12px 0!important;
  }

  .aiQuoteSection .sectionHead p{
    font-size:19px!important;
    line-height:1.45!important;
    margin:0!important;
  }

  .aiQuoteBox{
    display:grid!important;
    grid-template-columns:1fr!important;
    gap:18px!important;
    width:100%!important;
    max-width:100%!important;
    margin:0!important;
  }

  .aiQuoteForm,
  .aiQuoteResult{
    width:100%!important;
    max-width:100%!important;
    border-radius:28px!important;
    padding:22px!important;
    background:#fff!important;
    border:1px solid rgba(0,0,0,.08)!important;
    box-shadow:0 18px 50px rgba(0,0,0,.08)!important;
    display:grid!important;
    gap:14px!important;
  }

  .aiQuoteForm label{
    display:block!important;
    font-size:15px!important;
    line-height:1.25!important;
    margin:0!important;
    font-weight:900!important;
  }

  .aiQuoteForm select{
    display:block!important;
    width:100%!important;
    height:56px!important;
    border-radius:18px!important;
    padding:0 16px!important;
    font-size:16px!important;
    background:#fbfbfd!important;
    border:1px solid rgba(0,0,0,.10)!important;
  }

  .aiChecks{
    display:grid!important;
    grid-template-columns:1fr!important;
    gap:10px!important;
  }

  .aiChecks label{
    width:100%!important;
    min-height:50px!important;
    border-radius:16px!important;
    padding:12px 14px!important;
    background:#f5f5f7!important;
    display:flex!important;
    align-items:center!important;
    gap:10px!important;
    font-size:15px!important;
    line-height:1.2!important;
    font-weight:800!important;
  }

  .aiChecks input{
    width:18px!important;
    height:18px!important;
    flex:0 0 auto!important;
  }

  .aiQuoteForm .btn{
    width:100%!important;
    min-height:56px!important;
    font-size:17px!important;
    border-radius:999px!important;
  }

  .aiQuoteResult{
    align-content:start!important;
    justify-items:start!important;
  }

  .aiResultIcon{
    width:56px!important;
    height:56px!important;
    border-radius:20px!important;
    font-size:26px!important;
  }

  .aiQuoteResult h3{
    font-size:30px!important;
    line-height:1.05!important;
    margin:0!important;
  }

  .aiQuoteResult .muted{
    font-size:16px!important;
    line-height:1.45!important;
  }

  .aiResultPrice{
    font-size:34px!important;
    line-height:1.05!important;
    letter-spacing:-.045em!important;
    word-break:normal!important;
  }

  .aiResultMeta{
    display:grid!important;
    grid-template-columns:1fr!important;
    gap:8px!important;
    width:100%!important;
  }

  .aiResultMeta span{
    display:flex!important;
    align-items:center!important;
    width:100%!important;
    min-height:42px!important;
    padding:10px 12px!important;
    border-radius:14px!important;
    font-size:14px!important;
    letter-spacing:.04em!important;
    white-space:normal!important;
  }

  #aiQuoteNote{
    font-size:17px!important;
    line-height:1.45!important;
    margin:0!important;
  }

  .aiQuoteContact{
    width:100%!important;
    min-height:58px!important;
    font-size:16px!important;
    text-align:center!important;
  }

  /* Proje süreci mobil boşluk/taşma fix */
  #process{
    padding-top:60px!important;
    margin-top:0!important;
  }

  .processFlow{
    display:grid!important;
    grid-template-columns:1fr!important;
    gap:14px!important;
  }
}

@media(max-width:430px){
  .premiumSuccess .successGrid,
  .successGrid{
    grid-template-columns:1fr!important;
  }

  .successIntro h2,
  .aiQuoteSection .sectionHead h2{
    font-size:38px!important;
  }

  .aiResultPrice{
    font-size:30px!important;
  }
}



/* ===== FULL ADMIN COMPLETION UI ===== */
.advancedSeoBox,
.businessDashboardBox,
.aiQuoteAdminSettings,
.healthCenterBox,
.zipBackupBox,
.deliveryAdminBox,
.portfolioLikesBox{
  scroll-margin-top:20px!important;
}

.advancedSeoForm{
  display:grid!important;
  gap:12px!important;
}

.seoKeywordPreview{
  display:flex!important;
  flex-wrap:wrap!important;
  gap:8px!important;
  align-items:center!important;
  background:#f5f5f7!important;
  border-radius:18px!important;
  padding:14px!important;
}

.seoKeywordPreview span{
  background:#eef6ff!important;
  color:#0071e3!important;
  border-radius:999px!important;
  padding:8px 10px!important;
  font-weight:900!important;
}

.seoActionRow{
  display:flex!important;
  flex-wrap:wrap!important;
  gap:10px!important;
}

.seoChecklist,
.businessStatsGrid,
.healthGrid,
.aiAdminSettingsGrid,
.deliveryAdminGrid,
.likesStatsList,
.backupList{
  display:grid!important;
  grid-template-columns:repeat(auto-fit,minmax(220px,1fr))!important;
  gap:14px!important;
  margin-top:16px!important;
}

.businessStatsGrid div,
.healthItem,
.aiAdminSettingCard,
.deliveryAdminCard,
.likeStatItem,
.backupItem{
  background:#fbfbfd!important;
  border:1px solid rgba(0,0,0,.08)!important;
  border-radius:22px!important;
  padding:16px!important;
}

.businessStatsGrid span{
  color:#6e6e73!important;
  font-weight:900!important;
  font-size:12px!important;
  text-transform:uppercase!important;
}

.businessStatsGrid strong{
  display:block!important;
  margin-top:8px!important;
  font-size:38px!important;
  color:#0071e3!important;
  letter-spacing:-.05em!important;
}

.seoChecklist div{
  background:#ecfdf5!important;
  color:#166534!important;
  border:1px solid rgba(22,163,74,.20)!important;
  border-radius:16px!important;
  padding:12px!important;
  font-weight:900!important;
}

.okHealth{
  border-color:rgba(22,163,74,.25)!important;
  background:#f0fdf4!important;
}

.badHealth{
  border-color:rgba(239,68,68,.25)!important;
  background:#fff1f2!important;
}

.aiAdminSettingCard{
  display:grid!important;
  gap:8px!important;
}

.aiAdminSettingCard h3{
  margin:0 0 6px!important;
  color:#0071e3!important;
}

.deliveryAdminCard{
  display:grid!important;
  gap:10px!important;
}

.deliveryAdminTop{
  display:flex!important;
  justify-content:space-between!important;
  gap:10px!important;
  align-items:center!important;
}

.deliveryAdminTop span{
  background:#eef6ff!important;
  color:#0071e3!important;
  padding:7px 10px!important;
  border-radius:999px!important;
  font-weight:900!important;
  font-size:12px!important;
}

.deliveryMiniList{
  display:grid!important;
  gap:8px!important;
}

.deliveryMiniItem{
  display:grid!important;
  grid-template-columns:1fr auto auto!important;
  align-items:center!important;
  gap:8px!important;
  background:#fff!important;
  border-radius:14px!important;
  padding:10px!important;
}

.likeStatItem strong,
.backupItem strong{
  display:block!important;
  margin-bottom:6px!important;
}

.likeStatItem span{
  color:#e11d48!important;
  font-weight:900!important;
}

.backupItem span{
  color:#6e6e73!important;
  font-weight:800!important;
}

@media(max-width:700px){
  .deliveryMiniItem{
    grid-template-columns:1fr!important;
  }
}



/* ===== SEO SERVICES + FAQ PREMIUM VISUAL FIX ===== */
.seoServicesSection,
.faqSection{
  position:relative!important;
  overflow:hidden!important;
  padding:90px 7%!important;
}

.seoServicesSection{
  background:
    radial-gradient(circle at 15% 12%, rgba(0,113,227,.10), transparent 30%),
    radial-gradient(circle at 85% 18%, rgba(0,194,255,.08), transparent 28%),
    #ffffff!important;
}

.faqSection{
  background:
    radial-gradient(circle at 20% 10%, rgba(0,113,227,.08), transparent 30%),
    linear-gradient(180deg,#f5f5f7 0%,#ffffff 100%)!important;
}

.seoServicesSection .sectionHead,
.faqSection .sectionHead{
  max-width:980px!important;
  margin:0 auto 38px!important;
  text-align:center!important;
}

.seoServicesSection .sectionHead span,
.faqSection .sectionHead span{
  display:inline-flex!important;
  color:var(--primary,#0011ff)!important;
  font-weight:1000!important;
  letter-spacing:.14em!important;
  text-transform:uppercase!important;
  font-size:12px!important;
  margin-bottom:14px!important;
}

.seoServicesSection .sectionHead h2,
.faqSection .sectionHead h2{
  margin:0!important;
  color:#1d1d1f!important;
  font-size:clamp(42px,5.8vw,76px)!important;
  line-height:.96!important;
  letter-spacing:-.06em!important;
  text-align:center!important;
}

.seoServicesSection .sectionHead p,
.faqSection .sectionHead p{
  max-width:780px!important;
  margin:20px auto 0!important;
  color:#6e6e73!important;
  font-size:18px!important;
  line-height:1.7!important;
  text-align:center!important;
}

/* Hizmet kartları */
.seoServiceGrid{
  width:min(1180px,100%)!important;
  margin:0 auto!important;
  display:grid!important;
  grid-template-columns:repeat(4,1fr)!important;
  gap:18px!important;
}

.seoServiceGrid article{
  position:relative!important;
  min-height:230px!important;
  display:flex!important;
  flex-direction:column!important;
  justify-content:flex-end!important;
  padding:26px!important;
  border-radius:32px!important;
  background:rgba(255,255,255,.82)!important;
  border:1px solid rgba(0,0,0,.07)!important;
  box-shadow:0 22px 70px rgba(0,0,0,.075)!important;
  overflow:hidden!important;
  backdrop-filter:blur(18px)!important;
  transition:.25s ease!important;
}

.seoServiceGrid article:before{
  content:"✦"!important;
  position:absolute!important;
  top:22px!important;
  left:24px!important;
  width:54px!important;
  height:54px!important;
  border-radius:20px!important;
  display:grid!important;
  place-items:center!important;
  background:#eef6ff!important;
  color:var(--primary,#0011ff)!important;
  font-size:24px!important;
  font-weight:1000!important;
}

.seoServiceGrid article:after{
  content:""!important;
  position:absolute!important;
  right:-60px!important;
  top:-60px!important;
  width:155px!important;
  height:155px!important;
  border-radius:50%!important;
  background:rgba(0,113,227,.10)!important;
  transition:.25s ease!important;
}

.seoServiceGrid article:hover{
  transform:translateY(-6px)!important;
  box-shadow:0 30px 90px rgba(0,113,227,.13)!important;
}

.seoServiceGrid article:hover:after{
  transform:scale(1.2)!important;
}

.seoServiceGrid h3{
  position:relative!important;
  z-index:1!important;
  margin:0 0 12px!important;
  color:#1d1d1f!important;
  font-size:25px!important;
  line-height:1.05!important;
  letter-spacing:-.04em!important;
}

.seoServiceGrid p{
  position:relative!important;
  z-index:1!important;
  margin:0!important;
  color:#6e6e73!important;
  font-size:15px!important;
  line-height:1.65!important;
}

/* FAQ premium accordion */
.faqGrid{
  width:min(920px,100%)!important;
  margin:0 auto!important;
  display:grid!important;
  gap:14px!important;
}

.faqGrid details{
  position:relative!important;
  background:#ffffff!important;
  border:1px solid rgba(0,0,0,.08)!important;
  border-radius:24px!important;
  padding:0!important;
  box-shadow:0 16px 50px rgba(0,0,0,.055)!important;
  overflow:hidden!important;
}

.faqGrid summary{
  list-style:none!important;
  cursor:pointer!important;
  padding:22px 62px 22px 24px!important;
  color:#1d1d1f!important;
  font-weight:1000!important;
  font-size:18px!important;
  line-height:1.35!important;
  position:relative!important;
}

.faqGrid summary::-webkit-details-marker{
  display:none!important;
}

.faqGrid summary:after{
  content:"+"!important;
  position:absolute!important;
  right:22px!important;
  top:50%!important;
  transform:translateY(-50%)!important;
  width:34px!important;
  height:34px!important;
  border-radius:50%!important;
  display:grid!important;
  place-items:center!important;
  background:#eef6ff!important;
  color:var(--primary,#0011ff)!important;
  font-size:22px!important;
  font-weight:1000!important;
}

.faqGrid details[open] summary:after{
  content:"–"!important;
}

.faqGrid p{
  margin:0!important;
  padding:0 24px 24px!important;
  color:#6e6e73!important;
  font-size:16px!important;
  line-height:1.7!important;
}

/* Eski bozuk default details oklarını ez */
.faqGrid details > *{
  max-width:100%!important;
}

/* Mobil düzen */
@media(max-width:1050px){
  .seoServiceGrid{
    grid-template-columns:repeat(2,1fr)!important;
  }
}

@media(max-width:768px){
  .seoServicesSection,
  .faqSection{
    padding:64px 22px!important;
  }

  .seoServicesSection .sectionHead,
  .faqSection .sectionHead{
    text-align:left!important;
    margin-bottom:24px!important;
  }

  .seoServicesSection .sectionHead h2,
  .faqSection .sectionHead h2{
    text-align:left!important;
    font-size:42px!important;
    line-height:1.02!important;
  }

  .seoServicesSection .sectionHead p,
  .faqSection .sectionHead p{
    text-align:left!important;
    font-size:18px!important;
    line-height:1.5!important;
  }

  .seoServiceGrid{
    grid-template-columns:1fr!important;
    gap:14px!important;
  }

  .seoServiceGrid article{
    min-height:190px!important;
    border-radius:26px!important;
  }

  .faqGrid summary{
    font-size:16px!important;
    padding:20px 58px 20px 20px!important;
  }

  .faqGrid p{
    padding:0 20px 20px!important;
  }
}



/* ===== PROFESSIONAL BLOG SYSTEM ===== */
.blogSection,
.blogArchive{
  background:
    radial-gradient(circle at 12% 10%, rgba(0,113,227,.10), transparent 28%),
    linear-gradient(180deg,#ffffff,#f5f5f7)!important;
}

.blogSection .sectionHead p,
.blogArchiveHero p{
  max-width:780px!important;
  margin:18px auto 0!important;
  color:#6e6e73!important;
  font-size:18px!important;
  line-height:1.65!important;
}

.blogGrid,
.blogArchiveGrid{
  width:min(1180px,100%)!important;
  margin:0 auto!important;
  display:grid!important;
  grid-template-columns:repeat(3,1fr)!important;
  gap:20px!important;
}

.blogCard{
  display:block!important;
  color:#1d1d1f!important;
  text-decoration:none!important;
  background:#fff!important;
  border:1px solid rgba(0,0,0,.08)!important;
  border-radius:32px!important;
  overflow:hidden!important;
  box-shadow:0 22px 70px rgba(0,0,0,.075)!important;
  transition:.25s ease!important;
}

.blogCard:hover{
  transform:translateY(-6px)!important;
  box-shadow:0 30px 90px rgba(0,113,227,.13)!important;
}

.blogCard img,
.blogCardPlaceholder{
  width:100%!important;
  height:210px!important;
  object-fit:cover!important;
  display:grid!important;
  place-items:center!important;
  background:linear-gradient(135deg,#0011ff,#00b8ff)!important;
  color:#fff!important;
  font-size:42px!important;
  font-weight:1000!important;
}

.blogCard div{
  padding:24px!important;
}

.blogCard small{
  color:var(--primary,#0011ff)!important;
  font-weight:1000!important;
  text-transform:uppercase!important;
  letter-spacing:.08em!important;
  font-size:12px!important;
}

.blogCard h3,
.blogCard h2{
  margin:12px 0!important;
  font-size:26px!important;
  line-height:1.05!important;
  letter-spacing:-.045em!important;
}

.blogCard p{
  color:#6e6e73!important;
  line-height:1.6!important;
  margin:0 0 18px!important;
}

.blogCard span{
  color:var(--primary,#0011ff)!important;
  font-weight:1000!important;
}

.blogMore{
  text-align:center!important;
  margin-top:28px!important;
}

.blogHeaderMini{
  display:flex!important;
  justify-content:space-between!important;
  align-items:center!important;
  gap:16px!important;
}

.blogArchive{
  padding:90px 7%!important;
  min-height:100vh!important;
}

.blogArchiveHero{
  max-width:980px!important;
  margin:0 auto 42px!important;
  text-align:center!important;
}

.blogArchiveHero span,
.blogDetailHead small{
  color:var(--primary,#0011ff)!important;
  font-weight:1000!important;
  letter-spacing:.12em!important;
  text-transform:uppercase!important;
}

.blogArchiveHero h1{
  margin:14px 0!important;
  font-size:clamp(42px,6vw,78px)!important;
  line-height:.96!important;
  letter-spacing:-.06em!important;
}

.proBlogDetail{
  width:min(980px,calc(100% - 40px))!important;
  margin:70px auto!important;
  background:#fff!important;
  border-radius:38px!important;
  overflow:hidden!important;
  box-shadow:0 24px 90px rgba(0,0,0,.08)!important;
  border:1px solid rgba(0,0,0,.08)!important;
}

.proBlogDetail .blogCover{
  width:100%!important;
  max-height:460px!important;
  object-fit:cover!important;
  display:block!important;
}

.blogDetailHead{
  padding:42px 52px 12px!important;
}

.blogDetailHead h1{
  margin:14px 0!important;
  font-size:clamp(38px,5.5vw,72px)!important;
  line-height:.98!important;
  letter-spacing:-.06em!important;
}

.blogExcerpt{
  color:#6e6e73!important;
  font-size:20px!important;
  line-height:1.6!important;
}

.blogContent{
  padding:20px 52px 52px!important;
  color:#1d1d1f!important;
  font-size:18px!important;
  line-height:1.85!important;
}

.blogCta{
  margin:0 52px 52px!important;
  padding:32px!important;
  border-radius:28px!important;
  background:linear-gradient(135deg,#eef6ff,#ffffff)!important;
  border:1px solid rgba(0,113,227,.12)!important;
}

.blogCta h2{
  margin:0 0 10px!important;
  font-size:34px!important;
  letter-spacing:-.045em!important;
}

.blogCta p{
  color:#6e6e73!important;
  line-height:1.6!important;
}

.relatedBlogs{
  padding:0 52px 52px!important;
}

.relatedBlogGrid{
  display:grid!important;
  grid-template-columns:repeat(3,1fr)!important;
  gap:14px!important;
}

.relatedBlogGrid a{
  background:#f5f5f7!important;
  border-radius:20px!important;
  padding:18px!important;
  color:#1d1d1f!important;
  text-decoration:none!important;
}

.relatedBlogGrid small{
  color:var(--primary,#0011ff)!important;
  font-weight:900!important;
}

.relatedBlogGrid strong{
  display:block!important;
  margin-top:8px!important;
  line-height:1.25!important;
}

.blogAdminList{
  display:grid!important;
  gap:18px!important;
}

.blogAdminItem{
  border:1px solid rgba(0,0,0,.08)!important;
  border-radius:24px!important;
  padding:18px!important;
  background:#fbfbfd!important;
}

@media(max-width:950px){
  .blogGrid,
  .blogArchiveGrid,
  .relatedBlogGrid{
    grid-template-columns:1fr!important;
  }
}

@media(max-width:768px){
  .blogSection,
  .blogArchive{
    padding:64px 22px!important;
  }

  .blogArchiveHero{
    text-align:left!important;
  }

  .blogArchiveHero h1{
    font-size:42px!important;
    line-height:1.02!important;
  }

  .blogCard img,
  .blogCardPlaceholder{
    height:190px!important;
  }

  .proBlogDetail{
    width:calc(100% - 24px)!important;
    margin:24px auto!important;
    border-radius:28px!important;
  }

  .blogDetailHead,
  .blogContent,
  .relatedBlogs{
    padding-left:24px!important;
    padding-right:24px!important;
  }

  .blogDetailHead{
    padding-top:30px!important;
  }

  .blogContent{
    font-size:17px!important;
  }

  .blogCta{
    margin:0 24px 34px!important;
    padding:24px!important;
  }
}



/* ===== CLIENT PANEL + WHATSAPP OFFER + 50 BLOG BOOST ===== */
.whatsappOfferSection{
  background:linear-gradient(180deg,#fff,#f5f5f7)!important;
  padding:70px 7%!important;
}
.whatsappOfferBox{
  width:min(1120px,100%)!important;
  margin:0 auto!important;
  border-radius:36px!important;
  padding:38px!important;
  background:
    radial-gradient(circle at 90% 10%,rgba(37,211,102,.16),transparent 28%),
    #fff!important;
  border:1px solid rgba(0,0,0,.08)!important;
  box-shadow:0 24px 80px rgba(0,0,0,.08)!important;
  display:flex!important;
  align-items:center!important;
  justify-content:space-between!important;
  gap:24px!important;
}
.whatsappOfferBox span,
.clientLoginBox span,
.clientHero span{
  color:var(--primary,#0011ff)!important;
  font-weight:1000!important;
  letter-spacing:.12em!important;
  text-transform:uppercase!important;
  font-size:12px!important;
}
.whatsappOfferBox h2{
  margin:10px 0!important;
  font-size:clamp(34px,4vw,58px)!important;
  line-height:1!important;
  letter-spacing:-.055em!important;
}
.whatsappOfferBox p{
  color:#6e6e73!important;
  font-size:18px!important;
}
.clientPanelPage{
  background:#f5f5f7!important;
  color:#1d1d1f!important;
}
.clientPanelHeader{
  position:sticky!important;
  top:0!important;
  z-index:100!important;
  background:rgba(255,255,255,.9)!important;
  backdrop-filter:blur(18px)!important;
  border-bottom:1px solid rgba(0,0,0,.08)!important;
  padding:18px 7%!important;
  display:flex!important;
  align-items:center!important;
  justify-content:space-between!important;
}
.clientPanelHeader a{
  color:var(--primary,#0011ff)!important;
  font-weight:900!important;
}
.clientPanelMain{
  padding:70px 7%!important;
}
.clientLoginBox,
.clientDashboard{
  width:min(1060px,100%)!important;
  margin:0 auto!important;
}
.clientLoginBox{
  background:#fff!important;
  border-radius:38px!important;
  padding:44px!important;
  box-shadow:0 24px 80px rgba(0,0,0,.08)!important;
  border:1px solid rgba(0,0,0,.08)!important;
}
.clientLoginBox h1,
.clientHero h1{
  margin:12px 0!important;
  font-size:clamp(42px,6vw,76px)!important;
  line-height:.96!important;
  letter-spacing:-.06em!important;
}
.clientLoginBox p,
.clientHero p{
  color:#6e6e73!important;
  font-size:18px!important;
  line-height:1.6!important;
}
.clientLoginForm{
  display:grid!important;
  grid-template-columns:1fr 1fr auto!important;
  gap:12px!important;
  margin-top:24px!important;
}
.clientLoginForm input{
  border-radius:18px!important;
  border:1px solid rgba(0,0,0,.12)!important;
  padding:16px!important;
  font:inherit!important;
}
.clientHero{
  background:
    radial-gradient(circle at 90% 10%,rgba(0,113,227,.16),transparent 28%),
    #fff!important;
  border-radius:38px!important;
  padding:42px!important;
  display:flex!important;
  justify-content:space-between!important;
  gap:20px!important;
  align-items:center!important;
  box-shadow:0 24px 80px rgba(0,0,0,.08)!important;
}
.clientProgressCard,
.clientPanelBlock,
.clientInfoGrid article{
  background:#fff!important;
  border-radius:28px!important;
  padding:24px!important;
  border:1px solid rgba(0,0,0,.08)!important;
  box-shadow:0 18px 50px rgba(0,0,0,.055)!important;
}
.clientProgressCard{
  margin:20px 0!important;
}
.clientProgressTop{
  display:flex!important;
  justify-content:space-between!important;
  font-size:20px!important;
  font-weight:1000!important;
}
.clientProgress{
  height:13px!important;
  background:#e5e7eb!important;
  border-radius:999px!important;
  overflow:hidden!important;
  margin:14px 0!important;
}
.clientProgress i{
  display:block!important;
  height:100%!important;
  background:linear-gradient(90deg,var(--primary,#0011ff),#00b8ff)!important;
  border-radius:999px!important;
}
.clientInfoGrid{
  display:grid!important;
  grid-template-columns:repeat(4,1fr)!important;
  gap:14px!important;
}
.clientInfoGrid span{
  color:#6e6e73!important;
  font-size:12px!important;
  text-transform:uppercase!important;
  letter-spacing:.08em!important;
  font-weight:1000!important;
}
.clientInfoGrid strong{
  display:block!important;
  margin:8px 0!important;
  font-size:22px!important;
}
.clientPanelBlock{
  margin-top:20px!important;
}
.clientFilesGrid,
.clientTimeline{
  display:grid!important;
  gap:12px!important;
}
.clientFilesGrid a{
  display:block!important;
  border-radius:18px!important;
  padding:16px!important;
  background:#f5f5f7!important;
  color:#1d1d1f!important;
}
.clientFilesGrid span{
  display:block!important;
  color:#6e6e73!important;
  margin-top:4px!important;
}
.clientTimeline div{
  padding:16px!important;
  border-radius:18px!important;
  background:#f5f5f7!important;
}
.deliveryNote{
  margin-top:14px!important;
  padding:16px!important;
  border-radius:18px!important;
  background:#eef6ff!important;
}
@media(max-width:900px){
  .whatsappOfferBox,
  .clientHero{
    display:grid!important;
  }
  .clientLoginForm,
  .clientInfoGrid{
    grid-template-columns:1fr!important;
  }
  .clientLoginBox,
  .clientHero{
    padding:28px!important;
  }
}



/* =========================================================
   EMERGENCY VISUAL RESTORE - Mehmet Doydu Site
   ========================================================= */

*{box-sizing:border-box!important}
html{scroll-behavior:smooth!important}
body{
  margin:0!important;
  overflow-x:hidden!important;
  background:#f5f5f7!important;
  color:#1d1d1f!important;
  font-family:-apple-system,BlinkMacSystemFont,"Segoe UI",Roboto,Arial,sans-serif!important;
}
a{text-decoration:none!important}
img{max-width:100%!important}

.section{
  padding:90px 7%!important;
  position:relative!important;
  overflow:hidden!important;
}
.sectionHead{
  max-width:980px!important;
  margin:0 auto 42px!important;
  text-align:center!important;
}
.sectionHead span,
.processSection .sectionHead span,
.faqSection .sectionHead span,
.seoServicesSection .sectionHead span{
  display:inline-flex!important;
  color:var(--primary,#0011ff)!important;
  font-weight:1000!important;
  letter-spacing:.14em!important;
  text-transform:uppercase!important;
  font-size:12px!important;
  margin-bottom:14px!important;
}
.sectionHead h2{
  margin:0!important;
  color:#1d1d1f!important;
  font-size:clamp(42px,5.8vw,76px)!important;
  line-height:.96!important;
  letter-spacing:-.06em!important;
}
.sectionHead p{
  max-width:780px!important;
  margin:18px auto 0!important;
  color:#6e6e73!important;
  font-size:18px!important;
  line-height:1.65!important;
}

/* Başarı sayaçları */
.successCounters,
#success{
  padding:70px 7%!important;
  background:
    radial-gradient(circle at 10% 10%, rgba(0,113,227,.10), transparent 28%),
    linear-gradient(180deg,#ffffff,#f5f5f7)!important;
}
.successGrid{
  width:min(1180px,100%)!important;
  margin:0 auto!important;
  display:grid!important;
  grid-template-columns:repeat(4,1fr)!important;
  gap:18px!important;
}
.successGrid > div{
  min-height:190px!important;
  border-radius:32px!important;
  padding:28px!important;
  background:#fff!important;
  border:1px solid rgba(0,0,0,.08)!important;
  box-shadow:0 22px 70px rgba(0,0,0,.075)!important;
  display:flex!important;
  flex-direction:column!important;
  justify-content:center!important;
  align-items:flex-start!important;
  position:relative!important;
  overflow:hidden!important;
}
.successGrid > div:before{
  content:"✦"!important;
  position:absolute!important;
  right:-38px!important;
  top:-38px!important;
  width:120px!important;
  height:120px!important;
  border-radius:50%!important;
  background:rgba(0,113,227,.10)!important;
}
.successGrid strong{
  display:block!important;
  color:#1d1d1f!important;
  font-size:clamp(42px,5vw,72px)!important;
  line-height:.9!important;
  letter-spacing:-.06em!important;
  margin:0 0 12px!important;
}
.successGrid span{
  color:var(--primary,#0011ff)!important;
  font-size:14px!important;
  font-weight:1000!important;
  letter-spacing:.08em!important;
  text-transform:uppercase!important;
}

/* Çalışma süreci */
.processSection,
#process{
  padding:100px 7%!important;
  background:#fff!important;
}
.processFlow{
  width:min(1180px,100%)!important;
  margin:0 auto!important;
  display:grid!important;
  grid-template-columns:repeat(4,1fr)!important;
  gap:18px!important;
}
.processFlow article{
  min-height:260px!important;
  border-radius:32px!important;
  padding:28px!important;
  background:linear-gradient(180deg,#ffffff,#f5f5f7)!important;
  border:1px solid rgba(0,0,0,.08)!important;
  box-shadow:0 22px 70px rgba(0,0,0,.07)!important;
  position:relative!important;
  overflow:hidden!important;
  display:flex!important;
  flex-direction:column!important;
  justify-content:flex-end!important;
}
.processFlow article:after{
  content:""!important;
  position:absolute!important;
  right:-55px!important;
  top:-55px!important;
  width:150px!important;
  height:150px!important;
  background:rgba(0,113,227,.10)!important;
  border-radius:50%!important;
}
.processFlow b{
  position:absolute!important;
  top:24px!important;
  left:24px!important;
  width:58px!important;
  height:58px!important;
  display:grid!important;
  place-items:center!important;
  border-radius:20px!important;
  background:#eef6ff!important;
  color:var(--primary,#0011ff)!important;
  font-weight:1000!important;
}
.processFlow h3{
  position:relative!important;
  z-index:1!important;
  margin:0 0 12px!important;
  font-size:27px!important;
  letter-spacing:-.04em!important;
  color:#1d1d1f!important;
}
.processFlow p{
  position:relative!important;
  z-index:1!important;
  margin:0!important;
  color:#6e6e73!important;
  line-height:1.6!important;
}

/* FAQ */
.faqSection{
  background:
    radial-gradient(circle at 20% 10%, rgba(0,113,227,.08), transparent 30%),
    linear-gradient(180deg,#f5f5f7 0%,#ffffff 100%)!important;
}
.faqGrid{
  width:min(920px,100%)!important;
  margin:0 auto!important;
  display:grid!important;
  gap:14px!important;
}
.faqGrid details{
  background:#fff!important;
  border:1px solid rgba(0,0,0,.08)!important;
  border-radius:24px!important;
  padding:0!important;
  box-shadow:0 16px 50px rgba(0,0,0,.055)!important;
  overflow:hidden!important;
}
.faqGrid summary{
  list-style:none!important;
  cursor:pointer!important;
  padding:22px 62px 22px 24px!important;
  color:#1d1d1f!important;
  font-weight:1000!important;
  font-size:18px!important;
  line-height:1.35!important;
  position:relative!important;
}
.faqGrid summary::-webkit-details-marker{display:none!important}
.faqGrid summary:after{
  content:"+"!important;
  position:absolute!important;
  right:22px!important;
  top:50%!important;
  transform:translateY(-50%)!important;
  width:34px!important;
  height:34px!important;
  border-radius:50%!important;
  display:grid!important;
  place-items:center!important;
  background:#eef6ff!important;
  color:var(--primary,#0011ff)!important;
  font-size:22px!important;
  font-weight:1000!important;
}
.faqGrid details[open] summary:after{content:"–"!important}
.faqGrid p{
  margin:0!important;
  padding:0 24px 24px!important;
  color:#6e6e73!important;
  font-size:16px!important;
  line-height:1.7!important;
}

/* SEO hizmetleri */
.seoServicesSection{
  background:
    radial-gradient(circle at 15% 12%, rgba(0,113,227,.10), transparent 30%),
    #fff!important;
}
.seoServiceGrid{
  width:min(1180px,100%)!important;
  margin:0 auto!important;
  display:grid!important;
  grid-template-columns:repeat(4,1fr)!important;
  gap:18px!important;
}
.seoServiceGrid article{
  min-height:230px!important;
  border-radius:32px!important;
  padding:26px!important;
  background:#fff!important;
  border:1px solid rgba(0,0,0,.08)!important;
  box-shadow:0 22px 70px rgba(0,0,0,.075)!important;
  display:flex!important;
  flex-direction:column!important;
  justify-content:flex-end!important;
  position:relative!important;
  overflow:hidden!important;
}
.seoServiceGrid article:before{
  content:"✦"!important;
  position:absolute!important;
  top:22px!important;
  left:24px!important;
  width:54px!important;
  height:54px!important;
  border-radius:20px!important;
  display:grid!important;
  place-items:center!important;
  background:#eef6ff!important;
  color:var(--primary,#0011ff)!important;
  font-size:24px!important;
  font-weight:1000!important;
}
.seoServiceGrid h3{
  margin:0 0 12px!important;
  color:#1d1d1f!important;
  font-size:25px!important;
  line-height:1.05!important;
  letter-spacing:-.04em!important;
}
.seoServiceGrid p{
  margin:0!important;
  color:#6e6e73!important;
  font-size:15px!important;
  line-height:1.65!important;
}

/* Footer canlı Türkiye saati */
.footer-clock{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  gap:10px!important;
  margin-top:18px!important;
  padding:12px 22px!important;
  border-radius:999px!important;
  background:#fff!important;
  box-shadow:0 12px 36px rgba(0,0,0,.08)!important;
  font-weight:900!important;
  color:#4b5563!important;
}
.footer-clock span{font-weight:1000!important}
#trDate,#trTime{color:#1d1d1f!important}

@media(max-width:1050px){
  .successGrid,
  .processFlow,
  .seoServiceGrid{
    grid-template-columns:repeat(2,1fr)!important;
  }
}
@media(max-width:768px){
  .section,
  .successCounters,
  #success,
  .processSection,
  #process,
  .faqSection,
  .seoServicesSection{
    padding:64px 22px!important;
  }
  .sectionHead{
    text-align:left!important;
    margin-bottom:26px!important;
  }
  .sectionHead h2{
    text-align:left!important;
    font-size:42px!important;
    line-height:1.02!important;
  }
  .sectionHead p{
    text-align:left!important;
    margin-left:0!important;
    margin-right:0!important;
  }
  .successGrid,
  .processFlow,
  .seoServiceGrid{
    grid-template-columns:1fr!important;
  }
  .successGrid > div{min-height:145px!important}
  .processFlow article{min-height:220px!important}
}



/* ===== AI LOGO PREVIEW + PREMIUM REFERENCES ===== */
.logoPreviewHomeSection,
.premiumRefsSection{
  background:linear-gradient(180deg,#fff,#f5f5f7)!important;
}
.logoPreviewHomeBox{
  width:min(1160px,100%)!important;
  margin:0 auto!important;
  border-radius:38px!important;
  padding:38px!important;
  background:
    radial-gradient(circle at 90% 0%,rgba(0,113,227,.16),transparent 28%),
    #fff!important;
  border:1px solid rgba(0,0,0,.08)!important;
  box-shadow:0 24px 80px rgba(0,0,0,.08)!important;
  display:grid!important;
  grid-template-columns:1fr 1fr!important;
  gap:28px!important;
  align-items:center!important;
}
.logoPreviewHomeBox span,
.logoPreviewHero span{
  color:var(--primary,#0011ff)!important;
  font-weight:1000!important;
  letter-spacing:.12em!important;
  text-transform:uppercase!important;
  font-size:12px!important;
}
.logoPreviewHomeBox h2{
  margin:10px 0!important;
  font-size:clamp(38px,5vw,72px)!important;
  line-height:.96!important;
  letter-spacing:-.06em!important;
}
.logoPreviewHomeBox p{color:#6e6e73!important;font-size:18px!important;line-height:1.6!important}
.logoPreviewMiniForm{
  display:grid!important;
  gap:12px!important;
}
.logoPreviewMiniForm input{
  border-radius:18px!important;
  border:1px solid rgba(0,0,0,.12)!important;
  padding:16px!important;
  font:inherit!important;
}
.logoPreviewPage{
  background:#f5f5f7!important;
}
.logoPreviewMain{
  padding:70px 7%!important;
}
.logoPreviewHero{
  width:min(1050px,100%)!important;
  margin:0 auto 28px!important;
  padding:42px!important;
  border-radius:38px!important;
  background:#fff!important;
  border:1px solid rgba(0,0,0,.08)!important;
  box-shadow:0 24px 80px rgba(0,0,0,.08)!important;
  text-align:center!important;
}
.logoPreviewHero h1{
  margin:14px auto!important;
  max-width:850px!important;
  font-size:clamp(42px,6vw,82px)!important;
  line-height:.94!important;
  letter-spacing:-.065em!important;
}
.logoPreviewHero p{
  max-width:720px!important;
  margin:0 auto 24px!important;
  color:#6e6e73!important;
  font-size:18px!important;
  line-height:1.6!important;
}
.logoPreviewForm{
  display:grid!important;
  grid-template-columns:1fr 1fr 170px auto!important;
  gap:12px!important;
}
.logoPreviewForm input,
.logoPreviewForm select{
  border-radius:18px!important;
  border:1px solid rgba(0,0,0,.12)!important;
  padding:15px!important;
  font:inherit!important;
}
.logoConceptGrid{
  width:min(1180px,100%)!important;
  margin:0 auto!important;
  display:grid!important;
  grid-template-columns:repeat(3,1fr)!important;
  gap:18px!important;
}
.logoConceptCard{
  min-height:390px!important;
  border-radius:34px!important;
  padding:26px!important;
  background:#fff!important;
  border:1px solid rgba(0,0,0,.08)!important;
  box-shadow:0 22px 70px rgba(0,0,0,.075)!important;
  display:flex!important;
  flex-direction:column!important;
  justify-content:space-between!important;
  overflow:hidden!important;
}
.logoMarkPreview{
  height:160px!important;
  border-radius:26px!important;
  display:grid!important;
  place-items:center!important;
  background:linear-gradient(135deg,#111827,#0071e3)!important;
  color:#fff!important;
  font-size:54px!important;
  font-weight:1000!important;
  letter-spacing:-.08em!important;
}
.logoConcept2 .logoMarkPreview{background:linear-gradient(135deg,#f5f5f7,#111827)!important;color:#111!important}
.logoConcept3 .logoMarkPreview{background:linear-gradient(135deg,#0071e3,#00c2ff)!important}
.logoConceptCard small{
  margin-top:18px!important;
  color:var(--primary,#0011ff)!important;
  font-weight:1000!important;
  text-transform:uppercase!important;
  letter-spacing:.08em!important;
}
.logoConceptCard h2{
  font-size:28px!important;
  line-height:1!important;
  letter-spacing:-.045em!important;
}
.logoConceptCard p{color:#6e6e73!important;line-height:1.6!important}
.logoConceptCard strong{font-size:24px!important}
.logoPreviewCta{
  width:min(920px,100%)!important;
  margin:28px auto 0!important;
  padding:34px!important;
  border-radius:32px!important;
  background:#fff!important;
  text-align:center!important;
  border:1px solid rgba(0,0,0,.08)!important;
  box-shadow:0 20px 60px rgba(0,0,0,.07)!important;
}
.logoPreviewCta h2{font-size:38px!important;letter-spacing:-.05em!important;margin:0 0 10px!important}
.logoPreviewCta p{color:#6e6e73!important}
.premiumRefsGrid{
  width:min(1180px,100%)!important;
  margin:0 auto!important;
  display:grid!important;
  grid-template-columns:repeat(4,1fr)!important;
  gap:18px!important;
}
.premiumRefsGrid article{
  min-height:310px!important;
  border-radius:34px!important;
  padding:26px!important;
  background:#fff!important;
  border:1px solid rgba(0,0,0,.08)!important;
  box-shadow:0 22px 70px rgba(0,0,0,.075)!important;
}
.premiumRefsGrid small{
  color:var(--primary,#0011ff)!important;
  font-weight:1000!important;
  letter-spacing:.08em!important;
  text-transform:uppercase!important;
}
.premiumRefsGrid h3{
  font-size:27px!important;
  line-height:1!important;
  letter-spacing:-.045em!important;
}
.premiumRefsGrid p{
  color:#6e6e73!important;
  line-height:1.6!important;
}
.premiumRefsGrid div{
  margin-top:16px!important;
  padding-top:14px!important;
  border-top:1px solid rgba(0,0,0,.08)!important;
}
.premiumRefsGrid span{
  display:block!important;
  color:#86868b!important;
  font-size:12px!important;
  font-weight:1000!important;
  text-transform:uppercase!important;
}
.premiumRefsGrid strong{
  display:block!important;
  margin-top:5px!important;
  color:#1d1d1f!important;
}
@media(max-width:1050px){
  .premiumRefsGrid{grid-template-columns:repeat(2,1fr)!important}
  .logoConceptGrid{grid-template-columns:1fr!important}
  .logoPreviewForm{grid-template-columns:1fr!important}
  .logoPreviewHomeBox{grid-template-columns:1fr!important}
}
@media(max-width:768px){
  .premiumRefsGrid{grid-template-columns:1fr!important}
  .logoPreviewMain{padding:30px 18px!important}
  .logoPreviewHero{padding:28px!important;text-align:left!important}
}



/* ===== STABILITY AI LOGO GENERATOR ===== */
.stAiLogoHomeSection{background:linear-gradient(180deg,#fff,#f5f5f7)!important}
.stAiLogoHomeBox{
  width:min(1160px,100%)!important;
  margin:0 auto!important;
  padding:38px!important;
  border-radius:38px!important;
  background:radial-gradient(circle at 92% 0%,rgba(0,113,227,.16),transparent 30%),#fff!important;
  border:1px solid rgba(0,0,0,.08)!important;
  box-shadow:0 24px 80px rgba(0,0,0,.08)!important;
  display:flex!important;
  align-items:center!important;
  justify-content:space-between!important;
  gap:26px!important;
}
.stAiLogoHomeBox span,.stAiLogoHero span{
  color:var(--primary,#0011ff)!important;
  font-weight:1000!important;
  letter-spacing:.12em!important;
  text-transform:uppercase!important;
  font-size:12px!important;
}
.stAiLogoHomeBox h2{
  margin:10px 0!important;
  font-size:clamp(38px,5vw,72px)!important;
  line-height:.96!important;
  letter-spacing:-.06em!important;
}
.stAiLogoHomeBox p{color:#6e6e73!important;font-size:18px!important;line-height:1.6!important}
.stAiLogoPage{background:#f5f5f7!important}
.stAiLogoMain{padding:70px 7%!important}
.stAiLogoHero{
  width:min(1050px,100%)!important;
  margin:0 auto 24px!important;
  padding:42px!important;
  border-radius:38px!important;
  background:#fff!important;
  border:1px solid rgba(0,0,0,.08)!important;
  box-shadow:0 24px 80px rgba(0,0,0,.08)!important;
  text-align:center!important;
}
.stAiLogoHero h1{
  margin:14px auto!important;
  max-width:880px!important;
  font-size:clamp(42px,6vw,82px)!important;
  line-height:.94!important;
  letter-spacing:-.065em!important;
}
.stAiLogoHero p{
  max-width:760px!important;
  margin:0 auto!important;
  color:#6e6e73!important;
  font-size:18px!important;
  line-height:1.6!important;
}
.stAiLogoGrid{
  width:min(1180px,100%)!important;
  margin:0 auto!important;
  display:grid!important;
  grid-template-columns:.85fr 1.15fr!important;
  gap:20px!important;
}
.stAiLogoForm,.stAiLogoResult{
  background:#fff!important;
  border-radius:34px!important;
  padding:28px!important;
  border:1px solid rgba(0,0,0,.08)!important;
  box-shadow:0 22px 70px rgba(0,0,0,.075)!important;
}
.stAiLogoForm label{display:block!important;font-weight:900!important;margin-bottom:8px!important}
.stAiLogoForm input,.stAiLogoForm select{
  border-radius:18px!important;
  border:1px solid rgba(0,0,0,.12)!important;
  padding:15px!important;
  width:100%!important;
  font:inherit!important;
}
.stAiLogoForm > div{margin-bottom:14px!important}
.stAiNote{display:block!important;margin-top:12px!important;color:#86868b!important}
.stAiEmpty{
  min-height:460px!important;
  border-radius:28px!important;
  display:grid!important;
  place-items:center!important;
  text-align:center!important;
  background:radial-gradient(circle at 50% 0%,rgba(0,113,227,.12),transparent 34%),#f5f5f7!important;
  color:#6e6e73!important;
}
.stAiEmpty strong{display:block!important;color:#1d1d1f!important;font-size:28px!important;letter-spacing:-.04em!important}
.stAiPreviewCard{display:grid!important;gap:20px!important}
.stAiPreviewCard img{
  width:100%!important;
  border-radius:28px!important;
  box-shadow:0 18px 60px rgba(0,0,0,.12)!important;
  user-select:none!important;
  -webkit-user-drag:none!important;
}
.stAiPreviewCard small{color:var(--primary,#0011ff)!important;font-weight:1000!important}
.stAiPreviewCard h2{margin:6px 0!important;font-size:40px!important;letter-spacing:-.055em!important}
.stAiPreviewCard p{color:#6e6e73!important}
.stLogoAdminShell{
  min-height:100vh!important;
  padding:30px!important;
  background:#f5f5f7!important;
}
.stLogoAdminShell header{
  display:flex!important;
  justify-content:space-between!important;
  align-items:center!important;
  gap:20px!important;
  padding:26px!important;
  border-radius:30px!important;
  background:#fff!important;
  box-shadow:0 20px 70px rgba(0,0,0,.08)!important;
}
.stLogoAdminShell header h1{font-size:42px!important;letter-spacing:-.06em!important;margin:0!important}
.stLogoAdminGrid{
  margin-top:24px!important;
  display:grid!important;
  grid-template-columns:repeat(3,1fr)!important;
  gap:18px!important;
}
.stLogoAdminGrid article,.stLogoAdminEmpty{
  background:#fff!important;
  border-radius:30px!important;
  padding:22px!important;
  border:1px solid rgba(0,0,0,.08)!important;
  box-shadow:0 18px 55px rgba(0,0,0,.07)!important;
}
.stLogoAdminGrid img{width:100%!important;border-radius:22px!important;margin-bottom:16px!important}
.stLogoAdminGrid small{color:var(--primary,#0011ff)!important;font-weight:900!important}
.stLogoAdminGrid h2{font-size:28px!important;letter-spacing:-.04em!important}
@media(max-width:1000px){
  .stAiLogoGrid{grid-template-columns:1fr!important}
  .stAiLogoHomeBox{display:grid!important}
  .stLogoAdminGrid{grid-template-columns:1fr!important}
}
@media(max-width:768px){
  .stAiLogoMain{padding:30px 18px!important}
  .stAiLogoHero{padding:28px!important;text-align:left!important}
}



/* ===== AI LOGO POLISH PATCH ===== */
.stAiLogoHomeBox span,
.stAiLogoHero span{
  font-size:0!important;
}
.stAiLogoHomeBox span:after{
  content:"AI LOGO GENERATOR"!important;
  font-size:12px!important;
}
.stAiLogoHero span:after{
  content:"AI LOGO GENERATOR"!important;
  font-size:12px!important;
}
.stAiLogoHomeBox{
  background:
    radial-gradient(circle at 88% 0%,rgba(0,113,227,.15),transparent 30%),
    radial-gradient(circle at 0% 100%,rgba(0,0,0,.04),transparent 26%),
    #fff!important;
}
.stAiPreviewCard img{
  background:#f5f5f7!important;
}


/* ===== MAVİFOLYO42 BLOG ARCHIVE ENHANCEMENTS v1 ===== */
.enhancedBlogHero{position:relative!important}
.blogArchiveStats{
  display:grid!important;
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
  gap:14px!important;
  max-width:760px!important;
  margin:28px auto 0!important;
}
.blogArchiveStats div{
  background:#fff!important;
  border:1px solid rgba(0,0,0,.07)!important;
  border-radius:24px!important;
  padding:18px!important;
  box-shadow:0 14px 45px rgba(0,0,0,.045)!important;
}
.blogArchiveStats strong{
  display:block!important;
  color:#1d1d1f!important;
  font-size:34px!important;
  letter-spacing:-.045em!important;
  line-height:1!important;
}
.blogArchiveStats small{
  display:block!important;
  margin-top:8px!important;
  color:#6e6e73!important;
  font-weight:800!important;
}
.blogArchiveToolbar{
  width:min(1180px,100%)!important;
  margin:0 auto 28px!important;
  background:#fff!important;
  border:1px solid rgba(0,0,0,.08)!important;
  border-radius:30px!important;
  padding:16px!important;
  box-shadow:0 18px 55px rgba(0,0,0,.06)!important;
}
.blogFilterForm{
  display:grid!important;
  grid-template-columns:minmax(260px,1fr) minmax(220px,320px) auto auto!important;
  gap:12px!important;
  align-items:end!important;
}
.blogFilterForm label{
  display:block!important;
  margin:0 0 8px!important;
  color:#3a3a3c!important;
  font-weight:900!important;
  font-size:13px!important;
}
.blogFilterForm input,
.blogFilterForm select{
  width:100%!important;
  height:52px!important;
  border:1px solid rgba(0,0,0,.10)!important;
  background:#f5f5f7!important;
  color:#1d1d1f!important;
  border-radius:18px!important;
  padding:0 16px!important;
  font:inherit!important;
  outline:none!important;
}
.blogFilterForm input:focus,
.blogFilterForm select:focus{
  background:#fff!important;
  border-color:var(--primary,#0071e3)!important;
  box-shadow:0 0 0 4px color-mix(in srgb,var(--primary,#0071e3) 14%, transparent)!important;
}
.blogFilterForm .btn{
  height:52px!important;
  white-space:nowrap!important;
}
.enhancedBlogGrid{margin-top:0!important}
.blogEmptyState{
  width:min(760px,100%)!important;
  margin:0 auto!important;
  text-align:center!important;
  background:#fff!important;
  border:1px solid rgba(0,0,0,.08)!important;
  border-radius:34px!important;
  padding:42px!important;
  box-shadow:0 18px 55px rgba(0,0,0,.06)!important;
}
.blogEmptyState h2{
  margin:0 0 10px!important;
  font-size:42px!important;
  letter-spacing:-.045em!important;
}
.blogEmptyState p{color:#6e6e73!important;line-height:1.6!important}
.blogPagination{
  width:min(1180px,100%)!important;
  margin:28px auto 0!important;
  display:flex!important;
  align-items:center!important;
  justify-content:center!important;
  gap:12px!important;
  flex-wrap:wrap!important;
}
.blogPagination a,
.blogPagination span{
  display:inline-flex!important;
  align-items:center!important;
  justify-content:center!important;
  min-height:46px!important;
  padding:12px 18px!important;
  border-radius:999px!important;
  background:#fff!important;
  border:1px solid rgba(0,0,0,.08)!important;
  color:#1d1d1f!important;
  font-weight:900!important;
  box-shadow:0 10px 30px rgba(0,0,0,.045)!important;
}
.blogPagination a:hover{
  color:#fff!important;
  background:var(--primary,#0071e3)!important;
}
.relatedBlogs h2{
  margin:0 0 16px!important;
  font-size:32px!important;
  letter-spacing:-.04em!important;
}

body.theme-dark .blogArchiveStats div,
body.theme-dark .blogArchiveToolbar,
body.theme-dark .blogEmptyState,
body.theme-dark .blogPagination a,
body.theme-dark .blogPagination span,
body.theme-dark .blogFilterForm input,
body.theme-dark .blogFilterForm select,
body.theme-midnight .blogArchiveStats div,
body.theme-midnight .blogArchiveToolbar,
body.theme-midnight .blogEmptyState,
body.theme-midnight .blogPagination a,
body.theme-midnight .blogPagination span,
body.theme-midnight .blogFilterForm input,
body.theme-midnight .blogFilterForm select,
body.theme-neon .blogArchiveStats div,
body.theme-neon .blogArchiveToolbar,
body.theme-neon .blogEmptyState,
body.theme-neon .blogPagination a,
body.theme-neon .blogPagination span,
body.theme-neon .blogFilterForm input,
body.theme-neon .blogFilterForm select{
  background:#111827!important;
  color:#f5f5f7!important;
  border-color:rgba(255,255,255,.10)!important;
}
body.theme-dark .blogArchiveStats strong,
body.theme-dark .blogPagination a,
body.theme-dark .blogPagination span,
body.theme-midnight .blogArchiveStats strong,
body.theme-midnight .blogPagination a,
body.theme-midnight .blogPagination span,
body.theme-neon .blogArchiveStats strong,
body.theme-neon .blogPagination a,
body.theme-neon .blogPagination span{color:#fff!important}
body.theme-dark .blogFilterForm label,
body.theme-midnight .blogFilterForm label,
body.theme-neon .blogFilterForm label{color:#dbeafe!important}

@media(max-width:950px){
  .blogFilterForm{grid-template-columns:1fr!important}
  .blogArchiveStats{grid-template-columns:1fr!important;text-align:left!important}
}
@media(max-width:768px){
  .blogArchiveToolbar{border-radius:24px!important;padding:14px!important}
  .blogEmptyState{padding:28px!important;border-radius:26px!important}
  .blogEmptyState h2{font-size:34px!important}
}


/* ===== MAVİFOLYO42 PORTFOLIO LIVE ADDONS ===== */
.portfolioLiveSection{
  background:linear-gradient(180deg,#f5f5f7 0%,#fff 100%);
}
.portfolioLiveSection .sectionHead p{
  max-width:760px;
  margin:14px auto 0;
  color:#6e6e73;
  line-height:1.65;
}
.portfolioLiveGrid{
  display:grid;
  grid-template-columns:minmax(0,1.35fr) minmax(320px,.65fr);
  gap:24px;
  align-items:stretch;
}
.dailyProjectCard,
.latestProjectsPanel{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:40px;
  box-shadow:0 18px 55px rgba(0,0,0,.06);
  overflow:hidden;
}
.dailyProjectCard{
  display:grid;
  grid-template-columns:minmax(0,.95fr) minmax(0,1.05fr);
  min-height:430px;
}
.dailyProjectMedia{
  background:linear-gradient(145deg,#1d1d1f,#3a3a3c);
  min-height:430px;
}
.dailyProjectMedia img{
  width:100%;
  height:100%;
  object-fit:cover;
}
.dailyProjectPlaceholder{
  width:100%;
  height:100%;
  min-height:430px;
  display:grid;
  place-items:center;
  color:#fff;
  font-size:72px;
  font-weight:900;
  letter-spacing:-.08em;
}
.dailyProjectInfo{
  padding:38px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.dailyProjectInfo small,
.latestProjectsHead span{
  color:var(--primary,#0071e3);
  font-size:12px;
  font-weight:900;
  letter-spacing:.1em;
  text-transform:uppercase;
}
.dailyProjectInfo h3{
  margin:10px 0 14px;
  font-size:clamp(34px,4vw,58px);
  line-height:1;
  letter-spacing:-.045em;
}
.dailyProjectInfo p{
  color:#6e6e73;
  line-height:1.65;
  margin:0 0 24px;
}
.dailyProjectActions{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}
.latestProjectsPanel{
  padding:24px;
}
.latestProjectsHead{
  display:flex;
  align-items:flex-start;
  justify-content:space-between;
  gap:14px;
  margin-bottom:18px;
}
.latestProjectsHead strong{
  font-size:25px;
  letter-spacing:-.035em;
}
.latestProjectsList{
  display:grid;
  gap:14px;
}
.latestProjectsList a{
  display:grid;
  grid-template-columns:96px 1fr;
  gap:14px;
  align-items:center;
  padding:12px;
  border-radius:24px;
  background:#f5f5f7;
  border:1px solid rgba(0,0,0,.05);
  transition:.25s ease;
}
.latestProjectsList a:hover{
  transform:translateY(-3px);
  background:#eef6ff;
}
.latestProjectsList img,
.latestProjectsList b{
  width:96px;
  height:76px;
  border-radius:18px;
  object-fit:cover;
  background:#1d1d1f;
  color:#fff;
  display:grid;
  place-items:center;
}
.latestProjectsList small{
  display:block;
  color:var(--primary,#0071e3);
  font-weight:800;
  margin-bottom:5px;
}
.latestProjectsList strong{
  display:block;
  color:#1d1d1f;
  line-height:1.2;
}
.liveStatsSection{
  background:#fff;
}
body.theme-dark .portfolioLiveSection,
body.theme-neon .portfolioLiveSection,
body.theme-midnight .portfolioLiveSection{
  background:linear-gradient(180deg,#07080d,#090b12)!important;
}
body.theme-dark .dailyProjectCard,
body.theme-dark .latestProjectsPanel,
body.theme-neon .dailyProjectCard,
body.theme-neon .latestProjectsPanel,
body.theme-midnight .dailyProjectCard,
body.theme-midnight .latestProjectsPanel{
  background:#111827!important;
  border-color:rgba(255,255,255,.08)!important;
}
body.theme-dark .latestProjectsList a,
body.theme-neon .latestProjectsList a,
body.theme-midnight .latestProjectsList a{
  background:#0b1020!important;
  border-color:rgba(255,255,255,.08)!important;
}
body.theme-dark .dailyProjectInfo h3,
body.theme-dark .latestProjectsHead strong,
body.theme-dark .latestProjectsList strong,
body.theme-neon .dailyProjectInfo h3,
body.theme-neon .latestProjectsHead strong,
body.theme-neon .latestProjectsList strong,
body.theme-midnight .dailyProjectInfo h3,
body.theme-midnight .latestProjectsHead strong,
body.theme-midnight .latestProjectsList strong{
  color:#fff!important;
}
@media(max-width:1000px){
  .portfolioLiveGrid,
  .dailyProjectCard{
    grid-template-columns:1fr;
  }
  .dailyProjectMedia,
  .dailyProjectPlaceholder{
    min-height:320px;
  }
}
@media(max-width:700px){
  .dailyProjectCard,
  .latestProjectsPanel{
    border-radius:28px;
  }
  .dailyProjectInfo,
  .latestProjectsPanel{
    padding:22px;
  }
  .dailyProjectActions .btn{
    width:100%;
  }
  .latestProjectsList a{
    grid-template-columns:82px 1fr;
  }
  .latestProjectsList img,
  .latestProjectsList b{
    width:82px;
    height:66px;
  }
}
.homeToolsGrid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:24px;
}

.homeToolCard{
  background:#fff;
  border-radius:32px;
  padding:32px;
  border:1px solid rgba(0,0,0,.06);
  box-shadow:0 14px 45px rgba(0,0,0,.05);
}

.homeToolIcon{
  font-size:32px;
  margin-bottom:12px;
}

.homeToolForm{
  display:grid;
  gap:14px;
  margin-top:18px;
}

.homeToolForm input,
.homeToolForm select{
  width:100%;
  border:1px solid rgba(0,0,0,.1);
  border-radius:16px;
  padding:14px;
  font:inherit;
}

.homeToolResult{
  margin-top:18px;
  padding:18px;
  border-radius:20px;
  background:#f5f5f7;
}

.homeToolResult strong{
  display:block;
  font-size:28px;
  margin:6px 0;
}

.homeSizeList{
  display:grid;
  gap:12px;
  margin-top:20px;
}

.homeSizeList div{
  display:flex;
  justify-content:space-between;
  padding:12px 0;
  border-bottom:1px solid rgba(0,0,0,.06);
}

.homeToolsMore{
  margin-top:20px;
}

@media(max-width:900px){
  .homeToolsGrid{
    grid-template-columns:1fr;
  }
}


/* ===== MAVİFOLYO42 ADDON: Site Search + Admin Enhancements ===== */
.mdSiteSearchSection{
  padding-top:34px!important;
  padding-bottom:34px!important;
}
.mdSiteSearchBox{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr minmax(320px,.75fr);
  gap:24px;
  align-items:center;
  padding:34px;
  border-radius:36px;
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  box-shadow:0 14px 45px rgba(0,0,0,.05);
}
.mdSiteSearchBox h2{
  margin:8px 0 10px;
  font-size:clamp(30px,4vw,54px);
  line-height:1;
  letter-spacing:-.045em;
}
.mdSiteSearchBox p{
  color:#6e6e73;
  line-height:1.65;
  margin:0;
}
.mdSiteSearchForm{
  display:grid;
  grid-template-columns:1fr auto;
  gap:10px;
  padding:10px;
  border-radius:999px;
  background:#f5f5f7;
  border:1px solid rgba(0,0,0,.06);
}
.mdSiteSearchForm input{
  border:0;
  outline:none;
  background:transparent;
  padding:0 12px;
  font:inherit;
  min-width:0;
}
.mdSearchPage{
  padding:42px 7% 90px;
}
.mdSearchHero,.mdSearchEmpty,.mdSearchResultCard{
  max-width:980px;
  margin:0 auto 18px;
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:34px;
  padding:30px;
  box-shadow:0 14px 45px rgba(0,0,0,.05);
}
.mdSearchHero span,.mdSearchResultCard small{
  color:var(--primary,#0071e3);
  font-weight:800;
  text-transform:uppercase;
  letter-spacing:.08em;
  font-size:12px;
}
.mdSearchHero h1{
  margin:10px 0;
  font-size:clamp(42px,6vw,78px);
  line-height:.95;
  letter-spacing:-.055em;
}
.mdSearchHero p,.mdSearchResultCard p,.mdSearchEmpty p{
  color:#6e6e73;
  line-height:1.65;
}
.mdSearchMainForm{
  display:grid;
  grid-template-columns:1fr 190px auto;
  gap:10px;
  margin-top:22px;
}
.mdSearchMainForm input,.mdSearchMainForm select{
  width:100%;
  border:1px solid rgba(0,0,0,.10);
  background:#f5f5f7;
  border-radius:18px;
  padding:15px;
  font:inherit;
}
.mdSearchSummary{
  max-width:980px;
  margin:0 auto 18px;
  color:#6e6e73;
}
.mdSearchResultCard{
  display:block;
  transition:.25s ease;
}
.mdSearchResultCard:hover{
  transform:translateY(-3px);
  box-shadow:0 20px 60px rgba(0,0,0,.08);
}
.mdSearchResultCard h2{
  margin:8px 0;
  font-size:28px;
  letter-spacing:-.03em;
}
.mdSearchResultCard span{
  color:var(--primary,#0071e3);
  font-weight:800;
}
.mdSearchEmpty div{
  display:flex;
  flex-wrap:wrap;
  gap:10px;
}
.mdSearchEmpty a{
  padding:10px 14px;
  border-radius:999px;
  background:#f5f5f7;
  color:var(--primary,#0071e3);
  font-weight:800;
}
.adminStandalonePage{
  width:min(1180px,calc(100% - 32px));
  margin:0 auto;
  padding:28px 0 70px;
}
.adminStandaloneHeader{
  display:flex;
  justify-content:space-between;
  align-items:center;
  gap:14px;
  margin-bottom:18px;
  padding:14px 18px;
  border-radius:22px;
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  box-shadow:0 10px 35px rgba(0,0,0,.05);
}
.adminNotifyGrid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:14px;
}
.adminNotifyGrid a{
  display:block;
  padding:20px;
  border-radius:24px;
  background:#f5f5f7;
  border:1px solid rgba(0,0,0,.06);
}
.adminNotifyGrid b{
  display:block;
  font-size:36px;
  letter-spacing:-.045em;
  color:var(--primary,#0071e3);
}
.adminNotifyGrid span{
  color:#6e6e73;
  font-weight:700;
}
body.theme-dark .mdSiteSearchBox,
body.theme-dark .mdSearchHero,
body.theme-dark .mdSearchEmpty,
body.theme-dark .mdSearchResultCard{
  background:#111827!important;
  border-color:rgba(255,255,255,.08)!important;
}
body.theme-dark .mdSiteSearchForm,
body.theme-dark .mdSearchMainForm input,
body.theme-dark .mdSearchMainForm select,
body.theme-dark .mdSearchEmpty a{
  background:#0b1020!important;
  color:#fff!important;
  border-color:rgba(255,255,255,.12)!important;
}
@media(max-width:900px){
  .mdSiteSearchBox,.mdSearchMainForm,.adminNotifyGrid{
    grid-template-columns:1fr;
  }
  .mdSiteSearchForm{
    border-radius:24px;
    grid-template-columns:1fr;
  }
  .mdSearchHero,.mdSearchEmpty,.mdSearchResultCard{
    padding:22px;
    border-radius:26px;
  }
}


/* ===== Müşteri Paneli 2.0 ===== */
.clientPanelPage,.trackPage{background:#f5f5f7;color:#1d1d1f;min-height:100vh}
.clientPanelHeader{position:sticky;top:0;z-index:20;display:flex;justify-content:space-between;align-items:center;padding:16px 7%;background:rgba(255,255,255,.82);backdrop-filter:blur(22px);border-bottom:1px solid rgba(0,0,0,.07)}
.clientPanelHeader a{font-weight:800;color:#0071e3}.clientPanelHeader strong{font-size:18px}
.clientPanelMain{max-width:1180px;margin:0 auto;padding:54px 22px 90px}.clientLoginBox{max-width:760px;margin:28px auto;background:#fff;border:1px solid rgba(0,0,0,.06);border-radius:36px;padding:42px;box-shadow:0 24px 80px rgba(0,0,0,.09);text-align:center}.clientLoginBox>span,.clientHero span,.clientPanelBlock>span{display:inline-block;color:#6e6e73;font-weight:900;letter-spacing:.08em;text-transform:uppercase;font-size:12px}.clientLoginBox h1{font-size:clamp(42px,7vw,76px);line-height:.98;letter-spacing:-.06em;margin:12px 0}.clientLoginBox p{color:#6e6e73;font-size:19px;line-height:1.55}.clientLoginForm{display:grid;grid-template-columns:1.4fr 1fr auto;gap:10px;margin-top:24px;background:#f5f5f7;border-radius:24px;padding:10px}.clientLoginForm input{border:0;background:#fff;border-radius:18px;padding:15px 16px;font:inherit;outline:none}
.clientDashboard{display:grid;gap:20px}.clientHero{display:flex;justify-content:space-between;align-items:center;gap:24px;background:linear-gradient(135deg,#111827,#1f2937);color:#fff;border-radius:34px;padding:34px;box-shadow:0 28px 90px rgba(17,24,39,.2)}.clientHero h1{font-size:clamp(32px,5vw,62px);letter-spacing:-.055em;line-height:1;margin:10px 0}.clientHero p{color:rgba(255,255,255,.72);margin:0}.clientHero .btn{background:#fff;color:#111827}.clientHeroActions{display:flex;gap:10px;flex-wrap:wrap;justify-content:flex-end}.clientHeroActions .btn.ghost{border-color:rgba(255,255,255,.35);color:#fff;background:rgba(255,255,255,.08)}
.clientProgressCard,.clientPanelBlock,.clientInfoGrid article{background:#fff;border:1px solid rgba(0,0,0,.06);border-radius:28px;padding:24px;box-shadow:0 18px 60px rgba(0,0,0,.07)}.clientProgressTop{display:flex;justify-content:space-between;align-items:center;margin-bottom:14px}.clientProgressTop strong{font-size:22px}.clientProgressTop b{font-size:26px;color:#0071e3}.clientProgress{height:14px;background:#eef2f7;border-radius:999px;overflow:hidden}.clientProgress i{display:block;height:100%;background:linear-gradient(90deg,#0071e3,#7c3aed);border-radius:999px}.clientProgressCard small{display:block;margin-top:12px;color:#6e6e73;font-weight:700}
.clientSteps{display:grid;grid-template-columns:repeat(6,1fr);gap:10px;margin-top:18px}.clientSteps div{background:#f5f5f7;border-radius:18px;padding:12px;text-align:center;color:#6e6e73;font-size:12px;font-weight:900}.clientSteps div.done{background:#eef6ff;color:#0071e3}.clientSteps b{display:block;margin-bottom:5px;font-size:16px}.clientInfoGrid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px}.clientInfoGrid span{display:block;color:#6e6e73;font-weight:900;text-transform:uppercase;letter-spacing:.07em;font-size:11px}.clientInfoGrid strong{display:block;margin:8px 0;font-size:21px}.clientInfoGrid p{margin:0;color:#6e6e73;line-height:1.45}.clientPanelGrid{display:grid;grid-template-columns:1.1fr .9fr;gap:20px}.clientPanelBlock h2{font-size:26px;letter-spacing:-.03em;margin:0 0 14px}.clientPanelBlock .muted{color:#6e6e73}.clientFilesGrid{display:grid;grid-template-columns:repeat(auto-fit,minmax(220px,1fr));gap:12px}.clientFilesGrid a{display:block;background:#f5f5f7;border-radius:18px;padding:16px;border:1px solid rgba(0,0,0,.06)}.clientFilesGrid a strong{display:block}.clientFilesGrid a span{display:block;margin-top:6px;color:#6e6e73;font-size:13px}.deliveryNote{background:#fff7ed;border-radius:18px;padding:14px}.clientTimeline{display:grid;gap:12px}.clientTimeline div{position:relative;background:#f5f5f7;border-radius:18px;padding:15px 16px;border-left:4px solid #0071e3}.clientTimeline strong{display:block;color:#0071e3;margin-bottom:6px}.clientRevisionForm{display:grid;gap:12px}.clientRevisionForm textarea{width:100%;border:1px solid rgba(0,0,0,.12);border-radius:18px;padding:16px;font:inherit;min-height:130px;outline:none;resize:vertical}.clientRevisionForm textarea:focus{border-color:#0071e3;box-shadow:0 0 0 4px rgba(0,113,227,.10)}.clientAlert{border-radius:18px;padding:14px 16px;font-weight:800}.clientAlert.ok{background:#ecfdf5;color:#047857}.clientAlert.danger{background:#fff1f2;color:#e11d48}.clientMetaTable{display:grid;gap:8px}.clientMetaTable div{display:flex;justify-content:space-between;gap:18px;padding:12px 0;border-bottom:1px solid rgba(0,0,0,.07)}.clientMetaTable span{color:#6e6e73;font-weight:800}.clientMetaTable b{text-align:right}.trackUpgradeNotice{margin-top:18px;background:#fff;border-radius:26px;padding:22px;box-shadow:0 18px 60px rgba(0,0,0,.07);text-align:center}.trackUpgradeNotice p{margin:0 0 14px;color:#6e6e73}
@media(max-width:900px){.clientHero{display:block}.clientHeroActions{justify-content:flex-start;margin-top:18px}.clientLoginForm{grid-template-columns:1fr}.clientInfoGrid{grid-template-columns:repeat(2,1fr)}.clientPanelGrid{grid-template-columns:1fr}.clientSteps{grid-template-columns:repeat(3,1fr)}}
@media(max-width:560px){.clientPanelHeader{padding:13px 18px}.clientPanelMain{padding:32px 14px 70px}.clientLoginBox{padding:26px;border-radius:28px}.clientInfoGrid{grid-template-columns:1fr}.clientSteps{grid-template-columns:repeat(2,1fr)}.clientHero,.clientProgressCard,.clientPanelBlock{border-radius:24px;padding:22px}.clientMetaTable div{display:block}.clientMetaTable b{text-align:left;display:block;margin-top:4px}}
/* Teklif V2 / Adım adım teklif formu fix */
#contact {
  padding: 90px 20px;
}

#contact .quote-wizard,
#contact .quoteV2,
#contact .wizard,
#contact form {
  max-width: 1050px;
  margin: 40px auto;
}

#contact h2,
#contact h1 {
  text-align: center;
}

#contact button,
#contact .btn,
#contact input[type="button"],
#contact input[type="submit"] {
  border: 1px solid rgba(0, 31, 255, .18);
  background: #fff;
  color: #0717ff;
  padding: 13px 20px;
  border-radius: 999px;
  font-weight: 800;
  cursor: pointer;
  margin: 6px;
  box-shadow: 0 8px 24px rgba(0,0,0,.06);
}

#contact button:hover,
#contact .btn:hover {
  background: #0717ff;
  color: #fff;
}

#contact button.active,
#contact button.selected,
#contact .selected,
#contact .active {
  background: #0717ff !important;
  color: #fff !important;
}

#contact .step,
#contact .quote-step,
#contact .wizard-step {
  background: #fff;
  border: 1px solid rgba(0,0,0,.08);
  border-radius: 28px;
  padding: 28px;
  margin: 22px auto;
  box-shadow: 0 20px 60px rgba(0,0,0,.08);
}

#contact .quote-options,
#contact .options,
#contact .choice-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  margin: 18px 0;
}

#contact .quote-summary,
#contact .offer-box {
  background: #f5f7ff;
  border: 1px solid rgba(7,23,255,.12);
  border-radius: 24px;
  padding: 22px;
  margin-top: 24px;
}

@media(max-width: 768px) {
  #contact {
    padding: 60px 14px;
  }

  #contact button,
  #contact .btn {
    width: 100%;
    margin: 6px 0;
  }

  #contact .quote-options,
  #contact .options,
  #contact .choice-grid {
    display: grid;
  }
}

/* ===== MD Platform Tools v1 ===== */
.platformToolsSection{position:relative}.platformHomeGrid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:18px}.platformHomeGrid a,.platformCard{background:rgba(255,255,255,.92);border:1px solid rgba(7,23,255,.10);border-radius:28px;padding:24px;text-decoration:none;color:inherit;box-shadow:0 18px 50px rgba(0,0,0,.07)}.platformHomeGrid a b{display:grid;place-items:center;width:50px;height:50px;border-radius:18px;background:#f1f4ff;color:var(--primary);font-size:24px}.platformHomeGrid a h3{margin:16px 0 8px}.platformPage{padding:110px 20px 40px;max-width:1180px;margin:auto}.platformHero{padding:44px;border-radius:34px;background:linear-gradient(135deg,#f7f9ff,#fff);border:1px solid rgba(7,23,255,.10);box-shadow:0 24px 70px rgba(0,0,0,.07);margin-bottom:24px}.platformHero span,.sectionHead span{color:var(--primary);font-weight:900}.platformHero h1{font-size:clamp(34px,5vw,64px);line-height:1.02;margin:10px 0}.platformHero p{max-width:760px;color:#667085}.platformGrid{display:grid;gap:20px}.platformGrid.two{grid-template-columns:1fr 1.1fr}.platformCard h2{margin-top:0}.platformCard label{display:grid;gap:7px;font-weight:800;margin:12px 0}.platformCard input,.platformCard select,.platformCard textarea,.trackingSearch input,.platformLeadForm input,.platformLeadForm textarea{width:100%;border:1px solid rgba(0,0,0,.12);border-radius:16px;padding:14px 16px;background:#fff}.platformLeadForm{display:grid;gap:12px}.bigPrice,.healthScore{font-size:clamp(32px,5vw,58px);font-weight:950;color:var(--primary);letter-spacing:-.04em}.healthScore small{font-size:20px;color:#777}.includedGrid{display:grid;grid-template-columns:1fr 1fr;gap:16px}.includedGrid ul{padding-left:18px}.platformActions{display:flex;gap:12px;flex-wrap:wrap;margin-top:18px}.trackingSearch{display:flex;gap:12px;margin:20px 0}.trackingSearch input{flex:1}.portalBoard{display:grid;grid-template-columns:1.2fr 1fr;gap:18px}.portalMain{grid-row:span 2}.progressBar{height:14px;background:#eef2ff;border-radius:99px;overflow:hidden;margin:18px 0}.progressBar span{display:block;height:100%;background:linear-gradient(90deg,var(--primary),#06b6d4);border-radius:99px}.statusSteps,.timeline{display:grid;gap:10px}.statusSteps div,.timeline div{display:flex;align-items:center;gap:10px;color:#98a2b3}.statusSteps b,.timeline b{width:14px;height:14px;border-radius:50%;background:#d0d5dd}.statusSteps .done,.timeline .done{color:#111827;font-weight:800}.statusSteps .done b,.timeline .done b{background:#12b76a}.fileList,.miniLog{display:grid;gap:10px}.fileList a{padding:12px;border-radius:14px;background:#f8faff;text-decoration:none}.scoreGrid{display:grid;grid-template-columns:repeat(4,1fr);gap:14px;margin:20px 0}.scoreGrid div{background:#f6f8ff;border-radius:20px;padding:20px;text-align:center}.scoreGrid strong{font-size:34px;color:var(--primary)}.scoreGrid span{display:block;color:#667085}.cityBars{display:grid;gap:12px}.cityBars div{display:grid;grid-template-columns:120px 40px 1fr;gap:10px;align-items:center}.cityBars i{height:10px;background:#eef2ff;border-radius:99px;overflow:hidden}.cityBars u{display:block;height:100%;background:linear-gradient(90deg,var(--primary),#06b6d4)}.caseGrid{display:grid;grid-template-columns:repeat(3,1fr);gap:18px}.caseMedia{height:210px;border-radius:22px;background:#f2f4f7;overflow:hidden;display:grid;place-items:center}.caseMedia img{width:100%;height:100%;object-fit:cover}.caseCard small{color:var(--primary);font-weight:900}.quoteResult{position:relative}.platformNotice{padding:14px 18px;border-radius:16px}@media print{body>*:not(main){display:none!important}.platformPage{padding:0}.platformHero,.platformGrid>form,.platformCard:not(.printableQuote){display:none!important}.printableQuote{box-shadow:none!important;border:0!important}.platformActions{display:none!important}}@media(max-width:900px){.platformHomeGrid,.platformGrid.two,.portalBoard,.caseGrid{grid-template-columns:1fr}.includedGrid,.scoreGrid{grid-template-columns:1fr}.trackingSearch{flex-direction:column}.cityBars div{grid-template-columns:1fr 35px}.platformPage{padding-top:90px}.platformHero{padding:28px}.platformHomeGrid a,.platformCard{padding:20px}}

/* ===== MD Site Clean UX Patch 20260617 ===== */
.nav{gap:22px;}
.nav .mainNavCompact{display:flex;align-items:center;gap:22px;white-space:nowrap;}
.nav .mainNavCompact a{font-size:14px;font-weight:700;color:#30333a;text-decoration:none;line-height:1;}
.nav .mainNavCompact a:hover{color:var(--primary,#0717ff);}
.nav .langSwitcher{margin-left:auto;}
@media(max-width:1180px){
  .nav .mainNavCompact{gap:14px;overflow-x:auto;max-width:56vw;padding-bottom:4px;scrollbar-width:none;}
  .nav .mainNavCompact::-webkit-scrollbar{display:none;}
}
@media(max-width:760px){
  .nav{padding:14px 18px;}
  .nav .mainNavCompact{display:none;}
}

.aboutPremium{
  display:grid!important;
  grid-template-columns:minmax(0,1.25fr) minmax(320px,.75fr)!important;
  gap:42px!important;
  align-items:center!important;
  padding:96px 7%!important;
  background:linear-gradient(135deg,#ffffff 0%,#f7f8fb 100%)!important;
  border-radius:40px!important;
  margin-block:46px!important;
}
.aboutPremiumText span{
  display:inline-flex;
  color:var(--primary,#0717ff)!important;
  font-weight:950!important;
  letter-spacing:.12em!important;
  text-transform:uppercase!important;
  font-size:12px!important;
  margin-bottom:18px!important;
}
.aboutPremiumText h2{
  font-size:clamp(40px,5vw,76px)!important;
  line-height:.98!important;
  letter-spacing:-.065em!important;
  margin:0 0 24px!important;
  max-width:920px!important;
}
.aboutLead{
  color:#5f6673!important;
  font-size:17px!important;
  line-height:1.82!important;
  max-width:860px!important;
}
.aboutLead br{display:block;content:"";margin:10px 0;}
.aboutSkillTags{
  display:flex!important;
  flex-wrap:wrap!important;
  gap:10px!important;
  margin-top:28px!important;
}
.aboutSkillTags b{
  display:inline-flex!important;
  padding:11px 15px!important;
  border-radius:999px!important;
  background:#fff!important;
  border:1px solid rgba(0,0,0,.08)!important;
  box-shadow:0 10px 28px rgba(0,0,0,.045)!important;
  color:#1d1d1f!important;
  font-size:13px!important;
}
.aboutPremiumStats{
  display:grid!important;
  gap:18px!important;
}
.aboutPremiumStats article{
  min-height:132px!important;
  display:flex!important;
  flex-direction:column!important;
  justify-content:center!important;
  padding:28px!important;
  border-radius:30px!important;
  background:#fff!important;
  border:1px solid rgba(0,0,0,.06)!important;
  box-shadow:0 22px 65px rgba(0,0,0,.065)!important;
}
.aboutPremiumStats strong{
  display:block!important;
  font-size:clamp(42px,5vw,70px)!important;
  line-height:1!important;
  letter-spacing:-.06em!important;
  color:#111827!important;
}
.aboutPremiumStats small{
  display:block!important;
  margin-top:10px!important;
  color:#667085!important;
  font-weight:800!important;
}

.mdPlatformClean{
  padding:96px 7%!important;
  background:#f4f6fb!important;
  border-radius:40px!important;
  margin-block:46px!important;
  overflow:hidden!important;
}
.mdPlatformHero{
  display:grid!important;
  grid-template-columns:minmax(0,1fr) auto!important;
  gap:28px!important;
  align-items:end!important;
  margin-bottom:26px!important;
}
.mdPlatformHero span{
  color:var(--primary,#0717ff)!important;
  font-weight:950!important;
  letter-spacing:.12em!important;
  text-transform:uppercase!important;
  font-size:12px!important;
}
.mdPlatformHero h2{
  max-width:850px!important;
  font-size:clamp(36px,4.5vw,70px)!important;
  line-height:.98!important;
  letter-spacing:-.06em!important;
  margin:12px 0 14px!important;
  color:#15171d!important;
}
.mdPlatformHero p{
  max-width:760px!important;
  margin:0!important;
  color:#667085!important;
  font-size:16px!important;
  line-height:1.7!important;
}
.mdPlatformGrid{
  display:grid!important;
  grid-template-columns:repeat(3,minmax(0,1fr))!important;
  gap:18px!important;
  width:100%!important;
}
.mdPlatformGrid a{
  display:block!important;
  position:relative!important;
  min-height:250px!important;
  padding:26px!important;
  border-radius:30px!important;
  background:#fff!important;
  border:1px solid rgba(0,0,0,.065)!important;
  box-shadow:0 20px 60px rgba(0,0,0,.07)!important;
  color:#15171d!important;
  text-decoration:none!important;
  overflow:hidden!important;
  transition:transform .22s ease, box-shadow .22s ease, border-color .22s ease!important;
}
.mdPlatformGrid a:after{
  content:""!important;
  position:absolute!important;
  right:-44px!important;
  top:-44px!important;
  width:140px!important;
  height:140px!important;
  border-radius:44px!important;
  background:linear-gradient(135deg,rgba(7,23,255,.12),rgba(6,182,212,.12))!important;
  transform:rotate(18deg)!important;
}
.mdPlatformGrid a:hover{
  transform:translateY(-5px)!important;
  box-shadow:0 30px 85px rgba(0,0,0,.10)!important;
  border-color:rgba(7,23,255,.2)!important;
}
.mdPlatformGrid i{
  display:grid!important;
  place-items:center!important;
  width:56px!important;
  height:56px!important;
  border-radius:20px!important;
  background:#f1f4ff!important;
  color:var(--primary,#0717ff)!important;
  font-style:normal!important;
  font-size:25px!important;
  margin-bottom:18px!important;
}
.mdPlatformGrid small{
  display:inline-flex!important;
  padding:7px 10px!important;
  border-radius:999px!important;
  background:#f8faff!important;
  color:var(--primary,#0717ff)!important;
  font-weight:950!important;
  text-transform:uppercase!important;
  letter-spacing:.08em!important;
  font-size:10px!important;
  margin-bottom:12px!important;
}
.mdPlatformGrid h3{
  margin:0 0 10px!important;
  font-size:24px!important;
  line-height:1.08!important;
  letter-spacing:-.035em!important;
  color:#111827!important;
}
.mdPlatformGrid p{
  margin:0!important;
  color:#667085!important;
  line-height:1.62!important;
  font-size:15px!important;
}
@media(max-width:980px){
  .aboutPremium,.mdPlatformHero{grid-template-columns:1fr!important;}
  .mdPlatformGrid{grid-template-columns:repeat(2,minmax(0,1fr))!important;}
}
@media(max-width:640px){
  .aboutPremium,.mdPlatformClean{padding:62px 18px!important;border-radius:28px!important;}
  .mdPlatformGrid{grid-template-columns:1fr!important;}
  .mdPlatformGrid a{min-height:auto!important;}
  .aboutPremiumStats article{min-height:auto!important;}
}


/* ===== SEO PLATFORM PAGES v1 ===== */
.seoServicePage,
.seoBlogPage{background:#f5f7fb;color:#111827}
.seoServiceHero{
  max-width:1180px;
  margin:42px auto 20px;
  padding:56px;
  border-radius:38px;
  background:linear-gradient(135deg,#fff 0%,#eef3ff 100%);
  box-shadow:0 28px 90px rgba(15,23,42,.09);
  display:grid;
  grid-template-columns:1.25fr .75fr;
  gap:34px;
  align-items:stretch;
}
.seoServiceHero span,
.seoIncluded span,
.seoServiceCTA span,
.seoBlogHero span,
.seoBlogArticleHero small{
  color:#0616ff;
  font-weight:900;
  letter-spacing:.08em;
  text-transform:uppercase;
  font-size:13px;
}
.seoServiceHero h1,
.seoBlogHero h1,
.seoBlogArticleHero h1{
  font-size:clamp(42px,6vw,82px);
  line-height:.94;
  margin:14px 0 18px;
  letter-spacing:-.055em;
}
.seoServiceHero p,
.seoBlogHero p,
.seoBlogArticleHero p{
  color:#667085;
  font-size:18px;
  line-height:1.75;
}
.seoServiceHero aside{
  background:#0f172a;
  color:#fff;
  border-radius:30px;
  padding:30px;
  display:flex;
  flex-direction:column;
  justify-content:center;
}
.seoServiceHero aside strong{font-size:26px}
.seoServiceHero aside p{color:#dbe6ff}
.seoServiceHero aside small{color:#9fb0c9;font-weight:800}
.seoServiceActions{display:flex;gap:12px;flex-wrap:wrap;margin-top:26px}
.seoFeatureGrid{
  display:grid;
  grid-template-columns:repeat(4,minmax(0,1fr));
  gap:16px;
}
.seoFeatureGrid article,
.seoIncludedBox>div,
.seoServiceCTA,
.seoBlogArticle,
.seoBlogHero,
.seoBlogArticleHero{
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  box-shadow:0 20px 70px rgba(15,23,42,.07);
  border-radius:30px;
}
.seoFeatureGrid article{padding:24px}
.seoFeatureGrid b{
  width:36px;height:36px;border-radius:50%;
  display:grid;place-items:center;background:#ecf2ff;color:#0616ff;margin-bottom:14px
}
.seoFeatureGrid p{color:#475467;line-height:1.65;margin:0}
.seoIncludedBox{
  max-width:1180px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:18px;
}
.seoIncludedBox>div{padding:34px}
.seoIncludedBox h2{font-size:30px;margin:8px 0 18px}
.seoIncludedBox li{margin:12px 0;color:#475467;line-height:1.6}
.seoServiceCTA{
  max-width:1180px;
  margin:40px auto 90px;
  padding:38px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
}
.seoServiceCTA h2{font-size:34px;margin:8px 0}
.seoServiceCTA p{color:#667085}
.seoHubGrid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:18px;
}
.seoHubGrid a{
  background:#fff;
  border:1px solid rgba(15,23,42,.08);
  border-radius:28px;
  padding:26px;
  box-shadow:0 18px 55px rgba(15,23,42,.07);
  transition:.25s ease;
}
.seoHubGrid a:hover{transform:translateY(-4px);box-shadow:0 26px 70px rgba(15,23,42,.11)}
.seoHubGrid small{color:#0616ff;font-weight:900}
.seoHubGrid strong{display:block;font-size:22px;margin:10px 0}
.seoHubGrid span{color:#667085;line-height:1.6}
.seoBlogHero,
.seoBlogArticleHero{
  max-width:1180px;
  margin:42px auto 24px;
  padding:52px;
}
.seoBlogSearch{
  margin-top:24px;
  display:grid;
  grid-template-columns:1fr 240px auto;
  gap:12px;
}
.seoBlogSearch input,
.seoBlogSearch select{
  border:1px solid rgba(15,23,42,.12);
  border-radius:18px;
  padding:15px 16px;
  background:#f8fafc;
  font:inherit;
}
.seoBlogArticle{
  max-width:920px;
  margin:24px auto 50px;
  padding:44px;
  color:#344054;
  line-height:1.9;
  font-size:18px;
}
.seoBlogArticle img{border-radius:26px;margin-bottom:24px}
.seoArticleCTA{
  margin-top:36px;
  padding:28px;
  border-radius:24px;
  background:#eef3ff;
}
.relatedPosts{max-width:1180px;margin:0 auto 80px}
.projectCaseStudy{
  max-width:1180px;
  margin:24px auto;
  background:#fff;
  border-radius:34px;
  padding:42px;
  box-shadow:0 24px 80px rgba(15,23,42,.08);
}
.caseStudyHead span{color:#0616ff;font-weight:900;text-transform:uppercase;letter-spacing:.08em}
.caseStudyHead h2{font-size:34px;margin:8px 0}
.caseStudyHead p{color:#667085;line-height:1.7}
.caseStudyGrid{display:grid;grid-template-columns:repeat(3,1fr);gap:16px;margin-top:24px}
.caseStudyGrid article{background:#f5f7fb;border:1px solid rgba(15,23,42,.08);border-radius:24px;padding:24px}
.caseStudyGrid small{color:#0616ff;font-weight:900}
.caseStudyGrid h3{font-size:22px;margin:10px 0}
.caseStudyGrid p{color:#667085;line-height:1.65}
@media(max-width:900px){
  .seoServiceHero,
  .seoIncludedBox,
  .seoServiceCTA,
  .seoBlogSearch{grid-template-columns:1fr;display:block}
  .seoServiceHero,
  .seoBlogHero,
  .seoBlogArticleHero,
  .seoBlogArticle{margin-left:16px;margin-right:16px;padding:28px}
  .seoFeatureGrid,
  .seoHubGrid,
  .caseStudyGrid{grid-template-columns:1fr}
  .seoServiceCTA{display:block}
}



/* ===== MD FINAL PROFESSIONAL FIXES 2026-06-18 ===== */
*,*::before,*::after{box-sizing:border-box} body{overflow-x:hidden}.section{max-width:1280px;margin-left:auto;margin-right:auto}.sectionHead{text-align:center;max-width:980px;margin-left:auto;margin-right:auto}.sectionHead h2{max-width:980px;margin-left:auto;margin-right:auto;overflow-wrap:break-word}.aboutPremium{max-width:1280px!important;margin:56px auto!important;grid-template-columns:minmax(0,1.05fr) minmax(280px,.48fr)!important;padding:84px clamp(22px,5vw,72px)!important;overflow:hidden!important}.aboutPremiumText,.aboutLead{min-width:0!important}.aboutPremiumText h2{max-width:860px!important;font-size:clamp(34px,4.4vw,64px)!important;overflow-wrap:break-word!important}.aboutLead{max-width:800px!important}.aboutLead br+br{display:block!important;margin-top:8px!important}.aboutPremiumStats{min-width:0!important}.aboutPremiumStats article{padding:24px!important}.aboutSkillTags{max-width:860px!important}.mdPlatformClean{max-width:1280px!important;margin:56px auto!important;padding:84px clamp(22px,5vw,72px)!important}.mdPlatformHero{grid-template-columns:minmax(0,1fr) minmax(180px,auto)!important}.mdPlatformHero h2{font-size:clamp(34px,4.2vw,62px)!important;max-width:900px!important;overflow-wrap:break-word!important}.mdPlatformGrid{grid-template-columns:repeat(3,minmax(0,1fr))!important}.mdPlatformGrid a{min-width:0!important}.seoHubGrid{max-width:1180px;margin:28px auto 0!important;grid-template-columns:repeat(3,minmax(0,1fr))!important;align-items:stretch}.seoHubGrid a{display:flex!important;flex-direction:column!important;gap:8px!important;text-decoration:none!important;color:#111827!important;min-height:180px!important;overflow:hidden!important}.seoHubGrid small{display:inline-flex;align-items:center;justify-content:center;width:38px;height:38px;border-radius:14px;background:#eef3ff;margin-bottom:8px}.seoHubGrid strong{line-height:1.15!important}.seoHubGrid span{line-height:1.55!important;text-transform:none!important;letter-spacing:0!important}.blogGrid{display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px;max-width:1180px;margin:auto}.blogCard{display:flex;flex-direction:column;background:#fff;border:1px solid rgba(15,23,42,.08);border-radius:28px;overflow:hidden;text-decoration:none;color:#111827;box-shadow:0 18px 55px rgba(15,23,42,.07);min-height:100%}.blogCard img{width:100%;height:210px;object-fit:cover}.blogCard>div{padding:24px}.blogCard small{color:var(--primary,#0717ff);font-weight:900}.blogCard h3{font-size:22px;line-height:1.18;margin:10px 0}.blogCard p{color:#667085;line-height:1.62}.blogCard span{font-weight:900;color:var(--primary,#0717ff)}.mdpBody{background:#f5f7fb;color:#111827}.mdpPage{padding:96px 18px 60px}.mdpHero{max-width:1180px;margin:0 auto 24px;padding:56px;border-radius:34px;background:linear-gradient(135deg,#fff,#eef3ff);box-shadow:0 24px 80px rgba(15,23,42,.08);border:1px solid rgba(15,23,42,.08)}.mdpHero span,.mdpKicker{color:var(--primary,#0717ff);font-weight:950;letter-spacing:.1em;text-transform:uppercase;font-size:12px}.mdpHero h1{font-size:clamp(38px,6vw,78px);line-height:.96;letter-spacing:-.065em;margin:12px 0}.mdpHero p{max-width:820px;color:#667085;font-size:18px;line-height:1.7}.mdpGrid{max-width:1180px;margin:24px auto;display:grid;grid-template-columns:repeat(3,minmax(0,1fr));gap:20px}.mdpGrid.two{grid-template-columns:1fr 1fr}.mdpGrid.four{grid-template-columns:repeat(4,minmax(0,1fr))}.mdpCard{background:#fff;border:1px solid rgba(15,23,42,.08);border-radius:28px;padding:28px;box-shadow:0 18px 55px rgba(15,23,42,.07);min-width:0}.mdpCard h2,.mdpCard h3{margin-top:0;letter-spacing:-.035em}.mdpCard p,.mdpCard li{color:#667085;line-height:1.65}.mdpCard label{display:grid;gap:8px;font-weight:800;margin:12px 0}.mdpCard input,.mdpCard select,.mdpCard textarea{width:100%;border:1px solid rgba(15,23,42,.12);border-radius:16px;padding:14px 15px;background:#fff;font:inherit}.mdpActions{display:flex;gap:12px;flex-wrap:wrap;margin-top:18px}.mdpScore{font-size:clamp(42px,6vw,72px);font-weight:950;color:var(--primary,#0717ff);letter-spacing:-.06em}.mdpBadge{display:inline-flex;padding:8px 12px;border-radius:99px;background:#eef3ff;color:var(--primary,#0717ff);font-weight:900}.mdpList{display:grid;gap:12px;margin:16px 0}.mdpList div{padding:14px 16px;border-radius:16px;background:#f7f9ff;border:1px solid rgba(15,23,42,.06)}.mdpPrice{font-size:clamp(32px,5vw,54px);font-weight:950;color:var(--primary,#0717ff);letter-spacing:-.055em}.mdpFooter{text-align:center;padding:34px;color:#667085}.mdpFooter a{color:var(--primary,#0717ff);font-weight:800}.packageGrid{align-items:stretch}.packageCard{position:relative;display:flex;flex-direction:column}.packageCard.featured{border-color:rgba(7,23,255,.35);box-shadow:0 28px 85px rgba(7,23,255,.16)}.packageCard ul{padding-left:20px}.packageCard .btn{margin-top:auto}.timelineMini{display:grid;gap:12px}.timelineMini div{display:flex;gap:12px;align-items:flex-start}.timelineMini b{display:grid;place-items:center;width:30px;height:30px;border-radius:50%;background:#eef3ff;color:var(--primary,#0717ff);flex:0 0 auto}.progressBar{height:14px;background:#eef2ff;border-radius:99px;overflow:hidden}.progressBar span{display:block;height:100%;background:linear-gradient(90deg,var(--primary,#0717ff),#06b6d4)}.caseBeforeAfter{display:grid;grid-template-columns:1fr 1fr;gap:16px}.caseBeforeAfter div{min-height:180px;border-radius:22px;background:linear-gradient(135deg,#f4f6fb,#fff);display:grid;place-items:center;text-align:center;padding:20px;border:1px dashed rgba(15,23,42,.16)}@media(max-width:980px){.mdpGrid,.mdpGrid.four,.mdPlatformGrid,.seoHubGrid,.blogGrid{grid-template-columns:repeat(2,minmax(0,1fr))!important}.aboutPremium{grid-template-columns:1fr!important}.mdPlatformHero{grid-template-columns:1fr!important}.mdpHero{padding:38px}.mdpGrid.two{grid-template-columns:1fr}}@media(max-width:640px){.mdpGrid,.mdpGrid.four,.mdPlatformGrid,.seoHubGrid,.blogGrid{grid-template-columns:1fr!important}.mdpPage{padding-top:86px}.aboutPremium,.mdPlatformClean{margin:24px 12px!important;padding:42px 18px!important;border-radius:28px!important}.aboutPremiumText h2,.mdPlatformHero h2{font-size:clamp(32px,10vw,46px)!important}.mdpHero h1{font-size:clamp(34px,12vw,54px)}.mdpHero{padding:30px 22px;border-radius:28px}.caseBeforeAfter{grid-template-columns:1fr}.mdpActions .btn{width:100%}}
