/* ============================================================
   fi-styles.css — Nexdigm Market Research Widget
   Prefix: fi-  |  Brand: Nexdigm Guidelines
   Includes: Market Overview, Table of Contents, FAQ, Carousels,
             Charts, Responsive rules & Brand Typography
   ============================================================ */

@import url('https://fonts.googleapis.com/css2?family=Open+Sans:ital,wght@0,400;0,600;0,700;1,400&family=Roboto:wght@400;500;700;800&display=swap');

:root {
  --fi-purple:    #4012A6;   /* Primary Brand Purple Main */
  --fi-purple-d:  #210069;   /* Live Site Deep Dark Purple */
  --fi-purple-lt: #F4F3F8;   /* Soft Brand Card Background Tint */
  --fi-purple-md: #C6BDDD;   /* Official Purple Light Tint */
  --fi-magenta:   #BA1FB5;   /* Official Nexdigm Magenta */
  --fi-magenta-lt:#C86AA9;   /* Official Magenta Light Tint */
  --fi-green:     #2D7D3E;   /* Laurel Green Main */
  --fi-green-lt:  #C4E4C4;   /* Laurel Green Light Tint */
  --fi-amber-lt:  #FBE5C3;   /* Vivid Orange Light Tint */
  --fi-blue-lt:   #D9E1E5;   /* Blue Gray Light Tint */
  --fi-gray-800:  #333333;   /* Night Gray Main */
  --fi-gray-600:  #58585B;   /* Live Site Neutral Dark Gray Body Text */
  --fi-gray-200:  #DFDDDD;   /* Night Gray Light Tint */
  --fi-border:    #C6BDDD;   /* Border Color */
  --fi-white:     #ffffff;   /* Pure White */
  --fi-bg:        #F6F6F6;   /* Live Site Neutral Section Background */
  --fi-black:     #000000;
  --fi-orange:    #7C3A00;
}

/* ── RESET & BASE CONTAINER ───────────────────────────────── */
.fi-report-wrap *, .fi-report-wrap *::before, .fi-report-wrap *::after { box-sizing: border-box; }
.fi-report-wrap {
  font-family: 'Roboto', 'Open Sans', Arial, sans-serif;
  font-size: 15px;
  line-height: 1.65;
  color: var(--fi-gray-800);
  background: var(--fi-bg);
  padding: 24px 18px;
  width: 100%;
  max-width: 100%;
  box-sizing: border-box;
}

/* Headings Font Family */
h1, h2, h3, h4, h5, h6, .fi-section-title, .fi-sub-title, .fi-driver-title {
  font-family: 'Roboto', 'Open Sans', Arial, sans-serif;
}

/* ── HEADING TYPOGRAPHY ───────────────────────────────────── */
.fi-section-title {
  font-size: 20px;
  font-weight: 700;
  color: var(--fi-purple);
  margin: 0 0 18px;
  padding-bottom: 10px;
  border-bottom: 2px solid var(--fi-purple-md);
}

.fi-sub-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--fi-purple);
  margin: 20px 0 10px;
}

.fi-driver-title,
.fi-driver-box .fi-driver-title,
.fi-opp-hcard .fi-driver-title,
.fi-ch-hcard .fi-driver-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--fi-purple-d);
  margin: 0 0 6px;
}

/* ── TALK TO US — blinking sticky CTA ─────────────────────── */
.fi-cta-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  background: linear-gradient(135deg, var(--fi-purple-d) 0%, var(--fi-purple) 100%);
  border-radius: 4px;
  padding: 12px 18px;
  margin-bottom: 20px;
  gap: 12px;
}
.fi-cta-topbar-text {
  color: #fff;
  font-size: 13px;
  font-weight: 500;
  opacity: 0.95;
}
.fi-cta-topbar-btn {
  display: inline-flex;
  align-items: center;
  gap: 7px;
  background: #fff;
  color: var(--fi-purple);
  font-size: 13px;
  font-weight: 800;
  padding: 8px 18px;
  border-radius: 20px;
  text-decoration: none;
  white-space: nowrap;
  flex-shrink: 0;
  animation: fi-pulse 1.6s ease-in-out infinite;
}
.fi-cta-topbar-btn:hover { background: var(--fi-purple-lt); }
@keyframes fi-pulse {
  0%, 100% { opacity: 1; box-shadow: 0 0 0 0 rgba(255,255,255,0.5); }
  50%       { opacity: 0.9; box-shadow: 0 0 0 6px rgba(255,255,255,0); }
}

