:root {
  /* Antigravity AI Palette */
  --color-thrust: #E8631C;
  /* primary CTA */
  --color-orbit: #F2844A;
  /* hover/gradient */
  --color-solar-mist: #FAD4C0;
  /* tinted bg */
  --color-deep-space: #1C2A3A;
  /* dark bg / main text */
  --color-midnight: #2E4257;
  /* dark cards / secondary text */
  --color-nebula: #8BA0B5;
  /* muted text */
  --color-cloud: #F5F4F2;
  /* light bg / light text */
  --color-zerog: #00BFA5;
  /* accent/AI */

  /* Semantic Mappings */
  --prim: var(--color-thrust);
  --prim-hover: var(--color-orbit);
  --ink: var(--color-deep-space);
  --ink-mid: var(--color-midnight);
  --ink-light: var(--color-nebula);
  --sky: var(--color-solar-mist);
  --white: #FFFFFF;
  --offwhite: var(--color-cloud);

  /* Brand colors mapping (reusing old names to minimize breakage) */
  --blue: var(--color-thrust);
  --blue-deep: #D15616;
  /* Slightly darker thrust */
  --blue-soft: var(--color-orbit);

  --border: rgba(28, 42, 58, 0.10);
  --gold: var(--color-zerog);
  --shadow-sm: 0 4px 12px rgba(28, 42, 58, 0.08);
  --shadow-md: 0 12px 32px rgba(28, 42, 58, 0.12);
  --shadow-lg: 0 24px 64px rgba(28, 42, 58, 0.16);

  --r-card: 12px;
  --r-btn: 20px;
  --r: 18px;
  /* legacy compatibility */
}

* {
  margin: 0;
  padding: 0;
  box-sizing: border-box;
}

html,
body {
  font-family: 'Plus Jakarta Sans', sans-serif;
  color: var(--ink);
  background: var(--bg);
  overflow-x: hidden !important;
  position: relative;
  width: 100%;
  -webkit-font-smoothing: antialiased;
  font-weight: 400;
  line-height: 1.6;
}

h1,
h2,
h3,
h4,
h5,
h6 {
  font-weight: 700;
  color: var(--ink);
}

/* multi-page */

/* CURSOR */
.cdot {
  width: 8px;
  height: 8px;
  background: var(--blue);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99999;
  transform: translate(-50%, -50%);
  transition: transform .1s;
}

.cring {
  width: 36px;
  height: 36px;
  border: 1.5px solid rgba(232, 99, 28, 0.3);
  border-radius: 50%;
  position: fixed;
  pointer-events: none;
  z-index: 99998;
  transform: translate(-50%, -50%);
  transition: left .12s ease, top .12s ease, width .2s, height .2s;
}

/* ── FLOATING LIQUID NAVBAR ── */
#mainNav {
  position: fixed;
  top: 10px;
  left: 50%;
  transform: translateX(-50%);
  width: calc(100% - 40px);
  max-width: 1240px;
  background: rgba(255, 255, 255, 0.82);
  backdrop-filter: blur(22px);
  -webkit-backdrop-filter: blur(22px);
  border: 1px solid rgba(255, 255, 255, 0.72);
  border-radius: 20px;
  padding: .25rem 1.2rem;
  box-shadow: 0 4px 28px rgba(232, 99, 28, 0.1), 0 1px 0 rgba(255, 255, 255, .8) inset;
  transition: all .35s cubic-bezier(.4, 0, .2, 1);
  z-index: 9990;
}

#mainNav.scrolled {
  top: 8px;
  background: rgba(255, 255, 255, 0.94);
  box-shadow: 0 8px 40px rgba(232, 99, 28, 0.14), 0 1px 0 rgba(255, 255, 255, .9) inset;
  border-color: rgba(232, 99, 28, 0.13);
}

#mainNav.navbar {
  padding-top: .25rem;
  padding-bottom: .25rem;
}

.nbrand {
  display: flex;
  align-items: center;
  gap: 11px;
  text-decoration: none;
  cursor: pointer;
}

.nbrand img {
  height: 70px;
  width: auto;
  object-fit: contain;
  transition: height 0.3s ease;
}

#siteFooter .nbrand img {
  height: 125px;
}

@media (max-width: 767px) {
  .nbrand img {
    height: 75px;
  }

  #siteFooter .nbrand img {
    height: 95px;
  }
}

.nlogo {
  width: 38px;
  height: 38px;
  border-radius: 11px;
  background: linear-gradient(135deg, var(--blue-soft), var(--blue-deep));
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: .95rem;
  box-shadow: 0 4px 12px rgba(232, 99, 28, 0.22);
  flex-shrink: 0;
}

.nname {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.25rem;
  font-weight: 700;
  color: var(--ink);
  letter-spacing: -.2px;
  line-height: 1;
}

.nsub {
  font-size: .56rem;
  font-weight: 500;
  color: var(--ink-light);
  letter-spacing: 2px;
  text-transform: uppercase;
}

.navbar-nav .nav-link {
  font-size: .78rem;
  font-weight: 500;
  letter-spacing: .35px;
  color: var(--ink-mid) !important;
  padding: .4rem .82rem !important;
  border-radius: 50px;
  transition: all .2s;
  cursor: pointer;
}

.navbar-nav .nav-link:hover {
  color: var(--prim) !important;
  background: rgba(232, 99, 28, 0.07);
}

.dropdown-menu {
  background: rgba(255, 255, 255, 0.96);
  backdrop-filter: blur(16px);
  border: 1px solid var(--border);
  border-radius: 16px;
  box-shadow: var(--shadow-lg);
  padding: .5rem;
  min-width: 220px;
}

.dropdown-item {
  border-radius: 9px;
  font-size: .81rem;
  font-weight: 500;
  color: var(--ink-mid);
  padding: .52rem 1rem;
  transition: all .15s;
  cursor: pointer;
}

.dropdown-item:hover {
  background: var(--sky);
  color: var(--blue);
}

.navbar-nav .nav-link.navcta {
  background: var(--prim) !important;
  color: #fff !important;
  border-radius: var(--r-btn) !important;
  padding: .5rem 1.5rem !important;
  font-size: .8rem !important;
  font-weight: 700 !important;
  transition: all .25s cubic-bezier(.4, 0, .2, 1) !important;
  letter-spacing: .4px !important;
  box-shadow: 0 4px 14px rgba(232, 99, 28, 0.3) !important;
}

