:root{
  --red:#e31b25;
  --red2:#b80f16;
  --shadow:0 18px 40px rgba(0,0,0,.18);
}

*{box-sizing:border-box}

body{
  margin:0;
  font-family:system-ui,-apple-system,Segoe UI,Roboto,Inter,Arial;
  background:#f2f2f6;
  color:#111;
}

a{text-decoration:none}

.container{
  max-width:1180px;
  margin:0 auto;
  padding:0 18px;
}

/* HEADER */
.topnav{
  position:sticky;
  top:0;
  z-index:999;
  background:rgba(255,255,255,.92);
  backdrop-filter:blur(10px);
  border-bottom:1px solid rgba(0,0,0,.06);
}

.topnav .inner{
  display:flex;
  align-items:center;
  justify-content:space-between;
  height:68px;
}

.brand{
  display:flex;
  align-items:center;
  gap:10px;
  font-weight:800;
  letter-spacing:.2px;
}

.brand .badge{
  width:34px;
  height:34px;
  border-radius:10px;
  background:linear-gradient(135deg,var(--red),var(--red2));
  display:grid;
  place-items:center;
  color:#fff;
  font-weight:900;
  box-shadow:0 10px 24px rgba(227,27,37,.28);
}

.brand span{
  color:var(--red);
  font-weight:900;
}

.menu{
  display:flex;
  gap:18px;
  align-items:center;
}

.menu a{
  color:#222;
  font-weight:800;
  font-size:13px;
  opacity:.85;
}

.menu a.active{
  color:var(--red);
}

.btn-login{
  background:linear-gradient(135deg,var(--red),var(--red2));
  color:#fff;
  border-radius:10px;
  padding:10px 14px;
  font-weight:900;
  font-size:13px;
  box-shadow:0 14px 34px rgba(227,27,37,.30);
}

/* HERO */
.hero{
  position:relative;
  background:var(--red);
  padding:64px 0 26px;
  overflow:hidden;
}

.hero::before{
  content:"";
  position:absolute;
  inset:0;
  background:url('/assets/img/hero_red.svg') center/cover no-repeat;
  opacity:1;
}

.hero .content{
  position:relative;
  text-align:center;
  color:#fff;
  padding:18px 0 8px;
}

.hero h1{
  margin:0;
  font-size:clamp(28px,3.6vw,46px);
  font-weight:900;
  letter-spacing:.2px;
  text-shadow:0 10px 30px rgba(0,0,0,.18);
}

.hero p{
  margin:10px 0 18px;
  opacity:.95;
  font-weight:700;
}

.hero .cta{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  background:linear-gradient(135deg,#ff2b36,#b40b12);
  border:1px solid rgba(255,255,255,.25);
  color:#fff;
  border-radius:10px;
  padding:12px 20px;
  font-weight:900;
  box-shadow:0 18px 44px rgba(0,0,0,.25);
}

/* SERVICES */
.sheet{
  padding:32px 0 20px;
}

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

.service-card{
  background:rgba(255,255,255,.92);
  border-radius:16px;
  box-shadow:var(--shadow);
  border:1px solid rgba(0,0,0,.05);
  overflow:hidden;
  width:100%;
}

.service-card .head{
  padding:16px 16px 8px;
  font-size:18px;
  font-weight:900;
  color:#c10f16;
  text-align:center;
}

.service-card img{
  width:100%;
  height:auto;
  display:block;
  padding:0 12px 6px;
}

.desc{
  padding:0 16px 8px;
  color:#444;
  line-height:1.6;
  font-size:14px;
  text-align:center;
}

.service-card .foot{
  padding:12px 16px 16px;
  text-align:center;
}

.btn-mini{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 14px;
  border-radius:10px;
  background:linear-gradient(135deg,var(--red),var(--red2));
  color:#fff;
  font-weight:800;
  font-size:13px;
  box-shadow:0 10px 24px rgba(227,27,37,.20);
}

/* TRANSLATE */
.translate-wrapper{
  background:linear-gradient(135deg,var(--red),var(--red2));
  padding:6px 10px;
  border-radius:10px;
  display:flex;
  align-items:center;
}

#google_translate_element{
  display:flex !important;
  align-items:center !important;
  min-width:120px !important;
}

.goog-te-gadget{
  display:block !important;
  visibility:visible !important;
  opacity:1 !important;
}

.goog-te-combo{
  min-width:110px !important;
  font-size:13px !important;
}

.translate-mobile{
  display:none;
}

#gt-mobile-bar{
  display:none;
}

/* DUO */
.duo{
  display:grid;
  grid-template-columns:repeat(2,1fr);
  gap:18px;
  margin-top:24px;
}

