: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;
}
html,
body{
    overflow-x:hidden;
}

/* 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: 880px;
  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);
}
.icon-small{
    width:50px!important;
    height:50px!important;
}
.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;
}
/* Row ko top-align karo instead of center */
#solution .row.align-items-center {
  align-items: flex-start;
}

/* Right side ko scrollable banao, left ke barabar height rakhne ke liye */
#solution .col-lg-6.pl-lg-5 {
  max-height: 560px;      /* left side ki approx height ke hisaab se adjust kar lena */
  overflow-y: auto;
  padding-right: 16px;
}

/* Firefox scrollbar */
#solution .col-lg-6.pl-lg-5 {
  scrollbar-width: thin;
  scrollbar-color: var(--b500, #3b82f6) var(--slate100, #f1f5f9);
}

/* Chrome/Edge/Safari animated scrollbar */
#solution .col-lg-6.pl-lg-5::-webkit-scrollbar {
  width: 6px;
}

#solution .col-lg-6.pl-lg-5::-webkit-scrollbar-track {
  background: var(--slate100, #f1f5f9);
  border-radius: 10px;
}

#solution .col-lg-6.pl-lg-5::-webkit-scrollbar-thumb {
  background: linear-gradient(180deg, var(--b400, #60a5fa), var(--b600, #2563eb));
  background-size: 100% 200%;
  border-radius: 10px;
  animation: sgfoScrollPulse 2s ease-in-out infinite;
}
@media (max-width: 767.98px) {
    .sgfo-hero-kpi-row {
        display: flex;
        flex-direction: column;
        gap: 15px;
    }

    .sgfo-hero-kpi-row .htrust {
        width: 100%;
        max-width: 100%;
        flex: 0 0 100%;
    }
}
@keyframes sgfoScrollPulse {
  0%, 100% { background-position: 0 0%; }
  50% { background-position: 0 100%; }
}
/* ===== SERVICES ===== */
#services {
  padding: 30px 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: 100px;
    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%;
}
/* ==========================================================================
   SISGAIN — FinOps Services (Dubai) — Custom / Extracted Styles
   All rules use !important and unique "sgfo-" prefixed class names so
   nothing here can be overridden by, or override, the existing site
   stylesheets (navbar.css, footer.css, infrastructure-management.css,
   form_popup.css). This file only ADDS classes — it does not touch any
   existing selector from those files.
   ========================================================================== */

/* ---- Breadcrumb (moved out of inline <style> block in <head>) ---- */
.sgfo-breadcrumb-wrap {
    background: #F8FAFC !important;
    padding: 12px 0 !important;
    border-bottom: 1px solid #E2E8F0 !important;
}

.sgfo-breadcrumb {
    background: transparent !important;
    margin: 0 !important;
    padding: 0 !important;
}

.sgfo-breadcrumb-item a {
    color: #2563EB !important;
    font-size: 13px !important;
}

.sgfo-breadcrumb-item.sgfo-active {
    color: #64748B !important;
    font-size: 13px !important;
}

/* ---- Hero KPI cards ---- */
.sgfo-hero-kpi-row {
    gap: 18px !important;
}

/* ---- Trusted-by / logos section ---- */
.sgfo-logos-section {
    padding: 36px 0 !important;
    background: var(--slate50) !important;
    border-top: 1px solid var(--slate200) !important;
    border-bottom: 1px solid var(--slate200) !important;
}

.sgfo-logos-heading {
    text-align: center !important;
    margin: 0 0 22px 0 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: .06em !important;
    text-transform: uppercase !important;
    color: var(--slate500) !important;
}

/* ---- Pain / challenge card icons ---- */
.sgfo-pain-icon-img {
    width: 24px !important;
    height: 24px !important;
    object-fit: contain !important;
}

/* ---- Solution section paragraph + pills wrapper ---- */
.sgfo-solution-desc {
    font-size: 15px !important;
    color: var(--slate500) !important;
    margin-bottom: 28px !important;
    line-height: 1.75 !important;
}

.sgfo-solution-pill-wrap {
    margin-bottom: 24px !important;
}

.sgfo-solution-subhead {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: var(--slate900) !important;
    margin: 0 0 10px 0 !important;
}

.sgfo-solution-narrative-p {
    font-size: 14.5px !important;
    color: var(--slate500) !important;
    line-height: 1.75 !important;
    margin-bottom: 16px !important;
}

/* ---- Process step description + last-item border removal ---- */
.sgfo-process-desc {
    font-size: 12.5px !important;
    color: var(--slate500) !important;
    line-height: 1.6 !important;
}

