.ate-hero{
  width:100%;
  min-height:calc(100vh - 96px);
  background:#E1D59F;
  padding:80px 20px;
  display:flex;
  align-items:center;
  overflow:hidden;
}

.ate-hero-wrap{
  max-width:1500px;
  width:100%;
  margin:0 auto;
  background:#374045;
  border-radius:44px;
  padding:80px 78px;
  display:grid;
  grid-template-columns:1fr 1fr;
  gap:65px;
  align-items:center;
  position:relative;
  overflow:hidden;
  box-shadow:0 28px 70px rgba(44,6,31,0.28);
}

/* Removed side round shapes */
.ate-hero-wrap::before,
.ate-hero-wrap::after{
  content:none !important;
  display:none !important;
}

.ate-hero-content{
  position:relative;
  z-index:2;
}

.ate-hero-badge{
  display:inline-flex;
  align-items:center;
  background:#E1D59F;
  color:#2C061F;
  padding:10px 18px;
  border-radius:999px;
  font-family:'Inter', sans-serif;
  font-size:14px;
  font-weight:800;
  margin-bottom:24px;
}

.ate-hero-content h1{
  font-family:'Cinzel', serif;
  color:#FFFFFF;
  font-size:48px;
  line-height:1.08;
  font-weight:800;
  margin:0 0 24px;
  max-width:650px;
}

.ate-hero-content p{
  font-family:'Inter', sans-serif;
  color:rgba(255,255,255,0.88);
  font-size:16px;
  line-height:1.8;
  max-width:620px;
  margin:0 0 10px;
}

.ate-trust-bar{
  display:flex;
  flex-wrap:wrap;
  gap:12px;
  margin-top:18px;
}

.ate-trust-bar span{
  background:rgba(255,255,255,0.10);
  color:#FFFFFF;
  border:1px solid rgba(255,255,255,0.15);
  padding:9px 14px;
  border-radius:999px;
  font-family:'Inter', sans-serif;
  font-size:13px;
  font-weight:700;
}

.ate-hero-actions{
  display:flex;
  align-items:center;
  gap:18px;
  flex-wrap:wrap;
  margin-top:48px;
}

.ate-hero-btn-primary,
.ate-hero-btn-secondary{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  gap:10px;
  width:260px;
  min-height:66px;
  padding:0 24px;
  border-radius:22px;
  font-family:'Inter', sans-serif;
  font-size:16px;
  font-weight:800;
  text-decoration:none !important;
  transition:0.3s ease;
}

.ate-hero-btn-primary{
  background:#D89216;
  color:#FFFFFF !important;
  border:2px solid #D89216;
  box-shadow:0 18px 35px rgba(216,146,22,0.32);
}

.ate-hero-btn-primary:hover{
  background:#E1D59F;
  color:#2C061F !important;
  border-color:#E1D59F;
}

.ate-hero-btn-secondary{
  background:transparent;
  color:#FFFFFF !important;
  border:2px solid #D89216;
}

.ate-hero-btn-secondary:hover{
  background:#D89216;
  color:#FFFFFF !important;
}

.ate-hero-btn-secondary *,
.ate-hero-btn-primary *{
  color:inherit !important;
}

.ate-hero-btn-secondary svg,
.ate-hero-btn-primary svg{
  width:20px;
  height:20px;
  stroke:currentColor !important;
  flex-shrink:0;
}

.ate-hero-visual{
  position:relative;
  z-index:2;
}

.ate-image-card{
  background:transparent;
  box-shadow:none;
  border-radius:0;
}

.ate-image-card::after{
  display:none !important;
}

.ate-image-card img{
  width:100%;
  height:560px;
  object-fit:contain;
  display:block;
  padding:0;
  filter:drop-shadow(0 30px 45px rgba(44,6,31,0.35));
}

/* DESKTOP LARGE */
@media(min-width:1400px){
  .ate-hero-wrap{
    max-width:1500px;
    padding:82px 85px;
  }

  .ate-hero-content h1{
    font-size:50px;
  }
}

/* TABLET */
@media(max-width:991px){
  .ate-hero{
    padding:50px 20px;
  }

  .ate-hero-wrap{
    max-width:1200px;
    grid-template-columns:1fr;
    padding:55px 35px;
    gap:35px;
  }

  .ate-hero-content h1{
    font-size:44px;
  }

  .ate-image-card img{
    height:430px;
  }
}

/* MOBILE */
@media(max-width:767px){
  .ate-hero{
    padding:35px 16px;
  }

  .ate-hero-wrap{
    border-radius:28px;
    padding:42px 22px;
    gap:25px;
  }

  .ate-hero-content h1{
    font-size:34px;
  }

  .ate-hero-content p{
    font-size:16px;
  }

  .ate-hero-actions{
    margin-top:34px;
    flex-direction:column;
    align-items:stretch;
  }

  .ate-hero-btn-primary,
  .ate-hero-btn-secondary{
    width:100%;
  }

  .ate-image-card img{
    height:330px;
  }
}