.panel{
  background:rgba(255,255,255,.92);
  border-radius:16px;
  box-shadow:var(--shadow);
  border:1px solid rgba(0,0,0,.05);
  padding:22px;
}

.panel h3{
  margin:0 0 14px;
  font-size:22px;
  font-weight:900;
  color:#111;
}

.checks{
  margin-top:16px;
  display:flex;
  flex-direction:column;
  gap:12px;
}

.check{
  display:flex;
  align-items:flex-start;
  gap:10px;
  color:#222;
  font-weight:700;
  line-height:1.5;
}

.dot{
  width:24px;
  height:24px;
  min-width:24px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg,var(--red),var(--red2));
  color:#fff;
  font-size:13px;
  font-weight:900;
}

.steps{
  display:flex;
  flex-direction:column;
  gap:12px;
}

.step{
  display:flex;
  align-items:center;
  gap:12px;
  background:#fafafa;
  border:1px solid rgba(0,0,0,.06);
  border-radius:12px;
  padding:12px 14px;
  color:#222;
  font-weight:700;
}

.ico{
  width:42px;
  height:42px;
  min-width:42px;
  border-radius:12px;
  display:grid;
  place-items:center;
  color:#fff;
  background:linear-gradient(135deg,var(--red),var(--red2));
  box-shadow:0 8px 20px rgba(227,27,37,.22);
}

/* FAQ */
.faq{
  padding:42px 0;
}

.faq h3{
  margin:0 0 18px;
  font-size:26px;
  font-weight:900;
  color:#111;
  text-align:center;
}

.accordion{
  display:flex;
  flex-direction:column;
  gap:12px;
  max-width:800px;
  margin:0 auto;
}

.accordion .item{
  background:#fff;
  border:1px solid rgba(0,0,0,.06);
  border-radius:14px;
  box-shadow:0 8px 24px rgba(0,0,0,.06);
  overflow:hidden;
}

.accordion .q{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:12px;
  padding:16px 18px;
  font-weight:800;
  color:#111;
  cursor:pointer;
}

.accordion .a{
  padding:0 18px 18px;
  color:#444;
  line-height:1.7;
  display:block;
}

/* REFERENCES */
.refs-wrap{
  padding:40px 0;
  background:#0f172a;
}

.ref-title{
  text-align:center;
  font-size:28px;
  font-weight:900;
  color:#fff;
  margin-bottom:18px;
}

.refs{
  position:relative;
  background:#111827;
  border-radius:18px;
  border:1px solid rgba(255,255,255,.06);
  box-shadow:var(--shadow);
  padding:22px;
  overflow:hidden;
}

.refs-track{
  display:flex;
  gap:12px;
  overflow:hidden;
  align-items:stretch;
}

.ref-card{
  flex:0 0 calc(20% - 10px);
  height:130px;
  border-radius:10px;
  overflow:hidden;
  position:relative;
  background:#1f2937;
}

.ref-card a{
  display:block;
  width:100%;
  height:100%;
}

.ref-card img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  padding:0;
}

.overlay{
  position:absolute;
  inset:0;
  background:rgba(0,0,0,.55);
  display:flex;
  align-items:center;
  justify-content:center;
  opacity:0;
  transition:.3s;
}

.ref-card:hover .overlay{
  opacity:1;
}

.overlay span{
  background:#e11d48;
  color:#fff;
  padding:6px 10px;
  border-radius:6px;
  font-size:12px;
  font-weight:800;
}

.navbtn{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:42px;
  height:42px;
  border:none;
  border-radius:50%;
  background:linear-gradient(135deg,var(--red),var(--red2));
  color:#fff;
  font-size:26px;
  cursor:pointer;
  z-index:5;
  box-shadow:0 10px 24px rgba(227,27,37,.22);
}

.navbtn.prev{ left:10px; }
.navbtn.next{ right:10px; }

.center-cta{
  text-align:center;
  margin-top:22px;
}

