* { margin: 0; padding: 0; box-sizing: border-box; }
    body {
      font-family: 'Inter', -apple-system, BlinkMacSystemFont, sans-serif;
      background-color: #F8FAFC;
      background-image: radial-gradient(rgba(30, 58, 138, 0.06) 1.5px, transparent 1.5px);
      background-size: 24px 24px;
      color: #0A1128;
      line-height: 1.6;
    }
    h1, h2, h3, h4, .font-display { font-family: 'JetBrains Mono', monospace; }
    .wrap { max-width: 1280px; margin: 0 auto; padding: 0 32px; }

    /* Header Navbar */
    header.site-nav { background: #FFFFFF; border-bottom: 1px solid #E2E8F0; position: sticky; top: 0; z-index: 100; }
    .nav-inner { display: flex; align-items: center; justify-content: space-between; height: 84px; }
    .brand-logo { display: flex; align-items: center; gap: 10px; text-decoration: none; font-family: 'JetBrains Mono', monospace; font-weight: 800; font-size: 22px; color: #0A1128; letter-spacing: 0.02em; }
    .brand-logo img { height: 34px; width: auto; display: block; border-radius: 6px; }
    .brand-logo .brand-parking { color: #F59E0B; }
    .nav-links { display: flex; align-items: center; gap: 36px; list-style: none; }
    .nav-links a { text-decoration: none; color: #334155; font-weight: 600; font-size: 15px; transition: color 0.2s; }
    .nav-links a:hover, .nav-links a.active { color: #F59E0B; }
    .nav-ctas { display: flex; align-items: center; gap: 16px; }
    .btn-pay { display: flex; align-items: center; gap: 8px; padding: 10px 20px; border: 1px solid #CBD5E1; border-radius: 10px; background: #FFF; color: #0A1128; text-decoration: none; font-weight: 600; font-size: 14px; }
    .btn-orange { background: #F59E0B; color: #0A1128; font-family: 'JetBrains Mono', monospace; font-weight: 700; padding: 12px 24px; border-radius: 10px; text-decoration: none; font-size: 15px; border: none; cursor: pointer; transition: opacity 0.2s; }
    .btn-orange:hover { background-color: #D97706; }

    /* Parked Driver Bar */
    .parked-driver-bar { display: flex; justify-content: flex-end; margin-top: 24px; margin-bottom: 24px; }
    .parked-driver-pill {
      display: inline-flex;
      align-items: center;
      gap: 10px;
      padding: 10px 22px;
      background: #FFFFFF;
      border: 1px solid #E2E8F0;
      border-radius: 100px;
      color: #0A1128;
      font-size: 14px;
      font-weight: 600;
      text-decoration: none;
      box-shadow: 0 2px 8px rgba(0,0,0,0.03);
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    .parked-driver-pill:hover { border-color: #F59E0B; box-shadow: 0 4px 12px rgba(245,158,11,0.12); }

    /* FAQ Hero Header */
    .faq-hero { padding: 40px 0; text-align: center; }
    .pill-tag { display: inline-block; padding: 6px 14px; border: 1px solid #E2E8F0; border-radius: 100px; background: #FFFFFF; font-size: 12px; font-weight: 700; letter-spacing: 0.08em; color: #F59E0B; text-transform: uppercase; margin-bottom: 16px; }
    .faq-hero h1 { font-size: 42px; font-weight: 800; color: #0A1128; margin-bottom: 12px; letter-spacing: -0.02em; }

    /* Category Filter Tabs */
    .category-tabs { display: flex; justify-content: center; gap: 12px; margin: 32px 0 48px; }
    .tab-btn { padding: 10px 22px; border-radius: 8px; border: 1px solid #E2E8F0; background: #FFFFFF; font-family: 'JetBrains Mono', monospace; font-weight: 700; font-size: 14px; color: #475569; cursor: pointer; transition: all 0.2s; }
    .tab-btn.active, .tab-btn:hover { background: #0A1128; color: #FFFFFF; border-color: #0A1128; }

    /* Accordion Section */
    .faq-section { margin-bottom: 48px; }
    .sec-label { font-size: 14px; font-weight: 800; letter-spacing: 0.08em; color: #F59E0B; text-transform: uppercase; margin-bottom: 16px; display: flex; align-items: center; gap: 8px; }
    .faq-group { display: flex; flex-direction: column; gap: 14px; }
    
    /* Collapsable Details Card */
    details.faq-card {
      background: rgba(255, 255, 255, 0.85); backdrop-filter: blur(12px); -webkit-backdrop-filter: blur(12px);
      border: 1px solid rgba(10, 17, 40, 0.08); box-shadow: 0 8px 32px rgba(10, 17, 40, 0.05);
      border-radius: 12px;
      padding: 20px 24px;
      box-shadow: 0 4px 12px rgba(0,0,0,0.02);
      transition: border-color 0.2s, box-shadow 0.2s;
    }
    details.faq-card:hover { border-color: #CBD5E1; }
    details.faq-card[open] { border-color: #F59E0B; box-shadow: 0 6px 16px rgba(245,158,11,0.08); }
    
    summary.faq-q {
      font-size: 17px;
      font-weight: 700;
      font-family: 'JetBrains Mono', monospace;
      color: #0A1128;
      cursor: pointer;
      list-style: none;
      display: flex;
      justify-content: space-between;
      align-items: center;
      user-select: none;
    }
    summary.faq-q::-webkit-details-marker { display: none; }
    
    .toggle-icon {
      color: #F59E0B;
      font-size: 22px;
      font-weight: 800;
      transition: transform 0.2s ease;
      line-height: 1;
    }
    details.faq-card[open] .toggle-icon { transform: rotate(45deg); }
    
    .faq-a {
      font-size: 15px;
      color: #475569;
      line-height: 1.6;
      margin-top: 14px;
      padding-top: 14px;
      border-top: 1px solid #F1F5F9;
    }
    .faq-a a { color: #D97706; font-weight: 700; text-decoration: none; }
    .faq-a a:hover { text-decoration: underline; }

    /* Help Banner */
    .help-box {
      background: url('../lot_audit_bg.png') center/cover no-repeat, #0A1128;
      color: #FFFFFF;
      border-radius: 16px;
      padding: 56px 40px;
      text-align: center;
      margin: 60px 0 80px;
      box-shadow: 0 12px 32px rgba(15,23,42,0.25);
    }
    .help-box h3 { font-size: 26px; color: #FFFFFF; margin-bottom: 12px; font-weight: 800; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
    .help-box p { font-size: 16px; color: #F1F5F9; margin-bottom: 24px; max-width: 680px; margin-left: auto; margin-right: auto; line-height: 1.6; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }
    .help-box .disclaimer { font-size: 13px; color: #E2E8F0; margin-top: 20px; font-style: italic; text-shadow: 0 2px 4px rgba(0,0,0,0.5); }

    /* FOOTER */
    footer.site-footer { background: #050A18; color: #CBD5E1; padding: 80px 0 40px; font-size: 14px; }
    .footer-grid { display: grid; grid-template-columns: 2fr 1fr 1fr 1fr; gap: 48px; margin-bottom: 64px; }
    .footer-brand .logo { display: flex; align-items: center; gap: 10px; font-family: 'JetBrains Mono', monospace; font-weight: 800; font-size: 20px; color: #FFFFFF; text-decoration: none; margin-bottom: 16px; }
    .footer-brand .logo img { height: 32px; width: auto; display: block; border-radius: 6px; }
    .footer-brand .logo span { color: #F59E0B; }
    .footer-brand p { font-size: 14px; color: #CBD5E1; line-height: 1.6; max-width: 320px; margin-bottom: 20px; }
    .footer-brand .contact-info { font-size: 14px; color: #CBD5E1; line-height: 1.8; }
    .footer-brand .contact-info span { color: #F59E0B; }
    .footer-col-nav h5 { font-size: 12px; font-weight: 700; letter-spacing: 0.1em; color: #94A3B8; text-transform: none; margin-bottom: 20px; }
    .footer-col-nav ul { list-style: none; display: flex; flex-direction: column; gap: 12px; }
    .footer-col-nav ul a { color: #CBD5E1; text-decoration: none; font-size: 14px; transition: color 0.2s; }
    .footer-col-nav ul a:hover { color: #F59E0B; }
    .footer-bottom { border-top: 1px solid rgba(255,255,255,0.08); padding-top: 28px; display: flex; justify-content: space-between; align-items: center; color: #64748B; font-size: 13px; }

/* Shared Utility Classes for Zero Inline Styles */
.mb-0 { margin-bottom: 0 !important; }
.unit-sm { font-size: 24px; font-weight: 700; }
.link-plain { color: inherit; text-decoration: none; }
.btn-mt-12 { display: inline-block; margin-top: 12px; }
.text-left { text-align: left; }
.form-feedback { display: none; margin-top: 16px; padding: 12px 16px; border-radius: 8px; font-size: 14px; font-weight: 600; }
.form-feedback.success { display: block; background-color: #d1fae5; color: #065f46; border: 1px solid #a7f3d0; }
.form-feedback.error { display: block; background-color: #fee2e2; color: #991b1b; border: 1px solid #fca5a5; }