.sgfo-process-step-last {
    border-right: none !important;
}

/* ---- Comparison table column widths ---- */
.sgfo-th-primary {
    width: 24% !important;
}

.sgfo-th-col {
    width: 25.33% !important;
}

/* ---- Final CTA (dark lead) section ---- */
.sgfo-lead-badge {
    display: inline-flex !important;
    align-items: center !important;
    gap: 8px !important;
    padding: 6px 16px !important;
    background: rgba(255, 255, 255, .08) !important;
    border: 1px solid rgba(255, 255, 255, .15) !important;
    border-radius: 100px !important;
    font-size: 12px !important;
    font-weight: 600 !important;
    letter-spacing: .07em !important;
    text-transform: uppercase !important;
    color: rgba(255, 255, 255, .7) !important;
    margin-bottom: 28px !important;
}

.sgfo-lead-heading-white {
    color: #fff !important;
}

.sgfo-lead-desc {
    font-size: 17px !important;
    color: rgba(255, 255, 255, .6) !important;
    margin-bottom: 40px !important;
    line-height: 1.7 !important;
}

.sgfo-lead-btn-row {
    gap: 14px !important;
}

.sgfo-trust-row {
    gap: 24px !important;
}

.sgfo-trust-item {
    gap: 7px !important;
    font-size: 13px !important;
    color: rgba(255, 255, 255, .6) !important;
}

.sgfo-trust-icon-circle {
    width: 18px !important;
    height: 18px !important;
    border-radius: 50% !important;
    background: var(--b600) !important;
    display: flex !important;
    align-items: center !important;
    justify-content: center !important;
    flex-shrink: 0 !important;
}

.sgfo-trust-icon-svg {
    width: 9px !important;
    height: 9px !important;
    color: #fff !important;
}

/* ---- How-it-works / FinOps Intelligence dark section ---- */
.sgfo-howworks-eyebrow-dark {
    background: rgba(255, 255, 255, .08) !important;
    border-color: rgba(255, 255, 255, .2) !important;
    color: var(--b200) !important;
}

.sgfo-howworks-subtitle {
    color: rgba(255, 255, 255, .6) !important;
    font-size: 16px !important;
    max-width: 560px !important;
    margin: 0 auto !important;
}

.sgfo-viz-label {
    font-size: 11px !important;
    font-weight: 700 !important;
    text-transform: uppercase !important;
    letter-spacing: .07em !important;
    color: rgba(255, 255, 255, .45) !important;
    margin-bottom: 14px !important;
}

