/* =====================================================
   AI-REPORTING-DASHBOARDS.CSS — RankBoost Agency (2026)
   AI Solutions sub-page. Prefix: .ard-
   SELF-CONTAINED: all ais-* and gs-* dependencies are
   embedded below — no external CSS file required beyond
   master.css and design-system.css.
   ===================================================== */

/* ─────────────────────────────────────────────────────
   HERO — DASHBOARD PANEL
   (Replaces ais-visual-panel for this sub-page)
───────────────────────────────────────────────────── */
.ard-dashboard-panel {
  background: var(--ink);
  border-radius: var(--r-xl);
  padding: var(--card-pad);
  border: 1px solid rgba(255,255,255,0.08);
  box-shadow: var(--shadow-lg);
  position: relative;
  overflow: hidden;
}
.ard-dashboard-panel::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 55% 50% at 85% 90%, rgba(200,255,0,0.07), transparent 60%),
    radial-gradient(ellipse 40% 40% at 10% 10%, rgba(91,71,224,0.12), transparent 60%);
  pointer-events: none;
}

/* Window chrome dots */
.ard-panel-header {
  display: flex; align-items: center; gap: 7px;
  margin-bottom: var(--space-md); position: relative; z-index: 1;
}
.ard-panel-dot { width: 10px; height: 10px; border-radius: 999px; flex-shrink: 0; }
.ard-panel-dot:nth-child(1) { background: #FF5F57; }
.ard-panel-dot:nth-child(2) { background: #FEBC2E; }
.ard-panel-dot:nth-child(3) { background: #28C840; }
.ard-panel-title {
  margin-left: auto; font-size: 11px; font-weight: 700;
  color: rgba(255,255,255,0.4); letter-spacing: 0.04em;
}

/* KPI row */
.ard-kpi-row {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: var(--space-sm); margin-bottom: var(--space-sm); position: relative; z-index: 1;
}
.ard-kpi-card {
  background: rgba(255,255,255,0.06);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md); padding: 14px 12px;
  transition: background 200ms;
}
.ard-kpi-card:hover { background: rgba(255,255,255,0.1); }
.ard-kpi-label {
  font-size: 10px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4); margin-bottom: var(--space-xs);
}
.ard-kpi-value {
  font-size: 19px; font-weight: 900; color: #fff;
  line-height: 1; letter-spacing: -0.025em;
}
.ard-kpi-change { font-size: 10.5px; font-weight: 800; margin-top: var(--space-xs); }
.ard-kpi-change.up   { color: #4ade80; }
.ard-kpi-change.down { color: #fbbf24; }

/* Mini bar chart */
.ard-mini-chart {
  background: rgba(255,255,255,0.04);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-md); padding: 14px;
  position: relative; z-index: 1; margin-bottom: var(--space-sm);
}
.ard-chart-title {
  font-size: 11px; font-weight: 800; text-transform: uppercase;
  letter-spacing: 0.07em; color: rgba(255,255,255,0.5); margin-bottom: var(--space-sm);
}
.ard-chart-bars {
  display: flex; align-items: flex-end; gap: var(--space-xs); height: 48px;
}
.ard-chart-bars i {
  flex: 1; border-radius: 3px 3px 0 0;
  background: rgba(91,71,224,0.7);
  transform-origin: bottom center;
  transform: scaleY(0);
}
.ard-chart-bars i:nth-child(even) { background: rgba(200,255,0,0.55); }
/* Heights set via JS animation */
.ard-chart-bars i:nth-child(1) { --h: 38%; }
.ard-chart-bars i:nth-child(2) { --h: 55%; }
.ard-chart-bars i:nth-child(3) { --h: 44%; }
.ard-chart-bars i:nth-child(4) { --h: 70%; }
.ard-chart-bars i:nth-child(5) { --h: 60%; }
.ard-chart-bars i:nth-child(6) { --h: 85%; }
.ard-chart-bars i:nth-child(7) { --h: 72%; }
.ard-chart-bars i:nth-child(8) { --h: 92%; }

/* Source rows */
.ard-source-row {
  display: flex; align-items: center; gap: var(--space-sm);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.07);
  border-radius: var(--r-sm); padding: 9px 12px; margin-bottom: var(--space-xs);
  position: relative; z-index: 1;
  transition: background 200ms;
}
.ard-source-row:last-child { margin-bottom: 0; }
.ard-source-row:hover { background: rgba(255,255,255,0.09); }
.ard-source-dot { width: 8px; height: 8px; border-radius: 999px; flex-shrink: 0; }
.ard-source-name { flex: 1; font-size: 12px; font-weight: 700; color: rgba(255,255,255,0.7); }
.ard-source-val  { font-size: 13px; font-weight: 900; color: var(--accent); }
.ard-source-chg  { font-size: 11px; font-weight: 800; color: #4ade80; margin-left: var(--space-xs); }

/* ─────────────────────────────────────────────────────
   WHAT ARE AI REPORTING DASHBOARDS
───────────────────────────────────────────────────── */
.ard-what-section {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}
.ard-what-grid {
  display: grid; gap: var(--grid-gap-lg); align-items: center;
}
@media (min-width: 1024px) {
  .ard-what-grid { grid-template-columns: 1.1fr 0.9fr; }
}

/* Manual vs AI comparison table */
.ard-compare {
  border: 1px solid var(--line); border-radius: var(--r-lg);
  overflow: hidden; box-shadow: var(--shadow-sm);
}
.ard-compare-header {
  display: grid; grid-template-columns: 1fr 1fr;
}
.ard-compare-header > div {
  padding: 10px 16px; font-size: 11px; font-weight: 900;
  text-transform: uppercase; letter-spacing: 0.09em;
  border-right: 1px solid var(--line);
}
.ard-compare-header > div:first-child {
  background: rgba(239,68,68,0.06); color: #b91c1c;
}
.ard-compare-header > div:last-child {
  background: rgba(91,71,224,0.06); color: var(--primary); border-right: none;
}
.ard-compare-row {
  display: grid; grid-template-columns: 1fr 1fr;
  border-top: 1px solid var(--line);
}
.ard-compare-cell {
  padding: 11px 16px; font-size: 13px; font-weight: 700;
  color: var(--ink-muted); border-right: 1px solid var(--line);
  line-height: 1.4; display: flex; align-items: center; gap: var(--space-sm);
}
.ard-compare-cell:last-child { border-right: none; }
.ard-cc { color: #16a34a; font-size: 13px; flex-shrink: 0; }
.ard-cx { color: #dc2626; font-size: 13px; flex-shrink: 0; }

/* Impact stat strip */
.ard-impact-stats {
  display: grid; gap: var(--grid-gap-sm); margin-top: var(--space-lg);
}
@media (min-width: 480px) { .ard-impact-stats { grid-template-columns: repeat(3, 1fr); } }

.ard-impact-stat {
  border: 1px solid var(--line); border-radius: var(--r-md);
  background: var(--surface-2); padding: 16px; text-align: center;
  transition: border-color 180ms, box-shadow 180ms;
}
.ard-impact-stat:hover {
  border-color: rgba(91,71,224,0.22); box-shadow: var(--shadow-sm);
}
.ard-impact-stat strong {
  display: block; font-size: 26px; font-weight: 900;
  color: var(--primary); line-height: 1; letter-spacing: -0.03em;
}
.ard-impact-stat span {
  display: block; font-size: 11.5px; font-weight: 700;
  color: var(--ink-faint); margin-top: 5px; line-height: 1.4;
}

/* What visual card */
.ard-what-visual {
  border-radius: var(--r-xl); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-lg);
  min-height: 400px; position: relative; background: var(--surface-2);
}
.ard-what-visual img {
  width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0;
}
.ard-what-badge {
  position: absolute; bottom: 20px; left: 20px;
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 14px 18px;
  box-shadow: var(--shadow-md); display: flex; align-items: center; gap: var(--grid-gap-sm);
}
.ard-what-badge-icon {
  width: 36px; height: 36px; border-radius: var(--r-sm);
  background: var(--accent); color: #000; font-size: 16px;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.ard-what-badge strong {
  display: block; font-size: 18px; font-weight: 900;
  color: var(--ink); line-height: 1;
}
.ard-what-badge span {
  display: block; font-size: 11.5px; font-weight: 700;
  color: var(--ink-faint); margin-top: 3px;
}

/* ─────────────────────────────────────────────────────
   WHY BUSINESSES NEED IT  (dark section)
───────────────────────────────────────────────────── */
.ard-why-section {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
  background: var(--ink);
  position: relative; overflow: hidden;
}
.ard-why-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 50% 55% at 90% 20%, rgba(91,71,224,0.16), transparent 60%),
    radial-gradient(ellipse 35% 45% at 8%  80%, rgba(200,255,0,0.06), transparent 60%);
  pointer-events: none;
}
.ard-why-section .eyebrow { color: var(--accent); }
.ard-why-section .eyebrow::before { background: var(--accent); }
.ard-why-section .section-heading h2 { color: #fff; }
.ard-why-section .section-heading p  { color: rgba(255,255,255,0.58); }
.ard-why-inner { position: relative; z-index: 1; }

.ard-why-grid {
  display: grid; gap: var(--space-md); margin-top: var(--heading-gap);
}
@media (min-width: 640px)  { .ard-why-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ard-why-grid { grid-template-columns: repeat(3, 1fr); } }

.ard-why-card {
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-lg); padding: var(--card-pad);
  transition: background 200ms, border-color 200ms, transform 200ms var(--ease);
}
.ard-why-card:hover {
  background: rgba(255,255,255,0.09);
  border-color: rgba(200,255,0,0.2);
  transform: translateY(-3px);
}
.ard-why-icon { font-size: 26px; margin-bottom: var(--space-sm); display: block; }
.ard-why-card h3 {
  font-size: 17px; font-weight: 800; color: #fff;
  letter-spacing: -0.015em; margin-bottom: var(--space-sm);
}
.ard-why-card p {
  font-size: 13.5px; color: rgba(255,255,255,0.52);
  line-height: 1.72; margin: 0;
}
.ard-why-stat {
  display: inline-block; margin-top: var(--space-sm);
  font-size: 30px; font-weight: 900; color: var(--accent);
  letter-spacing: -0.03em; line-height: 1;
}
.ard-why-stat-l {
  display: block; font-size: 11.5px; font-weight: 700;
  color: rgba(255,255,255,0.4); margin-top: 3px;
}

/* ─────────────────────────────────────────────────────
   SERVICES — featured card + ais-grid
───────────────────────────────────────────────────── */
.ard-services-section {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}

.ard-featured-card {
  border: 1.5px solid rgba(91,71,224,0.25);
  border-radius: var(--r-xl);
  background: var(--surface);
  overflow: hidden; display: grid;
  box-shadow: var(--shadow-md);
  transition: box-shadow 220ms, border-color 220ms;
}
.ard-featured-card:hover {
  box-shadow: var(--shadow-lg);
  border-color: rgba(91,71,224,0.38);
}
@media (min-width: 1024px) {
  .ard-featured-card { grid-template-columns: 1fr 380px; }
}

.ard-featured-body {
  padding: 40px; display: flex; flex-direction: column;
  background: linear-gradient(135deg, var(--primary-light) 0%, var(--surface) 100%);
}
.ard-featured-body h3 {
  font-size: clamp(20px, 2.2vw, 28px); font-weight: 800;
  letter-spacing: -0.025em; margin: 0 0 14px;
}
.ard-featured-body > p {
  font-size: 15px; color: var(--ink-muted);
  line-height: 1.75; margin-bottom: var(--space-md);
}

.ard-featured-panel {
  background: var(--ink);
  position: relative; overflow: hidden;
  min-height: 220px; padding: var(--card-pad);
}
.ard-featured-panel::before {
  content: ''; position: absolute; inset: 0;
  background: radial-gradient(ellipse 60% 50% at 80% 80%, rgba(200,255,0,0.08), transparent 60%);
  pointer-events: none;
}

/* Mini preview inside featured card */
.ard-preview-kpis {
  display: grid; grid-template-columns: 1fr 1fr;
  gap: var(--space-sm); margin-bottom: var(--space-sm); position: relative; z-index: 1;
}
.ard-preview-kpi {
  background: rgba(255,255,255,0.07);
  border: 1px solid rgba(255,255,255,0.09);
  border-radius: var(--r-sm); padding: 12px;
}
.ard-preview-kpi-label {
  font-size: 9.5px; font-weight: 800;
  text-transform: uppercase; letter-spacing: 0.08em;
  color: rgba(255,255,255,0.4);
}
.ard-preview-kpi-value {
  font-size: 18px; font-weight: 900; color: var(--accent);
  line-height: 1; margin-top: 5px; letter-spacing: -0.025em;
}
.ard-preview-bar-row {
  display: grid; grid-template-columns: repeat(6, 1fr);
  gap: var(--space-xs); align-items: flex-end; height: 40px;
  position: relative; z-index: 1;
}
.ard-preview-bar-row i { border-radius: 3px 3px 0 0; background: rgba(91,71,224,0.5); }
.ard-preview-bar-row i:nth-child(even) { background: rgba(200,255,0,0.45); }
.ard-preview-bar-row i:nth-child(1) { height: 45%; }
.ard-preview-bar-row i:nth-child(2) { height: 68%; }
.ard-preview-bar-row i:nth-child(3) { height: 55%; }
.ard-preview-bar-row i:nth-child(4) { height: 80%; }
.ard-preview-bar-row i:nth-child(5) { height: 70%; }
.ard-preview-bar-row i:nth-child(6) { height: 95%; }

/* ─────────────────────────────────────────────────────
   DATA SOURCES GRID
───────────────────────────────────────────────────── */
.ard-sources-section {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
  background: var(--surface-2);
}
.ard-sources-grid {
  display: grid; gap: var(--space-sm); margin-top: var(--heading-gap);
}
@media (min-width: 480px) { .ard-sources-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .ard-sources-grid { grid-template-columns: repeat(4, 1fr); } }

.ard-source-chip {
  display: flex; align-items: center; gap: var(--grid-gap-sm);
  padding: 14px 16px; border-radius: var(--r-md);
  border: 1px solid var(--line); background: var(--surface);
  box-shadow: var(--shadow-sm);
  transition: border-color 180ms, box-shadow 180ms, background 180ms;
  cursor: default;
}
.ard-source-chip:hover {
  border-color: rgba(91,71,224,0.3);
  box-shadow: var(--shadow-md);
  background: var(--primary-light);
}
.ard-source-chip-icon {
  font-size: 20px; flex-shrink: 0;
  width: 32px; height: 32px;
  display: flex; align-items: center; justify-content: center;
}
.ard-source-chip h3 {
  font-size: 13.5px; font-weight: 800; color: var(--ink); line-height: 1.2;
}
.ard-source-chip p {
  font-size: 11.5px; color: var(--ink-faint); font-weight: 600; margin-top: 2px;
}

/* ─────────────────────────────────────────────────────
   CHALLENGES WE SOLVE
───────────────────────────────────────────────────── */
.ard-challenges-section {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}
.ard-challenges-layout {
  display: grid; gap: var(--grid-gap-lg);
  align-items: start; margin-top: var(--heading-gap);
}
@media (min-width: 1024px) {
  .ard-challenges-layout { grid-template-columns: 1fr 1fr; }
}

.ard-challenges-visual {
  border-radius: var(--r-xl); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-lg);
  min-height: 420px; position: relative; background: var(--surface-2);
}
.ard-challenges-visual img {
  width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0;
}
.ard-challenges-metrics {
  position: absolute; bottom: 16px; left: 16px; right: 16px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-sm);
}
.ard-challenges-metric {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 12px;
  text-align: center; box-shadow: var(--shadow-sm);
}
.ard-challenges-metric strong {
  display: block; font-size: 20px; font-weight: 900;
  color: var(--primary); line-height: 1; letter-spacing: -0.025em;
}
.ard-challenges-metric span {
  display: block; font-size: 10.5px; font-weight: 700;
  color: var(--ink-faint); margin-top: var(--space-xs); line-height: 1.3;
}

