.elementor-9200 .elementor-element.elementor-element-a878698{width:var( --container-widget-width, 100.269% );max-width:100.269%;padding:50px 0px 0px 0px;--container-widget-width:100.269%;--container-widget-flex-grow:0;}.elementor-9200 .elementor-element.elementor-element-a878698.elementor-element{--flex-grow:0;--flex-shrink:0;}/* Start custom CSS for html, class: .elementor-element-a878698 */*, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --orange:    #F47B20;
      --orange-dk: #C96400;
      --orange-lt: #FF9A3C;
      --black:     #000000;
      --white:     #ffffff;
      --body-text: #C6C6C6;
      --card-bg:   #0D1C2A;
    }

    html { scroll-behavior: smooth; }

    body {
      background-color: var(--black);
      color: var(--body-text);
      font-family: 'Poppins', sans-serif;
      font-size: 16px;
      line-height: 1.7;
      -webkit-font-smoothing: antialiased;
    }

    a { text-decoration: none; }

    .label {
      font-family: 'Lato', sans-serif;
      font-size: 13px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: var(--orange);
      display: block;
      margin-bottom: 20px;
    }

    /* ─── SCROLL ANIMATION ─── */
    .fade-up {
      opacity: 0;
      transform: translateY(28px);
      transition: opacity 0.55s ease, transform 0.55s ease;
    }
    .fade-up.visible { opacity: 1; transform: translateY(0); }

    /* ══════════════════════════════
       HERO
    ══════════════════════════════ */
    .elementor-page .sk__page-title {
  display: none;
}
    .hero {
      padding: 100px 80px 72px;
      background: var(--black);
      border-bottom: 1px solid rgba(255,255,255,0.06);
      text-align: center;
    }

    .hero__headline {
      font-size: clamp(42px, 6vw, 80px);
      font-weight: 800;
      line-height: 1.05;
      background: linear-gradient(135deg, #C96400 0%, #F47C20 45%, #FF9A3C 100%);
      -webkit-background-clip: text;
      -webkit-text-fill-color: transparent;
      background-clip: text;
      margin-bottom: 24px;
    }

    .hero__sub {
      font-size: 18px;
      color: var(--body-text);
      max-width: 640px;
      margin: 0 auto 40px;
      line-height: 1.8;
    }

    /* ── Category filter tabs ── */
    .filter-bar {
      display: flex;
      flex-wrap: wrap;
      gap: 10px;
      justify-content: center;
    }

    .filter-btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      width: auto;
      white-space: nowrap;
      font-family: 'Lato', sans-serif;
      font-size: 11px;
      font-weight: 700;
      letter-spacing: 0.12em;
      text-transform: uppercase;
      padding: 9px 18px;
      border-radius: 100px;
      border: 1px solid rgba(255,255,255,0.15);
      background: transparent;
      color: var(--body-text);
      cursor: pointer;
      transition: background 0.2s, color 0.2s, border-color 0.2s;
    }

    .filter-btn:hover,
    .filter-btn.active {
      background: var(--orange);
      color: var(--black);
      border-color: var(--orange);
    }

    /* ══════════════════════════════
       FAQ BODY
    ══════════════════════════════ */
    .faq-body {
      max-width: 1350px;
      margin: 0 auto;
      padding: 80px 80px;
    }

    .faq-category {
      margin-bottom: 72px;
    }

    .faq-category[data-cat] { display: block; }
    .faq-category.hidden { display: none; }

    .category-header {
      display: flex;
      align-items: center;
      gap: 16px;
      margin-bottom: 32px;
      padding-bottom: 20px;
      border-bottom: 2px solid var(--orange);
    }

    .category-icon {
      width: 40px;
      height: 40px;
      background: var(--orange);
      border-radius: 6px;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 18px;
      flex-shrink: 0;
    }

    .category-title {
      font-size: 22px;
      font-weight: 800;
      color: var(--white);
      text-transform: none;
      letter-spacing: 0;
    }

    .faq-item { border-bottom: 1px solid rgba(255,255,255,0.06); }

    .faq-item__q {
      width: 100%;
      background: none;
      border: none;
      text-align: left;
      padding: 26px 0;
      font-family: 'Poppins', sans-serif;
      font-size: 17px;
      font-weight: 700;
      color: var(--white);
      cursor: pointer;
      display: flex;
      justify-content: space-between;
      align-items: center;
      gap: 24px;
      transition: color 0.2s;
    }

    .faq-item__q:hover { color: var(--orange); }

    .arrow {
      width: 26px;
      height: 26px;
      border: 2px solid currentColor;
      border-radius: 50%;
      display: flex;
      align-items: center;
      justify-content: center;
      font-size: 15px;
      flex-shrink: 0;
      transition: transform 0.3s, background 0.2s, border-color 0.2s;
    }

    .faq-item.open .faq-item__q { color: var(--orange); }
    .faq-item.open .arrow { transform: rotate(45deg); background: var(--orange); border-color: var(--orange); color: var(--black); }

    .faq-item__a {
      display: none;
      padding: 0 0 26px;
      font-size: 16px;
      color: var(--body-text);
      line-height: 1.85;
      max-width: 780px;
    }

    .faq-item__a p { margin-bottom: 12px; }
    .faq-item__a p:last-child { margin-bottom: 0; }
    .faq-item__a a { color: var(--orange); text-decoration: underline; text-underline-offset: 3px; }
    .faq-item.open .faq-item__a { display: block; }

    /* ══════════════════════════════
       CTA
    ══════════════════════════════ */
    .cta {
      padding: 80px 80px;
      background: var(--orange);
      text-align: center;
    }

    .cta__label {
      font-family: 'Lato', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.18em;
      text-transform: uppercase;
      color: rgba(0,0,0,0.5);
      display: block;
      margin-bottom: 20px;
    }

    .cta__headline {
      font-size: clamp(32px, 4vw, 52px);
      font-weight: 800;
      color: var(--black);
      line-height: 1.1;
      margin-bottom: 16px;
    }

    .cta__sub {
      font-size: 17px;
      color: rgba(0,0,0,0.7);
      max-width: 560px;
      margin: 0 auto 40px;
      line-height: 1.7;
    }

    .cta__actions {
      display: flex;
      gap: 16px;
      justify-content: center;
      flex-wrap: wrap;
    }

    .btn {
      display: inline-flex;
      align-items: center;
      justify-content: center;
      padding: 16px 36px;
      font-family: 'Lato', sans-serif;
      font-size: 12px;
      font-weight: 700;
      letter-spacing: 0.15em;
      text-transform: uppercase;
      border-radius: 100px;
      cursor: pointer;
      transition: opacity 0.2s, transform 0.15s;
    }

    .btn:hover { opacity: 0.88; transform: translateY(-1px); }
    .btn--dark { background: #0D0D0D; color: var(--white); border: 2px solid #0D0D0D; }
    .btn--outline { background: transparent; color: #0D0D0D; border: 2px solid #0D0D0D; }

    /* ══════════════════════════════
       RESPONSIVE
    ══════════════════════════════ */
    @media (max-width: 768px) {
      .hero { padding: 72px 24px 56px; }
      .faq-body { padding: 56px 24px; }
      .cta { padding: 60px 24px; }
      .faq-item__q { font-size: 15px; }
      .cta__actions { flex-direction: column; align-items: center; }
      .btn { width: 100%; max-width: 320px; }
    }/* End custom CSS */