/* =====================================================================
   platform-engineering-dubai.css
   Page-specific stylesheet for /platform-engineering-services (Dubai/UAE)
   Part 1: original page-level rules (previously an embedded <style> block)
   Part 2: rules converted from inline style="" attributes.
           All Part 2 classes are namespaced with the "pes-dxb-" prefix
           (Platform Engineering Services - Dubai) and marked !important
           so they cannot be overridden by other stylesheets loaded on
           the site, and so they cannot override anything else either.
   ===================================================================== */

/* ---------------------------------------------------------------------
   PART 1 — Original page styles (unchanged, not inline attributes)
   --------------------------------------------------------------------- */
.tavatar-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  border-radius: 50%;
}
.tname {
  padding-top: 10px;
}

#hero { background: linear-gradient(160deg, var(--b900) 0%, var(--b800) 45%, var(--b600) 100%); padding-top: 96px; overflow: hidden; min-height: 90vh; display: flex; flex-direction: column; }
.live-dot { width: 8px; height: 8px; border-radius: 50%; background: #22C55E; animation: blink 2s infinite; display: inline-block; }
@keyframes blink { 0%, 100% { opacity: 1; } 50% { opacity: .4; } }
.hero-badge { display: inline-flex; align-items: center; gap: 8px; padding: 6px 14px 6px 8px; background: rgba(255,255,255,.1); border: 1px solid rgba(255,255,255,.2); border-radius: 100px; margin-bottom: 28px; }
.hero-badge span { font-size: 12px; font-weight: 600; color: rgba(255,255,255,.9); letter-spacing: .04em; text-transform: uppercase; }
.hero-h1 { font-size: clamp(36px, 4.5vw, 62px); font-weight: 800; color: #fff; margin-bottom: 22px; line-height: 1.1; }
.hero-h1 em { font-style: normal; color: var(--b300); }
.hero-p { font-size: 17px; color: rgba(255,255,255,.7); margin-bottom: 36px; max-width: 520px; font-weight: 400; line-height: 1.7; }
.hero-btns { display: flex; gap: 14px; flex-wrap: wrap; margin-bottom: 48px; }
.htrust { padding: 10px 20px; border-right: 1px solid rgba(255,255,255,.12); text-align: center; }
.htrust:last-child { border-right: none; }
.htrust-val { font-size: 22px; font-weight: 800; color: #fff; }
.htrust-lbl { font-size: 11px; color: rgba(255,255,255,.55); letter-spacing: .05em; text-transform: uppercase; }
.hero-wave { margin-top: auto; }
.hero-wave svg { display: block; width: 100%; }

/* Dashboard Card */
.hero-inner { display: flex; align-items: center; gap: 48px; }
.hero-left { flex: 1; min-width: 0; }
.hero-right { flex: 0 0 460px; max-width: 460px; }

.dash-card { background: rgba(255,255,255,0.07); border: 1px solid rgba(255,255,255,0.15); border-radius: 20px; overflow: hidden; backdrop-filter: blur(10px); }
.dash-topbar { background: rgba(0,0,0,0.2); padding: 12px 16px; display: flex; align-items: center; gap: 8px; }
.dash-dot { width: 10px; height: 10px; border-radius: 50%; }
.dash-title { font-size: 12px; color: rgba(255,255,255,0.6); font-family: monospace; margin-left: 8px; }
.dash-body { padding: 16px; }
.dash-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 10px; margin-bottom: 10px; }
.dash-metric { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 14px; }
.dash-metric-lbl { font-size: 10px; color: rgba(255,255,255,0.45); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 6px; }
.dash-metric-val { font-size: 22px; font-weight: 800; margin-bottom: 4px; }
.dash-metric-sub { font-size: 11px; }
.dash-green { color: #22c55e; }
.dash-yellow { color: #f59e0b; }
.dash-blue { color: #60a5fa; }

.dash-bar-section { background: rgba(255,255,255,0.06); border: 1px solid rgba(255,255,255,0.1); border-radius: 12px; padding: 14px; }
.dash-bar-lbl { font-size: 10px; color: rgba(255,255,255,0.45); letter-spacing: .08em; text-transform: uppercase; margin-bottom: 12px; }
.dash-bars { display: flex; align-items: flex-end; gap: 5px; height: 50px; }
.dash-bar { flex: 1; border-radius: 4px 4px 0 0; background: rgba(96,165,250,0.5); }
.dash-bar.red { background: #ef4444; }
.dash-dots-row { display: flex; gap: 16px; margin-top: 12px; }
.dash-dot-item { display: flex; align-items: center; gap: 5px; font-size: 11px; color: rgba(255,255,255,0.6); }
.dash-dot-green { width: 7px; height: 7px; border-radius: 50%; background: #22c55e; display: inline-block; }

@media (max-width: 991px) {
  .hero-inner { flex-direction: column; }
  .hero-right { flex: 0 0 100%; max-width: 100%; width: 100%; }
}
.hero-h1 {
  font-size: 2.5rem !important;
  font-weight: 800 !important;
}

/* Outer layout */
.outer-row {
  display: flex;
  gap: 48px;
  align-items: flex-start;
}

/* Left column */
.left-col {
  flex: 1 1 0;
  min-width: 0;
}

/* Right column */
.right-col {
  flex: 1 1 0;
  min-width: 0;
  position: sticky;
  top: 32px;
}

/* Before/After card */
.ba-wrap {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  overflow: hidden;
  margin-bottom: 28px;
}

.ba-inner {
  display: flex;
}

.ba-col {
  flex: 1 1 0;
  padding: 28px 20px 28px 24px;
}

.ba-before {
  background: #fef2f2;
  border-right: 1px solid #fee2e2;
}

.ba-after {
  background: #f0fdf4;
}

.ba-hd {
  font-size: 13px;
  font-weight: 700;
  letter-spacing: .5px;
  text-transform: uppercase;
  margin-bottom: 16px;
}

.ba-before .ba-hd { color: #dc2626; }
.ba-after  .ba-hd { color: #16a34a; }

.ba-row {
  font-size: 13px;
  line-height: 1.6;
  margin-bottom: 10px;
}

.ba-before .ba-row { color: #7f1d1d; }
.ba-after  .ba-row { color: #14532d; }

/* Pills blocks */
.pills-block {
  background: #fff;
  border-radius: 16px;
  box-shadow: 0 4px 24px rgba(0,0,0,.07);
  padding: 24px 24px 20px;
  margin-bottom: 20px;
}

.pills-title {
  font-size: 13px;
  font-weight: 700;
  color: #334155;
  margin-bottom: 14px;
  text-transform: uppercase;
  letter-spacing: .4px;
}

.sol-pill {
  display: inline-block;
  background: #eff6ff;
  color: #1d4ed8;
  border: 1px solid #bfdbfe;
  border-radius: 99px;
  font-size: 12px;
  font-weight: 500;
  padding: 5px 14px;
  margin: 0 6px 8px 0;
  line-height: 1.5;
}

/* Right col content */
.section-p {
  font-size: 15px;
  color: #64748b;
  line-height: 1.75;
  margin-bottom: 32px;
}

/* Responsive - Tablet */
@media (max-width: 991px) {
  .outer-row {
    flex-direction: column;
    gap: 40px;
  }

  .right-col {
    position: static;
    order: -1;
  }
}

/* Responsive - Mobile */
@media (max-width: 576px) {
  .ba-inner {
    flex-direction: column;
  }

  .ba-before {
    border-right: none;
    border-bottom: 1px solid #fee2e2;
  }

  .ba-col {
    padding: 20px 16px;
  }

  .btn-blue {
    width: 100%;
    text-align: center;
  }
}
.hero-left {
  text-align: left;
}

.hero-btns {
  display: flex;
  flex-direction: row;
  align-items: center;
  gap: 12px;
  flex-wrap: nowrap;
}
.ai-feature-card__desc {
  padding-left: 10px !important;
}
.tname,
.tpara,
.trole {
  text-align: left;
}

@media (max-width: 576px) {
  .btn-blue {
    font-size: 11px !important;
    padding: 12px 14px !important;
  }
}

/* ---------------------------------------------------------------------
   PART 2 — Converted from inline style="" attributes
   Namespace: pes-dxb-  |  All rules !important to prevent override
   --------------------------------------------------------------------- */

/* Hero dashboard top-bar dots */
.pes-dxb-dot-red    { background: #ef4444 !important; }
.pes-dxb-dot-amber  { background: #f59e0b !important; }
.pes-dxb-dot-green  { background: #22c55e !important; }

/* Hero dashboard metric value (white text variant) */
.pes-dxb-metric-white { color: #fff !important; }

/* Hero wave svg height */
.pes-dxb-wave-svg { height: 60px !important; }

/* Hero dashboard bar-chart heights */
.pes-dxb-bar-h40 { height: 40% !important; }
.pes-dxb-bar-h60 { height: 60% !important; }
.pes-dxb-bar-h65 { height: 65% !important; }
.pes-dxb-bar-h70 { height: 70% !important; }
.pes-dxb-bar-h75 { height: 75% !important; }
.pes-dxb-bar-h80 { height: 80% !important; }
.pes-dxb-bar-h85 { height: 85% !important; }
.pes-dxb-bar-h88 { height: 88% !important; }
.pes-dxb-bar-h90 { height: 90% !important; }

/* Logos / "Trusted By" section */
.pes-dxb-logos-section {
  padding: 36px 0 !important;
  background: var(--slate50) !important;
  border-top: 1px solid var(--slate200) !important;
  border-bottom: 1px solid var(--slate200) !important;
}
.pes-dxb-logos-heading {
  text-align: center !important;
  margin-bottom: 20px !important;
}

/* Pain points section background */
.pes-dxb-pain-section { background: #fff !important; }

/* Solution section: single-column feature card wrap, no right border */
.pes-dxb-column-flex { flex-direction: column !important; }
.pes-dxb-no-right-border { border-right: none !important; }

/* Services section background */
.pes-dxb-services-section { background: #fff !important; }

/* Generic top-margin utility */
.pes-dxb-mt-20 { margin-top: 20px !important; }
.pes-dxb-mt-56 { margin-top: 56px !important; }

/*=========================================================
Enterprise Platform Dashboard
=========================================================*/
.mcsd-h-white{
  color: #fff!important;
}
.epd-section{
    padding:90px 0;
    background:#1f3f98!important;
    position:relative;
    overflow:hidden;
}

.epd-section:before{
    content:"";
    position:absolute;
    width:650px;
    height:650px;
    right:-220px;
    top:-220px;
    background:rgba(255,255,255,.04);
    border-radius:50%;
}

.epd-benefits{
    display:flex;
    flex-direction:column;
    gap:18px;
}

.epd-card{
    display:flex;
    align-items:center;
    background:rgba(255,255,255,.07);
    border:1px solid rgba(255,255,255,.08);
    border-radius:18px;
    padding:22px;
    transition:.35s;
}

.epd-card:hover{
    transform:translateY(-6px);
    background:rgba(255,255,255,.12);
    border-color:#4f7dff;
    box-shadow:0 18px 40px rgba(0,0,0,.25);
}

.epd-icon{
    width:46px;
    height:46px;
    border-radius:50%;
    background:#2e66ff;
    color:#fff;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:18px;
    margin-right:18px;
    flex:0 0 46px;
}

.epd-card h3{
    margin:0;
    color:#fff;
    font-size:1.1rem;
    font-weight:600;
    line-height:1.5;
}

/*=========================
Dashboard
=========================*/

.epd-dashboard{
    background:rgba(255,255,255,.07);
    border:1px solid rgba(255,255,255,.08);
    border-radius:22px;
    padding:28px;
    height:100%;
}

.epd-title{
    color:#9ec0ff;
    text-transform:uppercase;
    font-size:.95rem;
    font-weight:700;
    margin-bottom:24px;
    letter-spacing:.5px;
}

.epd-metric{
    background:rgba(255,255,255,.06);
    border:1px solid rgba(255,255,255,.08);
    border-radius:16px;
    padding:22px;
    height:100%;
    transition:.35s;
}

.epd-metric:hover{
    background:rgba(255,255,255,.12);
    transform:translateY(-5px);
}

.epd-metric span{
    display:block;
    color:#9bb7ff;
    text-transform:uppercase;
    font-size:.78rem;
    font-weight:700;
    margin-bottom:10px;
    letter-spacing:.4px;
}

.epd-metric strong{
    color:#fff;
    font-size:1.35rem;
    font-weight:700;
    line-height:1.4;
}

.epd-metric .text-success{
    color:#45e06c!important;
}

/*=================================================
KPI STRIP
=================================================*/

.epd-kpi{
    background:#2e66df;
}

.epd-kpi .section-h{
    margin-bottom:45px;
}

.epd-kpi-box{
    height:100%;
    padding:55px 30px;
    text-align:center;
    color:#fff;
    border-right:1px solid rgba(255,255,255,.12);
}

.epd-kpi .col-md-3:last-child .epd-kpi-box{
    border-right:0;
}

.epd-kpi-box h3{
    margin:0 0 18px;
    font-size:4rem;
    color:#fff;
    font-weight:800;
    line-height:1;
}

.epd-kpi-box p{
    margin:0;
    color:#d8e4ff;
    font-size:1rem;
    line-height:1.8;
    font-weight:500;
}

/*=========================
Responsive
=========================*/

@media(max-width:991px){

    .epd-section{
        padding:70px 0;
    }

    .epd-dashboard{
        margin-top:35px;
    }

    .epd-kpi-box{
        border-right:0;
        border-bottom:1px solid rgba(255,255,255,.12);
    }

    .epd-kpi .col-md-3:last-child .epd-kpi-box{
        border-bottom:0;
    }

    .epd-kpi-box h3{
        font-size:3rem;
    }

}

@media(max-width:767px){

    .epd-card{
        padding:18px;
    }

    .epd-icon{
        width:40px;
        height:40px;
        margin-right:15px;
        font-size:15px;
    }

    .epd-card h3{
        font-size:1rem;
    }

    .epd-dashboard{
        padding:20px;
    }

    .epd-metric{
        padding:18px;
    }

    .epd-metric strong{
        font-size:1.1rem;
    }

    .epd-kpi-box{
        padding:40px 20px;
    }

    .epd-kpi-box h3{
        font-size:2.5rem;
    }

}
/* FAQ section background */
.pes-dxb-faq-section { background: #fff !important; }

:root {
  --b50: #eff6ff;
  --b100: #dbeafe;
  --b200: #bfdbfe;
  --b300: #93c5fd;
  --b400: #60a5fa;
  --b500: #3b82f6;
  --b600: #2563eb;
  --b700: #1d4ed8;
  --b800: #1e40af;
  --b900: #1e3a8a;
  --slate50: #f8fafc;
  --slate100: #f1f5f9;
  --slate200: #e2e8f0;
  --slate300: #cbd5e1;
  --slate400: #94a3b8;
  --slate500: #64748b;
  --slate600: #475569;
  --slate700: #334155;
  --slate800: #1e293b;
  --slate900: #0f172a;
  --ink: #0f172a;
}


/* REVEAL ANIMATIONS */
.reveal {
  opacity: 0;
  transform: translateY(24px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.reveal.vis {
  opacity: 1;
  transform: none;
}

.reveal-left {
  opacity: 0;
  transform: translateX(-24px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.reveal-left.vis {
  opacity: 1;
  transform: none;
}

.reveal-right {
  opacity: 0;
  transform: translateX(24px);
  transition:
    opacity 0.65s ease,
    transform 0.65s ease;
}

.reveal-right.vis {
  opacity: 1;
  transform: none;
}

/* EYEBROW */
.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  padding: 5px 14px;
  border-radius: 100px;
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  background: var(--b50);
  color: var(--b700);
  border: 1px solid var(--b200);
  margin-bottom: 18px;
}

.eyebrow-dot {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--b500);
}

/* BUTTONS */
.btn-blue {
  background: var(--b600);
  color: #fff;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.25);
  padding: 13px 26px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  border: none;
  white-space: nowrap;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.btn-blue:hover {
  background: var(--b700);
  transform: translateY(-1px);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.3);
  color: #fff;
}

.btn-outline-ic {
  background: transparent;
  color: var(--b700);
  border: 1.5px solid var(--b300);
  padding: 13px 26px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 14px;
  display: inline-flex;
  align-items: center;
  transition: all 0.2s;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.btn-outline-ic:hover {
  background: var(--b50);
  border-color: var(--b500);
  color: var(--b700);
}

.btn-white-ic {
  background: #fff;
  color: var(--b700);
  box-shadow: 0 2px 8px rgba(0, 0, 0, 0.08);
  padding: 15px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  border: none;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.btn-white-ic:hover {
  background: var(--b50);
  transform: translateY(-1px);
  color: var(--b700);
}

.banner-btn-ghost {
  background: rgba(255, 255, 255, 0.12);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.25);
  padding: 15px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.banner-btn-ghost:hover {
  background: rgba(255, 255, 255, 0.2);
  color: #fff;
}

.btn-dark-ghost {
  background: rgba(255, 255, 255, 0.08);
  color: #fff;
  border: 1px solid rgba(255, 255, 255, 0.2);
  padding: 15px 32px;
  border-radius: 10px;
  font-weight: 700;
  font-size: 15px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  transition: all 0.2s;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.btn-dark-ghost:hover {
  background: rgba(255, 255, 255, 0.15);
  color: #fff;
}

/* SECTION HEADER */
.section-h {
  font-size: 2.6rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 14px;
}

.section-sub {
  font-size: 16px;
  color: var(--slate500);
  max-width: 580px;
  margin: 0 auto;
  line-height: 1.7;
}

/* ===== HERO ===== */
#hero {
  background: linear-gradient(
    160deg,
    var(--b900) 0%,
    var(--b800) 45%,
    var(--b600) 100%
  );
  padding-top: 30px;
  overflow: hidden;
  min-height: 90vh;
  display: flex;
  flex-direction: column;
}

.live-dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #22c55e;
  animation: blink 2s infinite;
  display: inline-block;
}

@keyframes blink {
  0%,
  100% {
    opacity: 1;
  }

  50% {
    opacity: 0.4;
  }
}

.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 6px 14px 6px 8px;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  border-radius: 100px;
  margin-bottom: 28px;
}

.hero-badge span {
  font-size: 12px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.hero-h1 {
  font-size: 2.6rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: 22px;
  line-height: 1.1;
}

.hero-h1 em {
  font-style: normal;
  color: var(--b300);
}

.hero-p {
  font-size: 17px;
  color: rgba(255, 255, 255, 0.7);
  margin-bottom: 1rem;
  /* max-width: 520px; */
  font-weight: 400;
  line-height: 1.7;
}

.hero-btns {
  width: 100%;
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
  margin-bottom: 1rem;
}

.htrust {
  padding: 10px 20px;
  border-right: 1px solid rgba(255, 255, 255, 0.12);
  text-align: center;
}

.htrust:last-child {
  border-right: none;
}

.htrust-val {
  font-size: 1.5rem;
  font-weight: 700;
  color: #fff;
}

.htrust-lbl {
  font-size: 11px;
  color: rgba(255, 255, 255, 0.55);
  letter-spacing: 0.05em;
  text-transform: uppercase;
}

.hero-visual img {
  width: 100%;
  border-radius: 24px;
  box-shadow: 0 24px 64px rgba(0, 0, 0, 0.35);
  display: block;
}

.hero-wave {
  margin-top: auto;
}

.hero-wave svg {
  display: block;
  width: 100%;
}

/* ===== LOGOS ===== */
#logos {
  padding: 36px 0;
  background: #fff;
  border-top: 1px solid var(--slate200);
  border-bottom: 1px solid var(--slate200);
}
.logos-inner {
  display: inline-flex;
  list-style: none;
  margin: 0;
  padding: 5px 0;
  vertical-align: middle;
  width: 100%;
  text-align: left;
  align-items: center;
}

.logo-item img {
    display: inline-block;
    line-height: 20px;
    margin: 0 20px;
    width: 80%;
}

/* ===== PAIN ===== */
#pain {
  padding: 96px 0;
  background: #fff;
}

.pain-card {
  border-radius: 16px;
  padding: 28px 24px;
  border: 1.5px solid #fee2e2;
  background: #fffbfb;
  transition:
    transform 0.25s,
    box-shadow 0.25s;
  height: 100%;
}

.pain-card:hover {
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(239, 68, 68, 0.1);
}

.pain-ic {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: #fee2e2;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}
.pain-ic img{
    width: 30px;
    height: 30px;
}
.pain-ic svg {
  width: 20px;
  height: 20px;
  color: #ef4444;
}

.pain-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.pain-card p {
  font-size: 13px;
  color: var(--slate500);
  line-height: 1.6;
}

.pain-tag {
  display: inline-block;
  margin-top: 12px;
  font-size: 11px;
  padding: 3px 10px;
  border-radius: 100px;
  background: #fee2e2;
  color: #dc2626;
  font-weight: 600;
}

/* ===== SOLUTION ===== */
#solution {
  padding: 96px 0;
  background: var(--slate50);
}

.ba-wrap {
  border-radius: 16px;
  overflow: hidden;
  border: 1px solid var(--slate200);
  box-shadow: 0 8px 32px rgba(0, 0, 0, 0.06);
}

.ba-col {
  padding: 28px 22px;
}

.ba-before {
  background: #fff;
  border-right: 1px solid var(--slate200);
}

.ba-after {
  background: var(--b50);
  padding-right: 10px;
}

.ba-hd {
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  margin-bottom: 16px;
}

.ba-before .ba-hd {
  color: #ef4444;
}

.ba-after .ba-hd {
  color: var(--b600);
}

.ba-row {
  display: flex;
  align-items: flex-start;
  gap: 8px;
  font-size: 12.5px;
  color: var(--slate500);
  margin-bottom: 9px;
  line-height: 1.5;
}

.ba-x {
  color: #ef4444;
  font-weight: 700;
  flex-shrink: 0;
}

.ba-ok {
  color: var(--b600);
  font-weight: 700;
  flex-shrink: 0;
}

.sol-pill {
  padding: 6px 14px;
  border-radius: 100px;
  border: 1px solid var(--b200);
  font-size: 12px;
  color: var(--b700);
  background: var(--b50);
  font-weight: 600;
  display: inline-block;
  margin: 4px 4px 4px 0;
}

/* ===== SERVICES ===== */
#services {
  padding: 96px 0;
  background: #fff;
}

.svc-card {
  background: #fff;
  border: 1px solid var(--slate200);
  border-radius: 16px;
  padding: 28px 22px;
  transition: all 0.25s;
  cursor: pointer;
  height: 100%;
}


.svc-card:hover {
  border-color: var(--b400);
  box-shadow: 0 8px 28px rgba(37, 99, 235, 0.1);
  transform: translateY(-3px);
}
.svc-card img{
    width: 50px;
    height: 50px;
    border-radius: 12px;
    background: var(--b50);
    border: 1px solid var(--b200);
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 18px;
    padding:10px;
}
.svc-ic {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--b50);
  border: 1px solid var(--b200);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
}

.svc-ic svg {
  width: 22px;
  height: 22px;
  color: var(--b600);
}

.svc-card h3 {
  font-size: 1.1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 8px;
}

.svc-card p {
  font-size: 12.5px;
  color: var(--slate500);
  line-height: 1.6;
  margin-bottom: 14px;
}

.svc-more {
  font-size: 12px;
  color: var(--b600);
  font-weight: 700;
  opacity: 0;
  transition: opacity 0.2s;
}

.svc-card:hover .svc-more {
  opacity: 1;
}

/* ===== HOW IT WORKS ===== */
#howworks {
  padding: 96px 0;
  background: var(--b900);
}

.hw-tabs {
  display: flex;
  justify-content: center;
  gap: 8px;
  flex-wrap: wrap;
  margin-bottom: 48px;
}

.hw-tab {
  padding: 10px 20px;
  border-radius: 100px;
  border: 1px solid rgba(255, 255, 255, 0.2);
  background: transparent;
  color: rgba(255, 255, 255, 0.6);
  font-size: 13px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: "Plus Jakarta Sans", sans-serif;
}

.hw-tab.active,
.hw-tab:hover {
  background: var(--b600);
  border-color: var(--b500);
  color: #fff;
}

.hw-panel {
  display: none;
}

.hw-panel.active {
  display: block;
}

.hw-step {
  display: flex;
  gap: 16px;
  margin-bottom: 28px;
  /* opacity: 0.45; */
  transition: opacity 0.3s;
}

.hw-step.current {
  opacity: 1;
}

.hw-step-num {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1rem;
  font-weight: 700;
  color: #fff;
  flex-shrink: 0;
}

.hw-step.current .hw-step-num {
  background: var(--b500);
  border-color: var(--b400);
}

.hw-step-body h3 {
  font-size: 15px;
  font-weight: 600;
  color: #fff;
  margin-bottom: 5px;
}

.hw-step-body p {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.6);
  line-height: 1.6;
}

.hw-viz {
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 16px;
  padding: 28px;
  min-height: 280px;
}

.hw-viz-inner {
  display: none;
}

.hw-viz-inner.active {
  display: block;
}

.logic-flow {
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.lf-node {
  background: rgba(255, 255, 255, 0.08);
  border: 1px solid rgba(255, 255, 255, 0.12);
  border-radius: 10px;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
}

.lf-node.highlight {
  background: rgba(59, 130, 246, 0.2);
  border-color: var(--b400);
}

.lf-num {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  background: var(--b600);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 11px;
  font-weight: 800;
  color: #fff;
  flex-shrink: 0;
}

.lf-text {
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.9);
}

.lf-arrow {
  text-align: center;
  color: rgba(255, 255, 255, 0.25);
  font-size: 16px;
  margin: -2px 0;
}

.cost-bars {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.cost-row {
  display: flex;
  align-items: center;
  gap: 12px;
}

.cost-lbl {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.6);
  width: 80px;
  flex-shrink: 0;
}

.cost-bar-bg {
  flex: 1;
  height: 10px;
  background: rgba(255, 255, 255, 0.08);
  border-radius: 5px;
  overflow: hidden;
}

.cost-bar-fill {
  height: 100%;
  border-radius: 5px;
  transition: width 1s ease;
}

.cost-val {
  font-size: 12px;
  font-weight: 700;
  color: #fff;
  width: 36px;
  text-align: right;
  flex-shrink: 0;
}

.sec-items {
  display: flex;
  flex-direction: column;
  gap: 10px;
}

.sec-item {
  display: flex;
  align-items: center;
  gap: 12px;
  background: rgba(255, 255, 255, 0.06);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 10px;
  padding: 12px 16px;
}

.sec-dot {
  width: 10px;
  height: 10px;
  border-radius: 50%;
  flex-shrink: 0;
}

.sec-lbl {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.85);
  flex: 1;
}

.sec-status {
  font-size: 11px;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 100px;
}

.sec-ok {
  background: rgba(34, 197, 94, 0.15);
  color: #4ade80;
}

.sec-warn {
  background: rgba(234, 179, 8, 0.12);
  color: #fcd34d;
}

.deploy-steps {
  display: flex;
  flex-direction: column;
  gap: 8px;
}

.dep-step {
  display: flex;
  align-items: center;
  gap: 12px;
  font-size: 12px;
  color: rgba(255, 255, 255, 0.7);
  padding: 10px 14px;
  background: rgba(255, 255, 255, 0.05);
  border: 1px solid rgba(255, 255, 255, 0.08);
  border-radius: 10px;
}

.dep-icon {
  width: 20px;
  height: 20px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  font-size: 10px;
  font-weight: 800;
}

.dep-done {
  background: var(--b600);
  color: #fff;
}

.dep-run {
  background: rgba(250, 204, 21, 0.2);
  color: #fcd34d;
}

.dep-wait {
  background: rgba(255, 255, 255, 0.1);
  color: rgba(255, 255, 255, 0.4);
}

.dep-bar {
  flex: 1;
  height: 4px;
  background: rgba(255, 255, 255, 0.1);
  border-radius: 2px;
  overflow: hidden;
}

.dep-prog {
  height: 100%;
  border-radius: 2px;
  background: var(--b400);
}

/* ===== METRICS ===== */
#metrics {
  padding: 0;
  background: var(--b600);
}

.metrics-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1px;
  background: rgba(255, 255, 255, 0.15);
}

@media (max-width: 700px) {
  .metrics-inner {
    grid-template-columns: 1fr 1fr;
  }
}

.metric-block {
  background: var(--b600);
  padding: 40px 28px;
  text-align: center;
}

.metric-n {
  font-size: 3rem;
  font-weight: 700;
  color: #fff;
  line-height: 1;
}

.metric-u {
  font-size: 28px;
  vertical-align: super;
}

.metric-l {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.65);
  margin-top: 8px;
  font-weight: 500;
}

/* ===== ARCHITECTURE ===== */
#arch {
  padding: 96px 0;
  background: var(--slate50);
}

.arch-box {
  background: #fff;
  border: 1px solid var(--slate200);
  border-radius: 24px;
  padding: 48px;
  margin-top: 48px;
  box-shadow: 0 4px 24px rgba(0, 0, 0, 0.05);
}

.arch-tier-lbl {
  cusor: pointer;
  font-size: 11px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.08em;
  color: var(--slate400);
  text-align: center;
  margin-bottom: 14px;
}

.arch-row {
  display: flex;
  justify-content: center;
  align-items: center;
  gap: 10px;
  flex-wrap: wrap;
  margin-bottom: 12px;
}

.arch-node {
  padding: 10px 18px;
  border-radius: 10px;
  border: 1px solid var(--slate200);
  background: #fff;
  font-size: 13px;
  font-weight: 600;

  align-items: center;
  gap: 7px;
  transition: all 0.2s;
}

.arch-node img{
    width: 50px!important;
    height: auto;
    display:block;
    margin:0 auto
}

.arch-node p{
    text-align:center;
    margin-top:10px;
    margin-bottom:0;
}
.arch-node:hover {
  border-color: var(--b400);
  color: var(--b700);
  background: var(--b50);
}

.arch-node.hub {
  background: var(--b600);
  color: #fff;
  border: none;
  font-size: 14px;
  padding: 14px 32px;
  box-shadow: 0 4px 16px rgba(37, 99, 235, 0.3);
}

.arch-node .nd {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  flex-shrink: 0;
}

.arch-divider {
  border: none;
  border-top: 1px dashed var(--slate200);
  margin: 18px 0;
}

#solution,
#arch,
#process,
#compare,
#lead,
#cases,
#pain,
#services,
#howworks,
#testi,
#faq {
  padding: 2.5rem 0;
  background: var(--slate50);
}

/* ===== CASES ===== */
#cases {
  padding: 96px 0;
  background: #fff;
}

.case-card {
  border-radius: 16px;
  border: 1px solid var(--slate200);
  padding: 32px;
  background: #fff;
  transition: all 0.25s;
  overflow: hidden;
  position: relative;
  height: 100%;
}

.case-card::before {
  content: "";
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--b600);
}

.case-card:hover {
  border-color: var(--b300);
  box-shadow: 0 12px 36px rgba(37, 99, 235, 0.1);
  transform: translateY(-3px);
}

.case-logo {
  width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--b50);
  border: 1px solid var(--b200);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 14px;
  color: var(--b700);
  margin-bottom: 22px;
}

.case-industry {
  font-size: 11px;
  text-transform: uppercase;
  letter-spacing: 0.07em;
  color: var(--slate400);
  font-weight: 600;
  margin-bottom: 8px;
}

.case-card h3 {
  font-size: 16px;
  font-weight: 700;
  color: var(--ink);
  margin-bottom: 10px;
}

.case-card p {
  font-size: 13px;
  color: var(--slate500);
  line-height: 1.65;
  margin-bottom: 20px;
}

.case-r {
  background: var(--b50);
  border: 1px solid var(--b200);
  border-radius: 10px;
  padding: 7px 12px;
  font-size: 12px;
  font-weight: 700;
  color: var(--b700);
  display: inline-block;
  margin: 2px;
}

/* ===== PROCESS ===== */
#process {
  /* padding: 96px 0; */
  background: var(--slate50);
}

.ps-circle {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  background: #fff;
  border: 2px solid var(--b300);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 20px;
  font-size: 18px;
  font-weight: 800;
  color: var(--b700);
  box-shadow: 0 0 0 6px var(--b50);
}
.process-step h3 {
  font-size: 1.3rem;
  font-weight: 700;
  margin-bottom: 8px;
}

.ps-ic {
  font-size: 16px;
  margin-bottom: 6px;
  text-align: center;
}

.process-step {
  padding: 0 24px;
  text-align: center;
  border-right: 1px solid var(--slate200);
}

.process-step:last-child {
  border-right: none;
}

/* ===== COMPARE ===== */
#compare {
  /* padding: 96px 0; */
  background: #fff;
}

.compare-wrap {
  overflow-x: auto;
  margin-top: 48px;
  border-radius: 16px;
  border: 1px solid var(--slate200);
  box-shadow: 0 4px 16px rgba(0, 0, 0, 0.05);
}

.ctable {
  width: 100%;
  border-collapse: collapse;
  min-width: 640px;
}

.ctable th {
  background: var(--slate900);
  color: #fff;
  padding: 16px 20px;
  font-size: 13px;
  font-weight: 700;
  text-align: left;
}

.ctable th.hl {
  background: var(--b700);
}

.ctable td {
  padding: 14px 20px;
  font-size: 13px;
  border-bottom: 1px solid var(--slate100);
  color: var(--slate600);
}

.ctable tr:last-child td {
  border-bottom: none;
}

.ctable td.hl {
  background: var(--b50);
  color: var(--ink);
  font-weight: 600;
}

.ctable tr:hover td {
  background: var(--slate50);
}

.ctable tr:hover td.hl {
  background: var(--b100);
}

.ck {
  color: #16a34a;
  font-weight: 700;
  font-size: 14px;
}

.cx {
  color: #dc2626;
  font-size: 14px;
}

.cp {
  color: var(--slate400);
}

/* ===== LEAD/CTA ===== */
#lead {
  /* padding: 96px 0; */
  background: var(--slate900);
}

/* ===== TESTIMONIALS ===== */
#testi {
  /* padding: 96px 0; */
  background: var(--slate50);
}

.tcard {
  background: #fff;
  border: 1px solid var(--slate200);
  border-radius: 16px;
  padding: 30px;
  transition: all 0.25s;
  height: 100%;
}

.tcard:hover {
  border-color: var(--b300);
  box-shadow: 0 8px 24px rgba(37, 99, 235, 0.08);
  transform: translateY(-2px);
}

.tstars {
  color: #f59e0b;
  font-size: 13px;
  margin-bottom: 14px;
}

.tq {
  font-size: 14px;
  color: var(--slate600);
  line-height: 1.75;
  margin-bottom: 22px;
  /* font-style: italic; */
}

.tavatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background: var(--b700);
  display: flex;
  align-items: center;
  justify-content: center;
  font-weight: 800;
  font-size: 13px;
  color: #fff;
  flex-shrink: 0;
}

.tname {
  font-size: 14px;
  font-weight: 700;
  color: var(--ink);
   margin-bottom:5px;
}


.trole {
  font-size: 12px;
  color: var(--slate500);
   margin-bottom:0;
}

/* ===== FAQ ===== */
#faq {
  /* padding: 96px 0; */
  background: #fff;
}

