.faq-page{
  background:var(--surface-services);
}

/* HERO */
.faq-hero{
  position:relative;
  min-height:600px;
  overflow:hidden;
}

.faq-hero-bg{
  position:absolute;
  inset:0;
  background:url("../images/faqhero.jpg") center/cover no-repeat;
  z-index:0;

  opacity:0;
  transform:scale(1.05);
  animation:faqHeroFade 1.8s ease forwards;
}

.faq-hero-overlay{
  position:absolute;
  inset:0;
  background:
    linear-gradient(90deg, rgba(0,0,0,.75) 0%, rgba(0,0,0,.5) 45%, rgba(0,0,0,.3) 100%);
  z-index:1;
}

.faq-hero-inner{
  position:relative;
  z-index:2;
  min-height:600px;
  padding-top:126px;
}

.faq-hero-content{
  min-height:300px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
}

.faq-hero-title{
  font-family:"InterCuostom", sans-serif;
  font-size:48px;
  line-height:1.05;
  color:#cfc4bc;
  text-align:center;

  opacity:0;
  transform:translateY(50px);
  transition:
    opacity .9s ease,
    transform .9s cubic-bezier(0.22,1,0.36,1);
}

.faq-hero-title.in-view{
  opacity:1;
  transform:translateY(0);
}

@keyframes faqHeroFade{
  0%{
    opacity:0;
    transform:scale(1.05);
  }
  100%{
    opacity:1;
    transform:scale(1);
  }
}

