* {
  margin: 0;
  padding: 0;
  box-sizing: border-box
}

:root {
  --teal: #00a79d;
  --teal-dark: #007a73;
  --teal-light: #e0f5f4;
  --orange: #f4791f;
  --orange-light: #fff0e6;
  --navy: #0d2137;
  --navy-mid: #1a3a52;
  --text: #1e2d3d;
  --muted: #5a7080;
  --border: #dde5eb;
  --bg: #f7fafb;
  --white: #ffffff;
  --font-head: 'Sora', sans-serif;
  --font-body: 'Inter', sans-serif;
  --r: 12px;
  --r-lg: 20px;
  --blue: #0693e3;
  ;
}

:root {
  --blue: #0693e3;
  --blue-dk: #0369a1;
  --green: #23bf44;
  --green-dk: #15803d;
  --navy: #0a2540;
  --muted: #64748b;
  --border: #e0e4e8;
  --fh: 'Inter', sans-serif;
  /* Ensuring fonts have a fallback */
  --fb: 'Inter', sans-serif;
}

html {
  scroll-behavior: smooth;
  overflow-x: hidden;
}

body {
  font-family: var(--font-body);
  color: var(--text);
  background: var(--white);
  overflow-x: hidden
}

a {
  text-decoration: none;
  color: inherit
}

img {
  max-width: 100%;
  display: block
}

/* Nav styles removed - now handled by common.css */

 .custom-bullets {
  font-size: 13.5px;
  padding-left: 18px;
  margin-top: 10px;
}

.custom-bullets li {
  margin-bottom: 8px;   
  line-height: 1.6;    
}

.custom-bullets ul {
  margin-top: 6px;
  padding-left: 18px;
}

.custom-bullets ul li {
  margin-bottom: 6px;
}
.custom-bullets {
  list-style-type: disc;
}
.custom-bullets li::marker {
  font-size: 18px;   
}



/* --- HERO 1: DIRECT STYLING (175% ZOOM LOOK) --- */
.hero1 {
  min-height: 86vh;
  display: flex;
  align-items: center;
  padding: 0 1% !important;
  position: relative;
  overflow: hidden;
  background: #ffffff;
}

/* Container for Side-by-Side */
.hero1-content-wrapper {
  display: flex;
  align-items: center;
  justify-content: space-between;
  width: 100%;
  max-width: 1800px;
  margin: 0 auto;
  gap: 60px;
  position: relative;
  z-index: 5;
}

.hero1-text-side {
  flex: 1.2;
  max-width: 900px;
}

/* Zoomed Headline */
.hero1 h1 {
  font-size: clamp(70px, 10vw, 150px) !important;
  font-weight: 900;
  line-height: 0.82;
  letter-spacing: 0.01em;
  color: #28332ebe;
  /* Updated to #28332ebe */
  margin-bottom: 35px;
}

.hero1 h1 em {
  font-style: italic;
  font-weight: 700;
  background: linear-gradient(120deg, #196b47 0%, #0896d8 100%);
  /* --g6 to --s5 */
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
}

/* Zoomed Description */
.hero1-desc {
  font-size: 26px !important;
  line-height: 1.5;
  color: #546860;
  /* --n5 */
  max-width: 650px;
  margin-bottom: 40px;
}

.hero1-desc strong {
  color: #0d1f17;
  font-weight: 600;
}

.hero1-desc em {
  font-style: italic;
  color: #196b47;
  font-weight: 500;
}

/* Right Side: Image */
.hero1-img {
  flex: 0.8;
  display: flex;
  justify-content: flex-end;
  margin-bottom: 7%;
  margin-right: 2%;
}

.hero1-img img {
  width: 115%;
  /* Zoomed look */
  max-width: 750px;
  height: auto;
  transform: translateX(5%);
  filter: drop-shadow(0 30px 60px rgba(0, 0, 0, 0.12));
  border-radius: 24px;
}

/* Rotating Wordmark */
.hero-spin {
  position: absolute;
  top: 40%;
  left: 50%;
  transform: translate(-50%, -50%) rotate(-15deg);
  font-size: 22vw;
  font-weight: 900;
  color: transparent;
  -webkit-text-stroke: 1px rgba(25, 107, 71, 0.05);
  /* --gdim */
  white-space: nowrap;
  pointer-events: none;
  animation: spin 70s linear infinite;
  user-select: none;
}

/* Eyebrow */
.eyebrow-dash {
  width: 90px;
  height: 2px;
  background: linear-gradient(90deg, #1f8a5c, #0896d8);
  /* --g5 to --s5 */
}

.eyebrow {
  position: relative;
  z-index: 3;
  align-items: center;
  gap: 12px;
  margin-bottom: 15px;
  transform: translateY(-10px);
}

.eyebrow-text {
  font-size: 14px;
  /* Zoomed */
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  background: linear-gradient(90deg, #196b47, #0896d8);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  margin-bottom: 30px;
}

/* CTA Button */
.hero1-cta {
  padding: 18px 45px;
  /* Zoomed size */
  border-radius: 12px;
  background: linear-gradient(135deg, #196b47, #0896d8);
  color: #fff;
  font-size: 18px;
  /* Zoomed size */
  font-weight: 700;
  border: none;
  cursor: pointer;
  transition: transform 0.2s;
}

.hero1-cta:hover {
  transform: scale(1.05);
}

/* --- RESPONSIVE FIX --- */
/* --- RESPONSIVE FIX --- */
@media (max-width: 1200px) {
  .hero1-content-wrapper {
    flex-direction: column;
    align-items: center;
    text-align: center;
    padding-top: 80px;
    gap: 50px;
  }

  .hero1-text-side {
    width: 100%;
    max-width: 700px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
  }

  .hero1-desc {
    max-width: 100%;
    font-size: 18px !important;
  }

  .hero1-img {
    order: -1;
    width: 100%;
    justify-content: center;
  }

  .hero1-img img {
    width: 100%;
    transform: none;
    max-width: 450px;
  }

  .hero1 h1 {
    font-size: clamp(48px, 12vw, 100px) !important;
    letter-spacing: -0.04em;
  }
}

@media (max-width: 768px) {
  .hero1-content-wrapper {
    padding-top: 60px;
    gap: 36px;
  }

  .hero1-text-side {
    max-width: 100%;
    padding: 0 5%;
  }

  .hero1-img img {
    max-width: 340px;
  }
}

@media (max-width: 480px) {
  .hero1-text-side {
    padding: 0 4%;
  }

  .hero1 h1 {
    font-size: clamp(36px, 14vw, 60px) !important;
  }

  .hero1-cta {
    width: 100%;
    padding: 16px 24px;
    font-size: 16px;
  }
}

@keyframes spin {
  from {
    transform: translate(-50%, -50%) rotate(-15deg);
  }

  to {
    transform: translate(-50%, -50%) rotate(345deg);
  }
}


/* ── HERO ── */
.hero {
  background: linear-gradient(148deg, #f0f8ff 0%, #e6f4ff 40%, #f4fff7 75%, #fff 100%);
  padding: 70px 5% 0;
  display: grid;
  grid-template-columns: 1fr 1.15fr;
  gap: 48px;
  align-items: flex-end;
  min-height: 30vh;
  position: relative;
  overflow: hidden
}

.hero::before {
  content: '';
  position: absolute;
  top: -80px;
  right: -80px;
  width: 520px;
  height: 520px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 147, 227, .09), transparent);
  pointer-events: none
}

.hero::after {
  content: '';
  position: absolute;
  bottom: 40px;
  left: 8%;
  width: 260px;
  height: 260px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(35, 191, 68, .12), transparent);
  pointer-events: none
}

/* ════════════════════════════════════════════
   HERO SECTION WRAPPER
════════════════════════════════════════════ */
.hero-section {
  position: relative;
  background: linear-gradient(148deg, #f0f8ff 0%, #e6f4ff 40%, #f4fff7 75%, #fff 100%);
  overflow: hidden;
  min-height: calc(100vh - 120px);
  display: flex;
  flex-direction: column;
}

.hero-section::before {
  content: '';
  position: absolute;
  top: -100px;
  right: -100px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(6, 147, 227, .07), transparent);
  pointer-events: none;
  z-index: 0;
}

.hero-section::after {
  content: '';
  position: absolute;
  bottom: 40px;
  left: 5%;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(35, 191, 68, .09), transparent);
  pointer-events: none;
  z-index: 0;
}

/* ════════════════════════════════════════════
   CAROUSEL CORE
════════════════════════════════════════════ */
.hero-carousel {
  position: relative;
  flex: 1;
  display: flex;
  flex-direction: column;
}

/* Slides track */
.hero-slides {
  flex: 1;
  position: relative;
  min-height: 60vh;
}

.hero-slide {
  position: absolute;
  inset: 0;
  display: grid;
  grid-template-columns: 1fr 1.1fr;
  align-items: center;
  padding: 60px 5% 0;
  gap: 48px;
  opacity: 0;
  transform: translateX(30px);
  transition: opacity .65s cubic-bezier(.4, 0, .2, 1), transform .65s cubic-bezier(.4, 0, .2, 1);
  pointer-events: none;
  z-index: 1;
}


@media (min-width: 961px) {
  .hero-slide {
    padding: 150px;
    /* increase top gap */
  }
}


@media (min-width: 961px) {
  .hero-lft {
    margin-top: 90px;
  }
}


/* Force white background on the entire right panel column for laptops */
@media (min-width: 961px) {

  .right-panel {
    min-height: 490px;
    display: flex;
    align-items: stretch;
  }

  .far-panel {
    flex: 1;
    height: auto;
    min-height: 440px;
  }

  /* Reposition iPhone to sit nicely inside the white box */
  .iphone-s1 {
    position: absolute;
    /* right: 20px; */
    top: auto;
    bottom: 20px;
    transform: none;
  }
}


.far-rows-container {
  overflow-x: auto;
  white-space: nowrap;
}

.far-rows-container .far-row {
  min-width: 600px;
  /* forces horizontal scroll on narrow laptop screens */
}


@media (min-width: 961px) and (max-width: 1366px) {
  .win {
    height: 480px;
    /* shorter */
    margin-bottom: 40px;
    /* extra space before dots */
  }

  .content {
    gap: 8px;
  }
}



.hero-slide.active {
  opacity: 1;
  transform: translateX(0);
  pointer-events: all;
  z-index: 2;
}

.hero-slide.exit {
  opacity: 0;
  transform: translateX(-30px);
  pointer-events: none;
  z-index: 1;
}

.hero-slide.exit {
  opacity: 0;
  transform: translateX(-30px);
  pointer-events: none;
  z-index: 1;
}


/* Container adjustments for responsiveness */
.hero-slides-container {
  width: 100%;
  overflow: hidden;
  position: relative;
}

.hero-track {
  display: flex;
  transition: transform 0.6s cubic-bezier(0.4, 0, 0.2, 1);
  width: 100%;
}

.hero-slide {
  flex: 0 0 100%;
  /* Each slide takes exactly one screen width */
  min-width: 100%;
  padding: 0 5%;
  /* Adds safe horizontal breathing room */
  box-sizing: border-box;
}




/* ════════════════════════════════════════════
   LEFT PANEL — CONTENT AREA
════════════════════════════════════════════ */
.hero-lft {
  z-index: 2;
  position: relative;
  padding-bottom: 60px;
  margin-bottom: 15%;
}



/* Badge */
.h-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(6, 147, 227, .1);
  border: 1px solid rgba(6, 147, 227, .2);
  color: var(--blue);
  font-family: var(--fh);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 1.4px;
  text-transform: uppercase;
  padding: 6px 14px;
  border-radius: 20px;
  margin-bottom: 22px;
}

.bdot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  animation: blink 1.8s ease-in-out infinite
}

@keyframes blink {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .25
  }
}

/* Headline */
.hero-h1 {
  font-family: var(--fh);
  font-size: clamp(28px, 3.6vw, 50px);
  font-weight: 800;
  color: var(--navy);
  line-height: 1.1;
  letter-spacing: -1px;
  margin-bottom: 18px;
}

.h1b {
  color: #0693e3;
}

.h1g {
  color: var(--green)
}

.h1o {
  color: var(--orange)
}

/* Sub */
.hero-sub {
  font-family: var(--fb);
  font-size: 15.5px;
  color: var(--muted);
  line-height: 1.85;
  margin-bottom: 30px;
  max-width: 440px;
  font-weight: 400;
}

/* Buttons */
.hero-btns {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 36px;
  align-items: center
}

.btn-bl {
  font-family: var(--fh);
  background: linear-gradient(135deg, var(--green), var(--green-dk));
  color: #fff;
  border: none;
  padding: 14px 26px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all .22s;
  box-shadow: 0 6px 20px rgba(6, 147, 227, .32);
  position: relative;
  overflow: hidden;
}

.btn-bl:hover {
  transform: translateY(-3px);
  box-shadow: 0 14px 34px rgba(6, 147, 227, .46)
}

.btn-wh {
  font-family: var(--fh);
  background: #fff;
  color: var(--navy);
  border: 1.5px solid var(--border);
  padding: 13px 24px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all .22s;
  box-shadow: 0 2px 10px rgba(0, 0, 0, .06);
}

.btn-wh:hover {
  border-color: var(--blue);
  color: var(--blue);
  transform: translateY(-2px)
}