.fitem {
  border: 1px solid var(--slate200);
  border-radius: 10px;
  margin-bottom: 10px;
  /* overflow: hidden; */
  transition: border-color 0.2s;
}

.fitem.open {
  border-color: var(--b300);
}

.fq {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: 18px 22px;
  cursor: pointer;
  font-size: 15px;
  font-weight: 600;
  color: var(--ink);
  background: #fff;
  transition: background 0.2s;
  user-select: none;
}

.fitem.open .fq {
  background: var(--b50);
  color: var(--b700);
}

.ficon {
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background: var(--slate100);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  color: var(--slate500);
  flex-shrink: 0;
  transition: all 0.3s;
}

.fitem.open .ficon {
  background: var(--b100);
  color: var(--b700);
  transform: rotate(45deg);
}

.faq-answer {
  font-size: 14px;
  color: var(--slate500);
  line-height: 1.75;
  max-height: 0;
  overflow: hidden;
  transition:
    max-height 0.35s ease,
    padding 0.3s;
}

.fitem.open .faq-answer {
  max-height: 200px;
  padding: 0 22px 20px;
}

/* ===== FINAL CTA ===== */
#finalcta {
  padding: 96px 0;
  background: var(--slate900);
}

.ct-ic {
  width: 16px;
  height: 16px;
  border-radius: 50%;
  background: rgba(34, 197, 94, 0.2);
  display: flex;
  align-items: center;
  justify-content: center;
}