.navbar-nav .nav-link.navcta:hover {
  color: #fff !important;
  background: var(--prim-hover) !important;
  box-shadow: 0 8px 24px rgba(232, 99, 28, 0.45) !important;
  transform: translateY(-2px) !important;
}

.navbar-toggler {
  border: 1px solid var(--border);
  border-radius: 9px;
  background: var(--sky);
}

.navbar-toggler:focus {
  box-shadow: none;
}

/* ── BANNER BG IMAGE SUPPORT ── */
.hslide.has-bg {
  background-size: contain !important;
  background-position: center !important;
  background-repeat: no-repeat !important;
}

.hslide-overlay {
  position: absolute;
  inset: 0;
  z-index: 1;
  opacity: 1.5;
  pointer-events: none;
  background: linear-gradient(to right, rgba(234, 244, 251, 1) 0%, rgba(234, 244, 251, 0.45) 55%, transparent 100%);
}

.hslide .container {
  position: relative;
  z-index: 1;
}

/* ── HERO CAROUSEL ── */
#heroCarousel {
  position: relative;
  width: 100%;
  height: 100vh;
  min-height: 600px;
  overflow: hidden;
}

.hslide {
  position: absolute;
  inset: 0;
  display: flex;
  align-items: center;
  opacity: 0;
  transition: opacity 1s ease;
  pointer-events: none;
  padding-top: 80px;
}

.hslide.active {
  opacity: 1;
  pointer-events: auto;
}

/* .hs1 {
  background: linear-gradient(135deg, #EAF4FB 0%, #D3EBF8 50%, #b8dff5 100%);
}

.hs2 {
  background: linear-gradient(135deg, #e8f8f5 0%, #c8ede5 50%, #a5d9ce 100%);
}

.hs3 {
  background: linear-gradient(135deg, #f0f4ff 0%, #dde6fb 50%, #c3d3f7 100%);
}

.hs4 {
  background: linear-gradient(135deg, #fffbf0 0%, #fef0cc 50%, #fde3a0 100%);
} */

.hslide::before {
  content: '';
  position: absolute;
  right: -120px;
  top: -100px;
  width: 650px;
  height: 650px;
  border-radius: 50%;
  opacity: .5;
  pointer-events: none;
  max-width: 100vw;
}

.hs1::before {
  background: radial-gradient(circle, rgba(232, 99, 28, 0.13) 0%, transparent 70%);
}

.hs2::before {
  background: radial-gradient(circle, rgba(0, 191, 165, 0.12) 0%, transparent 70%);
}

.hs3::before {
  background: radial-gradient(circle, rgba(139, 160, 181, 0.1) 0%, transparent 70%);
}

.hs4::before {
  background: radial-gradient(circle, rgba(242, 132, 74, 0.15) 0%, transparent 70%);
}

.hslide::after {
  content: '';
  position: absolute;
  left: -80px;
  bottom: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  opacity: .4;
  pointer-events: none;
  max-width: 100vw;
}

.hs1::after {
  background: radial-gradient(circle, rgba(232, 99, 28, 0.08) 0%, transparent 70%);
}

.hs2::after {
  background: radial-gradient(circle, rgba(0, 191, 165, 0.08) 0%, transparent 70%);
}

.hs3::after {
  background: radial-gradient(circle, rgba(139, 160, 181, 0.07) 0%, transparent 70%);
}

.hs4::after {
  background: radial-gradient(circle, rgba(242, 132, 74, 0.09) 0%, transparent 70%);
}

.hslide.active .hbadge {
  animation: fadeUp .6s ease both;
}

.hslide.active .htitle {
  animation: fadeUp .6s .1s ease both;
}

.hslide.active .hdesc {
  animation: fadeUp .6s .2s ease both;
}

.hslide.active .hbtns {
  animation: fadeUp .6s .3s ease both;
}

.hslide.active .hstats {
  animation: fadeUp .6s .4s ease both;
}

.hslide.active .hvisual {
  animation: fadeUp .6s .25s ease both;
}

.hbadge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: rgba(0, 191, 165, 0.08);
  border: 1px solid rgba(0, 191, 165, 0.2);
  color: var(--color-zerog);
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: 1.5px;
  text-transform: uppercase;
  padding: 8px 18px;
  border-radius: 50px;
  margin-bottom: 2rem;
}

.hs2 .hbadge {
  background: rgba(242, 132, 74, 0.09);
  border-color: rgba(242, 132, 74, 0.2);
  color: var(--color-orbit);
}

.hs3 .hbadge {
  background: rgba(139, 160, 181, 0.09);
  border-color: rgba(139, 160, 181, 0.2);
  color: var(--color-nebula);
}

.hs4 .hbadge {
  background: rgba(242, 132, 74, 0.1);
  border-color: rgba(242, 132, 74, 0.25);
  color: var(--color-orbit);
}

.htitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.8rem, 5.5vw, 5rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.06;
  letter-spacing: -.5px;
  margin-bottom: 1.4rem;
}

.htitle em {
  font-style: italic;
  color: var(--blue);
}

.hs2 .htitle em {
  color: var(--color-orbit);
}

.hs3 .htitle em {
  color: var(--color-nebula);
}

.hs4 .htitle em {
  color: var(--color-orbit);
}

.hdesc {
  color: black;
  font-size: 1rem;
  line-height: 1.9;
  max-width: 480px;
  margin-bottom: 2.2rem;
  font-weight: 300;
}

.hbtns {
  display: flex;
  gap: 14px;
  flex-wrap: wrap;
}

.hstats {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
  margin-top: 2.8rem;
}

.hstat {
  background: rgba(255, 255, 255, .82);
  backdrop-filter: blur(8px);
  border-radius: 16px;
  padding: .85rem 1.15rem;
  box-shadow: var(--shadow-sm);
  border: 1px solid rgba(255, 255, 255, .7);
}

.hstat .n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 1.85rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}

.hstat .l {
  font-size: .62rem;
  color: var(--ink-light);
  letter-spacing: .8px;
  text-transform: uppercase;
  margin-top: 2px;
}

/* visual */
.hvisual {
  display: flex;
  align-items: center;
  justify-content: center;
  height: 480px;
  position: relative;
}

