/* ============================================================
   MODERN HERO SECTION — INDUSTRY STANDARD
============================================================ */

.hero-modern{
  width:100%;
  padding:24px 20px 60px;
  margin:0;
  background:linear-gradient(135deg,#fff6ee,#ffffff);
}

.hero-container{
  max-width:1300px;
  margin:0 auto;
  display:grid;
  grid-template-columns:1.1fr .9fr;
  align-items:center;
  gap:50px;
}

/* ================= LEFT ================= */

.hero-content{
  min-width:0;
}

.hero-content h1{
  font-size:clamp(30px,4vw,52px);
  line-height:1.15;
  font-weight:900;
  color:#111;
  margin-bottom:18px;
}

.hero-content h1 span{
  background:linear-gradient(90deg,#ff6a00,#ee0979);
  -webkit-background-clip:text;
  color:transparent;
}

.hero-content p{
  font-size:18px;
  line-height:1.7;
  color:#555;
  max-width:620px;
  margin-bottom:28px;
}

/* ================= BUTTONS ================= */

.hero-buttons{
  display:flex;
  flex-wrap:wrap;
  gap:16px;
  margin-bottom:24px;
}

.btn-primary,
.btn-outline-dark{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  min-height:52px;
  padding:14px 26px;
  border-radius:50px;
  text-decoration:none;
  font-weight:700;
  transition:all .3s ease;
}

.btn-primary{
  color:#fff;
  background:linear-gradient(135deg,#ff6a00,#ee0979);
  box-shadow:0 12px 30px rgba(238,9,121,.25);
}

.btn-primary:hover{
  transform:translateY(-2px);
}

.btn-outline-dark{
  border:2px solid #111;
  color:#111;
  background:#fff;
}

.btn-outline-dark:hover{
  background:#111;
  color:#fff;
}

/* ================= TRUST ================= */

.hero-trust{
  display:flex;
  flex-wrap:wrap;
  gap:14px 20px;
  font-size:14px;
  font-weight:600;
  color:#444;
}

/* ================= IMAGE ================= */

.hero-image{
  display:flex;
  justify-content:center;
}

.hero-image img{
  width:100%;
  max-width:550px;
  border-radius:24px;
  box-shadow:0 25px 60px rgba(0,0,0,.12);
}

/* ================= TABLET ================= */

@media(max-width:992px){
  .hero-container{
    grid-template-columns:1fr;
    gap:28px;
    text-align:center;
  }

  .hero-image{
    order:-1;
  }

  .hero-content p{
    margin-left:auto;
    margin-right:auto;
  }

  .hero-buttons,
  .hero-trust{
    justify-content:center;
  }
}

/* ================= MOBILE ================= */

@media(max-width:768px){
  .hero-modern{
    padding:18px 14px 40px;
  }

  .hero-content h1{
    font-size:28px;
  }

  .hero-content p{
    font-size:15px;
    line-height:1.6;
  }

  .hero-buttons{
    flex-direction:column;
  }

  .btn-primary,
  .btn-outline-dark{
    width:100%;
  }

  .hero-image img{
    max-width:100%;
    border-radius:18px;
  }

  .hero-trust{
    font-size:13px;
    gap:10px;
  }
}