/* FOOTER */
footer,
.site-footer,
.footer{
  margin-top:24px;
  background:linear-gradient(135deg,#e11d48,#be123c) !important;
  color:#fff;
}

footer .container,
.site-footer .container,
.footer .container{
  padding-top:28px;
  padding-bottom:28px;
}

.footer .row{
  display:flex;
  flex-direction:column;
  align-items:center;
  gap:20px;
  text-align:center;
}

.footer .social{
  display:flex;
  gap:12px;
}

.footer .soc{
  width:40px;
  height:40px;
  border-radius:10px;
  background:rgba(255,255,255,0.15);
  backdrop-filter:blur(6px);
  display:flex;
  align-items:center;
  justify-content:center;
  color:#fff;
  font-weight:900;
}

.footer .links{
  display:flex;
  gap:18px;
  flex-wrap:wrap;
  justify-content:center;
}

.footer .links a{
  color:#fff !important;
  font-weight:700;
  font-size:14px;
}

.footer small{
  opacity:.75;
  font-size:13px;
  color:rgba(255,255,255,0.7);
}

/* WHATSAPP FLOAT */
.wa-wrapper{
  position:fixed !important;
  right:15px;
  bottom:80px;
  z-index:999999 !important;
}

.wa-btn{
  width:65px;
  height:65px;
  background:linear-gradient(135deg,#25d366,#1ebe5d);
  border-radius:50%;
  display:flex;
  align-items:center;
  justify-content:center;
  box-shadow:0 10px 25px rgba(0,0,0,0.25);
  cursor:pointer;
  animation:waPulse 2s infinite;
}

.wa-btn img{
  width:32px;
  height:auto;
}

@keyframes waPulse{
  0%{ box-shadow:0 0 0 0 rgba(37,211,102,0.7); }
  70%{ box-shadow:0 0 0 15px rgba(37,211,102,0); }
  100%{ box-shadow:0 0 0 0 rgba(37,211,102,0); }
}

.wa-box{
  position:absolute;
  bottom:75px;
  right:0;
  width:220px;
  background:#fff;
  border-radius:12px;
  box-shadow:0 10px 30px rgba(0,0,0,0.2);
  overflow:hidden;
  opacity:0;
  transform:translateY(20px);
  transition:.3s;
}

.wa-wrapper:hover .wa-box{
  opacity:1;
  transform:translateY(0);
}

.wa-header{
  background:#25d366;
  color:#fff;
  padding:10px;
  font-weight:700;
  font-size:14px;
}

.wa-body{
  padding:12px;
  font-size:14px;
  color:#333;
}

/* RESPONSIVE */
@media(max-width:1024px){
  .services-grid{
    grid-template-columns:repeat(2,1fr);
  }

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

@media(max-width:768px){
  .menu{
    display:none !important;
  }

  .translate-mobile{
    display:flex !important;
    justify-content:center;
    padding:12px;
    background:#fff;
    border-bottom:1px solid rgba(0,0,0,0.05);
  }

  #gt-mobile-bar{
    display:block !important;
    position:sticky;
    top:0;
    z-index:1000;
    background:#fff;
    padding:10px 12px;
    border-bottom:1px solid rgba(0,0,0,.06);
  }

  #google_translate_element{
    display:flex !important;
    justify-content:center !important;
    align-items:center !important;
    width:100% !important;
  }

  .goog-te-combo{
    min-width:140px !important;
    font-size:14px !important;
  }

  .refs-track{
    overflow-x:auto;
    scroll-snap-type:x mandatory;
  }

  .ref-card{
    flex:0 0 80%;
    height:120px;
    scroll-snap-align:start;
  }

  .navbtn{
    display:none;
  }

  .wa-wrapper{
    right:15px;
    bottom:90px;
  }
}

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

  .faq h3,
  .ref-title{
    font-size:22px;
  }

  .refs{
    padding:16px;
  }

  .panel{
    padding:18px;
  }
}
/* ===== SERVICES MOBILE FINAL (1 KART) ===== */

