 .section-sm{
  padding: 80px 0;
}

.pt-0{
  padding-top: 0;
}
img{
  max-width: 100%;
  display: block;
}

.about-hero{
  padding: 90px 0 70px;
  background: linear-gradient(180deg, #f8f5ef 0%, #ffffff 100%);
}

.about-hero-wrap{
  display: grid;
  grid-template-columns: 1.1fr 0.9fr;
  gap: 40px;
  align-items: center;
}

.about-hero-content .eyebrow{
  margin-bottom: 14px;
}

.about-hero-content h1{
  margin: 0 0 18px;
  font-size: 48px;
  line-height: 1.15;
  font-weight: 700;
  color: #1d1d1d;
}

.about-hero-content p{
  margin: 0 0 24px;
  font-size: 17px;
  line-height: 1.9;
  color: #666;
  max-width: 620px;
}

.hero-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.hero-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 24px;
  border-radius: 999px;
  text-decoration: none;
  font-weight: 600;
  transition: .3s ease;
}

.hero-btn.primary{
  background: #b78a3d;
  color: #fff;
}

.hero-btn.primary:hover{
  background: #9b742f;
}

.hero-btn.secondary{
  background: #fff;
  color: #1d1d1d;
  border: 1px solid rgba(0,0,0,0.1);
}

.hero-btn.secondary:hover{
  border-color: #b78a3d;
  color: #b78a3d;
}

.about-hero-image{
  position: relative;
}

.about-hero-image img{
  width: 100%;
  height: 520px;
  object-fit: cover;
  border-radius: 28px;
  box-shadow: 0 18px 45px rgba(0,0,0,0.12);
}

.section-head{
  text-align: center;
  max-width: 860px;
  margin: 0 auto 50px;
}

.eyebrow{
  display: inline-block;
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  color: #b78a3d;
}

.section-title,
.split-banner h2{
  margin: 14px 0 16px;
  font-size: 38px;
  line-height: 1.2;
  font-weight: 700;
  color: #1d1d1d;
}

.section-head p,
.split-banner-top p{
  margin: 0 auto;
  max-width: 760px;
  font-size: 17px;
  line-height: 1.9;
  color: #666;
}

.grid{
  display: grid;
  gap: 24px;
  align-items: stretch;
}

.grid-3{
  grid-template-columns: repeat(3, minmax(0, 1fr));
}

.info-card{
  background: #fff;
  border-radius: 22px;
  padding: 32px 26px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
}

.info-card:hover{
  transform: translateY(-6px);
  box-shadow: 0 16px 40px rgba(0,0,0,0.10);
}

.trust-icon{
  width: 72px;
  height: 72px;
  margin: 0 auto 18px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: rgba(183,138,61,0.12);
  color: #b78a3d;
  font-size: 28px;
}

.info-card h3{
  margin: 0 0 14px;
  font-size: 22px;
  color: #1d1d1d;
}

.info-card p{
  margin: 0;
  font-size: 16px;
  line-height: 1.9;
  color: #666;
}

/* ===== FIXED HOW WE WORK SECTION ===== */
.split-banner{
  background: #fff;
  border-radius: 26px;
  padding: 50px 35px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  display: block !important;
}

.split-banner-top{
  display: block !important;
  width: 100%;
  max-width: 860px;
  margin: 0 auto 35px;
  text-align: center;
}

.stats-grid{
  display: grid !important;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 20px;
  align-items: stretch;
  width: 100%;
}

.stat-box{
  background: #faf8f3;
  border: 1px solid rgba(183,138,61,0.12);
  border-radius: 18px;
  padding: 28px 22px;
  text-align: center;
  transition: transform .3s ease, box-shadow .3s ease;
  min-height: 230px;
  height: 100%;
  display: flex;
  flex-direction: column;
  justify-content: flex-start;
  align-items: center;
}

.stat-box:hover{
  transform: translateY(-4px);
  box-shadow: 0 12px 30px rgba(0,0,0,0.07);
}

.stat-box strong{
  display: block;
  font-size: 30px;
  font-weight: 700;
  line-height: 1;
  color: #b78a3d;
  margin-bottom: 10px;
}

.stat-box span{
  display: block;
  font-size: 19px;
  font-weight: 700;
  color: #1d1d1d;
  margin-bottom: 12px;
}

.stat-box p{
  margin: 0;
  font-size: 15px;
  line-height: 1.8;
  color: #666;
}

.metric-grid{
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 22px;
  align-items: stretch;
}

.metric-card{
  background: #fff;
  border-radius: 20px;
  padding: 30px 20px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(0,0,0,0.06);
  transition: transform .3s ease, box-shadow .3s ease;
  height: 100%;
}

.metric-card:hover{
  transform: translateY(-5px);
  box-shadow: 0 16px 36px rgba(0,0,0,0.09);
}

.metric-card strong{
  display: block;
  font-size: 34px;
  line-height: 1;
  color: #b78a3d;
  margin-bottom: 12px;
}

.metric-card span{
  display: block;
  font-size: 16px;
  font-weight: 600;
  color: #444;
}

@media (max-width: 991px){
  .about-hero-wrap{
    grid-template-columns: 1fr;
  }

  .about-hero-content{
    text-align: center;
  }

  .about-hero-content p{
    margin-left: auto;
    margin-right: auto;
  }

  .hero-actions{
    justify-content: center;
  }

  .about-hero-image img{
    height: 420px;
  }

  .grid-3,
  .stats-grid,
  .metric-grid{
    grid-template-columns: repeat(2, minmax(0, 1fr)) !important;
  }

  .section-title,
  .split-banner h2{
    font-size: 32px;
  }

  .about-hero-content h1{
    font-size: 40px;
  }

  .stat-box{
    min-height: 210px;
  }
}

@media (max-width: 767px){
  .section-sm{
    padding: 60px 0;
  }

  .about-hero{
    padding: 70px 0 55px;
  }

  .about-hero-content h1{
    font-size: 32px;
  }

  .section-title,
  .split-banner h2{
    font-size: 28px;
  }

  .grid-3,
  .stats-grid,
  .metric-grid{
    grid-template-columns: 1fr !important;
  }

  .split-banner{
    padding: 32px 20px;
  }

  .info-card,
  .metric-card,
  .stat-box{
    padding: 24px 18px;
  }

  .about-hero-image img{
    height: 300px;
  }

  .stat-box{
    min-height: auto;
  }
}