:root {
  --saas-primary: #0f766e;
  --saas-dark: #0b1320;
  --saas-accent: #f59e0b;
  --saas-muted: #64748b;
  --saas-bg: #f8fafc;
}

body {
  background: radial-gradient(circle at 10% 0%, #ecfeff 0%, #f8fafc 45%, #ffffff 100%);
}

.ud-header {
  background: linear-gradient(90deg, #0b1320 0%, #0f172a 55%, #0f766e 100%);
}

@media (min-width: 1200px) {
  .ud-menu .navbar-nav {
    flex-wrap: nowrap;
    gap: 10px;
  }

  .ud-menu .navbar-nav .nav-item > a {
    white-space: nowrap;
    font-size: 14px;
    padding-left: 8px;
    padding-right: 8px;
  }
}

.ud-hero {
  background: linear-gradient(140deg, #0f172a 0%, #111827 45%, #0f766e 100%);
}

.ud-hero .ud-hero-title,
.ud-hero .ud-hero-desc {
  color: #ffffff;
}

.ud-page-banner h1,
.ud-page-banner p,
.ud-page-banner .ud-banner-content p {
  color: #ffffff;
}

.ud-footer-minimal {
  background: #0b1320;
  padding: 18px 0;
  text-align: center;
}

.ud-footer-minimal-copy {
  margin: 0;
  font-size: 14px;
  line-height: 1.5;
}

.ud-footer-minimal-copy a {
  color: #ffffff;
  text-decoration: none;
}

.ud-footer-minimal-copy a:hover {
  text-decoration: underline;
}

.saas-kpi-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 16px;
  margin-top: 28px;
}

.saas-kpi {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 18px;
  text-align: center;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.08);
}

.saas-kpi h3 {
  color: var(--saas-primary);
  margin-bottom: 6px;
}

.saas-chip {
  display: inline-block;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 12px;
  background: #dcfce7;
  color: #166534;
  margin-right: 8px;
  margin-bottom: 8px;
}

.saas-panel {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 14px;
  padding: 24px;
  box-shadow: 0 10px 30px rgba(15, 23, 42, 0.06);
}

.saas-cta {
  background: linear-gradient(120deg, #0b1320 0%, #0f766e 100%);
  border-radius: 18px;
  padding: 36px 24px;
  color: #e2e8f0;
}

.saas-cta h2,
.saas-cta p {
  color: #e2e8f0;
}

.saas-table {
  width: 100%;
  border-collapse: collapse;
}

.saas-table th,
.saas-table td {
  border: 1px solid #e2e8f0;
  padding: 10px 12px;
  font-size: 14px;
}

.saas-table th {
  background: #f1f5f9;
  color: #0f172a;
}

@media (max-width: 991px) {
  .saas-kpi-grid {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }
}

@media (max-width: 576px) {
  .saas-kpi-grid {
    grid-template-columns: repeat(1, minmax(0, 1fr));
  }
}

/* ================================================================
   ENRICHMENT COMPONENTS — added for non-technical user experience
   ================================================================ */

/* Benefit Pill */
.benefit-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 6px 14px;
  border-radius: 999px;
  font-size: 13px;
  font-weight: 500;
  background: #f0fdf4;
  color: #166534;
  border: 1px solid #bbf7d0;
  margin: 4px 4px 4px 0;
}
.benefit-pill i { font-size: 14px; }

.hero-benefit-row {
  display: flex;
  flex-wrap: nowrap;
  gap: 8px;
  overflow-x: auto;
  padding-bottom: 4px;
  scrollbar-width: none;
}
.hero-benefit-row::-webkit-scrollbar { display: none; }
.hero-benefit-row .benefit-pill {
  white-space: nowrap;
  margin: 0;
  background: rgba(240, 253, 244, 0.14);
  color: #ecfdf5;
  border-color: rgba(187, 247, 208, 0.45);
}
.hero-benefit-row .benefit-pill i { color: #86efac; }

/* Trust Bar */
.trust-bar {
  background: #f1f5f9;
  border-top: 1px solid #e2e8f0;
  border-bottom: 1px solid #e2e8f0;
  padding: 18px 0;
}
.trust-bar-inner {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 32px;
}
.trust-bar-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 14px;
  color: var(--saas-muted);
  font-weight: 500;
}
.trust-bar-item i {
  color: var(--saas-primary);
  font-size: 16px;
}

/* Horizontal Step Flow */
.step-flow {
  display: flex;
  align-items: flex-start;
  justify-content: center;
  flex-wrap: nowrap;
  gap: 0;
  padding: 36px 0 24px;
}
.step-flow-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  flex: 1;
  min-width: 110px;
  max-width: 160px;
}
.step-flow-icon {
  width: 60px;
  height: 60px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saas-primary), #0d9488);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 22px;
  margin-bottom: 10px;
  box-shadow: 0 4px 16px rgba(15,118,110,0.25);
}
.step-flow-label {
  font-size: 13px;
  font-weight: 600;
  color: #0f172a;
  line-height: 1.3;
}
.step-flow-desc {
  font-size: 12px;
  color: var(--saas-muted);
  margin-top: 4px;
  line-height: 1.4;
}
.step-flow-arrow {
  display: flex;
  align-items: center;
  justify-content: center;
  color: #cbd5e1;
  font-size: 20px;
  padding: 0 4px;
  margin-top: 18px;
  flex-shrink: 0;
}

