:root{
   --eco-primary:#53b9ef;
  --eco-primary-dark:#1797d6;
  --eco-heading:#24356c;
  --eco-text:#596987;
  --eco-bg:#f2f6fb;
  --eco-bg2:#edf3f8;
  --eco-white:#ffffff;
  --eco-border:rgba(36,53,108,.12);
  --eco-shadow:0 18px 40px rgba(23,151,214,.08);
  --eco-container:1180px;
}



/* HERO: only banner */
.lp-hero{
  position: relative;
  min-height: 640px;
  display: flex;
  align-items: center;
  text-align: center;

  background:
    linear-gradient(180deg, rgba(0,0,0,.35) 0%, rgba(0,0,0,.28) 55%, rgba(0,0,0,.40) 100%),
    var(--lp-hero-bg) center/cover no-repeat;
}

.lp-hero .lp-container{
  width: min(1200px, calc(100% - 40px));
  margin: 0 auto;
  padding: 90px 0;
}

.lp-hero h1{
  color:#fff;
  margin:0;
  font-weight:800;
  line-height:1.12;
  font-size: clamp(34px, 4.4vw, 62px);
}

.lp-brush-section{
    position: absolute;
    bottom: 0;
    width: 100%;
    height: 351px;
  background: url("../landing/brush.png") top center / cover no-repeat;
  z-index: 9;
}


/* mobile */
@media (max-width: 900px){
  .lp-hero{ min-height: 420px; }
  .lp-brush-section{ height: 160px; }
}




*{box-sizing:border-box}

img{max-width:100%;display:block}
a{text-decoration:none}

.eco-wrap{
  overflow:hidden;
}

.eco-container{
  width:min(var(--eco-container), calc(100% - 40px));
  margin:0 auto;
}

.eco-label{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:var(--eco-primary-dark);
  font-size:12px;
  font-weight:700;
  letter-spacing:.18em;
  text-transform:uppercase;
}
.eco-label:before,
.eco-label:after{
  content:"";
  width:34px;
  height:2px;
  background:var(--eco-primary);
  display:block;
}

.eco-intro,
.eco-detail{
  padding:84px 0;
  background:#fff;
}

.eco-split{
  display:grid;
  grid-template-columns:1.1fr 1fr;
  gap:64px;
  align-items:start;
}

.eco-split-title{
  margin:0;
  color:var(--eco-primary);
  font-size:clamp(32px,4vw,46px);
  line-height:1.02;
  letter-spacing:-.03em;
}

.eco-split-copy{
  color:var(--eco-heading);
  font-size:16px;
  line-height:1.9;
  max-width:520px;
}

.eco-why{
  padding:84px 0 92px;
  background:var(--eco-bg2);
  text-align:center;
}

.eco-why-head{
  max-width:920px;
  margin:0 auto 52px;
}

.eco-why-head h2{
  margin:16px 0 0;
  color:var(--eco-heading);
  font-size:clamp(22px,2.5vw,32px);
  line-height:1.5;
}

.eco-why-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:28px;
}

.eco-why-card,
.eco-service-card{
  background:var(--eco-white);
  border:1px solid var(--eco-border);
  border-radius:18px;
  box-shadow:var(--eco-shadow);
}

.eco-why-card{
  padding:34px 24px;
}

.eco-why-icon{
  width:56px;
  height:56px;
  margin:0 auto 18px;
  border-radius:50%;
  display:grid;
  place-items:center;
  background:linear-gradient(135deg, rgba(83,185,239,.12), rgba(23,151,214,.18));
  color:var(--eco-heading);
  font-size:24px;
  font-weight:700;
}

.eco-why-card h3,
.eco-service-card h3{
  margin:0 0 10px;
  color:var(--eco-heading);
}

.eco-why-card p,
.eco-service-card p{
  margin:0;
  font-size:15px;
  line-height:1.75;
}

.eco-services{
  padding:0 0 90px;
  background:var(--eco-bg2);
}

.eco-services-head{
  text-align:center;
  margin-bottom:34px;
  padding-top: 40px;
}

.eco-services-grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
}

.eco-service-card{
  padding:28px 24px;
  min-height:180px;
}

.eco-cta{
  padding:96px 0;
  position:relative;
  background:linear-gradient(180deg, #182f68 0%, #101f4d 100%);
}

.eco-cta:before{
  content:"";
  position:absolute;
  inset:0;
  background-image:radial-gradient(rgba(255,255,255,.08) 1px, transparent 1px);
  background-size:20px 20px;
  opacity:.35;
}

.eco-cta-inner{
  position:relative;
  z-index:2;
  max-width:860px;
  margin:0 auto;
  text-align:center;
  color:#fff;
}

.eco-cta h2{
  margin:0 0 16px;
  font-size:clamp(34px,4vw,50px);
  line-height:1.05;
  color:#fff;
}

.eco-cta p{
  margin:0 auto;
  max-width:700px;
  font-size:17px;
  line-height:1.8;
  color:rgba(255,255,255,.88);
}

.eco-cta-actions{
  display:flex;
  justify-content:center;
  gap:16px;
  flex-wrap:wrap;
  margin-top:30px;
}

.eco-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-width:190px;
  padding:15px 26px;
  border-radius:999px;
  font-size:14px;
  font-weight:700;
  letter-spacing:.02em;
  transition:.25s ease;
}

.eco-btn-primary{
  background:var(--eco-primary);
  color:#fff;
}

.eco-btn-primary:hover{
  background:var(--eco-primary-dark);
}

.eco-btn-secondary{
  border:1px solid rgba(255,255,255,.32);
  color:#fff;
  background:transparent;
}

.eco-btn-secondary:hover{
  background:rgba(255,255,255,.08);
}

@media (max-width: 991px){
  

  .eco-split,
  .eco-why-grid,
  .eco-services-grid{
    grid-template-columns:1fr;
  }

  .eco-intro,
  .eco-detail,
  .eco-why,
  .eco-services,
  .eco-cta{
    padding-top:70px;
    padding-bottom:70px;
  }

  .eco-why-head{
    margin-bottom:36px;
  }
}

@media (max-width: 767px){
  .eco-container{
    width:min(100% - 28px, var(--eco-container));
  }

 

  .eco-split-title{
    font-size:34px;
  }

  .eco-why-card,
  .eco-service-card{
    padding:24px 20px;
  }
}