.sm-footer{
  --sm-footer-bg:#0A1322;
  --sm-footer-bg2:#0F1B31;
  --sm-footer-blue:#1E5BD6;
  --sm-footer-text:#C5D4EA;
  --sm-footer-muted:#8FA3C4;
  --sm-footer-line:rgba(255,255,255,.1);
  background:
    radial-gradient(circle at 18% 0,rgba(30,91,214,.22),transparent 32%),
    linear-gradient(135deg,var(--sm-footer-bg),var(--sm-footer-bg2));
  color:var(--sm-footer-text);
  font-family:"Poppins",sans-serif;
  margin-top:0;
}

.sm-footer__inner{
  max-width:1240px;
  margin:0 auto;
  padding:54px 20px 38px;
  display:grid;
  grid-template-columns:minmax(240px,1.2fr) .75fr .7fr .85fr .9fr;
  gap:28px;
  align-items:start;
}

.sm-footer__inner > *{
  min-width:0;
}

.sm-footer__logo{
  display:inline-flex;
  align-items:center;
  padding:10px 12px;
  border-radius:16px;
  background:#fff;
  box-shadow:0 18px 42px rgba(0,0,0,.18);
}

.sm-footer__logo-img{
  display:block;
  width:auto!important;
  height:54px!important;
  max-width:250px!important;
  max-height:54px!important;
  object-fit:contain;
}

.sm-footer__text{
  max-width:430px;
  margin:20px 0 18px;
  color:var(--sm-footer-muted);
  font-size:14px;
  line-height:1.7;
}

.sm-footer__title{
  margin:0 0 15px;
  color:#fff;
  font-size:15px;
  font-weight:800;
  letter-spacing:-.02em;
}

.sm-footer__nav ul{
  list-style:none;
  margin:0;
  padding:0;
  display:grid;
  gap:10px;
}

.sm-footer a{
  color:var(--sm-footer-text);
  text-decoration:none;
  cursor:pointer;
  transition:color .2s ease-out,background .2s ease-out,border-color .2s ease-out;
}

.sm-footer__nav a{
  display:inline-flex;
  align-items:center;
  min-height:32px;
  color:var(--sm-footer-muted);
  font-size:13.5px;
  line-height:1.45;
}

.sm-footer__nav a:hover,
.sm-footer__social a:hover{
  color:#fff;
}

.sm-footer__contact{
  padding:20px;
  border:1px solid var(--sm-footer-line);
  border-radius:18px;
  background:rgba(255,255,255,.06);
  box-shadow:inset 0 1px 0 rgba(255,255,255,.08);
  box-sizing:border-box;
  overflow:hidden;
}

.sm-footer__phone{
  display:inline-flex;
  margin-bottom:10px;
  color:#fff!important;
  font-size:22px;
  font-weight:900;
  letter-spacing:-.04em;
}

.sm-footer__contact p{
  margin:0 0 12px;
  color:var(--sm-footer-muted);
  font-size:13.5px;
  line-height:1.6;
}

.sm-footer__mail{
  margin:0!important;
}

.sm-footer__mail a{
  color:var(--sm-footer-text);
  font-size:13.5px;
  font-weight:600;
}

.sm-footer__mail a:hover{
  color:#fff;
}

.sm-footer__bottom{
  max-width:1240px;
  margin:0 auto;
  padding:18px 20px 22px;
  border-top:1px solid var(--sm-footer-line);
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:18px;
  color:var(--sm-footer-muted);
  font-size:12.5px;
}

.sm-footer__bottom p{
  margin:0;
}

.sm-footer__social{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
}

.sm-footer__social a{
  color:var(--sm-footer-muted);
}

@media(max-width:1100px){
  .sm-footer__inner{
    grid-template-columns:1.1fr 1fr 1fr;
    gap:24px;
  }

  .sm-footer__brand{
    grid-column:1 / -1;
  }

  .sm-footer__contact{
    grid-column:1 / -1;
  }
}

@media(max-width:1024px){
  .sm-footer__inner{
    grid-template-columns:1fr 1fr;
  }
}

@media(max-width:720px){
  .sm-footer__inner{
    grid-template-columns:1fr 1fr;
    padding:38px 18px 26px;
    gap:26px 16px;
  }

  /* Marka, Müşteri Bilgileri ve İletişim tam genişlik; Ürünlerimiz + Kurumsal yan yana */
  .sm-footer__brand,
  .sm-footer__contact,
  .sm-footer__nav[aria-label*="Müşteri"]{
    grid-column:1 / -1;
  }

  .sm-footer__logo-img{
    height:46px!important;
    max-height:46px!important;
    max-width:220px!important;
  }

  .sm-footer__bottom{
    flex-direction:column;
    align-items:flex-start;
  }
}