/* CONTENT */
.faq-content-section{
  position:relative;
  padding:100px 0 200px;
  background:
    radial-gradient(circle at 20% 20%, rgba(255,255,255,.04) 0%, transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(255,255,255,.025) 0%, transparent 24%),
    linear-gradient(180deg, #2a2a2a 0%, #232323 100%);
}

.faq-content-wrap{
  display:flex;
  justify-content:center;
}

.faq-grid-simple{
  width:100%;
  max-width:1180px;
  display:grid;
  grid-template-columns:1.35fr .75fr;
  gap:24px;
  align-items:start;
}

/* CARDS */
.faq-card{
  position:relative;
  background:
    linear-gradient(180deg, rgba(42,42,42,.95) 0%, rgba(28,28,28,.97) 100%);
  border:1px solid rgba(255,255,255,.08);
  border-radius:24px;
  box-shadow:
    0 24px 50px rgba(0,0,0,.25),
    inset 0 1px 0 rgba(255,255,255,.04);
  overflow:hidden;

  opacity:0;
  transform:translateX(55px);
  transition:
    opacity .9s ease,
    transform .9s cubic-bezier(0.22,1,0.36,1),
    box-shadow .25s ease,
    border-color .25s ease;
}

.faq-card::before{
  content:"";
  position:absolute;
  inset:0;
  background:
    radial-gradient(circle at top right, rgba(255,255,255,.05) 0%, transparent 34%);
  pointer-events:none;
}

.faq-card.in-view{
  opacity:1;
  transform:translateY(0);
}

.faq-card:hover{
  border-color:rgba(255,255,255,.14);
  box-shadow:
    0 30px 60px rgba(0,0,0,.3),
    inset 0 1px 0 rgba(255,255,255,.06);
}

.faq-card-accordion-large{
  padding:34px 34px 28px;
  min-height:640px;
}

.faq-card-advantages{
  padding:34px 30px 30px;
  min-height:640px;
}

/* TEXT */
.faq-title{
  margin:0 0 14px;
  font-family:"InterCuostom700", sans-serif;
  font-size:46px;
  line-height:1.02;
  letter-spacing:-1px;
  color:#cfc4bc;
}

.faq-lead-small{
  margin:0 0 26px;
  max-width:720px;
  font-size:15px;
  line-height:1.7;
  color:var(--text-muted-2);
}
/* ACCORDION */
.faq-item{
  border-bottom:1px solid rgba(255,255,255,.08);
}

.faq-item:last-child{
  border-bottom:none;
}

.faq-question{
  width:100%;
  background:none;
  border:none;
  outline:none;
  padding:20px 0;
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:20px;
  text-align:left;
  cursor:pointer;
  color:#cfc4bc;
  font-family:"InterCuostom600", sans-serif;
  font-size:22px;
  line-height:1.35;
}

.faqa-icon{
  width:30px;
  height:30px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 30px;
  background:#bfbfbf;
  color:#1f1f1f;
  font-family:"InterCuostom700", sans-serif;
  font-size:18px;
  line-height:1;
  box-shadow:0 0 0 6px rgba(255,255,255,.06);
  transition:transform .25s ease, background .25s ease;
}

.faq-item.active .faqa-icon{
  transform:rotate(45deg);
}

.faq-answer{
  max-height:0;
  overflow:hidden;
  transition:max-height .35s ease;
}

.faq-answer p{
  margin:0 0 22px;
  color:var(--text-muted-2);
  font-size:16px;
  line-height:1.7;
}

/* ADVANTAGES */
.faq-advantages-title{
  margin:0 0 24px;
  font-family:"InterCuostom700", sans-serif;
  font-size:40px;
  line-height:1.08;
  letter-spacing:-0.8px;
  color:#cfc4bc;
}

.faq-advantages-list{
  display:grid;
  grid-template-columns:1fr;
  gap:18px;
}

.faq-adv-item{
  display:flex;
  align-items:flex-start;
  gap:14px;
}

.faq-adv-icon{
  width:28px;
  height:28px;
  border-radius:50%;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  flex:0 0 28px;
  background:#bfbfbf;
  color:#1f1f1f;
  font-family:"InterCuostom700", sans-serif;
  font-size:15px;
  line-height:1;
  box-shadow:0 0 0 6px rgba(255,255,255,.06);
}

.faq-adv-item p{
  margin:0;
  color:#cfc4bc;
  font-family:"InterCuostom600", sans-serif;
  font-size:17px;
  line-height:1.55;
}

/* DELAYS */
.faq-card:nth-child(1){ transition-delay:.04s; }
.faq-card:nth-child(2){ transition-delay:.12s; }

/* LIGHT MODE */
body.light .faq-content-section{
  background:
    radial-gradient(circle at 20% 20%, rgba(0,0,0,.03) 0%, transparent 28%),
    radial-gradient(circle at 80% 10%, rgba(0,0,0,.02) 0%, transparent 24%),
    linear-gradient(180deg, #f4f6f8 0%, #e9edf1 100%);
}

body.light .faq-card{
  color:#e8e3da;
}

body.light .faq-card h2,
body.light .faq-card h3,
body.light .faq-card strong,
body.light .faq-advantages-title,
body.light .faq-question{
  color:#f1ece3;
}

body.light .faq-card p,
body.light .faq-adv-item p,
body.light .faq-answer p{
  color:#d0cac0;
}

/* LAPTOP */
@media (max-width: 1366px){
  .faq-hero{
    height:72vh;
    min-height:560px;
  }

  .faq-hero-inner{
    min-height:auto;
    padding-top:118px;
    display:flex;
    justify-content:center;
    text-align:center;
  }

  .faq-hero-content{
    max-width:720px;
    margin:0 auto;
    align-items:center;
  }

  .faq-hero-title{
    font-size:48px;
    line-height:1.06;
    margin:0 0 16px;
    letter-spacing:-0.5px;
  }

  .faq-content-section{
    padding:70px 0 55px;
  }

  .faq-grid-simple{
    max-width:980px;
    gap:18px;
  }

  .faq-card-accordion-large{
    min-height:580px;
    padding:30px 28px 24px;
  }

  .faq-card-advantages{
    min-height:580px;
    padding:30px 26px 26px;
  }

  .faq-title{
    font-size:42px;
    line-height:1.05;
    margin:0 0 14px;
  }

  .faq-lead-small{
    font-size:16px;
    line-height:1.6;
    margin-bottom:22px;
  }

  .faq-question{
    font-size:18px;
    padding:18px 0;
  }

  .faq-answer p{
    font-size:14px;
    line-height:1.6;
  }

  .faq-advantages-title{
    font-size:34px;
    margin-bottom:20px;
  }

  .faq-adv-item p{
    font-size:15px;
    line-height:1.5;
  }
}

/* MOBILE */
@media (max-width: 980px){
  .faq-hero{
    height:auto;
    min-height:0;
    padding:120px 0 70px;
    background-position:center center;
  }

  .faq-hero-inner{
    min-height:auto;
    padding-top:0;
    display:block;
    text-align:left;
  }

  .faq-hero-content{
    max-width:100%;
    margin:0;
    align-items:flex-start;
  }

  .faq-hero-title{
    font-size:34px;
    line-height:1.08;
    margin:0 0 14px;
    text-align:left;
  }

  .faq-content-section{
    padding:48px 0 34px;
  }

  .faq-grid-simple{
    grid-template-columns:1fr;
    gap:14px;
  }

  .faq-card-accordion-large,
  .faq-card-advantages{
    min-height:auto;
    padding:22px 18px 20px;
    border-radius:18px;
  }

  .faq-title{
    font-size:32px;
    line-height:1.08;
  }

  .faq-lead-small{
    font-size:15px;
    line-height:1.65;
    margin-bottom:18px;
  }

  .faq-question{
    font-size:17px;
    line-height:1.4;
    padding:16px 0;
  }

  .faqa-icon{
    width:24px;
    height:24px;
    flex:0 0 24px;
    font-size:15px;
  }

  .faq-answer p{
    font-size:14px;
    line-height:1.65;
    margin-bottom:16px;
  }

  .faq-advantages-title{
    font-size:28px;
    line-height:1.08;
    margin-bottom:16px;
  }

  .faq-adv-item{
    gap:12px;
  }

  .faq-adv-icon{
    width:24px;
    height:24px;
    flex:0 0 24px;
    font-size:13px;
  }

  .faq-adv-item p{
    font-size:14px;
    line-height:1.55;
  }

  .faq-hero-title,
  .faq-card{
    opacity:1;
    transform:none;
    transition:none;
  }
}