/* ── SECTION CARDS ────────────────────────────────────────── */
.fi-section-card {
  background: var(--fi-white);
  border: 1px solid var(--fi-border);
  border-radius: 4px;
  padding: 24px 24px;
  margin-bottom: 20px;
  box-sizing: border-box;
  width: 100%;
}
.fi-report-wrap p { margin-bottom: 12px; color: var(--fi-gray-600); }
.fi-report-wrap p:last-child { margin-bottom: 0; }

/* ── STAT BOXES ───────────────────────────────────────────── */
.fi-stat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 14px;
  margin: 18px 0;
}
.fi-stat-box {
  background: var(--fi-purple-lt);
  border: 1px solid var(--fi-purple-md);
  border-radius: 4px;
  padding: 16px 12px;
  text-align: center;
}
.fi-stat-val { font-size: 22px; font-weight: 800; color: var(--fi-purple); display: block; }
.fi-stat-lbl { font-size: 11px; color: var(--fi-gray-600); margin-top: 4px; line-height: 1.4; }

/* ── SEGMENTATION INTRO ───────────────────────────────────── */
.fi-seg-intro {
  background: var(--fi-purple-lt);
  border-left: 4px solid var(--fi-purple);
  border-radius: 0 4px 4px 0;
  padding: 14px 16px;
  margin-bottom: 18px;
  font-size: 13.5px;
  color: var(--fi-gray-800);
  line-height: 1.6;
}

/* ── SEGMENT GRID ─────────────────────────────────────────── */
.fi-seg-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 14px;
  margin: 16px 0;
  align-items: start;
}
.fi-seg-box { border: 1px solid var(--fi-border); border-radius: 4px; overflow: hidden; }
.fi-seg-head { background: var(--fi-purple); color: #fff; padding: 10px 14px; font-size: 13px; font-weight: 700; }
.fi-seg-body { padding: 12px 14px; }
.fi-seg-body ul { padding-left: 16px; margin: 0; }
.fi-seg-body li { font-size: 13px; color: var(--fi-gray-600); margin-bottom: 4px; }

/* ── CHART CONTAINERS ─────────────────────────────────────── */
.fi-chart-wrap {
  background: #F5F3FA;
  border: 1px solid var(--fi-border);
  border-radius: 4px;
  padding: 16px;
  margin: 18px 0;
  max-width: 100%;
}
.fi-chart-title { font-size: 13px; font-weight: 700; color: var(--fi-purple); margin-bottom: 12px; text-align: center; }
.fi-chart-canvas { max-height: 260px; width: 100% !important; }

/* ── DRIVER BOXES ─────────────────────────────────────────── */
.fi-dc-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px; margin: 16px 0; align-items: stretch; }
.fi-driver-box {
  background: var(--fi-purple-lt);
  border: 1px solid var(--fi-border);
  border-left: 4px solid var(--fi-purple);
  border-radius: 4px;
  padding: 16px;
  display: flex;
  flex-direction: column;
  transition: box-shadow 0.2s, background 0.2s;
}
.fi-driver-box:hover {
  background: #e0dcf5;
  box-shadow: 0 4px 16px rgba(64,18,166,0.12);
}
.fi-driver-box p { font-size: 13px; margin-bottom: 0; flex: 1; line-height: 1.55; }

/* ── MARKET CHALLENGES & OPPORTUNITIES HORIZONTAL CAROUSELS ── */
.fi-opp-section, .fi-challenge-section { overflow: hidden; }

.fi-opp-hstack-wrap, .fi-ch-hstack-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 6px;
  margin: 16px 0 0;
}

.fi-opp-hcard, .fi-ch-hcard {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  padding: 18px 20px 16px;
  background: var(--fi-purple-lt);
  border: 1px solid var(--fi-border);
  border-left: 4px solid var(--fi-purple);
  border-radius: 6px;
  box-sizing: border-box;
  will-change: transform;
  transform-origin: center center;
}