@media(max-width:768px){

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

  .service-card{
    width:100% !important;
    border-radius:14px;
  }

  .service-card .head{
    font-size:18px !important;
    line-height:1.3 !important;
    padding:12px 10px 6px !important;
  }

  .service-card img{
    width:100% !important;
    height:auto !important;
    padding:0 10px !important;
    margin:8px 0 !important;
  }

  .desc{
    font-size:14px !important;
    padding:0 12px !important;
    line-height:1.5 !important;
  }

  .btn-mini{
    width:90% !important;
    margin:10px auto 14px !important;
    display:flex;
    justify-content:center;
  }

}
/* ===== STATS BAR ===== */
.stats-bar{
  background: linear-gradient(135deg,#e11d48,#be123c);
  padding: 25px 0;
  margin-top: 20px;
}

.stats-bar .container{
  display:flex;
  justify-content:space-between;
  gap:20px;
  flex-wrap:wrap;
  text-align:center;
}

.stat-item{
  flex:1;
  min-width:140px;
}

.stat-number{
  font-size:32px;
  font-weight:900;
  color:#fff;
}

.stat-label{
  font-size:13px;
  color:rgba(255,255,255,0.85);
  margin-top:6px;
}

/* MOBİL */
@media(max-width:768px){
  .stats-bar .container{
    display:grid;
    grid-template-columns:1fr 1fr;
    gap:15px;
  }
}


/* ===== MOMITANE SHOWCASE / YAPTIGIMIZ ISLER ===== */
.momitane-showcase{
  padding:70px 0;
  background:
    radial-gradient(circle at top left, rgba(225,29,72,.12), transparent 34%),
    radial-gradient(circle at bottom right, rgba(14,165,233,.14), transparent 36%),
    #f8fafc;
}

.momitane-showcase-head{
  max-width:850px;
  margin:0 auto 34px;
  text-align:center;
}

.momitane-kicker{
  display:inline-flex;
  padding:10px 18px;
  border-radius:999px;
  background:#fff1f2;
  color:#c10f16;
  font-weight:900;
  font-size:14px;
  box-shadow:0 10px 30px rgba(15,23,42,.08);
}

.momitane-showcase-head h2{
  margin:18px 0 12px;
  font-size:clamp(30px, 4vw, 54px);
  line-height:1.05;
  color:#111827;
  font-weight:950;
}

.momitane-showcase-head p{
  margin:0 auto;
  max-width:760px;
  color:#475569;
  font-size:18px;
  line-height:1.65;
  font-weight:700;
}

.momitane-device-grid{
  display:grid;
  grid-template-columns:repeat(3, minmax(0,1fr));
  gap:24px;
  align-items:start;
}

.momitane-phone-card{
  background:rgba(255,255,255,.88);
  border:1px solid rgba(15,23,42,.08);
  border-radius:30px;
  padding:18px;
  box-shadow:0 22px 60px rgba(15,23,42,.10);
  transition:.25s ease;
}

.momitane-phone-card:hover{
  transform:translateY(-6px);
  box-shadow:0 30px 80px rgba(15,23,42,.16);
}

.momitane-phone-frame{
  position:relative;
  overflow:hidden;
  border-radius:26px;
  background:#0f172a;
  aspect-ratio:9/16;
  box-shadow:inset 0 0 0 10px #0f172a;
}

.momitane-phone-frame img{
  width:100%;
  height:100%;
  object-fit:cover;
  display:block;
  border-radius:22px;
}

.momitane-phone-dot{
  position:absolute;
  top:10px;
  left:50%;
  transform:translateX(-50%);
  width:54px;
  height:7px;
  border-radius:999px;
  background:rgba(255,255,255,.42);
  z-index:2;
}

.momitane-shot-info{
  padding:16px 4px 4px;
  text-align:center;
}

.momitane-shot-info h3{
  margin:0 0 7px;
  color:#0f172a;
  font-size:20px;
  font-weight:950;
}

.momitane-shot-info p{
  margin:0;
  color:#64748b;
  line-height:1.45;
  font-weight:700;
  font-size:14px;
}

.momitane-showcase-cta{
  margin-top:30px;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  padding:24px;
  border-radius:30px;
  background:linear-gradient(135deg,#111827,#1f2937);
  color:#fff;
  box-shadow:0 24px 70px rgba(15,23,42,.22);
}

.momitane-showcase-cta strong{
  display:block;
  font-size:24px;
  font-weight:950;
  margin-bottom:6px;
}

.momitane-showcase-cta span{
  display:block;
  color:rgba(255,255,255,.75);
  font-weight:700;
  line-height:1.5;
}

.momitane-showcase-cta a{
  flex:0 0 auto;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:58px;
  padding:0 28px;
  border-radius:18px;
  background:#22c55e;
  color:#fff;
  font-weight:950;
  text-decoration:none;
  box-shadow:0 16px 34px rgba(34,197,94,.25);
}

@media(max-width:992px){
  .momitane-device-grid{
    grid-template-columns:repeat(2, minmax(0,1fr));
  }
}

@media(max-width:768px){
  .momitane-showcase{
    padding:46px 0;
  }

  .momitane-device-grid{
    display:flex;
    overflow-x:auto;
    gap:16px;
    padding:4px 4px 18px;
    scroll-snap-type:x mandatory;
    -webkit-overflow-scrolling:touch;
  }

  .momitane-phone-card{
    min-width:78%;
    scroll-snap-align:center;
    border-radius:24px;
    padding:12px;
  }

  .momitane-showcase-head{
    text-align:left;
    margin-bottom:24px;
  }

  .momitane-showcase-head p{
    font-size:16px;
  }

  .momitane-showcase-cta{
    flex-direction:column;
    align-items:stretch;
    text-align:center;
    border-radius:24px;
    padding:20px;
  }

  .momitane-showcase-cta strong{
    font-size:20px;
  }

  .momitane-showcase-cta a{
    width:100%;
  }
}