.btn-gr {
  font-family: var(--fh);
  background: linear-gradient(135deg, var(--green), var(--green-dk));
  color: #fff;
  border: none;
  padding: 13px 22px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 700;
  cursor: pointer;
  transition: all .22s;
  box-shadow: 0 4px 14px rgba(35, 191, 68, .32);
}

.btn-gr:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 28px rgba(35, 191, 68, .46)
}

.t-txt {
  font-family: var(--fb);
  font-size: 12.5px;
  color: var(--muted);
  line-height: 1.6
}

.t-txt strong {
  font-family: var(--fh);
  color: var(--navy);
  font-weight: 700
}

/* KPI Stat cards in left panel */
.hero-kpis {
  display: flex;
  gap: 10px;
  flex-wrap: wrap
}

.kpi-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 12px;
  padding: 12px 18px;
  display: flex;
  align-items: center;
  gap: 14px;
  box-shadow: 0 2px 12px rgba(0, 0, 0, .05);
  transition: transform .2s;
}

.kpi-card:hover {
  transform: translateY(-2px)
}

.kpi-num {
  font-family: var(--fh);
  font-size: 22px;
  font-weight: 700;
  min-width: 52px;
  line-height: 1
}

/* .kpi-info styled via common patterns */
.kpi-label {
  font-family: var(--fb);
  font-size: 11.5px;
  color: var(--muted);
  line-height: 1.4
}

.kpi-sub {
  font-family: var(--fh);
  font-size: 11px;
  font-weight: 600;
  margin-top: 2px
}

/* ════════════════════════════════════════════
   RIGHT PANEL — ANIMATION CONTAINER
════════════════════════════════════════════ */
.hero-rt {
  display: flex;
  align-items: flex-end;
  justify-content: center;
  position: relative;
  z-index: 2;
  padding-bottom: 0;
}

.hero-dots-bar {
  position: absolute;
  bottom: 60px;
  left: 0;
  right: 0;
  display: flex;
  justify-content: center;
  align-items: flex-start;
  gap: 100px;
  z-index: 10;
  pointer-events: none;
}

.hero-dot-item {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 10px;
  cursor: pointer;
  pointer-events: all;
  width: 160px;
}

.hero-dot {
  width: 12px;
  height: 6px;
  border-radius: 99px;
  background: rgba(6, 147, 227, 0.2);
  border: none;
  padding: 0;
  transition: all 0.4s cubic-bezier(.4, 0, .2, 1);
  cursor: pointer;
}

.hero-dot-item.on .hero-dot {
  background: #0693e3;
  width: 35px;
}

.dot-label {
  font-size: 11.5px;
  font-weight: 700;
  color: #64748b;
  text-align: center;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  transition: color 0.3s ease;
}

.hero-dot-item.on .dot-label {
  color: #0693e3;
}

/* ════════════════════════════════════════════
   SLIDE 1 RIGHT — PHONE SCAN + FAR PANEL
════════════════════════════════════════════ */
.right-panel {
  flex: 1;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0px;
  padding: 0 0 170px;
  position: relative;
}

/* iPhone wrapper */
.iphone-s1 {
  width: 198px;
  height: 380px;
  background: linear-gradient(180deg, #1C1C1E, #2c2c2e);
  border-radius: 42px;
  border: 2.5px solid #3A3A3C;
  position: relative;
  flex-shrink: 0;
  box-shadow: 0 32px 80px rgba(0, 0, 0, .38), 0 0 0 1px #444, inset 0 0 0 1px rgba(255, 255, 255, .06);
}

.iphone-s1::before {
  content: '';
  position: absolute;
  left: -4px;
  top: 90px;
  width: 3px;
  height: 30px;
  background: #3A3A3C;
  border-radius: 2px
}

.iphone-s1::after {
  content: '';
  position: absolute;
  right: -4px;
  top: 98px;
  width: 3px;
  height: 54px;
  background: #3A3A3C;
  border-radius: 2px
}

.iphone-screen-s1 {
  position: absolute;
  inset: 8px;
  border-radius: 34px;
  background: #fff;
  overflow: hidden
}

.dyn-island {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 64px;
  height: 15px;
  background: #1C1C1E;
  border-radius: 99px;
  z-index: 10
}

/* scan app */
.scan-app {
  position: absolute;
  inset: 0;
  display: flex;
  flex-direction: column
}

.scan-topbar {
  padding: 32px 10px 7px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  border-bottom: .5px solid #F2F2F2
}

.scan-tb-title {
  font-size: 10px;
  font-weight: 600;
  color: #111;
  font-family: var(--fh)
}

.scan-tb-badge {
  font-size: 8px;
  background: #E1F5EE;
  color: #0F6E56;
  border-radius: 99px;
  padding: 2px 7px;
  font-weight: 600;
  font-family: var(--fh)
}

.scan-vp {
  flex: 1;
  background: #fafafa;
  position: relative;
  display: flex;
  align-items: center;
  justify-content: center;
  overflow: hidden
}

.sc {
  position: absolute;
  width: 20px;
  height: 20px;
  border-color: #185FA5;
  border-style: solid;
  border-width: 0
}

.sc.tl {
  top: 74px;
  left: 14px;
  border-top-width: 2.5px;
  border-left-width: 2.5px;
  border-radius: 3px 0 0 0
}

.sc.tr {
  top: 74px;
  right: 14px;
  border-top-width: 2.5px;
  border-right-width: 2.5px;
  border-radius: 0 3px 0 0
}

.sc.bl {
  bottom: 74px;
  left: 14px;
  border-bottom-width: 2.5px;
  border-left-width: 2.5px;
  border-radius: 0 0 0 3px
}

.sc.br {
  bottom: 74px;
  right: 14px;
  border-bottom-width: 2.5px;
  border-right-width: 2.5px;
  border-radius: 0 0 3px 0
}

.laser {
  position: absolute;
  left: 14px;
  right: 14px;
  height: 2px;
  background: #ff0000;
  border-radius: 1px;
  animation: laserMove 6s ease-in-out infinite;
  top: 74px;
  z-index: 10;
}

.scan-vp:has(.mode-rfid) .laser,
.scan-vp:has(.mode-rfid) .sc {
  opacity: 0 !important;
  visibility: hidden;
  transition: opacity 0.4s ease;
}

@keyframes laserMove {

  0%,
  100% {
    top: 74px;
    opacity: 1
  }

  48% {
    top: calc(100% - 74px);
    opacity: 1
  }

  50% {
    opacity: 0;
    top: 74px
  }

  52% {
    opacity: 1
  }
}

/* --- New Scanning Animations --- */
.scan-target-wrap {
  width: 100px;
  height: 100px;
  position: relative;
  transition: all 0.5s ease;
  display: flex;
  align-items: center;
  justify-content: center;
}

/* Common mode visibility */
.scan-qr,
.scan-barcode,
.scan-rfid {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  justify-content: center;
  opacity: 0;
  transform: scale(0.9);
  transition: all 0.6s cubic-bezier(0.19, 1, 0.22, 1);
  pointer-events: none;
}

.scan-target-wrap.mode-qr .scan-qr,
.scan-target-wrap.mode-barcode .scan-barcode,
.scan-target-wrap.mode-rfid .scan-rfid {
  opacity: 1;
  transform: scale(1);
  pointer-events: auto;
}

/* QR Style */
.scan-qr {
  display: flex;
  justify-content: center;
  align-items: center;
  width: 100%;
  height: 100%;
}

.real-qr-code {
  width: 96px;
  height: 96px;
  animation: qrPulse 2s infinite alternate;
}

@keyframes qrPulse {
  0% {
    opacity: 0.4;
  }

  100% {
    opacity: 1;
  }
}

/* Barcode Style */
.scan-barcode {
  display: flex;
  gap: 3px;
  height: 52px;
  align-items: center;
  justify-content: center;
  margin-top: 15px;
  /* Increased nudge to lower the barcode further towards the visual center */
}

.bc-line {
  height: 100%;
  background: #1a1a1a;
  border-radius: 1px;
}

.bc-line:nth-child(1) {
  width: 3px;
}

.bc-line:nth-child(2) {
  width: 1px;
}

.bc-line:nth-child(3) {
  width: 5px;
}

.bc-line:nth-child(4) {
  width: 2px;
}

.bc-line:nth-child(5) {
  width: 1px;
}

.bc-line:nth-child(6) {
  width: 4px;
}

.bc-line:nth-child(7) {
  width: 2px;
}

.bc-line:nth-child(8) {
  width: 3px;
}

.bc-line:nth-child(9) {
  width: 1px;
}

.bc-line:nth-child(10) {
  width: 4px;
}

.bc-line:nth-child(11) {
  width: 2px;
}

.bc-line:nth-child(12) {
  width: 1px;
}

.bc-line:nth-child(13) {
  width: 5px;
}

.bc-line:nth-child(14) {
  width: 2px;
}

.scan-barcode::after {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  width: 100%;
  height: 100%;
  background: linear-gradient(90deg, transparent, rgba(255, 255, 255, 0.4), transparent);
  animation: barcodeShimmer 1.5s infinite;
}

@keyframes barcodeShimmer {
  0% {
    transform: translateX(-100%);
  }

  100% {
    transform: translateX(100%);
  }
}

/* RFID Style */
.scan-rfid {
  position: relative;
}

.rfid-ring {
  position: absolute;
  border: 2px solid var(--blue);
  border-radius: 50%;
  animation: rfidPulse 2.4s infinite;
  opacity: 0;
}

.rfid-ring.r1 {
  width: 40px;
  height: 40px;
}

.rfid-ring.r2 {
  width: 40px;
  height: 40px;
  animation-delay: 0.8s;
}

.rfid-ring.r3 {
  width: 40px;
  height: 40px;
  animation-delay: 1.6s;
}

.rfid-dot {
  width: 12px;
  height: 12px;
  background: var(--blue);
  border-radius: 50%;
  box-shadow: 0 0 15px var(--blue);
}

@keyframes rfidPulse {
  0% {
    transform: scale(1);
    opacity: 0.8;
  }

  100% {
    transform: scale(2.2);
    opacity: 0;
  }
}

.scan-footer {
  padding: 7px 10px 8px;
  background: #FAFAFA;
  border-top: .5px solid #F0F0F0
}

.sf-id {
  font-size: 9px;
  font-weight: 600;
  color: #111;
  margin-bottom: 2px;
  font-family: var(--fh)
}

.sf-loc {
  font-size: 8px;
  color: #999;
  font-family: var(--fb)
}

.sf-tags {
  display: flex;
  justify-content: space-between;
  margin-top: 8px;
  padding-top: 6px;
  border-top: 0.5px solid #eee;
}

.sf-tags span {
  font-size: 7px;
  font-weight: 700;
  color: #777;
  text-transform: uppercase;
  letter-spacing: 0.02em;
  display: flex;
  align-items: center;
  gap: 3px;
  font-family: var(--fh);
}

.sf-tags span::before {
  content: "";
  width: 3px;
  height: 3px;
  border-radius: 50%;
  background: var(--blue);
  flex-shrink: 0;
}

.sf-bar {
  height: 3px;
  background: #E8E8E8;
  border-radius: 99px;
  margin-top: 5px;
  overflow: hidden
}

.sf-fill {
  height: 100%;
  background: #1D9E75;
  border-radius: 99px;
  animation: barPulse 2.4s ease-in-out infinite
}

@keyframes barPulse {
  0% {
    width: 8%
  }

  48% {
    width: 96%
  }

  55% {
    width: 8%
  }
}

/* FAR panel */
.far-panel {
  display: flex;
  flex-direction: column;
  flex: 1;
  background: #fff;
  border: .5px solid var(--border);
  border-radius: 14px;
  padding: 26px 28px 18px;
  box-shadow: 0 8px 32px rgba(0, 0, 0, .07);
  min-width: 0;
  display: flex;
  flex-direction: column;
}

.far-hd {
  display: flex;
  align-items: center;
  justify-content: space-between;
  /* Keeps pill on the right */
  margin-bottom: 12px;
  position: relative;
  /* Required for absolute positioning of child */
}

.far-title {
  position: absolute;
  left: 50%;
  transform: translateX(-50%);
  /* Your other styles... */
  font-family: var(--fh);
  font-size: 10.5px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
  /* Prevents wrapping */
}

.far-audit-verfi {
  font-family: var(--fh);
  font-size: 10.5px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .06em;
  white-space: nowrap;
}

.live-pill {
  display: flex;
  align-items: center;
  gap: 5px;
  font-size: 10px;
  color: #0F6E56;
  font-family: var(--fh)
}

.live-dot {
  width: 5px;
  height: 5px;
  border-radius: 50%;
  background: #1D9E75;
  animation: blink 1.6s ease-in-out infinite
}

.far-cols {
  display: grid;
  grid-template-columns: 24px 85px 1fr 90px 100px 90px 40px;
  gap: 10px;
  padding-bottom: 8px;
  border-bottom: .5px solid var(--border);
  margin-bottom: 4px
}

.fch {
  font-size: 9px;
  font-weight: 600;
  color: var(--muted);
  text-transform: uppercase;
  letter-spacing: .05em;
  font-family: var(--fh)
}

.far-row {
  display: grid;
  grid-template-columns: 24px 85px 1fr 90px 100px 90px 40px;
  gap: 10px;
  padding: 8px 0;
  border-bottom: .5px solid #f2f5f8;
  align-items: center;
  transition: all 0.3s ease;
}

.far-rows-container {
  flex: 1;
  margin-bottom: 12px;
}

.far-row.match {
  background: rgba(35, 191, 68, 0.1);
  border-radius: 8px;
  transform: translateX(6px);
  padding-left: 10px;
  font-weight: 600;
  animation: rowGlow 2.4s ease-in-out infinite;
  border-left: 4px solid var(--green);
}

.far-row.match .fd {
  color: #111111 !important;
}

.far-row .fd:first-child {
  font-size: 18px;
}

@keyframes rowGlow {

  0%,
  100% {
    background: rgba(35, 191, 68, 0.1);
  }

  50% {
    background: rgba(35, 191, 68, 0.18);
  }
}

.fd {
  font-size: 10px;
  color: var(--muted);
  font-family: var(--fb)
}

.fd.hi {
  color: #085041;
  font-weight: 600;
  font-family: var(--fh)
}

.fbadge {
  font-size: 14px;
  font-weight: 700;
  white-space: nowrap;
  font-family: var(--fh);
  background: transparent !important;
  border: none !important;
}

.fbadge.ok {
  color: #0F6E56;
}

.fbadge.pend {
  color: transparent;
}

.far-footer {
  margin-top: 15px;
  padding-top: 15px;
}

.far-footer .sf-tags {
  border-top: none;
  margin-top: 0;
  padding-top: 0;
  justify-content: flex-start;
  gap: 30px;
}

.far-footer .sf-tags span {
  font-size: 9.5px;
  color: #888;
}

.far-footer .sf-tags span::before {
  width: 4px;
  height: 4px;
}

.prog-wrap {
  margin-top: 12px
}

.prog-label {
  display: flex;
  justify-content: space-between;
  font-size: 10px;
  color: var(--muted);
  margin-bottom: 5px;
  font-family: var(--fb)
}

.prog-pct {
  color: #185FA5;
  font-weight: 600;
  font-family: var(--fh)
}

.prog-track {
  height: 4px;
  background: #f0f4f8;
  border-radius: 99px;
  overflow: hidden
}

.prog-fill {
  height: 100%;
  background: #378ADD;
  border-radius: 99px;
  width: 0
}



/* ════════════════════════════════════════════
   SLIDE 2 RIGHT — AUDIT PANEL
════════════════════════════════════════════ */
/* Window Container */

.win {
  width: 760px;
  height: 550px;
  background: #1e1e2e;
  border-radius: 14px;
  overflow: hidden;
  display: flex;
  flex-direction: column;
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.15);
  transform: translateY(-40px);
}