.ard-solve-list { display: grid; gap: var(--space-sm); }
.ard-solve-item {
  display: grid; grid-template-columns: 44px 1fr;
  gap: var(--space-md); align-items: start;
  padding: 18px 22px; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms var(--ease), border-color 180ms, box-shadow 180ms;
}
.ard-solve-item:hover {
  transform: translateX(5px);
  border-color: rgba(91,71,224,0.22);
  box-shadow: var(--shadow-md);
}
.ard-solve-icon {
  width: 40px; height: 40px; border-radius: var(--r-sm);
  background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.ard-solve-item h3 {
  font-size: 14.5px; font-weight: 800;
  letter-spacing: -0.01em; margin-bottom: 5px; color: var(--ink);
}
.ard-solve-item p {
  font-size: 13px; color: var(--ink-muted); line-height: 1.65; margin: 0;
}

/* ─────────────────────────────────────────────────────
   PROCESS (dark section)
───────────────────────────────────────────────────── */
.ard-process-section {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
  background: var(--ink);
  position: relative; overflow: hidden;
}
.ard-process-section::before {
  content: ''; position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 40% 50% at 90% 20%, rgba(91,71,224,0.15), transparent 60%),
    radial-gradient(ellipse 30% 40% at 10% 80%, rgba(200,255,0,0.06), transparent 60%);
  pointer-events: none;
}
.ard-process-section .eyebrow { color: var(--accent); }
.ard-process-section .eyebrow::before { background: var(--accent); }
.ard-process-section .section-heading h2 { color: #fff; }
.ard-process-section .section-heading p  { color: rgba(255,255,255,0.58); }
.ard-process-inner { position: relative; z-index: 1; }

.ard-process-steps {
  display: grid; margin-top: var(--heading-gap);
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: var(--r-xl); overflow: hidden;
  position: relative; z-index: 1;
}
@media (min-width: 640px)  { .ard-process-steps { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 1024px) { .ard-process-steps { grid-template-columns: repeat(4, 1fr); } }

.ard-pstep {
  padding: var(--card-pad) 24px;
  border-right: 1px solid rgba(255,255,255,0.07);
  border-bottom: 1px solid rgba(255,255,255,0.07);
  background: rgba(255,255,255,0.03);
  transition: background 200ms;
}
.ard-pstep:hover { background: rgba(255,255,255,0.07); }
.ard-pstep-num {
  display: inline-flex; width: 40px; height: 40px;
  align-items: center; justify-content: center;
  border-radius: 50%; background: rgba(200,255,0,0.12);
  color: var(--accent); font-size: 13px; font-weight: 900;
  margin-bottom: var(--space-sm); border: 1px solid rgba(200,255,0,0.2);
}
.ard-pstep h3 {
  font-size: 14.5px; font-weight: 800; color: #fff;
  letter-spacing: -0.015em; margin-bottom: var(--space-xs);
}
.ard-pstep p {
  font-size: 13px; color: rgba(255,255,255,0.52); line-height: 1.72; margin: 0;
}

/* ─────────────────────────────────────────────────────
   DASHBOARD TYPES
───────────────────────────────────────────────────── */
.ard-types-section {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
  background: var(--surface-2);
}
.ard-types-grid {
  display: grid; gap: var(--space-sm); margin-top: var(--heading-gap);
}
@media (min-width: 480px) { .ard-types-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 768px) { .ard-types-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px){ .ard-types-grid { grid-template-columns: repeat(4, 1fr); } }

.ard-type-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: var(--card-pad-sm);
  display: flex; align-items: center; gap: var(--space-md);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms var(--ease), border-color 180ms, box-shadow 180ms, background 180ms;
}
.ard-type-card:hover {
  transform: translateY(-3px);
  border-color: rgba(91,71,224,0.22);
  box-shadow: var(--shadow-md);
  background: var(--primary-light);
}
.ard-type-icon {
  width: 42px; height: 42px; border-radius: var(--r-md);
  background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
  transition: background 180ms, color 180ms;
}
.ard-type-card:hover .ard-type-icon { background: var(--primary); color: #fff; }
.ard-type-card h3 { font-size: 14px; font-weight: 800; color: var(--ink); line-height: 1.3; }
.ard-type-card p  { font-size: 11.5px; color: var(--ink-faint); font-weight: 600; margin-top: 3px; }

/* ─────────────────────────────────────────────────────
   WHY CHOOSE — visual + pillars
───────────────────────────────────────────────────── */
.ard-choose-section {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}
.ard-choose-layout {
  display: grid; gap: var(--grid-gap-lg); align-items: center;
}
@media (min-width: 1024px) {
  .ard-choose-layout { grid-template-columns: 1fr 1fr; }
}

.ard-choose-visual {
  border-radius: var(--r-xl); overflow: hidden;
  border: 1px solid var(--line); box-shadow: var(--shadow-lg);
  min-height: 420px; position: relative; background: var(--surface-2);
}
.ard-choose-visual img {
  width: 100%; height: 100%; object-fit: cover; position: absolute; inset: 0;
}
.ard-choose-stats {
  position: absolute; bottom: 16px; left: 16px; right: 16px;
  display: grid; grid-template-columns: repeat(3, 1fr); gap: var(--space-sm);
}
.ard-choose-stat {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-md); padding: 12px;
  text-align: center; box-shadow: var(--shadow-sm);
}
.ard-choose-stat strong {
  display: block; font-size: 20px; font-weight: 900;
  color: var(--primary); line-height: 1; letter-spacing: -0.025em;
}
.ard-choose-stat span {
  display: block; font-size: 10.5px; font-weight: 700;
  color: var(--ink-faint); margin-top: var(--space-xs); line-height: 1.3;
}

.ard-choose-pillars { display: grid; gap: var(--space-sm); }
.ard-choose-pillar {
  display: grid; grid-template-columns: 44px 1fr;
  gap: var(--space-md); align-items: start;
  padding: 18px 22px; background: var(--surface);
  border: 1px solid var(--line); border-radius: var(--r-md);
  box-shadow: var(--shadow-sm);
  transition: transform 180ms var(--ease), border-color 180ms, box-shadow 180ms;
}
.ard-choose-pillar:hover {
  transform: translateX(5px);
  border-color: rgba(91,71,224,0.22);
  box-shadow: var(--shadow-md);
}
.ard-choose-icon {
  width: 40px; height: 40px; border-radius: var(--r-sm);
  background: var(--primary-light); color: var(--primary);
  display: flex; align-items: center; justify-content: center;
  font-size: 18px; flex-shrink: 0;
}
.ard-choose-pillar h3 {
  font-size: 14.5px; font-weight: 800;
  letter-spacing: -0.01em; margin-bottom: 5px; color: var(--ink);
}
.ard-choose-pillar p {
  font-size: 13px; color: var(--ink-muted); line-height: 1.65; margin: 0;
}

/* ─────────────────────────────────────────────────────
   INDUSTRIES
───────────────────────────────────────────────────── */
.ard-industries-section {
  padding-top: var(--section-py);
  padding-bottom: var(--section-py);
}
.ard-industries-grid {
  display: grid; gap: var(--space-sm); margin-top: var(--heading-gap);
}
@media (min-width: 480px) { .ard-industries-grid { grid-template-columns: repeat(2, 1fr); } }
@media (min-width: 640px) { .ard-industries-grid { grid-template-columns: repeat(3, 1fr); } }
@media (min-width: 1024px){ .ard-industries-grid { grid-template-columns: repeat(5, 1fr); } }

.ard-industry-card {
  background: var(--surface); border: 1px solid var(--line);
  border-radius: var(--r-lg); padding: 20px 14px;
  display: flex; flex-direction: column; align-items: center;
  text-align: center; gap: var(--space-sm); box-shadow: var(--shadow-sm);
  transition: transform 180ms var(--ease), border-color 180ms, box-shadow 180ms, background 180ms;
}
.ard-industry-card:hover {
  transform: translateY(-3px);
  border-color: rgba(91,71,224,0.22);
  box-shadow: var(--shadow-md);
  background: var(--primary-light);
}
.ard-industry-icon { font-size: 26px; }
.ard-industry-card h3 {
  font-size: 13.5px; font-weight: 800; color: var(--ink); line-height: 1.3;
}

/* ─────────────────────────────────────────────────────
   FAQ  (uses rb-faq-section + rb-faq-list from master)
───────────────────────────────────────────────────── */
.ard-faq-layout {
  display: grid; gap: var(--grid-gap-lg); align-items: start;
  margin-top: var(--heading-gap);
}
@media (min-width: 1024px) {
  .ard-faq-layout { grid-template-columns: 300px 1fr; }
}

.ard-faq-sidebar {
  background: var(--primary-light);
  border: 1px solid rgba(91,71,224,0.15);
  border-radius: var(--r-xl); padding: var(--card-pad);
  position: sticky; top: 100px;
}
.ard-faq-sidebar h3 {
  font-size: 18px; font-weight: 800;
  letter-spacing: -0.015em; color: var(--ink); margin-bottom: var(--space-sm);
}
.ard-faq-sidebar > p {
  font-size: 14px; color: var(--ink-muted); line-height: 1.72; margin-bottom: var(--space-md);
}

.ard-faq-trust { display: grid; gap: var(--space-sm); }
.ard-faq-trust-row {
  display: flex; align-items: center; gap: 9px;
  font-size: 13px; font-weight: 700; color: var(--ink-muted);
}
.ard-faq-trust-row::before {
  content: '✓';
  display: inline-flex; width: 20px; height: 20px;
  align-items: center; justify-content: center;
  border-radius: 999px; background: var(--accent);
  color: #000; font-size: 11px; font-weight: 900; flex-shrink: 0;
}

/* ─────────────────────────────────────────────────────
   BORROWED: gs-* components (growth-services.css)
   Duplicated here so this page is self-contained and
   renders correctly regardless of stylesheet load order.
───────────────────────────────────────────────────── */
@media (min-width: 1024px) {
  }
.gs-results-copy h2 { color: #fff; }
.gs-results-copy .eyebrow { color: var(--accent); }
.gs-results-copy .eyebrow::before { background: var(--accent); }
.gs-results-copy p { color: rgba(255,255,255,0.62); margin-top: var(--space-sm); font-size: 16px; line-height: 1.75; }
/* ─────────────────────────────────────────────────────
   BORROWED: ais-* components (ai-solutions.css)
   Embedded so page works without ai-solutions.css loaded.
───────────────────────────────────────────────────── */
.ais-hero-inner {
  position: relative; z-index: 1;
  display: grid; gap: var(--grid-gap-lg); align-items: center;
}
@media (min-width: 1024px) { .ais-hero-inner { grid-template-columns: 1fr 460px; } }
.ais-hero-copy h1 {
  font-size: var(--fs-h1); font-weight: 800;
  line-height: 1.08; letter-spacing: -0.03em;
  color: var(--ink); margin-top: var(--space-sm);
}

/* Grid pattern overlay for rb-hero--grid */
.rb-hero--grid::before {
  content: '';
  position: absolute; inset: 0;
  background-image:
    linear-gradient(rgba(91,71,224,0.05) 1px, transparent 1px),
    linear-gradient(90deg, rgba(91,71,224,0.05) 1px, transparent 1px);
  background-size: 48px 48px;
  pointer-events: none;
  mask-image: radial-gradient(ellipse 80% 70% at 50% 50%, black, transparent);
}

/* Service cards grid */
.ais-grid {
  display: grid; gap: var(--grid-gap); margin-top: var(--heading-gap);
}
@media (min-width: 768px)  { .ais-grid { grid-template-columns: 1fr 1fr; } }
@media (min-width: 1200px) { .ais-grid { grid-template-columns: repeat(3, 1fr); } }

.ais-card {
  border: 1px solid var(--line);
  border-radius: var(--r-xl);
  background: var(--surface);
  padding: var(--card-pad);
  display: flex; flex-direction: column;
  transition: transform 220ms var(--ease), box-shadow 220ms var(--ease), border-color 220ms;
  box-shadow: var(--shadow-sm);
  position: relative; overflow: hidden;
}
.ais-card::before {
  content: '';
  position: absolute; top: 0; left: 0; right: 0; height: 3px;
  background: var(--primary-light);
  transition: background 200ms;
}
.ais-card:hover {
  transform: translateY(-5px);
  box-shadow: var(--shadow-lg);
  border-color: rgba(91,71,224,0.2);
}
.ais-card:hover::before { background: var(--primary); }
.ais-card-icon {
  width: 52px; height: 52px;
  border-radius: var(--r-md);
  background: var(--primary-light);
  display: flex; align-items: center; justify-content: center;
  font-size: 24px; margin-bottom: var(--space-md);
  transition: background 200ms, transform 200ms;
}
.ais-card:hover .ais-card-icon {
  background: var(--primary);
  transform: scale(1.05);
}
.ais-card h3 {
  font-size: 19px; font-weight: 800;
  letter-spacing: -0.015em; margin-bottom: var(--space-sm);
}
.ais-card p {
  font-size: 14px; color: var(--ink-muted);
  line-height: 1.72; flex: 1; margin-bottom: var(--space-md);
}
.ais-card-features {
  display: grid; gap: 7px; margin-bottom: var(--space-md);
}
.ais-card-features li {
  display: flex; align-items: center; gap: var(--space-sm);
  font-size: 13px; color: var(--ink-muted);
}
.ais-card-features li::before {
  content: '→';
  color: var(--primary); font-weight: 900; font-size: 11px;
}
.ais-card-cta {
  display: inline-flex; align-items: center; gap: 7px;
  color: var(--primary); font-size: 13.5px; font-weight: 800;
  margin-top: auto; transition: gap 180ms;
}
.ais-card-cta:hover { gap: var(--space-sm); }

/* ─────────────────────────────────────────────────────
   COUNTER HELPER
───────────────────────────────────────────────────── */
.ard-counter { display: inline; }

/* ─────────────────────────────────────────────────────
   RESPONSIVE
───────────────────────────────────────────────────── */
@media (max-width: 767px) {
  /* Hero dashboard */
  .ard-kpi-row            { grid-template-columns: 1fr 1fr; }
  /* Challenges section */
  .ard-challenges-metrics { grid-template-columns: 1fr 1fr; }
  .ard-challenges-metrics .ard-challenges-metric:last-child { display: none; }
  /* Process: two-col at tablet */
  .ard-process-steps      { grid-template-columns: repeat(2, 1fr); }
  .ard-pstep              { border-right: none; }
  /* Choose stats */
  .ard-choose-stats       { grid-template-columns: 1fr 1fr; }
  .ard-choose-stats .ard-choose-stat:last-child { display: none; }
  /* Impacts */
  .ard-impact-stats       { grid-template-columns: 1fr 1fr 1fr; }
}
@media (max-width: 639px) {
  /* Process back to single col */
  .ard-process-steps { grid-template-columns: 1fr; }
  /* Impact stats single col */
  .ard-impact-stats  { grid-template-columns: 1fr; }
  /* What visual */
  .ard-what-visual   { min-height: 280px; }
  /* Featured card padding */
  .ard-featured-body { padding: var(--card-pad); }
  .ard-compare-cell  { font-size: 12px; padding: 9px 12px; }
}
@media (max-width: 479px) {
  .ard-kpi-row       { grid-template-columns: 1fr 1fr; }
  .ard-types-grid    { grid-template-columns: 1fr; }
  .ard-solve-item    { grid-template-columns: 36px 1fr; gap: var(--space-sm); padding: 14px 16px; }
  .ard-choose-pillar { grid-template-columns: 36px 1fr; gap: var(--space-sm); padding: 14px 16px; }
}

/* ─────────────────────────────────────────────────────
   REDUCED MOTION
───────────────────────────────────────────────────── */
@media (prefers-reduced-motion: reduce) {
  .ard-chart-bars i { transition: none; }
  .ard-why-card:hover,
  .ard-type-card:hover,
  .ard-industry-card:hover,
  .ard-solve-item:hover,
  .ard-choose-pillar:hover { transform: none; }
}