.hvcircle {
  width: 340px;
  height: 340px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  box-shadow: 0 30px 80px rgba(232, 99, 28, 0.13);
  animation: floatY 5s ease-in-out infinite;
}

.hs1 .hvcircle {
  background: linear-gradient(160deg, rgba(255, 255, 255, .88) 0%, var(--color-solar-mist) 100%);
}

.hs2 .hvcircle {
  background: linear-gradient(160deg, rgba(255, 255, 255, .88) 0%, var(--color-solar-mist) 100%);
}

.hs3 .hvcircle {
  background: linear-gradient(160deg, rgba(255, 255, 255, .88) 0%, #ede7f6 100%);
}

.hs4 .hvcircle {
  background: linear-gradient(160deg, rgba(255, 255, 255, .88) 0%, var(--color-solar-mist) 100%);
}

.hvinner {
  width: 225px;
  height: 225px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .7);
  backdrop-filter: blur(10px);
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: inset 0 4px 20px rgba(255, 255, 255, .5);
}

.hvicon {
  font-size: 5rem;
}

.hs1 .hvicon {
  background: linear-gradient(160deg, var(--color-orbit), var(--color-thrust));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hs2 .hvicon {
  background: linear-gradient(160deg, var(--color-orbit), var(--color-thrust));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hs3 .hvicon {
  background: linear-gradient(160deg, var(--color-nebula), var(--color-deep-space));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hs4 .hvicon {
  background: linear-gradient(160deg, var(--color-orbit), var(--color-thrust));
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hvring {
  position: absolute;
  border-radius: 50%;
  animation: pring 3.2s ease-in-out infinite;
}

.hvr1 {
  width: 400px;
  height: 400px;
  border: 1.5px solid rgba(232, 99, 28, 0.1);
}

.hvr2 {
  width: 480px;
  height: 480px;
  border: 1px dashed rgba(232, 99, 28, 0.08);
  animation-delay: .9s;
}

/* floating badges */
.hfb {
  position: absolute;
  background: rgba(255, 255, 255, .92);
  backdrop-filter: blur(10px);
  border-radius: 13px;
  padding: .58rem .88rem;
  box-shadow: var(--shadow-md);
  border: 1px solid rgba(255, 255, 255, .8);
  display: flex;
  align-items: center;
  gap: 9px;
  animation: floatY 4.8s ease-in-out infinite;
}

.hfbi {
  width: 32px;
  height: 32px;
  border-radius: 9px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: .85rem;
  flex-shrink: 0;
}

.hs1 .hfbi {
  background: var(--sky);
  color: var(--blue);
}

.hs2 .hfbi {
  background: var(--color-solar-mist);
  color: var(--color-orbit);
}

.hs3 .hfbi {
  background: rgba(139, 160, 181, 0.1);
  color: var(--color-nebula);
}

.hs4 .hfbi {
  background: rgba(242, 132, 74, 0.1);
  color: var(--color-orbit);
}

.hfbt {
  font-size: .68rem;
  font-weight: 600;
  color: var(--ink);
  line-height: 1.3;
}

.hfbs {
  font-size: .61rem;
  color: var(--ink-light);
}

.hfb1 {
  top: 45px;
  left: 5px;
  animation-duration: 4.5s;
}

.hfb2 {
  bottom: 75px;
  right: 5px;
  animation-duration: 5.2s;
  animation-delay: .9s;
}

.hfb3 {
  top: 42%;
  left: -18px;
  animation-duration: 4.1s;
  animation-delay: .5s;
}

/* nav controls */
.harr {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  width: 46px;
  height: 46px;
  border-radius: 50%;
  background: rgba(255, 255, 255, .85);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  color: var(--blue);
  font-size: 1rem;
  cursor: pointer;
  display: flex;
  align-items: center;
  justify-content: center;
  transition: all .25s;
  z-index: 10;
  box-shadow: var(--shadow-sm);
}

.harr:hover {
  background: #fff;
  box-shadow: var(--shadow-md);
  transform: translateY(-50%) scale(1.07);
}

.harr.prev {
  left: 20px;
}

.harr.next {
  right: 20px;
}

.hdots {
  position: absolute;
  bottom: 36px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  align-items: center;
  gap: 10px;
  z-index: 10;
}

.hdot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: rgba(232, 99, 28, 0.22);
  border: none;
  cursor: pointer;
  padding: 0;
  transition: all .3s;
}

.hdot.on {
  width: 28px;
  border-radius: 4px;
  background: var(--blue);
}

.hslidecount {
  position: absolute;
  top: 50%;
  right: 24px;
  transform: translateY(-50%);
  display: flex;
  flex-direction: column;
  gap: 7px;
  z-index: 10;
}

.hscbar {
  width: 3px;
  height: 22px;
  border-radius: 2px;
  background: rgba(232, 99, 28, 0.15);
  cursor: pointer;
  transition: all .3s;
}

.hscbar.on {
  height: 34px;
  background: var(--blue);
}

@keyframes fadeUp {
  from {
    opacity: 0;
    transform: translateY(22px);
  }

  to {
    opacity: 1;
    transform: translateY(0);
  }
}

@keyframes floatY {

  0%,
  100% {
    transform: translateY(0);
  }

  50% {
    transform: translateY(-18px);
  }
}

@keyframes pring {

  0%,
  100% {
    opacity: .5;
    transform: scale(1);
  }

  50% {
    opacity: .12;
    transform: scale(1.04);
  }
}

/* TRUST */
.trust {
  background: var(--sky);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 1.1rem 0;
}

.titem {
  display: flex;
  align-items: center;
  gap: 10px;
  color: var(--ink-mid);
  font-size: .79rem;
  font-weight: 500;
}

.titem i {
  color: var(--blue);
  font-size: .85rem;
}

/* SECTIONS */
.sec {
  padding: 100px 0;
}

.secalt {
  background: var(--offwhite);
}

.stag {
  display: inline-block;
  font-size: .67rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--prim);
  background: rgba(232, 99, 28, 0.08);
  border: 1px solid rgba(232, 99, 28, 0.15);
  padding: 5px 14px;
  border-radius: 50px;
  margin-bottom: 1rem;
}

.stitle {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.9rem, 3.8vw, 3rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.18;
  letter-spacing: -.3px;
}

.stitle em {
  font-style: italic;
  color: var(--blue);
}

.sline {
  width: 48px;
  height: 3px;
  margin: .9rem 0 1.4rem;
  background: linear-gradient(90deg, var(--blue), var(--blue-soft));
  border-radius: 2px;
}

.sline.cx {
  margin-left: auto;
  margin-right: auto;
}

.sdesc {
  color: var(--ink-mid);
  font-size: 1rem;
  line-height: 1.85;
  font-weight: 300;
}

/* BUTTONS */
.bprim {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: var(--prim);
  color: #fff;
  border: none;
  border-radius: var(--r-btn);
  padding: .9rem 2.2rem;
  font-size: .9rem;
  font-weight: 700;
  letter-spacing: .4px;
  cursor: pointer;
  text-decoration: none;
  transition: all .35s cubic-bezier(.4, 0, .2, 1);
  font-family: inherit;
  box-shadow: 0 4px 14px rgba(232, 99, 28, 0.25);
}

.bprim:hover {
  background: var(--prim-hover);
  color: #fff;
  transform: translateY(-3px);
  box-shadow: 0 12px 32px rgba(232, 99, 28, 0.4);
}

.bsec {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: transparent;
  color: var(--ink);
  border: 1.5px solid var(--border);
  border-radius: var(--r-btn);
  padding: .85rem 2rem;
  font-size: .9rem;
  font-weight: 600;
  cursor: pointer;
  text-decoration: none;
  transition: all .3s ease;
  font-family: inherit;
}

.bsec:hover {
  border-color: var(--prim);
  color: var(--prim);
  background: rgba(232, 99, 28, 0.05);
}

/* CARDS */
.fcard {
  background: var(--white);
  border-radius: var(--r-card);
  padding: 2.2rem 1.8rem;
  text-align: center;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all .4s cubic-bezier(.165, .84, 0.44, 1);
  height: 100%;
}

.fcard:hover {
  transform: translateY(-8px);
  box-shadow: var(--shadow-lg);
}

.ficon {
  width: 64px;
  height: 64px;
  border-radius: 18px;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 1.45rem;
  margin: 0 auto 1.2rem;
}

.fi1 {
  background: rgba(232, 99, 28, 0.08);
  color: var(--prim);
}

.fi2 {
  background: rgba(232, 99, 28, 0.04);
  color: var(--color-orbit);
}

.fi3 {
  background: rgba(242, 132, 74, 0.08);
  color: var(--color-orbit);
}

.fi4 {
  background: rgba(232, 99, 28, 0.04);
  color: var(--prim);
}

.fcard h5 {
  font-size: .95rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .5rem;
}

.fcard p {
  font-size: .83rem;
  color: var(--ink-light);
  line-height: 1.75;
  margin: 0;
}

.pcard {
  background: var(--white);
  border-radius: var(--r-card);
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all .4s cubic-bezier(.165, .84, 0.44, 1);
  height: 100%;
}

.pcard:hover {
  transform: translateY(-12px);
  box-shadow: var(--shadow-lg);
}

.pimg {
  height: 230px;
  background: var(--white);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

/* Removed radial gradient as per user request to clean up background */

.pimg i {
  font-size: 5rem;
  color: var(--blue);
  opacity: .42;
  position: relative;
}

.pimg img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  padding: 0;
  transition: transform .4s cubic-bezier(0.165, 0.84, 0.44, 1);
  position: relative;
  z-index: 1;
}

.pcard:hover .pimg img {
  transform: scale(1.08);
}

.ppill {
  position: absolute;
  top: 14px;
  left: 14px;
  background: var(--white);
  color: var(--prim);
  font-size: .63rem;
  font-weight: 700;
  letter-spacing: .8px;
  text-transform: uppercase;
  padding: 5px 14px;
  border-radius: 50px;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
}

.pbody {
  padding: 1.6rem;
}

.pbody h4 {
  font-size: 1rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: .5rem;
}

.pbody p {
  font-size: .83rem;
  color: var(--ink-light);
  line-height: 1.75;
  margin-bottom: 1.1rem;
}

.pspecs {
  display: flex;
  flex-wrap: wrap;
  gap: 6px;
  margin-bottom: 1.2rem;
}

.spc {
  background: var(--sky);
  color: var(--blue);
  font-size: .67rem;
  font-weight: 600;
  padding: 3px 10px;
  border-radius: 50px;
}

.bview {
  width: 100%;
  background: transparent;
  border: 1.5px solid var(--border);
  color: var(--ink);
  border-radius: var(--r-btn);
  padding: .65rem;
  font-size: .85rem;
  font-weight: 700;
  cursor: pointer;
  transition: all .25s ease;
  font-family: inherit;
}

.bview:hover {
  background: var(--prim);
  color: #fff;
  border-color: var(--prim);
  box-shadow: 0 4px 14px rgba(232, 99, 28, 0.25);
}

/* STAGE */
.stagewrap {
  background: var(--offwhite);
  border: 1px solid var(--border);
  border-radius: 22px;
  padding: 2rem;
}

.stagerow {
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  padding: 1rem 0;
  border-bottom: 1px solid var(--border);
}

.stagerow:last-child {
  border-bottom: none;
}

.snum {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue-soft), var(--blue-deep));
  color: #fff;
  font-size: .78rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}