.ct-ic svg {
  width: 9px;
  height: 9px;
  color: #4ade80;
}

@media only screen and (max-width: 768px) {
  .hero-h1 {
    font-size: 2.5rem;
    font-weight: 700;
    color: #fff;
  }
  .section-h {
    font-size: 2rem;
    font-weight: 600;
    color: var(--ink);
    margin-bottom: 14px;
  }
}

/* Dashboard Card */
.hero-inner{display:flex;align-items:center;gap:48px;}
.hero-left{flex:1;min-width:0;}
.hero-right{flex:0 0 460px;max-width:460px;}

.dash-card{background:rgba(255,255,255,0.07);border:1px solid rgba(255,255,255,0.15);border-radius:20px;overflow:hidden;backdrop-filter:blur(10px);}
.dash-topbar{background:rgba(0,0,0,0.2);padding:12px 16px;display:flex;align-items:center;gap:8px;}
.dash-dot{width:10px;height:10px;border-radius:50%;}
.dash-title{font-size:12px;color:rgba(255,255,255,0.6);font-family:monospace;margin-left:8px;}
.dash-body{padding:16px;}
.dash-grid{display:grid;grid-template-columns:1fr 1fr;gap:10px;margin-bottom:10px;}
.dash-metric{background:rgba(255,255,255,0.06);border:1px solid rgba(255,255,255,0.1);border-radius:12px;padding:14px;}
.dash-metric-lbl{font-size:10px;color:rgba(255,255,255,0.45);letter-spacing:.08em;text-transform:uppercase;margin-bottom:6px;}
.dash-metric-val{font-size:22px;font-weight:800;margin-bottom:4px;}
.dash-metric-sub{font-size:11px;}
.dash-green{color:#22c55e;}
.dash-yellow{color:#f59e0b;}
.dash-blue{color:#60a5fa;}

.dash-bar-section{background:rgba(255,255,255,0.06);border:1px solid rgba(255,255,255,0.1);border-radius:12px;padding:14px;}
.dash-bar-lbl{font-size:10px;color:rgba(255,255,255,0.45);letter-spacing:.08em;text-transform:uppercase;margin-bottom:12px;}
.dash-bars{display:flex;align-items:flex-end;gap:5px;height:50px;}
.dash-bar{flex:1;border-radius:4px 4px 0 0;background:rgba(96,165,250,0.5);}
.dash-bar.red{background:#ef4444;}
.dash-dots-row{display:flex;gap:16px;margin-top:12px;}
.dash-dot-item{display:flex;align-items:center;gap:5px;font-size:11px;color:rgba(255,255,255,0.6);}
.dash-dot-green{width:7px;height:7px;border-radius:50%;background:#22c55e;display:inline-block;}

@media(max-width:991px){
  .hero-inner{flex-direction:column;}
  .hero-right{flex:0 0 100%;max-width:100%;width:100%;}
}
.tavatar-img{
  width:100%;
  height:100%;
  object-fit:cover;
  border-radius:50%;
}
/* why choose us section  */
.ai-leader {
  position: relative;
  color: #0b1220;
  font-family:
    Inter,
    system-ui,
    -apple-system,
    Segoe UI,
    Roboto,
    Arial,
    sans-serif;
  overflow: hidden;
}

/* Gradient band */
.ai-leader__band {
  background:  linear-gradient(90deg, #7312CC 0%, #1B68C0 100%);
  padding: 56px 0 120px;
  /* extra bottom to allow overlap */
  color: #fff;
}

.ai-leader__title {
  font-weight: 500;
  font-size: 2.5rem;
  line-height: 1.25;
  margin: 0 0 10px;
}

.ai-leader__sub {
  font-size: 15px;
}

/* Cards wrap overlaps gradient */
.ai-leader__cards {
  margin-top: -92px;
  /* pull cards into the band */
  padding-bottom: 24px;
}

/* ===== Feature card ===== */
.ai-feature-card {
  background: #ffffff;
  border-radius: 16px;
  box-shadow:
    0 12px 30px rgba(2, 6, 23, 0.1),
    inset 0 0 0 1px rgba(2, 6, 23, 0.05);
  border: 1px solid rgba(2, 6, 23, 0.06);
  padding: 1.4rem;
  display: flex;
  flex-direction: column;
  transition:
    transform 0.15s ease,
    box-shadow 0.15s ease;
}

.ai-feature-card:hover {
  /* transform: translateY(-2px); */
  box-shadow:
    0 18px 42px rgba(2, 6, 23, 0.16),
    inset 0 0 0 1px rgba(2, 6, 23, 0.06);
}

/* Image card */
.ai-feature-card--image {
  padding: 0;
  overflow: hidden;
}

.ai-feature-card--image img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  aspect-ratio: 4 / 3;
  /* keeps a nice height; remove if not needed */
}

/* Text cards */
.ai-feature-card--text {
  position: relative;
  padding-left: 24px;
  /* space for accent bar */
}

.ai-feature-card:before {
  content: "";
  position: absolute;
  top: 0;
  left: 13px;
  bottom: 0;
  height: 70px;
  background: linear-gradient(90deg, var(--brand-a), var(--brand-b));
  width: 10px;
  margin-bottom: auto;
  margin-top: auto;
  border-radius: 20px;
}

.ai-feature-card__title {
  font-size: 1.2rem;
  font-weight: 500;
  color: #0b1220;
  margin: 0 0 6px;
}

.ai-feature-card__desc {
  font-size: 15px;
  color: #4b5563;
  line-height: 1.55;
  margin: 0;
}

/* Small tweaks for tablets/phones */
@media (max-width: 991.98px) {
  .ai-leader__band {
    padding-bottom: 110px;
  }
}

/* ============ 1. COMPARE TABLE — column widths ============ */
.pes-dxb-col-28 { width: 28% !important; }
.pes-dxb-col-24 { width: 24% !important; }

.ctable {
  table-layout: fixed !important;   /* forces the % widths to apply     */
}
.ctable th,
.ctable td {
  word-wrap: break-word !important;
  vertical-align: top !important;
}

/* on small screens let the table scroll naturally instead of squeezing */
@media (max-width: 767px) {
  .ctable { table-layout: auto !important; }
}

/* ============ 2. LEAD / CTA SECTION (dark bg) ============ */
.pes-dxb-lead-section {
  padding: 96px 0 !important;
  background: var(--slate900) !important;
}

.pes-dxb-lead-badge {
  display: inline-block !important;
  padding: 6px 16px !important;
  border-radius: 100px !important;
  background: rgba(59, 130, 246, 0.15) !important;
  border: 1px solid rgba(59, 130, 246, 0.4) !important;
  color: #93c5fd !important;
  font-size: 12px !important;
  font-weight: 700 !important;
  letter-spacing: 0.06em !important;
  text-transform: uppercase !important;
  margin-bottom: 18px !important;
}

.pes-dxb-white-text { color: #fff !important; }

.pes-dxb-lead-para {
  font-size: 16px !important;
  color: rgba(255, 255, 255, 0.7) !important;
  line-height: 1.75 !important;
  max-width: 760px !important;
  margin: 0 auto 32px !important;
}

/* gap utilities used across CTA + testimonials */
.pes-dxb-gap-12 { gap: 12px !important; }
.pes-dxb-gap-14 { gap: 14px !important; }
.pes-dxb-gap-24 { gap: 24px !important; }

/* large CTA button variant */
.pes-dxb-btn-lg {
  padding: 15px 32px !important;
  font-size: 15px !important;
}

/* trust points row */
.pes-dxb-trust-item {
  font-size: 13px !important;
  color: rgba(255, 255, 255, 0.65) !important;
  gap: 8px !important;
  font-weight: 500 !important;
}

.pes-dxb-trust-icon {
  width: 16px !important;
  height: 16px !important;
  border-radius: 50% !important;
  background: rgba(34, 197, 94, 0.2) !important;
  display: flex !important;
  align-items: center !important;
  justify-content: center !important;
  flex-shrink: 0 !important;
  margin-right: 8px !important;
}

.pes-dxb-trust-svg {
  width: 9px !important;
  height: 9px !important;
  color: #4ade80 !important;
}

/* ============ 3. SOLUTION SECTION ============ */

/* --- 3a. ba-row fix: Part-1's ".ba-row { display:flex }" was splitting
   the <strong> label away from its text. Force block layout here.     */
#solution .ba-row {
  display: block !important;
  font-size: 13px !important;
  color: var(--slate600) !important;
  line-height: 1.7 !important;
  margin-bottom: 12px !important;
}

#solution .ba-row strong {
  color: var(--ink) !important;
  font-weight: 700 !important;
  display: inline !important;
}

/* --- 3b. LEFT card: full content visible, no scroll, no collapse --- */
#solution .outer-row { align-items: flex-start !important; }

#solution .ba-wrap {
  height: auto !important;
  margin-bottom: 0 !important;
}

#solution .left-col .ba-col {
  max-height: none !important;
  overflow: visible !important;
}

/* --- 3c. RIGHT column: scrollable, equal height to left card ------- */
/* --pes-sol-h is set dynamically by the JS snippet below so the right
   column always matches the left card's exact height. 620px is only
   the fallback if JS hasn't run yet.                                  */
#solution .right-col {
  position: static !important;          /* sticky off — scroll instead  */
  max-height: var(--pes-sol-h, 620px);
  overflow-y: auto !important;
  padding-right: 16px !important;       /* breathing room for scrollbar */
  scroll-behavior: smooth !important;
  /* Firefox scrollbar */
  scrollbar-width: thin;
  scrollbar-color: var(--b400) var(--slate100);
}

/* Animated custom scrollbar (Chrome / Edge / Safari) */
#solution .right-col::-webkit-scrollbar {
  width: 8px;
}

