/* =========================
   FAQ
========================= */
.faq{
  background: #F8FAFC;
}
.faq-wrapper{
  display:grid;
  grid-template-columns:.8fr 1.2fr;
  gap:70px;
}

.faq-question{
  color: black;
}

.faq-info h2{
  font-size:3.2rem;
  line-height:1;
  margin:24px 0;
  color: black;
}

.faq-info p{
  color:#5B6578;
}

.faq-item{
  background:
  rgba(255,255,255,0.5);

  border:
  1px solid rgba(255,255,255,0.5);

  border-radius:22px;

  overflow:hidden;

  margin-bottom:18px;

  backdrop-filter:blur(10px);
}

.faq-item input{
  display:none;
}

.faq-question{
  padding:0px 0 10px;

  display:flex;
  align-items:center;
  justify-content:space-between;

  cursor:pointer;

  font-weight:700;
}

.faq-answer-white p {
  padding: 0 0 24px;
  color: #6b7280;
  font-size: 0.94rem;
  line-height: 1.75;
  text-align: justify;
  text-justify: inter-word;
}

.faq-answer{
  max-height:0;

  overflow:hidden;

  transition:max-height .4s ease;

  padding:
  0 30px;
}

.faq-answer p{
  padding-bottom:28px;
  color:#5B6578;
}

.faq-item input:checked ~ .faq-answer{
  max-height:200px;
}

/* =========================
   CTA
========================= */

.cta{
  position:relative;
  text-align:center;
  color:black;
  overflow:hidden;
  padding:30px 0 80px 0;
}

.cta-decor{
  position:absolute;
  inset:0;
  z-index:0;
  background:
    radial-gradient(600px 300px at 20% 20%, rgba(61,111,255,.12), transparent 60%),
    radial-gradient(600px 320px at 80% 80%, rgba(52,102,145,.12), transparent 60%);
  pointer-events:none;
}
.cta-decor::before{
  content:"";
  position:absolute;
  top:50%;left:50%;
  width:900px;height:900px;
  transform:translate(-50%,-50%);
  border-radius:50%;
  border:1px solid rgba(61,111,255,.08);
  box-shadow:0 0 0 60px rgba(61,111,255,.03);
}

.cta-container{
  position:relative;
  z-index:1;
  display:flex;
  flex-direction:column;
  align-items:center;
}

.cta-eyebrow{
  display:inline-block;
  font-size:.72rem;
  font-weight:700;
  letter-spacing:.14em;
  text-transform:uppercase;
  color:#3D6FFF;
  background:rgba(61,111,255,.08);
  border:1px solid rgba(61,111,255,.2);
  border-radius:999px;
  padding:6px 18px;
  margin-bottom:22px;
}

.cta h2{
  font-size:4rem;
  line-height:1.05;
  max-width:760px;
  margin:0 0 18px;
  letter-spacing:-0.02em;
}

.cta-highlight{
  background:linear-gradient(90deg,#3D6FFF,#346691);
  -webkit-background-clip:text;
  background-clip:text;
  color:transparent;
}

.cta-sub{
  color:#5B6578;
  font-size:1.05rem;
  max-width:480px;
  margin:0 0 36px;
}

.cta-btn{
  display:inline-flex;
  align-items:center;
  gap:10px;
  transition:transform .25s ease, box-shadow .25s ease;
}
.cta-btn svg{ transition:transform .25s ease; }
.cta-btn:hover{
  transform:translateY(-3px);
  box-shadow:0 12px 30px rgba(61,111,255,.25);
}
.cta-btn:hover svg{ transform:translateX(4px); }

@media (max-width:768px){
  .cta{ padding:80px 0; }
  .cta h2{ font-size:2.4rem; }
}
/* =========================
   FAQ
========================= */

.faq-section-white {
  background: #ffffff;
  padding: 20px  0 30px 0;
}

.faq-wrapper-new {
  display: grid;
  grid-template-columns: 0.75fr 1.25fr;
  gap: 60px;
  align-items: start;
}

.faq-header-col {
  position: sticky;
  top: 40px;
}

.faq-badge-white {
  display: inline-block;
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: #1a1a2e;
  background: #f0f1f5;
  border: 1px solid #e2e4ea;
  border-radius: 999px;
  padding: 6px 16px;
  margin-bottom: 20px;
}

.faq-title-white {
  font-size: 3rem;
  font-weight: 800;
  line-height: 1.05;
  color: #0f0f1a;
  margin: 0 0 20px;
  letter-spacing: -0.02em;
}

.faq-subtitle-white {
  font-size: 1rem;
  color: #6b7280;
  line-height: 1.7;
  max-width: 280px;
}


.faq-list {
  display: flex;
  flex-direction: column;
  gap: 0;
}

.faq-item-white {
  border-bottom: 1px solid #e5e7eb;
  overflow: hidden;
}

.faq-item-white:first-child {
  border-top: 1px solid #e5e7eb;
}

.faq-item-white input {
  display: none;
}

.faq-question-white {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 22px 0;
  cursor: pointer;
  font-weight: 600;
  font-size: 0.97rem;
  color: #111827;
  transition: color 0.2s;
  line-height: 1.4;
}

.faq-question-white:hover {
  color: #3D6FFF;
}

.faq-icon {
  flex-shrink: 0;
  width: 22px;
  height: 22px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #9ca3af;
  transition: transform 0.3s ease, color 0.2s;
}

.faq-icon svg {
  width: 18px;
  height: 18px;
}

.faq-answer-white {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.4s ease;
}

.faq-answer-white p {
  padding: 0 0 24px;
  color: #6b7280;
  font-size: 0.94rem;
  line-height: 1.75;
}


.faq-item-white input:checked ~ .faq-question-white {
  color: #3D6FFF;
}

.faq-item-white input:checked ~ .faq-question-white .faq-icon {
  transform: rotate(180deg);
  color: #3D6FFF;
}

.faq-item-white input:checked ~ .faq-answer-white {
  max-height: 300px;
}

/* Responsive */
@media (max-width: 768px) {
  .faq-wrapper-new {
    grid-template-columns: 1fr;
    gap: 40px;
  }
  .faq-header-col {
    position: static;
  }
  .faq-title-white {
    font-size: 2.2rem;
  }
}