.stagerow h6 {
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 2px;
}

.stagerow p {
  font-size: .78rem;
  color: var(--ink-light);
  margin: 0;
  line-height: 1.55;
}

/* WHY */
.witem {
  display: flex;
  gap: 1rem;
  margin-bottom: 1.8rem;
}

.wicon {
  width: 48px;
  height: 48px;
  flex-shrink: 0;
  border-radius: 14px;
  background: var(--sky);
  border: 1px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue);
  font-size: 1.1rem;
}

.witem h5 {
  font-size: .9rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}

.witem p {
  font-size: .82rem;
  color: var(--ink-light);
  line-height: 1.7;
  margin: 0;
}

/* STAT PANEL */
.statpanel {
  background: linear-gradient(135deg, var(--blue-deep) 0%, var(--blue) 100%);
  border-radius: 22px;
  padding: 2.5rem;
  color: #fff;
  box-shadow: 0 20px 60px rgba(232, 99, 28, 0.28);
}

.statpanel .n {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 700;
  line-height: 1;
}

.statpanel .l {
  font-size: .68rem;
  color: rgba(255, 255, 255, .55);
  text-transform: uppercase;
  letter-spacing: 1.2px;
  margin-top: 4px;
}

/* ── PREMIUM TESTIMONIALS ── */
.testi-sec {
  background: var(--color-solar-mist);
  padding: 100px 0;
  position: relative;
  overflow: hidden;
  color: var(--ink);
}

