/* ============================================================
   SECTION 01 — HERO
   Scoped under .cad-hero only. No globals, no CSS variables.
   Palette used directly:
   Blue accent   #1652F0 / #0F3FC7 (hover)
   Ink           #0A0E17
   Muted text    #5B6472
   Line          #E4E8F0
   Surface       #F5F7FB
   Navy (dash)   #0B1220 / #121D33
   ============================================================ */

.cad-hero {
  background-color: #FFFFFF;
  padding-top: 30px;
  padding-bottom: 30px;
  overflow: hidden;
}

/* ---------- Eyebrow ---------- */
.cad-hero-eyebrow {
  display: inline-flex;
  align-items: center;
  font-size: 13px;
  font-weight: 700;
  letter-spacing: 0.06em;
  text-transform: uppercase;
  color: #1652F0;
  margin-bottom: 18px;
}

.cad-hero-eyebrow i {
  margin-right: 8px;
  font-size: 12px;
}

/* ---------- Headings ---------- */
.cad-hero-title {
  font-size: 42px;
  line-height: 1.15;
  font-weight: 800;
  color: #0A0E17;
  margin-bottom: 14px;
  letter-spacing: -0.01em;
}

.cad-hero-subtitle {
  font-size: 19px;
  font-weight: 600;
  color: #1652F0;
  margin-bottom: 18px;
}

.cad-hero-desc {
  font-size: 16px;
  line-height: 1.75;
  color: #5B6472;
  max-width: 560px;
  margin-bottom: 26px;
}

/* ---------- Feature checklist ---------- */
.cad-hero-features {
  margin-bottom: 28px;
  margin-left: 0;
  margin-right: 0;
}

.cad-hero-feature-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
}

.cad-hero-feature-list li {
  display: flex;
  align-items: flex-start;
  font-size: 14.5px;
  color: #26303F;
  font-weight: 500;
  margin-bottom: 14px;
  line-height: 1.4;
}

.cad-hero-feature-list li i {
  color: #1652F0;
  margin-right: 10px;
  margin-top: 3px;
  font-size: 14px;
  flex-shrink: 0;
}

/* ---------- CTA buttons ---------- */
.cad-hero-cta {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-bottom: 32px;
}

.cad-hero-btn-primary,
.cad-hero-btn-secondary {
  position: relative!important;
  overflow: hidden!important;
  padding: 13px 28px!important;
  font-size: 15px!important;
  font-weight: 700!important;
  border-radius: 10px!important;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease!important;
}

.cad-hero-btn-primary {
  background-color: #1652F0!important;
  border: 1px solid #1652F0!important;
  color: #FFFFFF!important;
  box-shadow: 0 10px 24px -8px rgba(22, 82, 240, 0.55)!important;
}

.cad-hero-btn-primary:hover,
.cad-hero-btn-primary:focus {
  background-color: #0F3FC7!important;
  border-color: #0F3FC7!important;
  color: #FFFFFF!important;
  transform: translateY(-2px)!important;
  box-shadow: 0 14px 28px -8px rgba(22, 82, 240, 0.65)!important;
}

.cad-hero-btn-secondary {
  background-color: #FFFFFF;
  border: 1px solid #1b5ef7!important;
  color: #0A0E17!important;
}

.cad-hero-btn-secondary:hover,
.cad-hero-btn-secondary:focus {
  border-color: #1652F0;
  color: #1652F0;
  transform: translateY(-2px);
  box-shadow: 0 10px 22px -10px rgba(10, 14, 23, 0.18);
}

.cad-hero-btn-primary .cad-ripple,
.cad-hero-btn-secondary .cad-ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: cadRippleAnim 0.6s linear;
  background-color: rgba(255, 255, 255, 0.45);
  pointer-events: none;
}

.cad-hero-btn-secondary .cad-ripple {
  background-color: rgba(22, 82, 240, 0.18);
}

@keyframes cadRippleAnim {
  to {
    transform: scale(2.6);
    opacity: 1;
  }
}
@media only screen and (max-width: 991px) {
    .cad-hero .cad-hero-col-visual{
        display: none !important;
    }

    .cad-hero .cad-hero-col-text{
        flex: 0 0 100% !important;
        max-width: 100% !important;
    }
}
/* ---------- Trust row ---------- */
.cad-hero-trust {
  display: flex;
  align-items: center;
  gap: 16px;
}

.cad-hero-avatars {
  display: flex;
}

.cad-hero-avatar {
  width: 38px;
  height: 38px;
  border-radius: 50%;
  background-color: #EEF2FC;
  border: 2px solid #FFFFFF;
  box-shadow: 0 0 0 1px #E4E8F0;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #1652F0;
  font-size: 13px;
  margin-left: -10px;
}

.cad-hero-avatar:first-child {
  margin-left: 0;
}

.cad-hero-avatar-more {
  background-color: #1652F0;
  color: #FFFFFF;
  font-weight: 700;
  font-size: 13px;
}

.cad-hero-stars {
  color: #F5A623;
  font-size: 13px;
  margin-bottom: 4px;
}

.cad-hero-trust-copy p {
  font-size: 14px;
  color: #5B6472;
  margin-bottom: 0;
}

.cad-hero-trust-copy strong {
  color: #0A0E17;
}

/* ---------- Entrance animation ---------- */
.cad-hero-anim {
  opacity: 1;
  transform: translateY(22px);
}

.cad-hero-anim.cad-hero-in {
  animation: cadHeroFadeUp 0.7s ease forwards;
}

@keyframes cadHeroFadeUp {
  to {
    opacity: 1;
    transform: translateY(0);
  }
}

/* ============================================================
   DASHBOARD MOCKUP (right side)
   ============================================================ */
.cad-hero-col-visual {
  display: flex;
  justify-content: center;
}

.cad-dashboard {
  display: flex;
  width: 100%;
  max-width: 560px;
  background-color: #0B1220;
  border-radius: 20px;
  box-shadow: 0 30px 60px -20px rgba(10, 14, 30, 0.35), 0 0 0 1px rgba(10, 14, 30, 0.05);
  overflow: hidden;
}

.cad-dashboard[data-cad-float] {
  animation: cadDashFloat 6s ease-in-out infinite;
}

@keyframes cadDashFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-10px); }
}

/* Sidebar */
.cad-dash-sidebar {
  width: 56px;
  background-color: #0B1220;
  border-right: 1px solid rgba(255, 255, 255, 0.06);
  display: flex;
  flex-direction: column;
  align-items: center;
  padding: 18px 0;
  flex-shrink: 0;
}

.cad-dash-sidebar-logo {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  background-color: #1652F0;
  color: #FFFFFF;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 14px;
  margin-bottom: 24px;
}

.cad-dash-sidebar-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  color: rgba(255, 255, 255, 0.45);
  font-size: 14px;
  margin-bottom: 10px;
  transition: background-color 0.2s ease, color 0.2s ease;
  cursor: pointer;
}

.cad-dash-sidebar-icon:hover {
  background-color: rgba(255, 255, 255, 0.06);
  color: #FFFFFF;
}

.cad-dash-sidebar-icon-active {
  background-color: rgba(22, 82, 240, 0.22);
  color: #5C8DFF;
}

/* Main panel */
.cad-dash-main {
  flex-grow: 1;
  background-color: #F5F7FB;
  display: flex;
  flex-direction: column;
  min-width: 0;
}

.cad-dash-topbar {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 14px 16px;
  background-color: #FFFFFF;
  border-bottom: 1px solid #E4E8F0;
}

.cad-dash-topbar-title {
  font-size: 13px;
  font-weight: 700;
  color: #0A0E17;
}

.cad-dash-topbar-title i {
  color: #1652F0;
  margin-right: 8px;
}

.cad-dash-topbar-icons {
  display: flex;
  align-items: center;
  gap: 14px;
  color: #8791A1;
  font-size: 13px;
}

.cad-dash-topbar-avatar {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background-color: #DCE4FA;
  display: inline-block;
}

/* Map */
.cad-dash-map {
  position: relative;
  height: 220px;
  overflow: hidden;
}

.cad-dash-map-img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  filter: grayscale(1) brightness(1.15) contrast(0.95);
  -webkit-filter: grayscale(1) brightness(1.15) contrast(0.95);
}

.cad-dash-map::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(22, 82, 240, 0.16);
  mix-blend-mode: multiply;
}

.cad-dash-pin {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #1652F0;
  box-shadow: 0 0 0 4px rgba(22, 82, 240, 0.25);
  z-index: 2;
}

.cad-dash-pin-1 { top: 28%; left: 22%; }
.cad-dash-pin-2 { top: 62%; left: 68%; }
.cad-dash-pin-4 { top: 18%; left: 74%; }

.cad-dash-pin-alert {
  top: 46%;
  left: 46%;
  background-color: #E5484D;
  box-shadow: 0 0 0 4px rgba(229, 72, 77, 0.28);
  animation: cadPinPulse 1.8s ease-in-out infinite;
}

@keyframes cadPinPulse {
  0%, 100% { box-shadow: 0 0 0 4px rgba(229, 72, 77, 0.28); }
  50% { box-shadow: 0 0 0 9px rgba(229, 72, 77, 0.12); }
}

.cad-dash-popup {
  position: absolute;
  left: 12px;
  bottom: 12px;
  width: 210px;
  z-index: 3;
  background-color: rgba(255, 255, 255, 0.86);
  -webkit-backdrop-filter: blur(10px);
  backdrop-filter: blur(10px);
  border: 1px solid rgba(255, 255, 255, 0.6);
  border-radius: 14px;
  padding: 12px 14px;
  box-shadow: 0 16px 30px -14px rgba(10, 14, 30, 0.45);
}

.cad-dash-popup-head {
  display: flex;
  align-items: center;
  gap: 8px;
  margin-bottom: 6px;
}

.cad-dash-popup-head i {
  color: #E5484D;
  font-size: 13px;
}

.cad-dash-popup-head h3 {
  font-size: 13px;
  font-weight: 700;
  color: #0A0E17;
  margin-bottom: 0;
}

