:root{
    --red:#E3000B;
    --red-dark:#b80009;
    --text:#1a1d26;
    --sub:#5a6070;
    --bg:#f5f6f8;
    --border:#e2e5eb;
    --white:#ffffff;
  }
 
  .axolt-faq{max-width:100%; overflow-x:hidden;}
  .ax-container{max-width:1180px; margin:0 auto; padding:0 24px;}

  /* NAV */
  .ax-nav{
    position:sticky; top:0; z-index:100;
    background:rgba(255,255,255,0.97);
    backdrop-filter:blur(8px);
    border-bottom:1px solid var(--border);
  }
  .ax-nav .ax-container{display:flex; align-items:center; justify-content:space-between; height:72px;}
  .ax-nav__logo{font-weight:800; font-size:20px; color:var(--text); text-decoration:none; letter-spacing:-0.3px;}
  .ax-nav__logo span{color:var(--red);}
  .ax-nav__links{display:flex; align-items:center; gap:32px; list-style:none;}
  .ax-nav__links a{color:var(--text); text-decoration:none; font-size:14.5px; font-weight:600;}
  .ax-nav__links a:hover{color:var(--red);}
  .ax-nav__cta{
    background:var(--red); color:#fff; padding:11px 22px; border-radius:6px;
    font-weight:700; font-size:14.5px; text-decoration:none; white-space:nowrap;
    transition:background .2s;
  }
  .ax-nav__cta:hover{background:var(--red-dark);}
  .ax-nav__mobile-toggle{display:none; background:none; border:none; font-size:22px; color:var(--text); cursor:pointer;}

  @media(max-width:900px){
    .ax-nav__links{display:none;}
    .ax-nav__mobile-toggle{display:block;}
  }

  /* HERO */
  .ax-hero{
    background:linear-gradient(180deg, #fafbfc 0%, var(--bg) 100%);
    padding:72px 0 48px;
    border-bottom:1px solid var(--border);
    text-align:center;
  }
  .ax-hero__badge{
    display:inline-flex; align-items:center; gap:8px;
    background:#fff; border:1px solid var(--border); color:var(--red);
    font-size:13px; font-weight:700; padding:7px 16px; border-radius:100px;
    margin-bottom:22px;
  }
  .ax-hero h1{
    font-size:44px; font-weight:800; letter-spacing:-1px; line-height:1.15;
    max-width:760px; margin:0 auto 16px;
  }
  .ax-hero__sub{
    font-size:17.5px; color:var(--sub); max-width:600px; margin:0 auto 36px;
  }
  .ax-hero__search{
    max-width:560px; margin:0 auto; position:relative;
  }
  .ax-hero__search input{
    width:100%; padding:16px 20px 16px 50px; font-size:15.5px; font-family:inherit;
    border:1.5px solid var(--border); border-radius:10px; background:#fff;
    color:var(--text); outline:none; transition:border-color .2s, box-shadow .2s;
  }
  .ax-hero__search input:focus{border-color:var(--red); box-shadow:0 0 0 4px rgba(227,0,11,0.08);}
  .ax-hero__search i{
    position:absolute; left:19px; top:50%; transform:translateY(-50%); color:var(--sub); font-size:16px;
  }
  .ax-hero__count{margin-top:14px; font-size:13.5px; color:var(--sub);}
  .ax-hero__count strong{color:var(--text);}

  /* CATEGORY PILLS */
  .ax-pillbar{
    position:sticky; top:132px; z-index:90;
    background:#fff; border-bottom:1px solid var(--border);
    padding:16px 0;
  }
  .ax-pillbar__scroll{
    display:flex; gap:10px; overflow-x:auto; scrollbar-width:none; -ms-overflow-style:none;
  }
  .ax-pillbar__scroll::-webkit-scrollbar{display:none;}
  .ax-pill{
    flex:none; padding:9px 18px; border-radius:100px; border:1.5px solid var(--border);
    background:#fff; color:var(--sub); font-size:13.5px; font-weight:700;
    text-decoration:none; white-space:nowrap; cursor:pointer; transition:all .15s;
  }
  .ax-pill:hover{border-color:var(--red); color:var(--red);}
  .ax-pill.active{background:var(--text); border-color:var(--text); color:#fff;}

  /* FAQ BODY */
  .ax-faq-body{padding:56px 0 20px;}
  .ax-faq-category{margin-bottom:52px; scroll-margin-top:150px;}
  .ax-faq-category__head{display:flex; align-items:baseline; gap:14px; margin-bottom:22px; border-bottom:2px solid var(--text); padding-bottom:14px;}
  .ax-faq-category__num{font-size:13px; font-weight:800; color:var(--red); letter-spacing:0.5px;}
  .ax-faq-category__head h2{font-size:24px; font-weight:800; letter-spacing:-0.4px;}

  .ax-faq-item{
    border:1px solid var(--border); border-radius:10px; margin-bottom:12px; background:#fff;
    overflow:hidden; transition:border-color .15s;
  }
  .ax-faq-item.open{border-color:var(--red);}
  .ax-faq-item__q{
    display:flex; align-items:center; justify-content:space-between; gap:16px;
    padding:19px 22px; cursor:pointer; user-select:none;
  }
  .ax-faq-item__q h3{font-size:16px; font-weight:700; line-height:1.4;}
  .ax-faq-item__icon{
    flex:none; width:26px; height:26px; border-radius:50%; border:1.5px solid var(--border);
    display:flex; align-items:center; justify-content:center; color:var(--sub); font-size:12px;
    transition:transform .25s, background .2s, color .2s, border-color .2s;
  }
  .ax-faq-item.open .ax-faq-item__icon{
    transform:rotate(45deg); background:var(--red); border-color:var(--red); color:#fff;
  }
  .ax-faq-item__a{
    max-height:0; overflow:hidden; transition:max-height .3s ease;
  }
  .ax-faq-item__a-inner{
    padding:0 22px 20px 22px; color:var(--sub); font-size:15px; line-height:1.7;
  }
  .ax-faq-item.hidden{display:none;}

  .ax-noresults{display:none; text-align:center; padding:60px 20px; color:var(--sub);}
  .ax-noresults.show{display:block;}
  .ax-noresults i{font-size:32px; color:var(--border); margin-bottom:14px; display:block;}

  /* CTA */
  .ax-cta{
    background:linear-gradient(135deg, #14161f 0%, #1e2130 100%);
    border-radius:20px; margin:40px 24px 0; padding:56px 40px; text-align:center;
    max-width:1132px; margin-left:auto; margin-right:auto;
  }
  .ax-cta h2{color:#fff; font-size:30px; font-weight:800; letter-spacing:-0.5px; margin-bottom:14px;}
  .ax-cta p{color:#b6bac5; font-size:16px; max-width:520px; margin:0 auto 30px;}
  .ax-cta__buttons{display:flex; gap:14px; justify-content:center; flex-wrap:wrap;}
  .ax-cta__primary{
    background:var(--red); color:#fff; padding:14px 30px; border-radius:8px;
    font-weight:700; font-size:15px; text-decoration:none; transition:background .2s;
  }
  .ax-cta__primary:hover{background:var(--red-dark);}
  .ax-cta__secondary{
    background:transparent; color:#fff; padding:14px 30px; border-radius:8px;
    font-weight:700; font-size:15px; text-decoration:none; border:1.5px solid #3a3d4d;
    transition:border-color .2s;
  }
  .ax-cta__secondary:hover{border-color:#6a6d7d;}

  /* FOOTER */
  .ax-footer{margin-top:64px; border-top:1px solid var(--border); padding:40px 0 28px;}
  .ax-footer .ax-container{display:flex; align-items:center; justify-content:space-between; flex-wrap:wrap; gap:16px;}
  .ax-footer__logo{font-weight:800; font-size:16px; color:var(--text);}
  .ax-footer__logo span{color:var(--red);}
  .ax-footer__links{display:flex; gap:24px; list-style:none;}
  .ax-footer__links a{color:var(--sub); text-decoration:none; font-size:13.5px;}
  .ax-footer__links a:hover{color:var(--red);}
  .ax-footer__copy{color:var(--sub); font-size:13px; width:100%; padding-top:20px; border-top:1px solid var(--border); text-align:center;}

  @media(max-width:600px){
    .ax-hero h1{font-size:32px;}
    .ax-hero{padding:48px 0 32px;}
    .ax-cta{margin:32px 16px 0; padding:40px 24px;}
    .ax-cta h2{font-size:24px;}
    .ax-faq-category__head h2{font-size:20px;}
  }