.testi-sec::before {
  content: '';
  position: absolute;
  right: -150px;
  top: -150px;
  width: 600px;
  height: 600px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 99, 28, 0.12) 0%, transparent 65%);
  pointer-events: none;
}

.testi-sec::after {
  content: '';
  position: absolute;
  left: -80px;
  bottom: -80px;
  width: 400px;
  height: 400px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 132, 74, 0.08) 0%, transparent 65%);
  pointer-events: none;
}

/* big quote bg text */
.testi-bg-quote {
  position: absolute;
  top: -20px;
  left: 50%;
  transform: translateX(-50%);
  font-family: 'Cormorant Garamond', serif;
  font-size: 28rem;
  font-weight: 700;
  line-height: 1;
  color: rgba(232, 99, 28, 0.05);
  pointer-events: none;
  user-select: none;
  white-space: nowrap;
}

/* featured big card */
.testi-featured {
  background: rgba(255, 255, 255, 0.65);
  border: 1px solid rgba(232, 99, 28, 0.12);
  border-radius: 28px;
  padding: 3rem;
  position: relative;
  overflow: hidden;
}

.testi-featured::before {
  content: '"';
  position: absolute;
  top: -20px;
  left: 28px;
  font-family: 'Cormorant Garamond', serif;
  font-size: 12rem;
  line-height: 1;
  font-weight: 700;
  color: rgba(232, 99, 28, 0.25);
  pointer-events: none;
}

.testi-quote {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(1.3rem, 2.5vw, 1.85rem);
  font-weight: 600;
  color: var(--ink);
  line-height: 1.5;
  font-style: italic;
  margin-bottom: 2rem;
  position: relative;
  z-index: 1;
}

.testi-author {
  display: flex;
  align-items: center;
  gap: 16px;
  position: relative;
  z-index: 1;
}

.tavi {
  width: 52px;
  height: 52px;
  border-radius: 50%;
  flex-shrink: 0;
  background: linear-gradient(135deg, var(--blue-soft), var(--blue-deep));
  color: #fff;
  font-size: 1.1rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  box-shadow: 0 4px 16px rgba(232, 99, 28, 0.35);
}

.tavi-name {
  font-size: .92rem;
  font-weight: 600;
  color: var(--ink);
}

.tavi-loc {
  font-size: .75rem;
  color: var(--ink-light);
  margin-top: 2px;
}

.tavi-stars {
  display: flex;
  gap: 3px;
  margin-top: 4px;
}

.tavi-stars i {
  color: #F59E0B;
  font-size: .72rem;
}

/* small side cards */
.testi-side {
  background: rgba(255, 255, 255, 0.45);
  border: 1px solid rgba(232, 99, 28, 0.08);
  border-radius: 20px;
  padding: 1.6rem;
  transition: all .3s;
  height: 100%;
  cursor: pointer;
  position: relative;
  overflow: hidden;
}

.testi-side:hover {
  background: rgba(255, 255, 255, 0.06);
  border-color: rgba(232, 99, 28, 0.3);
}

.testi-side.selected {
  background: rgba(232, 99, 28, 0.1);
  border-color: rgba(232, 99, 28, 0.4);
}

.tside-mark {
  font-family: 'Cormorant Garamond', serif;
  font-size: 3rem;
  font-weight: 700;
  color: rgba(232, 99, 28, 0.3);
  line-height: 1;
  margin-bottom: .5rem;
}

.tside-text {
  font-size: .83rem;
  color: var(--ink-mid);
  line-height: 1.75;
  font-style: italic;
  margin-bottom: 1.2rem;
}

.tside-author {
  display: flex;
  align-items: center;
  gap: 10px;
}

.tsavi {
  width: 34px;
  height: 34px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--blue-soft), var(--blue-deep));
  color: #fff;
  font-size: .8rem;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.tsavi-name {
  font-size: .8rem;
  font-weight: 600;
  color: var(--ink);
}

.tsavi-loc {
  font-size: .68rem;
  color: var(--ink-light);
}

.tsavi-stars i {
  color: #F59E0B;
  font-size: .62rem;
}

/* marquee rating strip */
.testi-marquee-wrap {
  overflow: hidden;
  margin-top: 60px;
  padding: 1.4rem 0;
  border-top: 1px solid rgba(232, 99, 28, 0.1);
}

.testi-marquee {
  display: flex;
  gap: 0;
  animation: marquee 28s linear infinite;
  width: max-content;
}

.testi-marquee:hover {
  animation-play-state: paused;
}

.tmark-item {
  display: flex;
  align-items: center;
  gap: 14px;
  padding: 0 48px;
  border-right: 1px solid rgba(232, 99, 28, 0.1);
  white-space: nowrap;
}

.tmark-stars {
  display: flex;
  gap: 3px;
}

.tmark-stars i {
  color: #F59E0B;
  font-size: .72rem;
}

.tmark-text {
  font-size: .8rem;
  color: var(--ink-mid);
  font-style: italic;
}

.tmark-name {
  font-size: .75rem;
  font-weight: 600;
  color: var(--ink-light);
  text-transform: uppercase;
  letter-spacing: .8px;
}

@keyframes marquee {
  0% {
    transform: translateX(0);
  }

  100% {
    transform: translateX(-50%);
  }
}

/* FORM */
.ffield {
  background: var(--offwhite);
  border: 1.5px solid var(--border);
  border-radius: 12px;
  padding: .75rem 1.1rem;
  font-size: .88rem;
  color: var(--ink);
  font-family: 'DM Sans', sans-serif;
  width: 100%;
  transition: all .2s;
}

.ffield:focus {
  outline: none;
  border-color: var(--blue);
  background: #fff;
  box-shadow: 0 0 0 3px rgba(232, 99, 28, 0.1);
}