/* Titlebar */
.titlebar {
  height: 36px;
  background: #2a2a3d;
  display: flex;
  align-items: center;
  padding: 0 14px;
  gap: 8px;
  flex-shrink: 0;
  border-bottom: 1px solid #3a3a50;
}

.tb-dot {
  width: 12px;
  height: 12px;
  border-radius: 50%;
  flex-shrink: 0;
}

.close {
  background: #ff5f57;
}

.minimize {
  background: #febc2e;
}

.maximize {
  background: #28c840;
}

.win-tb-title {
  flex: 1;
  text-align: center;
  font-size: 15px;
  font-weight: 500;
  color: #1a2a3d;
  letter-spacing: .02em;
}

/* Main Content Grid */
.content {
  flex: 1;
  background: #f0f1f5;
  padding: 12px;
  display: grid;
  grid-template-columns: 1fr 1fr;
  grid-template-rows: 1fr 1fr;
  gap: 10px;
  overflow: hidden;
}

/* Cards */
.card {
  background: #fff;
  border-radius: 10px;
  padding: 10px 13px !important;
  border: 0.5px solid #e2e4ea;
  display: flex;
  flex-direction: column;
  overflow: hidden;
}

.grid-tl {
  grid-column: 1;
  grid-row: 1;
}

.grid-tr {
  grid-column: 2;
  grid-row: 1;
}

.grid-bl {
  grid-column: 1;
  grid-row: 2;
}

.grid-br {
  grid-column: 2;
  grid-row: 2;
}

.scroll-y {
  overflow-y: auto;
}

.card-hdr {
  font-size: 10px;
  font-weight: 700;
  color: #1a2a4a;
  letter-spacing: .05em;
  text-transform: uppercase;
  padding-bottom: 5px;
  margin-bottom: 6px;
  border-bottom: 2px solid #3b5bdb;
  flex-shrink: 0;
}

/* Tables */
.tbl {
  width: 100%;
  border-collapse: collapse;
  font-size: 10px;
  table-layout: fixed;
}

.tbl thead tr {
  background: #3b5bdb;
}

.tbl thead th {
  color: #fff;
  font-weight: 600;
  padding: 4px 8px;
  text-align: left;
  font-size: 9.5px;
}

.tbl thead th:last-child {
  text-align: right;
}

.tbl tbody tr:nth-child(even) {
  background: #f3f5fb;
}

.tbl tbody td {
  padding: 3.5px 8px;
  color: #222;
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis;
}

.tbl tbody td:last-child {
  text-align: right;
  font-weight: 500;
}

.tbl tfoot td {
  padding: 6px 8px;
  font-weight: 700;
  font-size: 10px;
  background: #dce3f7;
  color: #1a2a4a;
  border-top: 1.5px solid #3b5bdb;
}

.text-right {
  text-align: right;
}

/* Charts */
.chart-hdr {
  font-size: 10px;
  font-weight: 700;
  color: #1a2a4a;
  text-align: center;
  margin-bottom: 6px;
  flex-shrink: 0;
}

.pie-layout {
  display: flex;
  gap: 8px;
  flex: 1;
  min-height: 0;
  align-items: center;
}

.canvas-pie {
  position: relative;
  width: 175px;
  height: 175px;
  flex-shrink: 0;
}

.legend-list {
  display: grid;
  grid-template-columns: 1fr;
  gap: 4px;
}

.leg-item {
  display: flex;
  align-items: center;
  gap: 4px;
  font-size: 9px;
  color: #444;
  white-space: nowrap;
}

.leg-sq {
  width: 8px;
  height: 8px;
  border-radius: 1px;
  flex-shrink: 0;
}

.canvas-bar {
  position: relative;
  flex: 1;
  min-height: 0;
}

.bar-footer {
  display: flex;
  align-items: center;
  gap: 5px;
  margin-top: 15px;
  font-size: 10px;
  color: #666;
  flex-shrink: 0;
}

.legend-sq-total {
  width: 9px;
  height: 9px;
  background: #3b5bdb;
  border-radius: 2px;
  display: inline-block;
}



/* ════════════════════════════════════════════
   SLIDE 3 RIGHT — DUAL MOCKUP (original style)
════════════════════════════════════════════ */
.dual-scene {
  position: relative;
  display: flex;
  align-items: flex-end;
  gap: 0;
  width: 100%;
  margin-bottom: 15%;
}

