/* =====================================================
   HERO
===================================================== */

.hero-light-overlay{
  position:absolute;
  inset:0;
  background:linear-gradient(
    180deg,
    rgba(255,255,255,.96),
    rgba(255,255,255,.88)
  );
}

.hero-content{
  position:relative;
  z-index:2;
}

.hero-intro{
  text-align:center;
  max-width:720px;
  margin:0 auto;
}

.hero-intro h1{
  font-size:34px;
  font-weight:800;
}

.hero-intro h1 span{
  color:var(--accent);
}

.hero-intro p{
  font-size:15px;
  color:#475569;
  margin-bottom:16px;
}

.hero-badges{
  display:flex;
  justify-content:center;
  gap:12px;
  flex-wrap:wrap;
}

.hero-badges span{
  background:rgba(255,255,255,.75);
  padding:6px 14px;
  border-radius:999px;
  font-size:12px;
  font-weight:600;
}

/* =====================================================
   SUPPORT OPTIONS
===================================================== */
.support-section{
  padding:80px 0;
  background:linear-gradient(180deg,#f8fafc,#ffffff);
}

.support-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:32px;
}

.support-card{
  text-align:center;
  padding:34px 28px;
  border-radius:26px;

  background:rgba(255,255,255,.75);
  backdrop-filter:blur(24px);
  border:1px solid rgba(255,255,255,.45);

  box-shadow:0 30px 80px rgba(0,0,0,.14);
  transition:.35s ease;
}

.support-card:hover{
  transform:translateY(-6px);
  box-shadow:0 50px 120px rgba(0,0,0,.18);
}

.support-icon{
  width:58px;
  height:58px;
  margin:0 auto 14px;
  border-radius:18px;
  background:var(--accent-grad);
  color:#fff;
  display:flex;
  align-items:center;
  justify-content:center;
  font-size:26px;
  box-shadow:0 14px 30px rgba(48,104,124,.45);
}

.support-card h3{
  font-size:20px;
  font-weight:800;
  margin-bottom:8px;
}

.support-card p{
  font-size:14px;
  color:#475569;
  margin-bottom:18px;
}

.support-btn{
  display:inline-flex;
  align-items:center;
  justify-content:center;
  padding:10px 22px;
  border-radius:999px;
  background:var(--accent-grad);
  color:#fff;
  font-weight:700;
  text-decoration:none;
  font-size:14px;
  box-shadow:0 12px 26px rgba(48,104,124,.35);
}

.support-btn.wa{
  background:#22c55e;
  box-shadow:0 12px 26px rgba(34,197,94,.35);
}

/* =====================================================
   FAQ
===================================================== */
.faq-section{
  padding:80px 0;
}

.faq-header{
  max-width:620px;
  margin:0 auto 40px;
}

.faq-header h2{
  font-size:32px;
  font-weight:800;
}

.faq-header h2 span{
  color:var(--accent);
}

.faq-header p{
  font-size:14px;
  color:#64748b;
}

.faq-list{
  max-width:760px;
  margin:0 auto;
}

.faq-item{
  margin-bottom:14px;
  padding:18px 22px;
  border-radius:18px;
  background:rgba(255,255,255,.75);
  backdrop-filter:blur(18px);
  border:1px solid rgba(255,255,255,.45);
  box-shadow:0 20px 50px rgba(0,0,0,.12);
}

.faq-item summary{
  font-size:15px;
  font-weight:700;
  cursor:pointer;
  list-style:none;
}

.faq-item p{
  font-size:14px;
  color:#475569;
  margin-top:10px;
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media(max-width:991px){
  .support-grid{
    grid-template-columns:1fr;
  }
}

@media(max-width:768px){
  .hero-apple{
    padding:60px 0 40px;
  }
  .hero-intro h1{
    font-size:26px;
  }
}


/* =====================================================
   FAQ + FORM GRID (NO CONFLICT)
===================================================== */

.support-faq-section{
  padding:90px 0;
  background:linear-gradient(180deg,#f8fafc,#ffffff);
}

/* NEW GRID */
.faq-form-grid{
  display:grid;
  grid-template-columns:1.2fr 1fr;
  gap:40px;
  align-items:flex-start;
}

/* =====================================================
   FAQ
===================================================== */

.faq-wrap{
  background:rgba(255,255,255,.7);
  backdrop-filter:blur(22px);
  border-radius:28px;
  padding:34px;
  border:1px solid rgba(255,255,255,.45);
  box-shadow:0 40px 90px rgba(0,0,0,.12);
}

.faq-header{
  margin-bottom:22px;
}

.faq-header h2{
  font-size:30px;
  font-weight:800;
}

.faq-header h2 span{
  color:var(--accent);
}

.faq-header p{
  font-size:14px;
  color:#64748b;
}

/* FAQ ITEM */
.faq-item{
  margin-bottom:14px;
  padding:18px 22px;
  border-radius:18px;
  background:rgba(255,255,255,.85);
  border:1px solid rgba(255,255,255,.45);
  box-shadow:0 16px 40px rgba(0,0,0,.08);
}

.faq-item summary{
  font-size:15px;
  font-weight:700;
  cursor:pointer;
  list-style:none;
  position:relative;
  padding-right:22px;
}

.faq-item summary::after{
  content:"+";
  position:absolute;
  right:0;
  top:0;
  font-size:18px;
  color:var(--accent);
}

.faq-item[open] summary::after{
  content:"–";
}

.faq-item p{
  font-size:14px;
  color:#475569;
  margin-top:10px;
  line-height:1.7;
}

/* =====================================================
   SUPPORT FORM
===================================================== */

.support-form-wrap{
  background:rgba(255,255,255,.75);
  backdrop-filter:blur(26px);
  border-radius:28px;
  padding:36px;
  border:1px solid rgba(255,255,255,.45);
  box-shadow:0 40px 90px rgba(0,0,0,.14);
}

.support-form-wrap h3{
  font-size:22px;
  font-weight:800;
  margin-bottom:6px;
}

.support-form-wrap p{
  font-size:14px;
  color:#64748b;
  margin-bottom:22px;
}

.form-group{
  margin-bottom:14px;
}

.form-group label{
  font-size:13px;
  font-weight:600;
  margin-bottom:6px;
  display:block;
}

.form-group input,
.form-group select,
.form-group textarea{
  width:100%;
  padding:12px 14px;
  border-radius:14px;
  border:1px solid rgba(255,255,255,.45);
  background:rgba(255,255,255,.9);
  font-size:14px;
}

.form-group input:focus,
.form-group select:focus,
.form-group textarea:focus{
  outline:none;
  border-color:var(--accent);
  box-shadow:0 0 0 3px rgba(48,104,124,.12);
}

/* BUTTON */
.btn-support{
  width:100%;
  margin-top:10px;
  padding:14px;
  border:none;
  border-radius:999px;
  background:var(--accent-grad);
  color:#fff;
  font-size:15px;
  font-weight:800;
  cursor:pointer;
  box-shadow:0 14px 30px rgba(48,104,124,.35);
  transition:.25s ease;
}

.btn-support:hover{
  opacity:.95;
  transform:translateY(-1px);
}

/* =====================================================
   RESPONSIVE
===================================================== */
@media(max-width:991px){
  .faq-form-grid{
    grid-template-columns:1fr;
  }
}