.ffield::placeholder {
  color: var(--ink-light);
}

.flabel {
  font-size: .77rem;
  font-weight: 600;
  color: var(--ink-mid);
  margin-bottom: 6px;
  display: block;
}

.fgrid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
}

@media(max-width:576px) {
  .fgrid {
    grid-template-columns: 1fr;
  }
}

/* CONTACT CARDS */
.ccard {
  background: var(--white);
  border-radius: 18px;
  padding: 1.6rem;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  display: flex;
  align-items: flex-start;
  gap: 1rem;
  height: 100%;
  transition: all .3s;
}

.ccard:hover {
  box-shadow: var(--shadow-md);
}

.cicon {
  width: 46px;
  height: 46px;
  border-radius: 12px;
  background: var(--sky);
  color: var(--blue);
  font-size: 1.1rem;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.ccard h5 {
  font-size: .88rem;
  font-weight: 600;
  color: var(--ink);
  margin-bottom: 4px;
}

.ccard p {
  font-size: .82rem;
  color: var(--ink-light);
  margin: 0;
  line-height: 1.65;
}

.ccard a {
  color: var(--blue);
  font-weight: 600;
  text-decoration: none;
}

/* SPEC TABLES */
.spec-scroll {
  width: 100%;
  overflow-x: auto;
  -webkit-overflow-scrolling: touch;
  margin-bottom: 1.5rem;
  border-radius: 12px;
  border: 1px solid var(--border);
}

.spec-table {
  width: 100%;
  border-collapse: collapse;
  font-size: .82rem;
  margin-top: 1.2rem;
  min-width: 450px;
}

.spec-table th {
  background: var(--blue-deep);
  color: #fff;
  padding: .65rem 1rem;
  text-align: left;
  font-weight: 600;
  font-size: .75rem;
  letter-spacing: .4px;
}

.spec-table th:first-child {
  border-radius: 10px 0 0 0;
}

.spec-table th:last-child {
  border-radius: 0 10px 0 0;
}

.spec-table td {
  padding: .6rem 1rem;
  border-bottom: 1px solid var(--border);
  color: var(--ink-mid);
  vertical-align: middle;
}

.spec-table tr:last-child td {
  border-bottom: none;
}

.spec-table tr:nth-child(even) td {
  background: var(--sky);
}

.spec-table tr:hover td {
  background: rgba(232, 99, 28, 0.06);
}

.spec-wrap {
  background: var(--white);
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  box-shadow: var(--shadow-sm);
  margin-top: 2rem;
}

.spec-head {
  background: var(--sky);
  padding: 1rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 10px;
  border-bottom: 1px solid var(--border);
}

.spec-head h4 {
  font-size: .92rem;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}

.spec-note {
  font-size: .75rem;
  color: var(--ink-light);
  padding: .8rem 1.4rem;
  background: var(--offwhite);
  border-top: 1px solid var(--border);
  font-style: italic;
}

/* service network strip */
.svc-network {
  background: var(--sky);
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.2rem 1.6rem;
  margin-top: 2rem;
}

.svc-network p {
  font-size: .8rem;
  font-weight: 600;
  color: var(--ink-light);
  text-transform: uppercase;
  letter-spacing: 1.5px;
  margin-bottom: .7rem;
}

.svc-cities {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
}

.svc-city {
  background: var(--white);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 4px 14px;
  font-size: .78rem;
  font-weight: 500;
  color: var(--ink-mid);
}

/* model selector tabs */
.model-tabs {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-bottom: 1.5rem;
}

.mtab {
  background: var(--sky);
  border: 1px solid var(--border);
  border-radius: 50px;
  padding: 5px 14px;
  font-size: .75rem;
  font-weight: 600;
  color: var(--ink-mid);
  cursor: pointer;
  transition: all .2s;
}

.mtab:hover,
.mtab.active {
  background: var(--blue-deep);
  color: #fff;
  border-color: var(--blue-deep);
}

/* AMC */
.acard {
  background: var(--white);
  border-radius: 22px;
  padding: 2rem 1.8rem;
  border: 2px solid var(--border);
  box-shadow: var(--shadow-sm);
  transition: all .3s;
  height: 100%;
}

.acard.hl {
  border-color: var(--blue);
  box-shadow: 0 0 0 4px rgba(232, 99, 28, 0.07), var(--shadow-md);
}

.acard:hover {
  transform: translateY(-6px);
  box-shadow: var(--shadow-lg);
}

.aprice {
  font-family: 'Cormorant Garamond', serif;
  font-size: 2.8rem;
  font-weight: 700;
  color: var(--ink);
  line-height: 1;
}

.aprice sup {
  font-size: 1.3rem;
  vertical-align: top;
  margin-top: .4rem;
  display: inline-block;
}

.afeat li {
  font-size: .83rem;
  padding: .45rem 0;
  color: var(--ink-mid);
  border-bottom: 1px solid var(--border);
  display: flex;
  align-items: center;
  gap: 8px;
}

.afeat li i {
  color: var(--color-orbit);
  font-size: .8rem;
}

/* PAGE HEADER */
.pghdr {
  background: var(--sky);
  padding: 130px 0 65px;
  border-bottom: 1px solid var(--border);
  position: relative;
  overflow: hidden;
}

.pghdr::after {
  content: '';
  position: absolute;
  right: -80px;
  top: -80px;
  width: 380px;
  height: 380px;
  border-radius: 50%;
  background: radial-gradient(circle, var(--sky-mid) 0%, transparent 70%);
}

.pghdr h1 {
  font-family: 'Cormorant Garamond', serif;
  font-size: clamp(2.2rem, 4.5vw, 3.4rem);
  font-weight: 700;
  color: var(--ink);
  line-height: 1.15;
  position: relative;
  z-index: 1;
}

.bcrumb {
  font-size: .77rem;
  color: var(--ink-light);
  margin-bottom: .8rem;
  position: relative;
  z-index: 1;
}

.bcrumb span {
  cursor: pointer;
  transition: color .2s;
}

.bcrumb span:hover {
  color: var(--blue);
}

.bcrumb .sep {
  margin: 0 8px;
  opacity: .4;
}

/* CTA BAND */
.ctaband {
  background: var(--offwhite);
  border-top: 1px solid var(--border);
  border-bottom: 1px solid var(--border);
  padding: 75px 0;
}

/* ── PREMIUM FOOTER ── */
.footer-wrap {
  background: var(--offwhite);
  padding: 0 20px 20px;
}

footer {
  background: linear-gradient(180deg, #FFF9F5 0%, var(--color-solar-mist) 100%) !important;
  border-radius: 24px;
  padding: 60px 0 0;
  overflow: hidden;
  position: relative;
  color: var(--ink) !important;
  max-width: 1440px;
  margin: 0 auto;
}

#siteFooter .ft-inner,
#siteFooter .container {
  color: var(--ink) !important;
}

footer .nbrand img {
  filter: none !important;
}

footer::before {
  content: '';
  position: absolute;
  right: -100px;
  top: -100px;
  width: 500px;
  height: 500px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(232, 99, 28, 0.12) 0%, transparent 70%);
  pointer-events: none;
  max-width: 100vw;
}

