/* ============================================================
   VELOQO – AI Computer Vision Infographic UI
   Shared design system for Warehouse + Retail Suite pages
   ============================================================ */


/* The infographic "sheet" – full screen */
.sheet {
  width: 100%;
  max-width: 100%;
  margin: 0;
  background: #ffffff;
  overflow: hidden;
  padding:142px 0 0;
}
.sheet--wide{
  padding:135px 0 0;    
}

.sheet--wide {
  max-width: 100%;
}

.wrap { padding: 0 26px; }

/* Gradient text helper */
.grad-text {
  background: linear-gradient(100deg, #1e63d8 0%, #2fbef0 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  color: transparent;
}

/* ============================================================
   LOGO
   ============================================================ */
.brand { display: flex; align-items: center; gap: 12px; }

.brand-pin {
  width: 46px;
  height: 46px;
  display: grid;
  place-items: center;
  font-size: 40px;
  line-height: 1;
  flex-shrink: 0;
}
.brand-pin i {
  background: linear-gradient(150deg, #2fbef0 0%, #1e63d8 60%, #103166 100%);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}
.brand-name {
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
  font-weight: 800;
  letter-spacing: 1px;
  line-height: 1;
}
.brand-name .nm {
  display: block;
  font-size: 30px;
  color: #0c2249;
}
.brand-name .tag {
  display: block;
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 2.5px;
  color: #2b7fff;
  margin-top: 4px;
  font-family: 'Inter', 'Segoe UI', sans-serif;
}

/* ============================================================
   HERO – WAREHOUSE PAGE
   ============================================================ */
.hero {
  display: grid;
  grid-template-columns: 0.92fr 1.08fr;
  background: #fff;
}

.hero-left { padding: 28px 0 24px 30px; }

.hero-left .brand { margin-bottom: 26px; }

.hero-title {
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
  font-weight: 800;
  font-size: clamp(30px, 5vw, 46px);
  line-height: 1.02;
  letter-spacing: -0.5px;
  text-transform: uppercase;
}
.hero-title .l1 { color: #0a1c3d; display: block; }
.hero-title .l2 { color: #1e63d8; display: block; }

.hero-sub {
  margin-top: 16px;
  font-size: 13.5px;
  color: #2c466a;
  font-weight: 500;
  max-width: 320px;
  line-height: 1.5;
}

/* hero image with detection overlays */
.hero-right {
  position: relative;
  min-height: 300px;
  background:
    linear-gradient(120deg, rgba(8,24,58,0.30), rgba(8,24,58,0.05)),
    url('https://images.unsplash.com/photo-1586528116311-ad8dd3c8310d?auto=format&fit=crop&w=1100&q=80') center/cover no-repeat,
    linear-gradient(135deg, #0a1c3d 0%, #103166 55%, #16407f 100%);
  clip-path: polygon(8% 0, 100% 0, 100% 100%, 0 100%);
}

.detect {
  position: absolute;
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.4px;
  color: #fff;
  padding: 3px 7px;
  border-radius: 3px;
  text-transform: uppercase;
  white-space: nowrap;
  box-shadow: 0 2px 8px rgba(0,0,0,0.3);
}
.detect::after {
  content: '';
  position: absolute;
  left: 6px;
  bottom: -22px;
  width: 70px;
  height: 44px;
  border: 2px solid currentColor;
  border-radius: 4px;
  opacity: 0.85;
  pointer-events: none;
}
.d-green { background: #169a52; }
.d-red { background: #d8332f; }
.d-orange { background: #e8771c; }
.d-blue { background: #1f6fe0; }
.d-green::after { color: #2fe487; }
.d-red::after { color: #ff5b56; }
.d-orange::after { color: #ffa44d; }
.d-blue::after { color: #4d9bff; }

.detect-cam {
  position: absolute;
  top: 14px;
  right: 16px;
  display: flex;
  align-items: center;
  gap: 6px;
  background: rgba(7,22,48,0.7);
  color: #cfe4ff;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.5px;
  padding: 5px 9px;
  border-radius: 20px;
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
}
.detect-cam i { color: #54d2ff; font-size: 13px; }

.detect-restricted {
  position: absolute;
  right: 18px;
  bottom: 26px;
  background: rgba(216,51,47,0.16);
  border: 1.5px solid #ff5b56;
  color: #ffd2d0;
  border-radius: 6px;
  padding: 8px 12px;
  text-align: center;
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
}
.detect-restricted .t { font-size: 9px; font-weight: 700; letter-spacing: 0.5px; }
.detect-restricted i { color: #ff5b56; font-size: 16px; display: block; margin-top: 2px; }

/* ============================================================
   FEATURE + DASHBOARD STRIP
   ============================================================ */
.intel-strip {
  display: grid;
  grid-template-columns: 0.88fr 1.42fr;
  gap: 22px;
  align-items: stretch;
  padding: 18px 26px 8px;
}

.feature-row {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  align-items: stretch;
  gap: 0;
}

.feature-pill {
  display: flex;
  flex-direction: column;
  align-items: center;
  justify-content: center;
  text-align: center;
  gap: 7px;
  min-height: 112px;
  padding: 10px 8px;
  border-right: 1px solid #dce6f5;
}

.feature-pill:first-child { border-left: 0; }
.feature-pill:last-child { border-right: 0; }

.feature-pill .fic {
  width: 42px; height: 42px;
  border-radius: 0;
  display: grid; place-items: center;
  background: transparent;
  color: #103166;
  font-size: 25px;
  border: 0;
}
.feature-pill span {
  font-size: 11px;
  font-weight: 700;
  color: #0c2249;
  line-height: 1.25;
}

.dash {
  margin: 0;
  background: linear-gradient(135deg, #0a1c3d 0%, #103166 55%, #16407f 100%);
  border-radius: 9px;
  padding: 14px 16px;
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  color: #fff;
  box-shadow: 0 8px 22px rgba(7, 22, 48, 0.22);
}
.dash-col + .dash-col { border-left: 1px solid rgba(255,255,255,0.18); padding-left: 14px; }
.dash-h {
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
  font-size: 9px;
  font-weight: 700;
  letter-spacing: 0.55px;
  color: #8fe5ff;
  text-transform: uppercase;
  margin-bottom: 7px;
}
.dash-small { font-size: 9px; color: #9db6da; }
.dash-big {
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
  font-size: 24px;
  font-weight: 800;
  line-height: 1;
  margin: 3px 0;
}
.dash-big .up { font-size: 10px; color: #34e08a; font-weight: 700; vertical-align: middle; }
.bars { display: flex; align-items: flex-end; gap: 3px; height: 30px; margin-top: 8px; }
.bars i {
  flex: 1;
  background: linear-gradient(180deg, #54d2ff, #1e63d8);
  border-radius: 2px 2px 0 0;
  display: block;
}

.donut {
  width: 68px; height: 68px; border-radius: 50%;
  display: grid; place-items: center;
  background: conic-gradient(#54d2ff 0 76%, rgba(255,255,255,0.12) 76% 100%);
  margin: 2px auto 0;
}
.donut span {
  width: 50px; height: 50px; border-radius: 50%;
  background: #0c2249;
  display: grid; place-items: center;
  font-family: 'Montserrat', 'Segoe UI', sans-serif; font-weight: 800; font-size: 17px;
}
.dash-center { text-align: center; }
.dash-center .lbl { font-size: 9px; color: #9db6da; margin-top: 6px; }

.alert-num {
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
  font-size: 28px; font-weight: 800;
  display: flex; align-items: center; gap: 8px;
}
.alert-num i { color: #e2403b; font-size: 24px; }
.view-all { font-size: 9px; color: #8fe5ff; margin-top: 10px; display: inline-block; }

.heatmap {
  height: 68px; border-radius: 8px; margin-top: 4px;
  background:
    radial-gradient(circle at 30% 40%, rgba(255,60,60,0.9), transparent 22%),
    radial-gradient(circle at 55% 60%, rgba(255,160,40,0.9), transparent 20%),
    radial-gradient(circle at 70% 35%, rgba(80,220,120,0.8), transparent 22%),
    radial-gradient(circle at 45% 30%, rgba(255,210,40,0.7), transparent 18%),
    linear-gradient(180deg, #0a2a55, #061a38);
  background-blend-mode: screen;
  border: 1px solid rgba(255,255,255,0.08);
}

/* ============================================================
   SECTION TITLES (centered with rule)
   ============================================================ */
.sec-title {
  text-align: center;
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
  font-weight: 800;
  font-size: 19px;
  letter-spacing: 1px;
  color: #0c2249;
  text-transform: uppercase;
  margin: 26px 0 18px;
  position: relative;
}
.sec-title::before, .sec-title::after {
  content: '';
  position: absolute; top: 50%;
  width: 80px; height: 2px;
  background: linear-gradient(90deg, transparent, #2b7fff);
}
.sec-title::before { right: calc(50% + 130px); }
.sec-title::after { left: calc(50% + 130px); transform: scaleX(-1); }

/* ============================================================
   SOLUTION CARDS
   ============================================================ */
.solutions {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 14px;
  padding: 0 26px;
}
.sol-card {
  background: #ffffff;
  border: 1px solid #dce6f5;
  border-radius: 14px;
  overflow: hidden;
  box-shadow: 0 4px 14px rgba(16, 49, 102, 0.08);
  display: flex;
  flex-direction: column;
}
.sol-head { display: flex; align-items: center; gap: 8px; padding: 12px 12px 8px; }
.sol-num {
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
  font-size: 22px; font-weight: 800;
  color: #2b7fff;
  opacity: 0.6;
  line-height: 1;
}
.sol-head h3 {
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
  font-size: 11px; font-weight: 800;
  color: #0c2249;
  letter-spacing: 0.3px;
  text-transform: uppercase;
  line-height: 1.15;
}
.sol-img {
  position: relative;
  height: 110px;
  background-size: cover;
  background-position: center;
  margin: 0 12px;
  border-radius: 8px;
}
.sol-img .sicon {
  position: absolute; top: 8px; left: 8px;
  width: 26px; height: 26px; border-radius: 7px;
  background: linear-gradient(100deg, #1e63d8 0%, #2fbef0 100%);
  display: grid; place-items: center;
  color: #fff; font-size: 12px;
  box-shadow: 0 3px 8px rgba(0,0,0,0.25);
}
.sol-list { padding: 12px; display: grid; gap: 7px; }
.sol-list li {
  font-size: 10.5px;
  color: #2c466a;
  font-weight: 600;
  display: flex; align-items: flex-start; gap: 6px;
  line-height: 1.3;
}
.sol-list li i { color: #2fbef0; font-size: 11px; margin-top: 1px; flex-shrink: 0; }

/* ============================================================
   BENEFITS + RESULTS BAND
   ============================================================ */
.band {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: 16px;
  margin: 24px 26px 0;
}
.benefits {
  background: linear-gradient(135deg, #0a1c3d 0%, #103166 55%, #16407f 100%);
  border-radius: 14px;
  padding: 18px;
  color: #fff;
}
.benefits h3, .results h3 {
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
  font-size: 14px; font-weight: 800;
  letter-spacing: 0.6px;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.benefits-grid {
  display: grid; grid-template-columns: 1fr 1fr; gap: 12px 10px;
}
.benefit { display: flex; gap: 8px; align-items: flex-start; }
.benefit i {
  width: 26px; height: 26px; border-radius: 7px; flex-shrink: 0;
  background: rgba(255,255,255,0.1);
  color: #54d2ff;
  display: grid; place-items: center; font-size: 11px;
}
.benefit span { font-size: 10.5px; font-weight: 600; color: #dceaff; line-height: 1.3; }

.results {
  background: #f5f8fd;
  border: 1px solid #dce6f5;
  border-radius: 14px;
  padding: 18px;
}
.results h3 { color: #0c2249; text-align: center; }
.stats-grid {
  display: grid; grid-template-columns: repeat(5, 1fr); gap: 8px;
  align-items: end;
}
.stat { text-align: center; }
.stat .sic {
  width: 34px; height: 34px; margin: 0 auto 7px;
  border-radius: 9px;
  background: linear-gradient(100deg, #1e63d8 0%, #2fbef0 100%);
  display: grid; place-items: center;
  color: #fff; font-size: 14px;
}
.stat .snum {
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
  font-size: 19px; font-weight: 800;
  color: #0c2249;
}
.stat .snum .ar { font-size: 11px; }
.stat .slbl { font-size: 8.8px; color: #6a7c98; font-weight: 600; line-height: 1.25; margin-top: 3px; }

/* ============================================================
   CTA FOOTER
   ============================================================ */
.cta {
  margin-top: 26px;
  background: linear-gradient(135deg, #0a1c3d 0%, #103166 55%, #16407f 100%);
  position: relative;
  overflow: hidden;
  color: #fff;
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 20px;
  padding: 26px 30px;
}
.cta::before {
  content: '';
  position: absolute; inset: 0;
  background: radial-gradient(circle at 50% 120%, rgba(47,190,240,0.25), transparent 55%);
  pointer-events: none;
}
.cta-left { position: relative; z-index: 1; }
.cta-left h2 {
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
  font-weight: 800;
  font-size: 24px;
  line-height: 1.05;
  text-transform: uppercase;
  color:#ffffff;
}
.cta-left h2 .ai { color: #54d2ff; font-size: 30px; }
.cta-left p { font-size: 11.5px; color: #b9cdec; margin-top: 8px; font-weight: 500; }

.cta-right { position: relative; z-index: 1; }
.get-in-touch {
  display: inline-block;
  background: linear-gradient(100deg, #1e63d8 0%, #2fbef0 100%);
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
  font-size: 10px; font-weight: 700; letter-spacing: 1px;
  padding: 5px 16px; border-radius: 4px;
  text-transform: uppercase;
  margin-bottom: 12px;
}
.contact-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 8px 14px; }
.contact-co { grid-column: 1 / 2; }
.contact-co .cn { font-family: 'Montserrat', 'Segoe UI', sans-serif; font-weight: 700; font-size: 13px; display: flex; gap: 7px; align-items: center; }
.contact-co .cn i { color: #54d2ff; }
.contact-co .ca { font-size: 10px; color: #b9cdec; margin: 5px 0 0 21px; line-height: 1.4; }
.contact-co .cw { font-size: 10.5px; color: #cfe0fb; margin: 8px 0 0 21px; display: flex; gap: 7px; align-items: center; }
.contact-co .cw i { color: #54d2ff; }
.contact-list { display: grid; gap: 9px; align-content: start; }
.contact-list a, .contact-list div {
  display: flex; align-items: center; gap: 8px;
  font-size: 10.5px; color: #d4e2f8; font-weight: 500;
}
.contact-list i {
  width: 22px; height: 22px; border-radius: 6px;
  background: rgba(255,255,255,0.1); color: #54d2ff;
  display: grid; place-items: center; font-size: 10px; flex-shrink: 0;
}

/* footer strip */
.foot-strip {
  background: #071630;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 12px 30px;
  gap: 16px;
}
.foot-strip .brand-name .nm { font-size: 19px; color: #fff; }
.foot-strip .brand-name .tag { color: #8fe5ff; }
.foot-strip .brand-pin { width: 30px; height: 30px; font-size: 26px; }
.foot-tag {
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
  font-weight: 700; font-size: 11px;
  letter-spacing: 1.5px;
  color: #8fe5ff;
  text-align: right;
}

/* AI orb graphic in CTA */
.ai-orb {
  position: absolute;
  right: -10px; top: 50%; transform: translateY(-50%);
  width: 120px; height: 120px;
  border-radius: 50%;
  background: radial-gradient(circle at 50% 50%, rgba(47,190,240,0.35), rgba(30,99,216,0.05) 70%);
  border: 1px solid rgba(120,200,255,0.3);
  display: grid; place-items: center;
  font-family: 'Montserrat', 'Segoe UI', sans-serif; font-weight: 800; font-size: 26px; color: #fff;
  z-index: 0;
}
.ai-orb::before, .ai-orb::after {
  content: ''; position: absolute; inset: 0; border-radius: 50%;
  border: 1px dashed rgba(120,200,255,0.25);
}
.ai-orb::before { inset: -14px; }
.ai-orb::after { inset: -28px; border-style: dotted; }

/* ============================================================
   RETAIL SUITE PAGE
   ============================================================ */
.r-hero {
  position: relative;
  background:
    linear-gradient(95deg, #071630 38%, rgba(10,28,61,0.78) 58%, rgba(10,28,61,0.45) 100%),
    url('https://images.unsplash.com/photo-1542838132-92c53300491e?auto=format&fit=crop&w=1300&q=80') right center/cover no-repeat,
    #071630;
  color: #fff;
  padding: 22px 28px 0;
  display: grid;
  grid-template-columns: 1fr 240px;
  gap: 20px;
}
.r-hero-main { position: relative; z-index: 1; }
.r-hero-top { display: flex; align-items: center; gap: 14px; }
.r-hero .brand-pin { font-size: 52px; width: 56px; height: 56px; }
.r-hero .brand-pin i {
  background: linear-gradient(150deg, #54d2ff 0%, #2b7fff 60%, #1551c0 100%);
  -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent;
}
.r-title {
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
  font-weight: 800;
  font-size: clamp(28px, 4.4vw, 44px);
  line-height: 1;
}
.r-title .w { color: #fff; }
.r-title .c { color: #54d2ff; }
.r-subtitle {
  color: #8fe5ff;
  font-size: 13px;
  font-weight: 600;
  margin: 8px 0 0 7px;
}
.r-tagpill {
  display: inline-block;
  margin: 14px 0 16px 7px;
  background: rgba(255,255,255,0.08);
  border: 1px solid rgba(120,200,255,0.25);
  border-radius: 30px;
  padding: 8px 20px;
  font-size: 12px;
  font-weight: 500;
  color: #dceaff;
}
.r-poweredby {
  border-top: 1px solid rgba(255,255,255,0.12);
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
  font-size: 10px;
  font-weight: 700;
  letter-spacing: 1.5px;
  color: #9db6da;
  padding: 9px 0;
}
.r-poweredby .cv { color: #54d2ff; }

/* impact side panel */
.r-impact {
  position: relative; z-index: 1;
  background: rgba(7,18,40,0.66);
  border: 1px solid rgba(120,200,255,0.18);
  border-radius: 14px;
  padding: 16px 16px 18px;
  align-self: start;
  margin-top: 4px;
}
.r-impact h4 {
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
  font-size: 10px; letter-spacing: 1.5px; color: #8fe5ff;
  margin-bottom: 12px; font-weight: 700;
}
.r-impact-item { display: flex; align-items: center; gap: 11px; padding: 9px 0; }
.r-impact-item + .r-impact-item { border-top: 1px solid rgba(255,255,255,0.08); }
.r-impact-item .ii {
  width: 30px; height: 30px; border-radius: 8px; flex-shrink: 0;
  background: rgba(47,190,240,0.16); color: #54d2ff;
  display: grid; place-items: center; font-size: 13px;
}
.r-impact-item .big { font-family: 'Montserrat', 'Segoe UI', sans-serif; font-weight: 800; font-size: 17px; line-height: 1; }
.r-impact-item .sm { font-size: 9.5px; color: #b9cdec; margin-top: 2px; }

/* light body */
.r-body { padding: 22px 28px 0; background: #fff; }
.r-h {
  font-family: 'Montserrat', 'Segoe UI', sans-serif;
  font-weight: 800;
  font-size: 15px;
  letter-spacing: 0.4px;
  color: #0c2249;
  text-transform: uppercase;
  margin-bottom: 14px;
}
.r-h .c { color: #2b7fff; }

.r-row1 { display: grid; grid-template-columns: 1.05fr 1.25fr; gap: 26px; }

.two-col { display: grid; grid-template-columns: 1fr 1fr; gap: 16px; }
.mini-card .mc-head { display: flex; align-items: center; gap: 8px; margin-bottom: 9px; }
.mini-card .mc-ic {
  width: 30px; height: 30px; border-radius: 8px; flex-shrink: 0;
  display: grid; place-items: center; font-size: 13px; color: #fff;
}
.mc-ic.gap { background: linear-gradient(135deg, #8aa0c0, #5d6f8c); }
.mc-ic.sol { background: linear-gradient(100deg, #1e63d8 0%, #2fbef0 100%); }
.mini-card h5 {
  font-family: 'Montserrat', 'Segoe UI', sans-serif; font-size: 10.5px; font-weight: 800;
  color: #0c2249; text-transform: uppercase; line-height: 1.1;
}
.tick-list li {
  font-size: 10.5px; color: #2c466a; font-weight: 500;
  display: flex; gap: 6px; align-items: flex-start; padding: 3px 0; line-height: 1.3;
}
.tick-list li i { font-size: 6px; margin-top: 5px; color: #4d9bff; }
.tick-list.sol li i { color: #1ca65a; }

.works-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 12px; }
.work { text-align: center; }
.work .wic {
  width: 46px; height: 46px; margin: 0 auto 8px; border-radius: 12px;
  background: #eef3fb; border: 1px solid #dce6f5;
  display: grid; place-items: center; font-size: 20px; color: #1e63d8;
}
.work h6 { font-family: 'Montserrat', 'Segoe UI', sans-serif; font-size: 10.5px; font-weight: 800; color: #0c2249; margin-bottom: 3px; }
.work p { font-size: 9px; color: #6a7c98; line-height: 1.35; }

.r-divider { height: 1px; background: #dce6f5; margin: 22px 0; }

.r-row2 { display: grid; grid-template-columns: 1.15fr 1fr 0.55fr; gap: 22px; }

.adv-grid { display: grid; grid-template-columns: 1fr 1fr; gap: 14px 16px; }
.adv { }
.adv .a-head { display: flex; align-items: center; gap: 8px; margin-bottom: 5px; }
.adv .a-ic {
  width: 28px; height: 28px; border-radius: 8px; flex-shrink: 0;
  background: linear-gradient(100deg, #1e63d8 0%, #2fbef0 100%); color: #fff; display: grid; place-items: center; font-size: 12px;
}
.adv h5 { font-family: 'Montserrat', 'Segoe UI', sans-serif; font-size: 9.5px; font-weight: 800; color: #0c2249; text-transform: uppercase; line-height: 1.1; }
.adv p { font-size: 9.5px; color: #6a7c98; line-height: 1.4; }

.see-list { display: grid; gap: 7px; margin-top: 10px; }
.see-list li { font-size: 10px; color: #2c466a; font-weight: 500; display: flex; gap: 7px; align-items: flex-start; line-height: 1.3; }
.see-list li i { color: #1ca65a; font-size: 11px; margin-top: 1px; }
.r-dash-mock {
  height: 130px; border-radius: 10px; overflow: hidden;
  background:
    linear-gradient(180deg, rgba(8,24,58,0.2), rgba(8,24,58,0.55)),
    url('https://images.unsplash.com/photo-1551288049-bebda4e38f71?auto=format&fit=crop&w=600&q=70') center/cover no-repeat,
    #0c2249;
  border: 1px solid #dce6f5;
  position: relative;
}
.r-dash-mock .tag {
  position: absolute; top: 8px; left: 10px;
  font-size: 8px; color: #cfe4ff; background: rgba(7,22,48,0.7);
  padding: 3px 8px; border-radius: 4px; font-family: 'Montserrat', 'Segoe UI', sans-serif; letter-spacing: 0.5px;
}
.r-mon { display: flex; gap: 10px; align-items: center; margin-top: 10px; }
.r-mon .mi { width: 34px; height: 34px; border-radius: 9px; background: linear-gradient(100deg, #1e63d8 0%, #2fbef0 100%); color: #fff; display: grid; place-items: center; font-size: 15px; flex-shrink: 0; }
.r-mon h6 { font-family: 'Montserrat', 'Segoe UI', sans-serif; font-size: 11px; color: #0c2249; font-weight: 800; }
.r-mon p { font-size: 9px; color: #6a7c98; }

.deploy {
  background: linear-gradient(100deg, #1e63d8 0%, #2fbef0 100%);
  border-radius: 14px;
  padding: 16px;
  color: #fff;
  align-self: start;
}
.deploy h5 { font-family: 'Montserrat', 'Segoe UI', sans-serif; font-size: 12px; font-weight: 800; text-transform: uppercase; line-height: 1.15; margin-bottom: 8px; }
.deploy p { font-size: 10px; color: #eaf5ff; line-height: 1.45; margin-bottom: 12px; }
.deploy .btn-demo {
  display: block; text-align: center; background: #0c2249; color: #fff;
  font-family: 'Montserrat', 'Segoe UI', sans-serif; font-weight: 700; font-size: 11px;
  padding: 9px; border-radius: 8px; margin-bottom: 8px;
}
.deploy .visit { display: flex; align-items: center; gap: 6px; font-size: 9.5px; color: #eaf5ff; justify-content: center; }

/* HOW IT WORKS flow */
.r-flow {
  background: #f5f8fd;
  border: 1px solid #dce6f5;
  border-radius: 14px;
  margin: 6px 0 0;
  padding: 14px 18px;
  display: flex;
  align-items: center;
  gap: 6px;
}
.flow-label {
  font-family: 'Montserrat', 'Segoe UI', sans-serif; font-size: 11px; font-weight: 800;
  color: #fff; background: #0c2249; border-radius: 8px;
  padding: 10px 12px; text-align: center; line-height: 1.1; flex-shrink: 0;
}
.flow-step { text-align: center; flex: 1; }
.flow-step .fs-ic {
  width: 36px; height: 36px; margin: 0 auto 6px; border-radius: 10px;
  background: linear-gradient(100deg, #1e63d8 0%, #2fbef0 100%); color: #fff; display: grid; place-items: center; font-size: 15px;
}
.flow-step h6 { font-family: 'Montserrat', 'Segoe UI', sans-serif; font-size: 10px; font-weight: 800; color: #0c2249; }
.flow-step p { font-size: 8.5px; color: #6a7c98; line-height: 1.3; }
.flow-arrow { color: #4d9bff; font-size: 14px; flex-shrink: 0; }

/* dark stats band */
.r-stats {
  margin-top: 22px;
  background: linear-gradient(135deg, #0a1c3d 0%, #103166 55%, #16407f 100%);
  color: #fff;
  padding: 20px 28px;
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 16px;
}
.r-stat { display: flex; flex-direction: column; gap: 5px; }
.r-stat .rs-ic { font-size: 18px; color: #54d2ff; }
.r-stat .rs-big { font-family: 'Montserrat', 'Segoe UI', sans-serif; font-weight: 800; font-size: 16px; }
.r-stat .rs-t { font-family: 'Montserrat', 'Segoe UI', sans-serif; font-weight: 700; font-size: 10px; color: #dceaff; }
.r-stat .rs-p { font-size: 8.8px; color: #9db6da; line-height: 1.35; }
.r-foot-note { grid-column: 1 / -1; font-size: 8px; color: #7f97bd; text-align: center; margin-top: 2px; }

/* light footer contact strip */
.r-contact {
  background: #eef3fb;
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 8px 18px;
  padding: 14px 28px;
}
.r-contact .brand-pin { font-size: 30px; width: 34px; height: 34px; }
.r-contact .brand-name .nm { font-size: 18px; color: #0c2249; }
.r-contact .brand-name .tag { color: #2b7fff; }
.r-contact .ci { display: flex; align-items: center; gap: 7px; font-size: 10.5px; color: #2c466a; font-weight: 500; }
.r-contact .ci i { color: #1e63d8; }
.r-contact .sep { flex: 1; }

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 960px) {
  .r-hero { grid-template-columns: 1fr; }
  .r-impact { margin-bottom: 4px; }
  .r-row1 { grid-template-columns: 1fr; }
  .r-row2 { grid-template-columns: 1fr; }
  .r-stats { grid-template-columns: repeat(3, 1fr); }
  .r-flow { flex-wrap: wrap; justify-content: center; }
  .flow-arrow { display: none; }
  .flow-step { flex: 0 0 40%; }
  .flow-label { width: 100%; }
}

@media (max-width: 820px) {
  .sheet { margin: 0; border-radius: 0; max-width: 100%; }
  .hero { grid-template-columns: 1fr; }
  .hero-left { padding: 22px 20px 18px; }
  .hero-sub { max-width: 100%; }
  .hero-right { clip-path: none; min-height: 230px; }
  .wrap, .intel-strip, .solutions, .band { padding-left: 18px; padding-right: 18px; }
  .band { margin-left: 18px; margin-right: 18px; }

  .intel-strip {
    grid-template-columns: 1fr;
    gap: 14px;
  }

  .feature-row { gap: 0; }
  .dash { grid-template-columns: repeat(2, 1fr); gap: 14px; }
  .dash-col + .dash-col { border-left: none; padding-left: 0; }
  .dash-col:nth-child(odd) { border-right: 1px solid rgba(255,255,255,0.12); padding-right: 12px; }

  .solutions { grid-template-columns: repeat(2, 1fr); }
  .band { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(5, 1fr); }

  .cta { grid-template-columns: 1fr; }
  .ai-orb { display: none; }
}

@media (max-width: 540px) {
  .sec-title::before, .sec-title::after { display: none; }
  .feature-row { grid-template-columns: repeat(2, 1fr); }
  .feature-pill {
    min-height: 94px;
    border-bottom: 1px solid #dce6f5;
  }
  .feature-pill:nth-child(even) { border-right: 0; }
  .feature-pill:nth-last-child(-n+2) { border-bottom: 0; }
  .dash { grid-template-columns: 1fr; }
  .dash-col:nth-child(odd) { border-right: 0; padding-right: 0; }
  .dash-col + .dash-col {
    border-top: 1px solid rgba(255,255,255,0.12);
    padding-top: 12px;
  }
  .solutions { grid-template-columns: 1fr; }
  .benefits-grid { grid-template-columns: 1fr; }
  .stats-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .contact-grid { grid-template-columns: 1fr; }
  .contact-co { grid-column: 1; }
  .foot-strip { flex-direction: column; text-align: center; }
  .foot-tag { text-align: center; }
  .hero-title { font-size: 32px; }

  /* retail */
  .two-col { grid-template-columns: 1fr; }
  .works-grid { grid-template-columns: 1fr 1fr; }
  .adv-grid { grid-template-columns: 1fr; }
  .r-stats { grid-template-columns: 1fr 1fr; }
  .flow-step { flex: 0 0 100%; }
  .r-subtitle, .r-tagpill { margin-left: 0; }
  .r-contact { flex-direction: column; align-items: flex-start; }
  .r-contact .sep { display: none; }
}
@media (max-width: 768px) {
   .sheet {
       
   }
   .hero{
       display:flex;
       flex-direction:column-reverse;
   }
}