#solution .right-col::-webkit-scrollbar-track {
  background: var(--slate100);
  border-radius: 10px;
  margin: 8px 0;
}

#solution .right-col::-webkit-scrollbar-thumb {
  border-radius: 10px;
  background: linear-gradient(180deg, var(--b300) 0%, var(--b600) 50%, var(--b300) 100%);
  background-size: 100% 300%;
  animation: pesDxbScrollFlow 3s ease-in-out infinite;
  border: 1px solid var(--slate100);
}

#solution .right-col::-webkit-scrollbar-thumb:hover {
  background: var(--b700);
  animation: none;
}

@keyframes pesDxbScrollFlow {
  0%, 100% { background-position: 0% 0%; }
  50%      { background-position: 0% 100%; }
}

@media (prefers-reduced-motion: reduce) {
  #solution .right-col::-webkit-scrollbar-thumb { animation: none; }
}

/* mobile / tablet: stacked layout — remove the cap, no scroll needed */
@media (max-width: 991px) {
  #solution .right-col {
    max-height: none !important;
    overflow-y: visible !important;
    padding-right: 0 !important;
  }
}

/* ============ 4. PROCESS STEP DESCRIPTION ============ */
.pes-dxb-step-desc {
  font-size: 13.5px !important;
  color: var(--slate500) !important;
  line-height: 1.7 !important;
  margin-bottom: 0 !important;
}