footer::after {
  content: '';
  position: absolute;
  left: -80px;
  bottom: 60px;
  width: 350px;
  height: 350px;
  border-radius: 50%;
  background: radial-gradient(circle, rgba(242, 132, 74, 0.08) 0%, transparent 70%);
  pointer-events: none;
}

.ft-inner {
  position: relative;
  z-index: 1;
}

.ftdesc {
  font-size: .83rem;
  color: var(--ink-mid) !important;
  line-height: 1.85;
  margin: 1rem 0 1.5rem;
  max-width: 290px;
  font-weight: 400;
}

.ftsoc a {
  width: 36px;
  height: 36px;
  border-radius: 10px;
  background: rgba(28, 42, 58, 0.05);
  border: 1px solid rgba(28, 42, 58, 0.1);
  display: inline-flex;
  align-items: center;
  justify-content: center;
  color: var(--ink-mid);
  font-size: .88rem;
  text-decoration: none;
  transition: all .22s;
  margin-right: 7px;
}

.ftsoc a:hover {
  background: var(--blue);
  border-color: var(--blue);
  color: #fff;
  transform: translateY(-2px);
}

.fth {
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: 2.5px;
  text-transform: uppercase;
  color: var(--ink-mid) !important;
  opacity: 0.6;
  margin-bottom: 1.2rem;
}

.ftl {
  display: flex;
  align-items: center;
  gap: 6px;
  color: var(--ink-mid) !important;
  font-size: .83rem;
  padding: 5px 0;
  text-decoration: none;
  transition: all .2s;
  cursor: pointer;
  font-weight: 500;
}

.ftl::before {
  content: '';
  width: 4px;
  height: 4px;
  border-radius: 50%;
  background: rgba(232, 99, 28, 0.4);
  flex-shrink: 0;
  transition: background .2s;
}

.ftl:hover {
  color: var(--prim);
  padding-left: 4px;
}

.ftl:hover::before {
  background: var(--blue-soft);
}

.ftci {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  margin-bottom: 1rem;
}

.ftci-icon {
  width: 34px;
  height: 34px;
  border-radius: 9px;
  background: rgba(232, 99, 28, 0.18);
  border: 1px solid rgba(232, 99, 28, 0.25);
  display: flex;
  align-items: center;
  justify-content: center;
  color: var(--blue-soft);
  font-size: .82rem;
  flex-shrink: 0;
}

.ftci span {
  color: var(--ink-mid) !important;
  font-size: .83rem;
  line-height: 1.7;
  font-weight: 500;
}

.ftci a {
  color: var(--ink) !important;
  text-decoration: none;
  transition: color .2s;
  font-weight: 600;
}

.ftci a:hover {
  color: var(--prim);
}

/* divider wave inside footer */
.ft-wave {
  width: 100%;
  overflow: hidden;
  line-height: 0;
  margin-bottom: -1px;
}

.ft-wave svg {
  display: block;
  width: 100%;
}

.ftbot {
  background: rgba(28, 42, 58, 0.05);
  padding: 1.1rem 2rem;
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: .5rem;
}

.ftbot p {
  font-size: .75rem;
  color: var(--ink-mid) !important;
  opacity: 0.5;
  margin: 0;
}

.ft-badge {
  display: flex;
  align-items: center;
  gap: 8px;
  background: rgba(232, 99, 28, 0.08);
  border: 1px solid rgba(232, 99, 28, 0.15);
  border-radius: 50px;
  padding: 4px 12px;
}

.ft-badge span {
  font-size: .65rem;
  color: var(--ink-mid);
  font-weight: 600;
  letter-spacing: .5px;
}

/* ── FLOATING ACTION BUTTONS ── */
.fab-group {
  position: fixed;
  bottom: 28px;
  right: 28px;
  display: flex;
  flex-direction: column;
  gap: 15px;
  z-index: 9999;
  align-items: flex-end;
}

.fab-btn {
  width: 56px;
  height: 56px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  color: #fff;
  font-size: 1.45rem;
  text-decoration: none;
  transition: all .4s cubic-bezier(.175, .885, .32, 1.275);
  position: relative;
  border: 1px solid rgba(255, 255, 255, 0.25);
  box-shadow: 0 12px 30px rgba(0, 0, 0, 0.12);
  overflow: visible;
}

/* Glossy Shine Effect */
.fab-btn::before {
  content: '';
  position: absolute;
  top: 2px;
  left: 50%;
  transform: translateX(-50%);
  width: 70%;
  height: 40%;
  background: linear-gradient(180deg, rgba(255, 255, 255, 0.4) 0%, transparent 100%);
  border-radius: 50% 50% 40% 40%;
  pointer-events: none;
  z-index: 2;
}

.fab-btn:hover {
  transform: scale(1.12) translateY(-4px);
  color: #fff;
  box-shadow: 0 18px 40px rgba(0, 0, 0, 0.18);
}

.fab-btn::after {
  content: attr(title);
  position: absolute;
  right: 72px;
  top: 50%;
  transform: translateY(-50%) translateX(12px);
  background: rgba(28, 42, 58, 0.95);
  backdrop-filter: blur(8px);
  color: #fff;
  padding: 6px 14px;
  border-radius: 8px;
  font-size: .72rem;
  font-weight: 600;
  white-space: nowrap;
  opacity: 0;
  pointer-events: none;
  transition: all .3s;
  box-shadow: 0 4px 15px rgba(0, 0, 0, 0.1);
  border: 1px solid rgba(255, 255, 255, 0.1);
}