/* Callout Box */
.callout-box {
  background: #f0fdf4;
  border-left: 4px solid var(--saas-primary);
  border-radius: 0 8px 8px 0;
  padding: 14px 18px;
  margin: 16px 0;
}
.callout-box .callout-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--saas-primary);
  margin-bottom: 4px;
}
.callout-box p {
  font-size: 14px;
  color: #374151;
  margin: 0;
  line-height: 1.6;
}

/* Stat Badge Row */
.stat-badge-row {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 16px;
  padding-top: 16px;
  border-top: 1px solid #e2e8f0;
}
.stat-badge {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 12px;
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 8px;
  font-size: 12px;
  color: var(--saas-muted);
}
.stat-badge strong {
  color: var(--saas-primary);
  font-weight: 700;
}

/* Icon Feature Cards (replaces 3-col checkmark lists) */
.icon-feature-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
  margin-top: 16px;
}
.icon-feature-card {
  background: #f8fafc;
  border: 1px solid #e2e8f0;
  border-radius: 10px;
  padding: 12px;
  display: flex;
  align-items: flex-start;
  gap: 9px;
}
.icon-feature-card i {
  color: var(--saas-primary);
  font-size: 16px;
  flex-shrink: 0;
  margin-top: 1px;
}
.icon-feature-card span {
  font-size: 13px;
  color: #374151;
  line-height: 1.4;
  font-weight: 500;
}

/* Sticky Feature Navigation Tabs */
.feature-nav-tabs {
  background: #ffffff;
  border-bottom: 2px solid #e2e8f0;
  position: sticky;
  top: 0;
  z-index: 99;
  box-shadow: 0 2px 8px rgba(15,23,42,0.07);
}
.feature-nav-tabs .nav {
  justify-content: center;
  flex-wrap: nowrap;
  overflow-x: auto;
  gap: 0;
  padding: 0;
  scrollbar-width: none;
}
.feature-nav-tabs .nav::-webkit-scrollbar { display: none; }
.feature-nav-tabs .nav-link {
  color: var(--saas-muted);
  font-size: 13px;
  font-weight: 500;
  padding: 14px 20px;
  white-space: nowrap;
  border-radius: 0;
  border-bottom: 3px solid transparent;
  transition: all 0.2s;
}
.feature-nav-tabs .nav-link:hover,
.feature-nav-tabs .nav-link.active {
  color: var(--saas-primary);
  border-bottom-color: var(--saas-primary);
  background: transparent;
}

/* Persona Pain Quote */
.persona-pain {
  background: #fef9c3;
  border-left: 3px solid #f59e0b;
  border-radius: 0 6px 6px 0;
  padding: 10px 14px 10px 18px;
  font-size: 14px;
  font-style: italic;
  color: #78350f;
  margin-bottom: 14px;
  position: relative;
}
.persona-pain::before {
  content: '\201C';
  font-size: 28px;
  font-weight: 700;
  color: #f59e0b;
  line-height: 0.8;
  display: block;
  margin-bottom: 2px;
}

/* Step Timeline (Day in the Life) */
.step-timeline { margin-top: 16px; padding-top: 16px; border-top: 1px solid #e2e8f0; }
.ditl-label {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--saas-muted);
  margin-bottom: 10px;
}
.step-timeline-item {
  display: flex;
  gap: 12px;
  position: relative;
  padding-bottom: 14px;
}
.step-timeline-item:last-child { padding-bottom: 0; }
.step-timeline-item:not(:last-child)::before {
  content: '';
  position: absolute;
  left: 13px;
  top: 28px;
  width: 2px;
  height: calc(100% - 12px);
  background: #e2e8f0;
}
.step-timeline-dot {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--saas-primary);
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 700;
  flex-shrink: 0;
}
.step-timeline-content strong {
  font-size: 13px;
  color: #0f172a;
  display: block;
  margin-bottom: 1px;
}
.step-timeline-content span {
  font-size: 12px;
  color: var(--saas-muted);
  line-height: 1.4;
}

