/* ======================================
   PRESSE & PRO - PAGE DEDIEE
====================================== */

.vs-pro-hero{
  padding: 58px 0 38px;
  background: linear-gradient(180deg, #f4f8fc 0%, #ffffff 100%);
}

.vs-pro-kicker{
  display: inline-block;
  margin-bottom: 12px;
  font-size: .9rem;
  font-weight: 800;
  color: #1f6fb2;
  text-transform: uppercase;
  letter-spacing: .08em;
}

.vs-pro-hero h1{
  margin: 0 0 18px;
  font-size: clamp(1.95rem, 3.4vw, 3.1rem);
  line-height: 1.05;
  color: #12263f;
}

.vs-pro-hero p{
  max-width: 860px;
  margin: 0;
  font-size: 1.08rem;
  color: #556274;
}

.vs-pro-section{
  padding: 46px 0;
}

.vs-pro-section-alt{
  background: #f8fbff;
}

.vs-pro-title{
  margin: 0 0 28px;
  font-size: clamp(2rem, 3.3vw, 3rem);
  line-height: 1.08;
  color: #12263f;
}

.vs-pro-grid{
  display: grid;
  gap: 24px;
}

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

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

.vs-pro-card{
  display: block;
  padding: 22px;
  border-radius: 24px;
  background: #ffffff;
  border: 1px solid #e5edf5;
  box-shadow: 0 14px 34px rgba(15, 76, 129, 0.08);
  text-decoration: none;
  color: inherit;
}

.vs-pro-card-static{
  cursor: default;
}

.vs-pro-card-icon{
  width: 56px;
  height: 46px;
  border-radius: 18px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  background: #edf6ff;
  color: #1f4e82;
  font-size: 1.2rem;
  margin-bottom: 18px;
}

.vs-pro-card h3{
  margin: 0 0 12px;
  color: #16314f;
  line-height: 1.2;
}

.vs-pro-card p{
  margin: 0;
  color: #5c6878;
  line-height: 1.72;
}

.vs-pro-link{
  display: inline-block;
  margin-top: 16px;
  color: #1f4e82;
  font-weight: 800;
  text-decoration: none;
}

.vs-pro-link:hover{
  text-decoration: underline;
}

.vs-pro-faq{
  padding: 0 0 56px;
}

.vs-pro-faq-container{
  width: min(920px, calc(100% - 32px));
  margin: 0 auto;
}

.vs-pro-faq-container h2{
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin-bottom: 24px;
  color: #12263f;
}

.vs-pro-faq-item{
  background: #fff;
  border: 1px solid #e6edf5;
  border-radius: 20px;
  padding: 20px 22px;
  margin-bottom: 14px;
  box-shadow: 0 10px 28px rgba(15, 76, 129, 0.06);
}

.vs-pro-faq-item summary{
  cursor: pointer;
  font-weight: 700;
  color: #183856;
  list-style: none;
}

.vs-pro-faq-item summary::-webkit-details-marker{
  display: none;
}

.vs-pro-faq-item p{
  margin: 14px 0 0;
  color: #5b6776;
  line-height: 1.7;
}

.vs-pro-cta{
  padding: 0 0 60px;
}

.vs-pro-cta-box{
  border-radius: 30px;
  background: linear-gradient(135deg, #123b67 0%, #1f6fb2 100%);
  color: #fff;
  padding: 28px;
  box-shadow: 0 24px 60px rgba(18, 51, 84, 0.16);
}

.vs-pro-cta-kicker{
  text-transform: uppercase;
  letter-spacing: .08em;
  font-size: .88rem;
  font-weight: 800;
  margin-bottom: 10px;
  opacity: .92;
}

.vs-pro-cta-box h2{
  color: #fff;
  font-size: clamp(1.8rem, 3.4vw, 2.6rem);
  margin: 0 0 14px;
}

.vs-pro-cta-box p{
  max-width: 760px;
  color: rgba(255,255,255,0.90);
  margin: 0 0 20px;
  line-height: 1.7;
}

.vs-pro-cta-actions{
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
}

.vs-pro-btn{
  display: inline-flex;
  align-items: center;
  justify-content: center;
  min-height: 52px;
  padding: 0 22px;
  border-radius: 999px;
  background: #fff;
  color: #123b67;
  text-decoration: none;
  font-weight: 800;
}

.vs-pro-btn-light{
  background: transparent;
  color: #fff;
  border: 1px solid rgba(255,255,255,0.24);
}

@media (max-width: 980px){
  .vs-pro-grid-2,
  .vs-pro-grid-3{
    grid-template-columns: 1fr;
  }

  .vs-pro-section{
    padding: 40px 0;
  }
}

@media (max-width: 640px){
  .vs-pro-hero{
    padding: 44px 0 26px;
  }

  .vs-pro-card,
  .vs-pro-cta-box{
    padding: 24px;
    border-radius: 22px;
  }

  .vs-pro-cta-actions{
    flex-direction: column;
  }

  .vs-pro-btn{
    width: 100%;
  }

  .vs-pro-faq-container{
    width: calc(100% - 24px);
  }
}