.fi-opp-hcard-num, .fi-ch-hcard-num {
  font-size: 11px;
  font-weight: 800;
  color: var(--fi-purple);
  letter-spacing: 1px;
  margin-bottom: 4px;
  text-transform: uppercase;
}

.fi-opp-hcard p, .fi-ch-hcard p {
  font-size: 13px;
  color: var(--fi-gray-800);
  margin-bottom: 0;
  line-height: 1.55;
}

/* Carousel controls & progress dots */
.fi-opp-controls, .fi-ch-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 16px;
  margin-top: 14px;
}
.fi-opp-hdots, .fi-ch-hdots {
  display: flex;
  justify-content: center;
  gap: 8px;
  margin-top: 0;
}
.fi-opp-hdot, .fi-ch-hdot {
  width: 8px; height: 8px;
  border-radius: 50%;
  background: var(--fi-purple-md);
  transition: background 0.3s, transform 0.3s;
  cursor: pointer;
}
.fi-opp-hdot:hover, .fi-ch-hdot:hover {
  transform: scale(1.2);
}
.fi-opp-hdot.fi-opp-hdot-active, .fi-ch-hdot.fi-ch-hdot-active {
  background: var(--fi-purple);
  transform: scale(1.35);
}
.fi-opp-arrow {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  border: 1px solid var(--fi-purple-md);
  background: #ffffff;
  color: var(--fi-purple);
  font-size: 18px;
  font-weight: 700;
  line-height: 1;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  cursor: pointer;
  transition: all 0.2s ease;
  user-select: none;
  padding: 0 0 2px 0;
  outline: none;
}
.fi-opp-arrow:hover {
  background: var(--fi-purple);
  color: #ffffff;
  border-color: var(--fi-purple);
  transform: scale(1.08);
  box-shadow: 0 2px 8px rgba(64, 18, 166, 0.25);
}
.fi-opp-arrow:active {
  transform: scale(0.95);
}