/* ---- Cost / utilization bars (data-driven widths & colors) ---- */
.sgfo-bar-billing { width: 82% !important; background: #3B82F6 !important; }
.sgfo-bar-allocation { width: 61% !important; background: #60A5FA !important; }
.sgfo-bar-optimization { width: 74% !important; background: #93C5FD !important; }
.sgfo-bar-monitoring { width: 48% !important; background: #BFDBFE !important; }
.sgfo-bar-savings { width: 60% !important; background: #4ADE80 !important; }
.sgfo-lbl-savings { color: #4ADE80 !important; }
.sgfo-val-savings { color: #4ADE80 !important; }

.sgfo-dot-ok { background: #4ADE80 !important; }
.sgfo-dot-warn { background: #FCD34D !important; }

.sgfo-dep-done-bar { width: 100% !important; }
.sgfo-dep-canary-bar { width: 62% !important; }
.sgfo-dep-wait-bar { width: 0% !important; }

.sgfo-dep-label { flex: 1 !important; }
.sgfo-dep-status-done { font-size: 11px !important; color: #4ADE80 !important; flex-shrink: 0 !important; }
.sgfo-dep-status-run { font-size: 11px !important; color: #FCD34D !important; flex-shrink: 0 !important; }
.sgfo-dep-status-wait { font-size: 11px !important; color: rgba(255, 255, 255, .3) !important; flex-shrink: 0 !important; }

/* ---- Architecture node accent dots ---- */
.sgfo-node-aws { background: #FF9900 !important; }
.sgfo-node-azure { background: #0089D6 !important; }
.sgfo-node-gcp { background: #4285F4 !important; }
.sgfo-node-onprem { background: var(--slate400) !important; }
.sgfo-node-purple { background: #8B5CF6 !important; }
.sgfo-node-cyan { background: #06B6D4 !important; }
.sgfo-node-amber { background: #F59E0B !important; }
.sgfo-node-green { background: #10B981 !important; }
.sgfo-node-pink { background: #EC4899 !important; }
.sgfo-node-red { background: #EF4444 !important; }
.sgfo-node-blue { background: var(--b500) !important; }

.sgfo-arch-caption {
    text-align: center !important;
    margin-top: 10px !important;
    color: var(--slate500) !important;
}

.sgfo-arch-tech-strip {
    text-align: center !important;
    margin-top: 18px !important;
    font-size: 12.5px !important;
    color: var(--slate500) !important;
    line-height: 1.9 !important;
}

/* ---- Testimonial cards ---- */
.sgfo-testi-card {
    display: flex !important;
    flex-direction: column !important;
    height: 100% !important;
}

.sgfo-testi-footer {
    gap: 12px !important;
    margin-top: auto !important;
}

/* ---- KPI strip (AED 40M+ / 32% / 95%+ / ±5%) ---- */
.sgfo-kpistrip-note {
    text-align: center !important;
    color: var(--slate500) !important;
    font-size: 12.5px !important;
    margin-top: 8px !important;
}

/* ==========================================================================
   FIX: the theme's own trailing combined selector
   (#solution,#arch,#process,#compare,#lead,#cases,#pain,#services,
    #howworks,#testi,#faq { padding:2.5rem 0; background:var(--slate50); })
   sits at the very end of cloud-migration-services.css and silently
   overwrites the padding (and, for sections without an inline background,
   the background) that each section's own rule set earlier in the file.
   These !important, id-specific fixes restore the intended spacing/colors
   for every section without editing the original stylesheet.
   ========================================================================== */

#pain {
    background: #fff !important;
    padding: 30px 0 !important;
}

#solution {
    background: var(--slate50) !important;
    padding: 30px 0 !important;
}

#services {
    background: #fff !important;
    padding: 30px 0 !important;
}

#howworks {
    background: var(--b900) !important;
    padding: 30px 0 !important;
}

#metrics {
    background: var(--b600) !important;
    padding: 0 !important;
}

#arch {
    background: var(--slate50) !important;
    padding: 30px 0 !important;
}

#process {
    background: var(--slate50) !important;
    padding: 2.5rem 0 !important;
}

#compare {
    background: #fff !important;
    padding: 30px 0 !important;
}

#lead {
    background: var(--slate900) !important;
    padding: 30px 0 !important;
}

#testi {
    background: var(--slate50) !important;
    padding: 30px 0 !important;
}

#faq {
    background: #fff !important;
    padding: 30px 0 !important;
}

/* ---- Elements referenced by the new FinOps content that had no rule
        anywhere in the base stylesheet ---- */

/* Solution section: sub-heading + narrative paragraphs sit between the
   eyebrow/H2 and the pill list — the base sheet only styled the pills. */
.sgfo-solution-subhead {
    font-size: 14px !important;
    font-weight: 700 !important;
    color: var(--slate900) !important;
    margin: 0 0 10px 0 !important;
    letter-spacing: normal !important;
}

/* KPI strip caption line under the 4 metric blocks (new, not in base CSS) */
#metrics {
    position: relative !important;
}

.sgfo-kpistrip-note {
    text-align: center !important;
    color: rgba(255, 255, 255, .65) !important;
    font-size: 12.5px !important;
    margin: 10px 0 0 0 !important;
    padding-bottom: 24px !important;
}

/* Architecture layer caption (between the hub button and Layer 3 heading) */
.sgfo-arch-caption {
    text-align: center !important;
    max-width: 620px !important;
    margin: 10px auto 0 auto !important;
    color: var(--slate500) !important;
    font-size: 13.5px !important;
    line-height: 1.6 !important;
}

/* Technology ecosystem strip at the bottom of the architecture card */
.sgfo-arch-tech-strip {
    text-align: center !important;
    margin: 22px 0 0 0 !important;
    padding-top: 18px !important;
    border-top: 1px dashed var(--slate200) !important;
    font-size: 12.5px !important;
    color: var(--slate500) !important;
    line-height: 1.9 !important;
    letter-spacing: .01em !important;
}

/* Hero KPI row: base CSS never defined a gap for the flex-wrap row
   (only for individual .htrust cells), so cards touched on some widths */
.sgfo-hero-kpi-row {
    gap: 18px !important;
    row-gap: 22px !important;
}

/* Trusted-by heading had no rule at all in the base sheet */
.sgfo-logos-heading {
    text-align: center !important;
    margin: 0 0 22px 0 !important;
    font-size: 13px !important;
    font-weight: 700 !important;
    letter-spacing: .06em !important;
    text-transform: uppercase !important;
    color: var(--slate500) !important;
}