/* Testimonial Cards */
.testimonial-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px 24px;
  box-shadow: 0 8px 24px rgba(15,23,42,0.06);
  position: relative;
  height: 100%;
}
.testimonial-card::before {
  content: '\201C';
  font-size: 72px;
  line-height: 1;
  color: var(--saas-primary);
  opacity: 0.12;
  position: absolute;
  top: 10px;
  left: 20px;
  font-family: Georgia, serif;
}
.testimonial-quote {
  font-size: 15px;
  color: #374151;
  line-height: 1.7;
  margin-bottom: 20px;
  padding-top: 20px;
}
.testimonial-author {
  display: flex;
  align-items: center;
  gap: 12px;
  border-top: 1px solid #f1f5f9;
  padding-top: 16px;
}
.testimonial-avatar {
  width: 44px;
  height: 44px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saas-primary), #0d9488);
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 18px;
  flex-shrink: 0;
}
.testimonial-name { font-weight: 600; font-size: 14px; color: #0f172a; }
.testimonial-role { font-size: 12px; color: var(--saas-muted); }

/* Before / After Grid */
.before-after-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
  margin-top: 20px;
}
.before-col {
  background: #fef2f2;
  border: 1px solid #fecaca;
  border-radius: 12px;
  padding: 20px;
}
.after-col {
  background: #f0fdf4;
  border: 1px solid #bbf7d0;
  border-radius: 12px;
  padding: 20px;
}
.before-col h5 { color: #dc2626; margin-bottom: 14px; font-size: 14px; font-weight: 700; }
.after-col h5 { color: #16a34a; margin-bottom: 14px; font-size: 14px; font-weight: 700; }
.before-after-item {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 13px;
  color: #374151;
  margin-bottom: 9px;
  line-height: 1.5;
}
.before-after-item i { flex-shrink: 0; margin-top: 2px; font-size: 13px; }

/* Pricing Comparison Table */
.comparison-table-wrap { overflow-x: auto; margin-top: 32px; }
.comparison-table {
  width: 100%;
  border-collapse: collapse;
  font-size: 14px;
}
.comparison-table th {
  background: var(--saas-dark);
  color: #e2e8f0;
  padding: 14px 16px;
  text-align: center;
  font-weight: 600;
}
.comparison-table th:first-child { text-align: left; min-width: 180px; }
.comparison-table td {
  padding: 11px 16px;
  border-bottom: 1px solid #f1f5f9;
  text-align: center;
  color: #374151;
}
.comparison-table td:first-child { text-align: left; font-weight: 500; }
.comparison-table tr:nth-child(even) td { background: #f8fafc; }
.comparison-table .ct-yes { color: #16a34a; font-size: 17px; font-weight: 700; }
.comparison-table .ct-no { color: #d1d5db; font-size: 17px; }
.comparison-table .ct-val { font-weight: 600; color: #0f172a; }
.comparison-table .ct-section td {
  background: #f1f5f9;
  font-weight: 700;
  color: #0f172a;
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.06em;
  text-align: left;
  padding: 8px 16px;
}
.ct-popular-col { background: rgba(15,118,110,0.06) !important; }

/* Time Saved Badge */
.time-saved-badge {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  background: #fef9c3;
  color: #713f12;
  border: 1px solid #fde68a;
  margin-left: 10px;
  vertical-align: middle;
}

/* Audience Chips */
.audience-chips {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 6px;
  margin-top: 10px;
}
.audience-chips .ach-label {
  font-size: 12px;
  color: var(--saas-muted);
  font-weight: 500;
}
.audience-chip {
  display: inline-block;
  padding: 3px 10px;
  border-radius: 999px;
  font-size: 12px;
  background: #e0f2fe;
  color: #0369a1;
  border: 1px solid #bae6fd;
  text-decoration: none;
  transition: background 0.15s;
}
.audience-chip:hover { background: #bae6fd; color: #0369a1; }

/* Use Case Step Cards */
.uc-steps {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 8px;
  margin-top: 14px;
}
.uc-step {
  display: flex;
  align-items: flex-start;
  gap: 9px;
  background: #f8fafc;
  border-radius: 8px;
  padding: 10px 12px;
  border: 1px solid #f1f5f9;
}
.uc-step-num {
  width: 24px;
  height: 24px;
  border-radius: 50%;
  background: var(--saas-primary);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.uc-step-text { font-size: 12px; color: #374151; line-height: 1.4; }

/* How It Works Steps */
.how-it-works-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 32px;
}
.hiw-step {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(15,23,42,0.05);
  position: relative;
}
.hiw-step-num {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--saas-primary), #0d9488);
  color: #fff;
  font-size: 20px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 14px;
  box-shadow: 0 4px 12px rgba(15,118,110,0.3);
}
.hiw-step h5 { font-weight: 700; color: #0f172a; margin-bottom: 8px; }
.hiw-step p { font-size: 14px; color: var(--saas-muted); margin: 0; line-height: 1.6; }

/* Who Is This For — Cards */
.who-for-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 28px 22px;
  text-align: center;
  box-shadow: 0 4px 16px rgba(15,23,42,0.05);
  transition: box-shadow 0.2s, transform 0.2s;
  height: 100%;
}
.who-for-card:hover {
  box-shadow: 0 8px 32px rgba(15,118,110,0.12);
  transform: translateY(-3px);
}
.who-for-icon {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, #ecfeff, #ccfbf1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 16px;
  font-size: 26px;
  color: var(--saas-primary);
}
.who-for-card h5 { font-weight: 700; color: #0f172a; margin-bottom: 6px; }
.who-for-card .pain {
  font-size: 13px;
  color: #b45309;
  margin-bottom: 10px;
  font-style: italic;
  background: #fef9c3;
  border-radius: 6px;
  padding: 5px 10px;
}
.who-for-card p { font-size: 14px; color: var(--saas-muted); line-height: 1.6; margin-bottom: 14px; }

/* Section heading helpers */
.section-eyebrow {
  font-size: 12px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.1em;
  color: var(--saas-primary);
  margin-bottom: 8px;
  display: block;
}

/* Business Centers Page */
.uae-flag-strip {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.25);
  padding: 6px 12px;
  border-radius: 999px;
  font-size: 12px;
  font-weight: 600;
  color: #e2e8f0;
  margin-bottom: 14px;
}
.flag-bar { display: inline-flex; border-radius: 4px; overflow: hidden; }
.flag-bar span { width: 8px; height: 10px; display: block; }
.flag-bar .c1 { background: #009a49; }
.flag-bar .c2 { background: #ffffff; }
.flag-bar .c3 { background: #000000; }
.flag-bar .c4 { background: #ce1126; }

.uae-stat-row {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 14px;
  margin-top: 8px;
}
.uae-stat-card {
  background: #ffffff;
  border: 1px solid #dbe6ef;
  border-radius: 14px;
  padding: 18px 14px;
  text-align: center;
  box-shadow: 0 6px 20px rgba(15,23,42,0.05);
}
.uae-stat-card .stat-num {
  color: var(--saas-primary);
  font-size: 22px;
  font-weight: 800;
  line-height: 1.1;
  margin-bottom: 6px;
}
.uae-stat-card .stat-label {
  color: #475569;
  font-size: 13px;
  line-height: 1.4;
}

.zone-pill-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
}
.zone-pill {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 8px 12px;
  border-radius: 999px;
  border: 1px solid #cde7df;
  background: #f0fdfa;
  color: #0f766e;
  font-size: 12px;
  font-weight: 600;
}

.bc-segment-grid {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 16px;
}
.bc-segment-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 22px 18px;
  box-shadow: 0 8px 24px rgba(15,23,42,0.05);
  height: 100%;
}
.bc-segment-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: linear-gradient(135deg, #ecfeff, #ccfbf1);
  color: var(--saas-primary);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 20px;
  margin-bottom: 12px;
}
.bc-segment-card h6 {
  font-size: 16px;
  font-weight: 700;
  color: #0f172a;
  margin-bottom: 8px;
}
.bc-segment-card p {
  font-size: 14px;
  color: #556274;
  line-height: 1.6;
  margin: 0;
}

.pain-challenge-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 12px;
}
.pain-challenge-item {
  background: #fff7f7;
  border: 1px solid #fecaca;
  border-radius: 12px;
  padding: 13px 14px;
  display: flex;
  align-items: flex-start;
  gap: 10px;
}
.pain-challenge-item i {
  color: #dc2626;
  margin-top: 2px;
  flex-shrink: 0;
}
.pain-challenge-item p {
  margin: 0;
  color: #7f1d1d;
  font-size: 13px;
  line-height: 1.5;
}

.feature-fit-table th {
  background: #0f172a;
  color: #e2e8f0;
  font-size: 13px;
  letter-spacing: 0.02em;
}
.feature-fit-table th,
.feature-fit-table td {
  padding: 14px 14px;
  border-bottom: 1px solid #e5edf5;
}
.feature-fit-table td {
  font-size: 13px;
  color: #334155;
  vertical-align: top;
}
.fit-tag {
  display: inline-flex;
  align-items: center;
  padding: 4px 10px;
  border-radius: 999px;
  font-size: 11px;
  font-weight: 700;
  background: #dcfce7;
  color: #166534;
}
.fit-yes { line-height: 1.55; }

.bc-workflow-strip {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 12px;
}
.bc-workflow-step {
  background: #ffffff;
  border: 1px solid #dbe6ef;
  border-radius: 14px;
  padding: 16px;
  box-shadow: 0 6px 18px rgba(15,23,42,0.04);
}
.bc-workflow-num {
  width: 30px;
  height: 30px;
  border-radius: 50%;
  background: var(--saas-primary);
  color: #fff;
  font-size: 13px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}
.bc-workflow-step h6 {
  margin-bottom: 6px;
  font-weight: 700;
  color: #0f172a;
}
.bc-workflow-step p {
  margin: 0;
  font-size: 13px;
  line-height: 1.5;
  color: #556274;
}

.video-script-card {
  background: #ffffff;
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 22px 20px;
  box-shadow: 0 8px 24px rgba(15,23,42,0.05);
  height: 100%;
}
.script-num {
  display: inline-flex;
  padding: 4px 10px;
  border-radius: 999px;
  background: #ecfeff;
  border: 1px solid #bae6fd;
  color: #0369a1;
  font-size: 11px;
  font-weight: 700;
  margin-bottom: 10px;
}
.video-script-duration {
  color: var(--saas-muted);
  font-size: 12px;
  margin-bottom: 8px;
}
.video-script-card h5 {
  color: #0f172a;
  font-size: 18px;
  font-weight: 700;
  margin-bottom: 10px;
}
.script-hook {
  color: #1e293b;
  font-size: 14px;
  font-weight: 600;
  margin-bottom: 12px;
}
.video-script-card ul {
  list-style: none;
  margin: 0;
  padding: 0;
}
.video-script-card li {
  display: flex;
  gap: 8px;
  font-size: 13px;
  color: #556274;
  margin-bottom: 8px;
  line-height: 1.5;
}
.video-script-card li i {
  color: var(--saas-primary);
  margin-top: 2px;
}

#uaeFaq .accordion-item {
  border: 1px solid #dbe6ef !important;
  background: #ffffff;
  box-shadow: 0 4px 14px rgba(15,23,42,0.04);
}
#uaeFaq .accordion-button {
  background: #ffffff;
  color: #0f172a;
}
#uaeFaq .accordion-button:not(.collapsed) {
  background: #f0fdfa;
  color: #0f766e;
  box-shadow: none;
}
#uaeFaq .accordion-body {
  font-size: 14px;
  line-height: 1.65;
}

/* Responsive */
@media (max-width: 768px) {
  .before-after-grid { grid-template-columns: 1fr; }
  .icon-feature-grid { grid-template-columns: 1fr 1fr; }
  .how-it-works-steps { grid-template-columns: 1fr; }
  .step-flow { flex-wrap: wrap; gap: 8px; }
  .step-flow-arrow { display: none; }
  .step-flow-item { min-width: 80px; max-width: 100px; }
  .uc-steps { grid-template-columns: 1fr; }
  .comparison-table { font-size: 12px; }
  .comparison-table th, .comparison-table td { padding: 8px 10px; }
  .uae-stat-row { grid-template-columns: repeat(2, minmax(0, 1fr)); }
  .bc-segment-grid { grid-template-columns: 1fr; }
  .pain-challenge-grid { grid-template-columns: 1fr; }
  .bc-workflow-strip { grid-template-columns: 1fr; }
  .hero-benefit-row { flex-wrap: wrap; overflow-x: visible; }
  .hero-benefit-row .benefit-pill { white-space: normal; }
}
@media (max-width: 480px) {
  .icon-feature-grid { grid-template-columns: 1fr; }
  .trust-bar-inner { gap: 16px; }
  .uae-stat-row { grid-template-columns: 1fr; }
}