
    *, *::before, *::after { box-sizing: border-box; margin: 0; padding: 0; }

    :root {
      --brand:        #f5c400;
      --brand-light:  #fffbe6;
      --brand-dark:   #d4a800;
      --navy:         #111111;
      --navy-mid:     #1a1a1a;
      --navy-soft:    #222222;
      --slate:        #555555;
      --muted:        #888888;
      --border:       #e0ddd8;
      --bg:           #f8f6f2;
      --white:        #FFFFFF;
      --green:        #16A34A;
      --green-light:  #DCFCE7;
      --amber:        #D97706;
      --amber-light:  #FEF3C7;
      --red:          #DC2626;
      --red-light:    #FEE2E2;
      --blue:         #2563EB;
      --blue-light:   #DBEAFE;
      --radius:       6px;
      --shadow:       0 1px 4px rgba(0,0,0,0.10), 0 4px 16px rgba(0,0,0,0.07);
      --shadow-lg:    0 8px 32px rgba(0,0,0,0.18);
    }

    body {
      font-family: 'Lato', sans-serif;
      background: var(--bg);
      color: var(--navy);
      min-height: 100vh;
      font-size: 15px;
      line-height: 1.55;
    }

    /* ── AUTH SCREEN ── */
    .auth-wrap {
      min-height: 100vh;
      display: flex;
      align-items: center;
      justify-content: center;
      background: var(--navy);
      padding: 24px;
      background-image: linear-gradient(rgba(245,196,0,0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(245,196,0,0.03) 1px, transparent 1px);
      background-size: 48px 48px;
    }
    .auth-card {
      background: var(--white);
      border-radius: 8px;
      padding: 48px 40px;
      width: 100%;
      max-width: 420px;
      box-shadow: var(--shadow-lg);
      border-top: 4px solid var(--brand);
    }
    .auth-logo {
      display: flex;
      align-items: center;
      gap: 10px;
      margin-bottom: 36px;
    }
    .auth-logo-icon {
      width: 44px; height: 44px;
      background: var(--brand);
      border-radius: 4px;
      display: flex; align-items: center; justify-content: center;
      color: #111; font-size: 20px; font-weight: 900;
      font-family: 'Barlow Condensed', sans-serif;
    }
    .auth-logo-text { font-size: 17px; font-weight: 900; color: var(--navy); line-height: 1.2; font-family: 'Barlow Condensed', sans-serif; letter-spacing: .04em; text-transform: uppercase; }
    .auth-logo-sub  { font-size: 12px; color: var(--muted); font-weight: 400; }
    .auth-title { font-size: 28px; font-weight: 900; margin-bottom: 8px; font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: .03em; }
    .auth-sub   { color: var(--slate); margin-bottom: 32px; font-size: 14px; }

    /* ── FORMS ── */
    label { display: block; font-size: 13px; font-weight: 600; color: var(--slate); margin-bottom: 6px; }
    input, textarea, select {
      width: 100%; padding: 11px 14px;
      border: 1.5px solid var(--border);
      border-radius: var(--radius);
      font-family: inherit; font-size: 15px;
      color: var(--navy);
      background: var(--white);
      transition: border-color .15s;
      outline: none;
    }
    input:focus, textarea:focus, select:focus { border-color: var(--brand); }
    textarea { resize: vertical; min-height: 90px; }
    .field { margin-bottom: 18px; }

    /* ── BUTTONS ── */
    .btn {
      display: inline-flex; align-items: center; gap: 7px;
      padding: 10px 20px; border-radius: var(--radius);
      font-family: inherit; font-size: 14px; font-weight: 600;
      cursor: pointer; border: none; transition: all .15s;
      text-decoration: none; white-space: nowrap;
    }
    .btn-primary { background: var(--brand); color: #111; font-family: 'Barlow Condensed', sans-serif; font-weight: 700; letter-spacing: .04em; text-transform: uppercase; }
    .btn-primary:hover { background: var(--brand-dark); }
    .btn-ghost { background: transparent; color: var(--slate); border: 1.5px solid var(--border); }
    .btn-ghost:hover { border-color: var(--brand); color: var(--brand); }
    .btn-sm { padding: 6px 14px; font-size: 13px; }
    .btn-danger { background: var(--red); color: #fff; }
    .btn-success { background: var(--green); color: #fff; }
    .btn-full { width: 100%; justify-content: center; padding: 13px; font-size: 15px; }
    .btn:disabled { opacity: .5; cursor: not-allowed; }

    /* ── LAYOUT ── */
    .app { display: flex; min-height: 100vh; }

    .sidebar {
      width: 240px; height: 100vh;
      background: var(--navy);
      display: flex; flex-direction: column;
      position: fixed; top: 0; left: 0; z-index: 100;
      overflow: hidden;
    }
    .sidebar > div[style*="flex:1"],
    .sidebar > div[style*="overflowY"] {
      overflow-y: auto;
      -webkit-overflow-scrolling: touch;
    }
    .sidebar-logo {
      padding: 24px 20px 20px;
      border-bottom: 1px solid var(--navy-soft);
      margin-bottom: 12px;
    }
    .sidebar-logo-inner {
      display: flex; align-items: center; gap: 10px;
    }
    .sidebar-logo-icon {
      width: 36px; height: 36px;
      background: var(--brand);
      border-radius: 4px;
      display: flex; align-items: center; justify-content: center;
      color: #111; font-size: 16px; font-weight: 900; flex-shrink: 0;
      font-family: 'Barlow Condensed', sans-serif;
    }
    .sidebar-logo-text { color: #fff; font-size: 15px; font-weight: 800; line-height: 1.2; font-family: 'Barlow Condensed', sans-serif; letter-spacing: .03em; text-transform: uppercase; }
    .sidebar-logo-sub { color: var(--muted); font-size: 11px; }

    .nav-label {
      padding: 8px 20px 4px;
      font-size: 10px; font-weight: 700;
      color: var(--muted); letter-spacing: .10em;
      text-transform: uppercase;
      font-family: 'Barlow Condensed', sans-serif;
    }
    .nav-item {
      display: flex; align-items: center; gap: 10px;
      padding: 10px 20px; margin: 2px 8px;
      border-radius: 8px;
      color: var(--muted); font-size: 14px; font-weight: 500;
      cursor: pointer; transition: all .15s;
      border: none; background: none; width: calc(100% - 16px);
      text-align: left;
    }
    .nav-item:hover { background: var(--navy-soft); color: #fff; }
    .nav-item.active { background: var(--brand); color: #111; font-weight: 700; }
    .nav-item .nav-icon { font-size: 17px; width: 22px; flex-shrink: 0; }

    .sidebar-footer {
      margin-top: auto; padding: 16px 20px 0;
      border-top: 1px solid var(--navy-soft);
    }
    .sidebar-user { color: var(--muted); font-size: 13px; margin-bottom: 12px; }
    .sidebar-user strong { color: #fff; display: block; font-size: 14px; }

    .main { margin-left: 240px; flex: 1; }
    .topbar {
      background: var(--white);
      border-bottom: 1px solid var(--border);
      padding: 18px 32px;
      display: flex; align-items: center; justify-content: space-between;
      position: sticky; top: 0; z-index: 50;
    }
    .notif-btn {
      position: relative; background: none; border: 1.5px solid var(--border);
      border-radius: 8px; width: 38px; height: 38px;
      display: flex; align-items: center; justify-content: center;
      cursor: pointer; font-size: 17px; transition: all .15s;
    }
    .notif-btn:hover { border-color: var(--brand); background: var(--brand-light); }
    .notif-badge {
      position: absolute; top: -6px; right: -6px;
      background: var(--brand); color: #111;
      font-size: 10px; font-weight: 900; min-width: 17px; height: 17px;
      border-radius: 9px; display: flex; align-items: center; justify-content: center;
      padding: 0 4px; font-family: 'Barlow Condensed', sans-serif;
      border: 2px solid var(--white);
    }
    .notif-dropdown {
      position: absolute; top: calc(100% + 8px); right: 0;
      background: var(--white); border: 1px solid var(--border);
      border-radius: 12px; width: 320px;
      box-shadow: var(--shadow-lg); z-index: 200; overflow: hidden;
    }
    .notif-header {
      padding: 14px 18px; border-bottom: 1px solid var(--border);
      font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
      font-size: 15px; text-transform: uppercase; letter-spacing: .04em;
    }
    .notif-item {
      padding: 12px 18px; border-bottom: 1px solid var(--border);
      cursor: pointer; transition: background .12s; display: flex; gap: 10px; align-items: flex-start;
    }
    .notif-item:hover { background: var(--bg); }
    .notif-item:last-child { border-bottom: none; }
    .notif-dot { width: 8px; height: 8px; border-radius: 50%; background: var(--brand); flex-shrink: 0; margin-top: 5px; }
    .notif-empty { padding: 24px 18px; text-align: center; color: var(--muted); font-size: 13px; }
    .topbar-title { font-size: 22px; font-weight: 800; font-family: 'Barlow Condensed', sans-serif; letter-spacing: .02em; text-transform: uppercase; }
    .topbar-sub { font-size: 13px; color: var(--muted); margin-top: 1px; }
    .content { padding: 28px 32px; }

    /* ── CARDS ── */
    .card {
      background: var(--white);
      border: 1px solid var(--border);
      border-radius: 12px;
      padding: 24px;
      box-shadow: var(--shadow);
    }
    .card-title { font-size: 18px; font-weight: 800; margin-bottom: 4px; font-family: 'Barlow Condensed', sans-serif; letter-spacing: .02em; }
    .card-sub { font-size: 13px; color: var(--muted); margin-bottom: 20px; }

    /* ── STAT CARDS ── */
    .stats-grid { display: grid; grid-template-columns: repeat(4,1fr); gap: 16px; margin-bottom: 24px; }
    .stat-card {
      background: var(--white); border: 1px solid var(--border);
      border-radius: 12px; padding: 20px;
      box-shadow: var(--shadow);
    }
    .stat-label { font-size: 11px; font-weight: 700; color: var(--muted); text-transform: uppercase; letter-spacing: .08em; margin-bottom: 8px; font-family: 'Barlow Condensed', sans-serif; }
    .stat-value { font-size: 28px; font-weight: 700; color: var(--navy); line-height: 1; }
    .stat-desc { font-size: 12px; color: var(--muted); margin-top: 6px; }

    /* ── BADGES ── */
    .badge {
      display: inline-flex; align-items: center; gap: 4px;
      padding: 3px 10px; border-radius: 20px;
      font-size: 12px; font-weight: 600;
    }
    .badge-green  { background: var(--green-light);  color: var(--green); }
    .badge-amber  { background: var(--amber-light);  color: var(--amber); }
    .badge-red    { background: var(--red-light);    color: var(--red); }
    .badge-blue   { background: var(--blue-light);   color: var(--blue); }
    .badge-grey   { background: var(--bg);           color: var(--slate); }
    .badge-brand  { background: var(--brand); color: #111; }
    .badge-green-light { background: #D1FAE5; color: #065F46; }

    /* ── TABLE ── */
    .table-wrap { overflow-x: auto; }
    table { width: 100%; border-collapse: collapse; }
    th {
      text-align: left; padding: 10px 14px;
      font-size: 11px; font-weight: 700; color: var(--muted);
      text-transform: uppercase; letter-spacing: .08em;
      border-bottom: 2px solid var(--navy);
      background: var(--navy); color: rgba(255,255,255,0.5);
      font-family: 'Barlow Condensed', sans-serif;
    }
    td { padding: 13px 14px; border-bottom: 1px solid var(--border); vertical-align: middle; }
    tr:last-child td { border-bottom: none; }
    tr:hover td { background: var(--bg); }
    .dir-name { display: flex; align-items: center; gap: 10px; font-weight: 600; }
    .dir-emoji { font-size: 20px; }

    /* ── SCORE BAR ── */
    .score-wrap { display: flex; align-items: center; gap: 8px; }
    .score-bar-bg { flex: 1; height: 6px; background: var(--border); border-radius: 3px; min-width: 60px; }
    .score-bar-fill { height: 100%; border-radius: 3px; transition: width .3s; }
    .score-num { font-size: 13px; font-weight: 700; min-width: 32px; text-align: right; }

    /* ── MODAL ── */
    .modal-overlay {
      position: fixed; inset: 0; background: rgba(15,28,46,.55);
      display: flex; align-items: center; justify-content: center;
      z-index: 200; padding: 24px;
    }
    .modal {
      background: var(--white); border-radius: 16px;
      padding: 32px; width: 100%; max-width: 520px;
      box-shadow: var(--shadow-lg);
      max-height: 90vh; overflow-y: auto;
    }
    .modal-title { font-size: 18px; font-weight: 700; margin-bottom: 4px; }
    .modal-sub { font-size: 13px; color: var(--muted); margin-bottom: 24px; }
    .modal-actions { display: flex; gap: 10px; justify-content: flex-end; margin-top: 24px; }

    /* ── TABS ── */
    .tabs { display: flex; gap: 4px; margin-bottom: 24px; border-bottom: 2px solid var(--border); }
    .tab {
      padding: 10px 18px; font-size: 14px; font-weight: 600;
      color: var(--muted); cursor: pointer; border: none;
      background: none; border-bottom: 2px solid transparent;
      margin-bottom: -2px; transition: all .15s;
    }
    .tab.active { color: var(--brand); border-bottom-color: var(--brand); }
    .tab:hover:not(.active) { color: var(--navy); }

    /* ── TIMELINE ── */
    .timeline { list-style: none; padding: 0; }
    .timeline-item { display: flex; gap: 16px; padding-bottom: 24px; position: relative; }
    .timeline-item:not(:last-child)::before {
      content: ''; position: absolute;
      left: 15px; top: 32px; bottom: 0;
      width: 2px; background: var(--border);
    }
    .timeline-dot {
      width: 32px; height: 32px; border-radius: 50%; flex-shrink: 0;
      display: flex; align-items: center; justify-content: center;
      font-size: 14px; border: 2px solid var(--border);
      background: var(--white); z-index: 1; color: var(--muted);
    }
    .timeline-dot.done { background: var(--green); border-color: var(--green); color: #fff; }
    .timeline-dot.current {
      background: var(--brand); border: 4px solid #111;
      outline: 3px solid var(--brand);
      color: #111; font-weight: 900;
      font-family: 'Barlow Condensed', sans-serif;
      font-size: 15px;
      box-shadow: 0 0 0 2px var(--brand-dark);
      width: 36px; height: 36px; margin: -2px;
    }
    .timeline-body { flex: 1; padding-top: 4px; }
    .timeline-title { font-weight: 600; font-size: 15px; }
    .timeline-title.current-title { 
      font-family: 'Barlow Condensed', sans-serif;
      font-weight: 800; font-size: 17px;
      color: var(--navy);
    }
    .timeline-desc { font-size: 13px; color: var(--muted); margin-top: 2px; }
    .timeline-item.future .timeline-title { color: var(--muted); }
    .timeline-item.future .timeline-desc { color: var(--border); }

    /* ── TICKET ── */
    .ticket-item {
      padding: 16px 20px; border-bottom: 1px solid var(--border);
      cursor: pointer; transition: background .12s;
    }
    .ticket-item:hover { background: var(--bg); }
    .ticket-item:last-child { border-bottom: none; }
    .ticket-meta { display: flex; align-items: center; gap: 10px; margin-bottom: 4px; }
    .ticket-subject { font-weight: 600; font-size: 15px; }
    .ticket-preview { font-size: 13px; color: var(--muted); }
    .ticket-date { font-size: 12px; color: var(--muted); margin-left: auto; }

    .message-thread { display: flex; flex-direction: column; gap: 14px; margin-bottom: 20px; }
    .message-bubble {
      max-width: 75%; padding: 12px 16px;
      border-radius: 12px; font-size: 14px; line-height: 1.5;
    }
    .message-bubble.customer {
      background: var(--bg); border: 1px solid var(--border);
      align-self: flex-start; border-bottom-left-radius: 4px;
    }
    .message-bubble.admin {
      background: var(--navy); color: #fff;
      align-self: flex-end; border-bottom-right-radius: 4px;
    }
    .message-meta { font-size: 11px; color: var(--muted); margin-top: 4px; }

    /* ── ALERTS ── */
    .alert { padding: 12px 16px; border-radius: var(--radius); font-size: 14px; margin-bottom: 16px; }
    .alert-error { background: var(--red-light); color: var(--red); border: 1px solid #FECACA; }
    .alert-success { background: var(--green-light); color: var(--green); border: 1px solid #BBF7D0; }
    .alert-info { background: var(--blue-light); color: var(--blue); border: 1px solid #BFDBFE; }

    /* ── MISC ── */
    .grid-2 { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; }
    .grid-3 { display: grid; grid-template-columns: 1fr 1fr 1fr; gap: 16px; }
    .flex { display: flex; align-items: center; }
    .flex-between { display: flex; align-items: center; justify-content: space-between; }
    .gap-10 { gap: 10px; }
    .gap-12 { gap: 12px; }
    .mb-16 { margin-bottom: 16px; }
    .mb-24 { margin-bottom: 24px; }
    .text-muted { color: var(--muted); font-size: 13px; }
    .text-sm { font-size: 13px; }
    .font-mono { font-family: 'Barlow Condensed', sans-serif; font-weight: 700; letter-spacing: .03em; }
    .empty-state { text-align: center; padding: 48px 24px; color: var(--muted); }
    .empty-icon { font-size: 40px; margin-bottom: 12px; }
    .empty-title { font-size: 16px; font-weight: 600; color: var(--slate); margin-bottom: 6px; }
    .iframe-embed { width: 100%; height: 520px; border: none; border-radius: var(--radius); }
    .embed-placeholder {
      background: var(--bg); border: 2px dashed var(--border);
      border-radius: var(--radius); padding: 48px; text-align: center; color: var(--muted);
    }
    .admin-banner {
      background: var(--brand); color: #111;
      padding: 8px 32px; font-size: 12px; font-weight: 700;
      display: flex; align-items: center; gap: 10px;
      border-bottom: 2px solid var(--brand-dark);
      letter-spacing: .04em; font-family: 'Barlow Condensed', sans-serif;
      text-transform: uppercase;
    }
    .admin-banner .admin-pill {
      background: #111; color: var(--brand);
      padding: 2px 10px; border-radius: 3px;
      font-size: 11px; font-weight: 900; letter-spacing: .08em;
    }
    .admin-banner .admin-email { color: #333; }

    .customer-banner {
      background: #111; color: #fff;
      padding: 8px 32px; font-size: 12px; font-weight: 700;
      display: flex; align-items: center; gap: 10px;
      border-bottom: 2px solid var(--brand);
      letter-spacing: .04em; font-family: 'Barlow Condensed', sans-serif;
      text-transform: uppercase;
    }
    .customer-banner .customer-pill {
      background: var(--brand); color: #111;
      padding: 2px 10px; border-radius: 3px;
      font-size: 11px; font-weight: 900; letter-spacing: .08em;
    }

    select { appearance: none; }
    .actions-row { display: flex; gap: 8px; flex-wrap: wrap; }

    @media (max-width: 900px) {
      .sidebar { width: 200px; }
      .main { margin-left: 200px; }
      .stats-grid { grid-template-columns: repeat(2,1fr); }
      .content { padding: 20px; }
    }
    /* ── MOBILE HAMBURGER ── */
    .mobile-bar {
      display: none;
      position: fixed; bottom: 0; left: 0; right: 0; z-index: 200;
      background: var(--navy); border-top: 2px solid var(--brand);
      padding: 10px 20px; align-items: center; justify-content: space-between;
    }
    .mobile-bar-page { color: #fff; font-size: 13px; font-weight: 700; font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: .05em; }
    .mobile-bar-btn { background: var(--brand); border: none; border-radius: 8px; padding: 8px 14px; font-size: 13px; font-weight: 900; color: #111; cursor: pointer; font-family: 'Barlow Condensed', sans-serif; text-transform: uppercase; letter-spacing: .04em; }
    .mobile-menu-overlay {
      display: none; position: fixed; inset: 0; z-index: 300;
      background: rgba(0,0,0,0.7); flex-direction: column;
    }
    .mobile-menu-overlay.open { display: flex; }
    .mobile-menu-panel {
      background: var(--navy); width: 85%; max-width: 320px;
      height: 100%; overflow-y: auto; padding-bottom: 32px;
      box-shadow: 4px 0 24px rgba(0,0,0,0.4);
    }
    .mobile-menu-header {
      padding: 20px 20px 16px; border-bottom: 2px solid var(--brand);
      display: flex; align-items: center; justify-content: space-between;
    }
    .mobile-menu-title { font-family: 'Barlow Condensed', sans-serif; font-weight: 900; font-size: 18px; color: #fff; text-transform: uppercase; letter-spacing: .04em; }
    .mobile-menu-close { background: none; border: 1px solid rgba(255,255,255,0.2); color: #fff; border-radius: 6px; padding: 4px 12px; font-size: 13px; cursor: pointer; font-family: inherit; }
    .mobile-menu-section { padding: 12px 20px 4px; font-size: 10px; font-weight: 800; color: rgba(255,255,255,0.35); text-transform: uppercase; letter-spacing: .1em; font-family: 'Barlow Condensed', sans-serif; }
    .mobile-menu-item { display: flex; align-items: center; width: 100%; padding: 11px 20px; background: none; border: none; color: rgba(255,255,255,0.75); font-size: 14px; font-family: inherit; cursor: pointer; text-align: left; transition: all .12s; justify-content: space-between; }
    .mobile-menu-item:hover, .mobile-menu-item.active { background: rgba(255,255,255,0.06); color: #fff; }
    .mobile-menu-item.active { border-left: 3px solid var(--brand); color: var(--brand); font-weight: 700; }
    .mobile-menu-soon { font-size: 9px; font-weight: 800; color: #111; background: var(--brand); padding: 1px 6px; border-radius: 3px; }
    @media (max-width: 640px) {
      .sidebar { display: none; }
      .mobile-bar { display: flex; }
      .mobile-menu-overlay { display: none; }
      .mobile-menu-overlay.open { display: flex; }
      .main { margin-left: 0; padding-bottom: 72px; }
      .stats-grid { grid-template-columns: 1fr 1fr; }
      .grid-2, .grid-3 { grid-template-columns: 1fr; }
      .topbar { padding: 12px 16px; }
      .content { padding: 12px 16px; }
      /* Fix iOS zoom on input focus — must be 16px+ */
      input, select, textarea { font-size: 16px !important; }
      /* Fix table overflow on mobile */
      .table-wrap { overflow-x: auto; -webkit-overflow-scrolling: touch; }
      table { min-width: 500px; }
      /* Fix ticket thread on mobile */
      .message-bubble { max-width: 90%; font-size: 14px; }
      /* Hide secondary columns on mobile tables */
      .hide-mobile { display: none; }
      /* Admin/customer banner */
      .admin-banner, .customer-banner { padding: 8px 16px; font-size: 11px; }
      .admin-banner span:last-child { display: none; }
    }
      .table-responsive { overflow-x: auto; -webkit-overflow-scrolling: touch; width: 100%; }
    .table-responsive table { min-width: 500px; }
    @media (max-width: 640px) {
      .modal { margin: 8px; width: calc(100% - 16px); max-height: 92vh; overflow-y: auto; }
      .grid-2 { grid-template-columns: 1fr !important; }
    }

    /* ── SECTION BANNER ── */
    .section-banner {
      border-radius: 10px; padding: 16px 20px; margin-bottom: 20px;
      border-left: 4px solid var(--brand);
      background: linear-gradient(135deg, #fffbe6 0%, #fff9d6 100%);
      position: relative;
    }
    .section-banner-title {
      font-family: 'Barlow Condensed', sans-serif; font-weight: 800;
      font-size: 14px; text-transform: uppercase; letter-spacing: .06em;
      color: var(--navy); margin-bottom: 6px;
    }
    .section-banner-body { font-size: 13px; color: var(--slate); line-height: 1.6; }
    .section-banner-body strong { color: var(--navy); }
    .section-banner-actions { display: flex; gap: 8px; margin-top: 12px; flex-wrap: wrap; align-items: center; }
    .section-banner-dismiss {
      background: none; border: none; position: absolute; top: 12px; right: 14px;
      font-size: 18px; color: var(--muted); cursor: pointer; line-height: 1; padding: 2px 6px;
      border-radius: 4px; transition: background .12s;
    }
    .section-banner-dismiss:hover { background: rgba(0,0,0,0.06); }
    .section-banner-upsell {
      background: var(--navy); border-left-color: var(--brand);
      background: linear-gradient(135deg, #1a2744 0%, #111d38 100%);
    }
    .section-banner-upsell .section-banner-title { color: var(--brand); }
    .section-banner-upsell .section-banner-body { color: rgba(255,255,255,0.7); }
    .section-banner-upsell .section-banner-body strong { color: #fff; }
  