.fab-btn:hover::after {
  opacity: 1;
  transform: translateY(-50%) translateX(0);
}

.wabtn {
  background: linear-gradient(145deg, var(--color-orbit) 0%, var(--color-thrust) 55%, var(--color-thrust) 100%);
  box-shadow: 0 8px 25px rgba(37, 211, 102, 0.35), inset 0 -2px 5px rgba(0, 0, 0, 0.1), inset 0 2px 8px rgba(255, 255, 255, 0.4);
  animation: wap 3.5s ease infinite;
}

.callbtn {
  background: linear-gradient(145deg, var(--blue-soft) 0%, var(--blue) 55%, var(--blue-deep) 100%);
  box-shadow: 0 8px 25px rgba(232, 99, 28, 0.3), inset 0 -2px 5px rgba(0, 0, 0, 0.1), inset 0 2px 8px rgba(255, 255, 255, 0.4);
}

.dlbtn {
  background: linear-gradient(145deg, var(--color-solar-mist) 0%, var(--color-orbit) 55%, var(--color-thrust) 100%);
  box-shadow: 0 8px 25px rgba(232, 99, 28, 0.3), inset 0 -2px 5px rgba(0, 0, 0, 0.1), inset 0 2px 8px rgba(255, 255, 255, 0.4);
}

.fab-btn i {
  position: relative;
  z-index: 3;
  text-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

@keyframes wap {

  0%,
  100% {
    transform: scale(1);
    box-shadow: 0 8px 25px rgba(232, 99, 28, 0.35);
  }

  50% {
    transform: scale(1.04);
    box-shadow: 0 8px 35px rgba(232, 99, 28, 0.55);
  }
}

/* Responsive FABs */
@media (max-width: 576px) {
  .fab-group {
    bottom: 20px;
    right: 20px;
    gap: 12px;
  }

  .fab-btn {
    width: 48px;
    height: 48px;
    font-size: 1.25rem;
  }

  .fab-btn::after {
    display: none;
    /* Hide tooltips on mobile to avoid clutter */
  }
}

/* REVEAL */
.rv {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity .6s ease, transform .6s ease;
}

.rv.in {
  opacity: 1;
  transform: translateY(0);
}

@media(max-width:991px) {
  #heroCarousel {
    height: auto;
    min-height: 100vh;
  }

  .hslide {
    position: relative;
    height: auto;
    min-height: 100vh;
  }

  .hslide:not(.active) {
    display: none;
  }

  .hvring,
  .hfb1,
  .hfb2,
  .hfb3 {
    display: none;
  }

  .hvcircle {
    width: 220px;
    height: 220px;
  }

  .hvinner {
    width: 145px;
    height: 145px;
  }

  .hvicon {
    font-size: 3.2rem;
  }

  .harr {
    display: none;
  }

  .hslidecount {
    display: none;
  }

  .footer-wrap {
    padding: 0 12px 12px;
  }

  footer {
    border-radius: 18px;
  }

  .ftbot {
    flex-direction: column;
    padding: 1rem 1.2rem;
    gap: .6rem;
  }
}

@media (max-width: 768px) {
  #heroCarousel {
    height: auto !important;
    min-height: 500px;
  }
  .hslide {
    position: relative;
    padding-top: 140px;
    padding-bottom: 60px;
    height: auto;
    min-height: 500px;
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
  }
  .htitle {
    font-size: 2.1rem;
    margin-bottom: 0.8rem;
  }
  .hdesc {
    font-size: 0.88rem;
    margin: 0 auto 1.5rem;
    text-align: center;
  }
  .hbtns {
    justify-content: center;
    flex-direction: column;
    width: 100%;
    max-width: 280px;
    margin-left: auto;
    margin-right: auto;
  }
  .hbtns a {
    width: 100%;
    text-align: center;
  }
  .hstats {
    justify-content: center;
    margin-top: 2rem;
  }
  .hslide.active {
    opacity: 1;
    display: flex;
  }
  .sec {
    padding: 60px 0;
  }
  .stitle {
    font-size: 2.2rem;
  }
  .hstat {
    padding: 0.6rem 0.8rem;
    flex: 1 1 calc(50% - 12px);
    min-width: 140px;
  }
  .hstats {
    gap: 8px;
  }
  .pcard .pimg {
    height: 220px !important;
  }
  .fab-group {
    right: 15px;
    bottom: 15px;
    gap: 10px;
  }
  .fab-btn {
    width: 45px;
    height: 45px;
    font-size: 1rem;
  }
  .cdot, .cring { display: none !important; }
}
@media(max-width:767px) {
  .sec {
    padding: 70px 0;
  }

  #mainNav {
    width: calc(100% - 20px);
    top: 6px;
    border-radius: 14px;
  }

  .navbar-collapse {
    margin-top: .5rem;
  }

  .navbar-nav .nav-link.navcta {
    display: inline-flex !important;
    width: fit-content !important;
    margin: 0.8rem 0 0.5rem !important;
    padding: 0.55rem 1.6rem !important;
    font-size: 0.82rem !important;
    color: #fff !important;
  }

  .navbar-nav {
    align-items: center !important;
    padding-bottom: 0.5rem;
  }
}

/* ── ORANGE TICKER ── */
.ticker-strap {
  background: var(--color-thrust);
  color: #fff;
  padding: 13px 0;
  overflow: hidden;
  white-space: nowrap;
  position: relative;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  box-shadow: 0 4px 20px rgba(0, 0, 0, 0.1);
  z-index: 10;
}

.ticker-wrap {
  display: flex;
  width: max-content;
  animation: ticker-scroll 60s linear infinite;
}

.ticker-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 0 50px;
  font-family: 'Plus Jakarta Sans', sans-serif;
  font-weight: 700;
  font-size: .83rem;
  letter-spacing: 1.2px;
  text-transform: uppercase;
  color: #fff;
}

.ticker-item i {
  font-size: .95rem;
  opacity: .85;
}

@keyframes ticker-scroll {
  from {
    transform: translateX(0);
  }

  to {
    transform: translateX(-50%);
  }
}

@media (max-width: 768px) {
  .ticker-wrap {
    animation-duration: 40s;
  }
}