/* =========================================================
   ÜRETİCİLER SAYFASI
   Dosya: assets/ureticiler.css
   ========================================================= */

.manufacturers-hero{
  position:relative;
  overflow:hidden;
  padding:96px 0 90px;
  background:linear-gradient(115deg,#07162a 0%,#102b4d 58%,#173f68 100%);
  color:#fff;
}
.manufacturers-hero:before{
  content:"";
  position:absolute;
  width:620px;
  height:620px;
  right:-260px;
  top:-330px;
  border:1px solid rgba(255,255,255,.10);
  border-radius:50%;
  box-shadow:0 0 0 70px rgba(255,255,255,.018),
             0 0 0 140px rgba(255,255,255,.012);
}
.manufacturers-hero:after{
  content:"AC";
  position:absolute;
  right:-30px;
  bottom:-115px;
  font-size:310px;
  line-height:1;
  font-weight:900;
  color:rgba(255,255,255,.035);
  pointer-events:none;
}
.manufacturers-hero .container{
  position:relative;
  z-index:2;
}
.manufacturers-hero h1{
  margin:15px 0 20px;
  max-width:850px;
  font-size:clamp(44px,5.5vw,72px);
  line-height:.98;
  letter-spacing:-3px;
}
.manufacturers-hero h1 span{color:var(--green)}
.manufacturers-hero p{
  max-width:690px;
  margin:0;
  color:#c9d5e1;
  font-size:15px;
  line-height:1.8;
}

/* INTRO */
.manufacturer-intro{
  padding:88px 0 82px;
  background:#fff;
}
.intro-grid{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:end;
}
.intro-grid h2{
  margin:12px 0 0;
  font-size:44px;
  line-height:1.06;
  letter-spacing:-1.8px;
}
.intro-text{
  max-width:590px;
}
.intro-text p{
  margin:0 0 16px;
  color:var(--muted);
  font-size:14px;
  line-height:1.8;
}
.intro-text p:last-child{margin-bottom:0}

/* LANDIRENZO */
.landirenzo-section{
  padding:0 0 95px;
  background:#fff;
}
.brand-card{
  overflow:hidden;
  border-radius:28px;
  background:#0b1d35;
  color:#fff;
  box-shadow:0 25px 70px rgba(8,25,45,.18);
}
.brand-head{
  position:relative;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:40px;
  padding:55px 58px 48px;
  background:linear-gradient(120deg,#0a1b30,#173c64);
}
.brand-head h2{
  margin:8px 0 13px;
  font-size:42px;
  letter-spacing:2px;
}
.brand-head p{
  max-width:650px;
  margin:0;
  color:#c5d2df;
  font-size:13px;
  line-height:1.8;
}
.brand-badge{
  flex:0 0 auto;
  width:150px;
  height:150px;
  display:grid;
  place-content:center;
  text-align:center;
  border:1px solid rgba(255,255,255,.22);
  border-radius:50%;
  color:#fff;
  font-size:22px;
  line-height:.85;
  font-weight:900;
  letter-spacing:-1px;
}
.brand-badge span{color:var(--green)}

.product-cards{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  border-top:1px solid rgba(255,255,255,.10);
}
.manufacturer-product{
  position:relative;
  min-height:285px;
  padding:34px 32px 30px;
  border-right:1px solid rgba(255,255,255,.10);
  transition:transform .25s ease,background .25s ease;
}
.manufacturer-product:last-child{border-right:0}
.manufacturer-product:hover{
  background:rgba(255,255,255,.035);
  transform:translateY(-3px);
}
.product-number{
  position:absolute;
  top:28px;
  right:28px;
  color:rgba(255,255,255,.28);
  font-size:11px;
  font-weight:800;
}
.product-icon{
  width:max-content;
  min-width:82px;
  height:38px;
  padding:0 14px;
  display:grid;
  place-items:center;
  border:1px solid rgba(145,200,62,.55);
  border-radius:9px;
  color:var(--green);
  font-size:10px;
  font-weight:900;
  letter-spacing:1px;
}
.manufacturer-product h3{
  margin:24px 0 11px;
  font-size:22px;
}
.manufacturer-product p{
  max-width:320px;
  margin:0;
  color:#aebdcc;
  font-size:12px;
  line-height:1.7;
}
.manufacturer-product a{
  display:inline-block;
  margin-top:25px;
  color:#fff;
  font-size:10px;
  font-weight:900;
  letter-spacing:1px;
  text-decoration:none;
}
.manufacturer-product a:hover{color:var(--green)}

/* WHY */
.manufacturer-why{
  padding:95px 0 100px;
  background:#f7f9fa;
}
.section-heading{
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:80px;
  align-items:end;
  margin-bottom:48px;
}
.section-heading h2{
  margin:10px 0 0;
  font-size:42px;
  line-height:1.06;
  letter-spacing:-1.6px;
}
.section-heading p{
  max-width:560px;
  margin:0;
  color:var(--muted);
  font-size:14px;
  line-height:1.8;
}
.why-grid{
  display:grid;
  grid-template-columns:repeat(4,1fr);
  border-top:1px solid var(--line);
  border-bottom:1px solid var(--line);
}
.why-item{
  padding:30px 25px 28px;
  border-right:1px solid var(--line);
}
.why-item:last-child{border-right:0}
.why-item span{
  color:var(--green2);
  font-size:11px;
  font-weight:900;
}
.why-item h3{
  margin:19px 0 10px;
  font-size:16px;
}
.why-item p{
  margin:0;
  color:var(--muted);
  font-size:12px;
  line-height:1.7;
}

/* TABLET */
@media(max-width:850px){
  .manufacturers-hero{padding:68px 0 62px}
  .manufacturers-hero h1{
    font-size:48px;
    letter-spacing:-2px;
  }
  .manufacturer-intro{padding:65px 0}
  .intro-grid{
    grid-template-columns:1fr;
    gap:28px;
  }
  .intro-grid h2{font-size:38px}
  .brand-head{
    padding:42px 35px 38px;
  }
  .product-cards{
    grid-template-columns:1fr;
  }
  .manufacturer-product{
    min-height:auto;
    border-right:0;
    border-bottom:1px solid rgba(255,255,255,.10);
  }
  .manufacturer-product:last-child{border-bottom:0}
  .section-heading{
    grid-template-columns:1fr;
    gap:22px;
  }
  .why-grid{
    grid-template-columns:1fr 1fr;
  }
  .why-item:nth-child(2){border-right:0}
  .why-item:nth-child(3),
  .why-item:nth-child(4){border-top:1px solid var(--line)}
}

/* MOBILE */
@media(max-width:560px) and (hover:none) and (pointer:coarse){
  .manufacturers-hero{padding:52px 0 48px}
  .manufacturers-hero h1{
    font-size:38px;
    line-height:1.03;
    letter-spacing:-1.3px;
  }
  .manufacturers-hero p{
    font-size:13px;
    line-height:1.7;
  }
  .manufacturer-intro{padding:48px 0 55px}
  .intro-grid{gap:23px}
  .intro-grid h2{
    font-size:31px;
    letter-spacing:-1px;
  }
  .brand-head{
    display:block;
    padding:32px 23px;
  }
  .brand-head h2{font-size:34px}
  .brand-badge{
    width:105px;
    height:105px;
    margin-top:28px;
    font-size:16px;
  }
  .manufacturer-product{padding:28px 23px}
  .manufacturer-why{padding:55px 0 60px}
  .section-heading{margin-bottom:32px}
  .section-heading h2{font-size:31px}
  .why-grid{grid-template-columns:1fr}
  .why-item{
    border-right:0!important;
    border-bottom:1px solid var(--line);
  }
  .why-item:last-child{border-bottom:0}
  .why-item:nth-child(3),
  .why-item:nth-child(4){border-top:0}
}