/* WEB DASHBOARD FRAME */
/* ════════════════════════════════════════════
   ASSET MANAGEMENT DASHBOARD
════════════════════════════════════════════ */
.scene { display:flex; align-items:flex-end; justify-content:center; padding:0; background:transparent; flex:1; position:relative; min-width:0; }
.window { width:100%; height:auto; min-height:480px; border-radius:16px 16px 0 0; overflow:hidden; box-shadow:0 -24px 80px rgba(6,147,227,.12),0 -4px 24px rgba(0,0,0,.08); position:relative; font-family:'Inter',sans-serif; display:flex; flex-direction:column; }
.titlebar { height:32px; background:#f1f3f5; border-bottom:1px solid #e0e4e8; display:flex; align-items:center; padding:0 12px; gap:8px; flex-shrink:0; position:relative; }
.btn-close { width:12px; height:12px; border-radius:50%; background:#ff5f57; border:1px solid #e0443e; cursor:pointer; }
.btn-min { width:12px; height:12px; border-radius:50%; background:#ffbd2e; border:1px solid #dea123; }
.btn-max { width:12px; height:12px; border-radius:50%; background:#28c940; border:1px solid #1aab29; }
.win-title-label { position:absolute; left:0; right:0; text-align:center; font-size:12px; color:#333; font-weight:600; font-family:'Inter',sans-serif; letter-spacing:0.2px; pointer-events:none; }
.app-dashboard { display:flex; flex:1; background:#fff; min-height:0; }
.dashboard-sidebar { width:44px; background:#1e2433; display:flex; flex-direction:column; align-items:center; padding:12px 0; gap:14px; flex-shrink:0; }
.sico { width:28px; height:28px; border-radius:7px; display:flex; align-items:center; justify-content:center; cursor:pointer; transition:background 0.2s; }
.sico svg { opacity:0.5; }
.sico.active { background:rgba(255,255,255,0.12); }
.sico.active svg { opacity:1; }
.sico:hover { background:rgba(255,255,255,0.08); }
.main-dashboard { flex:1; overflow-y:auto; overflow-x:hidden; display:flex; flex-direction:column; }
.topbar { min-height:44px; background:#fff; border-bottom:1px solid #e8eaed; display:flex; align-items:center; padding:8px 16px; gap:12px; flex-shrink:0; flex-wrap:wrap; }
.meta-pills { display:flex; gap:10px; flex-wrap:wrap; }
.meta-pill { display:flex; align-items:center; gap:4px; font-size:10px; color:#666; font-weight:500; white-space:nowrap; }
.meta-pill svg { opacity:0.6; }
.meta-num { font-weight:700; color:#333; }
.period-bar { height:auto; min-height:36px; padding:6px 16px; background:#fff; border-bottom:1px solid #e8eaed; display:flex; align-items:center; gap:4px; flex-shrink:0; overflow-x:auto; white-space:nowrap; scrollbar-width: none; }
.period-bar::-webkit-scrollbar { display: none; }
.per-label { font-size:10px; font-weight:700; color:#999; text-transform:uppercase; letter-spacing:0.8px; margin-right:6px; }
.per-btn { padding:4px 10px; border-radius:5px; font-size:11px; font-weight:500; color:#888; cursor:pointer; transition:all 0.15s; border:none; background:none; font-family:'Inter',sans-serif; }
.per-btn.active { background:#3b82f6; color:#fff; font-weight:600; }
.tabs-bar { min-height:52px; background:#fff; border-bottom:1px solid #e8eaed; display:flex; align-items:flex-end; padding:0 12px; gap:4px; flex-shrink:0; overflow-x:auto; scrollbar-width: none; }
.tabs-bar::-webkit-scrollbar { display: none; }
.dashboard-tab { display:flex; flex-direction:column; align-items:center; gap:3px; padding:6px 10px 8px; cursor:pointer; border-bottom:2px solid transparent; transition:all 0.15s; white-space:nowrap; flex-shrink:0; }
.dashboard-tab.active { border-bottom-color:#3b82f6; }
.dashboard-tab svg { opacity:0.4; }
.dashboard-tab.active svg { opacity:1; }
.tab-lbl { font-size:9.5px; font-weight:600; color:#aaa; letter-spacing:0.3px; text-transform:uppercase; }
.dashboard-tab.active .tab-lbl { color:#3b82f6; }
.dashboard-content { flex:1; overflow-x:hidden; overflow-y:auto; padding:16px; background:#f0f2f5; display:flex; flex-direction:column; gap:14px; }
.view-row { display:flex; align-items:center; gap:8px; flex-wrap:wrap; }
.view-lbl { font-size:11px; font-weight:600; color:#1a1a2e; display:flex; align-items:center; gap:5px; white-space:nowrap; }
.view-lbl::before { content:''; width:7px; height:7px; border-radius:50%; background:#3b82f6; display:inline-block; }
.view-controls { margin-left:auto; display:flex; align-items:center; gap:8px; flex-wrap:wrap; }
.select-mock { font-size:10px; border:1px solid #ddd; border-radius:5px; padding:3px 20px 3px 7px; background:#fff; color:#333; font-family:'Inter',sans-serif; appearance:none; position:relative; }
.toggle-row { display:flex; align-items:center; gap:5px; font-size:10px; color:#666; white-space:nowrap; }
.toggle { width:26px; height:14px; border-radius:7px; background:#3b82f6; position:relative; cursor:pointer; }
.toggle::after { content:''; width:10px; height:10px; border-radius:50%; background:#fff; position:absolute; top:2px; right:2px; transition:right 0.2s; }
.cards-grid { display:grid; grid-template-columns:repeat(auto-fit, minmax(130px, 1fr)); gap:6px; }
.dashboard-card { background:#fff; border-radius:8px; padding:9px 10px; border-top:3px solid #ddd; position:relative; overflow:hidden; opacity:0; transform:translateY(8px); transition:opacity 0.4s ease,transform 0.4s ease; }
.dashboard-card.show { opacity:1; transform:translateY(0); }
.dashboard-card.c-green { border-top-color:#22c55e; }
.dashboard-card.c-red { border-top-color:#ef4444; }
.dashboard-card.c-orange { border-top-color:#f97316; }
.dashboard-card.c-blue { border-top-color:#3b82f6; }
.dashboard-card.c-purple { border-top-color:#a855f7; }
.dashboard-card.c-teal { border-top-color:#14b8a6; }
.dashboard-card.c-pink { border-top-color:#ec4899; }
.dashboard-card.c-indigo { border-top-color:#6366f1; }
.card-label { font-size:9.5px; font-weight:600; color:#999; letter-spacing:0.2px; margin-bottom:3px; }
.dashboard-card.c-green .card-label { color:#16a34a; }
.dashboard-card.c-red .card-label { color:#dc2626; }
.dashboard-card.c-orange .card-label { color:#ea580c; }
.dashboard-card.c-blue .card-label { color:#2563eb; }
.dashboard-card.c-purple .card-label { color:#9333ea; }
.dashboard-card.c-teal .card-label { color:#0d9488; }
.dashboard-card.c-pink .card-label { color:#db2777; }
.dashboard-card.c-indigo .card-label { color:#4f46e5; }
.card-num { font-size:22px; font-weight:800; color:#1a1a2e; line-height:1; margin-bottom:2px; }
.card-sub { font-size:9.5px; color:#bbb; font-weight:500; }
.bottom-strip { background:#fff; border-radius:8px; padding:10px 14px; display:grid; grid-template-columns:repeat(auto-fit, minmax(100px, 1fr)); gap:0; opacity:0; transform:translateY(8px); transition:opacity 0.5s ease,transform 0.5s ease; margin-top:16px; }
.bottom-strip.show { opacity:1; transform:translateY(0); }
.bs-item { padding:0 12px; }
.bs-item:first-child { padding-left:0; }
.bs-item:not(:last-child) { border-right:1px solid #f0f0f0; }
.bs-label { font-size:9px; font-weight:700; text-transform:uppercase; letter-spacing:0.5px; margin-bottom:4px; }
.bs-label.green { color:#22c55e; }
.bs-label.red { color:#ef4444; }
.bs-label.orange { color:#f97316; }
.bs-num { font-size:26px; font-weight:900; color:#1a1a2e; line-height:1; }
.bs-num.red { color:#ef4444; }
.num-anim { display:inline-block; }

/* PHONE WRAP */
.phone-wrap {
  width: 200px;
  margin-bottom: 37px;
  flex-shrink: 0;
  margin-left: -14px;
  z-index: 5;
  position: relative
}

.chip {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  padding: 8px 13px;
  font-family: var(--fh);
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  box-shadow: 0 10px 32px rgba(0, 0, 0, .14);
  border: 1px solid rgba(6, 147, 227, .1);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  z-index: 10
}

.cp1 {
  top: 20px;
  left: -110px;
  animation: fl 4s ease-in-out infinite
}

.cp2 {
  bottom: 90px;
  right: -90px;
  animation: fl 4.5s ease-in-out infinite .8s
}

.cp3 {
  top: 55%;
  left: -100px;
  transform: translateY(-50%);
  animation: fl3 5s ease-in-out infinite 1.6s
}

.cd {
  width: 8px;
  height: 8px;
  border-radius: 50%
}

.iphone {
  width: 200px;
  height: 420px;
  background: linear-gradient(180deg, #1c1c1e, #2a2a2e);
  border-radius: 42px;
  border: 6px solid #333;
  box-shadow: 0 40px 100px rgba(0, 0, 0, .45), 0 0 0 1px #444, inset 0 0 0 1px rgba(255, 255, 255, .07);
  position: relative;
  overflow: hidden
}

.iph-notch {
  position: absolute;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: 72px;
  height: 20px;
  background: #1c1c1e;
  border-radius: 0 0 14px 14px;
  z-index: 10
}

.iph-notch::before {
  content: '';
  position: absolute;
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: #222;
  top: 6px;
  right: 14px
}

.iph-screen {
  position: absolute;
  inset: 0;
  background: #f2f2f7;
  overflow: hidden;
  border-radius: 37px
}

.scan-line {
  position: absolute;
  left: 0;
  right: 0;
  height: 2px;
  background: linear-gradient(90deg, transparent, rgba(6, 147, 227, .7), transparent);
  animation: scanD 2.5s ease-in-out infinite;
  pointer-events: none;
  z-index: 20
}

@keyframes scanD {
  0% {
    top: 32px;
    opacity: .8
  }

  85% {
    opacity: .6
  }

  100% {
    top: 100%;
    opacity: 0
  }
}

.ph-status {
  height: 32px;
  background: #fff;
  display: flex;
  align-items: flex-end;
  justify-content: space-between;
  padding: 0 14px 5px;
  font-family: var(--fh);
  font-size: 8.5px;
  font-weight: 700;
  color: #111
}

.ph-head {
  background: linear-gradient(135deg, var(--blue), var(--blue-dk));
  padding: 9px 12px;
  display: flex;
  align-items: center;
  justify-content: space-between
}

.ph-head-t {
  font-family: var(--fh);
  font-size: 11.5px;
  font-weight: 700;
  color: #fff
}

.ph-head-sub {
  font-family: var(--fb);
  font-size: 8px;
  color: rgba(255, 255, 255, .7);
  margin-top: 1px
}

.ph-bell {
  width: 22px;
  height: 22px;
  background: rgba(255, 255, 255, .2);
  border-radius: 6px;
  display: grid;
  place-items: center
}

.ph-bell svg {
  width: 12px;
  height: 12px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round
}

.ph-search {
  background: #fff;
  margin: 7px 9px;
  border-radius: 7px;
  padding: 6px 9px;
  display: flex;
  align-items: center;
  gap: 5px;
  border: 1px solid rgba(6, 147, 227, .12)
}

.ph-search svg {
  width: 10px;
  height: 10px;
  stroke: #aaa;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  flex-shrink: 0
}

.ph-search span {
  font-family: var(--fb);
  font-size: 9px;
  color: #aaa
}

.ph-stats {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr;
  gap: 5px;
  padding: 4px 9px
}

.ph-stat {
  background: #fff;
  border-radius: 8px;
  padding: 6px;
  text-align: center;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .05)
}

.ph-stat-n {
  font-family: var(--fh);
  font-size: 12px;
  font-weight: 800;
  color: var(--navy);
  line-height: 1
}

.ph-stat-l {
  font-family: var(--fb);
  font-size: 7.5px;
  color: #888;
  margin-top: 1px
}

.ph-list-hdr {
  font-family: var(--fh);
  font-size: 8.5px;
  font-weight: 600;
  color: #888;
  letter-spacing: 1px;
  text-transform: uppercase;
  padding: 6px 11px 2px
}

.ph-list {
  padding: 0 9px;
  display: flex;
  flex-direction: column;
  gap: 5px
}

.a-item {
  background: #fff;
  border-radius: 9px;
  padding: 8px 9px;
  display: flex;
  align-items: center;
  gap: 7px;
  box-shadow: 0 2px 8px rgba(0, 0, 0, .05);
  transform: translateX(110%);
  opacity: 0;
  transition: transform .55s cubic-bezier(.34, 1.3, .64, 1), opacity .4s ease
}

.a-item.in {
  transform: translateX(0);
  opacity: 1
}

.a-icon {
  width: 28px;
  height: 28px;
  border-radius: 7px;
  display: grid;
  place-items: center;
  flex-shrink: 0;
  font-size: 13px
}

.a-info {
  flex: 1;
  min-width: 0
}

.a-name {
  font-family: var(--fh);
  font-size: 9px;
  font-weight: 700;
  color: var(--navy);
  white-space: nowrap;
  overflow: hidden;
  text-overflow: ellipsis
}

.a-meta {
  font-family: var(--fb);
  font-size: 7.5px;
  color: #888;
  margin-top: 1px
}

.a-badge {
  font-family: var(--fh);
  font-size: 7.5px;
  font-weight: 700;
  padding: 2px 6px;
  border-radius: 8px;
  flex-shrink: 0
}

.ba {
  background: rgba(6, 147, 227, .12);
  color: var(--blue-dk)
}

.bb {
  background: rgba(35, 191, 68, .12);
  color: var(--green-dk)
}

.bw {
  background: rgba(244, 185, 31, .15);
  color: #c47800
}

.ph-tabs {
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  background: #fff;
  border-top: 1px solid #eee;
  display: flex;
  justify-content: space-around;
  padding: 7px 0 11px
}

.ph-tab {
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: 2px;
  font-family: var(--fh);
  font-size: 7px;
  font-weight: 600;
  color: #bbb
}

.ph-tab.active {
  color: var(--blue)
}

.ph-tab svg {
  width: 15px;
  height: 15px;
  stroke: currentColor;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round
}

/* ════════════════════════════════════════════
   FLOATING CHIPS (Slide 1)
════════════════════════════════════════════ */
.float-chip {
  position: absolute;
  background: #fff;
  border-radius: 12px;
  padding: 8px 13px;
  font-family: var(--fh);
  font-size: 11px;
  font-weight: 700;
  color: var(--navy);
  box-shadow: 0 10px 32px rgba(0, 0, 0, .13);
  border: 1px solid rgba(6, 147, 227, .1);
  display: flex;
  align-items: center;
  gap: 8px;
  white-space: nowrap;
  z-index: 10
}

.fc2 {
  bottom: 100px;
  right: -70px;
  animation: fl 4.5s ease-in-out infinite .8s
}

.fcd {
  width: 8px;
  height: 8px;
  border-radius: 50%
}

@keyframes fl {

  0%,
  100% {
    transform: translateY(0)
  }

  50% {
    transform: translateY(-8px)
  }
}

@keyframes fl3 {

  0%,
  100% {
    transform: translateY(-50%)
  }

  50% {
    transform: translateY(calc(-50% - 8px))
  }
}

/* ════════════════════════════════════════════
   RESPONSIVE
════════════════════════════════════════════ */
@media(max-width:1100px) {
  .nav-links a {
    font-size: 12px;
    padding: 6px 7px
  }
}

@media(max-width:960px) {
  .nav-links {
    display: none
  }

  .nav-actions {
    display: none
  }

  .hamburger {
    display: flex
  }

  .hero-slide {
    grid-template-columns: 1fr;
    padding: 140px 5% 0;
    gap: 32px;
    align-items: flex-start;
  }

  .hero-lft {
    padding-bottom: 0;
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .hero-sub {
    margin: 0 auto 30px;
    text-align: center
  }

  .hero-btns {
    justify-content: center
  }

  .hero-kpis {
    justify-content: center
  }

  .hero-rt {
    justify-content: center;
    padding-bottom: 0
  }

   /*Slide 1 — stack phone + FAR panel vertically, both visible */
   /*Slide 1 — FAR panel full width, phone overlapping right edge center */
  .right-panel {
    display: block;
    padding-bottom: 32px;
    padding-right: 10px;
    position: relative;
    width: 100%;
  }

  .far-panel {
    display: flex;
    flex-direction: column;
    width: 100%;
    max-width: 100%;
    padding-right: 130px;
    padding-left: 20px;

  }

  .iphone-s1 {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    z-index: 20;
    width: 148px;
    height: 308px;
  }

  /* Collapse FAR grid to 3 cols — drop Asset Type & Location columns */
  .far-cols {
    grid-template-columns: 24px 80px 1fr 82px;
    gap: 8px;
  }

  .far-row {
    grid-template-columns: 24px 80px 1fr 82px;
    gap: 8px;
  }

  .far-cols .fch:nth-child(4),
  .far-cols .fch:nth-child(5),
  .far-row .fd:nth-child(4),
  .far-row .fd:nth-child(5) {
    display: none;
  }

  .fch {
    font-size: 8px;
  }

  .fd {
    font-size: 8.5px;
  }

  /* Slide 2 — Windows Audit Report Stacking */
  #slide-1 .hero-rt {
    padding-top: 20px;
    width: 100%;
  }

  .win {
    width: 100% !important;
    max-width: 540px;
    height: auto !important;
    min-height: 300px;
    transform: translateY(0) !important;
    margin: 0 auto;
  }

  .content {
    grid-template-columns: 1fr !important;
    grid-template-rows: repeat(4, auto) !important;
    gap: 15px !important;
    padding: 15px !important;
    height: auto !important;
    overflow: visible !important;
  }

  .card {
    grid-column: auto !important;
    grid-row: auto !important;
    min-height: 220px;
  }

  .pie-layout {
    flex-direction: column;
    gap: 12px;
  }

  .canvas-pie,
  .canvas-bar {
    height: 160px !important;
    width: 100% !important;
    max-width: 100%;
  }

  /* Slide 3 — web frame full width, phone on right edge center */
  .dual-scene {
    position: relative;
    display: block;
    right: 5px;
  }

  .web-frame {
    min-height: 360px;
    border-radius: 12px 12px 0 0
  }

  .phone-wrap {
    position: absolute;
    right: 2px;
    top: 0;
    bottom: 0;
    margin: auto;
    height: 336px;
    width: 160px;
    z-index: 20;
    display: block;
  }

  .iphone {
    width: 160px;
    height: 336px;
  }

  /* Compact asset list so 3-4 rows fit in the smaller phone */
  .ph-list {
    gap: 3px;
    padding: 0 6px
  }

  .a-item {
    padding: 5px 6px;
    gap: 5px;
    border-radius: 7px
  }

  .a-icon {
    width: 20px;
    height: 20px;
    font-size: 10px;
    border-radius: 5px
  }

  .a-name {
    font-size: 7.5px
  }

  .a-meta {
    font-size: 6.5px
  }

  .a-badge {
    font-size: 6.5px;
    padding: 1px 5px
  }

  .ph-list-hdr {
    font-size: 7px;
    padding: 3px 8px 2px
  }

  .chip {
    display: none
  }

  .audit-panel {
    max-width: 100%
  }

  .float-chip {
    display: none
  }

  .hero-slides {
    min-height: auto;
    position: relative
  }

  .hero-slide {
    position: relative;
    inset: auto;
    opacity: 1;
    transform: none;
    pointer-events: all
  }

  .hero-slide:not(.active) {
    display: none
  }

  .hero-slide.exit {
    display: none
  }

  .hero-section {
    min-height: auto;
    overflow: visible
  }

  .fc1,
  .fc2,
  .fc3 {
    display: none
  }
}

@media(max-width:640px) {
  .section {
    padding: 50px 5%;
  }

  .hero-slide {
    padding: 32px 4% 0;
    gap: 24px
  }

  .hero-h1 {
    font-size: clamp(24px, 7vw, 36px)
  }

  .hero-sub {
    font-size: 14px
  }

  .stat-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .hero-kpis {
    flex-direction: column;
    width: 100%;
    max-width: 300px
  }

  .kpi-card {
    width: 100%
  }

  .right-panel {
    padding-bottom: 24px
  }

  .trust-bar-1 {
    flex-direction: column;
    gap: 10px;
    padding: 14px 5%
  }

  .hero1-desc {
    font-size: 16px !important;
    line-height: 1.6;
  }
}


/* ── Mobile & Tablet Media Queries for hero dots── */
@media (max-width: 1024px) {
  .hero-dots-bar {
    gap: 20px;
     Reduces spacing between your dot-labels 
    bottom: 40px;
  }

  .hero-dot-item {
    width: 120px;
     Smaller label footprint 
  }
}

@media (max-width: 768px) {
  .hero-main-content {
    flex-direction: column;
    /* Stacks iPhone and Table vertically on mobile */
    gap: 20px;
  }

  .dot-label {
    display: none;
    /* Hide labels on small phones to keep UI clean, dots only */
  }

  .hero-dot-item {
    width: auto;
  }
}










/* ── TRUSTED BY PREMIUM SECTION ── */
.trust-bar-premium {
  background: #ffffff; 
  padding: 40px 0;    /* Increased height */
  display: flex;
  align-items: center;
  gap: 30px;
  overflow: hidden;
  border-top: 1px solid rgba(0,0,0,0.03);
  border-bottom: 1px solid rgba(0,0,0,0.03);
}

.trust-label-box {
  padding-left: 5%;
  z-index: 5;
}

.trust-label {
  font-family: 'Inter', sans-serif;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0f172A;
  white-space: nowrap;
}

.trust-scroll-container {
  flex: 1;
  overflow: hidden;
  position: relative;
}

/* Fading edges to make logos appear/disappear smoothly */
.trust-scroll-container::before,
.trust-scroll-container::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

.trust-scroll-container::before {
  left: 0;
  background: linear-gradient(to right,#ffffff, transparent);
}

.trust-scroll-container::after {
  right: 0;
  background: linear-gradient(to left, #ffffff, transparent);
}

.trust-ticker-inner {
  display: flex;
  align-items: center;
  gap: 80px; /* Spacing between logos */
  animation: tickerScroll 40s linear infinite; /* Keeps your original speed */
  width: max-content;
}

.trust-logo {
  height: 60px; /* Adjust this to make logos bigger or smaller */
  width: auto;
  opacity: 0.8; /* Subtle transparency */
  filter: grayscale(100%); /* Keeps logos professional (optional) */
  transition: all 0.3s ease;
}

.trust-logo {
  height: 60px; 
  width: auto;
  opacity: 1;           /* Changed from 0.8 to 1 */
  filter: grayscale(0%); /* Changed from 100% to 0% */
  transition: none;      /* Removed transition since there is no hover */
}

@keyframes tickerScroll {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-50%); /* Moves exactly half the width for seamless loop */
  }
}

/* Mobile responsive adjustments */
@media (max-width: 768px) {
  .trust-bar-premium {
    flex-direction: column;
    padding: 30px 0;
  }
  .trust-label-box {
    padding-left: 0;
    margin-bottom: 20px;
  }
  .trust-logo {
    height: 45px;
  }
}


/* .trust{padding:40px 5%;border-bottom:1px solid var(--border);background:var(--white)}
.trust-label{font-size:12px;font-weight:600;letter-spacing:1.5px;text-transform:uppercase;color:var(--muted);text-align:center;margin-bottom:24px}
.trust-logos{display:flex;gap:40px;align-items:center;justify-content:center;flex-wrap:wrap}
.trust-logo-pill{background:var(--bg);border:1px solid var(--border);border-radius:8px;padding:10px 20px;font-size:13px;font-weight:700;color:var(--muted);letter-spacing:.3px} */

/* ── SECTION COMMONS ── */
.section {
  padding: 80px 5%;
  background: #ffffff;
  scroll-snap-align: start;
}

.section-label {
  font-size: 20px;
  font-family: var(--fh);
  font-weight: 1000;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0693e3;
  margin-bottom: 10px
}

.section-title {
  font-family: var(--font-head);
  font-size: clamp(26px, 3vw, 38px);
  font-weight: 700;
  color: black;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -.5px
}

.section-sub {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.75;
  max-width: 560px
}

.section-header {
  margin-bottom: 52px
}

.section-header.centered {
  text-align: center
}

.section-header.centered .section-sub {
  margin: 0 auto
}

.btn-link {
  font-size: 14px;
  font-weight: 700;
  color: var(--teal);
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .15s
}

.btn-link:hover {
  gap: 10px
}

.btn-link svg {
  width: 16px;
  height: 16px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round
}

/* .section-title-insider{color:var(--blue);} */
.section-title-insider {
  color: #0693e3;
  display: inline;
  /* Keeps it on the same line */
}

.section-title-big {
  color: #0f172a;
}



/* ── FEATURES ── */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

/* .feat-card{background:var(--white);border:1px solid var(--border);border-radius:var(--r-lg);padding:28px;transition:all .2s;cursor:default} */
/* .feat-card:hover{border-color:var(--teal);transform:translateY(-3px);box-shadow:0 16px 40px rgba(0,167,157,.1)} */

.feat-card {
  position: relative;
  overflow: hidden;
  /* Keeps the bottom line inside the card */
  background: rgba(255, 255, 255, .96);
  border: 1px solid #e2e8f0;
  transition: all 0.3s ease;
  /* Overall transition */
  border-radius: 25px;
  padding: 40px 30px;
}

.feat-card::after {
  content: "";
  position: absolute;
  bottom: 0;
  left: -100%;
  /* Start off-screen to the left */
  width: 100%;
  height: 4px;
  /* Thickness of the bottom line */
  background: linear-gradient(to right, #0ea5e9, #22c55e);
  /* Blue to Green */
  transition: left 0.4s ease;
  /* Fast transition for the line */
}

.feat-card:hover {
  /* 2. Blue Glowing Border */
  /* border-color: #0ea5e9; */
  box-shadow: 0 0 20px rgba(14, 165, 233, 0.4);
  transform: translateY(-5px);
  Border: 1px solid #0ea5e9;
}

/* Optional: slight lift effect */

.feat-card:hover::after {
  left: 0;
  /* Slides in from left to right */
}

.feat-hdr {
  display: flex;
  align-items: center;
  gap: 16px;
  margin-bottom: 18px;
}

.feat-icon {
  width: 48px;
  height: 48px;
  border-radius: 12px;
  background: var(--teal-light);
  display: flex;
  align-items: center;
  justify-content: center;
}

.feat-icon svg {
  width: 24px;
  height: 24px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round
}

.feat-card h3 {
  font-family: var(--font-head);
  font-size: 17px;
  font-weight: 700;
  color: var(--navy);
}

.feat-card h4 {
  font-family: var(--font-head);
  font-size: 14px;
  font-weight: 900;
  color: #28332ebe;
  margin-bottom: 10px
}

.feat-card p {
  font-size: 13.5px;
  color: var(--ink-soft);
  line-height: 1.7
}

.feat-card .feat-tag {
  display: inline-flex;
  margin-top: 14px;
  background: var(--teal-light);
  color: var(--teal-dark);
  font-size: 11px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 20px
}

/* ── HOW IT WORKS ── */

/* Updated container to allow vertical stacking */

.trust-bar-1 {
  background: var(--navy);
  padding: 12px 5%;
  display: flex;
  align-items: center;
  gap: 20px;
  overflow: hidden;
  border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

.tb-lbl-small {
  font-family: var(--fh);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: rgba(255, 255, 255, .35);
  white-space: nowrap;
}

.tb-scroll-small {
  flex: 1;
  overflow: hidden;
  position: relative;
  padding: 10px 0;
}

/* Fades specifically for the dark Navy bar */
.tb-scroll-small::before,
.tb-scroll-small::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 40px;
  z-index: 2;
  pointer-events: none;
}

.tb-scroll-small::before {
  left: 0;
  background: linear-gradient(to right, var(--navy), transparent);
}

.tb-scroll-small::after {
  right: 0;
  background: linear-gradient(to left, var(--navy), transparent);
}

.tb-inner-small {
  display: flex;
  gap: 24px;
  animation: tickerSmall 40s linear infinite;
  width: max-content;
}

.tb-item-small {
  font-family: var(--fh);
  font-size: 11.5px;
  font-weight: 600;
  color: rgba(255, 255, 255, 0.95);
  /* Highlighted all the time */
  padding: 6px 16px;
  background: rgba(255, 255, 255, 0.06);
  /* Subtle glass effect */
  border: 1px solid rgba(255, 255, 255, 0.25);
  border-radius: 6px;
  white-space: nowrap;
  transition: all .25s cubic-bezier(0.4, 0, 0.2, 1);
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
  backface-visibility: hidden;
  -webkit-backface-visibility: hidden;
}

.tb-item-small:hover {
  color: #fff;
  border-color: #0693e3;
  /* Levantare Blue on hover */
  background: rgba(255, 255, 255, 0.12);
  transform: translateY(-1px);
  box-shadow: 0 6px 16px rgba(6, 147, 227, 0.25);
}

/* Unique animation name to prevent conflicts */
@keyframes tickerSmall {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}


.trust-bar-2 {
  /* Shining metallic silver gradient */
  background: linear-gradient(135deg, #f8f9fa 0%, #e2e8f0 25%, #ffffff 50%, #cbd5e1 75%, #94a3b8 100%);
  padding: 80px 5% 60px;
  display: block;
  overflow: hidden;
  text-align: center;
  border-top: 1px solid rgba(255, 255, 255, 0.8);
  /* Adds a "top light" edge effect */
}

.tb-header-content {
  margin-bottom: 50px;
  max-width: 900px;
  margin-left: auto;
  margin-right: auto;
}

.tb-sub {
  font-family: var(--fh);
  font-size: 16px;
  color: #64748b;
  /* Medium slate for visibility on silver */
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: 12px;
}

.tb-title {
  font-family: var(--fh);
  font-size: 48px;
  /* Slightly larger for impact */
  font-weight: 800;
  margin-bottom: 20px;
  /* High-contrast gradient for the logo colors */
  background: linear-gradient(to right, #0369a1, #15803d);
  -webkit-background-clip: text;
  background-clip: text;
  -webkit-text-fill-color: transparent;
  filter: drop-shadow(0 2px 4px rgba(0, 0, 0, 0.1));
}

.tb-desc {
  font-family: var(--fh);
  font-size: 19px;
  color: #1e293b;
  /* Deep navy-slate for crisp readability */
  line-height: 1.6;
  max-width: 750px;
  margin: 0 auto;
}

.tb-lbl {
  display: block;
  font-family: var(--fh);
  font-size: 14px;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: #94a3b8;
  /* Subtle gray */
  margin-bottom: 30px;
}

.tb-scroll {
  width: 100%;
  overflow: hidden;
  position: relative;
}

/* Fades updated to match the silver background instead of Navy */
.tb-scroll::before,
.tb-scroll::after {
  content: '';
  position: absolute;
  top: 0;
  bottom: 0;
  width: 100px;
  z-index: 2;
  pointer-events: none;
}

/* Matches the ends of the silver gradient */
.tb-scroll::before {
  left: 0;
  background: linear-gradient(to right, #f8f9fa, transparent);
}

.tb-scroll::after {
  right: 0;
  background: linear-gradient(to left, #94a3b8, transparent);
}

.tb-inner {
  display: flex;
  gap: 24px;
  animation: ticker 30s linear infinite;
  /* Smoother, slower scroll */
  width: max-content;
}

.tb-item {
  font-family: var(--fh);
  font-size: 15.5px;
  font-weight: 600;
  color: #334155;
  /* Dark text for light background */
  padding: 10px 22px;
  background: rgba(255, 255, 255, 0.4);
  /* Glass effect */
  border: 1px solid rgba(0, 0, 0, 0.1);
  /* Subtle dark border */
  border-radius: 12px;
  white-space: nowrap;
  transition: all .3s cubic-bezier(0.4, 0, 0.2, 1);
}

.tb-item:hover {
  color: #0369a1;
  border-color: #0ea5e9;
  background: #ffffff;
  transform: scale(1.05);
  box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1);
}

@keyframes ticker {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}


/* .trust-bar-2{background:var(--navy);padding:30px 5%;display:flex;align-items:center;gap:20px;overflow:hidden}
.tb-lbl{font-family:var(--fh);font-size:23.5px;font-weight:600;letter-spacing:2px;text-transform:uppercase;color:rgba(255,255,255,.35);white-space:nowrap}
.tb-scroll{flex:1;overflow:hidden;position:relative}
.tb-scroll::before,.tb-scroll::after{content:'';position:absolute;top:0;bottom:0;width:40px;z-index:2;pointer-events:none}
.tb-scroll::before{left:0;background:linear-gradient(to right,var(--navy),transparent)}
.tb-scroll::after{right:0;background:linear-gradient(to left,var(--navy),transparent)}
.tb-inner{display:flex;gap:24px;animation:ticker 20s linear infinite;width:max-content}
.tb-item{font-family:var(--fh);font-size:15.5px;font-weight:600;color:rgba(255,255,255,.45);padding:5px 14px;border:1px solid rgba(255,255,255,.1);border-radius:5px;white-space:nowrap;transition:color .2s}
.tb-item:hover{color:rgba(255,255,255,.85)}
@keyframes ticker{0%{transform:translateX(0)}100%{transform:translateX(-50%)}} */




/* .how-bg{background:var(--bg)}
.steps{display:grid;grid-template-columns:repeat(4,1fr);gap:0;position:relative}
.steps::before{content:'';position:absolute;top:40px;left:10%;right:10%;height:2px;background:linear-gradient(90deg,var(--teal-light),var(--teal),var(--teal-light));z-index:0}
.step{text-align:center;padding:0 16px;position:relative;z-index:1}
.step-num{width:80px;height:80px;border-radius:50%;background:var(--white);border:3px solid var(--teal);color:var(--teal);font-family:var(--font-head);font-size:24px;font-weight:700;display:flex;align-items:center;justify-content:center;margin:0 auto 20px;position:relative;z-index:2}
.step-num.active{background:var(--teal);color:#fff}
.step h4{font-family:var(--font-head);font-size:15px;font-weight:700;color:var(--navy);margin-bottom:8px}
.step p{font-size:13px;color:var(--muted);line-height:1.65} */


/* ── industries we serve SOLUTIONS ── */
.container {
  padding: 80px 5%;
  /* Matches the .section padding for consistent full width */
  width: 100%;
  box-sizing: border-box;
  scroll-snap-align: start;
}

/* Updated Header to match .section-header and .section-sub */
.sidebar {
  max-width: 560px;
  /* Matches .section-sub for consistent text block sizing */
  margin-bottom: 52px;
  /* Matches .section-header margin */
}

.badge {
  font-size: 20px;
  font-family: var(--fh);
  font-weight: 1000;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #0693e3;
  margin-bottom: 17px
}


.main-title {
  font-family: 'Inter', sans-serif;
  /* Ensuring consistency with your body font */
  font-size: clamp(26px, 3vw, 42px);
  /* Responsive sizing like your upper section */
  font-weight: 700;
  color: #0f172a;
  line-height: 1.2;
  margin-bottom: 12px;
  letter-spacing: -.5px;
}

.description {
  font-size: 15px;
  color: var(--ink-soft);
  line-height: 1.75;
  margin-bottom: 24px !important;
}

/* EXPLORE ALL link styling to match .btn-link */
.btn-outline {
  font-size: 14px;
  font-weight: 700;
  color: #2563eb !important;
  text-decoration: none;
  display: inline-flex;
  align-items: center;
  gap: 6px;
  transition: gap .15s;
}

.btn-outline:hover {
  gap: 10px;
  background: transparent;
  /* Removing the button box for the link style */
}

/* GRID LAYOUT: Stretches to fill the 5% margin-defined width */
.industry-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  width: 100%;
}

/* CARD STYLING: Wider and more modern */
.card {
  border: 1px solid #e2e8f0;
  border-radius: 16px;
  padding: 32px;
  background: #ffffff;
  transition: all 0.3s ease;
  display: flex;
  flex-direction: column;
  gap: 12px;
}

.card:hover {
  border-color: #3b82f6;
  transform: translateY(-4px) !important;
  box-shadow: 0 12px 24px rgba(0, 0, 0, 0.05);
}

/* Responsive adjustments */
@media (max-width: 1024px) {
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }
}

@media (max-width: 640px) {
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .container {
    padding: 60px 5%;
  }

  .description {
    color: #64748b;
  }
}

/* ICON BOX: Removed the heavy borders to match the first image */
.icon-box {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 10px;
}

.icon-box img {
  width: 32px;
  height: 32px;
}

.card h3 {
  font-size: 18px;
  font-weight: 700;
  color: #1e293b;
  margin: 0;
}

.card p {
  font-size: 14px;
  line-height: 1.5;
  color: var(--ink-soft);
  margin: 0;
}

/* FULL WIDTH FOOTER: The dark banner at the bottom */
.full-width-footer {
  grid-column: span 3;
  background-color: #0f172a;
  color: white;
  border-radius: 12px;
  padding: 67px;
  text-align: center;
  /* margin-top: 20px; */
  display: flex;
  align-items: center;
  justify-content: center;
}

.footer-content {
  display: flex;
  align-items: center;
  gap: 15px;
  font-size: 20px;
  font-weight: 600;
}

/* Responsive Fixes */
@media (max-width: 1024px) {
  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .full-width-footer {
    grid-column: span 2;
  }
}

@media (max-width: 640px) {
  .industry-grid {
    grid-template-columns: 1fr;
  }

  .full-width-footer {
    grid-column: span 1;
  }

  .main-title {
    font-size: 32px;
  }
}


/* .solutions-grid{display:grid;grid-template-columns:repeat(4,1fr);gap:16px}
.sol-card{background:var(--white);border:1px solid var(--border);border-radius:var(--r);padding:20px;text-align:center;transition:all .2s;cursor:pointer}
.sol-card:hover{border-color:var(--teal);background:var(--teal-light);transform:translateY(-2px)}
.sol-icon{font-size:30px;margin-bottom:12px}
.sol-card h4{font-size:13.5px;font-weight:700;color:var(--navy)} */


/* ── TRIO SPLIT CTA ── */
/* --- TRIO GRID CONTAINER --- */
/* --- TRIO GRID CONTAINER --- */
.trio-wrapper {
  margin: 30px 2%;
  scroll-snap-align: start;
}

.trio-title {
  width: 100%;
  text-align: center;
  font-family: var(--fh);
  font-size: 18px;
  font-weight: 900;
  line-height: 1.2;
  color: #0693e3;
  margin-bottom: 25px;
  letter-spacing: 2px;
  text-transform: uppercase;
}

.trio-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 0;
  border-radius: 16px;
  /* Applied here so overflow hidden works */
  overflow: hidden;
  border: 1px solid rgba(255, 255, 255, 0.08);
}

.trio-grid .card {
  padding: 25px 30px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  justify-content: center;
  min-height: 380px;
  background: #0d1f35;
  border-radius: 0;
  border: none;
  gap: 10px;
}

/* Rounded corners for the grid group */
.trio-grid .card:first-child {
  border-top-left-radius: 16px;
  border-bottom-left-radius: 16px;
}

.trio-grid .card:last-child {
  border-top-right-radius: 16px;
  border-bottom-right-radius: 16px;
}

.trio-grid .navy-card {
  background: #056195;
}

.trio-grid .slate-card {
  background: linear-gradient(135deg, #1399cc 0%, #19b1aa 40%, #13cc8d 80%, #1399cc 100%);
}

.trio-grid .teal-card {
  background: #056195;
}

.trio-grid .section-label {
  font-size: 11px;
  font-weight: 700;
  letter-spacing: 1.5px;
  margin-bottom: 8px;
  display: block;
  color: #fff;
  text-transform: uppercase;
}

.trio-grid .section-title {
  color: #fff;
  font-size: 24px;
  /* Increased slightly for impact */
  font-weight: 700;
  margin-bottom: 14px;
  line-height: 1.25;
}

.trio-grid .card p {
  color: #fff !important;
  font-size: 14px;
  line-height: 1.6;
  margin-bottom: 24px;
  max-width: 280px;
  /* Limits width to keep text centered and readable */
}

/* Centering the Metric Rows */
.metric-row {
  display: flex;
  gap: 40px;
  margin-bottom: 32px;
  justify-content: center;
  /* Centers the stats */
}

.metric-num {
  font-size: 36px;
  font-weight: 700;
  color: #fff;
  line-height: 1;
  margin-bottom: 8px;
}

.metric-label {
  font-size: 10px;
  color: rgba(255, 255, 255, 0.8);
  text-transform: uppercase;
  letter-spacing: 1px;
}

.btn-white {
  align-self: center;
  /* Changed from flex-start to center */
  padding: 12px 28px;
  background: #fff;
  /* Filled background as per modern UI trends */
  color: #056195;
  /* Text color matches card theme */
  text-decoration: none;
  border-radius: 8px;
  font-weight: 700;
  font-size: 14px;
  border: none;
  transition: transform 0.2s, box-shadow 0.2s;
}

.btn-white:hover {
  transform: translateY(-2px);
  box-shadow: 0 5px 15px rgba(0, 0, 0, 0.2);
}

/* Responsive */
@media (max-width: 900px) {
  .trio-grid {
    grid-template-columns: 1fr;
    margin: 40px 5%;
    border-radius: 16px;
  }

  .trio-grid .card {
    border-right: none;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    min-height: auto;
    padding: 50px 20px;
  }
}


/* achievements-section */

/* --- 1. Background Section (Modern White) --- */
.achievements-section {
  background-color: #ffffff;
  padding: 20px 5% 40px;
  font-family: 'Poppins', sans-serif;
  /*background: radial-gradient(circle at center, #f0f9ff 0%, #e0f2fe 100%);*/
}

/* Container to center and align the cards */
.achievements-container {
  max-width: 1200px;
  margin: 0 auto;
  display: flex;
  justify-content: center;
  gap: 30px;
  /* Space between cards */
  flex-wrap: wrap;
  /* Wraps neatly on smaller screens */
}

/* --- 2. The Card Itself (Moving Gradient Base) --- */
.achievement-card {
  width: 320px;
  height: 200px;
  /* Fixed height for consistent look */
  border-radius: 20px;
  /* Modern, large rounded corners */
  padding: 24px;
  box-sizing: border-box;
  color: #ffffff;
  /* White text for contrast */
  position: relative;
  overflow: hidden;
  /* Keeps the moving gradient contained */

  /* Use a background gradient image and size it large to allow movement */
  background: linear-gradient(135deg,
      #1399cc 0%,
      /* Deep Blue */
      #19b1aa 40%,
      /* Teal */
      #13cc8d 80%,
      /* Green */
      #1399cc 100%
      /* Blends back to blue */
    );
  background-size: 300% 300%;
  /* Make the background huge */

  /* Add a modern shadow that gets deeper on hover */
  box-shadow: 0 10px 30px -5px rgba(0, 0, 0, 0.15);

  /* Add smooth transition to EVERYTHING for performant hovers */
  transition: all 0.35s cubic-bezier(0.4, 0, 0.2, 1);
}

/* --- 3. Live Gradient Movement Animation --- */
.achievement-card {
  animation: flowingGradient 12s ease infinite;
  /* Slow, gentle flow */
}

@keyframes flowingGradient {
  0% {
    background-position: 0% 50%;
  }

  50% {
    background-position: 100% 50%;
  }

  100% {
    background-position: 0% 50%;
  }
}

/* --- 4. Hover Transition (Scale and Depth) --- */
.achievement-card:hover {
  transform: translateY(-8px) scale(1.03);
  /* Lift up and slight scale */
  box-shadow: 0 20px 40px -10px rgba(0, 0, 0, 0.35);
  /* Deeper, softer shadow */
}

/* --- 5. Internal Card Styling (Modern Layout) --- */
.card-inner {
  display: flex;
  flex-direction: column;
  justify-content: space-between;
  height: 100%;
}

/* New Modern Icon Style (no standard borders) */
.card-icon {
  width: 48px;
  height: 48px;
  display: flex;
  align-items: center;
  justify-content: center;

  /* Creates a modern "glassy" effect for the icon base */
  /* background: rgba(255, 255, 255, 0.15); */
  /* backdrop-filter: blur(5px); */
  border-radius: 12px;

  margin-bottom: 20px;
}

.card-icon svg {
  width: 24px;
  height: 24px;
  fill: #ffffff;
  /* Make the icon white */
}

.card-title {
  font-size: 14px;
  font-weight: 700;
  /* Regular weight, slightly subtle */
  color: rgba(255, 255, 255, 0.7);
  /* Slightly transparent white */
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin: 0;
  margin-top: auto;
  /* Push it towards the bottom text */
}

.card-number {
  font-size: 36px;
  font-weight: 700;
  /* Bold, clear number */
  line-height: 1.1;
  margin: 0;
  margin-top: 4px;
}

.achievement-card .card-title {
  color: #fff;
}

/* ── TESTIMONIAL CAROUSEL STYLES ── */
/* ── TESTIMONIAL SECTION – MODERN COVERFLOW ── */
.testimonials-bg {
  /*background: linear-gradient(135deg, #f8fafc 0%, #eef2ff 100%);*/
  padding: 80px 0;
  position: relative;
  overflow: hidden;
  /* Important for 3D overflow */
  scroll-snap-align: start;
}

.testimonial-carousel-container {
  max-width: 1200px;
  margin: 0 auto;
  position: relative;
  perspective: 1500px;
  /* Creates the 3D depth */
}

.testimonial-track-wrapper {
  overflow: visible;
  /* Allows cards to "pop" out of the container */
  padding: 40px 0;
}

.testimonial-track {
  display: flex;
  align-items: center;
  transition: transform 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  transform-style: preserve-3d;
  gap: 0;
  /* Gap is managed by 3D transforms */
}

/* ── GRADIENT & 3D CARD STYLES ── */
.testimonial-track .testi-card {
  flex: 0 0 400px;
  /* Fixed width for consistent 3D effect */
  background: linear-gradient(145deg, rgba(255, 255, 255, 0.9) 0%, rgba(240, 253, 250, 0.9) 100%);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(0, 167, 157, 0.1);
  border-radius: 24px;
  padding: 32px;
  display: flex;
  flex-direction: column;
  gap: 20px;

  /* Initial 3D State (Side Cards) */
  opacity: 0.5;
  filter: blur(2px);
  transform: scale(0.8) rotateY(45deg);
  transition: all 0.6s cubic-bezier(0.23, 1, 0.32, 1);
  box-shadow: 0 10px 30px rgba(0, 0, 0, 0.05);
}

/* The Active (Center) Card */
.testimonial-track .testi-card.active {
  opacity: 1;
  filter: blur(0);
  transform: scale(1.1) rotateY(0deg);
  /* Pops forward and flattens */
  z-index: 10;
  box-shadow: 0 25px 60px -12px rgba(0, 167, 157, 0.25);
  border: 1px solid var(--teal);
  background: #ffffff;
}

/* Cards to the right of the active card */
.testimonial-track .testi-card.active~.testi-card {
  transform: scale(0.8) rotateY(-45deg);
}

.testi-quote {
  font-size: 15px;
  color: var(--text);
  line-height: 1.8;
  font-style: italic;
  min-height: 100px;
}

.testi-author {
  display: flex;
  align-items: center;
  width: 100%;
  overflow: hidden;
}

.testi-author>div {
  min-width: 0;
  /* Allows text truncation if needed */
}


/* ── CONTROLS (WITHOUT DOTS) ── */
.carousel-controls {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 60px;
  /* Increased gap since dots are gone */
  margin-top: 50px;
}

.carousel-btn {
  width: 50px;
  height: 50px;
  background: #ffffff;
  border: 1px solid var(--line);
  border-radius: 18px;
  box-shadow: 0 4px 12px rgba(0, 0, 0, 0.05);
  color: var(--teal);
}

.carousel-btn:hover {
  background: var(--teal);
  color: #fff;
  transform: translateY(-2px);
}

/* ── RESPONSIVENESS ── */
@media (max-width: 768px) {
  .testimonial-track .testi-card {
    flex: 0 0 300px;
    /* Smaller cards for mobile */
    padding: 24px;
  }

  .testimonial-track .testi-card.active {
    transform: scale(1.05) rotateY(0deg);
  }

  .carousel-controls {
    gap: 30px;
  }
}

/* Hide pagination dots as requested */
.carousel-pagination {
  display: none !important;
}

/* ── BLOG ── */
.blog-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px
}

.blog-card {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: var(--r-lg);
  overflow: hidden;
  transition: all .2s;
  cursor: pointer
}

.blog-card:hover {
  border-color: var(--teal);
  transform: translateY(-3px);
  box-shadow: 0 16px 40px rgba(0, 0, 0, .07)
}

.blog-img {
  height: 180px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 48px;
  position: relative;
  overflow: hidden
}

.blog-img-tag {
  position: absolute;
  top: 12px;
  left: 12px;
  background: var(--orange);
  color: #fff;
  font-size: 11px;
  font-weight: 700;
  padding: 4px 10px;
  border-radius: 20px
}

.blog-body {
  padding: 22px
}

.blog-meta {
  display: flex;
  gap: 10px;
  align-items: center;
  margin-bottom: 12px
}

.blog-cat {
  font-size: 11px;
  font-weight: 700;
  color: var(--teal);
  text-transform: uppercase;
  letter-spacing: 1px
}

.blog-date {
  font-size: 11px;
  color: var(--muted)
}

.blog-body h3 {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  line-height: 1.4;
  margin-bottom: 10px
}

.blog-body p {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 16px
}

.blog-footer {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding-top: 14px;
  border-top: 1px solid var(--border)
}

.blog-read {
  font-size: 12px;
  font-weight: 700;
  color: var(--teal)
}

.blog-time {
  font-size: 11px;
  color: var(--muted)
}

/* ── AWARD STRIP ── */
/* ── AWARD STRIP ── */
.award-strip {
  background: #fdfdfd;
  border-bottom: 1px solid #f0f0f0;
  padding: 50px 5%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
  scroll-snap-align: start;
}

.award-text .section-label {
  color: #0693E3;
  font-weight: 800;
  font-size: 21px;
  letter-spacing: 1px;
  text-transform: uppercase;
  /*opacity: 0.5;*/
  margin-bottom: 8px;
  display: block;
}

.award-text .section-title {
  color: #000;
  font-size: 20px;
  font-weight: 800;
  margin-bottom: 12px;
  letter-spacing: -0.8px;
}

.award-text p {
  color: #555;
  font-size: 15px;
  max-width: 550px;
  line-height: 1.6;
}

.award-badge {
  background: #ffffff;
  border: 1px solid #ececec;
  border-radius: 24px;
  padding: 28px 36px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
}

.award-badge {
  background: padding-box linear-gradient(#fff, #fff), 
              border-box linear-gradient(135deg, #ffffff, #00a79d, #0693e3, #ffffff);
  border: 1.5px solid transparent;
  background-size: 100% 100%, 400% 400%;
  border-radius: 24px;
  padding: 28px 36px;
  text-align: center;
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.04);
  transition: all 0.4s cubic-bezier(0.165, 0.84, 0.44, 1);
  animation: crystalline-border 8s ease infinite;
}

@keyframes crystalline-border {
  0% { background-position: 0% 0%, 0% 50%; }
  50% { background-position: 0% 0%, 100% 50%; }
  100% { background-position: 0% 0%, 0% 50%; }
}


.award-badge:hover {
  transform: translateY(-8px);
  box-shadow: 0 20px 40px rgba(0, 0, 0, 0.08);
  border-color: #ddd;
}

.award-badge-name {
  font-family: var(--font-head);
  font-size: 16px;
  font-weight: 700;
  color: #000;
}

.award-badge-sub {
  font-size: 13px;
  color: #888;
  margin-top: 6px;
}

.award-badge .teal-star {
  color: #000;
  font-size: 24px;
  margin-bottom: 14px;
  display: block;
  filter: drop-shadow(0 2px 4px rgba(0,0,0,0.1));
}


/* ─────────────────────────────────────────────────────────
   CTA BAND
───────────────────────────────────────────────────────── */
.cta-band {
  /* margin:0 48px 72px; */
  background: linear-gradient(130deg, #0d3d28 0%, #1a8a45 50%, #0272b0 100%);
  padding: 56px 52px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 40px;
  position: relative;
  overflow: hidden;
  z-index: 1;
}

.cta-band::before {
  content: 'HOME';
  position: absolute;
  right: -10px;
  top: 50%;
  transform: translateY(-50%);
  font-size: 160px;
  font-weight: 900;
  font-style: italic;
  color: rgba(255, 255, 255, .05);
  letter-spacing: -.06em;
  pointer-events: none;
}

.cta-band::after {
  content: '';
  position: absolute;
  width: 320px;
  height: 320px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .05);
  top: -120px;
  right: 180px;
}

.cta-text h2 {
  font-size: clamp(22px, 3vw, 36px);
  font-weight: 800;
  letter-spacing: -.04em;
  color: #fff;
  margin-bottom: 8px;
  line-height: 1.1;
}

.cta-text h2 em {
  font-style: italic;
}

.cta-text p {
  font-size: 14px;
  color: rgba(255, 255, 255, .6);
  line-height: 1.65;
  max-width: 400px
}

.cta-acts {
  display: flex;
  gap: 10px;
  flex-shrink: 0;
  position: relative;
  z-index: 1
}

.cbtn-w {
  padding: 12px 24px;
  border-radius: 9px;
  background: #fff;
  color: #0d3d28;
  font-size: 13px;
  font-weight: 700;
  border: none;
  cursor: pointer;
  font-family: 'Inter', sans-serif;
  transition: all .16s;
}

.cbtn-w:hover {
  opacity: .92;
  transform: translateY(-2px)
}

.cbtn-g {
  padding: 12px 18px;
  border-radius: 9px;
  font-size: 13px;
  font-weight: 600;
  color: rgba(255, 255, 255, .75);
  background: rgba(255, 255, 255, .1);
  border: 1px solid rgba(255, 255, 255, .18);
  cursor: pointer;
  transition: all .14s;
  font-family: 'Inter', sans-serif;
}

.cbtn-g:hover {
  background: rgba(255, 255, 255, .17);
  color: #fff
}

.cta-img-side {
  flex: 0 0 350px; /* Width of the image */
}

.cta-img-side img {
  width: 100%;
  max-height: auto;
  filter: drop-shadow(0 20px 40px rgba(0,0,0,0.2));
}

/* ─────────────────────────────────────────────────────────
   CTA RESPONSIVE ADJUSTMENTS
───────────────────────────────────────────────────────── */

/* Tablet (Max-width: 1080px) */
@media(max-width:1080px) {
  .cta-band {
    margin: 0 0 0;      /* Removes side margins if any */
    padding: 40px 32px; /* Reduces padding for smaller width */
  }
}

/* Mobile (Max-width: 640px) */
@media(max-width:640px) {
  .cta-band {
    margin: 0 0 60px;   /* Adds bottom spacing for mobile flow */
    padding: 32px 20px; /* Tightens padding */
    flex-direction: column; /* Stacks text and buttons vertically */
    text-align: center;     /* Centers text for mobile balance (implied) */
  }

  .cta-text p {
    max-width: 100%;    /* Allows text to fill the width */
  }

  .cta-acts {
    width: 100%;        /* Forces action container to full width */
    justify-content: center;
  }
}

/* Footer styles removed - now handled by common.css */

/* ── RESPONSIVE ── */
@media(max-width:1024px) {
  .hero {
    grid-template-columns: 1fr;
    text-align: center;
    padding-top: 60px
  }

  .hero-sub,
  .hero-btns,
  .hero-stats {
    justify-content: center;
    text-align: left
  }

  .hero-visual {
    display: none
  }

  .features-grid {
    grid-template-columns: 1fr 1fr
  }

  .steps {
    grid-template-columns: 1fr 1fr;
    gap: 32px
  }

  .steps::before {
    display: none
  }

  .solutions-grid {
    grid-template-columns: repeat(3, 1fr)
  }

  .testi-grid,
  .blog-grid {
    grid-template-columns: 1fr 1fr
  }

  .split {
    grid-template-columns: 1fr
  }

  .footer-top {
    grid-template-columns: 1fr 1fr
  }
}

@media(max-width:768px) {

  .nav-links,
  .nav-actions {
    display: none
  }

  .hamburger {
    display: flex
  }

  .features-grid,
  .testi-grid,
  .blog-grid,
  .solutions-grid {
    grid-template-columns: 1fr
  }

  .steps {
    grid-template-columns: 1fr
  }

  .hero h1 {
    font-size: 30px
  }

  .footer-top {
    grid-template-columns: 1fr
  }

  .award-strip {
    flex-direction: column;
    text-align: center
  }
}

/* Ensure sections have some spacing for full-page feel */
#navbar-placeholder {
  min-height: 68px;
  /* Approx nav height */
}

.hero1 {
  padding-top: 80px !important;
}

@media (max-width: 768px) {}

/* Safe CSS - Only affects code inside #da-hero-context */
#da-hero-context .root { width: 760px; height: 550px; overflow-y: scroll; scroll-snap-type: y mandatory; scroll-behavior: smooth; background: #f0f3fa; position: relative; margin-top: -130px; border-radisu:10px;}
#da-hero-context .root::-webkit-scrollbar { width: 5px; }
#da-hero-context .root::-webkit-scrollbar-track { background: #e2e8f4; }
#da-hero-context .root::-webkit-scrollbar-thumb { background: #1a3a6e; border-radius: 4px; }
#da-hero-context .section { width: 100%; height: 550px; scroll-snap-align: start; padding: 18px 20px; display: flex; flex-direction: column; gap: 12px; flex-shrink: 0; border-radius:20px;}
#da-hero-context .page-title { font-size: 14px; font-weight: 500; color: #0f2652; letter-spacing: -.2px;}
#da-hero-context .section-badge { display: inline-flex; align-items: center; gap: 6px; background: #0f2652; color: #c8d8f0; font-size: 10px; font-weight: 500; padding: 4px 10px; border-radius: 20px; letter-spacing: .4px; }
/* This safely fixes the .dot clash without changing your HTML */
#da-hero-context .dot { width: 6px; height: 6px; border-radius: 50%; background: #4a9eff; }
#da-hero-context .top-row { display: flex; align-items: center; justify-content: space-between; }
#da-hero-context .note { font-size: 10px; color: #7a8fad; font-style: italic; }
#da-hero-context .panel { background: #fff; border-radius: 10px; border: 1px solid #e2e8f4; overflow: hidden; display: flex; flex-direction: column; flex: 1; min-height: 0; }
#da-hero-context .panel-head { padding: 7px 12px; background: #1a3a6e; display: flex; align-items: center; gap: 6px; flex-shrink: 0; }
#da-hero-context .panel-head span { font-size: 11px; font-weight: 500; color: #c8d8f0; letter-spacing: .3px; }
#da-hero-context .tbl-wrap { overflow-y: auto; flex: 1; }
#da-hero-context .tbl-wrap::-webkit-scrollbar { width: 3px; }
#da-hero-context .tbl-wrap::-webkit-scrollbar-thumb { background: #b0c4d8; border-radius: 3px; }
#da-hero-context table { width: 100%; border-collapse: collapse; font-size: 10.5px; }
#da-hero-context thead th { background: #1a3a6e; color: #c8d8f0; font-weight: 500; font-size: 10px; padding: 6px 10px; text-align: right; letter-spacing: .3px; position: sticky; top: 0; z-index: 1; }
#da-hero-context thead th:first-child { text-align: left; }
#da-hero-context .branch-row td { background: #dce8f8; color: #0f2652; font-weight: 500; font-size: 10px; padding: 5px 10px; border-bottom: 1px solid #c4d6ec; }
#da-hero-context .child-row td { padding: 4px 10px 4px 18px; border-bottom: 1px solid #f0f4fb; color: #3a4a6a; font-size: 10px; }
#da-hero-context .child-row:hover td { background: #f5f8ff; }
#da-hero-context td:not(:first-child) { text-align: right; }
#da-hero-context .grand-row td { background: #0f2652; color: #e8f0ff; font-weight: 500; font-size: 10.5px; padding: 6px 10px; }
#da-hero-context .stat-row { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; flex-shrink: 0; }
#da-hero-context .stat { background: #fff; border-radius: 8px; border: 1px solid #e2e8f4; padding: 10px 12px; }
#da-hero-context .stat-label { font-size: 9px; color: #7a8fad; text-transform: uppercase; letter-spacing: .6px; margin-bottom: 4px; }
#da-hero-context .stat-val { font-size: 18px; font-weight: 500; color: #0f2652; line-height: 1; }
#da-hero-context .stat-sub { font-size: 9px; color: #b0bcd4; margin-top: 3px; }
#da-hero-context .chart-panel { background: #fff; border-radius: 10px; border: 1px solid #e2e8f4; flex: 1; padding: 12px 14px; display: flex; flex-direction: column; gap: 8px; min-height: 0; }
#da-hero-context .chart-top { display: flex; align-items: center; justify-content: space-between; flex-shrink: 0; }
#da-hero-context .chart-title { font-size: 11px; font-weight: 500; color: #0f2652; }
#da-hero-context .legend { display: flex; gap: 12px; }
#da-hero-context .li { display: flex; align-items: center; gap: 4px; font-size: 9.5px; color: #7a8fad; }
#da-hero-context .lb { width: 10px; height: 8px; border-radius: 2px; }
#da-hero-context .lline { width: 18px; height: 2px; position: relative; }
#da-hero-context .lline::after { content: ''; width: 6px; height: 6px; border-radius: 50%; background: inherit; position: absolute; left: 50%; top: -2px; transform: translateX(-50%); }
#da-hero-context .chart-wrap { position: relative; flex: 1; min-height: 0; }
#da-hero-context .scroll-hint { display: flex; align-items: center; justify-content: center; gap: 6px; font-size: 10px; color: #9aaac8; margin-top: auto; padding-top: 4px; flex-shrink: 0; }
#da-hero-context .scroll-dots { display: flex; gap: 6px; justify-content: center; align-items: center; }
#da-hero-context .sdot { width: 7px; height: 7px; border-radius: 50%; background: #c8d8f0; cursor: pointer; transition: background .2s; }
#da-hero-context .sdot.active { background: #1a3a6e; width: 18px; border-radius: 4px; }

 
/* ── HERO SECTION FINAL MOBILE POLISH ── */
@media (max-width: 960px) {
  
  /* 0. REMOVE CAROUSEL & STACK SLIDES VERTICALLY */
  .hero-slides {
    display: flex !important;
    flex-direction: column !important;
    height: auto !important;
    min-height: auto !important;
    overflow: visible !important;
    position: relative !important;
  }

  .hero-slide {
    position: relative !important;
    display: flex !important;
    flex-direction: column !important;
    opacity: 1 !important;
    visibility: visible !important;
    transform: none !important;
    padding: 60px 0 !important; /* Spacing between sections */
    border-bottom: 1px solid rgba(0,0,0,0.05);
    pointer-events: auto !important;
  }

  .hero-slide:not(.active) {
    display: flex !important; /* Force hidden slides to show */
  }

  /* Hide navigation dots and arrows */
  .hero-dots-bar, .hero-dot-item, #heroPrev, #heroNext {
    display: none !important;
  }

  /* 1. Center the Hero Content (Badge, Headline, Subtext) */
  .hero-lft {
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    text-align: center !important;
    padding: 0 5% !important; 
    margin-bottom: 40px !important;
  }

  .hero-h1 {
    text-align: center !important;
    margin-left: auto !important;
    margin-right: auto !important;
  }

  .hero-sub {
    text-align: center !important;
    margin: 0 auto 25px !important;
    max-width: 90% !important;
    line-height: 1.5 !important;
  }

  /* 2. Balanced spacing for the Table Panel */
  .far-panel {
    width: 94% !important; 
    margin: 0 auto 20px !important;
    padding: 20px 40px !important;
    box-sizing: border-box !important;
    box-shadow: 0 8px 32px rgba(0, 0, 0, .07) !important;
  }

  /* FIX: Overlapping Header Text */
  .far-hd {
    display: flex !important;
    justify-content: space-between !important;
    align-items: center !important;
    position: relative !important;
    padding: 0 5px !important;
    margin-bottom: 15px !important;
  }

  .far-title {
    position: relative !important; 
    left: 0 !important;
    transform: none !important;
    font-size: 9px !important;
    font-weight: 700 !important;
    white-space: normal !important;
    flex: 1 !important;
    line-height: 1.3 !important;
    padding-right: 10px !important;
    /*text-align: left !important;*/
  }
  
  .live-pill {
  white-space: nowrap !important; /* Prevent "Live" and "sync" from splitting */
  flex-shrink: 0 !important; /* Ensure the pill keeps its size */
  padding-left:15px;
}

  /* 3. Table Column Layout */
  .far-cols, .far-row {
    display: grid !important; 
    grid-template-columns: 30px 75px 1fr 45px !important; 
    gap: 10px !important;
    width: 100% !important;
    /*align-items: center !important;*/
  }

  /* Hide excessive columns */
  .far-cols .fch:nth-child(4), .far-row .fd:nth-child(4), 
  .far-cols .fch:nth-child(5), .far-row .fd:nth-child(5), 
  .far-cols .fch:nth-child(6), .far-row .fd:nth-child(6) {
    display: none !important;
  }

  /* 4. Balanced Phone Mockup & Scanner */
  .iphone-s1 {
    display: block !important;
    margin: 40px auto !important; 
    position: relative !important;
    width: 198px !important;
    height: 380px !important;
    transform: none !important;
    z-index: 10 !important;
  }
  
  .iphone-screen-s1 { display: block !important; background: #fff !important; }
  .laser { display: block !important; opacity: 1 !important; z-index: 100 !important; }
  .scan-target-wrap { display: flex !important; opacity: 1 !important; }
} 




/* ── TARGET DATA AUDIT CONTEXT (MOBILE) ── */
@media (max-width: 960px) {

  /* HIDE the entire Data Audit container */
  #da-hero-context {
    display: none !important;
  }

  /* Target the Smart Assets Pro mockup as well */
  #slide-3 .hero-rt {
    display: none !important;
  }

  /* Center the text content for Slide 2 and 4 */
  #slide-1 .hero-lft, 
  #slide-3 .hero-lft {
    width: 100% !important;
    max-width: 100% !important;
    text-align: center !important;
    display: flex !important;
    flex-direction: column !important;
    align-items: center !important;
    padding: 0 5% !important;
  }

  #slide-1 .hero-btns, 
  #slide-3 .hero-btns {
    justify-content: center !important;
  }
}

/* =========================================
   1366 × 768 DESKTOP HERO FIX
========================================= */

@media screen and (min-width: 1360px) and (max-width: 1370px)
and (min-height: 760px) and (max-height: 770px) {

  .hero-dots-bar{
   bottom:20px;
  }

  .hero-lft {
    margin-top:8px;
  }
  .btn-white {
   margin-top: auto;
}
 
}

/* =========================================
   IPAD PRO RESPONSIVE FIX
   1024px → 1366px
========================================= */

@media screen and (min-width: 1024px) and (max-width: 1366px) {
  
  /* DOTS */
  .hero-dots-bar{
    /*bottom:18px;*/
    flex-wrap:wrap;
    justify-content:center;
    gap:10px;

  }

  .dot-label{
    font-size:11px;
  }


  /* ================= TRIO GRID ================= */

  .trio-grid {
    grid-template-columns: repeat(3, 1fr);
  }

  .trio-grid .card {
    min-height: 340px;
    padding: 30px 20px;
  }

  .trio-grid .section-title {
    font-size: 21px;
  }

  .metric-row {
    gap: 20px;
  }

  .metric-num {
    font-size: 30px;
  }

  /* ================= FEATURES ================= */

  .features-grid {
    grid-template-columns: repeat(2, 1fr);
    gap: 20px;
  }

  .feat-card {
    padding: 30px 24px;
  }

  /* ================= INDUSTRY GRID ================= */

  .industry-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  .full-width-footer {
    grid-column: span 2;
  }

  /* ================= BLOG ================= */

  .blog-grid {
    grid-template-columns: repeat(2, 1fr);
  }

  /* ================= TESTIMONIAL ================= */

  .testimonial-track .testi-card {
    flex: 0 0 340px;
  }

  .testimonial-track .testi-card.active {
    transform: scale(1.02);
  }

  /* ================= CTA ================= */

  .cta-band {
    padding: 50px 30px;
    gap: 30px;
  }

  .cta-img-side {
    flex: 0 0 260px;
  }

  .cta-text h2 {
    font-size: 34px;
  }

  /* ================= TRUST LOGOS ================= */

  .trust-logo {
    height: 50px;
  }
   .btn-white {
   margin-top: auto;
}

  /* ================= DATA AUDIT PANEL ================= */

  #da-hero-context .root {
    width: 100%;
    max-width: 620px;
    height: 500px;
    margin-top: -60px;
  }

  /* ================= ACHIEVEMENTS ================= */

  .achievements-container {
    gap: 20px;
  }

  .achievement-card {
    width: 280px;
  }
    .hero-slide{
    display:flex !important;
    flex-direction:column !important;
    align-items:center;
    justify-content:center;
    gap:8px; /* LESS SPACE */
    padding:15px 20px 15px;
    overflow:hidden;
  }

  /* LEFT CONTENT */
  .hero-lft{
    width:100% !important;
    max-width:850px;
    text-align:center;
    margin:0 auto;
  }

  /* RIGHT CONTENT */
  .hero-rt{
    width:100% !important;
    display:flex;
    justify-content:center;
    align-items:center;
    margin-top:-20px; /* MOVE IMAGE UP */
  }

  /* BUTTONS CENTER */
  .hero-btns{
    justify-content:center;
    gap:12px;
  }

  /* TEXT */
  .hero-h1{
    font-size:40px;
    line-height:1.12;
  }

  .hero-sub{
    font-size:15px;
    line-height:1.6;
    max-width:90%;
    margin:auto;
    text-align:center; 
   }

  /* ALL IMAGES / MOCKUPS CENTER */
  .right-panel,
  .win,
  .dual-scene,
  #da-hero-context{
    transform:scale(.82);
    transform-origin:center top;
    margin:0 auto;
  }

  /* PHONE */
  .iphone-s1,
  .iphone{
    transform:scale(.82);
    transform-origin:center top;
  }
  
 nav{
    position:fixed;
    top:0;
    left:50%;
    transform:translateX(-50%);
    width:94%;
    max-width:1180px;
    height:10px;
    padding:0 12px !important;
    display:flex;
    align-items:center;
    justify-content:space-between;
    background:#fff;
    z-index:9999;
    overflow:visible !important;
  }

  /* LOGO */
  .nav-logo{
    flex:0 0 auto;
    display:flex;
    align-items:center;
  }

  .nav-logo img,
  .nav-logo-mark img{
    width:150px !important;
    height:auto;
    display:block;
  }

  /* CENTER LINKS */
  .nav-links{
    flex:1;
    display:flex !important;
    align-items:center;
    justify-content:center;
    gap:12px;
    margin:0 10px;
    white-space:nowrap;
  }

  .nav-links a{
    font-size:11px !important;
    font-weight:500;
    padding:6px 6px !important;
  }

  /* DROPDOWN */
  .dropdown{
    position:relative;
  }

  .dropdown-menu{
    position:absolute;
    top:100%;
    left:0;
    min-width:220px;
    z-index:99999;
  }

  /* RIGHT BUTTON */
  .nav-actions{
    flex:0 0 auto;
    display:flex;
    align-items:center;
  }

  .nav-actions a,
  .nav-actions button{
    font-size:11px !important;
    padding:8px 16px !important;
    white-space:nowrap;
  }

  /* HIDE MOBILE MENU ICON */
  .hamburger{
    display:none !important;
  }
  
#navbar-placeholder {
     min-height:0px; 
}

.hero1 {
    padding-top:0px !important;
}

}


