/* ═══════════════════════════════════════════════════════════
 *  css/pages/faq.css — Land of Profits
 *  Page-specific styles for faq.html.
 * ═══════════════════════════════════════════════════════════ */

*,
      *::before,
      *::after {
        box-sizing: border-box;
        margin: 0;
        padding: 0;
      }
      html {
        scroll-behavior: smooth;
      }
      body {
        font-family: var(--sans);
        background: var(--cream);
        color: var(--ink);
        font-size: 15px;
        line-height: 1.7;
        overflow-x: hidden;
      }
      a {
        color: var(--gold-dark);
        text-decoration: none;
        transition: 0.15s;
      }
      a:hover {
        color: var(--gold);
      }

      /* ── HERO ── */
      .page-hero {
        background: linear-gradient(150deg, var(--navy) 0%, #0a1520 50%, #131a0a 100%);
        padding: 140px 40px 80px;
        position: relative;
        overflow: hidden;
      }
      .page-hero-pat {
        position: absolute;
        inset: 0;
        pointer-events: none;
        background-image: repeating-linear-gradient(
          45deg,
          rgba(201, 169, 110, 0.03) 0,
          rgba(201, 169, 110, 0.03) 1px,
          transparent 0,
          transparent 50%
        );
        background-size: 28px 28px;
      }
      .page-hero-glow {
        position: absolute;
        width: 600px;
        height: 600px;
        border-radius: 50%;
        background: radial-gradient(circle, rgba(201, 169, 110, 0.055) 0%, transparent 70%);
        top: -180px;
        right: -80px;
        pointer-events: none;
      }
      .page-hero-inner {
        position: relative;
        z-index: 1;
        max-width: 860px;
        margin: 0 auto;
      }
      .hero-eyebrow {
        display: inline-flex;
        align-items: center;
        gap: 8px;
        background: rgba(201, 169, 110, 0.1);
        border: 1px solid rgba(201, 169, 110, 0.25);
        color: var(--gold);
        font-size: 12px;
        font-weight: 600;
        letter-spacing: 1.5px;
        text-transform: uppercase;
        padding: 7px 18px;
        border-radius: 30px;
        margin-bottom: 24px;
      }
      .hero-eyebrow::before {
        content: '';
        width: 6px;
        height: 6px;
        border-radius: 50%;
        background: var(--gold);
      }
      .page-hero h1 {
        font-family: var(--serif);
        font-size: clamp(40px, 5.5vw, 68px);
        font-weight: 600;
        color: #fff;
        line-height: 1.1;
        margin-bottom: 20px;
      }
      .page-hero h1 em {
        color: var(--gold);
        font-style: italic;
      }
      .page-hero-sub {
        font-size: 17px;
        color: rgba(255, 255, 255, 0.5);
        font-weight: 300;
        max-width: 520px;
        line-height: 1.8;
        margin-bottom: 36px;
      }

      /* ── SEARCH ── */
      .faq-search-wrap {
        position: relative;
        max-width: 560px;
      }
      .faq-search-wrap svg {
        position: absolute;
        left: 16px;
        top: 50%;
        transform: translateY(-50%);
        width: 18px;
        height: 18px;
        stroke: var(--slate);
        fill: none;
        stroke-width: 2;
        pointer-events: none;
      }
      .faq-search {
        width: 100%;
        padding: 14px 20px 14px 48px;
        border: 2px solid rgba(255, 255, 255, 0.12);
        border-radius: var(--r12);
        font-family: var(--sans);
        font-size: 15px;
        color: #fff;
        background: rgba(255, 255, 255, 0.06);
        outline: none;
        transition: 0.25s;
      }
      .faq-search:focus {
        border-color: var(--gold);
        background: rgba(255, 255, 255, 0.1);
        box-shadow: 0 0 0 4px rgba(201, 169, 110, 0.1);
      }
      .faq-search::placeholder {
        color: rgba(255, 255, 255, 0.3);
      }
      .search-count {
        margin-top: 10px;
        font-size: 13px;
        color: rgba(255, 255, 255, 0.35);
        min-height: 20px;
      }
      .search-count strong {
        color: rgba(255, 255, 255, 0.6);
      }

      /* ── LAYOUT ── */
      .faq-layout {
        max-width: 1160px;
        margin: 0 auto;
        display: grid;
        grid-template-columns: 240px 1fr;
        gap: 52px;
        padding: 56px 40px 80px;
        align-items: start;
      }

      /* ── SIDEBAR ── */
      .faq-sidebar {
        position: sticky;
        top: 88px;
      }
      .sidebar-title {
        font-size: 11px;
        font-weight: 700;
        letter-spacing: 1.2px;
        text-transform: uppercase;
        color: var(--slate);
        margin-bottom: 16px;
        padding-left: 12px;
      }
      .cat-nav {
        list-style: none;
        margin-bottom: 24px;
      }
      .cat-nav li {
        margin-bottom: 3px;
      }
      .cat-nav-btn {
        display: flex;
        align-items: center;
        gap: 10px;
        width: 100%;
        padding: 9px 12px;
        border-radius: var(--r6);
        border: none;
        background: transparent;
        font-family: var(--sans);
        font-size: 13.5px;
        color: var(--slate);
        cursor: pointer;
        transition: 0.15s;
        text-align: left;
      }
      .cat-nav-btn:hover {
        background: var(--sand);
        color: var(--ink);
      }
      .cat-nav-btn.active {
        background: rgba(201, 169, 110, 0.1);
        color: var(--gold-dark);
        font-weight: 600;
      }
      .cat-nav-btn .cat-icon {
        width: 28px;
        height: 28px;
        border-radius: 7px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }
      .cat-nav-btn .cat-icon svg {
        width: 14px;
        height: 14px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2;
      }
      .cat-nav-btn.active .cat-icon {
        background: rgba(201, 169, 110, 0.15);
      }
      .cat-count {
        margin-left: auto;
        font-size: 11px;
        background: var(--fog);
        color: var(--slate);
        padding: 2px 7px;
        border-radius: 10px;
        font-weight: 500;
        flex-shrink: 0;
      }
      .cat-nav-btn.active .cat-count {
        background: rgba(201, 169, 110, 0.2);
        color: var(--gold-dark);
      }
      .sidebar-divider {
        height: 1px;
        background: var(--fog);
        margin: 0 12px 20px;
      }
      .sidebar-contact {
        background: var(--navy);
        border-radius: var(--r12);
        padding: 18px;
      }
      .sidebar-contact h4 {
        font-family: var(--serif);
        font-size: 17px;
        font-weight: 600;
        color: #fff;
        margin-bottom: 6px;
      }
      .sidebar-contact p {
        font-size: 12.5px;
        color: rgba(255, 255, 255, 0.45);
        line-height: 1.6;
        margin-bottom: 14px;
      }
      .btn-contact {
        display: flex;
        align-items: center;
        justify-content: center;
        gap: 7px;
        width: 100%;
        padding: 10px;
        background: var(--gold);
        color: var(--navy);
        border: none;
        border-radius: var(--r6);
        font-family: var(--sans);
        font-size: 13px;
        font-weight: 600;
        cursor: pointer;
        transition: 0.2s;
        text-decoration: none;
      }
      .btn-contact:hover {
        background: var(--gold2);
        color: var(--navy);
      }
      .btn-contact svg {
        width: 14px;
        height: 14px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2;
      }

      /* ── FAQ MAIN ── */
      .faq-main {
      }

      /* category section */
      .faq-category {
        margin-bottom: 48px;
        scroll-margin-top: 100px;
        display: none;
      }
      .faq-category.visible {
        display: block;
      }
      .cat-header {
        display: flex;
        align-items: center;
        gap: 14px;
        margin-bottom: 20px;
        padding-bottom: 16px;
        border-bottom: 2px solid var(--fog);
      }
      .cat-header-icon {
        width: 44px;
        height: 44px;
        border-radius: 11px;
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
      }
      .cat-header-icon svg {
        width: 20px;
        height: 20px;
        stroke: currentColor;
        fill: none;
        stroke-width: 1.8;
      }
      .cat-header h2 {
        font-family: var(--serif);
        font-size: 26px;
        font-weight: 600;
        color: var(--navy);
      }
      .cat-header-count {
        font-size: 13px;
        color: var(--slate);
        margin-left: auto;
        flex-shrink: 0;
      }

      /* accordion item */
      .faq-item {
        border-bottom: 1px solid var(--fog);
      }
      .faq-item:last-child {
        border-bottom: none;
      }
      .faq-q {
        display: flex;
        align-items: center;
        gap: 14px;
        width: 100%;
        padding: 18px 0;
        background: none;
        border: none;
        font-family: var(--sans);
        font-size: 15px;
        font-weight: 500;
        color: var(--navy);
        cursor: pointer;
        text-align: left;
        transition: 0.2s;
      }
      .faq-q:hover {
        color: var(--gold-dark);
      }
      .faq-q.open {
        color: var(--gold-dark);
      }
      .faq-q-text {
        flex: 1;
        line-height: 1.45;
      }
      .faq-chevron {
        width: 20px;
        height: 20px;
        border-radius: 50%;
        border: 1.5px solid var(--fog);
        display: flex;
        align-items: center;
        justify-content: center;
        flex-shrink: 0;
        transition: 0.25s;
      }
      .faq-chevron svg {
        width: 10px;
        height: 10px;
        stroke: var(--slate);
        fill: none;
        stroke-width: 2.5;
        transition: transform 0.25s;
      }
      .faq-q.open .faq-chevron {
        background: var(--gold);
        border-color: var(--gold);
      }
      .faq-q.open .faq-chevron svg {
        stroke: var(--navy);
        transform: rotate(180deg);
      }
      .faq-a {
        max-height: 0;
        overflow: hidden;
        transition:
          max-height 0.35s ease,
          padding 0.35s ease;
      }
      .faq-a.open {
        max-height: 900px;
      }
      .faq-a-inner {
        padding: 0 0 20px 34px;
        font-size: 14.5px;
        color: #4a5568;
        line-height: 1.9;
        font-weight: 300;
      }
      .faq-a-inner p {
        margin-bottom: 12px;
      }
      .faq-a-inner p:last-child {
        margin-bottom: 0;
      }
      .faq-a-inner ul,
      .faq-a-inner ol {
        padding-left: 18px;
        margin-bottom: 12px;
      }
      .faq-a-inner li {
        margin-bottom: 5px;
      }
      .faq-a-inner li::marker {
        color: var(--gold-dark);
      }
      .faq-a-inner strong {
        color: var(--ink);
        font-weight: 600;
      }
      .faq-a-inner a {
        color: var(--gold-dark);
      }
      .faq-a-inner a:hover {
        color: var(--gold);
      }
      .faq-a-tag {
        display: inline-flex;
        align-items: center;
        gap: 5px;
        padding: 3px 10px;
        border-radius: 10px;
        font-size: 12px;
        font-weight: 600;
        margin-top: 10px;
      }
      .faq-a-tag.tip {
        background: rgba(46, 107, 72, 0.08);
        color: #2e6b48;
        border: 1px solid rgba(46, 107, 72, 0.2);
      }
      .faq-a-tag.note {
        background: rgba(30, 58, 106, 0.07);
        color: #1e3a6a;
        border: 1px solid rgba(30, 58, 106, 0.15);
      }
      .faq-a-tag svg {
        width: 11px;
        height: 11px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2;
      }

      /* no results */
      .no-results {
        text-align: center;
        padding: 60px 24px;
        display: none;
      }
      .no-results-icon {
        font-size: 48px;
        margin-bottom: 16px;
      }
      .no-results h3 {
        font-family: var(--serif);
        font-size: 22px;
        color: var(--navy);
        margin-bottom: 8px;
      }
      .no-results p {
        font-size: 14px;
        color: var(--slate);
        font-weight: 300;
      }

      /* ── STILL NEED HELP ── */
      .help-section {
        background: var(--navy);
        position: relative;
        overflow: hidden;
      }
      .help-section::before {
        content: '';
        position: absolute;
        inset: 0;
        background-image: repeating-linear-gradient(
          45deg,
          rgba(201, 169, 110, 0.025) 0,
          rgba(201, 169, 110, 0.025) 1px,
          transparent 0,
          transparent 50%
        );
        background-size: 28px 28px;
        pointer-events: none;
      }
      .help-inner {
        position: relative;
        z-index: 1;
        max-width: 1160px;
        margin: 0 auto;
        padding: 80px 40px;
        display: grid;
        grid-template-columns: repeat(3, 1fr);
        gap: 24px;
      }
      .help-card {
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.07);
        border-radius: var(--r20);
        padding: 32px 28px;
        transition: 0.2s;
        cursor: default;
      }
      .help-card:hover {
        background: rgba(201, 169, 110, 0.07);
        border-color: rgba(201, 169, 110, 0.2);
        transform: translateY(-3px);
      }
      .help-card-icon {
        width: 48px;
        height: 48px;
        border-radius: 12px;
        background: rgba(201, 169, 110, 0.1);
        display: flex;
        align-items: center;
        justify-content: center;
        margin-bottom: 18px;
      }
      .help-card-icon svg {
        width: 22px;
        height: 22px;
        stroke: var(--gold);
        fill: none;
        stroke-width: 1.8;
      }
      .help-card h3 {
        font-family: var(--serif);
        font-size: 20px;
        font-weight: 600;
        color: #fff;
        margin-bottom: 8px;
      }
      .help-card p {
        font-size: 13.5px;
        color: rgba(255, 255, 255, 0.45);
        line-height: 1.75;
        font-weight: 300;
        margin-bottom: 18px;
      }
      .help-card-link {
        display: inline-flex;
        align-items: center;
        gap: 6px;
        font-size: 13.5px;
        font-weight: 600;
        color: var(--gold);
        transition: 0.15s;
        text-decoration: none;
      }
      .help-card-link:hover {
        color: var(--gold2);
        gap: 9px;
      }
      .help-card-link svg {
        width: 14px;
        height: 14px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2.5;
        transition: transform 0.15s;
      }
      .help-card-link:hover svg {
        transform: translateX(2px);
      }

      /* ─── FOOTER ──────────────────────────────────────────────── */
      footer {
        background: var(--navy);
        padding: 72px 5% 0;
        border-top: 1px solid rgba(201, 169, 110, 0.12);
      }
      .footer-inner {
        max-width: 1240px;
        margin: 0 auto;
      }
      .footer-top {
        display: grid;
        grid-template-columns: 2fr 1fr 1fr 1fr 1fr;
        gap: 48px;
        padding-bottom: 56px;
        border-bottom: 1px solid rgba(255, 255, 255, 0.06);
      }
      .footer-brand p {
        font-size: 14px;
        color: rgba(255, 255, 255, 0.4);
        line-height: 1.75;
        margin-top: 16px;
        font-weight: 300;
        max-width: 260px;
      }
      .footer-social {
        display: flex;
        gap: 10px;
        margin-top: 24px;
      }
      .social-btn {
        width: 36px;
        height: 36px;
        border: 1px solid rgba(255, 255, 255, 0.12);
        border-radius: 8px;
        display: flex;
        align-items: center;
        justify-content: center;
        color: rgba(255, 255, 255, 0.4);
        transition: all 0.15s;
        cursor: pointer;
      }
      .social-btn:hover {
        border-color: var(--gold);
        color: var(--gold);
      }
      .social-btn svg {
        width: 15px;
        height: 15px;
        stroke: currentColor;
        fill: none;
        stroke-width: 2;
      }
      .footer-col h5 {
        font-size: 11px;
        letter-spacing: 1.8px;
        text-transform: uppercase;
        color: rgba(255, 255, 255, 0.25);
        font-weight: 500;
        margin-bottom: 20px;
      }
      .footer-col a {
        display: block;
        font-size: 13px;
        color: rgba(255, 255, 255, 0.45);
        margin-bottom: 11px;
        transition: color 0.15s;
        font-weight: 300;
      }
      .footer-col a:hover {
        color: rgba(255, 255, 255, 0.85);
      }
      .footer-bottom {
        padding: 24px 0;
        display: flex;
        align-items: center;
        justify-content: space-between;
        flex-wrap: wrap;
        gap: 12px;
      }
      .footer-bottom p {
        font-size: 12px;
        color: rgba(255, 255, 255, 0.25);
      }
      .footer-reg {
        font-size: 11px;
        color: rgba(255, 255, 255, 0.2);
      }
      .footer-badges {
        display: flex;
        gap: 8px;
      }
      .fbadge {
        padding: 4px 10px;
        background: rgba(255, 255, 255, 0.04);
        border: 1px solid rgba(255, 255, 255, 0.08);
        border-radius: 5px;
        font-size: 10px;
        color: rgba(255, 255, 255, 0.3);
        letter-spacing: 0.5px;
      }

      /* ── RESPONSIVE ── */
      @media (max-width: 1024px) {
        .faq-layout {
          grid-template-columns: 1fr;
        }
        .faq-sidebar {
          position: static;
        }
        .cat-nav {
          display: flex;
          flex-wrap: wrap;
          gap: 8px;
          margin-bottom: 16px;
        }
        .cat-nav li {
          margin: 0;
        }
        .cat-nav-btn {
          padding: 7px 14px;
          border-radius: 20px;
          border: 1.5px solid var(--fog);
        }
        .cat-nav-btn.active {
          background: var(--gold);
          color: var(--navy);
        }
        .cat-nav-btn .cat-icon {
          display: none;
        }
        .sidebar-divider,
        .sidebar-contact {
          display: none;
        }
        .help-inner {
          grid-template-columns: 1fr;
        }
      }
      @media (max-width: 768px) {
        nav {
          padding: 0 20px;
        }
        .nav-links {
          display: none;
        }
        .page-hero {
          padding: 110px 24px 64px;
        }
        .faq-layout {
          padding: 36px 24px 60px;
        }
        .help-inner {
          padding: 56px 24px;
        }
        .footer-top {
          grid-template-columns: 1fr 1fr;
          gap: 28px;
        }
      }
      @media (max-width: 480px) {
        .footer-top {
          grid-template-columns: 1fr;
        }
      }