/* HERO */
.inq-hero{
  padding: 86px 0 50px;
  background:
    radial-gradient(1200px 500px at 10% -10%, rgba(0,196,204,.18), transparent),
    linear-gradient(#e9fbfc, #fff);
}
.inq-hero__grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap: 26px;
  align-items:center;
}
.inq-hero__text h1{
  font-size: clamp(30px, 5.5vw, 42px);
  margin:0 0 10px;
  font-weight:800;
}
.inq-hero__sub{
  margin:0 0 14px;
  color:#444;
  font-size:15.5px;
  line-height:1.6;
}
.inq-hero__bullets{
  margin:0 0 18px;
  padding:0;
  list-style:none;
  display:grid;
  gap:6px;
  font-size:14.5px;
  color:#333;
}
.inq-hero__bullets li{
  position:relative;
  padding-left:18px;
}
.inq-hero__bullets li::before{
  content:"•";
  position:absolute;
  left:4px; top:-2px;
  color:#00C4CC;
}
.inq-hero__cta{
  display:flex;
  gap:10px;
  flex-wrap:wrap;
}

/* hero mock */
.inq-hero__mock{
  position:relative;
  display:flex;
  justify-content:center;
}
.inq-mock{
  background:#fff;
  border-radius:24px;
  padding:12px;
  border:1px solid #eee;
  box-shadow:0 20px 40px rgba(0,0,0,.12);
}
.inq-mock img{
  width:100%;
  display:block;
  border-radius:20px;
}
.inq-mock--perfil{
  width:min(380px, 92%);
}
.inq-mock-glow{
  position:absolute;
  width:420px; height:420px;
  background: radial-gradient(circle, rgba(0,196,204,.35), transparent 60%);
  filter: blur(55px);
  z-index:-1;
}

/* PROBLEM */
.inq-problem{
  padding: 60px 0 30px;
}
.inq-problem__grid{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap:16px;
}
.inq-problem__card{
  background:#fff;
  border-radius:18px;
  border:1px solid #eee;
  padding:18px;
  box-shadow:0 10px 22px rgba(0,0,0,.05);
}
.inq-problem__card h3{
  margin:0 0 6px;
  font-size:18px;
}
.inq-problem__card p{
  margin:0;
  color:#555;
  font-size:14.5px;
  line-height:1.6;
}

/* SOLUTION */
.inq-solution{
  padding: 60px 0;
  background:#F4F6F8;
}
.inq-solution__grid{
  display:grid;
  grid-template-columns: 1.1fr .9fr;
  gap:22px;
  align-items:center;
}
.inq-solution__text h2{
  margin:0 0 8px;
  font-size: clamp(22px,4.5vw,30px);
}
.inq-solution__text p{
  margin:0 0 10px;
  color:#444;
  line-height:1.6;
}
.inq-solution__mock .inq-mock{
  width:min(360px, 100%);
  margin-left:auto;
}

/* BEFORE AFTER */
.inq-before-after{
  padding: 60px 0 40px;
}
.inq-before-after__grid{
  display:grid;
  grid-template-columns: 1fr 1fr;
  gap: 18px;
}
.inq-before, .inq-after{
  background:#fff;
  border-radius:20px;
  border:1px solid #eee;
  padding:20px;
  box-shadow:0 10px 22px rgba(0,0,0,.05);
}
.inq-before h3,
.inq-after h3{
  margin:0 0 8px;
  font-size:18px;
}
.inq-before ul,
.inq-after ul{
  margin:0;
  padding-left:18px;
  color:#444;
  font-size:14.5px;
  line-height:1.6;
}

/* STEPS */
.inq-steps{
  padding: 60px 0;
}
.inq-step{
  display:grid;
  grid-template-columns: 70px 1.2fr .9fr;
  gap:16px;
  align-items:center;
  padding: 28px 0;
  border-bottom:1px dashed #e4ecee;
}
.inq-step:last-child{
  border-bottom:none;
}
.inq-step__icon{
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  font-weight:800;
  color:#00C4CC;
}
.inq-step__icon img{
  width:40px;
  height:40px;
  filter: drop-shadow(0 6px 10px rgba(0,196,204,.18));
}
.inq-step__icon--final{
  width:40px;
  height:40px;
  border-radius:999px;
  border:2px solid #00C4CC;
  display:flex;
  align-items:center;
  justify-content:center;
}
.inq-step__content h3{
  margin:0 0 6px;
  font-size:17px;
}
.inq-step__content p{
  margin:0;
  color:#444;
  font-size:14.5px;
  line-height:1.6;
}
.inq-step__mock{
  display:flex;
  justify-content:flex-end;
}
.inq-mock.small{
  width:min(260px,100%);
}
.inq-step__note{
  font-size:13.5px;
  color:#555;
  background:#F4F6F8;
  border-radius:16px;
  padding:12px;
}

/* TESTIMONIOS */
.inq-testimonials{
  padding: 60px 0;
  background:#F4F6F8;
}
.inq-testimonials__grid{
  display:grid;
  grid-template-columns: repeat(3,1fr);
  gap:16px;
}
.inq-testimonial{
  background:#fff;
  border-radius:20px;
  padding:18px;
  border:1px solid #eee;
  box-shadow:0 10px 22px rgba(0,0,0,.05);
}
.inq-testimonial .quote{
  margin:0 0 10px;
  font-size:14.5px;
  line-height:1.6;
  color:#333;
}
.inq-testimonial .name{
  margin:0;
  font-size:13px;
  color:#666;
}

/* FAQ */
.inq-faq{
  padding: 60px 0 40px;
}
.inq-faq__list{
  max-width:640px;
  margin: 0 auto;
  display:grid;
  gap:12px;
}
.inq-faq__item{
  background:#fff;
  border-radius:16px;
  border:1px solid #e6e6e6;
  padding:12px 14px;
  box-shadow:0 8px 18px rgba(0,0,0,.04);
}
.inq-faq__item summary{
  list-style:none;
  cursor:pointer;
  font-weight:600;
  font-size:14.5px;
  display:flex;
  align-items:center;
  justify-content:space-between;
}
.inq-faq__item summary::-webkit-details-marker{
  display:none;
}
.inq-faq__item summary::after{
  content:"+";
  font-weight:700;
  color:#777;
  margin-left:10px;
}
.inq-faq__item[open] summary::after{
  content:"–";
}
.inq-faq__item p{
  margin:8px 0 4px;
  color:#444;
  font-size:14px;
  line-height:1.6;
}

/* CTA FINAL */
.inq-cta{
  padding: 80px 0;
  background:#00C4CC;
  text-align:center;
  color:white;
}
.inq-cta h2{
  font-size: clamp(24px, 4.5vw, 32px);
  margin:0 0 8px;
}
.inq-cta p{
  margin:0 0 16px;
  font-size:14.5px;
}
.inq-cta__actions{
  display:flex;
  justify-content:center;
  gap:10px;
  flex-wrap:wrap;
}

/* RESPONSIVE */
@media (max-width: 920px){
  .inq-hero__grid,
  .inq-solution__grid,
  .inq-before-after__grid{
    grid-template-columns: 1fr;
  }

  .inq-problem__grid,
  .inq-testimonials__grid{
    grid-template-columns: 1fr;
  }

  .inq-solution__mock .inq-mock{
    margin: 0 auto;
  }

  .inq-step{
    grid-template-columns: 1fr;
  }
  .inq-step__mock{
    justify-content:flex-start;
  }
}