.cad-dash-popup-loc {
  font-size: 11px;
  color: #5B6472;
  margin-bottom: 8px;
}

.cad-dash-popup-loc i {
  color: #1652F0;
  margin-right: 5px;
}

.cad-dash-popup-priority {
  display: inline-block;
  font-size: 10px;
  font-weight: 700;
  color: #E5484D;
  background-color: rgba(229, 72, 77, 0.12);
  padding: 3px 8px;
  border-radius: 6px;
  margin-bottom: 10px;
}

.cad-dash-popup-actions {
  display: flex;
  gap: 6px;
}

.cad-dash-btn-outline,
.cad-dash-btn-fill {
  flex: 1;
  border: none;
  border-radius: 7px;
  font-size: 10.5px;
  font-weight: 700;
  padding: 7px 6px;
  transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.cad-dash-btn-outline {
  background-color: #FFFFFF;
  color: #0A0E17;
  border: 1px solid #DCE1EA;
}

.cad-dash-btn-fill {
  background-color: #1652F0;
  color: #FFFFFF;
}

.cad-dash-btn-outline:hover,
.cad-dash-btn-fill:hover {
  transform: translateY(-1px);
  box-shadow: 0 6px 14px -6px rgba(10, 14, 30, 0.4);
}

/* Stats row */
.cad-dash-stats {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  border-bottom: 1px solid #E4E8F0;
  background-color: #FFFFFF;
}

.cad-dash-stat {
  padding: 12px 8px;
  text-align: center;
  border-right: 1px solid #E4E8F0;
}

.cad-dash-stat:last-child {
  border-right: none;
}

.cad-dash-stat-value {
  display: block;
  font-size: 17px;
  font-weight: 800;
  color: #0A0E17;
}

.cad-dash-stat-time {
  color: #1652F0;
}

.cad-dash-stat-label {
  display: block;
  font-size: 9.5px;
  color: #8791A1;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  margin-top: 2px;
}

/* Bottom lists */
.cad-dash-lists {
  background-color: #FFFFFF;
}

.cad-dash-list {
  padding: 12px 14px 16px;
}

.cad-dash-list-feed {
  border-left: 1px solid #E4E8F0;
}

.cad-dash-list-title {
  font-size: 10.5px;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: 0.03em;
  color: #8791A1;
  margin-bottom: 10px;
}

.cad-dash-list-item {
  display: flex;
  flex-direction: column;
  padding-bottom: 8px;
  margin-bottom: 8px;
  border-bottom: 1px dashed #E4E8F0;
}

.cad-dash-list-item:last-child {
  border-bottom: none;
  margin-bottom: 0;
  padding-bottom: 0;
}

.cad-dash-list-name {
  font-size: 11.5px;
  font-weight: 700;
  color: #0A0E17;
}

.cad-dash-list-meta {
  font-size: 10px;
  color: #8791A1;
  margin-top: 2px;
}

.cad-dash-list-time {
  font-size: 9.5px;
  color: #1652F0;
  font-weight: 700;
  margin-bottom: 2px;
}

/* ============================================================
   RESPONSIVE
   ============================================================ */
@media (max-width: 991.98px) {
  .cad-hero-title {
    font-size: 34px;
  }

  .cad-hero-desc {
    max-width: 100%;
  }

  .cad-hero-col-visual {
    margin-top: 40px;
  }
}

@media (max-width: 575.98px) {
  .cad-hero-title {
    font-size: 28px;
  }

  .cad-hero-subtitle {
    font-size: 16px;
  }

  .cad-hero-cta {
    flex-direction: column;
  }

  .cad-hero-btn-primary,
  .cad-hero-btn-secondary {
    width: 100%;
    text-align: center;
  }

  .cad-hero-trust {
    flex-wrap: wrap;
  }

  .cad-dash-stat-value {
    font-size: 14px;
  }

  .cad-dash-stat-label {
    font-size: 8px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cad-hero-anim,
  .cad-dashboard[data-cad-float],
  .cad-dash-pin-alert {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   SECTION 02 — TRUST / CERTIFICATION BAR
   Scoped under .cad-certbar
   ============================================================ */

.cad-certbar {
  background-color: #0B1220;
  padding-top: 30px;
  padding-bottom: 30px;
}

.cad-certbar-row {
  align-items: center;
}

.cad-certbar-item {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  color: rgba(255, 255, 255, 0.75);
  font-size: 13.5px;
  font-weight: 600;
  padding: 10px 6px;
  text-align: center;
  opacity: 0;
  transform: translateY(14px);
}

.cad-certbar-item.cad-reveal-in {
  animation: cadCertFade 0.6s ease forwards;
}

@keyframes cadCertFade {
  to { opacity: 1; transform: translateY(0); }
}

.cad-certbar-item i {
  color: #5C8DFF;
  font-size: 16px;
  transition: transform 0.25s ease;
}

.cad-certbar-item:hover i {
  transform: scale(1.15);
}

.cad-certbar-item:hover {
  color: #FFFFFF;
}

@media (max-width: 767.98px) {
  .cad-certbar-item {
    font-size: 12px;
    flex-direction: column;
    gap: 6px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cad-certbar-item {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}

.sg-logos{
  /* scoped tokens */
  --line: rgba(255,255,255,0.07);
  --line-2: rgba(255,255,255,0.12);
 
  position: relative;
  padding: 26px 0;
  background: #07080b;
  border-top: 1px solid var(--line);
  border-bottom: 1px solid var(--line);
  overflow: hidden;
  /* mask removed from here — it was fading the section's own dark background to
     transparent at the edges, letting the page's white background show through */
}
 
.sg-logos__track{
  display: flex;
  gap: 42px;
  align-items: center;
  width: max-content;
  animation: sg-logos-marq 42s linear infinite;
  /* mask now lives on the track only, so it fades the logo strip itself
     while the section background underneath stays solid #07080b */
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 10%, #000 90%, transparent);
}
@keyframes sg-logos-marq{ to{ transform: translateX(-50%); } }
 
.sg-logos__item{
  height: 56px;
  min-width: 150px;
  padding: 12px 22px;
  border: 1px solid var(--line);
  border-radius: 16px;
  background: rgba(255,255,255,0.025);
  display: flex;
  align-items: center;
  justify-content: center;
  transition: transform .25s ease, border-color .25s ease;
}
.sg-logos__item:hover{
  transform: translateY(-2px);
  border-color: var(--line-2);
}
.sg-logos__item img{
  max-width: 118px;
  max-height: 34px;
  width: auto;
  height: auto;
  object-fit: contain;
  display: block;
}
 
@media (prefers-reduced-motion: reduce){
  .sg-logos__track{ animation: none; }
}
/* ============================================================
   SECTION 04 — CHALLENGES SOLVED
   Scoped under .cad-challenges
   ============================================================ */

.cad-challenges {
  background-color: #F5F7FB;
  padding-top: 30px;
  padding-bottom: 30px;
}

.cad-challenges-head {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.cad-challenges-title {
  font-size: 30px;
  font-weight: 800;
  color: #0A0E17;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(16px);
}

.cad-challenges-desc {
  font-size: 15.5px;
  line-height: 1.75;
  color: #5B6472;
  opacity: 0;
  transform: translateY(16px);
}

.cad-challenges-title.cad-reveal-in,
.cad-challenges-desc.cad-reveal-in {
  animation: cadChallengeFade 0.7s ease forwards;
}

@keyframes cadChallengeFade {
  to { opacity: 1; transform: translateY(0); }
}

.cad-challenges-grid {
  margin-left: -8px;
  margin-right: -8px;
}

.cad-challenges-grid > [class*="col-"] {
  padding-left: 8px;
  padding-right: 8px;
  margin-bottom: 16px;
}

.cad-challenge-card {
  background-color: #FFFFFF;
  border: 1px solid #E4E8F0;
  border-radius: 16px;
  padding: 26px 16px;
  height: 100%;
  text-align: center;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  opacity: 0;
  transform: translateY(16px);
}

.cad-challenge-card.cad-reveal-in {
  animation: cadChallengeFade 0.7s ease forwards;
}

.cad-challenge-card:hover {
  transform: translateY(-6px);
  border-color: #1652F0;
  box-shadow: 0 20px 36px -18px rgba(22, 82, 240, 0.35);
}

.cad-challenge-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background-color: #EEF2FC;
  color: #1652F0;
  font-size: 20px;
  margin-bottom: 16px;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.cad-challenge-card:hover .cad-challenge-icon {
  background-color: #1652F0;
  color: #FFFFFF;
  transform: scale(1.1) rotate(-4deg);
}

.cad-challenge-card h3 {
  font-size: 14.5px;
  font-weight: 700;
  color: #0A0E17;
  margin-bottom: 0;
  line-height: 1.4;
}

@media (max-width: 575.98px) {
  .cad-challenges-title {
    font-size: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cad-challenges-title,
  .cad-challenges-desc,
  .cad-challenge-card {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   SECTION 05 — AI-POWERED CAD SYSTEM OVERVIEW
   Scoped under .cad-whatis
   ============================================================ */

.cad-whatis {
  background-color: #FFFFFF;
  padding-top: 30px;
  padding-bottom: 30px;
}

.cad-whatis-top {
  margin-bottom: 50px;
}

/* Mini workflow illustration */
.cad-whatis-flow {
  background-color: #F5F7FB;
  border: 1px solid #E4E8F0;
  border-radius: 20px;
  padding: 28px 24px;
  opacity: 0;
  transform: translateY(18px);
}

.cad-whatis-flow.cad-reveal-in {
  animation: cadWhatisFade 0.7s ease forwards;
}

.cad-whatis-flow-step {
  display: flex;
  align-items: center;
  gap: 14px;
}

.cad-whatis-flow-step span {
  flex-shrink: 0;
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background-color: #FFFFFF;
  border: 1px solid #E4E8F0;
  color: #1652F0;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 15px;
  transition: transform 0.25s ease, background-color 0.25s ease, color 0.25s ease;
}

.cad-whatis-flow-step:hover span {
  background-color: #1652F0;
  color: #FFFFFF;
  transform: scale(1.08);
}

.cad-whatis-flow-step p {
  margin-bottom: 0;
  font-size: 13.5px;
  font-weight: 600;
  color: #26303F;
}

.cad-whatis-flow-step-last span {
  background-color: #1652F0;
  color: #FFFFFF;
  border-color: #1652F0;
}

.cad-whatis-flow-line {
  width: 1px;
  height: 18px;
  background-color: #D6DCE7;
  margin-left: 19px;
}

/* Text column */
.cad-whatis-title {
  font-size: 28px;
  font-weight: 800;
  color: #0A0E17;
  line-height: 1.3;
  margin-bottom: 18px;
  opacity: 0;
  transform: translateY(16px);
}

.cad-whatis-desc {
  font-size: 15.5px;
  line-height: 1.8;
  color: #5B6472;
  opacity: 0;
  transform: translateY(16px);
}

.cad-whatis-title.cad-reveal-in,
.cad-whatis-desc.cad-reveal-in {
  animation: cadWhatisFade 0.7s ease forwards;
}

@keyframes cadWhatisFade {
  to { opacity: 1; transform: translateY(0); }
}

/* Benefits */
.cad-whatis-benefits-title {
  font-size: 13px;
  font-weight: 800;
  text-transform: uppercase;
  letter-spacing: 0.05em;
  color: #1652F0;
  text-align: center;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(14px);
}

.cad-whatis-benefits-title.cad-reveal-in {
  animation: cadWhatisFade 0.6s ease forwards;
}

.cad-whatis-benefits {
  margin-bottom: 44px;
}

.cad-whatis-benefit-card {
  background-color: #FFFFFF;
  border: 1px solid #E4E8F0;
  border-radius: 16px;
  padding: 26px 22px;
  height: 100%;
  margin-bottom: 20px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
  opacity: 0;
  transform: translateY(18px);
}

.cad-whatis-benefit-card.cad-reveal-in {
  animation: cadWhatisFade 0.7s ease forwards;
}

.cad-whatis-benefit-card:hover {
  transform: translateY(-6px);
  border-color: #1652F0;
  box-shadow: 0 22px 40px -20px rgba(22, 82, 240, 0.35);
}

.cad-whatis-benefit-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background-color: #EEF2FC;
  color: #1652F0;
  font-size: 18px;
  margin-bottom: 16px;
}

.cad-whatis-benefit-card h3 {
  font-size: 15.5px;
  font-weight: 700;
  color: #0A0E17;
  margin-bottom: 8px;
}

.cad-whatis-benefit-card p {
  font-size: 13.5px;
  line-height: 1.65;
  color: #5B6472;
  margin-bottom: 0;
}

/* CTA banner */
.cad-whatis-cta {
  background-color: #0B1220;
  border-radius: 22px;
  padding: 34px 32px;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 24px;
  flex-wrap: wrap;
  opacity: 0;
  transform: translateY(18px);
}

.cad-whatis-cta.cad-reveal-in {
  animation: cadWhatisFade 0.7s ease forwards;
}

.cad-whatis-cta h3 {
  font-size: 20px;
  font-weight: 800;
  color: #FFFFFF;
  margin-bottom: 8px;
}

.cad-whatis-cta p {
  font-size: 14px;
  color: rgba(255, 255, 255, 0.65);
  max-width: 560px;
  margin-bottom: 0;
}

.cad-whatis-cta-btn {
  position: relative;
  overflow: hidden;
  flex-shrink: 0;
  background-color: #1652F0;
  color: #FFFFFF;
  border: none;
  border-radius: 10px;
  padding: 14px 26px;
  font-size: 14.5px;
  font-weight: 700;
  transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.cad-whatis-cta-btn:hover {
  background-color: #3A6BFF;
  transform: translateY(-2px);
  box-shadow: 0 14px 26px -10px rgba(22, 82, 240, 0.6);
}

.cad-whatis-cta-btn .cad-ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: cadWhatisRipple 0.6s linear;
  background-color: rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

@keyframes cadWhatisRipple {
  to { transform: scale(2.6); opacity: 0; }
}

@media (max-width: 991.98px) {
  .cad-whatis-flow-col {
    margin-bottom: 32px;
  }
}

@media (max-width: 575.98px) {
  .cad-whatis-title {
    font-size: 23px;
  }

  .cad-whatis-cta {
    flex-direction: column;
    text-align: center;
  }

  .cad-whatis-cta-btn {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cad-whatis-flow,
  .cad-whatis-title,
  .cad-whatis-desc,
  .cad-whatis-benefits-title,
  .cad-whatis-benefit-card,
  .cad-whatis-cta {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   SECTION 06 — COMPLETE EMERGENCY DISPATCH WORKFLOW
   Scoped under .cad-workflow
   ============================================================ */

.cad-workflow {
  background-color: #F5F7FB;
  padding-top: 30px;
  padding-bottom: 30px;
}

.cad-workflow-head {
  max-width: 760px;
  margin: 0 auto 44px;
  text-align: center;
}

.cad-workflow-title {
  font-size: 30px;
  font-weight: 800;
  color: #0A0E17;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(16px);
}

.cad-workflow-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: #1652F0;
  margin-bottom: 16px;
  opacity: 0;
  transform: translateY(16px);
}

.cad-workflow-desc {
  font-size: 15px;
  line-height: 1.75;
  color: #5B6472;
  opacity: 0;
  transform: translateY(16px);
}

.cad-workflow-title.cad-reveal-in,
.cad-workflow-subtitle.cad-reveal-in,
.cad-workflow-desc.cad-reveal-in,
.cad-workflow-step.cad-reveal-in {
  animation: cadWorkflowFade 0.7s ease forwards;
}

@keyframes cadWorkflowFade {
  to { opacity: 1; transform: translateY(0); }
}

.cad-workflow-grid {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 18px;
}

.cad-workflow-step {
  position: relative;
  background-color: #FFFFFF;
  border: 1px solid #E4E8F0;
  border-radius: 16px;
  padding: 26px 18px 20px;
  opacity: 0;
  transform: translateY(16px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.cad-workflow-step:hover {
  transform: translateY(-6px);
  border-color: #1652F0;
  box-shadow: 0 20px 34px -18px rgba(22, 82, 240, 0.32);
}

.cad-workflow-step:not(.cad-workflow-step-last):not(:nth-child(5n))::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: -14px;
  transform: translateY(-50%);
  font-size: 11px;
  color: #C6CEDC;
  z-index: 2;
}

.cad-workflow-num {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 11px;
  font-weight: 800;
  color: #C6CEDC;
}

.cad-workflow-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: #EEF2FC;
  color: #1652F0;
  font-size: 17px;
  margin-bottom: 14px;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.cad-workflow-step:hover .cad-workflow-icon {
  background-color: #1652F0;
  color: #FFFFFF;
  transform: scale(1.08);
}

.cad-workflow-step h3 {
  font-size: 14px;
  font-weight: 700;
  color: #0A0E17;
  margin-bottom: 8px;
  line-height: 1.35;
}

.cad-workflow-step p {
  font-size: 12.5px;
  line-height: 1.6;
  color: #5B6472;
  margin-bottom: 0;
}

@media (max-width: 1199.98px) {
  .cad-workflow-grid {
    grid-template-columns: repeat(3, 1fr);
  }
  .cad-workflow-step:not(.cad-workflow-step-last):not(:nth-child(3n))::after {
    content: "\f061";
  }
  .cad-workflow-step:nth-child(5n)::after {
    content: "\f061";
  }
}

@media (max-width: 767.98px) {
  .cad-workflow-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cad-workflow-step::after {
    display: none;
  }
  .cad-workflow-title {
    font-size: 24px;
  }
}

@media (max-width: 480px) {
  .cad-workflow-grid {
    grid-template-columns: 1fr;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cad-workflow-title,
  .cad-workflow-subtitle,
  .cad-workflow-desc,
  .cad-workflow-step {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}
/* ============================================================
   SECTION 07 — ENTERPRISE DISPATCH CAPABILITIES
   Scoped under .cad-capabilities
   ============================================================ */

.cad-capabilities {
  background-color: #FFFFFF;
  padding-top: 30px;
  padding-bottom: 30px;
}

.cad-capabilities-head {
  max-width: 720px;
  margin: 0 auto 40px;
  text-align: center;
}

.cad-capabilities-title {
  font-size: 30px;
  font-weight: 800;
  color: #0A0E17;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(16px);
}

.cad-capabilities-subtitle {
  font-size: 16px;
  font-weight: 600;
  color: #5B6472;
  opacity: 0;
  transform: translateY(16px);
}

.cad-capabilities-title.cad-reveal-in,
.cad-capabilities-subtitle.cad-reveal-in {
  animation: cadCapFade 0.6s ease forwards;
}

@keyframes cadCapFade {
  to { opacity: 1; transform: translateY(0); }
}

.cad-capabilities-slider {
  position: relative;
  opacity: 0;
  transform: translateY(16px);
}

.cad-capabilities-slider.cad-reveal-in {
  animation: cadCapFade 0.6s ease forwards;
}

.cad-capabilities-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  padding: 4px 4px 16px;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #C6CEDC transparent;
  user-select: none;
}

.cad-capabilities-track.cad-capabilities-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.cad-capabilities-track::-webkit-scrollbar {
  height: 6px;
}

.cad-capabilities-track::-webkit-scrollbar-thumb {
  background-color: #C6CEDC;
  border-radius: 6px;
}

.cad-capabilities-track::-webkit-scrollbar-track {
  background: transparent;
}

.cad-capabilities-slide {
  flex: 0 0 calc(25% - 12px);
  scroll-snap-align: start;
}

.cad-capability-card {
  background-color: #F5F7FB;
  border: 1px solid #E4E8F0;
  border-radius: 16px;
  padding: 24px 18px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, background-color 0.3s ease, border-color 0.3s ease;
}

.cad-capability-card:hover {
  background-color: #FFFFFF;
  transform: translateY(-6px);
  border-color: #1652F0;
  box-shadow: 0 20px 36px -18px rgba(22, 82, 240, 0.32);
}

/* Slider nav arrows */
.cad-capabilities-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #FFFFFF;
  border: 1px solid #E4E8F0;
  color: #1652F0;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px -12px rgba(10, 14, 30, 0.3);
  z-index: 3;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.cad-capabilities-arrow:hover {
  background-color: #1652F0;
  color: #FFFFFF;
  transform: translateY(-50%) scale(1.08);
}

.cad-capabilities-arrow-prev {
  left: -18px;
}

.cad-capabilities-arrow-next {
  right: -18px;
}

@media (max-width: 991.98px) {
  .cad-capabilities-slide {
    flex: 0 0 calc(33.333% - 11px);
  }
}

@media (max-width: 767.98px) {
  .cad-capabilities-slide {
    flex: 0 0 calc(50% - 8px);
  }
  .cad-capabilities-arrow {
    display: none;
  }
}

@media (max-width: 480px) {
  .cad-capabilities-slide {
    flex: 0 0 82%;
  }
}

.cad-capability-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: #EEF2FC;
  color: #1652F0;
  font-size: 17px;
  margin-bottom: 14px;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.cad-capability-card:hover .cad-capability-icon {
  background-color: #1652F0;
  color: #FFFFFF;
  transform: scale(1.1) rotate(-4deg);
}

.cad-capability-card h3 {
  font-size: 14.5px;
  font-weight: 700;
  color: #0A0E17;
  margin-bottom: 8px;
  line-height: 1.35;
}

.cad-capability-card p {
  font-size: 12.5px;
  line-height: 1.6;
  color: #5B6472;
  margin-bottom: 0;
}

@media (max-width: 575.98px) {
  .cad-capabilities-title {
    font-size: 24px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cad-capabilities-title,
  .cad-capabilities-subtitle,
  .cad-capabilities-slider {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}
/* ============================================================
   SECTION 08 — LIVE COMMAND CENTER DASHBOARD + AI CAPABILITIES
   Scoped under .cad-dashai
   ============================================================ */

.cad-dashai-left,
.cad-dashai-right {
  padding-top: 40px;
  padding-bottom: 40px;
  display: flex;
  align-items: center;
}

.cad-dashai-left {
  background-color: #F5F7FB;
}

.cad-dashai-right {
  background-color: #0B1220;
  position: relative;
  overflow: hidden;
}

.cad-dashai-inner {
  max-width: 520px;
  width: 100%;
  position: relative;
  z-index: 2;
  padding-left: 30px;
  padding-right: 30px;
  margin: 0 auto;
}

.cad-dashai-inner-flex {
  max-width: 100%;
  display: flex;
  align-items: center;
  gap: 28px;
}

.cad-dashai-textwrap {
  flex: 1 1 auto;
  min-width: 0;
  max-width: 480px;
}

/* Device photo */
.cad-dashai-mock {
  position: relative;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(18px);
  border-radius: 18px;
  overflow: hidden;
  box-shadow: 0 30px 54px -20px rgba(10, 14, 30, 0.45);
}

.cad-dashai-mock[data-cad-float] {
  animation: cadDashaiFloat 6s ease-in-out infinite;
}

@keyframes cadDashaiFloat {
  0%, 100% { transform: translateY(0); }
  50% { transform: translateY(-8px); }
}

.cad-dashai-photo {
  display: block;
  width: 100%;
  height: 260px;
  object-fit: cover;
  border-radius: 18px;
  transition: transform 0.5s ease;
}

.cad-dashai-mock:hover .cad-dashai-photo {
  transform: scale(1.03);
}

.cad-dashai-photo-badge {
  position: absolute;
  left: 16px;
  bottom: 16px;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background-color: rgba(11, 18, 32, 0.75);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  color: #FFFFFF;
  font-size: 11.5px;
  font-weight: 700;
  padding: 7px 14px;
  border-radius: 20px;
  border: 1px solid rgba(255, 255, 255, 0.18);
}

.cad-dashai-photo-badge i {
  color: #35D68A;
  font-size: 10px;
  animation: cadDashaiPulse 1.6s ease-in-out infinite;
}

@keyframes cadDashaiPulse {
  0%, 100% { opacity: 1; }
  50% { opacity: 0.35; }
}

/* Text */
.cad-dashai-title {
  font-size: 26px;
  font-weight: 800;
  color: #0A0E17;
  margin-bottom: 10px;
  opacity: 0;
  transform: translateY(16px);
}

.cad-dashai-title-dark {
  color: #FFFFFF;
}

.cad-dashai-subtitle {
  font-size: 15.5px;
  font-weight: 600;
  color: #1652F0;
  margin-bottom: 14px;
  opacity: 0;
  transform: translateY(16px);
}

.cad-dashai-subtitle-dark {
  color: #5C8DFF;
}

.cad-dashai-desc {
  font-size: 14.5px;
  line-height: 1.75;
  color: #5B6472;
  margin-bottom: 22px;
  opacity: 0;
  transform: translateY(16px);
}

.cad-dashai-desc-dark {
  color: rgba(255, 255, 255, 0.6);
}

.cad-dashai-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 26px;
  opacity: 0;
  transform: translateY(16px);
}

.cad-dashai-list li {
  display: flex;
  align-items: flex-start;
  gap: 10px;
  font-size: 13.5px;
  font-weight: 500;
  color: #26303F;
  margin-bottom: 12px;
  line-height: 1.4;
}

.cad-dashai-list li i {
  color: #1652F0;
  margin-top: 2px;
  flex-shrink: 0;
}

.cad-dashai-list-dark li {
  color: rgba(255, 255, 255, 0.8);
}

.cad-dashai-list-dark li i {
  color: #5C8DFF;
}

.cad-dashai-mock.cad-reveal-in,
.cad-dashai-title.cad-reveal-in,
.cad-dashai-subtitle.cad-reveal-in,
.cad-dashai-desc.cad-reveal-in,
.cad-dashai-list.cad-reveal-in,
.cad-dashai-btn-light.cad-reveal-in {
  animation: cadDashaiFade 0.7s ease forwards;
}

@keyframes cadDashaiFade {
  to { opacity: 1; transform: translateY(0); }
}

.cad-dashai-btn-light {
  position: relative;
  overflow: hidden;
  background-color: #1652F0;
  color: #FFFFFF;
  border: none;
  border-radius: 10px;
  padding: 13px 26px;
  font-size: 14.5px;
  font-weight: 700;
  opacity: 0;
  transform: translateY(16px);
  transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.cad-dashai-btn-light:hover {
  background-color: #0F3FC7;
  transform: translateY(-2px);
  box-shadow: 0 14px 26px -10px rgba(22, 82, 240, 0.6);
}

.cad-dashai-btn-light .cad-ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: cadDashaiRipple 0.6s linear;
  background-color: rgba(255, 255, 255, 0.4);
  pointer-events: none;
}

@keyframes cadDashaiRipple {
  to { transform: scale(2.6); opacity: 0; }
}

/* Decorative AI brain photo — sits beside the text, never overlapping it */
.cad-dashai-brain {
  flex: 0 0 200px;
  width: 200px;
  height: 280px;
  border-radius: 18px;
  overflow: hidden;
  position: relative;
  box-shadow: 0 20px 40px -16px rgba(0, 0, 0, 0.5);
  opacity: 0;
  transform: translateY(16px);
}

.cad-dashai-brain.cad-reveal-in {
  animation: cadDashaiFade 0.7s ease forwards;
}

.cad-dashai-brain img {
  width: 100%;
  height: 100%;
  object-fit: cover;
  object-position: center;
  filter: grayscale(0.1) saturate(1.25) brightness(0.95);
}

.cad-dashai-brain::after {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 18, 32, 0) 55%, rgba(11, 18, 32, 0.55) 100%);
}

/* Hide on smaller screens where there isn't safe room beside the text */
@media (max-width: 1199.98px) {
  .cad-dashai-brain {
    display: none;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cad-dashai-mock,
  .cad-dashai-title,
  .cad-dashai-subtitle,
  .cad-dashai-desc,
  .cad-dashai-list,
  .cad-dashai-btn-light,
  .cad-dashai-photo-badge i,
  .cad-dashai-brain {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}
/* ============================================================
   SECTION 09 — ADVANCED GIS & GPS TECHNOLOGY
   Scoped under .cad-gis
   ============================================================ */

.cad-gis {
  background-color: #FFFFFF;
  padding-top: 30px;
  padding-bottom: 30px;
}

.cad-gis-title {
  font-size: 30px;
  font-weight: 800;
  color: #0A0E17;
  margin-bottom: 14px;
  opacity: 0;
  transform: translateY(16px);
}

.cad-gis-desc {
  font-size: 15.5px;
  line-height: 1.75;
  color: #5B6472;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(16px);
}

.cad-gis-list {
  list-style: none;
  padding-left: 0;
  margin-bottom: 0;
  opacity: 0;
  transform: translateY(16px);
}

.cad-gis-list li {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  font-size: 15px;
  font-weight: 500;
  color: #26303F;
  margin-bottom: 16px;
}

.cad-gis-list li i {
  color: #1652F0;
  margin-top: 2px;
  font-size: 15px;
}

.cad-gis-title.cad-reveal-in,
.cad-gis-desc.cad-reveal-in,
.cad-gis-list.cad-reveal-in,
.cad-gis-graphic.cad-reveal-in {
  animation: cadGisFade 0.7s ease forwards;
}

@keyframes cadGisFade {
  to { opacity: 1; transform: translateY(0); }
}

/* Map graphic */
.cad-gis-graphic {
  position: relative;
  height: 360px;
  background-color: #0B1220;
  border-radius: 20px;
  overflow: hidden;
  opacity: 0;
  transform: translateY(16px);
  box-shadow: 0 30px 54px -20px rgba(10, 14, 30, 0.4);
}

.cad-gis-map-img {
  position: absolute;
  inset: 0;
  width: 100%;
  height: 100%;
  object-fit: cover;
  transition: transform 0.6s ease;
}

.cad-gis-graphic:hover .cad-gis-map-img {
  transform: scale(1.05);
}

.cad-gis-graphic::before {
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(180deg, rgba(11, 18, 32, 0.25) 0%, rgba(11, 18, 32, 0.65) 100%);
  z-index: 1;
}

.cad-gis-dot {
  position: absolute;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  background-color: #5C8DFF;
  z-index: 2;
  box-shadow: 0 0 0 4px rgba(92, 141, 255, 0.25);
}

.cad-gis-dot-1 { top: 28%; left: 20%; }
.cad-gis-dot-2 { top: 62%; left: 45%; }
.cad-gis-dot-3 { top: 40%; left: 72%; }

.cad-gis-dot-active {
  background-color: #E5484D;
  box-shadow: 0 0 0 4px rgba(229, 72, 77, 0.28);
}

.cad-gis-ring {
  position: absolute;
  top: 40%;
  left: 72%;
  width: 12px;
  height: 12px;
  margin: -6px 0 0 -6px;
  border-radius: 50%;
  border: 2px solid rgba(229, 72, 77, 0.55);
  animation: cadGisPulse 2s ease-in-out infinite;
  z-index: 2;
}

@keyframes cadGisPulse {
  0% { transform: scale(1); opacity: 1; }
  100% { transform: scale(3.4); opacity: 0; }
}

.cad-gis-line {
  position: absolute;
  height: 1px;
  background-color: rgba(92, 141, 255, 0.5);
  transform-origin: left center;
  z-index: 2;
}

.cad-gis-line-1 {
  top: 28%;
  left: 20%;
  width: 25%;
  transform: rotate(20deg);
}

.cad-gis-line-2 {
  top: 62%;
  left: 45%;
  width: 27%;
  transform: rotate(-18deg);
}

@media (max-width: 991.98px) {
  .cad-gis-text-col {
    margin-bottom: 32px;
  }
  .cad-gis-graphic {
    height: 300px;
  }
}

@media (max-width: 575.98px) {
  .cad-gis-title {
    font-size: 24px;
  }
  .cad-gis-graphic {
    height: 240px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cad-gis-title,
  .cad-gis-desc,
  .cad-gis-list,
  .cad-gis-graphic,
  .cad-gis-ring {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   SECTION 09B — INDUSTRIES WE SERVE
   Scoped under .cad-industries
   ============================================================ */

.cad-industries {
  background-color: #F5F7FB;
  padding-top: 30px;
  padding-bottom: 30px;
}

.cad-industries-title {
  font-size: 28px;
  font-weight: 800;
  color: #0A0E17;
  text-align: center;
  max-width: 780px;
  margin: 0 auto 40px;
  opacity: 0;
  transform: translateY(16px);
}

.cad-industries-title.cad-reveal-in,
.cad-industry-card.cad-reveal-in {
  animation: cadIndustryFade 0.6s ease forwards;
}

@keyframes cadIndustryFade {
  to { opacity: 1; transform: translateY(0); }
}

.cad-industries-grid {
  margin-left: -8px;
  margin-right: -8px;
}

.cad-industries-grid > [class*="col-"] {
  padding-left: 8px;
  padding-right: 8px;
  margin-bottom: 16px;
}

.cad-industry-card {
  background-color: #FFFFFF;
  border: 1px solid #E4E8F0;
  border-radius: 16px;
  padding: 26px 14px;
  height: 100%;
  text-align: center;
  opacity: 0;
  transform: translateY(16px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.cad-industry-card:hover {
  transform: translateY(-6px);
  border-color: #1652F0;
  box-shadow: 0 20px 36px -18px rgba(22, 82, 240, 0.32);
}

.cad-industry-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 48px;
  height: 48px;
  border-radius: 14px;
  background-color: #EEF2FC;
  color: #1652F0;
  font-size: 19px;
  margin-bottom: 14px;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.cad-industry-card:hover .cad-industry-icon {
  background-color: #1652F0;
  color: #FFFFFF;
  transform: scale(1.1) rotate(-4deg);
}

.cad-industry-card h3 {
  font-size: 13px;
  font-weight: 700;
  color: #0A0E17;
  margin-bottom: 0;
  line-height: 1.4;
}

@media (max-width: 575.98px) {
  .cad-industries-title {
    font-size: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cad-industries-title,
  .cad-industry-card {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}
/* ============================================================
   SECTION 10 — ENTERPRISE MODULES + MOBILE DISPATCH APPS
   Scoped under .cad-modules
   ============================================================ */

.cad-modules {
  background-color: #FFFFFF;
  padding-top: 30px;
  padding-bottom: 30px;
}

.cad-modules-title {
  font-size: 28px;
  font-weight: 800;
  color: #0A0E17;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
  opacity: 0;
  transform: translateY(16px);
}

.cad-modules-title.cad-reveal-in,
.cad-modules-accordion.cad-reveal-in,
.cad-modules-mobile-title.cad-reveal-in,
.cad-modules-phone-row.cad-reveal-in {
  animation: cadModulesFade 0.7s ease forwards;
}

@keyframes cadModulesFade {
  to { opacity: 1; transform: translateY(0); }
}

/* Accordion */
.cad-modules-accordion {
  border-top: 1px solid #E4E8F0;
  opacity: 0;
  transform: translateY(16px);
  margin-bottom: 36px;
}

.cad-modules-item {
  border-bottom: 1px solid #E4E8F0;
}

.cad-modules-item-head {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 16px 4px;
  cursor: pointer;
  text-align: left;
  transition: color 0.2s ease;
}

.cad-modules-item-head span {
  font-size: 14.5px;
  font-weight: 700;
  color: #0A0E17;
  display: flex;
  align-items: center;
  gap: 12px;
}

.cad-modules-item-head span i {
  color: #1652F0;
  font-size: 15px;
  width: 20px;
  text-align: center;
}

.cad-modules-chevron {
  color: #9AA3B2;
  font-size: 12px;
  transition: transform 0.3s ease;
}

.cad-modules-item-body {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease, padding 0.35s ease;
  padding: 0 4px;
}

.cad-modules-item-body p {
  font-size: 13.5px;
  line-height: 1.7;
  color: #5B6472;
  padding-bottom: 16px;
  margin-bottom: 0;
}

.cad-modules-item-open .cad-modules-item-body {
  max-height: 200px;
}

.cad-modules-item-open .cad-modules-chevron {
  transform: rotate(180deg);
  color: #1652F0;
}

.cad-modules-item-head:hover span {
  color: #1652F0;
}

/* Mobile apps */
.cad-modules-mobile-title {
  font-size: 18px;
  font-weight: 700;
  color: #0A0E17;
  margin-bottom: 24px;
  opacity: 0;
  transform: translateY(16px);
}

.cad-modules-phone-row {
  display: flex;
  justify-content: space-between;
  gap: 12px;
  margin-bottom: 30px;
  opacity: 0;
  transform: translateY(16px);
}

.cad-modules-phone-block {
  flex: 1;
  display: flex;
  flex-direction: column;
  align-items: center;
}

.cad-modules-mini-phone {
  width: 100%;
  max-width: 92px;
  background-color: #0B1220;
  border-radius: 18px;
  padding: 8px 6px;
  box-shadow: 0 18px 32px -16px rgba(10, 14, 30, 0.4);
  transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.cad-modules-phone-block:hover .cad-modules-mini-phone {
  transform: translateY(-6px);
  box-shadow: 0 24px 40px -16px rgba(22, 82, 240, 0.4);
}

.cad-modules-mini-notch {
  width: 20px;
  height: 4px;
  border-radius: 3px;
  background-color: rgba(255, 255, 255, 0.15);
  margin: 0 auto 6px;
}

.cad-modules-mini-screen {
  position: relative;
  height: 130px;
  border-radius: 12px;
  overflow: hidden;
}

.cad-modules-mini-screen img {
  width: 100%;
  height: 100%;
  object-fit: cover;
}

.cad-modules-mini-screen-blue img {
  filter: grayscale(0.3) sepia(0.6) hue-rotate(175deg) saturate(2.2) brightness(0.95);
}

.cad-modules-mini-screen-green img {
  filter: grayscale(0.3) sepia(0.6) hue-rotate(65deg) saturate(2) brightness(0.95);
}

.cad-modules-mini-screen-purple img {
  filter: grayscale(0.3) sepia(0.6) hue-rotate(230deg) saturate(2) brightness(0.95);
}

.cad-modules-mini-screen::after {
  content: "";
  position: absolute;
  inset: 0;
  background-color: rgba(11, 18, 32, 0.25);
}

.cad-modules-mini-pin {
  position: absolute;
  top: 44%;
  left: 46%;
  width: 10px;
  height: 10px;
  border-radius: 50%;
  z-index: 2;
  animation: cadModulesPinPulse 1.8s ease-in-out infinite;
}

.cad-modules-mini-pin-blue {
  background-color: #5C8DFF;
  box-shadow: 0 0 0 5px rgba(92, 141, 255, 0.3);
}

.cad-modules-mini-pin-green {
  background-color: #35D68A;
  box-shadow: 0 0 0 5px rgba(53, 214, 138, 0.3);
}

.cad-modules-mini-pin-purple {
  background-color: #A67BFF;
  box-shadow: 0 0 0 5px rgba(166, 123, 255, 0.3);
}

@keyframes cadModulesPinPulse {
  0%, 100% { transform: scale(1); }
  50% { transform: scale(1.25); }
}

.cad-modules-phone-label {
  display: flex;
  align-items: center;
  gap: 6px;
  font-size: 10.5px;
  font-weight: 700;
  color: #26303F;
  margin-top: 10px;
  margin-bottom: 0;
  text-align: center;
}

.cad-modules-phone-label i {
  color: #1652F0;
  font-size: 11px;
}

/* App descriptions */
.cad-modules-apps {
  display: flex;
  flex-direction: column;
  gap: 16px;
}

.cad-modules-app {
  background-color: #F5F7FB;
  border: 1px solid #E4E8F0;
  border-radius: 14px;
  padding: 18px;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.cad-modules-app:hover {
  transform: translateY(-4px);
  border-color: #1652F0;
  box-shadow: 0 16px 30px -18px rgba(22, 82, 240, 0.32);
}

.cad-modules-app h3 {
  display: flex;
  align-items: center;
  gap: 10px;
  font-size: 14px;
  font-weight: 700;
  color: #0A0E17;
  margin-bottom: 6px;
}

.cad-modules-app h3 i {
  color: #1652F0;
}

.cad-modules-app p {
  font-size: 13px;
  line-height: 1.6;
  color: #5B6472;
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .cad-modules-mobile-col {
    margin-top: 40px;
  }
}

@media (max-width: 575.98px) {
  .cad-modules-title {
    font-size: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cad-modules-title,
  .cad-modules-accordion,
  .cad-modules-mobile-title,
  .cad-modules-phone-row {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}
/* ============================================================
   SECTION 11 — ADVANCED TECHNOLOGIES + KEY BENEFITS
   Scoped under .cad-tech
   ============================================================ */

.cad-tech {
  background-color: #F5F7FB;
  padding-top: 30px;
  padding-bottom: 30px;
}

.cad-tech-head {
  max-width: 760px;
  margin: 0 auto 40px;
  text-align: center;
}

.cad-tech-title {
  font-size: 28px;
  font-weight: 800;
  color: #0A0E17;
  margin-bottom: 14px;
  opacity: 0;
  transform: translateY(16px);
}

.cad-tech-desc {
  font-size: 15px;
  line-height: 1.75;
  color: #5B6472;
  opacity: 0;
  transform: translateY(16px);
}

.cad-tech-title.cad-reveal-in,
.cad-tech-desc.cad-reveal-in,
.cad-tech-benefits.cad-reveal-in {
  animation: cadTechFade 0.6s ease forwards;
}

@keyframes cadTechFade {
  to { opacity: 1; transform: translateY(0); }
}

.cad-tech-slider {
  position: relative;
  margin-bottom: 40px;
  opacity: 0;
  transform: translateY(16px);
}

.cad-tech-slider.cad-reveal-in {
  animation: cadTechFade 0.6s ease forwards;
}

.cad-tech-track {
  display: flex;
  gap: 16px;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x proximity;
  padding: 4px 4px 16px;
  cursor: grab;
  -webkit-overflow-scrolling: touch;
  scrollbar-width: thin;
  scrollbar-color: #C6CEDC transparent;
  user-select: none;
}

.cad-tech-track.cad-tech-dragging {
  cursor: grabbing;
  scroll-behavior: auto;
}

.cad-tech-track::-webkit-scrollbar {
  height: 6px;
}

.cad-tech-track::-webkit-scrollbar-thumb {
  background-color: #C6CEDC;
  border-radius: 6px;
}

.cad-tech-track::-webkit-scrollbar-track {
  background: transparent;
}

.cad-tech-slide {
  flex: 0 0 calc(25% - 12px);
  scroll-snap-align: start;
}

.cad-tech-card {
  background-color: #FFFFFF;
  border: 1px solid #E4E8F0;
  border-radius: 16px;
  padding: 22px 18px;
  height: 100%;
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.cad-tech-card:hover {
  transform: translateY(-6px);
  border-color: #1652F0;
  box-shadow: 0 20px 36px -18px rgba(22, 82, 240, 0.3);
}

/* Slider nav arrows */
.cad-tech-arrow {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 40px;
  height: 40px;
  border-radius: 50%;
  background-color: #FFFFFF;
  border: 1px solid #E4E8F0;
  color: #1652F0;
  font-size: 14px;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 12px 24px -12px rgba(10, 14, 30, 0.3);
  z-index: 3;
  transition: transform 0.2s ease, background-color 0.2s ease, color 0.2s ease;
}

.cad-tech-arrow:hover {
  background-color: #1652F0;
  color: #FFFFFF;
  transform: translateY(-50%) scale(1.08);
}

.cad-tech-arrow-prev {
  left: -18px;
}

.cad-tech-arrow-next {
  right: -18px;
}

@media (max-width: 991.98px) {
  .cad-tech-slide {
    flex: 0 0 calc(33.333% - 11px);
  }
}

@media (max-width: 767.98px) {
  .cad-tech-slide {
    flex: 0 0 calc(50% - 8px);
  }
  .cad-tech-arrow {
    display: none;
  }
}

@media (max-width: 480px) {
  .cad-tech-slide {
    flex: 0 0 82%;
  }
}

.cad-tech-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 42px;
  height: 42px;
  border-radius: 12px;
  background-color: #EEF2FC;
  color: #1652F0;
  font-size: 16px;
  margin-bottom: 14px;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.cad-tech-card:hover .cad-tech-icon {
  background-color: #1652F0;
  color: #FFFFFF;
  transform: scale(1.1) rotate(-4deg);
}

.cad-tech-card h3 {
  font-size: 14px;
  font-weight: 700;
  color: #0A0E17;
  margin-bottom: 8px;
  line-height: 1.35;
}

.cad-tech-card p {
  font-size: 12.5px;
  line-height: 1.6;
  color: #5B6472;
  margin-bottom: 0;
}

/* Key benefits strip */
.cad-tech-benefits {
  background-color: #0B1220;
  border-radius: 20px;
  padding: 30px 20px;
  display: flex;
  flex-wrap: wrap;
  justify-content: space-between;
  gap: 16px;
  opacity: 0;
  transform: translateY(16px);
}

.cad-tech-benefit {
  display: flex;
  align-items: center;
  gap: 10px;
  color: #FFFFFF;
  font-size: 13px;
  font-weight: 600;
  flex: 1 1 auto;
  justify-content: center;
}

.cad-tech-benefit i {
  color: #5C8DFF;
  font-size: 16px;
}

@media (max-width: 767.98px) {
  .cad-tech-benefits {
    justify-content: flex-start;
  }
  .cad-tech-benefit {
    flex: 1 1 45%;
  }
}

@media (max-width: 575.98px) {
  .cad-tech-title {
    font-size: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cad-tech-title,
  .cad-tech-desc,
  .cad-tech-slider,
  .cad-tech-benefits {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}
/* ============================================================
   SECTION 12 — IMPLEMENTATION PROCESS
   Scoped under .cad-implementation
   ============================================================ */

.cad-implementation {
  background-color: #FFFFFF;
  padding-top: 30px;
  padding-bottom: 30px;
}

.cad-implementation-title {
  font-size: 28px;
  font-weight: 800;
  color: #0A0E17;
  text-align: center;
  max-width: 760px;
  margin: 0 auto 40px;
  opacity: 0;
  transform: translateY(16px);
}

.cad-implementation-title.cad-reveal-in,
.cad-implementation-step.cad-reveal-in {
  animation: cadImplFade 0.6s ease forwards;
}

@keyframes cadImplFade {
  to { opacity: 1; transform: translateY(0); }
}

.cad-implementation-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 18px;
}

.cad-implementation-step {
  position: relative;
  background-color: #F5F7FB;
  border: 1px solid #E4E8F0;
  border-radius: 16px;
  padding: 24px 18px 20px;
  opacity: 0;
  transform: translateY(16px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease, background-color 0.3s ease;
}

.cad-implementation-step:hover {
  background-color: #FFFFFF;
  transform: translateY(-6px);
  border-color: #1652F0;
  box-shadow: 0 20px 34px -18px rgba(22, 82, 240, 0.3);
}

.cad-implementation-step:not(.cad-implementation-step-last):not(:nth-child(4n))::after {
  content: "\f061";
  font-family: "Font Awesome 6 Free";
  font-weight: 900;
  position: absolute;
  top: 50%;
  right: -14px;
  transform: translateY(-50%);
  font-size: 11px;
  color: #C6CEDC;
  z-index: 2;
}

.cad-implementation-num {
  position: absolute;
  top: 14px;
  right: 16px;
  font-size: 11px;
  font-weight: 800;
  color: #C6CEDC;
}

.cad-implementation-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background-color: #EEF2FC;
  color: #1652F0;
  font-size: 17px;
  margin-bottom: 14px;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.cad-implementation-step:hover .cad-implementation-icon {
  background-color: #1652F0;
  color: #FFFFFF;
  transform: scale(1.08);
}

.cad-implementation-step h3 {
  font-size: 14px;
  font-weight: 700;
  color: #0A0E17;
  margin-bottom: 8px;
  line-height: 1.35;
}

.cad-implementation-step p {
  font-size: 12.5px;
  line-height: 1.6;
  color: #5B6472;
  margin-bottom: 0;
}

@media (max-width: 991.98px) {
  .cad-implementation-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .cad-implementation-step::after {
    display: none;
  }
}

@media (max-width: 575.98px) {
  .cad-implementation-grid {
    grid-template-columns: 1fr;
  }
  .cad-implementation-title {
    font-size: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cad-implementation-title,
  .cad-implementation-step {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   SECTION 13 — WHY CHOOSE SISGAIN
   Scoped under .cad-why
   ============================================================ */

.cad-why {
  background-color: #F5F7FB;
  padding-top: 30px;
  padding-bottom: 30px;
}

.cad-why-head {
  max-width: 680px;
  margin: 0 auto 36px;
  text-align: center;
}

.cad-why-title {
  font-size: 28px;
  font-weight: 800;
  color: #0A0E17;
  margin-bottom: 12px;
  opacity: 0;
  transform: translateY(16px);
}

.cad-why-desc {
  font-size: 14.5px;
  line-height: 1.7;
  color: #5B6472;
  opacity: 0;
  transform: translateY(16px);
}

.cad-why-title.cad-reveal-in,
.cad-why-desc.cad-reveal-in,
.cad-why-card.cad-reveal-in {
  animation: cadWhyFade 0.6s ease forwards;
}

@keyframes cadWhyFade {
  to { opacity: 1; transform: translateY(0); }
}

.cad-why-grid {
  margin-left: -8px;
  margin-right: -8px;
}

.cad-why-grid > [class*="col-"] {
  padding-left: 8px;
  padding-right: 8px;
  margin-bottom: 16px;
}

.cad-why-card {
  background-color: #FFFFFF;
  border: 1px solid #E4E8F0;
  border-radius: 16px;
  padding: 26px 16px;
  height: 100%;
  text-align: center;
  opacity: 0;
  transform: translateY(16px);
  transition: transform 0.3s ease, box-shadow 0.3s ease, border-color 0.3s ease;
}

.cad-why-card:hover {
  transform: translateY(-6px);
  border-color: #1652F0;
  box-shadow: 0 20px 36px -18px rgba(22, 82, 240, 0.32);
}

.cad-why-icon {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 50px;
  height: 50px;
  border-radius: 50%;
  background-color: #EEF2FC;
  color: #1652F0;
  font-size: 19px;
  margin-bottom: 16px;
  transition: transform 0.3s ease, background-color 0.3s ease, color 0.3s ease;
}

.cad-why-card:hover .cad-why-icon {
  background-color: #1652F0;
  color: #FFFFFF;
  transform: scale(1.1);
}

.cad-why-card h3 {
  font-size: 13.5px;
  font-weight: 700;
  color: #0A0E17;
  margin-bottom: 0;
  line-height: 1.4;
}

@media (max-width: 575.98px) {
  .cad-why-title {
    font-size: 22px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cad-why-title,
  .cad-why-desc,
  .cad-why-card {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   SECTION 14 — FREQUENTLY ASKED QUESTIONS
   Scoped under .cad-faq
   ============================================================ */

.cad-faq {
  background-color: #FFFFFF;
  padding-top: 30px;
  padding-bottom: 30px;
}

.cad-faq-title {
  font-size: 28px;
  font-weight: 800;
  color: #0A0E17;
  text-align: center;
  margin-bottom: 36px;
  opacity: 0;
  transform: translateY(16px);
}

.cad-faq-title.cad-reveal-in,
.cad-faq-item.cad-reveal-in,
.cad-faq-more.cad-reveal-in {
  animation: cadFaqFade 0.6s ease forwards;
}

@keyframes cadFaqFade {
  to { opacity: 1; transform: translateY(0); }
}

.cad-faq-item {
  border-bottom: 1px solid #E4E8F0;
  opacity: 0;
  transform: translateY(16px);
}

.cad-faq-q {
  width: 100%;
  background: none;
  border: none;
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 14px;
  padding: 18px 4px;
  text-align: left;
  cursor: pointer;
}

.cad-faq-q span {
  font-size: 14.5px;
  font-weight: 700;
  color: #0A0E17;
  line-height: 1.4;
}

.cad-faq-q i {
  color: #9AA3B2;
  font-size: 12px;
  margin-top: 4px;
  flex-shrink: 0;
  transition: transform 0.3s ease, color 0.3s ease;
}

.cad-faq-a {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s ease;
  padding: 0 4px;
}

.cad-faq-a p {
  font-size: 13.5px;
  line-height: 1.7;
  color: #5B6472;
  padding-bottom: 18px;
  margin-bottom: 0;
}

.cad-faq-item-open .cad-faq-a {
  max-height: 260px;
}

.cad-faq-item-open .cad-faq-q i {
  transform: rotate(180deg);
  color: #1652F0;
}

.cad-faq-q:hover span {
  color: #1652F0;
}

.cad-faq-more {
  text-align: center;
  margin-top: 30px;
  opacity: 0;
  transform: translateY(16px);
}

.cad-faq-more-btn {
  position: relative;
  overflow: hidden;
  background-color: #0B1220;
  color: #FFFFFF;
  border: none;
  border-radius: 10px;
  padding: 14px 30px;
  font-size: 14.5px;
  font-weight: 700;
  transition: transform 0.25s ease, background-color 0.25s ease, box-shadow 0.25s ease;
}

.cad-faq-more-btn:hover {
  background-color: #1652F0;
  transform: translateY(-2px);
  box-shadow: 0 14px 26px -10px rgba(22, 82, 240, 0.5);
}

.cad-faq-more-btn .cad-ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: cadFaqRipple 0.6s linear;
  background-color: rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

@keyframes cadFaqRipple {
  to { transform: scale(2.6); opacity: 0; }
}

@media (max-width: 575.98px) {
  .cad-faq-title {
    font-size: 22px;
  }
  .cad-faq-q span {
    font-size: 13.5px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cad-faq-title,
  .cad-faq-item,
  .cad-faq-more {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}

/* ============================================================
   SECTION 15 — FINAL CTA
   Scoped under .cad-finalcta
   ============================================================ */

.cad-finalcta {
  background-color: #F5F7FB;
  padding-top: 30px;
  padding-bottom: 30px;
}

.cad-finalcta-box {
  position: relative;
  background-color: #0B1220;
  border-radius: 26px;
  padding: 56px 40px;
  text-align: center;
  overflow: hidden;
  opacity: 0;
  transform: translateY(20px);
}

.cad-finalcta-box.cad-reveal-in {
  animation: cadFinalFade 0.8s ease forwards;
}

@keyframes cadFinalFade {
  to { opacity: 1; transform: translateY(0); }
}

.cad-finalcta-glow {
  position: absolute;
  width: 420px;
  height: 420px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(22, 82, 240, 0.35) 0%, rgba(22, 82, 240, 0) 70%);
  top: -180px;
  left: 50%;
  transform: translateX(-50%);
  animation: cadFinalGlow 6s ease-in-out infinite;
}

@keyframes cadFinalGlow {
  0%, 100% { opacity: 0.6; }
  50% { opacity: 1; }
}

.cad-finalcta-title {
  position: relative;
  font-size: 30px;
  font-weight: 800;
  color: #FFFFFF;
  max-width: 720px;
  margin: 0 auto 18px;
  line-height: 1.3;
  z-index: 2;
}

.cad-finalcta-desc {
  position: relative;
  font-size: 15px;
  line-height: 1.8;
  color: rgba(255, 255, 255, 0.65);
  max-width: 680px;
  margin: 0 auto 30px;
  z-index: 2;
}

.cad-finalcta-actions {
  position: relative;
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  z-index: 2;
}

.cad-finalcta-btn-primary,
.cad-finalcta-btn-secondary {
  position: relative;
  overflow: hidden;
  border-radius: 10px;
  padding: 14px 28px;
  font-size: 14.5px;
  font-weight: 700;
  border: none;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background-color 0.25s ease;
}

.cad-finalcta-btn-primary {
  background-color: #1652F0;
  color: #FFFFFF;
}

.cad-finalcta-btn-primary:hover {
  background-color: #3A6BFF;
  transform: translateY(-2px);
  box-shadow: 0 16px 30px -10px rgba(22, 82, 240, 0.6);
}

.cad-finalcta-btn-secondary {
  background-color: transparent;
  color: #FFFFFF;
  border: 1px solid rgba(255, 255, 255, 0.3);
}

.cad-finalcta-btn-secondary:hover {
  border-color: #FFFFFF;
  transform: translateY(-2px);
}

.cad-finalcta-btn-primary .cad-ripple,
.cad-finalcta-btn-secondary .cad-ripple {
  position: absolute;
  border-radius: 50%;
  transform: scale(0);
  animation: cadFinalRipple 0.6s linear;
  background-color: rgba(255, 255, 255, 0.35);
  pointer-events: none;
}

@keyframes cadFinalRipple {
  to { transform: scale(2.6); opacity: 0; }
}

@media (max-width: 575.98px) {
  .cad-finalcta-box {
    padding: 40px 22px;
  }
  .cad-finalcta-title {
    font-size: 22px;
  }
  .cad-finalcta-btn-primary,
  .cad-finalcta-btn-secondary {
    width: 100%;
  }
}

@media (prefers-reduced-motion: reduce) {
  .cad-finalcta-box,
  .cad-finalcta-glow {
    animation: none !important;
    opacity: 1;
    transform: none;
  }
}

/* ===== SCOPED TO #CaseStudies SECTION ONLY ===== */
  #CaseStudies {
    background: #07080B;
    padding: 30px 0;
    position: relative;
    overflow: hidden;
    color: #F3F4F6;
  }

  #CaseStudies::before {
    content: "";
    position: absolute;
    top: -200px;
    left: 50%;
    transform: translateX(-50%);
    width: 900px;
    height: 600px;
    background: radial-gradient(circle, rgba(34,211,238,0.10) 0%, rgba(139,92,246,0.06) 45%, transparent 70%);
    filter: blur(60px);
    pointer-events: none;
  }

  #CaseStudies::after {
    content: "";
    position: absolute;
    inset: 0;
    background-image:
      linear-gradient(rgba(255,255,255,0.025) 1px, transparent 1px),
      linear-gradient(90deg, rgba(255,255,255,0.025) 1px, transparent 1px);
    background-size: 48px 48px;
    pointer-events: none;
  }

  #CaseStudies .cs-container {
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 32px;
    position: relative;
    z-index: 2;
  }

  #CaseStudies .client-title {
    font-size: 56px;
    font-weight: 700;
    line-height: 1.05;
    letter-spacing: -0.02em;
    text-align: center;
    margin: 0 0 16px 0;
    color: #F3F4F6;
  }



  #CaseStudies .cs-subtext {
    text-align: center;
    max-width: 620px;
    margin: 0 auto 64px auto;
    font-size: 18px;
    font-weight: 300;
    line-height: 1.55;
    color: #8A8F9B;
  }

  /* ===== VIEWPORT (shows exactly one card) ===== */
  #CaseStudies .cs-viewport {
    position: relative;
    max-width: 1140px;
    margin: 0 auto;
    overflow: hidden;
  }

  #CaseStudies .casestudies_slider {
    position: relative;
    overflow: hidden;
  }

  #CaseStudies .slider-casestudies {
    display: flex;
    transition: transform 0.6s cubic-bezier(0.65, 0, 0.35, 1);
    will-change: transform;
  }

  #CaseStudies .caseStudiesSliderBox {
    flex: 0 0 100%;
    max-width: 100%;
    box-sizing: border-box;
    padding: 6px;
  }

  /* ===== CARD ===== */
  #CaseStudies .case_box {
    position: relative;
    display: flex;
    align-items: center;
    gap: 36px;
    background: #0F1219;
    border-radius: 24px;
    overflow: hidden;
    padding: 40px;
    transition: transform 0.35s ease, background 0.35s ease;
    backdrop-filter: blur(18px);
    -webkit-backdrop-filter: blur(18px);
    z-index: 0;
  }

  /* static border */
  #CaseStudies .case_box::before {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1px;
    background: rgba(255,255,255,0.07);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    transition: opacity 0.35s ease;
    z-index: 1;
  }

  /* animated gradient border on hover */
  #CaseStudies .case_box::after {
    content: "";
    position: absolute;
    inset: 0;
    border-radius: 24px;
    padding: 1.5px;
    background: conic-gradient(from var(--angle, 0deg), #22D3EE, #8B5CF6, #5EE6E0, #22D3EE);
    -webkit-mask: linear-gradient(#fff 0 0) content-box, linear-gradient(#fff 0 0);
    -webkit-mask-composite: xor;
    mask-composite: exclude;
    pointer-events: none;
    opacity: 0;
    transition: opacity 0.35s ease;
    animation: cs-rotate 3s linear infinite;
    z-index: 2;
  }

  @property --angle {
    syntax: '<angle>';
    initial-value: 0deg;
    inherits: false;
  }

  @keyframes cs-rotate {
    to { --angle: 360deg; }
  }

  #CaseStudies .case_box:hover {
    transform: translateY(-6px);
    background: rgba(15, 18, 25, 0.92);
    box-shadow: 0 24px 60px -20px rgba(56,189,248,0.25), 0 0 40px rgba(56,189,248,0.08);
  }

  #CaseStudies .case_box:hover::before { opacity: 0; }
  #CaseStudies .case_box:hover::after { opacity: 1; }

  #CaseStudies .case_box__image {
    flex: 0 0 420px;
    width: 420px;
    height: 300px;
    position: relative;
    overflow: hidden;
    /* background: #0C0E14; */
    /* border-radius: 16px;
    border: 1px solid rgba(255,255,255,0.07); */
    display: flex;
    align-items: center;
    justify-content: center;
  }

  #CaseStudies .case_box__image img {
    width: 100%;
    height: 100%;
    object-fit: contain;
    object-position: center;
    display: block;
  }

  #CaseStudies .case_box__content {
    flex: 1;
    min-width: 0;
    display: flex;
    flex-direction: column;
  }

  #CaseStudies .case_box__content h4 {
    font-size: 28px;
    font-weight: 600;
    letter-spacing: -0.02em;
    margin: 0 0 14px 0;
    color: #F3F4F6;
  }

  #CaseStudies .case_box__content p {
    font-size: 14px;
    font-weight: 300;
    line-height: 1.6;
    color: #C7CAD1;
    margin: 0 0 20px 0;
  }

  #CaseStudies .case_box__points {
    list-style: none;
    margin: 0 0 28px 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    gap: 10px;
  }

  #CaseStudies .case_box__points li {
    position: relative;
    padding-left: 22px;
    font-size: 13px;
    font-weight: 400;
    color: #8A8F9B;
    line-height: 1.4;
  }

  #CaseStudies .case_box__points li::before {
    content: "";
    position: absolute;
    left: 0;
    top: 6px;
    width: 7px;
    height: 7px;
    border-radius: 50%;
    background: linear-gradient(135deg, #22D3EE, #8B5CF6);
  }

  #CaseStudies .viewCaseStudies {
    margin-top: auto;
    display: inline-flex;
    align-items: center;
    gap: 8px;
    width: fit-content;
    padding: 14px 22px;
    border-radius: 999px;
    background: #F3F4F6;
    color: #07080B;
    font-size: 14px;
    font-weight: 500;
    text-decoration: none;
    transition: transform 0.3s ease, background 0.3s ease, gap 0.3s ease;
  }

  #CaseStudies .viewCaseStudies i {
    font-style: normal;
    transition: transform 0.3s ease;
  }

  #CaseStudies .viewCaseStudies::after {
    content: "\2192";
    transition: transform 0.3s ease;
  }

  #CaseStudies .viewCaseStudies i {
    display: none; /* font-awesome glyph not loaded, use unicode arrow above */
  }

  #CaseStudies .viewCaseStudies:hover {
    transform: translateY(-3px);
    background: #22D3EE;
  }

  #CaseStudies .viewCaseStudies:hover::after {
    transform: translateX(4px);
  }

  /* ===== DOTS / PROGRESS ===== */
  #CaseStudies .cs-dots {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 8px;
    margin-top: 32px;
    flex-wrap: wrap;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
  }

  #CaseStudies .cs-dot {
    width: 8px;
    height: 8px;
    border-radius: 999px;
    background: rgba(255,255,255,0.12);
    border: none;
    cursor: pointer;
    transition: width 0.35s ease, background 0.35s ease;
    padding: 0;
  }

  #CaseStudies .cs-dot.active {
    width: 26px;
    background: linear-gradient(90deg, #22D3EE, #8B5CF6);
  }

  /* ===== ARROWS ===== */
  #CaseStudies .caseStudiesBottomArrows {
    display: flex;
    justify-content: center;
    gap: 14px;
    margin-top: 36px;
  }

  #CaseStudies .caseStudiesBottomArrows button {
    width: 48px;
    height: 48px;
    border-radius: 999px;
    background: rgba(255,255,255,0.04);
    border: 1px solid rgba(255,255,255,0.07);
    color: #F3F4F6;
    font-size: 16px;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: border-color 0.3s ease, background 0.3s ease, transform 0.3s ease;
  }

  #CaseStudies .caseStudiesBottomArrows button:hover {
    border-color: rgba(56,189,248,0.55);
    background: rgba(56,189,248,0.08);
    transform: translateY(-2px);
  }

  #CaseStudies .caseStudiesBottomArrows i {
    font-style: normal;
  }

  #CaseStudies .caseStudiesBottomArrows .fa-arrow-left::before { content: "\2190"; }
  #CaseStudies .caseStudiesBottomArrows .fa-arrow-right::before { content: "\2192"; }

  /* ===== RESPONSIVE ===== */
  @media (max-width: 991px) {
    #CaseStudies { padding: 90px 0; }
    #CaseStudies .client-title { font-size: 40px; }
    #CaseStudies .case_box { flex-direction: column; padding: 32px; gap: 24px; }
    #CaseStudies .case_box__image { width: 100%; max-width: 360px; height: 260px; flex: 0 0 260px; }
    #CaseStudies .case_box__content { align-items: center; text-align: center; }
    #CaseStudies .case_box__content h4 { font-size: 24px; }
    #CaseStudies .case_box__points { align-items: flex-start; }
  }

  @media (max-width: 575px) {
    #CaseStudies { padding: 30px 0; }
    #CaseStudies .cs-container { padding: 0 20px; }
    #CaseStudies .client-title { font-size: 30px; }
    #CaseStudies .cs-subtext { font-size: 15px; margin-bottom: 40px; }
    #CaseStudies .case_box { padding: 24px; }
    #CaseStudies .case_box__image { width: 100%; max-width: 280px; height: 220px; flex: 0 0 220px; }
    #CaseStudies .case_box__content h4 { font-size: 21px; }
    #CaseStudies .case_box__points li { font-size: 12px; }
    #CaseStudies .caseStudiesBottomArrows button { width: 42px; height: 42px; }
  }
.tr-gradient-text{
    background: linear-gradient(90deg, #22D3EE, #8B5CF6, #FFFFFF);
    -webkit-background-clip: text;
    background-clip: text;
    -webkit-text-fill-color: transparent;
   display:inline-block;
    padding-bottom:6px;
    line-height:inherit;
}

/* =============================================
   TECH STACK SECTION
============================================= */
.techstack-section-main {
  background: #F5F7FB;
  padding: 30px 0;
  overflow: hidden;
}
.techstack-logo-grid {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
  justify-content: center;
}
.section-heading-h2 {

  font-size: clamp(26px, 4vw, 44px);
  font-weight: 800;
  color: #000;
  line-height: 1.15;
  margin-bottom: 14px;
}
.section-subheading {
  
  font-size: 16px;
  color: #000;
  max-width: 560px;
  margin: 0 auto 60px;
  line-height: 1.7;
}
.techstack-logo-item {
  background: rgba(15,23,42,0.8);
  border: 1px solid rgba(255,255,255,0.06);
  border-radius: 14px;
  padding: 20px 28px;
  display: flex;
  align-items: center;
  justify-content: center;
  min-width: 140px;
  transition: all 0.3s;
}
.techstack-logo-item{
    display:flex;
    flex-direction:column;
    align-items:center;
}
.techstack-logo-item:hover {
  border-color: rgba(59,130,246,0.3);
  box-shadow: 0 0 20px rgba(30,80,255,0.1);
  transform: translateY(-2px);
}
.techstack-logo-item img {
  max-height: auto!important;
  max-width: 100px;
  object-fit: contain;

 opacity: 1; filter: grayscale(0%);
  transition: all 0.3s;
}
.techstack-logo-item:hover img { opacity: 1; filter: grayscale(0%); }
.techstack-logo-name {

  font-size: 13px;
  font-weight: 700;
  color: #fff;
  letter-spacing: 0.5px;
  transition: color 0.3s;
}
.techstack-logo-item:hover .techstack-logo-name { color: #94a3b8; }