/* ── COMPETITIVE TABLE ────────────────────────────────────── */
.fi-table-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin: 16px 0;
  border-radius: 4px;
  border: 1px solid var(--fi-border);
}
.fi-comp-table { width: 100%; border-collapse: collapse; font-size: 12px; margin: 0; min-width: 900px; }
.fi-comp-table th {
  background: var(--fi-purple);
  color: #fff;
  padding: 10px 12px;
  text-align: left;
  font-weight: 600;
  white-space: nowrap;
  border: 1px solid #210069;
}
.fi-comp-table td {
  padding: 9px 12px;
  border: 1px solid var(--fi-gray-200);
  color: var(--fi-gray-600);
  vertical-align: middle;
  white-space: nowrap;
}
.fi-comp-table tr:nth-child(even) td { background: #F5F3FA; }
.fi-comp-table tr:hover td { background: var(--fi-purple-lt); transition: background 0.15s; }
.fi-comp-table td.fi-masked { text-align: center; font-weight: 700; font-size: 15px; color: var(--fi-purple-md); letter-spacing: 1px; }
.fi-cta-blink {
  display: inline-block;
  background: var(--fi-purple);
  color: #fff !important;
  font-size: 12px;
  font-weight: 800;
  padding: 5px 14px;
  border-radius: 4px;
  text-decoration: none;
  cursor: pointer;
  letter-spacing: 0.3px;
  animation: fi-cta-blink-anim 1.3s ease-in-out infinite;
  border: 2px solid var(--fi-purple);
}
.fi-cta-blink:hover { background: var(--fi-purple-d); border-color: var(--fi-purple-d); animation: none; }
@keyframes fi-cta-blink-anim {
  0%   { opacity: 1; transform: scale(1);    background: var(--fi-purple);   box-shadow: 0 0 0 0 rgba(64,18,166,0.6); }
  35%  { opacity: 1; transform: scale(1.06); background: var(--fi-purple-d); box-shadow: 0 0 0 6px rgba(64,18,166,0.15); }
  70%  { opacity: 0.75; transform: scale(0.97); background: var(--fi-purple); box-shadow: 0 0 0 0 rgba(64,18,166,0); }
  100% { opacity: 1; transform: scale(1);    background: var(--fi-purple);   box-shadow: 0 0 0 0 rgba(64,18,166,0); }
}
.fi-comp-note {
  font-size: 12px;
  color: var(--fi-gray-600);
  margin-top: 10px;
  padding: 10px 14px;
  background: var(--fi-purple-lt);
  border-radius: 4px;
  border-left: 3px solid var(--fi-purple);
}

/* ── RESEARCH METHODOLOGY ─────────────────────────────────── */
.fi-method-wrap { margin: 16px 0; }

.fi-phase-tabs {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 18px;
  flex-wrap: wrap;
}
.fi-phase-tab {
  display: flex;
  align-items: center;
  gap: 8px;
  padding: 8px 16px;
  border: 2px solid var(--fi-border);
  border-radius: 30px;
  background: #fff;
  cursor: pointer;
  transition: all 0.2s;
  font-family: 'Roboto', sans-serif;
  font-size: 13px;
  font-weight: 600;
  color: var(--fi-gray-600);
}
.fi-phase-tab.fi-phase-active {
  background: var(--fi-purple-d);
  border-color: var(--fi-purple-d);
  color: #fff;
}
.fi-phase-tab:hover:not(.fi-phase-active) {
  border-color: var(--fi-purple);
  color: var(--fi-purple);
  background: var(--fi-purple-lt);
}
.fi-phase-num-badge {
  display: flex;
  align-items: center;
  justify-content: center;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  font-size: 11px;
  font-weight: 800;
  background: var(--fi-purple-lt);
  color: var(--fi-purple);
  flex-shrink: 0;
}
.fi-phase-active .fi-phase-num-badge { background: rgba(255,255,255,0.2); color: #fff; }
.fi-phase-connector { font-size: 18px; color: var(--fi-purple-md); flex-shrink: 0; line-height: 1; }

.fi-method-section { overflow: hidden; }

.fi-phase-hstack-wrap {
  position: relative;
  overflow: hidden;
  border-radius: 8px;
  margin: 16px 0 0;
}

.fi-phase-card {
  position: absolute;
  top: 0; left: 0;
  width: 100%;
  padding: 18px 20px 16px;
  background: var(--fi-purple-lt);
  border: 1px solid var(--fi-border);
  border-left: 4px solid var(--fi-purple);
  border-radius: 8px;
  box-sizing: border-box;
  will-change: transform;
  transform-origin: center center;
  transition: border-color 0.25s, box-shadow 0.25s;
}
.fi-phase-card.fi-phase-card-active {
  border-color: var(--fi-purple);
  box-shadow: 0 4px 20px rgba(64,18,166,0.14);
  background: var(--fi-purple-lt);
}
.fi-phase-card-head {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 12px;
  padding-bottom: 10px;
  border-bottom: 1px solid var(--fi-gray-200);
}
.fi-phase-icon {
  width: 36px;
  height: 36px;
  background: var(--fi-purple-lt);
  border: 1px solid var(--fi-purple-md);
  border-radius: 8px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 16px;
  flex-shrink: 0;
}
.fi-phase-card.fi-phase-card-active .fi-phase-icon {
  background: var(--fi-purple);
  border-color: var(--fi-purple);
}
.fi-phase-card-head h4 {
  font-size: 13px;
  font-weight: 700;
  color: var(--fi-gray-800);
  margin: 0;
  padding-top: 2px;
  line-height: 1.4;
}
.fi-phase-list { list-style: none; padding: 0; margin: 0; }
.fi-phase-list li {
  font-size: 12px;
  color: var(--fi-gray-600);
  padding: 4px 0;
  line-height: 1.5;
  display: flex;
  gap: 7px;
  align-items: flex-start;
}
.fi-phase-list li::before {
  content: '›';
  color: var(--fi-purple);
  font-weight: 800;
  font-size: 14px;
  flex-shrink: 0;
  line-height: 1.3;
}

/* ── TABLE OF CONTENTS ACCORDION ─────────────────────────── */
.fi-toc-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 16px;
  padding-bottom: 14px;
  border-bottom: 2px solid var(--fi-purple-md);
  flex-wrap: wrap;
  gap: 10px;
}
.fi-toc-total {
  font-size: 13px;
  font-weight: 700;
  color: var(--fi-purple);
}
.fi-toc-total span {
  display: inline-block;
  background: var(--fi-purple);
  color: #fff;
  border-radius: 12px;
  padding: 2px 9px;
  font-size: 11px;
  font-weight: 800;
  margin-left: 6px;
  vertical-align: middle;
}
.fi-toc-btn-group { display: flex; gap: 8px; }
.fi-toc-ctrl-btn {
  padding: 6px 14px;
  border-radius: 20px;
  border: 1px solid var(--fi-border);
  background: #fff;
  cursor: pointer;
  font-size: 12px;
  font-weight: 600;
  color: var(--fi-gray-600);
  font-family: 'Roboto', 'Open Sans', Arial, sans-serif;
  transition: all 0.15s;
}
.fi-toc-ctrl-btn:hover {
  border-color: var(--fi-purple);
  color: var(--fi-purple);
  background: var(--fi-purple-lt);
}

.fi-ch {
  border: 1px solid var(--fi-border);
  border-radius: 6px;
  margin-bottom: 10px;
  overflow: hidden;
  transition: box-shadow 0.2s;
}
.fi-ch:hover { box-shadow: 0 2px 12px rgba(64,18,166,0.10); }

.fi-ch-hdr {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  cursor: pointer;
  background: #fafafa;
  border-left: 4px solid transparent;
  transition: background 0.15s, border-color 0.15s;
  user-select: none;
}
.fi-ch-hdr:hover        { background: var(--fi-purple-lt); border-left-color: var(--fi-purple-md); }
.fi-ch-hdr.fi-open      { background: var(--fi-purple-lt); border-left-color: var(--fi-purple); }

.fi-ch-num {
  font-size: 22px;
  font-weight: 900;
  color: var(--fi-purple-md);
  min-width: 34px;
  line-height: 1;
  font-variant-numeric: tabular-nums;
  letter-spacing: -1px;
  flex-shrink: 0;
  transition: color 0.15s;
}
.fi-ch-hdr:hover .fi-ch-num,
.fi-ch-hdr.fi-open .fi-ch-num { color: var(--fi-purple); }

.fi-ch-icon { width: 30px; height: 30px; flex-shrink: 0; object-fit: contain; }

.fi-ch-title {
  font-size: 14px;
  font-weight: 700;
  color: var(--fi-gray-800);
  flex: 1;
  line-height: 1.4;
}
.fi-ch-hdr.fi-open .fi-ch-title { color: var(--fi-purple); }

.fi-ch-count {
  font-size: 11px;
  font-weight: 700;
  color: var(--fi-gray-600);
  background: var(--fi-purple-lt);
  border: 1px solid var(--fi-purple-md);
  border-radius: 12px;
  padding: 3px 10px;
  white-space: nowrap;
  flex-shrink: 0;
  transition: all 0.15s;
}
.fi-ch-hdr.fi-open .fi-ch-count {
  background: var(--fi-purple);
  color: #fff;
  border-color: var(--fi-purple);
}

.fi-ch-chevron {
  font-size: 11px;
  color: var(--fi-gray-600);
  transition: transform 0.22s, color 0.15s;
  flex-shrink: 0;
}
.fi-ch-hdr.fi-open .fi-ch-chevron { transform: rotate(180deg); color: var(--fi-purple); }

.fi-ch-body {
  display: none;
  padding: 12px 16px 16px 54px;
  border-top: 1px solid var(--fi-gray-200);
  background: #fdfcff;
}

.fi-toc-l1 { list-style: none; padding: 0; margin: 0; }
.fi-toc-l1 > li {
  position: relative;
  padding: 4px 0 4px 14px;
  margin-bottom: 7px;
  font-size: 13px;
  color: var(--fi-gray-600);
  line-height: 1.6;
}
.fi-toc-l1 > li::before {
  content: '';
  position: absolute;
  left: 0; top: 7px;
  width: 3px; height: 18px;
  background: var(--fi-purple);
  border-radius: 2px;
}
.fi-toc-l1 > li strong { color: var(--fi-gray-800); font-weight: 700; }

.fi-toc-l2 { list-style: none; padding: 0 0 0 12px; margin: 5px 0 4px; }
.fi-toc-l2 > li {
  position: relative;
  padding: 3px 0 3px 12px;
  margin-bottom: 4px;
  font-size: 12.5px;
  color: var(--fi-gray-600);
  line-height: 1.5;
}
.fi-toc-l2 > li::before {
  content: '';
  position: absolute;
  left: 0; top: 6px;
  width: 2px; height: 14px;
  background: var(--fi-purple-md);
  border-radius: 2px;
}

/* ── FAQ ACCORDION ────────────────────────────────────────── */
.fi-faq-item { margin-bottom: 8px; border: 1px solid var(--fi-border); border-radius: 6px; overflow: hidden; }
.fi-faq-q {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  cursor: pointer;
  background: #fafafa;
  transition: background 0.15s;
  user-select: none;
}
.fi-faq-q:hover, .fi-faq-q.fi-open { background: var(--fi-purple-lt); }
.fi-faq-badge {
  background: var(--fi-purple);
  color: #fff;
  font-size: 10px;
  font-weight: 800;
  padding: 3px 8px;
  border-radius: 12px;
  letter-spacing: 0.5px;
  white-space: nowrap;
  flex-shrink: 0;
}
.fi-faq-q.fi-open .fi-faq-badge { background: var(--fi-purple-d); }
.fi-faq-question { font-weight: 700; font-size: 14px; color: var(--fi-gray-800); flex: 1; }
.fi-faq-q.fi-open .fi-faq-question { color: var(--fi-purple); }
.fi-faq-icon { font-size: 18px; color: var(--fi-purple-md); transition: transform 0.2s; flex-shrink: 0; }
.fi-faq-q.fi-open .fi-faq-icon { transform: rotate(45deg); color: var(--fi-purple); }
.fi-faq-ans {
  display: none;
  padding: 16px 16px 16px 52px;
  border-top: 1px solid var(--fi-gray-200);
  border-left: 3px solid var(--fi-purple);
}
.fi-faq-ans p { font-size: 13.5px; color: var(--fi-gray-600); margin-bottom: 8px; line-height: 1.7; }
.fi-faq-ans p:last-child { margin-bottom: 0; }

/* ── TAGS & UTILITIES ────────────────────────────────────── */
.fi-tag-row { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 20px; padding-top: 16px; border-top: 1px solid var(--fi-gray-200); }
.fi-tag {
  background: var(--fi-purple-lt);
  color: var(--fi-purple);
  border: 1px solid var(--fi-purple-md);
  border-radius: 20px;
  padding: 4px 12px;
  font-size: 12px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  transition: background .15s, color .15s;
  display: inline-block;
}
.fi-tag:hover { background: var(--fi-purple); color: #fff; }

.store-single-left .test-tabs {  flex-direction: row;  flex-wrap: wrap;}
.store-single-left .test-tabs .test-tab.active::after {  display: none;}
.extrafix .test-tabs { position: sticky; top: 155px; }
.test-tabs { width: 100%; margin: 0px 0px 30px; padding: 0px; list-style: none; }
.test-tab { position: relative; line-height: 1.2; color: rgb(0, 0, 0); font-size: 18px; font-weight: 500; margin: 0px; padding: 12px 0px; border:none; border-bottom: 1px solid rgba(0, 0, 0, 0.15); color: rgb(0, 0, 0); transition: 0.3s; display:flex; background:none; outline:none; width:100%; cursor:pointer }
.test-tab.active { color: rgb(91, 21, 169); }
.test-tab:last-child {border-bottom:none}
.test-tabs > button.test-tab:last-of-type {border-bottom:none}
.fi-report-wrap {font-family:'Roboto',sans-serif!important}
.test-panel .fi-report-wrap{padding:0 !important; margin:0!important; background:none!important}
.store-single-center h2.fi-section-title { width: 100%; color: #4012A6; margin: 0 0 20px; font-size: 18px; font-weight: 600; line-height: 1.2; background: none !important; padding: 0; box-shadow: none; border: none; border-radius: 0; }
.store-single-center .fi-section-card {padding:0; background:none; border-radius:0; border:none}      
.store-single-center .fi-report-wrap p { color: #000; margin:0 0 25px 0; font-size:15px}
.store-single-center .fi-report-wrap p:last-child {margin:0}
.store-single-center .fi-comp-table th {font-size:15px; line-height:1.2}
button.test-tab:focus,button.test-tab:active {outline:none}
.store-single-center .fi-toc-accordion,.store-single-center .fi-faq-accordion { border: 1px solid rgb(0 0 0 / .15); background:none; border-radius:.25rem}
.store-single-center .fi-toc-header,.store-single-center .fi-faq-header { display: flex; align-items: center; gap: 12px; padding: 14px 16px; cursor: pointer; background: #fff; transition: background 0.15s; user-select: none; outline: none; box-shadow: none; border:none }
.store-single-center .fi-toc-header:before,.store-single-center .fi-faq-header:before { float: right!important; font-family: FontAwesome; content: "\f067"; padding-right: 5px;order: 2; float: right !important; margin: 0; padding: 0; color:#5B15A9; font-weight:500 }
.store-single-center .fi-toc-header .fi-toc-chevron,.store-single-center .fi-faq-header .fi-faq-chevron {display:none}
.store-single-center .fi-toc-header,.store-single-center .fi-faq-header {border:none}
.store-single-center .fi-toc-header.fi-open:before,.store-single-center .fi-faq-header.fi-open:before {content:"\f068"}
.store-single-center .fi-toc-header .fi-toc-header-text,.store-single-center .fi-faq-header .fi-faq-header-text { color: #5B15A9; font-size: 1rem; font-weight: 500; }
.store-single-center .fi-toc-header.fi-open .fi-toc-header-text,.store-single-center .fi-faq-header.fi-open .fi-faq-header-text { color: #5B15A9;}
.store-single-center .fi-toc-body,.store-single-center .fi-faq-body {color:#222; font-size:15px; line-height:1.2}
.store-single-center ul { padding: 0; list-style: none; width: 100%; margin: 0 0 25px }
.store-single-center ul:last-child {margin-bottom:0}
.store-single-center ul li { font-size: 15px; margin: 0; padding: 8px 0 8px 10px; position: relative; line-height: 1.2; list-style: none; border-left:none; color:#000 }
.store-single-center ul li::after { content: ''; position: absolute; background: #B91FB5; width: 2px; height: 13px; left: 0; top: 10px }
.store-single-center ul ul li::after {top:6px}
.store-single-center ul li p { line-height: 22px }
.store-single-center ul li p:last-child { margin-bottom: 0 }
.store-single-center ul li:before {display:none}
.store-single-center ul ul {margin-bottom:0}
.store-single-center .fi-faq-question {line-height: 1.2;color: #5B15A9;font-weight: 500; font-size:1rem}
.store-single-center .fi-faq-question {line-height: 1.2;color: #5B15A9;font-weight: 500; font-size:1rem}
.store-single-center .fi-faq-body p,.store-single-center .fi-faq-body {font-size: 1rem; font-weight: 400; line-height: 1.5; color:#222}
.store-single-center .fi-faq-body::before { content: ''; position: absolute; top: 3px; left: 20px; width: calc(100% - 40px); height: 1px; background: rgb(0 0 0 / .3); }
.store-single-center .fi-faq-accordion {margin-bottom:12px}
.tbl-responsive { width: 100%; overflow-x: auto; margin: 0 0 15px 0; }
.test-tabs .report-download-pdf {margin-top:30px}


@media (max-width: 780px) {
.store-single-right { flex: 0 0 100% !important;  }
  .test-tabs .report-download-pdf {margin-top: 15px;}
.extrafix .test-tabs {margin:0}
}

/* ── RESPONSIVE RULES ────────────────────────────────────── */
@media (max-width: 900px) {
  .fi-report-wrap { padding: 18px 14px; }
  .fi-section-card { padding: 20px 18px; margin-bottom: 16px; }
  .fi-stat-grid { grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 10px; }
  .fi-dc-grid { grid-template-columns: 1fr; }
  .fi-seg-grid { grid-template-columns: 1fr; }
  .fi-ch-body { padding-left: 16px; }
  .fi-ch-num  { font-size: 17px; min-width: 26px; }
  .fi-faq-ans { padding-left: 16px; }
}

@media (max-width: 600px) {
  .fi-report-wrap { padding: 12px 8px; }
  .fi-section-card { padding: 16px 12px; }
  .fi-cta-topbar { flex-direction: column; text-align: center; }
  .fi-stat-grid { grid-template-columns: 1fr; }
  .fi-opp-hcard, .fi-ch-hcard, .fi-phase-card { padding: 14px 14px 12px; }
}
