/* ════ CSS BLOCK 1 ════ */

*, *::before, *::after {

  box-sizing: border-box;

  margin: 0;

  padding: 0

}

:root {

  /* ── CLINIIFY REAL BRAND COLORS ── */

  --teal: #00B4B4;

  --teal-dark: #009999;

  --teal-deep: #007A7A;

  --teal-light: #33CCCC;

  --teal-pale: #E6F9F9;

  --teal-pale2: #C0EFEF;

  --teal-grad: linear-gradient(135deg, #00B4B4 0%, #00D4D4 100%);



  /* --navy: #1A2B4A; */

  --navy: #0a192f;

  --navy-mid: #1E3A5F;

  --text: #1A2B4A;

  --text-mid: #4A6080;

  --text-light: #7A90AA;



  --white: #FFFFFF;

  --off-white: #F7FEFE;

  --gray-100: #F0F4F8;

  --gray-200: #E0E8F0;

  --gray-300: #C8D8E8;



  --orange: #FF6B35;

  --green: #22C55E;



  /* specialties */

  --gen-c: #16A34A;

  --gen-bg: #F0FDF4;

  --gen-bd: #86EFAC;

  --dent-c: #00B4B4;

  --dent-bg: #E6F9F9;

  --dent-bd: #99DEDE;

  --phys-c: #7C4DFF;

  --phys-bg: #F3EFFF;

  --phys-bd: #C4B0FF;

  --derm-c: #FF5FA0;

  --derm-bg: #FFF0F7;

  --derm-bd: #FFB3D1;

  --orth-c: #FF8C00;

  --orth-bg: #FFF5E6;

  --orth-bd: #FFD099;

}

/* ═══════════════════════════════════════

   GLOBAL FONT OVERRIDE — DM Sans everywhere

═══════════════════════════════════════ */

/* Global font */

body,

input,

button,

select,

textarea {

    font-family: "Outfit", sans-serif;

}



/* Font Awesome icons */

.fa,

.fa-solid,

.fa-regular,

.fa-light,

.fa-brands,

.fas,

.far,

.fal,

.fab {

    font-family: var(--fa-style-family, "Font Awesome 6 Free") !important;

}

:not(.fa):not(.fas):not(.far):not(.fal):not(.fab):not(.fa-solid):not(.fa-regular):not(.fa-light):not(.fa-brands) {

    font-family: "Outfit", sans-serif;

}
html {

  scroll-behavior: smooth;

  overflow-x: hidden;

}

/* body {

  

  font-family: "Outfit", sans-serif;

  background: #fff;

  color: var(--text);

  margin: 0;

  padding: 0;

  overflow-x: hidden;

  -webkit-font-smoothing: antialiased;

} */



::-webkit-scrollbar {

  width: 5px

}



::-webkit-scrollbar-track {

  background: #f0fafa

}



::-webkit-scrollbar-thumb {

  background: var(--teal);

  border-radius: 3px

}



/* ─── TOP BAR ─── */

.topbar {

  position: relative;

  background: var(--navy);

  height: 38px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  padding: 0 5%;

  font-size: 14px;

  color: rgba(255, 255, 255, .65);

  font-weight: 500;

  position: fixed;

  top: 0;

  left: 0;

  right: 0;

  z-index: 9999;

}

.topbar-left {

  display: flex;

  align-items: center;

  gap: 22px;

}

.topbar-item {

  display: flex;

  align-items: center;

  gap: 6px;

  transition: color .2s;

  text-decoration: none;

  color: rgba(255, 255, 255, .65)

}

.topbar-item:hover {

  color: var(--teal-light)

}

.topbar-item svg {

  width: 14px;

  height: 14px;

  flex-shrink: 0;

  opacity: .8

}

.topbar-right {

  display: flex;

  align-items: center;

  gap: 14px

}

.topbar-tagline {

  background: linear-gradient(90deg, var(--teal), #00D4A0);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

  background-clip: text;

  font-weight: 500;

}

.tb-div {

  width: 1px;

  height: 14px;

  background: rgba(255, 255, 255, .15)

}

/* MOBILE RESPONSIVE */

@media (max-width: 768px) {



  .topbar {

    height: auto;

    padding: 6px 12px;

    flex-direction: column;

    align-items: stretch;

    gap: 4px;

  }



  .topbar .container-fluid,

  .topbar .row {

    width: 100%;

  }



  .topbar-left,

  .topbar-right {

    width: 100%;

    justify-content: space-between;

  }



  .topbar-left {

    gap: 10px;

  }



  .topbar-item span {

    display: none; 

  }

  

  .topbar-right {

    margin-top: 4px;

  }

  

  .topbar-tagline {

    display: none; 

  }

  

  .tb-div {

    display: none; 

  }

}

/* ─── NAV ─── */

nav {

  position: sticky;

  top: 37px;

  left: 0;

  right: 0;

  z-index: 999;

  height: 66px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  padding: 0 5%;

  background: rgba(255, 255, 255, 0.97);

  backdrop-filter: blur(20px);

  border-bottom: 1.5px solid var(--teal-pale2);

  transition: box-shadow .3s;

}

nav.scrolled {

  box-shadow: 0 4px 30px rgba(0, 180, 180, .12)

}

.logo {

  display: flex;

  align-items: center;

  gap: 10px;

  text-decoration: none;

}

.logo-mark {

  width: 42px;

  height: 42px;

  display: flex;

  align-items: center;

  justify-content: center;

  border-radius: 12px;

}

/* 

.logo img {

  height: 48px;

  width: auto;

  margin-left: 119px;

} */

.logo-name {

  font-size: 22px;

  font-weight: 700;

  color: #111;

}

.logo-name span {

  color: #00b4b4;

}

.nav-links {

  display: flex;

  align-items: center;

  gap: 1.7rem;

  list-style: none;

  padding-left:0 !important;

}

.nav-links>li {

  position: relative;

  padding-bottom: 8px;

  margin-bottom: -22px;

}

.nav-links a {

  font-size: 16px;

  font-weight: 500;

  color: var(--text-mid);

  text-decoration: none;

  transition: color .2s;

  display: flex;

  align-items: center;

  gap: 4px;

  white-space: nowrap

}

.nav-links a:hover {

  color: var(--teal)

}

.drop-arrow {

  width: 13px;

  height: 13px;

  transition: transform .25s;

  flex-shrink: 0;

  opacity: .6

}

.nav-links>li:hover .drop-arrow {

  transform: rotate(180deg)

}



/* ─── MEGA DROPDOWN ─── */

.mega-drop {

  position: absolute;

  top: calc(100% + 8px);

  left: 50%;

  transform: translateX(-50%) translateY(8px) scale(.97);

  width: 760px;

  background: #fff;

  border-radius: 20px;

  border: 1.5px solid var(--teal-pale2);

  box-shadow: 0 28px 70px rgba(0, 0, 0, .13), 0 4px 18px rgba(0, 180, 180, .1);

  opacity: 0;

  visibility: hidden;

  pointer-events: none;

  transition: opacity .22s ease, transform .22s ease, visibility .22s;

}



/* invisible bridge fills the gap between nav link and dropdown */

.mega-drop::after {

  content: '';

  position: absolute;

  top: -12px;

  left: 0;

  right: 0;

  height: 12px;

  background: transparent;

}



.nav-links>li:hover .mega-drop {

  opacity: 1;

  visibility: visible;

  pointer-events: all;

  transform: translateX(-50%) translateY(0) scale(1);

}



/* arrow tip */

.mega-drop::before {

  content: '';

  position: absolute;

  top: -7px;

  left: 50%;

  width: 14px;

  height: 14px;

  background: #fff;

  border-left: 1.5px solid var(--teal-pale2);

  border-top: 1.5px solid var(--teal-pale2);

  border-radius: 3px 0 0 0;

  transform: translateX(-50%) rotate(45deg);

}



.mega-inner {

  display: grid;

  grid-template-columns: 196px 1fr;

  /* min-height: 300px; */

  min-height: 280px;

  border-radius: 20px;

  overflow: hidden

}



/* sidebar */

.mega-sidebar {

  background: var(--off-white);

  border-right: 1.5px solid var(--teal-pale2);

  padding: 25px 0

}



.mega-sidebar-hd {

  font-size: 12px;

  font-weight: 600;

  letter-spacing: 1.2px;

  text-transform: uppercase;

  color: var(--text-light);

  padding: 0 16px 12px;

}



.mega-cat {

  display: flex;

  align-items: center;

  gap: 10px;

  padding: 12px 16px;

  cursor: pointer;

  border-left: 3px solid transparent;

  transition: all .18s;

}



.mega-cat:hover, .mega-cat.mc-active {

  background: #fff;

  border-left-color: var(--teal);

}



.mega-cat:hover .mc-label, .mega-cat.mc-active .mc-label {

  color: var(--teal-dark)

}



.mc-ico {

  width: 34px;

  height: 34px;

  border-radius: 9px;

  display: grid;

  place-items: center;

  font-size: .95rem;

  flex-shrink: 0;

  background: var(--teal-pale);

  transition: background .18s

}



.mega-cat:hover .mc-ico, .mega-cat.mc-active .mc-ico {

  background: var(--teal-pale2)

}



.mc-label {

  font-size: 15px;

  font-weight: 500;

  color: var(--text-mid);

  transition: color .18s;

  flex: 1

}



.mc-sub {

  font-size: .68rem;

  color: var(--text-light);

  font-weight: 500;

  margin-top: 1px

}



.mc-arr {

  font-size: .7rem;

  color: var(--teal);

  opacity: 0;

  transition: opacity .18s

}



.mega-cat:hover .mc-arr, .mega-cat.mc-active .mc-arr {

  opacity: 1

}



/* panels */

.mega-panels {

  padding: 22px 24px;

  flex: 1;

  display: flex;

  flex-direction: column;

  overflow: hidden

}



.mega-panel {

  display: none;

  flex-direction: column;

  height: 100%;

  width: 100%

}



.mega-panel.mp-on {

  display: flex !important

}



.mega-panel-hd {

  font-size: 12px;

  font-weight: 600;

  letter-spacing: 1.2px;

  text-transform: uppercase;

  color: var(--text-light);

  margin-bottom: 14px

}



.mega-items {

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 5px;

  flex: 1;

  overflow: hidden;

}



.mega-item {

  display: flex;

  align-items: flex-start;

  gap: 10px;

  /* padding: 11px 12px; */

  border-radius: 11px;

  text-decoration: none;

  transition: all .18s;

  border: 1.5px solid transparent;

  cursor: pointer;

}



.mega-item:hover {

  background: var(--teal-pale);

  border-color: var(--teal-pale2);

  /* transform: translateX(3px) */

}



.mi-ico {

  width: 32px;

  height: 32px;

  border-radius: 8px;

  display: grid;

  place-items: center;

  font-size: .88rem;

  flex-shrink: 0;

  background: var(--teal-pale2);

  transition: background .18s

}



.mega-item:hover .mi-ico {

  background: var(--teal-pale)

}



.mi-title {

  font-size: 14px;

  font-weight: 500;

  color: var(--navy)

}



.mi-desc {

  font-size: .7rem;

  color: var(--text-light);

  margin-top: 2px;

  line-height: 1.4;

  font-weight: 500

}



.mega-foot {

  border-top: 1.5px solid var(--teal-pale2);

  margin-top: 14px;

  padding-top: 13px;

  display: flex;

  align-items: center;

  justify-content: space-between;

}

.mega-foot-link {

  font-size: .8rem;

  font-weight: 700;

  color: var(--teal-dark);

  text-decoration: none;

  display: flex;

  align-items: center;

  gap: 5px;

  transition: color .2s

}

.mega-foot-link:hover {

  color: var(--teal)

}

.nav-r {

  display: flex;

  align-items: center;

  gap: 10px

}

.btn-outline {

  padding: 10px 18px;

  border: 1px solid #0db8aa;

  border-radius: 22px;

  font-size: .875rem;

  font-weight: 600;

  color: #0a95a0;

  background: #fff;

  cursor: pointer;

  text-decoration: none;

  transition: all .2s;

  font-family: "Outfit", sans-serif;

}

.btn-outline:hover {

  border-color: var(--teal);

  background: var(--teal-pale)

}

.btn-teal {

  padding: 10px 24px;

  border-radius: 30px;

  background: var(--teal-grad);

  color: #fff;

  font-size: .875rem;

  font-weight: 500;

  border: none;

  cursor: pointer;

  text-decoration: none;

  font-family: "Outfit", sans-serif;

  /* box-shadow: 0 4px 16px rgba(0, 180, 180, .4); */

  transition: all .2s;

}

.btn-teal:hover {

  transform: translateY(-2px);

  /* box-shadow: 0 8px 24px rgba(0, 180, 180, .5) */

}

/* Mobile tweaks */

@media (max-width: 768px) {

  .btn-teal {

    display: none;

    }

  .fb-1, .fb-2, .fb-3 { 

    display: none;

   }

  .cta-box-d {

     padding: 48px 24px; 

    }

  .sticky-cta { 

    padding: 10px 16px;

   }

}

@media (max-width: 576px) {

  .hero-h1 { font-size: 2.2rem; }

  .stat-num { font-size: 1.5rem; }

  .hero-proof { flex-direction: column; align-items: flex-start; }

}

/* ═══════════════════════════════════

       AXON AI NAV BUTTON

    ═══════════════════════════════════ */

@keyframes axon-spin   { to { transform: rotate(360deg); } }

@keyframes axon-pulse  { 0%,100%{opacity:.55;transform:scale(1)} 50%{opacity:1;transform:scale(1.35)} }

@keyframes axon-float  { 0%,100%{transform:translateY(0) scale(1);opacity:0} 40%{opacity:.7} 100%{transform:translateY(-18px) scale(.4); opacity:0} }

@keyframes axon-glow   {

  0%,100%{

  box-shadow:0 0 0 0 rgba(99,102,241,0)

  /* box-shadow: 0 0 0 0 rgba(0, 122, 122, 0); */

  } 

  50%{

  box-shadow:0 0 18px 4px rgba(99,102,241,.35)

  /* box-shadow: 0 0 18px 4px rgba(0, 122, 122, 0.35); */

  } 

}

@keyframes axon-shimmer{ 0%{background-position:200% center} 100%{background-position:-200% center} }



.axon-nav-btn {

  position: relative;

  display: inline-flex;

  align-items: center;

  gap: 8px;

  padding: 7px 16px 7px 8px;

  border-radius: 100px;

  background: linear-gradient(135deg, #0F0C29 0%, #1a1054 50%, #0d1f4c 100%);

  /* background: linear-gradient( 135deg, #003f3f 0%, #007A7A 50%, #002a2a 100% ); */

  border: 1.5px solid rgba(99,102,241,.55);

  /* border: 1.5px solid rgba(0, 122, 122, 0.55); */

  text-decoration: none;

  cursor: pointer;

  overflow: hidden;

  transition: all .28s ease;

  animation: axon-glow 3s ease-in-out infinite;

}

.axon-nav-btn::before {

  content: '';

  position: absolute;

  inset: 0;

  background: linear-gradient(105deg,

    transparent 30%,

    rgba(139,92,246,.18) 45%,

    rgba(99,102,241,.22) 50%,

    rgba(139,92,246,.18) 55%,

    transparent 70%

  );

  /* background: linear-gradient(

  105deg,

  transparent 30%,

  rgba(0, 122, 122, 0.18) 45%,

  rgba(0, 122, 122, 0.22) 50%,

  rgba(0, 122, 122, 0.18) 55%,

  transparent 70% 

); */

  background-size: 200% 100%;

  animation: axon-shimmer 2.8s linear infinite;

  border-radius: 100px;

}

.axon-nav-btn:hover {

  border-color: rgba(139,92,246,.9);

  /* border-color: rgba(0, 122, 122, 0.9); */

  transform: translateY(-2px);

  box-shadow: 0 8px 28px rgba(99,102,241,.45);

  /* box-shadow: 0 8px 28px rgba(0, 122, 122, 0.45); */

}



/* Orb */

.axon-orb {

  position: relative;

  width: 26px;

  height: 26px;

  display: grid;

  place-items: center;

  flex-shrink: 0;

}

.axon-ring {

  position: absolute; inset: 0;

  border-radius: 50%;

  border: 1.5px solid transparent;

}

.axon-ring-1 {

  border-top-color: #818cf8;

  /* border-top-color: #00a3a3; */

  border-right-color: rgba(129,140,248,.3);

  animation: axon-spin 1.8s linear infinite;

}

.axon-ring-2 {

  inset: 4px;

  border-bottom-color: #a78bfa;

  /* border-bottom-color: #005f5f; */

  border-left-color: rgba(167,139,250,.3);

  /* border-left-color: rgba(0, 122, 122, 0.3); */

  animation: axon-spin 1.2s linear infinite reverse;

}

.axon-icon {

  width: 11px; height: 11px;

  color: #e0e7ff;

  position: relative; z-index: 1;

  animation: axon-pulse 2.4s ease-in-out infinite;

}



/* Label */

.axon-label {

  font-family: "Outfit", sans-serif;

  font-size: .8rem;

  font-weight: 700;

  color: #e0e7ff;

  letter-spacing: .2px;

  position: relative; z-index: 1;

  white-space: nowrap;

}

.axon-ai-tag {

  display: inline-block;

  background: linear-gradient(90deg, #818cf8, #a78bfa);

  /* background: linear-gradient(90deg, #00a3a3, #007A7A); */

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

  background-clip: text;

  font-size: .7rem;

  font-weight: 900;

  letter-spacing: .5px;

  margin-left: 1px;

}



/* Floating particles */

.axon-particle {

  position: absolute;

  width: 4px; height: 4px;

  border-radius: 50%;

  background: #818cf8;

  /* background: #007A7A; */

  pointer-events: none;

}

.axon-p1 { 

  bottom: 4px; 

  left: 14px; 

  animation: axon-float 2.2s ease-out infinite; 

}

.axon-p2 { 

  bottom: 2px; 

  left: 22px; 

  animation: axon-float 2.8s .6s ease-out infinite; 

}

.axon-p3 { 

  bottom: 6px; 

  left: 8px;  

  animation: axon-float 2s  1.1s ease-out infinite; 

}



/* Mobile: hide label, keep orb */

@media (max-width: 768px) {

  .axon-label { display: none; }

  .axon-nav-btn { padding: 7px 9px; }

}



/* ─── HERO ─── */

.hero {

  padding: 50px 5% 50px;

  background: linear-gradient(145deg, #fff 0%, var(--teal-pale) 60%, #E8FAFA 100%);

  position: relative;

  overflow: hidden;

  min-height: 75vh;

  display: flex;

  align-items: center;

}



/* decorative circles */

.hero-circle-1 {

  position: absolute;

  top: -120px;

  right: -80px;

  width: 520px;

  height: 520px;

  border-radius: 50%;

  background: radial-gradient(circle, rgba(0, 180, 180, .1), transparent 70%);

  pointer-events: none

}



.hero-circle-2 {

  position: absolute;

  bottom: -80px;

  left: 5%;

  width: 360px;

  height: 360px;

  border-radius: 50%;

  background: radial-gradient(circle, rgba(0, 212, 212, .08), transparent 70%);

  pointer-events: none

}



.hero-dots {

  position: absolute;

  top: 80px;

  left: 3%;

  opacity: .15;

  pointer-events: none;

  display: grid;

  grid-template-columns: repeat(8, 12px);

  gap: 16px

}



.hero-dots span {

  width: 4px;

  height: 4px;

  border-radius: 50%;

  background: var(--teal);

  display: block

}



.hero-inner {

  max-width: 1350px;

  margin: 0 auto;

  display: grid;

  grid-template-columns: 1.05fr 1fr;

  gap: 64px;

  align-items: center;

  width: 100%;

  position: relative;

  z-index: 1

}



/* left */

.hero-pill {

  display: inline-flex;

  align-items: center;

  gap: 8px;

  background: #fff;

  border: 2px solid var(--teal-pale2);

  border-radius: 100px;

  padding: 6px 18px;

  font-size: 14px;

  font-weight: 600;

  color: var(--teal-dark);

  margin-bottom: 9px;

  box-shadow: 0 2px 16px rgba(0, 180, 180, .12);

  animation: fUp .6s ease both;

}



.live-dot {

  width: 8px;

  height: 8px;

  background: #22C55E;

  border-radius: 50%;

  animation: pdot 2s infinite

}



@keyframes pdot {

  0%, 100% {

    box-shadow: 0 0 0 0 rgba(34, 197, 94, .4)

  }



  70% {

    box-shadow: 0 0 0 6px rgba(34, 197, 94, 0)

  }

}



.hero h1 {

  font-family: "Outfit", sans-serif;

  font-size: clamp(2.6rem, 3.8vw, 2.3rem);

  /* font-size: 3.5rem; */

  font-weight: 800;

  line-height: 1.12;

  letter-spacing: -1px;

  color: var(--navy);

  animation: fUp .7s .1s ease both;

}



.hero h1 .teal {

  color: var(--teal)

}



.hero h1 .grad {

  background: linear-gradient( 340deg, #0db8aa, #2c98df);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

  background-clip: text;

}



.hero-sub {

  margin-top: 18px;

  font-size: 1.05rem;

  line-height: 1.8;

  color: var(--text-mid);

  max-width: 510px;

  animation: fUp .7s .2s ease both;

  font-weight: 400;

}



.spec-chips {

  display: flex;

  gap: 9px;

  flex-wrap: wrap;

  margin-top: 26px;

  animation: fUp .7s .3s ease both

}



.chip {

  display: flex;

  align-items: center;

  gap: 7px;

  padding: 7px 15px;

  border-radius: 100px;

  font-size: .78rem;

  font-weight: 700;

  border: 2px solid;

  transition: all .22s;

  cursor: pointer

}



.chip:hover {

  transform: translateY(-2px);

  box-shadow: 0 4px 14px rgba(0, 0, 0, .1)

}



.ch-d {

  color: var(--dent-c);

  border-color: var(--dent-bd);

  background: var(--dent-bg)

}



.ch-p {

  color: var(--phys-c);

  border-color: var(--phys-bd);

  background: var(--phys-bg)

}



.ch-r {

  color: var(--derm-c);

  border-color: var(--derm-bd);

  background: var(--derm-bg)

}



.ch-o {

  color: var(--orth-c);

  border-color: var(--orth-bd);

  background: var(--orth-bg)

}



.hero-btns {

  display: flex;

  gap: 14px;

  margin-top: 32px;

  flex-wrap: wrap;

  animation: fUp .7s .4s ease both

}



.btn-hero-primary {

  padding: 10px 18px;

  border-radius: 30px;

  background: #fff;
  color: #3e3e3e;

  font-size: 1rem;

  font-weight: 600;

  border: none;

  cursor: pointer;

  text-decoration: none;

  font-family: "Outfit", sans-serif;

  /* box-shadow: 0 6px 24px rgba(0, 180, 180, .45); */

  transition: all .25s;

  display: inline-flex;

  align-items: center;

  gap: 9px;

}



.btn-hero-primary:hover {

  transform: translateY(-2px);

  /* box-shadow: 0 10px 32px rgba(0, 180, 180, .55) */

}



/* .btn-hero-sec {

  padding: 10px 18px;

  border-radius: 30px;

  background: #fff;

  color: var(--navy);

  font-size: 1rem;

  font-weight: 600;

  border: 2px solid var(--gray-200);

  cursor: pointer;

  text-decoration: none;

  font-family: "Outfit", sans-serif;

  transition: all .25s;

  display: inline-flex;

  align-items: center;

  gap: 9px;

} */



/* .btn-hero-sec:hover {

  border-color: var(--teal);

  color: var(--teal-dark);

  box-shadow: 0 4px 16px rgba(0, 0, 0, .08)

} */



.hero-proof {

  display: flex;

  align-items: center;

  gap: 18px;

  margin-top: 34px;

  animation: fUp .7s .5s ease both

}



.avatars {

  display: flex

}



.avatars span {

  width: 36px;

  height: 36px;

  border-radius: 50%;

  border: 3px solid #fff;

  display: grid;

  place-items: center;

  font-size: .68rem;

  font-weight: 800;

  margin-left: -9px;

  color: #fff;

  background: linear-gradient(135deg, var(--teal), #00CCAA);

}



.avatars span:first-child {

  margin-left: 0

}



.avatars span:nth-child(2) {

  background: linear-gradient(135deg, var(--phys-c), #AA88FF)

}



.avatars span:nth-child(3) {

  background: linear-gradient(135deg, var(--derm-c), #FF88BB)

}



.avatars span:nth-child(4) {

  background: linear-gradient(135deg, var(--orth-c), #FFB040)

}



.proof-text {

  font-size: .83rem;

  color: var(--text-mid);

  line-height: 1.55;

  font-weight: 600

}



.proof-text strong {

  color: var(--navy);

  font-weight: 800

}



/* ─── DASHBOARD MOCKUP ─── */

.hero-vis {

  position: relative;

  animation: fIn .9s .3s ease both;

  width: 750px;

}



.dash-card {

  background: #fff;

  border-radius: 22px;

  box-shadow: 0 28px 80px rgba(0, 180, 180, .15), 0 4px 24px rgba(0, 0, 0, .06);

  overflow: hidden;

  border: 1.5px solid var(--teal-pale2);

}



.dash-topbar {

  background: linear-gradient(90deg, #0caaa6 0%, #075081 100%);

  padding: 14px 20px;

  display: flex;

  align-items: center;

  gap: 8px;

}



.d-dot {

  width: 10px;

  height: 10px;

  border-radius: 50%;

  background: rgba(255, 255, 255, .4)

}



.d-title {

  margin-left: 8px;

  font-size: .75rem;

  color: rgba(255, 255, 255, .9);

  font-weight: 700

}



.dash-body {

  padding: 20px

}



.d-head {

  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-bottom: 16px

}



.d-ttl {

  font-family: "Outfit", sans-serif;

  font-size: 1rem;

  font-weight: 700;

  color: var(--navy)

}



.d-badge {

  font-size: .7rem;

  font-weight: 700;

  color: var(--teal-dark);

  background: var(--teal-pale);

  padding: 4px 12px;

  border-radius: 20px;

  border: 1px solid var(--teal-pale2)

}



.kpi-row {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 10px;

  margin-bottom: 14px

}



.kpi {

  background: var(--off-white);

  border: 1.5px solid var(--gray-200);

  border-radius: 12px;

  padding: 12px

}



.kn {

  font-family: "Outfit", sans-serif;

  font-size: 1.3rem;

  font-weight: 800;

  color: var(--navy)

}



.kl {

  font-size: .62rem;

  color: var(--text-light);

  margin-top: 2px;

  font-weight: 600

}



.kg {

  font-size: .62rem;

  color: #16A34A;

  font-weight: 700

}



.kt {

  font-size: .62rem;

  color: var(--teal-dark);

  font-weight: 700

}



.spec-row-mini {

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 8px;

  margin-bottom: 14px

}



.sm {

  border-radius: 10px;

  padding: 9px 7px;

  text-align: center;

  border: 1.5px solid

}



.sm-ic {

  font-size: 1.05rem;

  margin-bottom: 3px

}



.sm-n {

  font-size: .67rem;

  font-weight: 800

}



.sm-v {

  font-size: .58rem;

  color: var(--text-light);

  margin-top: 1px;

  font-weight: 600

}



.appt-lbl {

  font-size: .63rem;

  font-weight: 800;

  letter-spacing: .8px;

  color: var(--text-light);

  text-transform: uppercase;

  margin-bottom: 8px

}



.appts {

  display: flex;

  flex-direction: column;

  gap: 7px

}



.appt {

  display: flex;

  align-items: center;

  gap: 10px;

  background: var(--off-white);

  border: 1.5px solid var(--gray-200);

  border-radius: 10px;

  padding: 9px 12px

}



.appt-av {

  width: 30px;

  height: 30px;

  border-radius: 50%;

  display: grid;

  place-items: center;

  font-size: .63rem;

  font-weight: 800;

  flex-shrink: 0;

  color: #fff

}



.appt-in {

  flex: 1

}



.appt-nm {

  font-size: .73rem;

  font-weight: 700;

  color: var(--navy)

}



.appt-tp {

  font-size: .62rem;

  color: var(--text-light);

  font-weight: 600

}



.appt-tm {

  font-size: .62rem;

  color: var(--text-light);

  font-weight: 600

}



.appt-st {

  font-size: .6rem;

  font-weight: 800;

  padding: 3px 9px;

  border-radius: 20px

}



/* floating cards */

.float-ai {

  position: absolute;

  bottom: -18px;

  left: -38px;

  background: #fff;

  border: 2px solid var(--teal-pale2);

  border-radius: 16px;

  padding: 14px 18px;

  width: 196px;

  box-shadow: 0 16px 48px rgba(0, 180, 180, .2);

  animation: floatUp 4s ease-in-out infinite alternate;

}



@keyframes floatUp {

  from {

    transform: translateY(0)

  }



  to {

    transform: translateY(-12px)

  }

}



.fa-lbl {

  font-size: .63rem;

  color: var(--text-light);

  font-weight: 700;

  margin-bottom: 5px

}



.fa-val {

  font-family: "Outfit", sans-serif;

  font-size: 1.6rem;

  font-weight: 800;

  color: var(--teal)

}



.fa-sub {

  font-size: .63rem;

  color: var(--text-light);

  font-weight: 600;

  margin-top: 2px

}



.bars {

  display: flex;

  align-items: flex-end;

  gap: 3px;

  margin-top: 9px;

  height: 26px

}



.bar {

  width: 9px;

  border-radius: 3px 3px 0 0;

  background: linear-gradient(to top, var(--teal), var(--teal-light));

  animation: bAnim 1.5s ease-in-out infinite alternate

}



@keyframes bAnim {

  from {

    opacity: .35;

    transform: scaleY(.5)

  }



  to {

    opacity: 1;

    transform: scaleY(1)

  }

}



.float-stat {

  position: absolute;

  top: 14px;

  right: -34px;

  background: #fff;

  border: 2px solid var(--teal-pale2);

  border-radius: 14px;

  padding: 12px 16px;

  box-shadow: 0 10px 32px rgba(0, 0, 0, .08);

  animation: floatUp 5s 1s ease-in-out infinite alternate;

}



.fs-stars {

  color: #F59E0B;

  font-size: .85rem;

  margin-bottom: 4px

}



.fs-val {

  font-family: "Outfit", sans-serif;

  font-size: 1.15rem;

  font-weight: 800;

  color: var(--navy)

}



.fs-lbl {

  font-size: .63rem;

  color: var(--text-light);

  font-weight: 600

}



@keyframes fUp {

  from {

    opacity: 0;

    transform: translateY(28px)

  }



  to {

    opacity: 1;

    transform: translateY(0)

  }

}



@keyframes fIn {

  from {

    opacity: 0

  }



  to {

    opacity: 1

  }

}



/* ─── TRUST BAND ─── */

.trust-band {

  background: var(--teal-pale);

  border-top: 1.5px solid var(--teal-pale2);

  border-bottom: 1.5px solid var(--teal-pale2);

  padding: 18px 5%;

  overflow: hidden;

}



.tb-inner {

  display: flex;

  align-items: center

}



.tb-lbl {

  font-size: .72rem;

  color: var(--teal-deep);

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: 1.2px;

  white-space: nowrap;

  margin-right: 44px;

  min-width: max-content

}



.tb-track {

  display: flex;

  gap: 54px;

  align-items: center;

  animation: scrlLeft 26s linear infinite

}



.tb-item {

  font-family: "Outfit", sans-serif;

  font-size: .82rem;

  font-weight: 700;

  color: var(--teal-pale2);

  white-space: nowrap;

  transition: color .2s;

  filter: saturate(0) brightness(.6)

}



.tb-item:hover {

  color: var(--teal);

  filter: none

}



@keyframes scrlLeft {

  from {

    transform: translateX(0)

  }



  to {

    transform: translateX(-50%)

  }

}



/* ─── platform features ─── */

section {

  position: relative

}

.sw {

  max-width: 1369px;

  margin: 0 auto;

  padding: 0 1rem;

}

.sh {

  text-align: center;

  margin-bottom: 56px

}

.s-tag {

  display: inline-flex;

  align-items: center;

  gap: 7px;

  font-size: .73rem;

  font-weight: 600;

  letter-spacing: 1.5px;

  text-transform: uppercase;

  color: var(--teal-dark);

  background: var(--teal-pale);

  padding: 6px 16px;

  border-radius: 100px;

  border: 1.5px solid var(--teal-pale2);

  margin-bottom: 14px;

}

.s-title {

  font-family: "Outfit", sans-serif;

  font-size: clamp(1.9rem, 3.2vw, 2.8rem);

  font-weight: 800;

  line-height: 1.15;

  letter-spacing: -.8px;

  color: var(--navy)

}

.s-title .tl {

  color: var(--teal)

}

.s-sub {

  margin-top: 14px;

  font-size: 1rem;

  color: var(--text-mid);

  line-height: 1.75;

  max-width: 551px;

  margin-left: auto;

  margin-right: auto;

  font-weight: 400;

}



/* ───  SPECIALTIES platform ─── */

.specs {

  padding: 50px 0; 

  background: #fff

}

.sp-tabs {

  display: flex;

  gap: 9px;

  justify-content: center;

  flex-wrap: wrap;

  margin-bottom: 10px;

}



.sp-tab {

  padding: 11px 24px;

  border-radius: 100px;

  font-size: .875rem;

  font-weight: 500;

  border: 2px solid;

  cursor: pointer;

  transition: all .22s;

  background: transparent;

  font-family: "Outfit", sans-serif;

}



.sp-tab:hover, .sp-tab.active {

  transform: translateY(-2px);

  box-shadow: 0 4px 16px rgba(0, 0, 0, .1)

}



.sp-g {

  color: var(--gen-c);

  border-color: var(--gen-bd)

}



.sp-g.active, .sp-g:hover {

  background: var(--gen-bg)

}



.sp-d {

  color: var(--dent-c);

  border-color: var(--dent-bd)

}



.sp-d.active, .sp-d:hover {

  background: var(--dent-bg)

}



.sp-p {

  color: var(--phys-c);

  border-color: var(--phys-bd)

}



.sp-p.active, .sp-p:hover {

  background: var(--phys-bg)

}



.sp-r {

  color: var(--derm-c);

  border-color: var(--derm-bd)

}



.sp-r.active, .sp-r:hover {

  background: var(--derm-bg)

}



.sp-o {

  color: var(--orth-c);

  border-color: var(--orth-bd)

}



.sp-o.active, .sp-o:hover {

  background: var(--orth-bg)

}



.sp-panel {

  display: none

}



.sp-panel.on {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 30px;

  align-items: center

}



.spl h3 {

  font-family: "Outfit", sans-serif;

  font-size: 1.9rem;

  font-weight: 700;

  line-height: 1.2;

  margin-bottom: 14px;

  color: var(--navy)

}



.spl p {

  color: var(--text-mid);

  font-size: .97rem;

  line-height: 1.75;

  margin-bottom: 28px;

  font-weight: 400

}



.sfeats {

  display: flex;

  flex-direction: column;

  gap: 13px

}



.sfeat {

  display: flex;

  gap: 14px;

  align-items: flex-start;

  background: var(--off-white);

  border: 1.5px solid var(--gray-200);

  border-radius: 14px;

  padding: 15px 17px;

  transition: all .22s

}



.sfeat:hover {

  transform: translateX(5px);

  border-color: var(--teal-pale2);

  background: var(--teal-pale)

}



.sfeat-ico {

  width: 40px;

  height: 40px;

  border-radius: 11px;

  display: grid;

  place-items: center;

  font-size: 1.1rem;

  flex-shrink: 0

}



.sfeat-t {

  font-weight: 500;

  font-size: .875rem;

  color: var(--navy);

  margin-bottom: 3px

}



.sfeat-d {

  font-size: 0.88rem;

  color: var(--text-mid);

  line-height: 1.55;

  font-weight: 500

}



.spr {

  background: var(--off-white);

  border: 1.5px solid var(--teal-pale2);

  border-radius: 40px;

  padding: 0px;

  display: flex;

  flex-direction: column;

  gap: 14px;

  box-shadow: 0 12px 48px rgba(0, 180, 180, .1)

}



/* ─── FEATURES ─── */

.feats-sec {

  padding: 80px 0; 

  background: var(--off-white)

}



.feat-grid {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px

}



.feat-card {

  background: #fff;

  border: 1.5px solid var(--gray-200);

  border-radius: 18px;

  padding: 28px;

  transition: all .3s;

  position: relative;

  overflow: hidden;

}



.feat-card::before {

  content: '';

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  height: 3px;

  background: var(--teal-grad);

  opacity: 0;

  transition: opacity .3s;

}



.feat-card:hover {

  transform: translateY(-6px);

  border-color: var(--teal-pale2);

  box-shadow: 0 16px 48px rgba(0, 180, 180, .12)

}



.feat-card:hover::before {

  opacity: 1

}



.feat-card.star {

  border-color: var(--teal-pale2);

  background: linear-gradient(160deg, var(--teal-pale) 0%, #fff 60%)

}



.feat-card.star::before {

  opacity: 1

}



.feat-ico {

  width: 52px;

  height: 52px;

  border-radius: 14px;

  display: grid;

  place-items: center;

  font-size: 1.35rem;

  margin-bottom: 18px

}



.feat-title {

  font-family: "Outfit", sans-serif;

  font-size: 1rem;

  font-weight: 700;

  color: var(--navy);

  margin-bottom: 9px

}



.feat-desc {

  font-size: .875rem;

  color: var(--text-mid);

  line-height: 1.7;

  font-weight: 500

}



.feat-badge {

  display: inline-block;

  font-size: .65rem;

  font-weight: 800;

  padding: 3px 11px;

  border-radius: 20px;

  margin-top: 14px

}

.pf-tabs {

  max-height: 100%;

}



/* ─── STATS ─── */

.stats-sec {

  padding: 72px 0;

  background: #fff

}



.stats-inner {

  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 40%, var(--teal-deep) 100%);

  border-radius: 26px;

  padding: 58px 5%;

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 30px;

  text-align: center;

  box-shadow: 0 28px 64px rgba(0, 180, 180, .35);

  position: relative;

  overflow: hidden;

}



.stats-inner::before {

  content: '';

  position: absolute;

  top: -100px;

  right: -100px;

  width: 400px;

  height: 400px;

  border-radius: 50%;

  background: rgba(255, 255, 255, .05);

}



.st-n {

  font-family: "Outfit", sans-serif;

  font-size: 3.2rem;

  font-weight: 900;

  color: #fff;

  line-height: 1

}



.st-l {

  color: rgba(255, 255, 255, .7);

  font-size: .88rem;

  margin-top: 8px;

  font-weight: 600

}



/* ─── HOW IT WORKS ─── */

.how-sec {

  padding: 80px 0; 

  background: var(--off-white)

}



.how-grid {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 26px

}



.how-card {

  background: #fff;

  border: 1.5px solid var(--gray-200);

  border-radius: 20px;

  padding: 34px;

  text-align: center;

  transition: all .3s

}



.how-card:hover {

  transform: translateY(-6px);

  box-shadow: 0 16px 48px rgba(0, 180, 180, .1);

  border-color: var(--teal-pale2)

}



.how-num {

  width: 54px;

  height: 54px;

  border-radius: 50%;

  background: var(--teal-pale);

  border: 2px solid var(--teal-pale2);

  color: var(--teal);

  font-family: "Outfit", sans-serif;

  font-size: 1.4rem;

  font-weight: 800;

  display: grid;

  place-items: center;

  margin: 0 auto 18px

}



.how-ico {

  font-size: 2.4rem;

  margin-bottom: 16px

}



.how-title {

  font-family: "Outfit", sans-serif;

  font-size: 1.05rem;

  font-weight: 700;

  color: var(--navy);

  margin-bottom: 10px

}



.how-desc {

  font-size: .875rem;

  color: var(--text-mid);

  line-height: 1.7;

  font-weight: 500

}



/* ─── TESTIMONIALS ─── */

.testis-sec {

  padding: 80px 0; 

  background: var(--off-white)

}



.t-grid {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 20px

}



.t-card {

  background: #fff;

  border: 1.5px solid var(--gray-200);

  border-radius: 18px;

  padding: 28px;

  transition: all .3s

}



.t-card:hover {

  transform: translateY(-5px);

  box-shadow: 0 14px 44px rgba(0, 180, 180, .1);

  border-color: var(--teal-pale2)

}



.t-stars {

  color: #F59E0B;

  font-size: .85rem;

  margin-bottom: 13px

}



.t-q {

  font-size: .9rem;

  color: var(--text-mid);

  line-height: 1.75;

  font-style: italic;

  margin-bottom: 20px;

  font-weight: 500

}



.t-auth {

  display: flex;

  align-items: center;

  gap: 12px

}



.t-av {

  width: 42px;

  height: 42px;

  border-radius: 50%;

  display: grid;

  place-items: center;

  font-size: .82rem;

  font-weight: 800;

  flex-shrink: 0;

  color: #fff

}



.t-nm {

  font-weight: 800;

  font-size: .875rem;

  color: var(--navy)

}



.t-rl {

  font-size: .73rem;

  color: var(--text-light);

  font-weight: 500

}



.t-sp {

  font-size: .63rem;

  font-weight: 800;

  padding: 2px 9px;

  border-radius: 10px;

  margin-top: 4px;

  display: inline-block

}



/* ─── CTA ─── */

.cta-sec {

  padding: 80px 0; 

  background: #fff

}



.cta-box {

  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 50%, #007070 100%);

  border-radius: 30px;

  padding: 82px 60px;

  text-align: center;

  position: relative;

  overflow: hidden;

  box-shadow: 0 32px 80px rgba(0, 180, 180, .35);

}



.cta-box::before {

  content: '';

  position: absolute;

  top: -120px;

  right: -120px;

  width: 420px;

  height: 420px;

  border-radius: 50%;

  background: rgba(255, 255, 255, .06)

}



.cta-box::after {

  content: '';

  position: absolute;

  bottom: -100px;

  left: -100px;

  width: 360px;

  height: 360px;

  border-radius: 50%;

  background: rgba(255, 255, 255, .04)

}



.cta-box h2 {

  font-family: "Outfit", sans-serif;

  font-size: clamp(2rem, 3vw, 2.8rem);

  font-weight: 800;

  color: #fff;

  letter-spacing: -.8px;

  margin-bottom: 14px;

  position: relative;

  z-index: 1

}



.cta-box p {

  color: rgba(255, 255, 255, .8);

  font-size: 1.05rem;

  max-width: 510px;

  margin: 0 auto 36px;

  position: relative;

  z-index: 1;

  line-height: 1.75;

  font-weight: 500

}



.cta-btns {

  display: flex;

  gap: 14px;

  justify-content: center;

  flex-wrap: wrap;

  position: relative;

  z-index: 1

}



.btn-white {

  padding: 15px 32px;

  border-radius: 12px;

  background: #fff;

  color: var(--teal-dark);

  font-size: 1rem;

  font-weight: 800;

  border: none;

  cursor: pointer;

  text-decoration: none;

  font-family: "Outfit", sans-serif;

  box-shadow: 0 4px 20px rgba(0, 0, 0, .15);

  transition: all .25s;

}



.btn-white:hover {

  transform: translateY(-2px);

  box-shadow: 0 8px 28px rgba(0, 0, 0, .2)

}



.btn-white-o {

  padding: 15px 28px;

  border-radius: 12px;

  background: transparent;

  color: #fff;

  font-size: 1rem;

  font-weight: 700;

  border: 2px solid rgba(255, 255, 255, .45);

  cursor: pointer;

  text-decoration: none;

  font-family: "Outfit", sans-serif;

  transition: all .25s;

}



.btn-white-o:hover {

  background: rgba(255, 255, 255, .12);

  border-color: rgba(255, 255, 255, .8)

}



.cta-meta {

  margin-top: 22px;

  font-size: .78rem;

  color: rgba(255, 255, 255, .55);

  position: relative;

  z-index: 1;

  font-weight: 600

}



/* ─── FOOTER OLD ─── */

footer {

  background:#02284a;

  padding: 35px 5% 1px;

}



.ft-inner {

  max-width: 1240px;

  margin: 0 auto

}



.ft-top {

  display: grid;

  grid-template-columns: 2fr 1fr 1fr 1fr 1fr 1fr;

  gap: 32px;

  margin-bottom: 48px

}



.ft-brand p {

  font-size: .875rem;

  /* color: #5A7899; */

  line-height: 1.75;

  margin-top: 14px;

  max-width: 450px;

  font-weight: 500;

  color: rgba(255, 255, 255, .65);

}



.ft-chips {

  display: flex;

  flex-wrap: wrap;

  gap: 7px;

  margin-top: 18px

}



.ftchip {

  font-size: .63rem;

  font-weight: 700;

  padding: 4px 11px;

  border-radius: 20px;

  border: 1.5px solid

}



.ft-col h4 {

  font-family: "Outfit", sans-serif;

  font-size: .875rem;

  font-weight: 700;

  color: #E0EEF8;

  margin-bottom: 16px

}



.ft-col ul {

  list-style: none;

  display: flex;

  flex-direction: column;

  gap: 10px

}



.ft-col ul li a {

  font-size: .85rem;

  /* color: #5A7899; */

  color: rgba(255, 255, 255, .65);

  text-decoration: none;

  transition: color .2s;

  font-weight: 500;

}



.ft-col ul li a:hover {

  color: var(--teal-light)

}



.ft-bot {

  border-top: 1px solid #243448;

  padding-top: 22px;

  display: flex;

  align-items: center;

  justify-content: space-between

}



.ft-bot p {

  font-size: .78rem;

  /* color: #3A5470; */

  font-weight: 500;

  color: rgba(255, 255, 255, .65);

}



/* ─── AI FEATURES ─── */

.ai-sec {

  padding: 100px 0;

  background: var(--navy);

  position: relative;

  overflow: hidden

}



.ai-sec::before {

  content: '';

  position: absolute;

  top: -160px;

  right: -160px;

  width: 500px;

  height: 500px;

  border-radius: 50%;

  background: radial-gradient(circle, rgba(0, 180, 180, .12), transparent 70%);

  pointer-events: none

}



.ai-sec::after {

  content: '';

  position: absolute;

  bottom: -120px;

  left: -120px;

  width: 380px;

  height: 380px;

  border-radius: 50%;

  background: radial-gradient(circle, rgba(0, 212, 212, .08), transparent 70%);

  pointer-events: none

}



.ai-sec .s-tag {

  background: rgba(0, 180, 180, .15);

  border-color: rgba(0, 180, 180, .3);

  color: var(--teal-light)

}



.ai-sec .s-title {

  color: #fff

}



.ai-sec .s-sub {

  color: rgba(255, 255, 255, .6)

}



.ai-grid {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 22px;

  position: relative;

  z-index: 1

}



.ai-card {

  background: rgba(255, 255, 255, .05);

  border: 1.5px solid rgba(0, 180, 180, .18);

  border-radius: 20px;

  padding: 30px;

  transition: all .3s;

  position: relative;

  overflow: hidden;

}



.ai-card::before {

  content: '';

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  height: 2px;

  background: linear-gradient(90deg, var(--teal), var(--teal-light));

  opacity: 0;

  transition: opacity .3s;

}



.ai-card:hover {

  transform: translateY(-7px);

  background: rgba(0, 180, 180, .08);

  border-color: rgba(0, 180, 180, .4);

  box-shadow: 0 20px 60px rgba(0, 0, 0, .3);

}



.ai-card:hover::before {

  opacity: 1

}



.ai-card-icon {

  width: 58px;

  height: 58px;

  border-radius: 16px;

  background: linear-gradient(135deg, rgba(0, 180, 180, .2), rgba(0, 180, 180, .08));

  border: 1.5px solid rgba(0, 180, 180, .25);

  display: grid;

  place-items: center;

  font-size: 1.5rem;

  margin-bottom: 20px;

}



.ai-card-label {

  display: inline-block;

  font-size: .65rem;

  font-weight: 800;

  letter-spacing: 1px;

  text-transform: uppercase;

  color: var(--teal-light);

  background: rgba(0, 180, 180, .12);

  padding: 3px 10px;

  border-radius: 20px;

  margin-bottom: 10px;

}



.ai-card-title {

  font-family: "Outfit", sans-serif;

  font-size: 1.05rem;

  font-weight: 700;

  color: #fff;

  margin-bottom: 10px;

  line-height: 1.3

}



.ai-card-desc {

  font-size: .875rem;

  color: rgba(255, 255, 255, .55);

  line-height: 1.72;

  font-weight: 500

}



.ai-card.featured {

  background: linear-gradient(135deg, rgba(0, 180, 180, .15) 0%, rgba(0, 180, 180, .05) 100%);

  border-color: rgba(0, 180, 180, .4);

}



.ai-card.featured::before {

  opacity: 1

}



/* ─── SECURITY ─── */

/* .sec-sec {

  padding: 80px 0; 

  background: var(--off-white)

}



.sec-inner {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 64px;

  align-items: center;

  max-width: 1240px;

  margin: 0 auto;

  padding: 0 5%

}



.sec-left h2 {

  font-family: "Outfit", sans-serif;

  font-size: clamp(1.8rem, 3vw, 2.6rem);

  font-weight: 800;

  line-height: 1.2;

  color: var(--navy);

  letter-spacing: -.8px;

  margin-bottom: 16px

}



.sec-left h2 span {

  color: var(--teal)

}



.sec-left p {

  font-size: 1rem;

  color: var(--text-mid);

  line-height: 1.75;

  font-weight: 500;

  margin-bottom: 32px

}



.sec-shield {

  width: 110px;

  height: 110px;

  border-radius: 28px;

  background: linear-gradient(135deg, var(--teal), var(--teal-dark));

  display: grid;

  place-items: center;

  font-size: 3rem;

  box-shadow: 0 16px 48px rgba(0, 180, 180, .35);

  margin-bottom: 28px;

}



.sec-cta-row {

  display: flex;

  gap: 12px;

  flex-wrap: wrap

}



.sec-grid {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 18px

}



.sec-card {

  background: #fff;

  border: 1.5px solid var(--gray-200);

  border-radius: 18px;

  padding: 26px;

  transition: all .3s;

}



.sec-card:hover {

  transform: translateY(-5px);

  border-color: var(--teal-pale2);

  box-shadow: 0 14px 44px rgba(0, 180, 180, .1)

}



.sec-icon {

  width: 50px;

  height: 50px;

  border-radius: 13px;

  background: linear-gradient(135deg, var(--teal-pale), var(--teal-pale2));

  border: 1.5px solid var(--teal-pale2);

  display: grid;

  place-items: center;

  font-size: 1.3rem;

  margin-bottom: 16px

}



.sec-title {

  font-family: "Outfit", sans-serif;

  font-size: .95rem;

  font-weight: 700;

  color: var(--navy);

  margin-bottom: 8px

}



.sec-desc {

  font-size: .82rem;

  color: var(--text-mid);

  line-height: 1.68;

  font-weight: 500

}



.rv {

  opacity: 0;

  transform: translateY(22px);

  transition: opacity .65s ease, transform .65s ease

}



.rv.vis {

  opacity: 1;

  transform: translateY(0)

} */



@media(max-width:1100px) {

  .hero-inner {

    grid-template-columns: 1fr

  }



  .hero-vis {

    display: none

  }



  .sp-panel.on {

    grid-template-columns: 1fr

  }



  .feat-grid {

    grid-template-columns: repeat(2, 1fr)

  }



  .stats-inner {

    grid-template-columns: repeat(2, 1fr)

  }



  .t-grid {

    grid-template-columns: repeat(2, 1fr)

  }



  .ft-top {

    grid-template-columns: 1fr 1fr

  }



  .how-grid {

    grid-template-columns: 1fr

  }



  .ai-grid {

    grid-template-columns: repeat(2, 1fr)

  }



  .sec-inner {

    grid-template-columns: 1fr

  }



  .sec-left {

    text-align: center

  }



  .sec-shield {

    margin: 0 auto 28px

  }



  .sec-cta-row {

    justify-content: center

  }

}



@media(max-width:640px) {

  .nav-links {

    display: none

  }



  .feat-grid {

    grid-template-columns: 1fr

  }



  .t-grid {

    grid-template-columns: 1fr

  }



  .ft-top {

    grid-template-columns: 1fr

  }



  .cta-box {

    padding: 50px 28px

  }



  .stats-inner {

    grid-template-columns: 1fr 1fr

  }



  .ai-grid {

    grid-template-columns: 1fr

  }



  .sec-grid {

    grid-template-columns: 1fr

  }

}



/* ════ HOW IT WORKS — TIMELINE ════ */

.how-sec {

  padding: 80px 0; 

  background: #fff

}



.timeline {

  position: relative;

  padding-top: 20px

}



.tl-steps {

  display: grid;

  grid-template-columns: 1fr auto 1fr auto 1fr;

  align-items: start;

  gap: 0

}



.tl-connector {

  font-size: 1.6rem;

  color: var(--teal-pale2);

  align-self: flex-start;

  padding-top: 24px;

  text-align: center;

}



.tl-step {

  text-align: center;

  padding: 0 8px

}



.tl-node {

  width: 70px;

  height: 70px;

  border-radius: 50%;

  border: 3px solid var(--teal-pale2);

  background: #fff;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: center;

  margin: 0 auto 20px;

  position: relative;

  transition: all .3s;

  box-shadow: 0 4px 16px rgba(0, 180, 180, .08);

}



.tl-node.active {

  border-color: var(--teal);

  background: var(--teal-pale);

  box-shadow: 0 6px 24px rgba(0, 180, 180, .2)

}



.tl-ico {

  font-size: 1.4rem;

  line-height: 1

}



.tl-num {

  font-size: .55rem;

  font-weight: 900;

  color: var(--text-light);

  letter-spacing: 1px;

  margin-top: 2px

}



.tl-node.active .tl-num {

  color: var(--teal-dark)

}



.tl-content h3 {

  font-family: "Outfit", sans-serif;

  font-size: 1.05rem;

  font-weight: 800;

  color: var(--navy);

  margin-bottom: 10px

}



.tl-content p {

  font-size: .875rem;

  color: var(--text-mid);

  line-height: 1.7;

  font-weight: 500

}



.tl-time {

  display: inline-block;

  margin-top: 14px;

  font-size: .72rem;

  font-weight: 800;

  color: var(--text-light);

  background: var(--gray-100);

  padding: 4px 12px;

  border-radius: 20px

}



.tl-time-green {

  background: #DCFCE7;

  color: #16A34A

}



/* ════ AI FEATURES — ALTERNATING ROWS ════ */

.ai-sec {

  padding: 80px 1rem; 

  background: linear-gradient(170deg, var(--navy) 0%, #0D2235 100%);

  position: relative;

  overflow: hidden

}



.ai-sec::before {

  content: '';

  position: absolute;

  top: -200px;

  right: -200px;

  width: 600px;

  height: 600px;

  border-radius: 50%;

  background: radial-gradient(circle, rgba(0, 180, 180, .1), transparent 65%);

  pointer-events: none

}



.ai-rows {

  display: flex;

  flex-direction: column;

  gap: 24px;

  position: relative;

  z-index: 1

}



.ai-row {

  display: grid;

  gap: 24px

}



.ai-row-1 {

  grid-template-columns: 1.4fr 1fr

}



.ai-row-2 {

  grid-template-columns: 1fr 1.4fr

}



.ai-feature-big {

  background: rgba(255, 255, 255, .06);

  border: 1.5px solid rgba(0, 180, 180, .2);

  border-radius: 22px;

  padding: 36px;

  position: relative;

  overflow: hidden;

  transition: all .3s;

}



.ai-feature-big:hover {

  background: rgba(0, 180, 180, .1);

  border-color: rgba(0, 180, 180, .4)

}



.ai-feature-big::before {

  content: '';

  position: absolute;

  bottom: -40px;

  right: -40px;

  width: 160px;

  height: 160px;

  border-radius: 50%;

  background: radial-gradient(circle, rgba(0, 180, 180, .12), transparent 65%)

}



.aifb-tag {

  display: inline-block;

  font-size: .63rem;

  font-weight: 600;

  letter-spacing: 1px;

  text-transform: uppercase;

  color: var(--teal-light);

  background: rgba(0, 180, 180, .15);

  padding: 3px 11px;

  border-radius: 20px;

  margin-bottom: 14px

}



.aifb-ico {

  font-size: 2.6rem;

  margin-bottom: 16px;

  display: block

}



.ai-feature-big h3 {

  font-family: "Outfit", sans-serif;

  font-size: 1.35rem;

  font-weight: 600;

  color: #fff;

  margin-bottom: 12px;

  line-height: 1.2

}



.ai-feature-big p {

  font-size: .9rem;

  color: rgba(255, 255, 255, .6);

  line-height: 1.75;

  font-weight: 500

}



.aifb-chip {

  display: inline-block;

  margin-top: 18px;

  font-size: .72rem;

  font-weight: 600;

  color: var(--teal-light);

  background: rgba(0, 180, 180, .12);

  border: 1px solid rgba(0, 180, 180, .25);

  padding: 5px 14px;

  border-radius: 20px

}



.ai-feature-stack {

  display: flex;

  flex-direction: column;

  gap: 16px

}



.ai-feature-sm {

  background: rgba(255, 255, 255, .05);

  border: 1.5px solid rgba(255, 255, 255, .08);

  border-radius: 18px;

  padding: 24px;

  display: flex;

  gap: 16px;

  align-items: flex-start;

  transition: all .3s;

  flex: 1;

}



.ai-feature-sm:hover {

  background: rgba(0, 180, 180, .08);

  border-color: rgba(0, 180, 180, .25);

  transform: translateX(4px)

}



.aifsm-ico {

  font-size: 1.8rem;

  width: 50px;

  height: 50px;

  border-radius: 13px;

  background: rgba(0, 180, 180, .15);

  border: 1px solid rgba(0, 180, 180, .2);

  display: grid;

  place-items: center;

  flex-shrink: 0

}



.aifsm-tag {

  font-size: .6rem;

  font-weight: 600;

  letter-spacing: 1px;

  text-transform: uppercase;

  color: var(--teal-light);

  margin-bottom: 6px

}



.ai-feature-sm h4 {

  font-family: "Outfit", sans-serif;

  font-size: .95rem;

  font-weight: 500;

  color: #fff;

  margin-bottom: 7px

}



.ai-feature-sm p {

  font-size: .82rem;

  color: rgba(255, 255, 255, .55);

  line-height: 1.65;

  font-weight: 500

}



/* ════ SECURITY — CHECKLIST + VISUAL ════ */

.sec-sec {

  padding: 80px 0; 

  background: #0db8aa00;

  overflow: hidden

}



.sec-inner {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 80px;

  align-items: center;

  max-width: 1300px;

  margin: 0 auto;

  /* padding: 0 5% */

}



.sec-eyebrow {

  font-size: .72rem;

  font-weight: 800;

  letter-spacing: 1.5px;

  text-transform: uppercase;

  color: var(--teal-light);

  margin-bottom: 14px

}



.sec-left h2 {

  font-family: "Outfit", sans-serif;

  font-size: clamp(1.8rem, 2.8vw, 2.2rem);

  font-weight: 600;

  line-height: 1.2;

  /* color: #4a6080; */

  color:#fff;

  letter-spacing: -.8px;

  margin-bottom: 14px

}



.sec-left h2 span {

  color: var(--teal)

}



.sec-left>p {

  font-size: .97rem;

  color: rgb(0 0 0 / 55%);

  line-height: 1.75;

  font-weight: 400;

  margin-bottom: 32px

}

.sec-checklist {

  display: flex;

  flex-direction: column;

  gap: 0;

  margin-bottom: 32px

}

.sc-item {

  display: flex;

  align-items: flex-start;

  gap: 16px;

  /* padding: 18px 0; */
  padding: 13px 0;

  border-bottom: 1px solid rgba(255, 255, 255, .08)

}



.sc-item:last-child {

  border-bottom: none

}



.sc-icon {

  width: 42px;

  height: 42px;

  border-radius: 12px;

  background: rgba(0, 180, 180, .15);

  border: 1px solid rgba(0, 180, 180, .25);

  display: grid;

  place-items: center;

  font-size: 1.1rem;

  flex-shrink: 0

}



.sc-title {

  font-family: "Outfit", sans-serif;

  font-size: 16px;

  font-weight: 400;

  /* color: #4a6080; */

  color: var(--teal);

  margin-bottom: 4px

}



.sc-desc {

  font-size: 13px;

  /* color: #4a6080; */

  color:  rgba(255, 255, 255, 0.55);

  line-height: 1.55;

  font-weight: 400;

}



.sec-cta-row {

  display: flex;

  gap: 12px;

  flex-wrap: wrap

}



/* Security visual */

.sec-visual {

  display: flex;

  align-items: center;

  justify-content: center;

  position: relative;

  min-height: 420px

}



.sv-center {

  position: relative;

  width: 300px;

  height: 300px;

  display: flex;

  align-items: center;

  justify-content: center

}



.sv-shield {

  width: 110px;

  height: 110px;

  border-radius: 28px;

  background: linear-gradient(135deg, var(--teal), var(--teal-dark));

  display: grid;

  place-items: center;

  box-shadow: 0 20px 60px rgba(0, 180, 180, .4);

  z-index: 2;

  position: relative

}



.sv-shield-inner {

  font-size: 2.8rem

}



.sv-ring {

  position: absolute;

  top: 50%;

  left: 50%;

  border-radius: 50%;

  border: 1.5px solid rgba(0, 180, 180, .2);

  transform: translate(-50%, -50%)

}



.sv-ring1 {

  width: 170px;

  height: 170px;

  animation: svSpin 20s linear infinite

}



.sv-ring2 {

  width: 230px;

  height: 230px;

  animation: svSpin 30s linear infinite reverse;

  border-style: dashed

}



.sv-ring3 {

  width: 300px;

  height: 300px;

  animation: svSpin 40s linear infinite;

  border-color: rgba(255, 255, 255, .06)

}



@keyframes svSpin {

  from {

    transform: translate(-50%, -50%) rotate(0)

  }



  to {

    transform: translate(-50%, -50%) rotate(360deg)

  }

}



.sv-badge {

  position: absolute;

  background: rgba(255, 255, 255, .08);

  border: 1.5px solid rgba(255, 255, 255, .12);

  border-radius: 100px;

  padding: 7px 14px;

  font-size: 13px;

  font-weight: 400;

  color: #fff;

  white-space: nowrap;

  backdrop-filter: blur(10px);

  display: flex;

  align-items: center;

  gap: 6px

}



.sv-badge span {

  font-size: .9rem

}



.sv-b1 {

  top: 2%;

  left: -10%;

  animation: svFloat 4s ease-in-out infinite

}



.sv-b2 {

  top: 2%;

  right: -10%;

  animation: svFloat 5s 1s ease-in-out infinite

}



.sv-b3 {

  bottom: 8%;

  left: -8%;

  animation: svFloat 4.5s .5s ease-in-out infinite

}



.sv-b4 {

  bottom: 8%;

  right: -8%;

  animation: svFloat 3.8s 1.5s ease-in-out infinite

}



@keyframes svFloat {

  0%, 100% {

    transform: translateY(0)

  }



  50% {

    transform: translateY(-8px)

  }

}



/* ════ TESTIMONIALS — FEATURED + GRID ════ */

.testis-sec {

  padding: 80px 0; 

  background: var(--off-white)

}



.t-featured {

  background: linear-gradient(135deg, var(--teal) 0%, var(--teal-dark) 100%);

  border-radius: 24px;

  padding: 48px 52px;

  margin-bottom: 28px;

  position: relative;

  overflow: hidden;

  box-shadow: 0 20px 60px rgba(0, 180, 180, .25);

}



.t-featured::before {

  content: '';

  position: absolute;

  top: -80px;

  right: -80px;

  width: 280px;

  height: 280px;

  border-radius: 50%;

  background: rgba(255, 255, 255, .07)

}



.tf-quote {

  font-size: 8rem;

  line-height: .8;

  color: rgba(255, 255, 255, .15);

  font-family: "Outfit", sans-serif;

  font-weight: 800;

  position: absolute;

  top: 20px;

  left: 36px

}



.tf-text {

  font-size: 1.2rem;

  color: #fff;

  line-height: 1.75;

  font-weight: 500;

  max-width: 820px;

  margin-bottom: 28px;

  position: relative;

  z-index: 1;

  font-style: italic

}



.tf-auth {

  display: flex;

  align-items: center;

  gap: 16px;

  flex-wrap: wrap;

  position: relative;

  z-index: 1

}



.tf-av {

  width: 50px;

  height: 50px;

  border-radius: 50%;

  display: grid;

  place-items: center;

  font-size: .9rem;

  font-weight: 800;

  flex-shrink: 0;

  color: #fff;

  border: 3px solid rgba(255, 255, 255, .3)

}



.tf-nm {

  font-weight: 800;

  font-size: .95rem;

  color: #fff

}



.tf-rl {

  font-size: .78rem;

  color: rgba(255, 255, 255, .7);

  margin-top: 2px

}



.tf-stars {

  color: #FDE68A;

  font-size: 1rem;

  margin-left: auto

}



.tf-sp {

  font-size: .68rem;

  font-weight: 800;

  padding: 4px 12px;

  border-radius: 20px;

  margin-left: 8px

}



.t-grid {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 18px

}



/* first card spans 2 cols in testimonials grid */

.t-grid .t-card:first-child {

  grid-column: span 2

}



.t-card {

  background: #fff;

  border: 1.5px solid var(--gray-200);

  border-radius: 18px;

  padding: 26px;

  transition: all .3s

}



.t-card:hover {

  transform: translateY(-4px);

  box-shadow: 0 14px 44px rgba(0, 180, 180, .1);

  border-color: var(--teal-pale2)

}



.t-stars {

  color: #F59E0B;

  font-size: .85rem;

  margin-bottom: 11px

}



.t-q {

  font-size: .875rem;

  color: var(--text-mid);

  line-height: 1.72;

  font-style: italic;

  margin-bottom: 18px;

  font-weight: 500

}



.t-auth {

  display: flex;

  align-items: center;

  gap: 11px

}



.t-av {

  width: 40px;

  height: 40px;

  border-radius: 50%;

  display: grid;

  place-items: center;

  font-size: .78rem;

  font-weight: 800;

  flex-shrink: 0;

  color: #fff

}



.t-nm {

  font-weight: 800;

  font-size: .875rem;

  color: var(--navy)

}



.t-rl {

  font-size: .72rem;

  color: var(--text-light);

  font-weight: 500

}



.t-sp {

  font-size: .62rem;

  font-weight: 800;

  padding: 2px 9px;

  border-radius: 10px;

  margin-top: 4px;

  display: inline-block

}



@media(max-width:1100px) {

  .bento-grid {

    grid-template-columns: repeat(2, 1fr)

  }



  .bento-hero {

    grid-column: 1/3;

    grid-row: auto

  }



  .bento-tall {

    grid-column: auto;

    grid-row: auto

  }



  .bento-wide {

    grid-column: auto

  }



  .tl-steps {

    grid-template-columns: 1fr;

    gap: 0

  }



  .tl-connector {

    display: none

  }



  .tl-step {

    display: flex;

    gap: 20px;

    text-align: left;

    padding: 20px 0;

    border-bottom: 1px solid var(--gray-200)

  }



  .tl-node {

    margin: 0;

    flex-shrink: 0

  }



  .ai-row-1, .ai-row-2 {

    grid-template-columns: 1fr

  }



  .sec-inner {

    grid-template-columns: 1fr

  }



  .sec-visual {

    display: none

  }



  .t-grid {

    grid-template-columns: repeat(2, 1fr)

  }



  .t-grid .t-card:first-child {

    grid-column: span 2

  }

}



@media(max-width:640px) {

  .bento-grid {

    grid-template-columns: 1fr

  }



  .bento-hero {

    grid-column: auto

  }



  .bento-wide-short {

    flex-direction: column

  }



  .t-grid {

    grid-template-columns: 1fr

  }



  .t-grid .t-card:first-child {

    grid-column: span 1

  }



  .t-featured {

    padding: 32px 28px

  }



  .tf-text {

    font-size: 1rem

  }



  .tf-stars {

    margin-left: 0

  }

}



/* ════ DIAMOND CHAIN — HOW IT WORKS ════ */

.how-sec {

  padding: 80px 0; 

  background: #fff

}



.diamond-chain {

  position: relative;

  padding: 20px 0 40px;

  max-width: 1080px;

  margin: 0 auto;

}



/* TOP ROW — 3 diamonds evenly spread */

.dc-row-top {

  display: grid;

  grid-template-columns: 1fr 1fr 1fr;

  gap: 0;

  position: relative;

  z-index: 2;

}



/* BOTTOM ROW — 2 diamonds in between gaps */

.dc-row-bot {

  display: grid;

  grid-template-columns: 1fr 1fr;

  margin: 0 12.5%;

  /* shift inward so they land between top diamonds */

  position: relative;

  z-index: 2;

  margin-top: -30px;

  /* overlap slightly for the connected look */

}



.dc-item {

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 0

}



.dc-top {

  flex-direction: column

}



/* label above, diamond below */

.dc-bot {

  flex-direction: column-reverse

}



/* diamond above, label below */



/* Label above (for top row) */

.dc-label-above {

  text-align: center;

  padding: 0 12px 20px;

  min-height: 80px;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: flex-end;

}



/* Label below (for bottom row) */

.dc-label-below {

  text-align: center;

  padding: 20px 12px 0;

  min-height: 80px;

  display: flex;

  flex-direction: column;

  align-items: center;

  justify-content: flex-start;

}



.dc-step-title {

  font-family: "Outfit", sans-serif;

  font-size: 1rem;

  font-weight: 700;

  color: var(--navy);

  margin-bottom: 6px;

  line-height: 1.2;

}



.dc-step-desc {

  font-size: .78rem;

  color: var(--text-mid);

  line-height: 1.6;

  font-weight: 500;

  max-width: 190px

}



/* THE DIAMOND SHAPE */

.dc-diamond {

  width: 100px;

  height: 100px;

  position: relative;

  flex-shrink: 0;

  transition: transform .3s;

  cursor: default;

}



.dc-diamond:hover {

  transform: scale(1.08) rotate(0deg)

}



/* Rotated square = diamond */

.dc-inner {

  width: 100%;

  height: 100%;

  transform: rotate(45deg);

  border-radius: 18px;

  display: flex;

  align-items: center;

  justify-content: center;

  border: 2.5px solid;

  position: relative;

  transition: all .3s;

  background: #fff;

  box-shadow: 0 6px 28px rgba(0, 0, 0, .07);

}



.dc-diamond:hover .dc-inner {

  box-shadow: 0 12px 40px rgba(0, 0, 0, .14)

}



/* Icon & number counter-rotate to stay upright */

.dc-inner>* {

  transform: rotate(-45deg)

}



.dc-inner {

  flex-direction: column;

  gap: 6px

}



.dc-num {

  font-family: "Outfit", sans-serif;

  font-size: .6rem;

  font-weight: 900;

  letter-spacing: .8px;

  position: absolute;

  top: 14px;

  right: 14px;

  opacity: .35;

}



/* ── Individual diamond colors matching reference ── */

.dc-d1 .dc-inner {

  border-color: #00B4B4;

  color: #00B4B4

}



.dc-d1 .dc-inner:hover {

  background: #E6F9F9

}



.dc-d2 .dc-inner {

  border-color: #FF6B35;

  color: #FF6B35

}



.dc-d2 .dc-inner:hover {

  background: #FFF3EE

}



.dc-d3 .dc-inner {

  border-color: #E53E3E;

  color: #E53E3E

}



.dc-d3 .dc-inner:hover {

  background: #FFF5F5

}



.dc-d4 .dc-inner {

  border-color: #F6AD55;

  color: #D97706

}



.dc-d4 .dc-inner:hover {

  background: #FFFBEB

}



.dc-d5 .dc-inner {

  border-color: #38A169;

  color: #38A169

}



.dc-d5 .dc-inner:hover {

  background: #F0FFF4

}



/* Time badge */

.dc-time {

  font-size: .68rem;

  font-weight: 700;

  color: var(--text-light);

  background: var(--gray-100);

  padding: 4px 12px;

  border-radius: 20px;

  margin-top: 25px;

}



.dc-time-live {

  background: #DCFCE7;

  color: #16A34A

}



/* ── CONNECTOR LINES ── */

.dc-connectors {

  position: absolute;

  top: 0;

  left: 0;

  right: 0;

  bottom: 0;

  pointer-events: none;

  z-index: 1;

}



/* We draw 4 diagonal connectors via SVG overlay */

.dc-connectors svg {

  position: absolute;

  top: 0;

  left: 0;

  width: 100%;

  height: 100%;

  overflow: visible;

}



/* ── Responsive ── */

@media(max-width:900px) {

  .diamond-chain {

    max-width: 100%

  }



  .dc-row-top {

    grid-template-columns: 1fr;

    gap: 30px

  }



  .dc-row-bot {

    grid-template-columns: 1fr;

    margin: 20px 0;

    gap: 30px

  }



  .dc-bot {

    flex-direction: column

  }



  .dc-label-below {

    padding: 8px 0 0

  }

}



/* ════ PLATFORM FEATURES — TAB SHOWCASE ════ */

.feats-sec {

  padding: 80px 0; 

  background: var(--off-white)

}



.pf-showcase {

  display: grid;

  grid-template-columns: 300px 1fr;

  /* gap: 28px; */

  max-height: 560px;

  align-items: start;

  background: #fff;

  border-radius: 24px;

  border: 1.5px solid var(--gray-200);

  overflow: hidden;

  box-shadow: 0 8px 40px rgba(0, 0, 0, .06);

}



/* LEFT TABS */

.pf-tabs {

  display: flex;

  flex-direction: column;

  background: var(--off-white);

  border-right: 1.5px solid var(--gray-200);

  padding: 21px 0;

  min-height: 580px;

  justify-content: space-evenly;

}



.pf-tab {

  display: flex;

  align-items: center;

  gap: 12px;

  padding: 13px 18px;

  cursor: pointer;

  border-left: 3px solid transparent;

  transition: all .2s;

  position: relative;

}



.pf-tab:hover {

  background: #fff;

  border-left-color: var(--teal-pale2)

}



.pf-tab.pf-active {

  background: #fff;

  border-left-color: var(--teal);

  box-shadow: inset -4px 0 0 0 transparent;

}



.pf-tab-icon {

  width: 36px;

  height: 36px;

  border-radius: 10px;

  display: grid;

  place-items: center;

  font-size: 20px;

  flex-shrink: 0;

  transition: transform .2s;

}



.pf-tab:hover .pf-tab-icon, .pf-tab.pf-active .pf-tab-icon {

  transform: scale(1.1)

}



.pf-tab-text {

  flex: 1;

  min-width: 0

}



.pf-tab-title {

  font-size: 1.02rem;

  font-weight: 500;

  color: var(--navy);

  white-space: nowrap;

  overflow: hidden;

  text-overflow: ellipsis; 

}



.pf-tab.pf-active .pf-tab-title {

  color: var(--teal-dark)

}



.pf-tab-sub {

  font-size: .68rem;

  color: var(--text-light);

  font-weight: 500;

  margin-top: 1px

}



.pf-tab-arrow {

  font-size: .9rem;

  color: var(--text-light);

  opacity: 0;

  transition: opacity .2s

}



.pf-tab:hover .pf-tab-arrow, .pf-tab.pf-active .pf-tab-arrow {

  opacity: 1;

  color: var(--teal)

}



/* RIGHT PANEL */

.pf-panel-wrap {

  /* padding: 25px; */

  /* min-height: 580px; */

  position: relative

}



.pf-panel {

  display: none;

  animation: pfFadeIn .3s ease

}



.pf-panel.pf-panel-on {

  display: flex;

  flex-direction: column;

  gap: 24px

}



@keyframes pfFadeIn {

  from {

    opacity: 0;

    transform: translateX(10px)

  }



  to {

    opacity: 1;

    transform: translateX(0)

  }

}



.pf-panel-badge {

  display: inline-block;

  font-size: .65rem;

  font-weight: 800;

  padding: 4px 13px;

  border-radius: 20px;

  margin-bottom: 12px;

  width: fit-content;

}



.pf-panel-title {

  font-family: "Outfit", sans-serif;

  font-size: 1.7rem;

  font-weight: 700;

  color: var(--navy);

  line-height: 1.2;

  margin-bottom: 12px;

  letter-spacing: -.5px;

}



.pf-panel-desc {

  font-size: 1.03rem;

  color: var(--text-mid);

  line-height: 1.75;

  font-weight: 400;

  margin-bottom: 16px;

  max-width: 904px;

}



.pf-panel-points {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 8px;

}



.pf-point {

  display: flex;

  align-items: center;

  gap: 7px;

  font-size: 0.92rem;

  font-weight: 600;

  color: var(--navy);

}



.pf-check {

  width: 20px;

  height: 20px;

  border-radius: 50%;

  background: var(--teal-pale);

  color: var(--teal-dark);

  display: grid;

  place-items: center;

  font-size: .68rem;

  font-weight: 800;

  flex-shrink: 0;

}



/* MOCKUP BOX */

.pf-panel-mockup {

  background: var(--off-white);

  border: 1.5px solid var(--gray-200);

  border-radius: 16px;

  overflow: hidden;

  flex-shrink: 0;

}



.pfm-bar {

  background: var(--gray-100);

  border-bottom: 1.5px solid var(--gray-200);

  padding: 10px 14px;

  display: flex;

  align-items: center;

  gap: 6px;

  font-size: .72rem;

  font-weight: 700;

  color: var(--text-mid);

}



.pfm-dot {

  width: 9px;

  height: 9px;

  border-radius: 50%;

  background: var(--gray-300)

}



.pfm-dot:nth-child(1) {

  background: #FF6B6B

}



.pfm-dot:nth-child(2) {

  background: #FFD93D

}



.pfm-dot:nth-child(3) {

  background: #6BCB77

}



.pfm-bar span {

  margin-left: 6px;

  flex: 1

}



.pfm-live {

  font-size: .62rem;

  font-weight: 800;

  padding: 3px 10px;

  border-radius: 20px;

  background: var(--teal-pale);

  color: var(--teal-dark)

}



.pfm-body {

  padding: 16px;

  display: flex;

  flex-direction: column;

  gap: 12px

}



/* AI listening animation */

.pfm-listening {

  display: flex;

  align-items: center;

  gap: 12px;

  background: var(--teal-pale);

  border: 1.5px solid var(--teal-pale2);

  border-radius: 10px;

  padding: 10px 14px;

}



.pfm-wave {

  display: flex;

  align-items: center;

  gap: 3px;

  height: 20px

}



.pfm-wave span {

  display: block;

  width: 3px;

  background: var(--teal);

  border-radius: 2px;

  animation: waveBars .8s ease-in-out infinite;

}



.pfm-wave span:nth-child(1) {

  animation-delay: 0s;

  height: 6px

}



.pfm-wave span:nth-child(2) {

  animation-delay: .1s;

  height: 14px

}



.pfm-wave span:nth-child(3) {

  animation-delay: .2s;

  height: 18px

}



.pfm-wave span:nth-child(4) {

  animation-delay: .3s;

  height: 12px

}



.pfm-wave span:nth-child(5) {

  animation-delay: .4s;

  height: 8px

}



@keyframes waveBars {

  0%, 100% {

    transform: scaleY(1)

  }



  50% {

    transform: scaleY(1.6)

  }

}



.pfm-suggestion {

  background: #fff;

  border: 1.5px solid var(--teal-pale2);

  border-radius: 10px;

  padding: 13px;

}



.pfm-s-label {

  font-size: .62rem;

  font-weight: 800;

  color: var(--teal);

  letter-spacing: .6px;

  margin-bottom: 7px

}



.pfm-s-text {

  font-size: .78rem;

  color: var(--navy);

  line-height: 1.6;

  font-weight: 500;

  margin-bottom: 10px

}



.pfm-s-btns {

  display: flex;

  gap: 8px

}



.pfm-btn-a {

  font-size: .68rem;

  font-weight: 800;

  background: var(--teal);

  color: #fff;

  padding: 6px 14px;

  border-radius: 8px;

  cursor: pointer

}



.pfm-btn-b {

  font-size: .68rem;

  font-weight: 700;

  background: var(--gray-100);

  color: var(--navy);

  padding: 6px 14px;

  border-radius: 8px;

  cursor: pointer;

  border: 1.5px solid var(--gray-200)

}



.pfm-row-notes {

  display: flex;

  gap: 8px;

  flex-wrap: wrap

}



.pfm-note-chip {

  font-size: .65rem;

  font-weight: 700;

  padding: 4px 11px;

  border-radius: 20px;

  background: var(--gray-100);

  color: var(--text-mid)

}



@keyframes spinRingFace {

  from {

    transform: rotate(0deg)

  }



  to {

    transform: rotate(360deg)

  }

}



/* Responsive */

@media(max-width:960px) {

  .pf-showcase {

    grid-template-columns: 1fr

  }



  .pf-tabs {

    flex-direction: row;

    overflow-x: auto;

    border-right: none;

    border-bottom: 1.5px solid var(--gray-200);

    min-height: auto;

    padding: 8px

  }



  .pf-tab {

    flex-direction: column;

    text-align: center;

    padding: 10px 12px;

    min-width: 100px;

    border-left: none;

    border-bottom: 3px solid transparent

  }



  .pf-tab.pf-active {

    border-bottom-color: var(--teal);

    border-left-color: transparent

  }



  .pf-tab-sub, .pf-tab-arrow {

    display: none

  }



  .pf-panel-points {

    grid-template-columns: 1fr

  }

}



@media(max-width:640px) {

  .pf-panel-wrap {

    padding: 20px

  }



  .pf-panel-title {

    font-size: 1.3rem

  }

}



/* ════ CSS BLOCK 2 ════ */

/* ── CHATBOT TRIGGER ── */

.cb-trigger {

  position: fixed;

  bottom: 28px;

  right: 28px;

  z-index: 999;

  display: flex;

  align-items: center;

  gap: 10px;

  cursor: pointer;

}



.cb-trigger-ico {

  width: 58px;

  height: 58px;

  border-radius: 50%;

  background: linear-gradient(135deg, #00B4B4, #00D4D4);

  display: grid;

  place-items: center;

  box-shadow: 0 8px 28px rgba(0, 180, 180, .5);

  transition: transform .25s, box-shadow .25s;

  position: relative;

  z-index: 2;

}



.cb-trigger:hover .cb-trigger-ico {

  transform: scale(1.08);

  box-shadow: 0 12px 36px rgba(0, 180, 180, .6);

}



.cb-pulse {

  position: absolute;

  right: 28px;

  bottom: 28px;

  width: 58px;

  height: 58px;

  border-radius: 50%;

  background: rgba(0, 180, 180, .35);

  animation: cbPulse 2.5s ease-out infinite;

  z-index: 1;

}



@keyframes cbPulse {

  0% {

    transform: scale(1);

    opacity: 1

  }



  100% {

    transform: scale(1.8);

    opacity: 0

  }

}



.cb-label {

  background: #fff;

  color: #1A2B4A;

  font-size: .78rem;

  font-weight: 800;

  padding: 7px 14px;

  border-radius: 100px;

  box-shadow: 0 4px 16px rgba(0, 0, 0, .1);

  white-space: nowrap;

  font-family: "Outfit", sans-serif;

  transition: all .25s;

}



.cb-trigger:hover .cb-label {

  background: #00B4B4;

  color: #fff

}



/* ── CHAT WINDOW ── */

.cb-window {

  position: fixed;

  bottom: 100px;

  right: 28px;

  z-index: 1000;

  width: 360px;

  max-height: 560px;

  background: #fff;

  border-radius: 22px;

  box-shadow: 0 24px 80px rgba(0, 0, 0, .18), 0 4px 20px rgba(0, 180, 180, .12);

  display: flex;

  flex-direction: column;

  overflow: hidden;

  border: 1.5px solid #C0EFEF;

  transform: scale(.88) translateY(20px);

  opacity: 0;

  pointer-events: none;

  transition: all .3s cubic-bezier(.34, 1.56, .64, 1);

  transform-origin: bottom right;

}



.cb-window.cb-open {

  transform: scale(1) translateY(0);

  opacity: 1;

  pointer-events: all;

}



/* Header */

.cb-header {

  background: linear-gradient(135deg, #00B4B4, #009090);

  padding: 16px 18px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  flex-shrink: 0;

}



.cb-header-left {

  display: flex;

  align-items: center;

  gap: 12px

}



.cb-avatar {

  width: 40px;

  height: 40px;

  border-radius: 12px;

  background: rgba(255, 255, 255, .2);

  border: 2px solid rgba(255, 255, 255, .3);

  display: grid;

  place-items: center;

  flex-shrink: 0;

}



.cb-header-name {

  font-size: .9rem;

  font-weight: 500;

  color: #fff;

  font-family: 'Nunito', sans-serif

}



.cb-header-status {

  display: flex;

  align-items: center;

  gap: 5px;

  font-size: .68rem;

  color: rgba(255, 255, 255, .8);

  font-weight: 600;

  margin-top: 2px;

}



.cb-online-dot {

  width: 7px;

  height: 7px;

  border-radius: 50%;

  background: #22C55E;

  flex-shrink: 0;

  animation: cbBlink 2s infinite;

}



@keyframes cbBlink {

  0%, 100% {

    opacity: 1

  }



  50% {

    opacity: .5

  }

}



.cb-btn-icon {

  background: rgba(255, 255, 255, .15);

  border: none;

  border-radius: 8px;

  width: 32px;

  height: 32px;

  display: grid;

  place-items: center;

  cursor: pointer;

  color: #fff;

  transition: background .2s;

}



.cb-btn-icon:hover {

  background: rgba(255, 255, 255, .3)

}



/* Messages */

.cb-messages {

  flex: 1;

  overflow-y: auto;

  padding: 16px;

  display: flex;

  flex-direction: column;

  gap: 12px;

  scroll-behavior: smooth;

}



.cb-messages::-webkit-scrollbar {

  width: 4px

}



.cb-messages::-webkit-scrollbar-thumb {

  background: #C0EFEF;

  border-radius: 2px

}



.cb-msg {

  display: flex;

  align-items: flex-end;

  gap: 8px

}



.cb-msg-bot {

  flex-direction: row

}



.cb-msg-user {

  flex-direction: row-reverse

}



.cb-msg-av {

  width: 28px;

  height: 28px;

  border-radius: 50%;

  background: linear-gradient(135deg, #00B4B4, #00D4D4);

  color: #fff;

  font-size: .65rem;

  font-weight: 800;

  display: grid;

  place-items: center;

  flex-shrink: 0;

  font-family: "Outfit", sans-serif;

}



.cb-msg-bubble {

  max-width: 78%;

  font-size: .82rem;

  line-height: 1.65;

  font-weight: 500;

  padding: 10px 14px;

  border-radius: 16px;

  font-family: "Outfit", sans-serif;

}



.cb-msg-bot .cb-msg-bubble {

  background: #F4FAFA;

  border: 1.5px solid #E0F4F4;

  color: #1A2B4A;

  border-bottom-left-radius: 4px;

}



.cb-msg-user .cb-msg-bubble {

  background: linear-gradient(135deg, #00B4B4, #009090);

  color: #fff;

  border-bottom-right-radius: 4px;

}



/* Quick replies */

.cb-quick-replies {

  display: flex;

  flex-wrap: wrap;

  gap: 7px;

  padding-left: 36px;

}



.cb-qr {

  font-size: .72rem;

  font-weight: 700;

  padding: 6px 13px;

  border-radius: 100px;

  border: 1.5px solid #C0EFEF;

  background: #F4FAFA;

  color: #007A7A;

  cursor: pointer;

  transition: all .2s;

  font-family: "Outfit", sans-serif;

}



.cb-qr:hover {

  background: #00B4B4;

  color: #fff;

  border-color: #00B4B4;

  transform: translateY(-1px)

}



/* Typing indicator */

.cb-typing {

  display: flex;

  align-items: center;

  gap: 8px;

  padding: 8px 16px;

  flex-shrink: 0;

}



.cb-typing-av {

  width: 28px;

  height: 28px;

  border-radius: 50%;

  background: linear-gradient(135deg, #00B4B4, #00D4D4);

  color: #fff;

  font-size: .65rem;

  font-weight: 800;

  display: grid;

  place-items: center;

  flex-shrink: 0;

  font-family: "Outfit", sans-serif;

}



.cb-typing-dots {

  background: #F4FAFA;

  border: 1.5px solid #E0F4F4;

  border-radius: 16px;

  border-bottom-left-radius: 4px;

  padding: 9px 14px;

  display: flex;

  gap: 4px;

  align-items: center;

}



.cb-typing-dots span {

  width: 7px;

  height: 7px;

  border-radius: 50%;

  background: #00B4B4;

  animation: cbDot .9s ease-in-out infinite;

}



.cb-typing-dots span:nth-child(2) {

  animation-delay: .18s

}



.cb-typing-dots span:nth-child(3) {

  animation-delay: .36s

}



@keyframes cbDot {

  0%, 80%, 100% {

    transform: scale(0.6);

    opacity: .4

  }



  40% {

    transform: scale(1);

    opacity: 1

  }

}



/* Input area */

.cb-input-area {

  display: flex;

  align-items: center;

  gap: 10px;

  padding: 12px 14px;

  border-top: 1.5px solid #E0F4F4;

  flex-shrink: 0;

}



.cb-input {

  flex: 1;

  border: 1.5px solid #E0F4F4;

  border-radius: 100px;

  padding: 9px 16px;

  font-size: .82rem;

  font-weight: 500;

  font-family: "Outfit", sans-serif;

  color: #1A2B4A;

  background: #F4FAFA;

  outline: none;

  transition: border .2s;

}



.cb-input:focus {

  border-color: #00B4B4;

  background: #fff

}



.cb-send {

  width: 38px;

  height: 38px;

  border-radius: 50%;

  background: linear-gradient(135deg, #00B4B4, #009090);

  border: none;

  cursor: pointer;

  display: grid;

  place-items: center;

  box-shadow: 0 4px 12px rgba(0, 180, 180, .4);

  transition: all .2s;

  flex-shrink: 0;

}



.cb-send:hover {

  transform: scale(1.1);

  box-shadow: 0 6px 18px rgba(0, 180, 180, .5)

}



/* Footer */

.cb-footer {

  text-align: center;

  font-size: .65rem;

  color: #9ABABA;

  padding: 7px 0 10px;

  font-family: "Outfit", sans-serif;

}



/* Mobile */

@media(max-width:480px) {

  .cb-window {

    width: calc(100vw - 24px);

    right: 12px;

    bottom: 90px

  }



  .cb-trigger {

    right: 16px;

    bottom: 20px

  }



  .cb-label {

    display: none

  }

}



/* ════ TESTIMONIALS — MARQUEE CAROUSEL ════ */

.testis-sec {

  padding: 96px 0 80px;

  background: var(--navy);

  overflow: hidden;

  position: relative;

}



.testis-sec::before {

  content: '';

  position: absolute;

  top: -200px;

  left: -200px;

  width: 600px;

  height: 600px;

  border-radius: 50%;

  background: radial-gradient(circle, rgba(0, 180, 180, .07), transparent 65%);

  pointer-events: none;

}



/* Header */

/* .ts-header {

  text-align: center;

  padding: 0 5% 52px;

  position: relative;

  z-index: 1;

}



.ts-header .s-tag {

  background: rgba(0, 180, 180, .15);

  border-color: rgba(0, 180, 180, .3);

  color: var(--teal-light);

}



.ts-header .s-title {

  color: #fff

}



.ts-header .s-sub {

  color: rgba(255, 255, 255, .55)

} */



/* Rating row */

.ts-rating-row {

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 0;

  margin-top: 36px;

  background: rgba(255, 255, 255, .05);

  border: 1.5px solid rgba(255, 255, 255, .1);

  border-radius: 20px;

  padding: 28px 40px;

  width: fit-content;

  margin-left: auto;

  margin-right: auto;

}

.ts-rating-block {

  text-align: center;

  padding: 0 32px

}

.ts-big-num {

  font-family: "Outfit", sans-serif;

  font-size: 2.6rem;

  font-weight: 900;

  color: #fff;

  line-height: 1;

}

.ts-stars-lg {

  color: #FDE68A;

  font-size: 1.1rem;

  margin-top: 6px;

  letter-spacing: 2px

}

.ts-rating-lbl {

  font-size: .72rem;

  color: rgba(255, 255, 255, .5);

  font-weight: 600;

  margin-top: 5px;

  text-transform: uppercase;

  letter-spacing: .8px

}

.ts-divider {

  width: 1px;

  height: 60px;

  background: rgba(255, 255, 255, .1)

}



/* ── MARQUEE ── */

.ts-marquee-wrap {

  overflow: hidden;

  position: relative;

  margin-bottom: 20px;

  /* fade edges */

  -webkit-mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);

  mask-image: linear-gradient(to right, transparent 0%, black 8%, black 92%, transparent 100%);

}



.ts-marquee {

  display: flex;

  gap: 20px;

  width: max-content;

  padding: 8px 0;

}



.ts-left {

  animation: marqueeLeft 35s linear infinite

}



.ts-right {

  animation: marqueeRight 40s linear infinite

}



@keyframes marqueeLeft {

  from {

    transform: translateX(0)

  }



  to {

    transform: translateX(-50%)

  }

}



@keyframes marqueeRight {

  from {

    transform: translateX(-50%)

  }



  to {

    transform: translateX(0)

  }

}



/* Pause on hover */

.ts-marquee-wrap:hover .ts-marquee {

  animation-play-state: paused

}



/* ── CARD ── */

.ts-card {

  flex-shrink: 0;

  width: 320px;

  background: #fff;

  border-radius: 20px;

  padding: 24px;

  border: 1.5px solid rgba(255, 255, 255, .08);

  transition: transform .3s, box-shadow .3s;

  cursor: default;

}



.ts-card:hover {

  transform: translateY(-6px);

  box-shadow: 0 20px 60px rgba(0, 0, 0, .25);

}



.ts-card-dark {

  background: linear-gradient(145deg, #1A2B4A, #0D1F3C);

  border-color: rgba(0, 180, 180, .2);

}



.ts-card-top {

  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-bottom: 14px;

}



.ts-stars {

  color: #F59E0B;

  font-size: .85rem;

  letter-spacing: 2px

}



.ts-sp-chip {

  font-size: .63rem;

  font-weight: 800;

  padding: 3px 10px;

  border-radius: 100px;

  white-space: nowrap;

}



.ts-quote {

  font-size: .855rem;

  line-height: 1.72;

  color: var(--text-mid);

  font-style: italic;

  margin-bottom: 18px;

  font-weight: 500;

  display: -webkit-box;

  -webkit-line-clamp: 4;

  -webkit-box-orient: vertical;

  overflow: hidden;

}



.ts-card-dark .ts-quote {

  color: rgba(255, 255, 255, .6)

}



.ts-author {

  display: flex;

  align-items: center;

  gap: 11px

}



.ts-av {

  width: 40px;

  height: 40px;

  border-radius: 50%;

  display: grid;

  place-items: center;

  font-size: .75rem;

  font-weight: 800;

  color: #fff;

  flex-shrink: 0;

  font-family: "Outfit", sans-serif;

}



.ts-name {

  font-size: .82rem;

  font-weight: 800;

  color: var(--navy)

}



.ts-role {

  font-size: .7rem;

  color: var(--text-light);

  font-weight: 500;

  margin-top: 2px

}



.ts-card-dark .ts-name {

  color: #fff

}



/* ── PLATFORMS ── */

.ts-platforms {

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 0;

  margin-top: 52px;

  padding: 0 5%;

  flex-wrap: wrap;

}



.ts-plat {

  display: flex;

  align-items: center;

  gap: 12px;

  padding: 0 32px;

}



.ts-plat-stars {

  color: #F59E0B;

  font-size: .8rem;

  letter-spacing: 1px;

  margin-bottom: 3px

}



.ts-plat-name {

  font-size: .78rem;

  font-weight: 800;

  color: rgba(255, 255, 255, .8)

}



.ts-plat-count {

  font-size: .65rem;

  color: rgba(255, 255, 255, .4);

  font-weight: 600;

  margin-top: 2px

}



.ts-plat-div {

  width: 1px;

  height: 44px;

  background: rgba(255, 255, 255, .1)

}



/* Responsive */

@media(max-width:768px) {

  .ts-rating-row {

    gap: 0;

    padding: 20px;

    flex-wrap: wrap;

    justify-content: center

  }



  .ts-rating-block {

    padding: 12px 16px

  }



  .ts-divider {

    display: none

  }



  .ts-plat {

    padding: 12px 16px

  }



  .ts-plat-div {

    display: none

  }



  .ts-card {

    width: 280px

  }

}



/* ════ TESTIMONIALS — SPLIT LAYOUT ════ */

.testis-sec {

  padding: 80px 0; 

  background: #F0F2F5;

}



.ts-hd {

  text-align: center;

  margin-bottom: 52px

}



/* .ts-hd-title {

  font-family: "Outfit", sans-serif;

  font-size: clamp(1.9rem, 3vw, 2.6rem);

  font-weight: 800;

  color: var(--navy);

  letter-spacing: -.6px;

  margin-bottom: 10px;

} */

.ts-hd-sub {

  font-size: 1rem;

  color: var(--text-mid);

  font-weight: 500

}



/* Main layout */

.ts-layout {

  display: grid;

  grid-template-columns: 1fr 1.35fr;

  gap: 28px;

  align-items: stretch;

}



/* LEFT VIDEO PANEL */

.ts-left-panel {

  border-radius: 22px;

  overflow: hidden;

  box-shadow: 0 12px 48px rgba(0, 0, 0, .15);

  height: 653px;

}



.ts-video-wrap {

  width: 100%;

  height: 100%;

  min-height: 520px;

  position: relative;

  border-radius: 22px;

  overflow: hidden;

  background: #D4C8B8;

}



.ts-play-btn {

  position: absolute;

  top: 50%;

  left: 50%;

  transform: translate(-50%, -50%);

  width: 72px;

  height: 72px;

  border-radius: 50%;

  background: rgba(255, 255, 255, .92);

  display: flex;

  align-items: center;

  justify-content: center;

  box-shadow: 0 8px 32px rgba(0, 0, 0, .25);

  cursor: pointer;

  transition: all .25s;

  z-index: 3;

  padding-left: 4px;

}



.ts-play-btn:hover {

  transform: translate(-50%, -50%) scale(1.1);

  box-shadow: 0 12px 40px rgba(0, 0, 0, .3);

}



.ts-video-grad {

  position: absolute;

  bottom: 0;

  left: 0;

  right: 0;

  height: 120px;

  background: linear-gradient(to top, rgba(0, 0, 0, .3), transparent);

  z-index: 2;

  border-radius: 0 0 22px 22px;

}



/* RIGHT 2x2 GRID */

.ts-reviews-grid {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 18px;

}



/* REVIEW CARD */

.ts-rc {

  background: #fff;

  border-radius: 9px;

  padding: 24px;

  display: flex;

  flex-direction: column;

  gap: 14px;

  box-shadow: 0 2px 16px rgba(0, 0, 0, .06);

  border: 1.5px solid rgba(0, 0, 0, .06);

  transition: all .3s;

}



.ts-rc:hover {

  transform: translateY(-4px);

  box-shadow: 0 12px 40px rgba(0, 180, 180, .12);

  border-color: var(--teal-pale2);

}



.ts-rc-header {

  display: flex;

  align-items: center;

  gap: 12px;

}



.ts-rc-av {

  width: 46px;

  height: 46px;

  border-radius: 50%;

  display: grid;

  place-items: center;

  font-size: .78rem;

  font-weight: 800;

  color: #fff;

  flex-shrink: 0;

  font-family: "Outfit", sans-serif;

  box-shadow: 0 4px 12px rgba(0, 0, 0, .15);

}



.ts-rc-info {

  flex: 1

}



.ts-rc-name {

  font-size: .88rem;

  font-weight: 500;

  color: var(--navy);

  line-height: 1.2;

}



.ts-rc-spec {

  font-size: .7rem;

  color: var(--text-light);

  font-weight: 500;

  margin-top: 2px;

}



.ts-rc-qq {

  font-size: 2rem;

  line-height: 1;

  color: var(--teal-pale2);

  font-family: 'Georgia', serif;

  flex-shrink: 0;

  align-self: flex-start;

  margin-top: -4px;

}



.ts-rc-text {

  font-size: .82rem;

  color: var(--text-mid);

  line-height: 1.72;

  font-weight: 500;

  flex: 1;

  display: -webkit-box;

  -webkit-line-clamp: 5;

  -webkit-box-orient: vertical;

  overflow: hidden;

}



.ts-rc-footer {

  display: flex;

  align-items: center;

  justify-content: space-between;

  padding-top: 12px;

  border-top: 1.5px solid var(--gray-100);

  gap: 10px;

}



.ts-rc-date {

  font-size: .7rem;

  color: var(--text-light);

  font-weight: 600;

  white-space: nowrap;

}



.ts-rc-rating {

  display: flex;

  align-items: center;

  gap: 8px;

}



.ts-rc-g-logo {

  width: 32px;

  height: 32px;

  border-radius: 50%;

  background: #fff;

  border: 1.5px solid #E8E8E8;

  display: grid;

  place-items: center;

  flex-shrink: 0;

  box-shadow: 0 2px 8px rgba(0, 0, 0, .1);

}



.ts-rc-stars {

  font-size: .72rem;

  color: #F59E0B;

  line-height: 1;

}



.ts-rc-count {

  font-size: .62rem;

  color: var(--text-light);

  font-weight: 600;

  margin-top: 2px;

  white-space: nowrap;

}



.ts-rc-score {

  font-size: .8rem;

  font-weight: 800;

  color: var(--navy);

  white-space: nowrap;

}



/* Responsive */

@media(max-width:1024px) {

  .ts-layout {

    grid-template-columns: 1fr

  }



  .ts-left-panel {

    min-height: 320px;

    max-height: 400px

  }



  .ts-video-wrap {

    min-height: 320px

  }

}



@media(max-width:600px) {

  .ts-reviews-grid {

    grid-template-columns: 1fr

  }

}



/* ════ SECURITY REDESIGN ════ */

.sec-sec {

  padding: 80px 0 80px;

  background: linear-gradient(170deg, #081828 0%, #0D2035 50%, #081828 100%);

  position: relative;

  overflow: hidden;

}



/* Mesh background dots */

.sec-bg-mesh {

  position: absolute;

  inset: 0;

  background-image: radial-gradient(circle, rgba(0, 180, 180, .08) 1px, transparent 1px);

  background-size: 32px 32px;

  pointer-events: none;

}



/* Glowing blob top right */

.sec-sec::before {

  content: '';

  position: absolute;

  top: -200px;

  right: -200px;

  width: 600px;

  height: 600px;

  border-radius: 50%;

  background: radial-gradient(circle, rgba(0, 180, 180, .1), transparent 65%);

  pointer-events: none;

}



/* Glowing blob bottom left */

.sec-sec::after {

  content: '';

  position: absolute;

  bottom: -160px;

  left: -160px;

  width: 480px;

  height: 480px;

  border-radius: 50%;

  background: radial-gradient(circle, rgba(0, 150, 150, .07), transparent 65%);

  pointer-events: none;

}



/* Header */

.sec-hd {

  text-align: center;

  margin-bottom: 64px;

  position: relative;

  z-index: 1

}



.sec-eyebrow {

  display: inline-flex;

  align-items: center;

  gap: 8px;

  font-size: .72rem;

  font-weight: 600;

  letter-spacing: 1.5px;

  text-transform: uppercase;

  color: var(--teal-light);

  background: rgba(0, 180, 180, .12);

  border: 1.5px solid rgba(0, 180, 180, .25);

  padding: 6px 18px;

  border-radius: 100px;

  margin-bottom: 20px;

}



.sec-title {

  font-family: "Outfit", sans-serif;

  font-size: clamp(2rem, 3.5vw, 3rem);

  font-weight: 800;

  color: #fff;

  line-height: 1.2;

  letter-spacing: -.8px;

  margin-bottom: 16px;

}



.sec-title span {

  background: linear-gradient(90deg, var(--teal), #00E8C8);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

  background-clip: text;

}



.sec-sub {

  font-size: 1rem;

  color: rgba(255, 255, 255, .5);

  line-height: 1.75;

  max-width: 580px;

  margin: 0 auto;

  font-weight: 500;

}



/* 2x2 Pillar Grid */

.sec-grid {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 20px;

  margin-bottom: 24px;

  position: relative;

  z-index: 1;

}



.sec-pillar {

  background: rgba(255, 255, 255, .04);

  border: 1.5px solid rgba(255, 255, 255, .08);

  border-radius: 22px;

  padding: 36px;

  position: relative;

  overflow: hidden;

  transition: all .3s;

  display: flex;

  flex-direction: column;

  gap: 16px;

}



.sec-pillar:hover {

  background: rgba(0, 180, 180, .07);

  border-color: rgba(0, 180, 180, .25);

  transform: translateY(-5px);

  box-shadow: 0 20px 60px rgba(0, 0, 0, .3);

}



/* Glow per pillar */

.sec-pillar-glow {

  position: absolute;

  width: 220px;

  height: 220px;

  border-radius: 50%;

  pointer-events: none;

  opacity: 0;

  transition: opacity .3s;

  top: -60px;

  right: -60px;

}



.sec-pillar:hover .sec-pillar-glow {

  opacity: 1

}



.sec-glow-1 {

  background: radial-gradient(circle, rgba(255, 153, 51, .08), transparent 65%)

}



.sec-glow-2 {

  background: radial-gradient(circle, rgba(0, 180, 180, .1), transparent 65%)

}



.sec-glow-3 {

  background: radial-gradient(circle, rgba(124, 77, 255, .1), transparent 65%)

}



.sec-glow-4 {

  background: radial-gradient(circle, rgba(34, 197, 94, .08), transparent 65%)

}



/* Icon wrapper */

.sec-pillar-icon-wrap {

  width: 60px;

  height: 60px;

  border-radius: 16px;

  display: grid;

  place-items: center;

  flex-shrink: 0;

}



.sp-aws {

  background: rgba(255, 153, 51, .15);

  color: #FF9933;

  border: 1.5px solid rgba(255, 153, 51, .25)

}



.sp-backup {

  background: rgba(0, 180, 180, .15);

  color: var(--teal-light);

  border: 1.5px solid rgba(0, 180, 180, .25)

}



.sp-2fa {

  background: rgba(124, 77, 255, .15);

  color: #B4A0FF;

  border: 1.5px solid rgba(124, 77, 255, .25)

}



.sp-ip {

  background: rgba(34, 197, 94, .12);

  color: #4ADE80;

  border: 1.5px solid rgba(34, 197, 94, .2)

}



.sec-pillar-content h3 {

  font-family: "Outfit", sans-serif;

  font-size: 1.1rem;

  font-weight: 800;

  color: #fff;

  margin-bottom: 10px;

}



.sec-pillar-content p {

  font-size: .875rem;

  color: rgba(255, 255, 255, .5);

  line-height: 1.72;

  font-weight: 500;

}



/* Stat chip at bottom */

.sec-pillar-stat {

  display: flex;

  align-items: center;

  gap: 8px;

  margin-top: auto;

  padding-top: 16px;

  border-top: 1px solid rgba(255, 255, 255, .07);

}



.sps-dot {

  width: 8px;

  height: 8px;

  border-radius: 50%;

  flex-shrink: 0;

  animation: spsPulse 2s infinite

}



.sps-green {

  background: #22C55E;

  box-shadow: 0 0 8px rgba(34, 197, 94, .6)

}



.sps-teal {

  background: var(--teal);

  box-shadow: 0 0 8px rgba(0, 180, 180, .6)

}



@keyframes spsPulse {

  0%, 100% {

    opacity: 1

  }



  50% {

    opacity: .6

  }

}



.sec-pillar-stat span {

  font-size: .72rem;

  font-weight: 700;

  color: rgba(255, 255, 255, .45)

}



/* Live Status Bar */

.sec-status-bar {

  background: rgba(255, 255, 255, .04);

  border: 1.5px solid rgba(255, 255, 255, .08);

  border-radius: 16px;

  padding: 18px 28px;

  display: flex;

  align-items: center;

  gap: 0;

  margin-bottom: 24px;

  position: relative;

  z-index: 1;

  flex-wrap: wrap;

  gap: 14px;

}



.ssb-label {

  display: flex;

  align-items: center;

  gap: 8px;

  font-size: .72rem;

  font-weight: 800;

  color: rgba(255, 255, 255, .5);

  letter-spacing: 1px;

  text-transform: uppercase;

  margin-right: 8px;

  white-space: nowrap;

}



.ssb-live-dot {

  width: 8px;

  height: 8px;

  border-radius: 50%;

  background: #22C55E;

  animation: spsPulse 2s infinite;

}



.ssb-items {

  display: flex;

  align-items: center;

  gap: 0;

  flex: 1;

  flex-wrap: wrap

}



.ssb-item {

  display: flex;

  align-items: center;

  gap: 7px;

  padding: 0 18px

}



.ssb-dot {

  width: 7px;

  height: 7px;

  border-radius: 50%

}



.ssb-dot.ssb-green {

  background: #22C55E

}



.ssb-name {

  font-size: .72rem;

  color: rgba(255, 255, 255, .45);

  font-weight: 600

}



.ssb-val {

  font-size: .72rem;

  font-weight: 800;

  color: #22C55E

}



.ssb-sep {

  width: 1px;

  height: 20px;

  background: rgba(255, 255, 255, .08)

}



.ssb-enc {

  display: flex;

  align-items: center;

  gap: 6px;

  font-size: .68rem;

  font-weight: 800;

  color: rgba(0, 180, 180, .7);

  background: rgba(0, 180, 180, .08);

  border: 1px solid rgba(0, 180, 180, .2);

  padding: 5px 13px;

  border-radius: 100px;

  white-space: nowrap;

}



/* Compliance badges */

.sec-badges {

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 0;

  position: relative;

  z-index: 1;

  background: rgba(255, 255, 255, .03);

  border: 1.5px solid rgba(255, 255, 255, .07);

  border-radius: 16px;

  padding: 22px 32px;

  flex-wrap: wrap;

  gap: 0;

}



.sec-badge {

  display: flex;

  align-items: center;

  gap: 11px;

  padding: 0 28px;

}



.sb-ico {

  font-size: 1.4rem

}



.sb-title {

  font-size: .85rem;

  font-weight: 800;

  color: rgba(255, 255, 255, .8)

}



.sb-sub {

  font-size: .65rem;

  color: rgba(255, 255, 255, .35);

  font-weight: 600;

  margin-top: 2px

}



.sec-badge-div {

  width: 1px;

  height: 36px;

  background: rgba(255, 255, 255, .08)

}



/* Responsive */

@media(max-width:900px) {

  .sec-grid {

    grid-template-columns: 1fr

  }



  .sec-badges {

    padding: 18px

  }



  .sec-badge {

    padding: 8px 16px

  }



  .sec-badge-div {

    display: none

  }



  .ssb-items {

    justify-content: center

  }



  .sec-status-bar {

    justify-content: center

  }

}



@media(max-width:600px) {

  .sec-status-bar {

    flex-direction: column;

    text-align: center

  }



  .ssb-sep {

    display: none

  }



  .ssb-item {

    padding: 4px 8px

  }

}



/* ── 3-STEP DIAMOND OVERRIDE ── */

.diamond-3 {

  padding: 40px 0 20px

}



.dc-row-3 {

  display: grid;

  grid-template-columns: 1fr 80px 1fr 80px 1fr;

  align-items: center;

  max-width: 860px;

  margin: 0 auto;

}



.dc-conn-h {

  display: flex;

  align-items: center;

  padding: 0 8px;

  /* push connectors to the diamond mid-line (accounting for label heights) */

  margin-top: 0;

}



/* Step 1 & 3: label above, so item is taller on top */

.dc-row-3 .dc-top {

  display: flex;

  flex-direction: column;

  align-items: center;

}



/* Step 2: label below */

.dc-row-3 .dc-bot {

  display: flex;

  flex-direction: column;

  align-items: center;

}



/* Align connectors vertically with the diamonds */

.dc-row-3 .dc-conn-h {

  align-self: center;

  margin-top: 0;

}



@media(max-width:760px) {

  .dc-row-3 {

    grid-template-columns: 1fr;

    gap: 0;

  }



  .dc-conn-h {

    display: none

  }



  .dc-row-3 .dc-top, .dc-row-3 .dc-bot {

    flex-direction: row;

    gap: 20px;

    text-align: left;

    padding: 18px 0;

    border-bottom: 1px solid var(--gray-200);

  }

  .dc-row-3 .dc-bot {

    flex-direction: row-reverse

  }
  .dc-label-above, .dc-label-below {

    padding: 0

  }

}

/* ════ INDEX BLOG SECTION ════ */
.blog-sec{
  padding: 80px 0;
}
.bs-card{
    height: 100%;
    background: #fff;
    border-radius: 2px;
    border: 2px solid var(--gray-200);
    overflow: hidden;
    display: flex;
    flex-direction: column;
    transition: .3s;
    padding: 4px 4px;
}
.bs-card:hover{
    transform:translateY(-6px);
    box-shadow:0 20px 56px rgba(0,180,180,.12);
    border-color:var(--teal-pale2);
}
.bs-img-1,
.bs-img-2,
.bs-img-3{
    position:relative;
    overflow:hidden;
    height:220px;
}
.bs-img-overlay img{
    width:100%;
    height:220px;
    object-fit:cover;
    display:block;
}
.bs-body{
    padding:5px;
    display:flex;
    flex-direction:column;
    flex:1;
}
.bs-meta{
  background: var(--orth-bg);
  border-radius: 2px;
  padding: 2px;
  width: 45%;
  text-align: center;
  margin-bottom: 5px;
}
.bs-title{
    font-size:1.15rem;
    font-weight:600;
    line-height:1.4;
    display:-webkit-box;
    -webkit-line-clamp:2;
    -webkit-box-orient:vertical;
    overflow:hidden;
}
.bs-excerpt{
    margin-top:10px;
    font-size:.85rem;
    line-height:1.7;
    display:-webkit-box;
    -webkit-line-clamp:3;
    -webkit-box-orient:vertical;
    overflow:hidden;
    flex:1;
}
.bs-footer{
    display:flex;
    justify-content:space-between;
    align-items:center;
    margin-top:auto;
    padding-top:15px;
    border-top:1px solid var(--gray-100);
}
.bs-btn{
    font-size:.75rem;
    font-weight:700;
    color: var(--teal-deep);
    padding:8px 15px;
    border-radius:30px;
    background:var(--teal-pale);
    border:1px solid var(--teal-pale2);
    text-decoration:none;
    transition:.3s;
}
.bs-btn:hover{
    background:var(--teal);
    color:#fff;
}
.blog-link{
    text-decoration:none;
    color:inherit;
    display:block;
}
.bs-title a{
    color:var(--navy);
    transition:.3s ease;
}
.bs-title a:hover{
    color:var(--teal-deep);
}
.bs-img-1,
.bs-img-2,
.bs-img-3{
    overflow:hidden;
}
.blog-link:hover .bs-img-overlay::after{
    content:"";
    position:absolute;
    inset:0;
    background:rgba(0,90,90,.35); 
}
@media (max-width:991.98px){

    .blog-sec{
        padding:60px 0;
    }
    .bs-img-1,
    .bs-img-2,
    .bs-img-3{
        height:210px;
    }
    .bs-img-overlay img{
        height:210px;
    }
}
@media (max-width:767.98px){

    .blog-sec{
        padding:50px 0;
    }
    .blog-header{
        text-align:center;
        margin-bottom:30px;
    }
    .bs-img-1,
    .bs-img-2,
    .bs-img-3{
        height:220px;
    }
    .bs-img-overlay img{
        height:220px;
    }
    .bs-body{
        padding:18px;
    }
    .bs-title{
        font-size:1rem;
    }
    .bs-excerpt{
        font-size:.82rem;
    }
    .bs-footer{
        flex-direction:column;
        align-items:flex-start;
        gap:12px;
    }
    .bs-btn{
        width:100%;
        text-align:center;
    }
}

/* ════ ABOUT US ════ */

.about-sec {

  padding: 80px 0; 

  background: #fff

}



/* Main split layout */

.about-main {

  display: grid;

  grid-template-columns: 1fr;

  gap: 28px;

  align-items: start;

  margin-bottom: 72px;

}



.about-right {

  display: none

}



/* LEFT — story */

.about-story {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 28px;

  align-items: start

}



.about-quote {

  grid-column: 1/2

}



.about-paras {

  grid-column: 2/3;

  display: flex;

  flex-direction: column;

  gap: 12px

}



.about-mvv {

  grid-column: 1/-1;

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 14px

}



.about-quote {

  background: var(--navy);

  border-radius: 22px;

  padding: 32px 34px;

  position: relative;

  overflow: hidden;

}



.about-quote::before {

  content: '';

  position: absolute;

  top: -60px;

  right: -60px;

  width: 200px;

  height: 200px;

  border-radius: 50%;

  background: radial-gradient(circle, rgba(0, 180, 180, .12), transparent 65%);

}



.aq-mark {

  font-size: 5rem;

  line-height: .8;

  color: rgba(0, 180, 180, .3);

  font-family: 'Georgia', serif;

  margin-bottom: 10px;

}



.aq-text {

  font-size: 1rem;

  color: rgba(255, 255, 255, .85);

  line-height: 1.75;

  font-style: italic;

  font-weight: 500;

  margin-bottom: 20px;

  position: relative;

  z-index: 1;

}



.aq-author {

  display: flex;

  align-items: center;

  gap: 12px;

  position: relative;

  z-index: 1

}



.aq-av {

  width: 44px;

  height: 44px;

  border-radius: 50%;

  display: grid;

  place-items: center;

  font-size: .78rem;

  font-weight: 800;

  color: #fff;

  flex-shrink: 0;

  font-family: "Outfit", sans-serif;

  border: 2px solid rgba(255, 255, 255, .2);

}



.aq-name {

  font-size: .875rem;

  font-weight: 800;

  color: #fff

}



.aq-role {

  font-size: .72rem;

  color: rgba(255, 255, 255, .55);

  margin-top: 2px

}



.about-paras {

  display: flex;

  flex-direction: column;

  gap: 12px

}



.about-paras p {

  font-size: .92rem;

  color: var(--text-mid);

  line-height: 1.78;

  font-weight: 500

}



.about-paras strong {

  color: var(--navy);

  font-weight: 800

}



/* Mission / Vision cards */

.about-mvv {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 14px

}



.mvv-card {

  background: var(--off-white);

  border: 1.5px solid var(--gray-200);

  border-radius: 16px;

  padding: 20px;

  transition: all .3s;

}



.mvv-card:hover {

  border-color: var(--teal-pale2);

  transform: translateY(-3px);

  box-shadow: 0 10px 32px rgba(0, 180, 180, .08)

}



.mvv-ico {

  font-size: 1.5rem;

  margin-bottom: 10px

}



.mvv-title {

  font-family: "Outfit", sans-serif;

  font-size: .875rem;

  font-weight: 800;

  color: var(--navy);

  margin-bottom: 6px

}



.mvv-text {

  font-size: .78rem;

  color: var(--text-mid);

  line-height: 1.65;

  font-weight: 500

}



/* RIGHT */

.about-right {

  display: flex;

  flex-direction: column;

  gap: 24px

}



/* Stats grid */

.about-stats-grid {

  display: grid;

  grid-template-columns: repeat(2, 1fr);

  gap: 14px;

}



.ast-card {

  background: linear-gradient(135deg, var(--teal-pale) 0%, #fff 100%);

  border: 1.5px solid var(--teal-pale2);

  border-radius: 18px;

  padding: 22px;

  text-align: center;

  transition: all .3s;

}



.ast-card:hover {

  transform: translateY(-4px);

  box-shadow: 0 12px 36px rgba(0, 180, 180, .12)

}



.ast-num {

  font-family: "Outfit", sans-serif;

  font-size: 2.2rem;

  font-weight: 900;

  color: var(--navy);

  line-height: 1;

}



.ast-num span {

  font-size: 1.2rem;

  color: var(--teal)

}



.ast-lbl {

  font-size: .72rem;

  color: var(--text-light);

  font-weight: 600;

  margin-top: 6px;

  text-transform: uppercase;

  letter-spacing: .5px

}



/* Team */

.about-team {

  background: var(--off-white);

  border: 1.5px solid var(--gray-200);

  border-radius: 18px;

  padding: 22px

}



.at-label {

  font-size: .7rem;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: 1.2px;

  color: var(--text-light);

  margin-bottom: 16px

}



.at-grid {

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 10px

}



.at-member {

  text-align: center

}



.at-av {

  width: 48px;

  height: 48px;

  border-radius: 50%;

  display: grid;

  place-items: center;

  font-size: .78rem;

  font-weight: 800;

  color: #fff;

  margin: 0 auto 8px;

  font-family: "Outfit", sans-serif;

  box-shadow: 0 4px 14px rgba(0, 0, 0, .12);

  transition: transform .2s;

}



.at-member:hover .at-av {

  transform: scale(1.1)

}



.at-name {

  font-size: .72rem;

  font-weight: 800;

  color: var(--navy)

}



.at-role {

  font-size: .63rem;

  color: var(--text-light);

  font-weight: 500;

  margin-top: 2px;

  line-height: 1.3

}



/* Awards */

.about-awards {

  background: var(--off-white);

  border: 1.5px solid var(--gray-200);

  border-radius: 18px;

  padding: 22px

}



.aw-label {

  font-size: .7rem;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: 1.2px;

  color: var(--text-light);

  margin-bottom: 16px

}



.aw-grid {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 10px

}



.aw-item {

  background: #fff;

  border: 1.5px solid var(--gray-200);

  border-radius: 12px;

  padding: 14px;

  text-align: center;

  transition: all .25s;

}



.aw-item:hover {

  border-color: var(--teal-pale2);

  transform: translateY(-2px)

}



.aw-ico {

  font-size: 1.4rem;

  margin-bottom: 6px

}



.aw-text {

  font-size: .7rem;

  font-weight: 700;

  color: var(--navy);

  line-height: 1.4

}



.aw-text span {

  font-size: .63rem;

  color: var(--text-light);

  font-weight: 500;

  display: block;

  margin-top: 2px

}



/* TIMELINE */

.about-timeline {

  background: var(--off-white);

  border: 1.5px solid var(--gray-200);

  border-radius: 22px;

  padding: 36px 40px;

}



.atl-label {

  font-size: .7rem;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: 1.2px;

  color: var(--text-light);

  margin-bottom: 28px;

}



.atl-track {

  display: grid;

  grid-template-columns: repeat(5, 1fr);

  position: relative;

}



/* Connecting line */

.atl-track::before {

  content: '';

  position: absolute;

  top: 28px;

  left: 10%;

  right: 10%;

  height: 2px;

  background: linear-gradient(90deg, var(--teal), var(--teal-pale2));

  z-index: 0;

}



.atl-item {

  display: flex;

  flex-direction: column;

  align-items: center;

  text-align: center;

  padding: 0 8px;

  position: relative;

  z-index: 1;

}



.atl-year {

  font-family: "Outfit", sans-serif;

  font-size: .78rem;

  font-weight: 800;

  color: var(--text-light);

  margin-bottom: 8px;

}



.atl-dot {

  width: 18px;

  height: 18px;

  border-radius: 50%;

  background: var(--teal);

  border: 3px solid #fff;

  box-shadow: 0 0 0 3px var(--teal-pale2);

  margin-bottom: 12px;

  flex-shrink: 0;

}



.atl-dot-phys {

  background: var(--phys-c);

  box-shadow: 0 0 0 3px var(--phys-bg)

}



.atl-dot-derm {

  background: var(--derm-c);

  box-shadow: 0 0 0 3px var(--derm-bg)

}



.atl-dot-orth {

  background: var(--orth-c);

  box-shadow: 0 0 0 3px var(--orth-bg)

}



.atl-dot-now {

  background: var(--navy);

  box-shadow: 0 0 0 3px var(--gray-200);

  width: 22px;

  height: 22px;

}



.atl-title {

  font-family: "Outfit", sans-serif;

  font-size: .8rem;

  font-weight: 800;

  color: var(--navy);

  margin-bottom: 5px

}



.atl-desc {

  font-size: .72rem;

  color: var(--text-mid);

  line-height: 1.55;

  font-weight: 500

}



/* Responsive */

@media(max-width:1024px) {

  .about-story {

    grid-template-columns: 1fr

  }



  .about-quote, .about-paras {

    grid-column: auto

  }



  .about-mvv {

    grid-template-columns: 1fr 1fr

  }



  .atl-track {

    grid-template-columns: 1fr;

    gap: 20px

  }



  .atl-track::before {

    display: none

  }



  .atl-item {

    flex-direction: row;

    text-align: left;

    gap: 16px;

    align-items: flex-start

  }



  .atl-dot {

    flex-shrink: 0;

    margin: 3px 0 0

  }

}



@media(max-width:640px) {

  .about-mvv {

    grid-template-columns: 1fr

  }



  .about-stats-grid {

    grid-template-columns: 1fr 1fr

  }



  .aw-grid {

    grid-template-columns: 1fr

  }



  .about-timeline {

    padding: 24px 20px

  }



  .at-grid {

    grid-template-columns: repeat(2, 1fr)

  }

}



.pf-panel-mockup img {

  max-width: 100%;

  height: auto;

}



@media (max-width: 768px) {

  .pf-panel-mockup {

    margin-top: 20px;

  }

}

.position-relative img {

  border-radius: 12px;

}



.position-relative a {

  box-shadow: 0 10px 25px rgba(0,0,0,0.2);

  transition: 0.3s;

}

/* .position-relative a:hover {

  transform: scale(1.1);

} */

.ts-rc-av img {

  width: 50px;

  height: 50px;

  object-fit: contain;

}



.ts-rc-g-logo img {

  width: 20px;

  height: 20px;

}

.ts-divider {

  width: 100%;

  height: 1px;

  background-color: #e5e7eb;

  margin: 2px 0;

}

.ts-rc {

  height: 260px;            

  display: flex;

  flex-direction: column;

}

.ts-rc-text {

  overflow: hidden;

  display: -webkit-box;

  -webkit-line-clamp: 4;      

  -webkit-box-orient: vertical;

}

.card-img-top {

  margin-bottom: 0px;

}

.card-body h5 {

  margin-top: 10px;

  margin-bottom: 20px;

  font-family: "Outfit", sans-serif;

}



.card-body p {

  margin-bottom: 35px;

}

footer a:hover {

  color: #00b4b4 !important;

}



footer h6 {

  letter-spacing: 0.5px;

}



footer p {

  line-height: 1.6;

}



.text-light-color{

  color: #5A7899 !important;

}

a.text-light-color{

  color: #5A7899 !important;

}

a.text-light-color:hover{

  color: #00E8C8 !important;

}



footer .footer-logo{

  width: 180px;

  height: auto;

}



@media (max-width: 768px) {



  .topbar {

    display: none;

  }

  nav {

  top: 0px;

}

    .pf-tab {

      min-width: fit-content !important;

    }

    /* .pf-panel-wrap {

      min-height: 580px;

    } */

     .pf-showcase {

      max-height: fit-content;

     }

     .specs,

     .feats-sec{

      padding: 40px 1rem;

     }

}

.copywrite-section{

  background-color: #00000050 !important;

}

         /* ── RIGHT SIDE — Visual ── */

.right {

  position: relative;

  display: flex;

  align-items: center;

  justify-content: center;

  height: 560px;

  animation: fadeUp .7s .3s ease both;

}



/* Hexagonal honeycomb grid */

.hex-grid {

  position: absolute;

  inset: 0;

  opacity: 0.4;

}



/* Central orb — the main element */

.orb-stage {

  position: relative;

  width: 220px;

  height: 220px;

  display: flex;

  align-items: center;

  justify-content: center;

  z-index: 10;

}



/* Concentric pulsing rings */

.ring {

  position: absolute;

  border-radius: 50%;

  border: 1px solid;

  animation: ringPulse 4s ease-in-out infinite;

}



.ring-a {

  width: 220px; height: 220px;

  border-color: rgba(0,201,167,0.3);

  animation-delay: 0s;

}



.ring-b {

  width: 300px; height: 300px;

  border-color: rgba(0,201,167,0.15);

  animation-delay: .5s;

}



.ring-c {

  width: 390px; height: 390px;

  border-color: rgba(0,201,167,0.08);

  animation-delay: 1s;

}



.ring-d {

  width: 480px; height: 480px;

  border-color: rgba(0,201,167,0.04);

  animation-delay: 1.5s;

}



@keyframes ringPulse {

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

  50% { opacity: 0.5; transform: scale(1.03); }

}



/* Rotating dashed ring with orbiting dot */

.orbit-ring {

  position: absolute;

  border-radius: 50%;

  border: 1px dashed rgba(0,201,167,0.18);

  animation: spin linear infinite;

}



.orbit-ring-1 {

  width: 350px; height: 350px;

  animation-duration: 28s;

}



.orbit-ring-2 {

  width: 440px; height: 440px;

  animation-duration: 40s;

  animation-direction: reverse;

  border-color: rgba(37,99,235,0.12);

}



.orbit-ring-3 {

  width: 260px; height: 260px;

  animation-duration: 18s;

  border-color: rgba(0,201,167,0.1);

}



@keyframes spin {

  from { transform: rotate(0deg); }

  to   { transform: rotate(360deg); }

}



/* Orbiting dot */

.orbit-dot {

  position: absolute;

  top: 0; left: 50%;

  transform: translate(-50%, -50%);

  width: 6px; height: 6px;

  border-radius: 50%;

  background: var(--teal);

  box-shadow: 0 0 10px var(--teal);

}



.orbit-dot-2 {

  background: #60a5fa;

  box-shadow: 0 0 10px #60a5fa;

}



/* Core shield */

.shield-core {

  width: 120px; height: 120px;

  border-radius: 24px;

  background: linear-gradient(145deg, #0d2a28 0%, #0a1f2e 100%);

  border: 1px solid rgba(0,201,167,0.3);

  display: flex;

  align-items: center;

  justify-content: center;

  position: relative;

  box-shadow:

    0 0 0 1px rgba(0,201,167,0.1),

    0 0 40px rgba(0,201,167,0.25),

    0 0 80px rgba(0,201,167,0.1),

    inset 0 1px 0 rgba(255,255,255,0.08),

    inset 0 -1px 0 rgba(0,0,0,0.3);

  animation: coreFloat 5s ease-in-out infinite;

}



@keyframes coreFloat {

  0%, 100% { transform: translateY(0) scale(1); box-shadow: 0 0 0 1px rgba(0,201,167,0.1), 0 0 40px rgba(0,201,167,0.25), 0 0 80px rgba(0,201,167,0.1), inset 0 1px 0 rgba(255,255,255,0.08); }

  50% { transform: translateY(-10px) scale(1.02); box-shadow: 0 20px 60px rgba(0,201,167,0.3), 0 0 80px rgba(0,201,167,0.15), inset 0 1px 0 rgba(255,255,255,0.1); }

}



/* Shield SVG icon */

.shield-svg {

  width: 52px; height: 52px;

}



/* Scan beam */

.scan-beam {

  position: absolute;

  left: 0; right: 0;

  height: 1px;

  background: linear-gradient(90deg, transparent, rgba(0,201,167,0.6), transparent);

  top: 10%;

  border-radius: 1px;

  animation: scanBeam 3.5s ease-in-out infinite;

  pointer-events: none;

}



@keyframes scanBeam {

  0% { top: 5%; opacity: 0; }

  5% { opacity: 1; }

  95% { opacity: 0.7; }

  100% { top: 95%; opacity: 0; }

}



/* Status badges floating around */

.badge-float {

  position: absolute;

  display: flex;

  align-items: center;

  gap: 8px;

  padding: 5px 14px 5px 10px;

  border-radius: 100px;

  border: 1px solid var(--border);

  background: rgba(10,15,26,0.85);

  backdrop-filter: blur(20px);

  font-size: 16px;

  font-weight: 400;

  color: #c4d4e0;

  white-space: nowrap;

  box-shadow: 0 4px 24px rgba(0,0,0,0.4), 0 1px 0 rgba(255,255,255,0.04) inset;

  animation: badgeFloat 5s ease-in-out infinite;

}



.badge-float .b-icon {

    width: 32px;

    height: 32px;

    border-radius: 50%;

    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 16px;

}



/* Badge positions */

.b-encrypted  { top: 44px; left: 28%; transform: translateX(-90%); animation-delay: 0s; }

.b-aws        { top: 44px; right: -83px; animation-delay: .8s; }

.b-hipaa      { bottom: 80px; left: -60px; animation-delay: 1.6s; }

.b-twofa      { bottom: 80px; right: -110px; animation-delay: 2.4s; }



@keyframes badgeFloat {

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

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

}



.b-encrypted  { animation-name: bf1; }

.b-aws        { animation-name: bf2; }

.b-hipaa      { animation-name: bf3; }

.b-twofa      { animation-name: bf4; }



@keyframes bf1 { 0%,100%{top:44px} 50%{top:38px} }

@keyframes bf2 { 0%,100%{top:44px} 50%{top:50px} }

@keyframes bf3 { 0%,100%{bottom:80px} 50%{bottom:86px} }

@keyframes bf4 { 0%,100%{bottom:80px} 50%{bottom:74px} }



/* Particle field */

@keyframes particleDrift {

  0% { opacity: 0; transform: translate(0,0) scale(0); }

  20% { opacity: 1; transform: scale(1); }

  100% { opacity: 0; transform: translate(var(--dx), var(--dy)) scale(0.5); }

}



.particle {

  position: absolute;

  left: 50%; top: 50%;

  width: 3px; height: 3px;

  border-radius: 50%;

  background: var(--teal);

  animation: particleDrift var(--dur, 4s) ease-out infinite;

  animation-delay: var(--delay, 0s);

  opacity: 0;

}



/* Live feed ticker */

.feed {

  position: absolute;

  right: -10px;

  top: 50%;

  transform: translateY(-50%);

  display: flex;

  flex-direction: column;

  gap: 6px;

  z-index: 20;

}



.feed-item {

  display: flex;

  align-items: center;

  gap: 6px;

  font-family: "Outfit", sans-serif;

  font-size: 14px;

  color: var(--muted);

  opacity: 0;

  animation: feedIn 8s ease-in-out infinite;

}



.feed-item:nth-child(1) { animation-delay: 0s; }

.feed-item:nth-child(2) { animation-delay: 2.5s; }

.feed-item:nth-child(3) { animation-delay: 5s; }



.feed-dot { width: 5px; height: 5px; border-radius: 50%; }



@keyframes feedIn {

  0% { opacity: 0; transform: translateY(8px); }

  8%, 30% { opacity: 1; transform: translateY(0); }

  38%, 100% { opacity: 0; transform: translateY(-8px); }

}



/* Corner decorations */

.corner-dec {

  position: absolute;

  width: 40px; height: 40px;

  opacity: 0.3;

}



.corner-dec::before, .corner-dec::after {

  content: '';

  position: absolute;

  background: var(--teal);

}



.corner-dec.tl { top: 0; left: 0; }

.corner-dec.tl::before { top:0; left:0; width:1px; height:16px; }

.corner-dec.tl::after  { top:0; left:0; width:16px; height:1px; }



.corner-dec.br { bottom: 0; right: 0; }

.corner-dec.br::before { bottom:0; right:0; width:1px; height:16px; }

.corner-dec.br::after  { bottom:0; right:0; width:16px; height:1px; }



/* Utility */

@keyframes fadeUp {

  from { opacity: 0; transform: translateY(28px); }

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

}



/* Glow colors for badge icons */

.ic-teal   { background: rgba(0,201,167,0.12); color: #00c9a7; }

.ic-blue   { background: rgba(37,99,235,0.15); color: #60a5fa; }

.ic-green  { background: rgba(16,185,129,0.15); color: #34d399; }

.ic-amber  { background: rgba(245,158,11,0.15); color: #fbbf24; }



.dot-teal   { background: #00c9a7; box-shadow: 0 0 6px #00c9a7; }

.dot-blue   { background: #60a5fa; box-shadow: 0 0 6px #60a5fa; }

.dot-green  { background: #34d399; box-shadow: 0 0 6px #34d399; }

.dot-amber  { background: #fbbf24; box-shadow: 0 0 6px #fbbf24; }



/* Data line animation on rings */

.data-line {

  position: absolute;

  border-radius: 50%;

  width: 350px; height: 350px;

  border: 1px solid transparent;

  border-top: 2px solid rgba(0,201,167,0.5);

  animation: spin 3s linear infinite;

  filter: blur(0.5px);

}



.data-line-2 {

  width: 440px; height: 440px;

  border-top-color: rgba(37,99,235,0.3);

  animation-duration: 5s;

  animation-direction: reverse;

}

/* ════════════════════════════════════

   FAQ + ENQUIRY FORM

════════════════════════════════════ */

.faq-sec{

  padding:50px 1rem;

  background:#fff

}

.faq-inner{

  display:grid;

  grid-template-columns:1fr 1fr;

  gap:56px;

  align-items:start;

}

/* ── Enquiry Form Card ── */

.faq-form-wrap{

  background:var(--navy);

  border-radius:22px;

  padding:36px;

  position:relative;

  overflow:hidden;

}

.faq-form-wrap::before{

  content:'';

  position:absolute;

  top:-80px;

  right:-80px;

  width:260px;

  height:260px;

  border-radius:50%;

  background:radial-gradient(circle,rgba(0,180,180,.13),transparent 65%);

  pointer-events:none;

}

.faq-form-header{

  margin-bottom:24px;

  position:relative;

  z-index:1

}

.faq-form-title{

  font-family: "Outfit", sans-serif;

  font-size:1.25rem;

  font-weight:500;

  color:#fff;

  margin-bottom:6px;

}

.faq-form-sub{

  font-size:.82rem;

  color:rgba(255,255,255,.5);

  font-weight:500}



.faq-form{

  display:flex;

  flex-direction:column;

  gap:13px;

  position:relative;

  z-index:1;

}

.ff-row{

  display:grid;

  grid-template-columns:1fr 1fr;

  gap:12px;
      margin-bottom: 22px;

}

.ff-field{

  display:flex;

  flex-direction:column;

  gap:5px

}

.ff-label{

  font-size:.7rem;

  font-weight:600;

  /* color:rgba(255,255,255,.65); */
  color: var(--teal-dark);

  letter-spacing:.4px;

  text-transform:uppercase;

}

.ff-input{

  width:100%;

  padding:10px 14px;

  border-radius:10px;

  border:1.5px solid rgba(255,255,255,.1);

  background:rgba(255,255,255,.07);

  color:#fff;

  font-size:.85rem;font-weight:500;

  font-family:'Nunito',sans-serif;

  outline:none;

  transition:border-color .2s,background .2s;

  box-sizing:border-box;

}

.ff-input::placeholder{

  color:rgba(255,255,255,.28)

}

.ff-input:focus{

  /* border-color:var(--teal); */

  background:rgba(0,180,180,.1);

}

.ff-select{

  cursor:pointer;

  appearance:none;

  -webkit-appearance:none

}

.ff-select option{

  background:#1A2B4A;

  color:#fff

}

.ff-textarea{

  resize:vertical;

  min-height:82px;

  line-height:1.55

}



.ff-submit{

  width:100%;

  padding:13px 20px;

  border-radius:12px;

  background:linear-gradient(135deg,#00B4B4,#00D4D4);

  color:#fff;

  font-size:.9rem;

  font-weight:600;

  border:none;

  cursor:pointer;

  font-family:'Nunito',sans-serif;

  display:flex;

  align-items:center;

  justify-content:center;

  gap:9px;

  /* box-shadow:0 4px 20px rgba(0,180,180,.4); */

  transition:all .25s;

  margin-top:4px;

}

.ff-submit:hover{

  transform:translateY(-2px);
  transition:all .25s;

}

.ff-success{

  background:rgba(34,197,94,.14);

  border:1.5px solid rgba(34,197,94,.3);

  color:#4ADE80;

  border-radius:10px;

  padding:12px 16px;

  font-size:.82rem;

  font-weight:700;

  text-align:center;

}

.ff-note{

  font-size:.67rem;

  text-align:center;

  font-weight:500;

}

/* ── FAQ Accordion ── */

.faq-list{

  display:flex;

  flex-direction:column;

  /* padding-top:31px; */

}

.faq-item{

  border-bottom:1.5px solid var(--gray-200);

  overflow:hidden

}

.faq-item:first-child{

  border-top:1.5px solid var(--gray-200);

}

.faq-q{

  width:100%;

  display:flex;

  align-items:center;

  justify-content:space-between;

  gap:14px;

  padding:0px 0;

  background:none;

  border:none;

  cursor:pointer;

  text-align:left;

  /* font-family:'Nunito',sans-serif; */

  font-size: 0.9rem;

  font-weight:500;

  color:var(--navy);

  transition:color .2s;

}

.faq-q:hover{

  color:var(--teal)

}

.faq-item.faq-open .faq-q{

  color:var(--teal)

}

.faq-icon{

  width:30px;

  height:30px;

  border-radius:50%;

  flex-shrink:0;

  background:var(--gray-100);

  display:grid;

  place-items:center;

  color:var(--text-light);

  transition:all .3s;

}

.faq-item.faq-open .faq-icon{

  background:var(--teal);

  color:#fff;

  transform:rotate(180deg);

}

.faq-a{

  max-height:0;

  overflow:hidden;

  transition:max-height .4s cubic-bezier(.25,.46,.45,.94);

}

.faq-item.faq-open .faq-a{

  max-height:220px

}

.faq-a p{

    padding: 0 0 0px;

    font-size: 0.975rem;

    color: var(--text-mid);

    line-height: 1.55;

    font-weight: 400;

}



/* Responsive FAQ */

@media(max-width:900px){

  .faq-inner{

    grid-template-columns:1fr;

  }

  .ff-row{

    grid-template-columns:1fr;

  }

}

/* ════ INLINE CTA STRIP ════ */

.inline-cta-strip {

  position: relative;

  background: linear-gradient(120deg, var(--navy) 0%, #1E3A5F 55%, #0D2238 100%);

  padding: 30px;

  overflow: hidden;

  border-top: 1.5px solid rgba(0,180,180,.18);

  border-bottom: 1.5px solid rgba(0,180,180,.18);

}



/* Background glow blobs */

.inline-cta-strip::before {

  content: '';

  position: absolute;

  top: -100px; left: -100px;

  width: 400px; height: 400px;

  border-radius: 50%;

  background: radial-gradient(circle, rgba(0,180,180,.12), transparent 65%);

  pointer-events: none;

}

.inline-cta-strip::after {

  content: '';

  position: absolute;

  bottom: -80px; right: -80px;

  width: 320px; height: 320px;

  border-radius: 50%;

  background: radial-gradient(circle, rgba(0,212,212,.08), transparent 65%);

  pointer-events: none;

}



.ics-inner {

  max-width: 1360px;

  margin: 0 auto;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 40px;

  position: relative;

  z-index: 1;

  flex-wrap: wrap;

}



/* Left */

.ics-left { flex: 1; min-width: 260px; }



.ics-eyebrow {

  display: inline-flex;

  align-items: center;

  gap: 8px;

  font-size: .75rem;

  font-weight: 500;

  color: var(--teal-light);

  text-transform: uppercase;

  letter-spacing: 1px;

  margin-bottom: 12px;

}

.ics-dot {

  width: 8px; height: 8px;

  background: #22C55E;

  border-radius: 50%;

  flex-shrink: 0;

  animation: pdot 2s infinite;

}



.ics-title {

  font-family: "Outfit", sans-serif;

  font-size: clamp(1.4rem, 2.5vw, 2rem);

  font-weight: 600;

  color: #fff;

  letter-spacing: -.4px;

  line-height: 1.2;

  margin-bottom: 10px;

}

.ics-title span {

  background: linear-gradient(90deg, var(--teal), #00D4A0);

  -webkit-background-clip: text;

  -webkit-text-fill-color: transparent;

  background-clip: text;

}



.ics-sub {

  font-size: .88rem;

  color: rgba(255,255,255,.5);

  font-weight: 400;

  margin: 0;

}



/* Right */

.ics-right {

  display: flex;

  align-items: center;

  gap: 12px;

  flex-shrink: 0;

  flex-wrap: wrap;

}



.ics-btn-primary {

  display: inline-flex;

  align-items: center;

  gap: 8px;

  padding: 14px 28px;

  border-radius: 12px;

  background: var(--teal-grad);

  color: #fff;

  font-size: .95rem;

  font-weight: 500;

  text-decoration: none;

  font-family: "Outfit", sans-serif;

  /* box-shadow: 0 6px 22px rgba(0,180,180,.45); */

  /* transition: all .25s; */

  white-space: nowrap;

}

.ics-btn-primary:hover {

  transform: translateY(-2px);

  /* box-shadow: 0 10px 30px rgba(0,180,180,.6); */

  color: #fff;

  transition: all .25s;

}



.ics-btn-ghost {

  display: inline-flex;

  align-items: center;

  gap: 8px;

  padding: 13px 24px;

  border-radius: 30px;

  background: transparent;

  color: rgba(255,255,255,.85);

  font-size: .95rem;

  font-weight: 500;

  border: 2px solid rgba(255,255,255,.2);

  text-decoration: none;

  font-family: "Outfit", sans-serif;

  transition: all .25s;

  white-space: nowrap;

}

.ics-btn-ghost:hover {

  border-color: var(--teal);

  color: var(--teal-light);

  background: rgba(0,180,180,.08);

  transform: translateY(-2px);

}



/* Decorative wave */

.ics-wave {

  position: absolute;

  bottom: 0; left: 0; right: 0;

  height: 3px;

  background: linear-gradient(90deg,

    transparent 0%,

    var(--teal) 25%,

    var(--teal-light) 50%,

    var(--teal) 75%,

    transparent 100%

  );

  opacity: .5;

}



/* Responsive */

@media (max-width: 768px) {

  .inline-cta-strip { padding: 40px 5%; }

  .ics-inner { flex-direction: column; align-items: flex-start; gap: 28px; }

  .ics-right { width: 100%; }

  .ics-btn-primary, .ics-btn-ghost { flex: 1; justify-content: center; }

}

@media (max-width: 480px) {

  .ics-right { flex-direction: column; }

  .ics-btn-primary, .ics-btn-ghost { width: 100%; }

}

/* ════ BLOG SECTION ════ */

/* .blog-sec{padding:40px 0;background:#fff} */



.blog-grid{

  display:grid;

  grid-template-columns:1.15fr 1fr;

  gap:24px;

  margin-bottom:24px;

}

.blog-stack{display:flex;flex-direction:column;gap:24px}



/* Card base */

.blog-card{

  background:#fff;border-radius:20px;

  border:1.5px solid var(--gray-200);

  overflow:hidden;transition:all .3s;

  display:flex;flex-direction:column;

}

.blog-card:hover{

  transform:translateY(-5px);

  box-shadow:0 18px 52px rgba(0,180,180,.1);

  border-color:var(--teal-pale2);

}



/* Image placeholder panels */

.blog-img{

  position:relative;overflow:hidden;flex-shrink:0;

}

.blog-featured .blog-img{height:220px}

.blog-img-sm{height:140px}



/* Colored gradient backgrounds simulating images */

.blog-img-1{background:linear-gradient(135deg,#0D2A2A 0%,#007A7A 50%,#00B4B4 100%)}

.blog-img-2{background:linear-gradient(135deg,#1E0A4A 0%,#5A2DB0 50%,#9C6FE8 100%)}

.blog-img-3{background:linear-gradient(135deg,#2A1400 0%,#B05000 50%,#FF8C00 100%)}



/* Grid pattern over image */

.blog-img::before{

  content:'';

  position:absolute;

  inset:0;

  background-image:

    linear-gradient(rgba(255,255,255,.05) 1px, transparent 1px),

    linear-gradient(90deg, rgba(255,255,255,.05) 1px, transparent 1px);

  background-size:28px 28px;

}

.blog-img-overlay{

  position:absolute;

  inset:0;

  background:linear-gradient(to top,rgba(0,0,0,.35) 0%,transparent 60%);

}

.blog-cat-chip{

  position:absolute;

  top:14px;

  left:14px;

  z-index:2;

  font-size:.65rem;

  font-weight:800;

  padding:4px 12px;

  border-radius:100px;

  background:rgba(255,255,255,.15);

  color:#fff;

  backdrop-filter:blur(8px);

  border:1px solid rgba(255,255,255,.2);

  letter-spacing:.3px;

}



/* Body */

.blog-body{padding:22px;

  display:flex;

  flex-direction:column;

  gap:10px;

  flex:1

}

.blog-meta{

  display:flex;

  align-items:center;

  gap:6px;

  font-size:.7rem;

  color:var(--text-light);

  font-weight:600

}

.blog-dot{

  opacity:.4

}

.blog-title{

  font-family: "Outfit", sans-serif;

  font-size:1rem;

  font-weight:700;

  color:var(--navy);

  line-height:1.35;

  display:-webkit-box;

  -webkit-line-clamp:2;

  -webkit-box-orient:vertical;

  overflow:hidden;

}

.blog-featured .blog-title{

  font-size:1.15rem

}

.blog-excerpt{

  font-size:.82rem;

  color:var(--text-mid);

  line-height:1.7;

  font-weight:500;

  flex:1;

  display:-webkit-box;

  -webkit-line-clamp:3;

  -webkit-box-orient:vertical;

  overflow:hidden;

}

.blog-footer{

  display:flex;

  align-items:center;

  justify-content:space-between;

  margin-top:4px;

  padding-top:14px;

  border-top:1.5px solid var(--gray-100);

}

.blog-author{

  display:flex;

  align-items:center;

  gap:9px

}

.blog-av{

  width:32px;

  height:32px;

  border-radius:50%;

  display:grid;

  place-items:center;

  font-size:.65rem;

  font-weight:800;

  color:#fff;

  flex-shrink:0;

  font-family: "Outfit", sans-serif;

}

.blog-au-name{

  font-size:.75rem;

  font-weight:800;

  color:var(--navy)

}

.blog-au-role{

  font-size:.65rem;

  color:var(--text-light);

  font-weight:500

}

.blog-read-btn{

  font-size:.75rem;

  font-weight:800;

  color:var(--teal-dark);

  text-decoration:none;

  white-space:nowrap;

  padding:6px 14px;

  border-radius:100px;

  border:1.5px solid var(--teal-pale2);

  background:var(--teal-pale);

  transition:all .2s;

}

.blog-read-btn:hover{

  background:var(--teal);

  color:#fff;

  border-color:var(--teal)

}



/* Bottom topic row */

.blog-topics{

  display:flex;

  flex-direction:column;

  gap:2px

}

.blog-topic-card{

  display:flex;

  align-items:center;

  gap:16px;

  padding:16px 20px;

  border-radius:14px;

  background:#fff;

  border:1.5px solid var(--gray-200);

  transition:all .25s;

  cursor:pointer;

  text-decoration:none;

}

.blog-topic-card:hover{

  background:var(--teal-pale);

  border-color:var(--teal-pale2);

  transform:translateX(5px);

}

.bt-ico{

  width:42px;

  height:42px;

  border-radius:12px;

  display:grid;

  place-items:center;

  font-size:1.1rem;

  flex-shrink:0;

}

.bt-title{

  font-size:.875rem;

  font-weight:700;

  color:var(--navy);

  line-height:1.4

}

.bt-meta{

  font-size:.68rem;

  color:var(--text-light);

  font-weight:500;

  margin-top:3px

}

.bt-arrow{

  font-size:1rem;

  color:var(--text-light);

  margin-left:auto;

  flex-shrink:0;

  width:32px;

  height:32px;

  border-radius:50%;

  background:var(--gray-100);

  display:grid;

  place-items:center;

  transition:all .2s;

  text-decoration:none;

}

.blog-topic-card:hover .bt-arrow{

  background:var(--teal);

  color:#fff

}



/* Responsive */

@media(max-width:1024px){

  .blog-grid{

    grid-template-columns:1fr

  }

  .blog-stack{

    flex-direction:row

  }

}

@media(max-width:640px){

  .blog-stack{

    flex-direction:column

  }

  .blog-grid{

    grid-template-columns:1fr

  }

}



.bs-img {

  position: relative;

  overflow: hidden;

  border-radius: 12px 12px 0 0;

  height: 220px;

}



.bs-img-overlay {

  width: 100%;

  height: 100%;

  overflow: hidden;

}



.bs-img-overlay img {

  width: 100%;

  height: 100%;

  object-fit: cover;   /* ensures proper cropping */

  display: block;

  transition: transform 0.4s ease;

}



/* Optional: smooth zoom effect on hover */

.bs-card:hover .bs-img-overlay img {

  transform: scale(1.05);

}



/* ════════════════════════════════════

   FOOTER — COMPLETE REDESIGN

════════════════════════════════════ */

.footer{

  background: var(--navy);

  padding: 62px 5% 28px;

}

.site-footer{

  background:#0B1E35;

  /* font-family:'Nunito',sans-serif; */

}



/* ── Main body ── */

.ft-main{

  padding:55px 0 40px;

  border-bottom:1px solid rgba(255,255,255,.07);

}

.ft-inner {

    max-width: 1240px;

    margin: 0 auto;

    padding: 0 0%;

    display: grid;

    grid-template-columns: 2.2fr 1fr 1fr 1fr;

    gap: 48px;

    align-items: start;

}



/* Brand column */

.ft-brand{

  color: rgba(255, 255, 255, .65) !important;

}

.ft-tagline{

  font-size:.85rem;

  color:#4A6580;

  line-height:1.7;

  font-weight:500;

  margin-bottom:24px;

  max-width:260px;

}



/* Contact list */

.ft-contact{

  list-style:none;

  display:flex;

  flex-direction:column;

  gap:12px;

  margin-bottom:22px;

  padding-left: 0 !important;

}

.ft-contact li{

  display:flex;

  align-items:center;

  gap:10px;

  /* font-size:.82rem; */

  font-size: 14px;

  /* color:#4A6580; */

  color: rgba(255, 255, 255, .65);

  font-weight:500;

}

.ft-contact a{

  text-decoration: none;

}

.ft-ci{

  width:28px;

  height:28px;

  border-radius:8px;

  background:rgba(0,180,180,.1);

  border:1px solid rgba(0,180,180,.15);

  display:grid;

  place-items:center;

  flex-shrink:0;

  color:var(--teal);

}



/* Social icons */

.ft-socials{

  display:flex;

  gap:8px;

  margin-bottom:22px;

}

.ft-si{

  width:36px;

  height:36px;

  border-radius:9px;

  background:rgba(255,255,255,.05);

  border:1px solid rgba(255,255,255,.09);

  display:grid;

  place-items:center;

  color:#4A6580;

  text-decoration:none;

  transition:all .2s;

}

.ft-si:hover{

  /* background:var(--teal); */

  color:#FFFFFF;

  border-color:var(--teal);

  transform:translateY(-3px);

  /* box-shadow:0 6px 18px rgba(0,180,180,.3); */

}



/* App store badges */

.ft-stores{

  display:flex;flex-direction:column;gap:10px;

}

.ft-store{

  display:flex;align-items:center;gap:12px;

  background:rgba(255,255,255,.05);

  border:1px solid rgba(255,255,255,.1);

  border-radius:12px;padding:10px 16px;

  text-decoration:none;color:#fff;

  transition:all .22s;

  min-width:160px;

}

.ft-store:hover{

  background:rgba(0,180,180,.12);

  border-color:rgba(0,180,180,.4);

  transform:translateY(-2px);

  box-shadow:0 8px 24px rgba(0,0,0,.2);

}

.ft-store svg{

  flex-shrink:0;

  opacity:.85

}

.ft-store-sub{

  font-size:.57rem;

  color:rgba(255,255,255,.45);

  font-weight:600;

  letter-spacing:.5px;

  text-transform:uppercase;

  line-height:1;

  margin-bottom:3px;

}

.ft-store-nm{

  font-size:.9rem;

  font-weight:800;

  font-family: "Outfit", sans-serif;

  line-height:1;

}



/* Link columns */

.ft-col h4{

  font-family: "Outfit", sans-serif;

  /* font-size:.8rem; */

    font-size: 16px;

    font-weight: 600;

    color: rgba(255, 255, 255, .7);

    letter-spacing: .4px;

    margin-bottom: 18px;

    padding-bottom: 12px;

    border-bottom: 1px solid rgba(255, 255, 255, .07);

    text-transform: uppercase;

}

.ft-col ul{

  list-style:none;

  display:flex;

  flex-direction:column;

  gap:11px;

  padding-left: 0 !important;

}

.ft-col ul li a{

  /* font-size:.83rem; */

  font-size: 14px;

  /* color:#4A6580; */

  text-decoration:none;

  font-weight:500;

  transition:color .2s,padding .2s;

  display:block;

  color: rgba(255, 255, 255, .65);

}

.ft-col ul li a:hover{

  color:var(--teal-light);

  padding-left:6px;

}



/* ── Bottom bar ── */

.ft-bar{

  padding:18px 0;

  /*background:#071526;*/

}

.ft-bar-inner{

  max-width:1240px;margin:0 auto;padding:0 0%;

  display:flex;align-items:center;

  justify-content:space-between;

  flex-wrap:wrap;gap:12px;

}

.ft-copy{

  font-size:14px;

  color:rgb(255 255 255 / 71%);

  font-weight:500;

  margin-bottom: 0;

}

.ft-trust{

  display:flex;align-items:center;gap:16px;flex-wrap:wrap;

}

.ft-trust span{

  font-size: 14px;

  color:rgb(255 255 255 / 71%);

  font-weight:500;

}



/* Responsive */

@media(max-width:1100px){

  .ft-inner{grid-template-columns:1fr 1fr 1fr;gap:36px}

  .ft-brand{grid-column:1/-1}

  .ft-stores{flex-direction:row}

}

@media(max-width:640px){

  .ft-inner{grid-template-columns:1fr 1fr;gap:28px}

  .ft-brand{grid-column:1/-1}

  .ft-bar-inner{flex-direction:column;text-align:center}

  .ft-trust{justify-content:center}

  .ft-stores{flex-direction:column}

}



/* ════ FOOTER CTA BAND ════ */

.ft-cta-band{

  background:linear-gradient(135deg, #00B4B4 0%, #008A8A 50%, #006F6F 100%);

  padding:25px 4%;

  position:relative;

  overflow:hidden;

  border-radius: 12px;

}

.ft-cta-band::before{

  content:'';position:absolute;top:-60px;right:-60px;

  width:280px;height:280px;border-radius:50%;

  background:rgba(255,255,255,.06);pointer-events:none;

}

.ft-cta-band::after{

  content:'';position:absolute;bottom:-80px;left:20%;

  width:200px;height:200px;border-radius:50%;

  background:rgba(255,255,255,.04);pointer-events:none;

}

.ft-cta-inner{

  max-width:1240px;margin:0 auto;

  display:flex;align-items:center;

  justify-content:space-between;

  gap:24px;flex-wrap:wrap;

  position:relative;z-index:1;

}

.ft-cta-title{

  font-family: "Outfit", sans-serif;

  font-size:2.15rem;

  font-weight:600;

  color:#fff;

  line-height:1.2;

}

.ft-cta-sub{

  font-size:.1.3rem;color:rgba(255,255,255,.72);

  margin-top:6px;font-weight:500;

}

.ft-cta-btns{

  display:flex;gap:14px;flex-shrink:0;flex-wrap:wrap;

}

.ft-btn-primary{

  padding:14px 30px;

  /* border-radius:12px; */

  border-radius: 30px;

  background:#fff;

  color:#007A7A;

  font-size:.9rem;

  font-weight:700;

  text-decoration:none;

  font-family:'Nunito',sans-serif;

  box-shadow:0 4px 20px rgba(0,0,0,.18);

  transition:all .22s;

  display:inline-flex;

  align-items:center;

  gap:7px;

  white-space:nowrap;

}

.ft-btn-primary:hover{

  transform:translateY(-2px);

  box-shadow:0 8px 28px rgba(0,0,0,.25);

  background:#f0fdf4;

}

.ft-btn-ghost{

  padding:14px 30px;

  border-radius:12px;

  background:rgba(255,255,255,.1);

  color:#fff;

  font-size:.9rem;

  font-weight:700;

  text-decoration:none;

  font-family:'Nunito',sans-serif;

  border:2px solid rgba(255,255,255,.3);

  transition:all .22s;

  display:inline-flex;

  align-items:center;

  gap:7px;

  white-space:nowrap;

}

.ft-btn-ghost:hover{

  background:rgba(255,255,255,.2);

  border-color:rgba(255,255,255,.7);

  transform:translateY(-2px);

}

.topbar-item {

  display: flex; align-items: center; gap: 6px;

  text-decoration: none; color: rgba(255,255,255,.65);

  transition: color .2s; font-size: 15px;

}

.topbar-item:hover { 

  color: var(--teal-light);

}

.dental-badge {

    background: var(--dent-bg);

    border: 1.5px solid var(--dent-bd);

    color: var(--dent-c);

    font-size: .68rem; 

    font-weight: 700;

    padding: 3px 12px; 

    border-radius: 100px; 

    letter-spacing: .3px;

}

/* ═══════════════════════════════════════

       DENTAL FEATURES — ALTERNATING SPLIT ROWS

    ═══════════════════════════════════════ */

/* Hero mockup card */

.hero-card {

  background: #fff; border-radius: 22px;

  box-shadow: 0 28px 80px rgba(0,180,180,.15), 0 4px 24px rgba(0,0,0,.06);

  border: 1.5px solid var(--teal-pale2); overflow: hidden;

  animation: fIn .9s .3s ease both;

}

.hc-topbar {

  background: linear-gradient(90deg,var(--teal),#00CCAA);

  padding: 12px 18px; display: flex; align-items: center; gap: 7px;

}

.hc-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.4); }

.hc-title { margin-left: 6px; font-size: .72rem; color: rgba(255,255,255,.9); font-weight: 700; }

.hc-body { padding: 18px; }



/* Floating badges */

.float-badge {

  position: absolute; background: #fff;

  border-radius: 12px; padding: 10px 14px;

  box-shadow: 0 8px 32px rgba(0,0,0,.12);

  border: 1.5px solid var(--teal-pale2);

  font-size: .75rem; font-weight: 700; color: var(--navy);

  display: flex; align-items: center; gap: 8px;

  animation: fUp .8s ease both;

}

.fb-1 { top: 14%; right: -18px; animation-delay: .6s; }

.fb-2 { bottom: 22%; left: -22px; animation-delay: .8s; }

.fb-3 { bottom: 4%; right: 8%; animation-delay: 1s; }



/* Feature Mockup */

.features-sec {

  padding: 0; background: #fff; overflow: hidden;

}

.feat-block {

  padding: 70px 0; 

  position: relative;

  border-bottom: 1.5px solid var(--gray-200);

}

.feat-block:last-child { border-bottom: none; }

.feat-block:nth-child(even) { background: var(--off-white); }

.feat-block:nth-child(odd)  { background: #fff; }

.feat-block::before {

  content: ''; position: absolute; border-radius: 50%; pointer-events: none;

  width: 400px; height: 400px;

  background: radial-gradient(circle, rgba(0,180,180,.06), transparent 70%);

}

.feat-block:nth-child(odd)::before  { top: -80px; right: -80px; }

.feat-block:nth-child(even)::before { bottom: -80px; left: -80px; }



.feat-step {

  display: inline-flex; align-items: center; gap: 10px;

  margin-bottom: 16px;

}

.feat-step-num {

  width: 36px; 

  height: 36px; 

  border-radius: 10px;

  background: var(--teal-pale);

   border: 1.5px solid var(--teal-pale2);

  color: var(--teal-dark);

   font-size: .78rem; 

   font-weight: 600;

  display: grid; 

  place-items: center; 

  flex-shrink: 0;

  font-family: "Outfit", sans-serif;

}

.feat-step-label {

  font-size: .72rem; 

  font-weight: 600; 

  letter-spacing: 1px;

  text-transform: uppercase;

   color: var(--teal);

}



.feat-title {

  font-family: "Outfit", sans-serif;

  font-size: clamp(1.6rem, 2.8vw, 2.2rem);

  font-weight: 600; color: var(--navy);

  letter-spacing: -.4px; line-height: 1.18; margin-bottom: 16px;

}

.feat-title .tl { 

  color: var(--teal); 

}



.feat-desc {

  font-size: 1rem; 

  color: var(--text-mid);

  line-height: 1.82; 

  font-weight: 400; 

  margin-bottom: 28px;

  text-align: justify;

}

 

.feat-bullets {

  display: flex; 

  flex-direction: column; 

  gap: 12px; 

  margin-bottom: 32px;

}

.feat-bullet {

  display: flex; 

  align-items: flex-start; 

  gap: 12px;

  /* font-size: .9rem;  */

  color: var(--text-mid); 

  font-weight: 500;

  line-height: 1.5;

}

.feat-bullet-dot {

  width: 24px; height: 24px; border-radius: 7px; flex-shrink: 0;

  background: var(--teal-pale); border: 1.5px solid var(--teal-pale2);

  color: var(--teal); display: grid; place-items: center;

  font-size: .65rem; font-weight: 600; margin-top: 1px;

}

.feat-bullet strong { 

  color: var(--navy); 

  font-weight: 600; 

}



 .feat-link {

  display: inline-flex;

  align-items: center;

  gap: 8px;

  padding: 11px 22px; 

  border-radius: 10px;

  background: var(--teal-grad);

  border: 1.5px solid var(--teal-pale2);

  font-size: .88rem; 

  font-weight: 600; 

  color: #fff;

  text-decoration: none; 

  transition: all .22s;

} 

.feat-link:hover {

  background: var(--teal); 

  color: #fff; 

  border-color: var(--teal);

  transform: translateY(-1px);

  box-shadow: 0 6px 20px rgba(0,180,180,.3);

} 

.feat-link svg { transition: transform .2s; }

.feat-link:hover svg { transform: translateX(3px); }



/* .feat-mockup {

  background: #fff; border: 1.5px solid var(--teal-pale2);

  border-radius: 22px;

  box-shadow: 0 32px 80px rgba(0,180,180,.14), 0 4px 24px rgba(0,0,0,.06);

  overflow: hidden; position: relative; z-index: 1;

} */

.fm-bar {

  background: linear-gradient(90deg, var(--teal) 0%, #00CCAA 100%);

  padding: 12px 18px; display: flex; align-items: center; gap: 7px;

}

.fm-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.35); }

.fm-title { margin-left: 6px; font-size: .72rem; color: rgba(255,255,255,.9); font-weight: 700; flex: 1; }

.fm-badge {

  font-size: .62rem; font-weight: 800; padding: 3px 10px;

  border-radius: 20px; background: rgba(255,255,255,.2); color: #fff;

}

.fm-body { padding: 20px; }



.feat-visual-wrap {

  position: relative;

}

/* .feat-visual-wrap::before {

  content: '';

  position: absolute; inset: 20px -12px -16px 12px;

  background: linear-gradient(135deg, var(--teal-pale2), var(--teal-pale));

  border-radius: 24px; z-index: 0;

  opacity: .6;

} */

 

.features-header {

  background: var(--navy); padding: 80px 0 64px;

  text-align: center; position: relative; overflow: hidden;

}

.features-header::before {

  content: ''; position: absolute; top: -100px; right: -100px;

  width: 400px; height: 400px; border-radius: 50%;

  background: radial-gradient(circle, rgba(0,180,180,.1), transparent 70%);

}

.features-header::after {

  content: ''; position: absolute; bottom: -80px; left: -80px;

  width: 300px; height: 300px; border-radius: 50%;

  background: radial-gradient(circle, rgba(0,212,212,.06), transparent 70%);

}



@media (max-width: 991px) {

  .feat-block { padding: 64px 0; }

  .feat-visual-wrap { margin-top: 40px; }

  .feat-visual-wrap::before { display: none; }

}

@media (max-width: 576px) {

  .feat-block { padding: 48px 0; }

}

/* treatment procedure */

.procedures-sec { 

  padding: 70px 1rem; 

  background: #fff; 

}



.proc-card {

  background: var(--off-white); border: 1.5px solid var(--gray-200);

  border-radius: 16px; padding: 22px 20px;

  display: flex; align-items: flex-start; gap: 14px;

  transition: all .25s; height: 100%;

}

.proc-card:hover {

  background: var(--teal-pale); border-color: var(--teal-pale2);

  transform: translateY(-3px);

  box-shadow: 0 12px 32px rgba(0,180,180,.1);

}

.proc-num {

  width: 36px; 

  height: 36px; 

  border-radius: 10px; 

  flex-shrink: 0;

  background: var(--teal-pale2); 

  color: var(--teal-dark);

  display: grid; 

  place-items: center;

  font-size: .78rem; 

  font-weight: 800;

}

.proc-title { 

  font-size: 16px; 

  font-weight: 600; 

  color: var(--navy); 

  margin-bottom: 4px; 

}

.proc-desc  { 

  font-size: 13px; 

  color: var(--text-mid); 

  line-height: 1.6; 

  font-weight: 400; 

}





/* AI COPILOT SECTION */

.ai-sec-dental {

  padding: 80px 1rem;  

  background: var(--navy);

  position: relative; 

  overflow: hidden;

}

.ai-sec-dental::before {

  content: ''; 

  position: absolute; 

  top: -160px; 

  right: -160px;

  width: 500px; 

  height: 500px; 

  border-radius: 50%;

  background: radial-gradient(circle, rgba(0,180,180,.12), transparent 70%);

}

.ai-sec-dental::after {

  content: ''; 

  position: absolute; 

  bottom: -120px; 

  left: -120px;

  width: 380px; 

  height: 380px; 

  border-radius: 50%;

  background: radial-gradient(circle, rgba(0,212,212,.08), transparent 70%);

}

.ai-card-d {

  background: rgba(255,255,255,.05);

  border: 1.5px solid rgba(0,180,180,.18);

  border-radius: 20px; 

  padding: 28px;

  transition: all .3s; 

  position: relative; 

  overflow: hidden;

  height: 100%;

}

.ai-card-d::before {

  content: ''; 

  position: absolute; 

  top: 0; 

  left: 0; 

  right: 0; 

  height: 2px;

  background: linear-gradient(90deg,var(--teal),var(--teal-light));

  opacity: 0; 

  transition: opacity .3s;

}

.ai-card-d:hover {

  transform: translateY(-6px);

  background: rgba(0,180,180,.08);

  border-color: rgba(0,180,180,.4);

  box-shadow: 0 20px 60px rgba(0,0,0,.3);

}

.ai-card-d:hover::before { 

  opacity: 1; 

}

.ai-icon-d {

  width: 54px; 

  height: 54px; 

  border-radius: 14px;

  background: linear-gradient(135deg,rgba(0,180,180,.2),rgba(0,180,180,.08));

  border: 1.5px solid rgba(0,180,180,.25);

  display: grid; 

  place-items: center; 

  font-size: 1.5rem; 

  margin-bottom: 18px;

}

.ai-tag-d {

  font-size: .62rem; 

  font-weight: 800; 

  letter-spacing: 1px;

  text-transform: uppercase; 

  color: var(--teal-light);

  background: rgba(0,180,180,.12); 

  padding: 3px 10px;

  border-radius: 20px; 

  display: inline-block;

  margin-bottom: 10px;

}

.ai-title-d { 

  font-family: 'Poppins',sans-serif; 

  font-size: 1.05rem; 

  font-weight: 700; 

  color: #fff; 

  margin-bottom: 8px; 

}

.ai-desc-d  { 

  font-size: .85rem; 

  color: rgba(255,255,255,.6); 

  line-height: 1.7; 

  font-weight: 400; 

}



/*  TESTIMONIALS */

.testi-sec { 

  padding: 80px 1rem; 

  background: #fff; 

}

.testi-card {

  background: var(--off-white); 

  border: 1.5px solid var(--gray-200);

  border-radius: 20px; 

  padding: 28px; 

  height: 100%; 

  transition: all .3s;

}

.testi-card:hover {

  transform: translateY(-5px);

  box-shadow: 0 14px 44px rgba(0,180,180,.1);

  border-color: var(--teal-pale2);

}

.testi-stars { 

  color: #F59E0B; 

  font-size: .9rem; 

  margin-bottom: 12px; 

}

.testi-text  {

  font-size: .9rem; 

  color: var(--text-mid); 

  line-height: 1.75;

  font-style: italic; 

  margin-bottom: 20px; 

  font-weight: 400;

}

.testi-av {

  width: 42px; 

  height: 42px; 

  border-radius: 50%;

  display: grid; 

  place-items: center;

  font-size: .82rem; 

  font-weight: 800; 

  flex-shrink: 0; 

  color: #fff;

}

.testi-name { 

  font-weight: 600; 

  font-size: .88rem; 

  color: var(--navy); 

}

.testi-role { 

  font-size: .73rem; 

  color: var(--text-light); 

  margin-top: 2px; 

}

.testi-badge {

  font-size: .62rem; 

  font-weight: 600; 

  padding: 2px 9px;

  border-radius: 10px; 

  margin-top: 4px; 

  display: inline-block;

}    



/* ═══════════════════════════

    UTILITIES

═══════════════════════════ */

.teal-text { color: var(--teal); }

.grad-text {

  background: linear-gradient(90deg, var(--teal), #00D4A0);

  -webkit-background-clip: text; -webkit-text-fill-color: transparent;

  background-clip: text;

}

.section-divider {

  height: 1.5px; background: var(--gray-200); margin: 0;

}



/* Mobile tweaks */

@media (max-width: 768px) {

  .dental-hero { 

    padding: 80px 0 56px; 

    min-height: auto; 

  }

  .fb-1, .fb-2, .fb-3 {

     display: none; 

  }

  .cta-box-d {

     padding: 48px 24px;

  }

  .sticky-cta {

     padding: 10px 16px;

  }

}

@media (max-width: 576px) {

  .hero-h1 { 

    font-size: 2.2rem; 

  }

  .stat-num {

     font-size: 1.5rem; 

    }

  .hero-proof { 

    flex-direction: column; 

    /* align-items: flex-start;  */

    justify-content: center;

    }

}

/* SOLO-CLINIC BANNER MOKEUP */

.stats-band {

    background: var(--navy);

    padding: 36px 0;

    border-top: 1.5px solid rgba(0, 180, 180, .15);

    border-bottom: 1.5px solid rgba(0, 180, 180, .15)

}



.stat-item {

    text-align: center;

    padding: 8px 0

}



.stat-num {

    font-family: "Outfit", sans-serif;

    font-size: 2rem;

    font-weight: 900;

    color: #fff;

    line-height: 1;

    margin-bottom: 4px

}



.stat-num span {

    color: var(--teal);

    font-size: 1.1rem

}



.stat-label {

    font-size: .72rem;

    font-weight: 700;

    letter-spacing: .8px;

    text-transform: uppercase;

    color: rgba(255, 255, 255, .45)

}



.stat-div {

    width: 1px;

    background: rgba(255, 255, 255, .1)

}



/* Section headers */

.sh {

    text-align: center;

    margin-bottom: 30px;

}



.s-tag {

    display: inline-flex;

    align-items: center;

    gap: 7px;

    background: var(--teal-pale);

    border: 1.5px solid var(--teal-pale2);

    border-radius: 100px;

    padding: 5px 16px;

    font-size: .75rem;

    font-weight: 600;

    color: var(--teal-dark);

    margin-bottom: 18px

}



.s-title {

    font-family: "Outfit", sans-serif;

    font-size: clamp(1.9rem, 3.5vw, 2.2rem);

    font-weight: 600;

    color: var(--navy);

    letter-spacing: -.5px;

    line-height: 1.18;

    margin-bottom: 14px

}



.s-title .tl {

    color: var(--teal)

}



.s-sub {

    font-size: 1rem;

    color: var(--text-mid);

    font-weight: 400;

    line-height: 1.75;

    max-width: 580px;

    margin: 0 auto

}

/* Solo Clinic Feature */

.showcase-sec { 

  padding: 80px 1rem; 

  background: var(--white); 

}

.showcase-mockup {

  background: #fff; border: 1.5px solid var(--teal-pale2);

  border-radius: 22px;

  box-shadow: 0 28px 80px rgba(0,180,180,.13), 0 4px 20px rgba(0,0,0,.05);

  overflow: hidden;

}

.sm-bar {

  background: linear-gradient(90deg, var(--teal), #00CCAA);

  padding: 12px 18px; display: flex; align-items: center; gap: 7px;

}

.sm-dot { width: 9px; height: 9px; border-radius: 50%; background: rgba(255,255,255,.35); }

.sm-title { margin-left: 6px; font-size: .72rem; color: rgba(255,255,255,.9); font-weight: 700; }

.sm-live {

  margin-left: auto; font-size: .62rem; font-weight: 800;

  padding: 3px 10px; border-radius: 20px;

  background: rgba(255,255,255,.2); color: #fff;

}

.sm-body { padding: 18px; }



/* Tooth grid */

.tooth-grid {

  display: grid; grid-template-columns: repeat(8,1fr); gap: 5px;

  margin-bottom: 12px;

}

.tooth {

  aspect-ratio: 1; border-radius: 8px; display: grid;

  place-items: center; font-size: .65rem; font-weight: 800;

  border: 1.5px solid var(--gray-200); background: var(--off-white);

  cursor: pointer; transition: all .2s; color: var(--text-mid);

}

.tooth.t-ok  { background: var(--teal-pale); border-color: var(--teal-pale2); color: var(--teal-dark); }

.tooth.t-bad { background: #FFF1F0; border-color: #FECACA; color: #DC2626; }

.tooth.t-warn{ background: #FFFBEB; border-color: #FDE68A; color: #D97706; }

.tooth.t-done{ background: #F0FDF4; border-color: #86EFAC; color: #16A34A; }

.tooth-label { font-size: .58rem; margin-top: 1px; }

/* ═══════════════════════════

    BILLING SECTION

═══════════════════════════ */

.billing-sec { 

  padding: 80px 0;  

  background: var(--off-white); 

}



.bill-point {

  display: flex; 

  align-items: flex-start; 

  gap: 12px; 

  padding: 14px 0;

  border-bottom: 1px solid var(--gray-200);

}

.bill-point:last-child { 

  border-bottom: none; 

}

.bill-check {

  width: 26px; 

  height: 26px; 

  border-radius: 50%; 

  margin-top: 10px;

  flex-shrink: 0;

  background: var(--teal-pale); 

  color: var(--teal);

  display: grid; 

  place-items: center; 

  font-size: .7rem; 

  font-weight: 900;

}

.bill-pt-title { 

  font-size: .9rem; 

  font-weight: 700; 

  color: var(--navy); 

  margin-bottom: 2px; 

}

.bill-pt-desc  { 

  font-size: .8rem; color: var(--text-mid); line-height: 1.5; font-weight: 400; }



.workflow-section {

    padding: 80px 1rem;

    background: var(--off-white);

}



/* Card Base */

.workflow-card {

    background: #fff;

    border: 1.5px solid var(--gray-200);

    border-radius: 18px;

    padding: 28px;

    text-align: center;

    height: 100%;

    transition: all 0.3s;

}



.workflow-card:hover {

    box-shadow: 0 14px 44px rgba(0, 180, 180, 0.1);

    border-color: var(--teal-pale2);

}



/* Icon */

.workflow-card .icon {

    width: 52px;

    height: 52px;

    border-radius: 14px;

    background: var(--teal-pale);

    border: 1.5px solid var(--teal-pale2);

    display: grid;

    place-items: center;

    font-size: 1.3rem;

    margin: 0 auto 16px;

}



/* Titles */

.workflow-card .title {

    font-family: "Outfit", sans-serif;

    font-size: 0.95rem;

    font-weight: 600;

    color: var(--navy);

    margin-bottom: 8px;

}



/* Description */

.workflow-card .desc {

    font-size: 0.85rem;

    color: var(--text-mid);

    line-height: 1.6;

}



/* Time */

.workflow-card .time {

    margin-top: 12px;

    font-size: 0.72rem;

    font-weight: 600;

    color: var(--teal);

}



/* Highlight Card */

.workflow-card.highlight {

    background: var(--teal-grad);

    border: none;

}



/* White Variants */

.workflow-card .white {

    color: #fff;

}



.workflow-card .white-light {

    color: rgba(255, 255, 255, 0.8);

}



.workflow-card.highlight .icon {

    background: rgba(255, 255, 255, 0.2);

    border: none;

}

/* ════════════════════════

   CITIES — FULL-BLEED MAP STYLE

════════════════════════ */

.cities-sec {

  padding: 80px 0;

  background: var(--off-white);

  /* position:relative; */

}

.cities-sec::before {

  content:'🍁';

  position:absolute; font-size:320px; top:50%; left:50%;

  transform:translate(-50%,-50%);

  opacity:.025; pointer-events:none; user-select:none;

  line-height:1;

}

.cities-inner { max-width:1280px; margin:0 auto; }

.cities-split {

  display:grid; grid-template-columns:380px 1fr;

  gap:4rem; align-items:start;

}

.cities-left { position:sticky; top:100px; }

.cities-stats {

  display:grid; grid-template-columns:1fr 1fr; gap:10px; margin-top:2rem;

}

.c-stat {

  background:#fff; border:1px solid var(--border);

  border-radius:var(--r-lg); padding:1.25rem;

  text-align:center;

}

.c-stat .cnum {

  font-family:var(--font-display); font-size:1.8rem; font-weight:800;

  color:var(--teal);

}

.c-stat .clbl { font-size:11px; color:var(--smoke); margin-top:3px; }



.cities-right { display:flex; flex-direction:column; gap:.75rem; }

.city-row {

  display:grid; grid-template-columns:auto 1fr auto auto;

  align-items:center; gap:1.25rem;

  background:#fff; border:1px solid var(--border);

  border-radius:var(--r-xl); padding:1.25rem 1.5rem;

  transition:.25s; cursor:pointer;

}

.city-row:hover { border-color:var(--teal); box-shadow:0 8px 32px rgba(25,186,172,.1); transform:translateX(4px); }

.city-row.hot { border-color:var(--teal); background:var(--teal-pale); }

.city-rank {

  font-family:var(--font-display); font-size:.85rem; font-weight:800;

  color:var(--smoke); width:28px; text-align:center;

}

.city-row.hot .city-rank { color:var(--teal-deep); }

.city-info { }

.city-name { font-family:var(--font-display); font-size:16px; font-weight:700; color:var(--ink); }

.city-prov { font-size:11px; color:var(--smoke); text-transform:uppercase; letter-spacing:.06em; margin-top:1px; }

.city-bar-wrap { flex:1; display:flex; align-items:center; gap:10px; }

.city-bar-track { flex:1; height:5px; background:var(--mist); border-radius:100px; overflow:hidden; }

.city-bar-fill { height:100%; background:var(--grad-teal); border-radius:100px; transition:width .4s; }

.city-count {

  font-family:var(--font-display); font-size:.95rem; font-weight:700;

  color:var(--navy); white-space:nowrap;

}

.city-row.hot .city-count { color:var(--teal-deep); }

.city-badge {

  font-size:9px; font-weight:700; text-transform:uppercase;

  letter-spacing:.06em; padding:3px 8px; border-radius:100px;

  background:var(--teal); color:#fff;

}



.image-text-section{

    display:flex;

    align-items:center;

    min-height:70vh;

    border-bottom:1px solid #ddd;

}



.section-image,

.section-content{

    width:50%;

}



.section-image{

    display:flex;

    align-items:center;

    justify-content:center;

    padding-left:10rem;

}



.image-wrapper{

    width:100%;

    aspect-ratio:16/9;

    overflow:hidden;

}



.image-wrapper img{

    width:100%;

    height:100%;

    object-fit:cover;

    display:block;

}



.section-content{

    display:flex;

    align-items:center;

    justify-content:center;

    padding:80px;

}



.content-inner{

    max-width:500px;

}



.section-label{

    display:block;

    margin-bottom:20px;

    font-size:14px;

    font-weight:600;

    text-transform:uppercase;

    letter-spacing:0.2em;

    color:#666;

}



.content-inner h2{

    margin-bottom:20px;

    font-size:40px;

    font-weight:600;

    line-height:1.2;

    color:#000;

}



.content-inner p{

    margin-bottom:30px;

    font-size:18px;

    line-height:1.7;

    color:#555;

}



.content-inner button{

    padding:14px 32px;

    border:1px solid #000;

    background:transparent;

    color:#000;

    text-transform:uppercase;

    letter-spacing:2px;

    cursor:pointer;

    transition:all .3s ease;

}



.content-inner button:hover{

    background:#115478;

    color:#fff;

}



@media (max-width:768px){

    .image-text-section{

        flex-direction:column;

    }



    .section-image,

    .section-content{

        width:100%;

        padding:30px 20px;

    }



    .content-inner{

        max-width:100%;

    }

}



/* css code for "getting started" section -index  */



.getting-started-v2{

    padding:120px 0;

    background:#f8fbfb;

    overflow:hidden;

}



.getting-started-v2 .container{

    max-width:1200px;

    margin:auto;

    padding:0 20px;

}



.section-header{

    text-align:center;

    max-width:760px;

    margin:0 auto 80px;

}



.section-tag{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:10px 18px;

    background:#fff;

    border:1px solid #dfeeee;

    border-radius:999px;

    font-size:.9rem;

    font-weight:600;

    color:#008080;

}



.section-tag img{

    width:20px;

    height:20px;

}



.section-header h2{

    font-size:2.5rem;

    line-height:1.15;

    margin:24px 0 18px;

    color:#111;

    font-family: "Outfit", sans-serif;

}



.section-header h2 span{

    color:#0f9d9d;

}



.section-header p{

    font-size:1.1rem;

    line-height:1.8;

    color:#666;

     font-family: "Outfit", sans-serif;

}



.steps-wrapper{

    position:relative;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:30px;

}



.progress-line{

    position:absolute;

    top:70px;

    left:15%;

    right:15%;

    height:3px;

    background:linear-gradient(

      to right,

      #c8efef,

      #87dcdc,

      #32c5c5

    );

    z-index:1;

}



.steps-wrapper{

    position:relative;

    display:grid;

    grid-template-columns:repeat(3,1fr);

    gap:24px;

}

.step-card{

    position:relative;

    z-index:2;

    background:#f7fcfc;

    border-radius:20px;

    padding:32px 24px;

    text-align:center;

    border:1px solid #d9f0f0;

    background: linear-gradient(

        180deg,

        #81C1D4 0%,

        #ffffff 100%

    );

    box-shadow:

        0 10px 30px rgba(0,0,0,.04),

        0 2px 10px rgba(15,157,157,.06);

    transition:.35s ease;

}



.step-card:hover{

    transform: translateY(-10px);



    box-shadow:

        0 30px 70px rgba(0,0,0,.14),

        0 12px 35px rgba(15,157,157,.18);

}



.step-number{

    position:absolute;

    top:20px;

    right:20px;

    font-size:.9rem;

    font-weight:700;

    color:#0f9d9d;

}



.step-icon{

    width:72px;

    height:72px;

    margin:0 auto 20px;

    border-radius:50%;

    background:#e7f8f8;

    color:#0f9d9d;

    display:flex;

    align-items:center;

    justify-content:center;

    font-size:1.7rem;

}



.step-icon.success{

    background:#e8fff1;

    color:#16a34a;

}



.step-card h3{

    font-size:1.25rem;

    margin-bottom:12px;

    color:#111;

}



.step-card p{

    color:#666;

    line-height:1.65;

    font-size:.95rem;

    margin-bottom:20px;

}



.step-time{

    display:inline-block;

    padding:8px 14px;

    border-radius:999px;

    background:#edf7f7;

    color:#555;

    font-size:.85rem;

    font-weight:600;

}



.step-time.live{

    background:#e8fff1;

    color:#16a34a;

}



.getting-started-v2{

    padding:40px 0;

    background:#ffffff;

    overflow:hidden;

}

@media(max-width:991px){



    .steps-wrapper{

        grid-template-columns:1fr;

        gap:25px;

    }



    .progress-line{

        display:none;

    }



    .section-header h2{

        font-size:2.2rem;

    }

}

/* ===== index blog section responsive ===== */
/* Tablet */
@media (max-width: 991.98px) {

    .blog-sec{
        padding:60px 0;
    }

    .blog-header{
        text-align:center;
        margin-bottom:30px;
    }

    .blog-header .row{
        justify-content:center;
    }

    .blog-header .s-title{
        font-size:2rem;
        line-height:1.3;
    }

    .blog-header .s-sub{
        max-width:700px;
        margin:15px auto 0 !important;
        font-size:15px;
    }

    .bs-title{
        font-size:20px;
        line-height:1.4;
    }

    .bs-excerpt{
        font-size:15px;
        line-height:1.7;
    }

    .bs-footer{
        flex-wrap:wrap;
        gap:12px;
    }

    .bs-btn{
        width:100%;
        justify-content:center;
    }

}
/* Mobile */
@media (max-width: 767.98px){

    .blog-sec{
        padding:50px 0;
    }

    .blog-header{
        text-align:center;
        margin-bottom:25px;
    }

    .blog-header .s-title{
        font-size:30px;
        line-height:1.3;
    }

    .blog-header .s-sub{
        font-size:15px;
        line-height:1.7;
        margin:12px auto 0 !important;
    }

    /* Card */

    .bs-card{
        border-radius:18px;
        overflow:hidden;
    }

    .bs-img-1,
    .bs-img-2,
    .bs-img-3{

        height:220px;

    }

    .bs-img-overlay img{

        width:100%;
        height:100%;
        object-fit:cover;

    }

    .bs-body{

        padding:20px;

    }

    .bs-meta{

        font-size:13px;

    }

    .bs-title{

        font-size:20px;
        margin:10px 0;

    }

    .bs-excerpt{

        font-size:15px;
        line-height:1.7;

    }

    .bs-footer{

        display:flex;
        flex-direction:column;
        align-items:flex-start;
        gap:15px;

    }

    .bs-btn{

        width:100%;
        justify-content:center;
        padding:12px 20px;
        border-radius:10px;

    }

}
/* Small Mobile */
@media (max-width:575.98px){

    .blog-sec .sw{
        padding-left:15px;
        padding-right:15px;
    }

    .blog-header .s-title{

        font-size:26px;

    }

    .blog-header .s-sub{

        font-size:14px;

    }

    .bs-img-1,
    .bs-img-2,
    .bs-img-3{

        height:190px;

    }

    .bs-body{

        padding:18px;

    }

    .bs-title{

        font-size:18px;

    }

    .bs-excerpt{

        font-size:14px;

    }

}

/* ═══════════════════════════════════════════

   Features folder html file's css code

═══════════════════════════════════════════ */

:root {

  --teal:        #00BFA5;

  --teal-dark:   #009688;

  --teal-light:  #E0F7F4;

  --navy:        #1A2B3C;

  --charcoal:    #2D3748;

  --body-text:   #4A5568;

  --muted:       #718096;

  --border:      #E2E8F0;

  --bg-white:    #FFFFFF;

  --bg-pale:     #F7FAFB;

  --bg-dark:     #1B2B3A;



  --font-head:  'Manrope', sans-serif;

  --font-body:  'Inter', sans-serif;



  --radius-sm:  6px;

  --radius-md:  12px;

  --radius-lg:  20px;



  --shadow-sm:  0 2px 8px rgba(0,0,0,0.06);

  --shadow-md:  0 6px 24px rgba(0,0,0,0.09);

}



html { font-size: 16px; scroll-behavior: smooth; }



body {

  font-family: var(--font-body);

  color: var(--charcoal);

  background: var(--bg-white);

  line-height: 1.6;

  -webkit-font-smoothing: antialiased;

}



img { display: block; max-width: 100%; }

a  { text-decoration: none; color: inherit; }



/* ═══════════════════════════════════════════

   SHARED UTILITIES

═══════════════════════════════════════════ */

.container {

  max-width: 1120px;

  margin: 0 auto;

  padding: 0 24px;

}



.section-title {

  font-family: var(--font-head);

  font-size: clamp(1.4rem, 2.5vw, 2rem);

  font-weight: 700;

  color: var(--navy);

  line-height: 1.25;

  margin-bottom: 28px;

}



.highlight { color: var(--teal); }

.brand-teal { color: var(--teal); }



/* Buttons */

.btn {

  display: inline-flex;

  align-items: center;

  gap: 6px;

  font-family: var(--font-body);

  font-size: 0.875rem;

  font-weight: 600;

  padding: 11px 22px;

  border-radius: var(--radius-sm);

  cursor: pointer;

  transition: all 0.2s ease;

  border: 2px solid transparent;

}



.btn--outline {

  border-color: var(--teal);

  color: var(--teal);

  background: transparent;

}

.btn--outline:hover { background: var(--teal-light); }



.btn--teal {

  background: var(--teal);

  color: #fff;

  border-color: var(--teal);

}

.btn--teal:hover { background: var(--teal-dark); border-color: var(--teal-dark); }



.btn--dark {

  background: var(--navy);

  color: #fff;

  border-color: var(--navy);

}

.btn--dark:hover { background: var(--charcoal); }



.btn--white {

  background: #fff;

  color: var(--navy);

  border-color: #fff;

  font-weight: 700;

}

.btn--white:hover { background: #f0fdfb; }



/* ═══════════════════════════════════════════

   HERO

═══════════════════════════════════════════ */

.hero-f {

  background: linear-gradient(135deg, #EEF9F7 0%, #F5FFFE 60%, #EAF6F8 100%);

  padding: 64px 24px 0;

  overflow: hidden;

}



.hero__inner {

   max-width: 1120px;

  margin: 0 auto;

  display: grid;

  grid-template-columns: 1fr 1fr;

  align-items: center;

  gap: 40px;

}



.hero__content {

  padding-bottom: 60px;

}



.hero__eyebrow {

  display: inline-block;

  font-family: var(--font-body);

  font-size: 0.72rem;

  font-weight: 700;

  letter-spacing: 0.08em;

  text-transform: uppercase;

  color: var(--teal-dark);

  background: var(--teal-light);

  padding: 5px 12px;

  border-radius: 4px;

  margin-bottom: 20px;

}



.hero__headline {

  font-family: var(--font-head);

  font-size: clamp(1.75rem, 3.5vw, 2.75rem);

  font-weight: 800;

  color: var(--navy);

  line-height: 1.2;

}



.hero__image-wrap {

  position: relative;

  border-radius: var(--radius-lg) var(--radius-lg) 0 0;

  overflow: hidden;

  max-height: 380px;

  box-shadow: var(--shadow-md);

}



.hero__image {

  width: 100%;

  height: 380px;

  object-fit: cover;

  object-position: center top;

}



/* ═══════════════════════════════════════════

   BREADCRUMB

═══════════════════════════════════════════ */

.breadcrumb {

  display: flex;

  align-items: center;

  gap: 8px;

  max-width: 1120px;

  margin: 20px auto;

  padding: 0 24px;

  font-size: 0.82rem;

  color: var(--muted);

}



.breadcrumb .sep { color: var(--border); }

.breadcrumb .active { color: var(--charcoal); font-weight: 500; }



/* ═══════════════════════════════════════════

   HOW IT HELPS

═══════════════════════════════════════════ */

.helps {

  padding: 64px 24px;

  background: var(--bg-white);

}



.helps__inner {

  display: grid;

  grid-template-columns: 1fr 1fr;

  align-items: center;

  gap: 60px;

}



.feature-item {

  display: flex;

  align-items: flex-start;

  gap: 14px;

  margin-bottom: 28px;

}



.feature-item__icon {

  flex-shrink: 0;

  width: 24px;

  height: 24px;

  margin-top: 2px;

}



.feature-item__icon svg { width: 100%; height: 100%; }



.feature-item__title {

  font-family: var(--font-head);

  font-size: 0.95rem;

  font-weight: 700;

  color: var(--navy);

  margin-bottom: 5px;

}



.feature-item__desc {

  font-size: 0.85rem;

  color: var(--body-text);

  line-height: 1.65;

}



.helps__visual {

  border-radius: var(--radius-lg);

  overflow: hidden;

  box-shadow: var(--shadow-md);

}



.helps__img {

  width: 100%;

  height: 360px;

  object-fit: cover;

}







/* ═══════════════════════════════════════════

   MEET AXON

═══════════════════════════════════════════ */

.axon {

  background: var(--bg-pale);

  padding: 80px 24px;

}



.axon__inner {

  display: grid;

  grid-template-columns: 1fr 1fr;

  align-items: center;

  gap: 64px;

}



.axon__visual {

  border-radius: var(--radius-lg);

  overflow: hidden;

  box-shadow: var(--shadow-md);

}



.axon__img {

  width: 100%;

  height: 420px;

  object-fit: cover;

}



.axon__heading { margin-bottom: 32px; }



.axon__features { display: flex; flex-direction: column; gap: 20px; margin-bottom: 36px; }



.axon-feat {

  display: flex;

  align-items: flex-start;

  gap: 12px;

}



.axon-feat__check {

  flex-shrink: 0;

  width: 20px;

  height: 20px;

  margin-top: 2px;

}

.axon-feat__check svg { width: 100%; height: 100%; }



.axon-feat strong {

  display: block;

  font-family: var(--font-head);

  font-size: 0.9rem;

  font-weight: 700;

  color: var(--navy);

  margin-bottom: 3px;

}



.axon-feat p {

  font-size: 0.83rem;

  color: var(--body-text);

  line-height: 1.6;

}



/* ═══════════════════════════════════════════

   CAPABILITIES SUITE

═══════════════════════════════════════════ */

.suite {

  padding: 80px 24px;

  background: var(--bg-white);

  text-align: center;

}



.suite__eyebrow {

  font-size: 0.72rem;

  font-weight: 700;

  letter-spacing: 0.12em;

  text-transform: uppercase;

  color: var(--teal);

  margin-bottom: 14px;

}



.suite__heading {

  font-family: var(--font-head);

  font-size: clamp(1.5rem, 3vw, 2.25rem);

  font-weight: 800;

  color: var(--navy);

  margin-bottom: 12px;

}



.suite__sub {

  font-size: 0.9rem;

  color: var(--body-text);

  max-width: 560px;

  margin: 0 auto 48px;

  line-height: 1.65;

}



.suite__cards {

  display: grid;

  grid-template-columns: repeat(3, 1fr);

  gap: 24px;

  margin-bottom: 32px;

}



.suite-card {

  background: var(--bg-white);

  border: 1.5px solid var(--border);

  border-radius: var(--radius-md);

  padding: 32px 28px;

  text-align: left;

  transition: box-shadow 0.2s ease, border-color 0.2s ease;

}



.suite-card:hover,

.suite-card--active {

  border-color: var(--teal);

  box-shadow: var(--shadow-md);

}



.suite-card__icon {

  width: 52px;

  height: 52px;

  border-radius: 50%;

  display: flex;

  align-items: center;

  justify-content: center;

  margin-bottom: 18px;

}



.suite-card__icon svg { width: 42px; height: 42px; }



.suite-card__title {

  font-family: var(--font-head);

  font-size: 1rem;

  font-weight: 700;

  color: var(--navy);

  margin-bottom: 10px;

}



.suite-card__desc {

  font-size: 0.83rem;

  color: var(--body-text);

  line-height: 1.65;

}



/* Pagination dots */

.suite__dots {

  display: flex;

  justify-content: center;

  gap: 7px;

}



.dot {

  width: 8px;

  height: 8px;

  border-radius: 50%;

  background: var(--border);

}

.dot--active {

  background: var(--teal);

  width: 22px;

  border-radius: 4px;

}



/* ═══════════════════════════════════════════

   FAQ

═══════════════════════════════════════════ */

.faq {

  padding: 80px 24px;

  background: var(--bg-pale);

}



.faq__inner {

  display: grid;

  grid-template-columns: 320px 1fr;

  gap: 64px;

  align-items: flex-start;

}



.faq__eyebrow {

  font-size: 0.72rem;

  font-weight: 700;

  letter-spacing: 0.1em;

  text-transform: uppercase;

  color: var(--teal);

  margin-bottom: 12px;

}



.faq__heading {

  font-family: var(--font-head);

  font-size: clamp(1.4rem, 2.5vw, 2rem);

  font-weight: 800;

  color: var(--navy);

  line-height: 1.2;

  margin-bottom: 16px;

}



.faq__cta-text {

  font-size: 0.85rem;

  color: var(--body-text);

  margin-bottom: 28px;

  line-height: 1.6;

}



.faq__cta-text a { color: var(--teal); font-weight: 600; }

.faq__cta-text a:hover { text-decoration: underline; }



/* FAQ items */

.faq-item {

  border-bottom: 1.5px solid var(--border);

  padding: 18px 0;

}



.faq-item:first-child { border-top: 0.5px solid var(--border); }



.faq-item__q {

  font-family: var(--font-head);

  font-size: 0.9rem;

  font-weight: 600;

  color: var(--navy);

  cursor: pointer;

  list-style: none;

  display: flex;

  justify-content: space-between;

  align-items: center;

  gap: 12px;

  user-select: none;

}



.faq-item__q::after {

  content: '+';

  font-size: 1.3rem;

  font-weight: 400;

  color: var(--teal);

  flex-shrink: 0;

  transition: transform 0.2s;

}



.faq-item[open] > .faq-item__q::after {

  content: '×';

}



.faq-item__a {

  font-size: 0.85rem;

  color: var(--body-text);

  line-height: 1.7;

  padding-top: 12px;

}



.faq-item--open { }



/* ═══════════════════════════════════════════

   CTA BANNER

═══════════════════════════════════════════ */

.cta-banner {

  background: linear-gradient(90deg, #1B3A4B 0%, #0D2E3C 100%);

  padding: 36px 24px;

}



.cta-banner__inner {

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 24px;

  flex-wrap: wrap;

}



.cta-banner__text {

  font-family: var(--font-head);

  font-size: clamp(0.95rem, 1.8vw, 1.1rem);

  font-weight: 600;

  color: #fff;

  max-width: 680px;

  line-height: 1.5;

}



/* ═══════════════════════════════════════════

   RESPONSIVE

═══════════════════════════════════════════ */

@media (max-width: 900px) {

  .hero__inner,

  .helps__inner,

  .axon__inner,

  .faq__inner {

    grid-template-columns: 1fr;

  }



  .hero__image-wrap { max-height: 260px; }

  .hero__image      { height: 260px; }



  .hero__content { padding-bottom: 0; }



  .axon__inner { direction: ltr; }



  .suite__cards { grid-template-columns: 1fr; }



  .faq__inner { grid-template-columns: 1fr; }

}



@media (max-width: 560px) {

  .cta-banner__inner { flex-direction: column; align-items: flex-start; }

}



/*axon*/



.ai-copilot-btn{

    display:inline-flex;

    align-items:center;

    gap:10px;

    padding:5px 15px;

    border-radius:50px;

    text-decoration:none;



    background:linear-gradient(90deg, #0d9488, #0891b2, #6366f1, #0891b2, #0d9488);



    border:2px solid rgba(255,255,255,.25);



    color:#fff;

    font-family:"DM Sans",sans-serif;

    font-size:15px;

    /* font-weight:700; */



    box-shadow:

        0 4px 15px rgba(75,121,216,.35),

        inset 0 1px 0 rgba(255,255,255,.25);



    transition:all .3s ease;

}



.ai-copilot-btn:hover{

    transform:translateY(-2px);

    box-shadow:

        0 8px 22px rgba(75,121,216,.45),

        inset 0 1px 0 rgba(255,255,255,.25);

}

.copilot-icon{

    width:28px;

    height:28px;

    border-radius:8px;



    display:flex;

    align-items:center;

    justify-content:center;



    background:rgba(255,255,255,.15);

    border:1px solid rgba(255,255,255,.25);



    font-size:14px;

}

.copilot-text{

    white-space:nowrap;

}

/* ════ GETTING STARTED — DENTAL ════ */

.getting-started-dental {

  padding: 80px 1rem;

  background: var(--gray-100);

}

.gs-header {

  margin-bottom: 56px;

  text-align: center;

}

.gs-eyebrow {

  font-size: .72rem;

  font-weight: 700;

  letter-spacing: 1.5px;

  text-transform: uppercase;

  color: var(--teal);

  margin-bottom: 10px;

}

/* .gs-title {

  font-family: "DM Sans", sans-serif;

  font-size: clamp(1.8rem, 3vw, 2.4rem);

  font-weight: 800;

  color: var(--navy);

  line-height: 1.2;

  letter-spacing: -.5px;

  margin-bottom: 12px;

} */

.gs-title-accent {

  color: var(--teal);

}

.gs-sub {

  font-size: .97rem;

  color: var(--text-mid);

  line-height: 1.75;

  /* max-width: 480px; */

  font-weight: 400;

}

/* Timeline grid */

.gs-timeline {

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  position: relative;

  gap: 0;

}

/* Horizontal connecting line */

.gs-line {

  position: absolute;

  top: 36px;

  left: calc(12.5%);

  right: calc(12.5%);

  height: 2px;

  background: linear-gradient(90deg, var(--teal), var(--teal-light));

  z-index: 0;

}

/* Each step */

.gs-step {

  display: flex;

  flex-direction: column;

  align-items: center;

  text-align: center;

  padding: 0 16px;

  position: relative;

  z-index: 1;

}

/* Numbered circle */

.gs-node {

  width: 72px;

  height: 72px;

  border-radius: 50%;

  background: var(--teal);

  color: #fff;

  font-family: "DM Sans", sans-serif;

  font-size: 1.5rem;

  font-weight: 800;

  display: grid;

  place-items: center;

  margin-bottom: 22px;

  flex-shrink: 0;

  border: 4px solid var(--gray-100);

  box-shadow: 0 0 0 2px var(--teal);

  transition: transform .25s;

}

.gs-step:hover .gs-node {

  transform: scale(1.08);

}

.gs-node-last {

  background: linear-gradient(135deg, var(--teal), var(--teal-dark));

}

/* Text content */

.gs-content {

  display: flex;

  flex-direction: column;

  align-items: center;

  gap: 8px;

}

.gs-step-title {

  font-family: "DM Sans", sans-serif;

  font-size: .97rem;

  font-weight: 700;

  color: var(--navy);

  margin-bottom: 2px;

}

.gs-step-desc {

  font-size: .82rem;

  color: var(--text-mid);

  line-height: 1.65;

  font-weight: 400;

  max-width: 200px;

}



/* Time badge */

.gs-time {

  display: inline-flex;

  align-items: center;

  gap: 5px;

  font-size: .72rem;

  font-weight: 600;

  color: var(--text-light);

  background: #fff;

  border: 1.5px solid var(--gray-200);

  padding: 4px 12px;

  border-radius: 20px;

  margin-top: 4px;

}

.gs-time-live {

  color: #16A34A;

  background: #F0FDF4;

  border-color: #86EFAC;

}



/* Responsive */

@media (max-width: 900px) {

  .gs-timeline {

    grid-template-columns: 1fr;

    gap: 0;

  }

  .gs-line {

    display: none;

  }

  .gs-step {

    flex-direction: row;

    text-align: left;

    align-items: flex-start;

    gap: 20px;

    padding: 20px 0;

    border-bottom: 1.5px solid var(--gray-200);

  }

  .gs-step:last-child {

    border-bottom: none;

  }

  .gs-node {

    margin-bottom: 0;

    flex-shrink: 0;

    width: 56px;

    height: 56px;

    font-size: 1.2rem;

  }

  .gs-content {

    align-items: flex-start;

  }

  .gs-step-desc {

    max-width: 100%;

  }

}



/* ════ CLINIC TYPES SECTION ════ */

.clinic-types-sec {

  padding: 100px 1rem;

  background: #fff;

}

.ct-header {

  margin-bottom: 28px;

}

.ct-eyebrow {

  font-size: .72rem;

  font-weight: 700;

  letter-spacing: 1.5px;

  text-transform: uppercase;

  color: var(--teal);

  margin-bottom: 10px;

}

.ct-title {

  font-family: "DM Sans", sans-serif;

  font-size: clamp(1.9rem, 3.2vw, 2.6rem);

  font-weight: 700;

  color: var(--navy);

  line-height: 1.15;

  letter-spacing: -.6px;

  margin: 0;

}

.ct-title-accent {

  color: var(--teal);

}



/* ── Tab Buttons ── */

.ct-tabs {

  display: flex;

  gap: 0;

  margin-bottom: 20px;

  border-bottom: 2px solid var(--gray-200);

  flex-wrap: wrap;

}

.ct-tab {

  padding: 11px 24px;

  font-family: "DM Sans", sans-serif;

  font-size: .9rem;

  font-weight: 600;

  color: var(--text-mid);

  background: transparent;

  border: none;

  border-bottom: 3px solid transparent;

  margin-bottom: -2px;

  cursor: pointer;

  transition: all .2s;

  white-space: nowrap;

}

.ct-tab:hover {

  color: var(--teal);

}

.ct-tab-active {

  color: var(--teal-dark);

  border-bottom-color: var(--teal);

  /* background: var(--teal-pale); */

  border-radius: 8px 8px 0 0;

}



/* ── Panels ── */

.ct-panels {

  position: relative;

}

.ct-panel {

  display: none;

  grid-template-columns: 1fr 1fr;

  gap: 64px;

  align-items: center;

}

.ct-panel-active {

  display: grid;

}



/* Left content */

.ct-panel-title {

  font-family: "DM Sans", sans-serif;

  font-size: 2rem;

  font-weight: 700;

  color: var(--navy);

  margin-bottom: 12px;

  line-height: 1.2;

}

.ct-panel-desc {

  font-size: .97rem;

  color: var(--text-mid);

  line-height: 1.78;

  font-weight: 400;

  margin-bottom: 24px;

}

.ct-bullets {

  list-style: none;

  padding: 0;

  margin: 0 0 28px;

  display: flex;

  flex-direction: column;

  gap: 11px;

}

.ct-bullets li {

  display: flex;

  align-items: center;

  gap: 10px;

  font-size: .92rem;

  color: var(--text);

  font-weight: 500;

}

.ct-check {

  width: 22px;

  height: 22px;

  border-radius: 50%;

  background: var(--teal);

  color: #fff;

  display: grid;

  place-items: center;

  flex-shrink: 0;

}

.ct-cta {

  display: inline-flex;

  align-items: center;

  gap: 6px;

  padding: 13px 26px;

  border-radius: 10px;

  background: #0a92a1;

  color: #fff;

  font-family: "DM Sans", sans-serif;

  font-size: .92rem;

  font-weight: 700;

  text-decoration: none;

  transition: all .22s;

}

.ct-cta:hover {

  background: var(--teal-dark);

  color: #fff;

  transform: translateY(-2px);

}



/* ── Mockup Card (right) ── */

.ct-panel-right {

  display: flex;

  align-items: center;

  justify-content: center;

}

.ct-mockup {

  background: #fff;

  border: 1.5px solid var(--gray-200);

  border-radius: 18px;

  padding: 22px;

  width: 100%;

  box-shadow: 0 8px 40px rgba(0,0,0,.06);

}

.ct-mockup-header {

  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-bottom: 18px;

  padding-bottom: 14px;

  border-bottom: 1.5px solid var(--gray-200);

}

.ct-mockup-title {

  font-size: .85rem;

  font-weight: 700;

  color: var(--navy);

}

.ct-live-dot {

  display: inline-flex;

  align-items: center;

  gap: 6px;

  font-size: .72rem;

  font-weight: 700;

  color: #16A34A;

  background: #F0FDF4;

  border: 1.5px solid #86EFAC;

  padding: 3px 10px;

  border-radius: 20px;

}

.ct-live-pulse {

  width: 7px;

  height: 7px;

  border-radius: 50%;

  background: #22C55E;

  display: inline-block;

  animation: ctPulse 2s infinite;

}

@keyframes ctPulse {

  0%,100% { opacity: 1; }

  50% { opacity: .4; }

}

.ct-mockup-grid {

  display: grid;

  grid-template-columns: 1fr 1fr;

  gap: 12px;

}

.ct-stat-card {

  background: var(--teal-pale);

  border: 1.5px solid var(--teal-pale2);

  border-radius: 12px;

  padding: 18px 16px;

  text-align: center;

}

.ct-stat-num {

  font-family: "DM Sans", sans-serif;

  font-size: 1.5rem;

  font-weight: 800;

  color: var(--teal-dark);

  line-height: 1;

  margin-bottom: 5px;

}

.ct-stat-label {

  font-size: .72rem;

  font-weight: 600;

  color: var(--text-light);

  text-transform: uppercase;

  letter-spacing: .5px;

}



/* Responsive */

@media (max-width: 991px) {

  .ct-panel-active {

    grid-template-columns: 1fr;

    gap: 36px;

  }

  .ct-mockup-grid {

    grid-template-columns: repeat(4, 1fr);

  }

}

@media (max-width: 640px) {

  .ct-tabs {

    gap: 4px;

  }

  .ct-tab {

    padding: 9px 14px;

    font-size: .8rem;

  }

  .ct-mockup-grid {

    grid-template-columns: 1fr 1fr;

  }

}





/*contatc*/

.section-padding {

  padding: 60px 0;

}



/* HERO */

.contact-hero {

  padding: 140px 0 100px;

  background: linear-gradient(145deg,

      #fff 0%,

      #E6F9F9 60%,

      #F8FFFF 100%);

  position: relative;

  overflow: hidden;

}



.contact-hero::before {

  content: '';

  position: absolute;

  width: 500px;

  height: 500px;

  right: -150px;

  top: -150px;

  border-radius: 50%;

  background: rgba(0, 180, 180, .08);

}



.hero-badge {

  display: inline-flex;

  align-items: center;

  gap: 8px;

  background: #fff;

  border: 1px solid var(--teal-pale2);

  border-radius: 100px;

  padding: 8px 18px;

  color: var(--teal-dark);

  font-size: .85rem;

  font-weight: 600;

}



.contact-hero h1 {

  font-size: 2.6rem;

  font-weight: 800;

  margin: 20px 0;

  line-height: 1.1;

}



.contact-hero p {

  color: var(--text-mid);

  font-size: 1.1rem;

  line-height: 1.8;

}



.gradient-text {

  color: var(--teal);

}



.hero-card {

  background: #fff;

  border-radius: 24px;

  padding: 35px;

  box-shadow: 0 20px 60px rgba(0, 180, 180, .12);

  border: 1px solid var(--teal-pale2);

}



.hero-card h5 {

  font-weight: 700;

  margin-bottom: 20px;

}



.hero-contact {

  display: flex;

  align-items: center;

  gap: 15px;

  margin-bottom: 20px;

}



.hero-contact i {

  width: 48px;

  height: 48px;

  border-radius: 12px;

  background: var(--teal-pale);

  color: var(--teal);

  display: flex;

  align-items: center;

  justify-content: center;

}



/* CONTACT CARDS */

.contact-card {

  background: #fff;

  border: 1px solid #e5eef5;

  border-radius: 20px;

  padding: 35px;

  text-align: center;

  transition: .3s;

  height: 100%;

}



.contact-card:hover {

  transform: translateY(-8px);

  box-shadow: 0 15px 45px rgba(0, 180, 180, .12);

}



.contact-icon {

  width: 70px;

  height: 70px;

  margin: auto;

  border-radius: 18px;

  background: var(--teal-pale);

  color: var(--teal);

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 28px;

  margin-bottom: 20px;

}



/* FORM */

.form-section {

  background: var(--off-white);

}



.form-card {

  background: #fff;

  border-radius: 24px;

  padding: 40px;

  box-shadow: 0 15px 50px rgba(0, 0, 0, .05);

}



.form-control,

.form-select {

  height: 55px;

  border-radius: 12px;

  border: 1px solid #d9e6ef;

}



textarea.form-control {

  height: 140px;

}



.btn-cliniify {

  background: var(--teal-grad);

  color: #fff;

  border: none;

  padding: 14px 28px;

  border-radius: 12px;

  font-weight: 600;

}



.btn-cliniify:hover {

  color: #fff;

}



/* STATS */

.stats-box {

  background: var(--navy);

  color: #fff;

  border-radius: 24px;

  padding: 40px;

  height: 100%;

}



.stat {

  margin-bottom: 35px;

}



.stat h2 {

  color: var(--teal);

  font-weight: 800;

}



/* FAQ */

.accordion-item {

  border: none;

  margin-bottom: 15px;

  border-radius: 15px !important;

  overflow: hidden;

}



.accordion-button {

  padding: 20px;

  font-weight: 600;

}



.accordion-button:not(.collapsed) {

  background: var(--teal-pale);

  color: var(--teal-dark);

}



/* CTA */

.cta-section {

  background: var(--teal-grad);

  color: #fff;

  border-radius: 30px;

  padding: 70px 50px;

  text-align: center;

}



.cta-section h2 {

  font-size: 2.5rem;

  font-weight: 800;

}



.btn-white {

  background: #fff;

  color: var(--teal);

  padding: 14px 30px;

  border-radius: 12px;

  text-decoration: none;

  display: inline-block;

  font-weight: 700;

}



@media(max-width:991px) {

  .contact-hero h1 {

    font-size: 2.5rem;

  }



  .section-padding {

    padding: 70px 0;

  }



  .hero-card {

    margin-top: 40px;

  }

}



/* ── HERO STATS BAR ── */

.hero-stats-bar {

  display: flex;

  align-items: center;

  gap: 0;

  margin-top: 36px;

  background: rgba(255, 255, 255, 0.85);

  border: 1.5px solid var(--teal-pale2);

  border-radius: 14px;

  padding: 18px 24px;

  backdrop-filter: blur(10px);

  max-width: 520px;

}



.hero-stat-item {

  flex: 1;

  text-align: center;

}



.hero-stat-num {

  font-family: "DM Sans", sans-serif;

  font-size: 1.45rem;

  font-weight: 800;

  color: var(--navy);

  line-height: 1;

  margin-bottom: 5px;

  text-align: justify;

}



.hero-stat-plus {

  color: var(--teal);

  font-size: 1.2rem;

}



.hero-stat-star {

  color: #F59E0B;

  font-size: 1.1rem;

}



.hero-stat-unit {

  font-size: 1rem;

  font-weight: 700;

  color: var(--navy);

}



.hero-stat-label {

  font-size: .7rem;

  font-weight: 600;

  color: var(--text-light);

  text-transform: uppercase;

  letter-spacing: .5px;

  white-space: nowrap;

}



.hero-stat-div {

  width: 1px;

  height: 36px;

  background: var(--gray-200);

  flex-shrink: 0;

  margin: 0 4px;

}



/* Mobile */

@media (max-width: 576px) {

  .hero-stats-bar {

    flex-wrap: wrap;

    gap: 16px;

    max-width: 100%;

  }

  .hero-stat-div {

    display: none;

  }

  .hero-stat-item {

    flex: 1 1 calc(50% - 16px);

  }

}



/* ════ DENTAL DASHBOARD CARD ════ */

.dd-card {

  background: #fff;

  border: 1.5px solid #E0E8F0;

  border-radius: 20px;

  padding: 22px;

  width: 100%;

  max-width: 420px;

  box-shadow: 0 20px 60px rgba(0,180,180,.13), 0 4px 20px rgba(0,0,0,.06);

  font-family: "DM Sans", sans-serif;

}



/* Header */

.dd-header {

  display: flex;

  align-items: center;

  justify-content: space-between;

  margin-bottom: 18px;

}

.dd-header-title {

  font-size: .95rem;

  font-weight: 800;

  color: #0a192f;

}

.dd-live {

  display: inline-flex;

  align-items: center;

  gap: 6px;

  font-size: .7rem;

  font-weight: 700;

  color: #16A34A;

  background: #F0FDF4;

  border: 1.5px solid #86EFAC;

  padding: 3px 10px;

  border-radius: 20px;

}

.dd-live-dot {

  width: 7px;

  height: 7px;

  border-radius: 50%;

  background: #22C55E;

  display: inline-block;

  animation: ddPulse 2s infinite;

}

@keyframes ddPulse {

  0%,100% { opacity: 1; }

  50% { opacity: .35; }

}



/* KPI Row */

.dd-kpi-row {

  display: grid;

  grid-template-columns: repeat(3,1fr);

  gap: 10px;

  margin-bottom: 16px;

}

.dd-kpi {

  background: #F7FEFE;

  border: 1.5px solid #C0EFEF;

  border-radius: 12px;

  padding: 14px 12px;

  text-align: center;

}

.dd-kpi-num {

  font-size: 1.5rem;

  font-weight: 800;

  color: #00B4B4;

  line-height: 1;

  margin-bottom: 4px;

}

.dd-kpi-label {

  font-size: .65rem;

  font-weight: 600;

  color: #7A90AA;

  text-transform: uppercase;

  letter-spacing: .4px;

  margin-bottom: 4px;

}

.dd-kpi-trend {

  font-size: .68rem;

  font-weight: 700;

}

.dd-trend-up { color: #16A34A; }

.dd-trend-dn { color: #DC2626; }



/* Appointment rows */

.dd-appts {

  display: flex;

  flex-direction: column;

  gap: 8px;

  margin-bottom: 14px;

}

.dd-appt {

  display: flex;

  align-items: center;

  gap: 10px;

  background: #F7FEFE;

  border: 1.5px solid #E0E8F0;

  border-radius: 11px;

  padding: 10px 12px;

}

.dd-av {

  width: 34px;

  height: 34px;

  border-radius: 50%;

  display: grid;

  place-items: center;

  font-size: .65rem;

  font-weight: 800;

  color: #fff;

  flex-shrink: 0;

}

.dd-appt-info { flex: 1; min-width: 0; }

.dd-appt-name {

  font-size: .82rem;

  font-weight: 700;

  color: #0a192f;

  margin-bottom: 2px;

}

.dd-appt-sub {

  font-size: .68rem;

  color: #7A90AA;

  font-weight: 500;

  display: flex;

  align-items: center;

  gap: 4px;

}

.dd-appt-time {

  font-size: .7rem;

  font-weight: 600;

  color: #7A90AA;

  white-space: nowrap;

  margin-right: 8px;

}



/* Status badges */

.dd-badge {

  font-size: .62rem;

  font-weight: 800;

  padding: 4px 10px;

  border-radius: 20px;

  white-space: nowrap;

}

.dd-badge-confirmed {

  background: #E6F9F9;

  color: #007A7A;

  border: 1px solid #C0EFEF;

}

.dd-badge-waiting {

  background: #FFF7ED;

  color: #C2410C;

  border: 1px solid #FED7AA;

}

.dd-badge-upcoming {

  background: #EDE9FE;

  color: #5B21B6;

  border: 1px solid #C4B5FD;

}



/* AI footer bar */

.dd-ai-bar {

  background: #F0FDF9;

  border: 1.5px solid #C0EFEF;

  border-radius: 11px;

  padding: 12px 14px;

  display: flex;

  align-items: center;

  justify-content: space-between;

  gap: 10px;

}

.dd-ai-left {

  display: flex;

  align-items: center;

  gap: 7px;

  font-size: .75rem;

  font-weight: 600;

  color: #4A6080;

}

.dd-ai-right {

  text-align: right;

  flex-shrink: 0;

}

.dd-ai-pct {

  font-size: 1.3rem;

  font-weight: 800;

  color: #00B4B4;

  line-height: 1;

}

.dd-ai-label {

  font-size: .62rem;

  font-weight: 600;

  color: #7A90AA;

  white-space: nowrap;

}



/* Responsive: on small screens cap card width */

@media (max-width: 1100px) {

  .dd-card { max-width: 100%; }

}



/*blog*/

/* ── Blog Hero — About Us style ── */

         .blog-hero {

            background: linear-gradient(135deg, #eafdfb 0%, #e3f6f4 50%, #eef9fb 100%);

            padding: 80px 0 64px;

            text-align: center;

         }

         .blog-hero-tag {

            display: inline-flex;

            align-items: center;

            gap: 8px;

            background: #fff;

            border: 1px solid var(--gray-200);

            color: var(--navy);

            font-size: 0.8rem;

            font-weight: 700;

            padding: 9px 20px;

            border-radius: 30px;

            box-shadow: 0 4px 14px rgba(15,40,60,.05);

            margin-bottom: 28px;

         }

         .blog-hero-tag .dot {

            width: 7px;

            height: 7px;

            border-radius: 50%;

            background: #22c55e;

            box-shadow: 0 0 0 4px rgba(34,197,94,0.18);

         }

         .blog-hero h1 {

            font-size: 3rem;

            font-weight: 800;

            color: var(--navy);

            line-height: 1.15;

            margin: 0 0 8px;

         }

         .blog-hero h1 .tl {

            display: block;

            color: var(--teal);

         }

         .blog-hero p {

            color: var(--text-mid);

            max-width: 620px;

            margin: 22px auto 34px;

            font-size: 1.05rem;

            line-height: 1.6;

         }

         .blog-hero-btns {

            display: flex;

            gap: 14px;

            justify-content: center;

            flex-wrap: wrap;

         }

         .bh-btn-primary {

            display: inline-flex;

            align-items: center;

            gap: 9px;

            background: var(--teal);

            color: #fff;

            font-weight: 700;

            font-size: 0.95rem;

            padding: 15px 28px;

            border-radius: 12px;

            text-decoration: none;

            transition: transform .2s, box-shadow .2s;

         }

         .bh-btn-primary:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(0,180,150,.28); }

         .bh-btn-secondary {

            display: inline-flex;

            align-items: center;

            gap: 9px;

            background: #fff;

            color: var(--navy);

            font-weight: 700;

            font-size: 0.95rem;

            padding: 15px 28px;

            border-radius: 12px;

            text-decoration: none;

            border: 1.5px solid var(--gray-200);

            transition: transform .2s, box-shadow .2s;

         }

         .bh-btn-secondary:hover { transform: translateY(-2px); box-shadow: 0 10px 22px rgba(15,40,60,.07); }

         /* Breadcrumb bar */

         .blog-breadcrumb {

            background: #fff;

            border-bottom: 1px solid var(--gray-200);

            padding: 16px 0;

            margin-top: 35px;  

            position: relative;

            z-index: 1;

         }

         .blog-breadcrumb .sw {

            display: flex;

            align-items: center;

            gap: 8px;

            font-size: 0.85rem;

            font-weight: 600;

         }

         .blog-breadcrumb a {

            color: var(--text-light);

            text-decoration: none;

         }

         .blog-breadcrumb a:hover { color: var(--teal-dark); }

         .blog-breadcrumb .bc-sep { color: var(--gray-300); font-size: 0.75rem; }

         .blog-breadcrumb .bc-current { color: var(--teal-dark); }



         /* ── Blog Listing ── */

         .blog-cats {

            display: flex;

            gap: 10px;

            flex-wrap: wrap;

            justify-content: center;

            margin: 38px 0 36px;

         }

         .blog-cat-chip {

            border: 1.5px solid var(--gray-200);

            background: #fff;

            color: var(--text-mid);

            font-size: 0.85rem;

            font-weight: 600;

            padding: 9px 20px;

            border-radius: 30px;

            cursor: pointer;

            transition: all .2s;

            font-family: "DM Sans", sans-serif;

         }

         .blog-cat-chip:hover { border-color: var(--teal); color: var(--teal-dark); }

         .blog-cat-chip.active {

            background: var(--teal-grad, var(--teal));

            color: #fff;

            border-color: transparent;

         }

         .blog-feat {

            display: grid;

            grid-template-columns: 1.1fr 1fr;

            gap: 32px;

            margin-bottom: 56px;

            align-items: center;

         }

         .blog-feat-img {

            border-radius: 18px;

            overflow: hidden;

            aspect-ratio: 16/11;

         }

         .blog-feat-img img {

           width: 100%; 

           height: 100%; 

           /* object-fit: cover;  */

           display:block; 

          }

         .blog-feat-badge {

            display: inline-flex;

            align-items: center;

            gap: 6px;

            background: var(--teal-pale);

            color: var(--teal-dark);

            font-size: 0.7rem;

            font-weight: 700;

            letter-spacing: .5px;

            padding: 5px 12px;

            border-radius: 20px;

            text-transform: uppercase;

            margin-bottom: 14px;

         }

         .blog-feat-title {

            font-size: 1.7rem;

            font-weight: 700;

            color: var(--navy);

            line-height: 1.25;

            margin-bottom: 14px;

         }

         .blog-feat-title a {

            color: inherit;

            text-decoration: none;

            transition: color 0.35s ease;

        }

        .blog-feat-title a:hover {

            color: var(--teal-deep);

        }

         .blog-feat-excerpt {

            color: var(--text-mid);

            font-size: 0.95rem;

            line-height: 1.6;

            margin-bottom: 20px;

         }

         .blog-feat-meta {

            display: flex;

            align-items: center;

            gap: 14px;

            font-size: 0.8rem;

            color: var(--text-light);

            font-weight: 600;

         }

         .blog-feat-meta .dot { width: 4px; height: 4px; border-radius: 50%; background: var(--gray-300); }

         .blog-grid {

            display: grid;

            grid-template-columns: repeat(3, 1fr);

            gap: 28px;

         }

         .bg-card {

            background: #fff;

            border: 1.5px solid var(--gray-200);

            border-radius: 16px;

            overflow: hidden;

            transition: transform .25s, box-shadow .25s;

            display: flex;

            flex-direction: column;

         }

         .bg-card:hover { transform: translateY(-5px); box-shadow: 0 16px 32px rgba(15,40,60,.08); }

         .bg-card-img { aspect-ratio: 16/10; overflow: hidden; position: relative; }

         .bg-card-img img { 

          width: 100%; 

          height: 100%; 

          /* object-fit: cover;  */

          display: block; 

        }

         .bg-card-cat {

            position: absolute;

            top: 12px;

            left: 12px;

            background: rgba(255,255,255,0.92);

            color: var(--teal-dark);

            font-size: 0.65rem;

            font-weight: 700;

            letter-spacing: .4px;

            text-transform: uppercase;

            padding: 4px 10px;

            border-radius: 16px;

         }

         .bg-card-body { padding: 20px 20px 22px; display: flex; flex-direction: column; flex: 1; }

         .bg-card-meta { font-size: 0.72rem; color: var(--text-light); font-weight: 600; margin-bottom: 9px; }

         .bg-card-title a{

            font-size: 1.05rem;

            font-weight: 700;

            color: inherit;
            text-decoration: none;

            line-height: 1.35;

            margin-bottom: 10px;

            flex: 1;

         }
         .bg-card-title:hover{
          color: var(--teal-deep);
          text-decoration: none;
         }

         .bg-card-excerpt { font-size: 0.85rem; color: var(--text-mid); line-height: 1.55; margin-bottom: 16px; }

         .bg-card-foot {

            display: flex;

            align-items: center;

            justify-content: space-between;

            border-top: 1px solid var(--gray-200);

            padding-top: 14px;

         }

         .bg-card-foot a:hover{

          color: var(--navy);

          transition: color 0.35s ease, opacity 0.35s ease;

         }

         .bg-card-link {

            font-size: 0.82rem;

            font-weight: 700;

            color: var(--teal-dark);

            text-decoration: none;

            display: inline-flex;

            align-items: center;

            gap: 5px;

         }

         .bg-card-readtime { font-size: 0.72rem; color: var(--text-light); font-weight: 600; }

         .blog-pagination{

              display:flex;

              justify-content:center;

              align-items:center;

              gap:10px;

              margin-top:40px;

          }



          .page-numbers{

              display:flex;

              align-items:center;

              gap:10px;

          }



          .bp-btn{

              width:42px;

              height:42px;

              border:1px solid #d9dee8;

              background:#fff;

              color:#1d3557;

              border-radius:10px;

              display:flex;

              align-items:center;

              justify-content:center;

              cursor:pointer;

              transition:.3s;

              flex-shrink:0;

          }



          .bp-btn:hover{

              background:#00b8b0;

              color:#fff;

              border-color:#00b8b0;

          }



          .bp-btn.active{

              background:#00b8b0;

              color:#fff;

              border-color:#00b8b0;

          }



          .bp-btn:disabled{

              opacity:.45;

              cursor:not-allowed;

          }

         .blog-newsletter {

            margin-top: 70px;

            background: var(--navy);

            border-radius: 22px;

            padding: 46px 50px;

            display: flex;

            align-items: center;

            justify-content: space-between;

            gap: 30px;

            flex-wrap: wrap;

         }

         .blog-newsletter h3 { color: #fff; font-size: 1.4rem; font-weight: 700; margin-bottom: 6px; }

         .blog-newsletter p { color: rgba(255,255,255,0.6); font-size: 0.88rem; margin: 0; }

         .bn-form { display: flex; gap: 10px; flex: 1; max-width: 420px; }

         .bn-form input {

            flex: 1;

            padding: 13px 18px;

            border-radius: 10px;

            border: none;

            font-family: "DM Sans", sans-serif;

            outline: none;

            font-size: 0.88rem;

         }

         .bn-form button {

            background: var(--teal);

            color: #fff;

            border: none;

            padding: 13px 22px;

            border-radius: 10px;

            font-weight: 700;

            font-size: 0.88rem;

            cursor: pointer;

            white-space: nowrap;

            font-family: "DM Sans", sans-serif;

         }

         @media (max-width: 991px) {

            .blog-feat { grid-template-columns: 1fr; }

            .blog-grid { grid-template-columns: repeat(2, 1fr); }

            .blog-newsletter { flex-direction: column; text-align: center; }

            .bn-form { width: 100%; }

         }

         @media (max-width: 600px) {

            .blog-grid { grid-template-columns: 1fr; }

            .blog-hero h1 { font-size: 1.8rem; }

         }

         

#enquiry-modal .modal-box {

  position: relative;

  padding-top: 30px;

  padding-bottom: 10px;

 }

 #enquiry-modal .modal-box .modal-close{

  position: absolute;

  right: 20px;

  top: 20px;

 }





 



 .pf-flex{

    display:flex;

    align-items:center;

    justify-content:space-between;

    gap:50px;

}



.pf-image{

    flex:0 0 65%;

}



.pf-image img{

    width:100%;

    display:block;

}



.pf-content{

    flex:0 0 35%;

}



.pf-panel-points{

    display:flex;

    flex-direction:column;

    gap:18px;

}



.pf-point{

    display:flex;

    align-items:center;

    font-size:18px;

    margin-bottom:10px;

}



.pf-check{

    width:24px;

    height:24px;

    border-radius:50%;

    background:#14c6c6;

    color:#fff;

    display:flex;

    align-items:center;

    justify-content:center;

    margin-right:12px;

    font-size:13px;

    flex-shrink:0;

}



/* Responsive */

@media (max-width:991px){



    .pf-flex{

        flex-direction:column;

        gap:30px;

    }



    .pf-image,

    .pf-content{

        flex:0 0 100%;

        width:100%;

    }



    .pf-content{

        text-align:left;

    }

}





/* ════════════════════════════════════════

   PRIVACY POLICY PAGE

════════════════════════════════════════ */



/* ── Header (same treatment as .blog-hero) ── */

.policy-header {

  background: linear-gradient(135deg, #eafdfb 0%, #e3f6f4 50%, #eef9fb 100%);

  padding: 80px 0 56px;

  text-align: center;

}

.policy-header h1 {

  font-family: "Outfit", sans-serif;

  font-size: clamp(2rem, 3.5vw, 3rem);

  font-weight: 800;

  color: var(--navy);

  letter-spacing: -.6px;

  line-height: 1.15;

  margin-bottom: 12px;

}

.policy-header p {

  font-size: 1.05rem;

  color: var(--text-mid);

  font-weight: 500;

  margin: 0;

}



/* ── Content wrapper ── */

.privacy-page {

  padding: 64px 0 80px;

  background: #fff;

}



.privacy-page .last-update {

  display: inline-block;

  font-size: .82rem;

  font-weight: 600;

  color: var(--text-mid);

  background: var(--teal-pale);

  border: 1.5px solid var(--teal-pale2);

  padding: 7px 16px;

  border-radius: 20px;

  margin-bottom: 28px;

}

.privacy-page .last-update strong {

  color: var(--teal-dark);

  font-weight: 800;

}



.privacy-page > p,

.privacy-page .col-lg-10 > p {

  font-size: .97rem;

  color: var(--text-mid);

  line-height: 1.8;

  font-weight: 400;

  margin-bottom: 18px;

}



.privacy-page strong {

  color: var(--navy);

  font-weight: 700;

}



.privacy-page h2 {

  font-family: "Outfit", sans-serif;

  font-size: 1.5rem;

  font-weight: 800;

  color: var(--navy);

  letter-spacing: -.3px;

  margin: 44px 0 16px;

  padding-top: 8px;

  border-top: 1.5px solid var(--gray-200);

}

.privacy-page h2:first-of-type {

  margin-top: 0;

  border-top: none;

  padding-top: 0;

}



.privacy-page h3 {

  font-family: "Outfit", sans-serif;

  font-size: 1.05rem;

  font-weight: 700;

  color: var(--teal-dark);

  margin: 24px 0 12px;

}



.privacy-page h4 {

  font-family: "Outfit", sans-serif;

  font-size: 1rem;

  font-weight: 800;

  color: var(--navy);

  margin-bottom: 10px;

}



.privacy-page ul {

  list-style: none;

  display: flex;

  flex-direction: column;

  gap: 9px;

  margin: 0 0 20px;

  padding: 0;

}



.privacy-page ul li {

  position: relative;

  padding-left: 26px;

  font-size: .92rem;

  color: var(--text-mid);

  line-height: 1.6;

  font-weight: 500;

}



.privacy-page ul li::before {

  content: '';

  position: absolute;

  left: 0;

  top: 8px;

  width: 8px;

  height: 8px;

  border-radius: 50%;

  background: var(--teal);

}



.privacy-page a {

  color: var(--teal-dark);

  font-weight: 600;

  text-decoration: none;

  border-bottom: 1.5px solid var(--teal-pale2);

  transition: all .2s;

}

.privacy-page a:hover {

  color: var(--teal);

  border-bottom-color: var(--teal);

}



/* ── Contact box (card, styled like .faq-form-wrap but light) ── */

.privacy-page .contact-box {

  background: var(--off-white);

  border: 1.5px solid var(--gray-200);

  border-radius: 18px;

  padding: 28px 30px;

  margin-top: 20px;

}



.privacy-page .contact-box h4 {

  font-size: 1.05rem;

  color: var(--navy);

  margin-bottom: 10px;

}



.privacy-page .contact-box p {

  font-size: .9rem;

  color: var(--text-mid);

  margin-bottom: 14px;

}



.privacy-page .contact-box p:last-child {

  margin-bottom: 0;

}



.privacy-page .contact-box strong {

  display: block;

  font-size: .72rem;

  font-weight: 800;

  text-transform: uppercase;

  letter-spacing: .6px;

  color: var(--teal-dark);

  margin-bottom: 4px;

}



/* Responsive */

@media (max-width: 768px) {

  .policy-header {

    padding: 56px 0 40px;

  }

  .privacy-page {

    padding: 44px 0 56px;

  }

  .privacy-page h2 {

    font-size: 1.25rem;

    margin: 32px 0 14px;

  }

  .privacy-page .contact-box {

    padding: 22px;

  }

}

/* Hide by default (Desktop) */

.mobile-ai-btn{

    display: none;

}
/* Show only on Mobile */

@media (max-width: 768px){

    .mobile-ai-btn{

        display: flex;

        position: fixed;

        bottom: 20px;

        right: 20px;

        width: 60px;

        height: 60px;

        border-radius: 50%;

        background: #0d6efd;

        justify-content: center;

        align-items: center;

        z-index: 9999;

        box-shadow: 0 8px 20px rgba(0,0,0,.3);

    }



    .mobile-ai-btn img{

        width: 30px;

        height: 30px;

    }

}

@media (max-width:768px){

    .ai-copilot-btn{

        position:fixed;

        right:20px;

        bottom:20px;

        width:60px;

        height:60px;

        padding:0;

        border-radius:50%;

        background:#00b4db;

        display:flex;

        align-items:center;

        justify-content:center;

        z-index:9999;

        box-shadow:0 10px 25px rgba(0,0,0,.3);

    }

    .copilot-text{

        display:none;

    }

    .ai-copilot-btn img{

        width:30px !important;

    }

}

/* Desktop */
.ai-copilot-btn{

    display: inline-flex;

    align-items: center;

    gap: 8px;

}

/* Mobile Floating Button */
@media (max-width: 768px) {

    .ai-copilot-btn{

        position: fixed;

        bottom: 20px;

        right: 20px;

        z-index: 9999;



        display: flex;

        align-items: center;

        justify-content: center;

        gap: 8px;



        padding: 12px 16px;

        background: linear-gradient(135deg,#00b4db,#0083b0);

        color: #fff;

        text-decoration: none;

        border-radius: 50px;

        box-shadow: 0 8px 20px rgba(0,0,0,.25);



        animation: floatBtn 2s ease-in-out infinite;

    }



    .ai-copilot-btn img{

        width:24px !important;

        height:24px;

    }



    .copilot-text{

        display:inline-block;

        font-size:14px;

        font-weight:600;        white-space: nowrap;

    }

}
@keyframes floatBtn{

    0%,100%{

        transform:translateY(0);

    }

    50%{

        transform:translateY(-5px);

    }

}
/* Hide on desktop */

.mobile-ai-btn{

    display:none;

}

@media (max-width:768px){

    /* Hide navbar AI button */

    .nav-r .ai-copilot-btn{

        display:none !important;

    }



    /* Floating AI button */

    .mobile-ai-btn{

        display:flex;

        position:fixed;

        right:15px;

        bottom:20px;

        width:60px;

        height:60px;

        background:linear-gradient(245deg, #0d9488, #0891b2, #0b81cf, #0891b2, #0d9488);

        border-radius:50%;

        justify-content:center;

        align-items:center;

        z-index:99999;

        box-shadow:0 8px 20px rgba(0,0,0,.3);

    }



    .mobile-ai-btn img{

        width:30px;

        height:30px;

    }

}

.Patient-Mobile-App{

    width: 90% !important;

    padding: 0px 14px !important;

}

.blog-pagination .bp-btn:disabled{

    opacity:.4;

    cursor:not-allowed;

}

.blog-pagination .bp-btn.active{

    background:#00b8b0;

    color:#fff;

}

.bp-dots{

    display:flex;

    align-items:center;

    justify-content:center;

    width:32px;

    font-size:20px;

    font-weight:600;

    color:#7a7a7a;

    user-select:none;

}

/* .stretched-link::after {

    position: absolute;

    top: 0;

    right: 0;

    bottom: 0;

    left: 0;

    z-index: 1;

    content: "";

} */

a.stretched-link {

    display: -webkit-box;

    -webkit-line-clamp: 2;

    -webkit-box-orient: vertical;

    overflow: hidden;

    text-overflow: ellipsis;

    box-shadow: none;

}

.btn-dark {

    background: #041b2d;

    border-color: #041b2d;

    color: #ffffff;

}

.btn-lg {

    padding: 1em 1.5em;

    height: 48px;

    font-size: 1em;

}

.btn {

    padding: 10px 20px;

    height: 35px;

    display: inline-flex;

    align-items: center;

    justify-content: center;

    cursor: pointer;

    -webkit-transition: all ease 0.4s;

    -o-transition: all ease 0.4s;

    transition: all ease 0.4s;

    border-radius: 0.4rem;

}

.font--medium {

    font-weight: unset;

}

/* extra */

@media (max-width: 991px) {



    .hero-inner {

        display: flex;

        flex-direction: column-reverse;

        gap: 40px;

        text-align: center;

    }

    .hero-vis {

        width: 100%;

        order: -1;

        display: flex;

        justify-content: center;

        align-items: center;

    }

    .hero-vis img {

        display: block;

        width: 100%;

        max-width: 500px;

        height: auto;

    }

    .hero h1 br {

        display: none;

    }

    .hero-btns{

      justify-content: center;

    }

}

@media (max-width: 991px) {

    .hero-inner{

        display:flex;

        flex-direction:column;

    }

    .hero-vis{

        order:-1;

    }

}

/* Tablet */

@media (max-width: 991px) {

    .pf-panel {

        min-height: auto;

    }

    .pf-image {

        width: 100%;

        height: auto;

        display: flex;

        justify-content: center;

        align-items: center;

        padding: 0;

    }

    .pf-image img {

        width: 100%;

        max-width: 550px;

        height: auto;

        object-fit: contain;

        display: block;

    }

}

/* Mobile */

@media (max-width: 767px) {

    .pf-panel {

        min-height: auto;

    }

    .pf-image {

        padding: 0;

        min-height: auto;

    }

    .pf-image img {

        width: 100%;

        max-width: 100%;

        height: auto;

        object-fit: contain;

    }

}

/* ==========================

   Security Section Responsive

========================== */

@media (max-width: 991px) {

  .sec-left{

    text-align: center;

  }

  .sec-left h2,

  .sec-left p{

    text-align: center;

  }

  .sec-checklist{

    display: grid;

    grid-template-columns: repeat(2,1fr);

    gap: 20px;

    margin-top: 30px;

  }

  .sc-item{

    display: flex;

    flex-direction: column;

    align-items: center;

    justify-content: flex-start;

    text-align: center;

    padding: 20px 15px;

    gap: 12px;

  }

  .sc-icon{

    margin: 0;

    width: 60px;

    height: 60px;

    font-size: 28px;

    display: flex;

    align-items: center;

    justify-content: center;

  }

  .sc-text{

    width: 100%;

  }

  .sc-title{

    margin-bottom: 8px;

  }

}

/* Mobile */

@media (max-width: 575px){

  .sec-checklist{

    grid-template-columns: 1fr;

    gap: 18px;

  }

  .sc-icon{

    width: 55px;

    height: 55px;

    font-size: 26px;

  }

}

/* ===========================

   Hygienist Section Responsive

=========================== */

.hygienist-sec img{

    width: 100%;

    max-width: 100%;

    height: auto;

    display: block;

}

.hygienist-sec {

  padding: 80px 1rem;

  background:#fff;

}

/* Tablet */

@media (max-width:991px){

    .hygienist-sec .sp-panel{

        grid-template-columns:1fr !important;

        gap:40px !important;

    }



    .hygienist-sec .spl{

        text-align:center;

    }



    .hygienist-sec .spl h3{

        font-size:2rem;

    }



    .hygienist-sec .spl p{

        max-width:700px;

        margin:18px auto 0;

    }



    .hygienist-sec .s-tag{

        justify-content:center;

        margin:auto auto 18px;

    }



    .hygienist-sec .sfeats{

        margin-top:30px;

    }



    .hygienist-sec .sfeat{

        align-items:flex-start;

        text-align:left;

    }



    .hygienist-sec .sp-panel > div:last-child{

        display:flex;

        justify-content:center;

    }

    .hygienist-sec img{

        max-width:650px;

    }

    .hygienist-sec .btn-teal{

        justify-content:center;

    }

}

/* Mobile */

@media (max-width:767px){



    .hygienist-sec .spl h3{

        font-size:1.8rem;

        line-height:1.3;

    }

    .hygienist-sec .spl p{

        font-size:15px;

    }

    .hygienist-sec .sfeats{

        display:flex;

        flex-direction:column;

        gap:18px;

    }

    .hygienist-sec .sfeat{

        flex-direction:column;

        align-items:center;

        text-align:center;

        padding:20px 16px;

        border:1px solid #e9eef3;

        border-radius:16px;

        background:#fff;

    }

    .hygienist-sec .sfeat-ico{

        margin-bottom:12px;

    }

    .hygienist-sec .sfeat-t{

        margin-bottom:6px;

    }

    .hygienist-sec img{

        max-width:100%;

    }

    .hygienist-sec .btn-teal{

        width:100%;

        justify-content:center;

    }

}

.mobile-img{

    display:none;

}

/* 

.desktop-img{

    display:block;

} */



@media (max-width:991px){



    .desktop-img{

        display:none !important;

    }



    .mobile-img{

        display:block;

        margin:30px 0;

        text-align:center;

    }



    .mobile-img img{

        max-width:100%;

        height:auto;

    }

}

/* =====================================

   Mobile App Section Responsive

===================================== */



/* Image */

.mobile-app-sec img{

   padding: 70 1rem;

    max-width:100%;

    height:auto;

    display:block;

}



/* Tablet */

@media (max-width:991px){

    .mobile-app-sec .sw > div{

        grid-template-columns:1fr !important;

        gap:45px !important;

    }

    .mobile-app-sec .rv:first-child{

        order:1;

        text-align:center;

    }

    .mobile-app-sec .rv:last-child{

        order:2;

        justify-content:center !important;

    }

    .mobile-app-sec .s-title,

    .mobile-app-sec .s-sub{

        text-align:center !important;

        margin-left:auto !important;

        margin-right:auto !important;

    }

    .mobile-app-sec .s-sub{

        max-width:700px !important;

    }

    .mobile-app-sec .sfeats{

        margin-top:30px;

    }

    .mobile-app-sec .sfeat{

        align-items:flex-start;

        text-align:left;

    }

    .mobile-app-sec img{

        max-width:420px;

    }

    .mobile-app-sec .hero-proof{

        justify-content:center;

        text-align:center;

    }

    .mobile-app-sec .rv:first-child > div[style*="display:flex"]{

        justify-content:center;

    }

}

/* Mobile */



@media (max-width:767px){

    .mobile-app-sec .s-title{

        font-size:1.8rem;

        line-height:1.3;

    }



    .mobile-app-sec .s-sub{

        font-size:15px;

    }



    .mobile-app-sec .sfeats{

        display:flex;

        flex-direction:column;

        gap:18px;

    }



    .mobile-app-sec .sfeat{

        flex-direction:column;

        align-items:center;

        text-align:center;

        padding:20px;

        border:1px solid #e8edf2;

        border-radius:16px;

        background:#fff;

    }



    .mobile-app-sec .sfeat-ico{

        margin-bottom:12px;

    }



    .mobile-app-sec img{

        max-width:280px;

    }



    /* Store Buttons */



    .mobile-app-sec .rv:first-child > div[style*="display:flex"]{

        flex-direction:column;

        align-items:center;

        gap:15px !important;

    }



    .mobile-app-sec .rv:first-child > div[style*="display:flex"] a{

        width:100%;

        max-width:300px;

        justify-content:center;

    }



    .mobile-app-sec .hero-proof{

        text-align:center;

    }



}

.mobile-app-mobile{

    display:none;

}



.mobile-app-desktop{

    display:flex;

    justify-content:center;

}



@media (max-width:991px){



    .mobile-app-mobile{

        display:block;

        text-align:center;

        margin:35px 0;

    }



    .mobile-app-mobile img{

        width:100%;

        height:auto;

    }



    .mobile-app-desktop{

        display:none;

    }

}

/* ============================================================

  Mobile/Tablet Responsive Menu Icon

============================================================= */

/* ---------- Hamburger toggle button ---------- */

.mnav-toggle {

  display: none;

  flex-direction: column;

  justify-content: center;

  align-items: center;

  gap: 5px;

  width: 42px;

  height: 42px;

  border: 1.5px solid var(--teal-pale2);

  border-radius: 10px;

  background: #fff;

  cursor: pointer;

  padding: 0;

  z-index: 1001;

  flex-shrink: 0;

}

.mnav-toggle span {

  display: block;

  width: 20px;

  height: 2px;

  background: var(--navy, #111);

  border-radius: 2px;

  transition: transform .25s ease, opacity .2s ease;

}

.mnav-toggle.mnav-active span:nth-child(1) {

  transform: translateY(7px) rotate(45deg);

}

.mnav-toggle.mnav-active span:nth-child(2) {

  opacity: 0;

}

.mnav-toggle.mnav-active span:nth-child(3) {

  transform: translateY(-7px) rotate(-45deg);

}



/* ---------- Overlay ---------- */

.mnav-overlay {

  position: fixed;

  inset: 0;

  background: rgba(10, 20, 25, .45);

  backdrop-filter: blur(2px);

  opacity: 0;

  visibility: hidden;

  transition: opacity .3s ease, visibility .3s ease;

  z-index: 1002;

}

.mnav-overlay.mnav-show {

  opacity: 1;

  visibility: visible;

}



/* ---------- Offcanvas panel ---------- */

.mnav-panel {

  position: fixed;

  top: 0;

  right: 0;

  height: 100%;

  width: 86%;

  max-width: 380px;

  background: #fff;

  box-shadow: -10px 0 40px rgba(0, 0, 0, .18);

  z-index: 1003;

  display: flex;

  flex-direction: column;

  transform: translateX(100%);

  transition: transform .32s cubic-bezier(.4, 0, .2, 1);

  overflow: hidden;

}

.mnav-panel.mnav-show {

  transform: translateX(0);

}

.mnav-header {

  display: flex;

  align-items: center;

  justify-content: space-between;

  padding: 10px 18px;

  border-bottom: 1.5px solid var(--teal-pale2);

  flex-shrink: 0;

}

.mnav-logo {

  height: 100px;

  width: auto;

}

.mnav-close {

  width: 36px;

  height: 36px;

  border-radius: 50%;

  border: none;

  background: var(--off-white, #f4f7f7);

  color: var(--navy, #111);

  font-size: 16px;

  cursor: pointer;

  display: grid;

  place-items: center;

}

.mnav-body {

  flex: 1;

  overflow-y: auto;

  padding: 10px 16px 30px;

  -webkit-overflow-scrolling: touch;

}

.mnav-link {

  display: block;

  padding: 14px 6px;

  font-size: 16px;

  font-weight: 600;

  color: var(--navy, #111);

  text-decoration: none;

  border-bottom: 1px solid var(--teal-pale2, #eee);

}

/* ---------- Top-level accordion (Specialities / Features) ---------- */

.mnav-accordion {

  border-bottom: 1px solid var(--teal-pale2, #eee);

}

.mnav-acc-btn {

  width: 100%;

  display: flex;

  align-items: center;

  justify-content: space-between;

  padding: 14px 6px;

  background: none;

  border: none;

  font-size: 16px;

  font-weight: 600;

  color: var(--navy, #111);

  cursor: pointer;

  font-family: inherit;

}

.mnav-acc-arrow {

  font-size: 12px;

  color: var(--teal, #00b4b4);

  transition: transform .25s ease;

}

.mnav-acc-btn.mnav-open .mnav-acc-arrow {

  transform: rotate(180deg);

}

.mnav-acc-panel {

  display: grid;

  grid-template-rows: 0fr;

  transition: grid-template-rows .3s ease;

}

.mnav-acc-inner {

  overflow: hidden;

  min-height: 0;

}

.mnav-acc-btn.mnav-open + .mnav-acc-panel {

  grid-template-rows: 1fr;

}

/* ---------- Sub-accordion (e.g. Specialists We Serve, Core Features) ---------- */

.mnav-subacc {

  border-top: 1px dashed var(--teal-pale2, #eee);

}

.mnav-subacc:first-child {

  border-top: none;

}

.mnav-subacc-btn {

  width: 100%;

  display: flex;

  align-items: center;

  gap: 8px;

  padding: 11px 6px 11px 10px;

  background: var(--off-white, #f8fafa);

  border: none;

  border-radius: 8px;

  font-size: 13.5px;

  font-weight: 600;

  letter-spacing: .3px;

  text-transform: uppercase;

  color: var(--text-mid, #555);

  cursor: pointer;

  margin: 6px 0 2px;

  font-family: inherit;

}

.mnav-subacc-ico {

  width: 22px;

  height: 22px;

  border-radius: 6px;

  background: var(--teal-pale, #e6f8f8);

  display: grid;

  place-items: center;

  font-size: .75rem;

  color: var(--teal-dark, #00807a);

  flex-shrink: 0;

}

.mnav-subacc-arrow {

  margin-left: auto;

  font-size: 10px;

  transition: transform .25s ease;

}

.mnav-subacc-btn.mnav-open .mnav-subacc-arrow {

  transform: rotate(180deg);

}

.mnav-subacc-panel {

  display: grid;

  grid-template-rows: 0fr;

  transition: grid-template-rows .3s ease;

}

.mnav-subacc-inner {

  overflow: hidden;

  min-height: 0;

}

.mnav-subacc-btn.mnav-open + .mnav-subacc-panel {

  grid-template-rows: 1fr;

}



/* ---------- Items inside sub-accordion ---------- */

.mnav-item {

  display: flex;

  align-items: flex-start;

  gap: 10px;

  padding: 10px 8px 10px 14px;

  text-decoration: none;

  border-radius: 8px;

}

.mnav-item:hover, .mnav-item:active {

  background: var(--teal-pale, #e6f8f8);

}

.mnav-item-ico {

  width: 26px;

  height: 26px;

  flex-shrink: 0;

  margin-top: 2px;

}

.mnav-item-ico2 {

  width: 30px;

  height: 30px;

  border-radius: 7px;

  background: var(--teal-pale2, #d9f1f1);

  display: grid;

  place-items: center;

  font-size: .8rem;

  color: var(--teal-dark, #00807a);

  flex-shrink: 0;

}

.mnav-item-title {

  display: block;

  font-size: 14px;

  font-weight: 600;

  color: var(--navy, #111);

}

.mnav-item-desc {

  display: block;

  font-size: 11.5px;

  color: var(--text-light, #888);

  font-weight: 500;

  margin-top: 1px;

  line-height: 1.4;

}

.mnav-item-sm {

  align-items: center;

  font-size: 13.5px;

  font-weight: 500;

  color: var(--text-mid, #444);

  gap: 10px;

  padding: 9px 8px 9px 14px;

}

.mnav-item-sm i {

  width: 18px;

  color: var(--teal, #00b4b4);

  font-size: .85rem;

  flex-shrink: 0;

}

/* ---------- Bottom CTAs ---------- */

.mnav-cta {

  display: flex;

  flex-direction: column;

  gap: 10px;

  margin-top: 18px;

}

.mnav-copilot-btn {

  display: flex;

  align-items: center;

  justify-content: center;

  gap: 8px;

  padding: 12px 18px;

  border-radius: 12px;

  background: var(--teal-grad, linear-gradient(135deg, #00c9c9, #00a3a3));

  color: #fff;

  font-weight: 600;

  font-size: 15px;

  text-decoration: none;

}

.mnav-copilot-btn img {

  width: 22px;

}

.mnav-signin-btn {

  display: block;

  text-align: center;

  padding: 12px 18px;

  border-radius: 12px;

  border: 1.5px solid #0db8aa;

  color: #0a95a0;

  font-weight: 600;

  font-size: 15px;

  text-decoration: none;

  background: #fff;

}

/* mobile responsive */

@media (max-width: 992px) {

  .nav-links,

  .nav-r .btn-outline,

  .nav-r .ai-copilot-btn {

    display: none !important;

  }

  .mnav-toggle {

    display: flex;

  }

  nav#nav {

    padding: 0 4%;

  }

}

@media (min-width: 993px) {

  .mnav-toggle,

  .mnav-overlay,

  .mnav-panel {

    display: none !important;

  }

}

/* Small phones: tighten panel width */

@media (max-width: 380px) {

  .mnav-panel {

    width: 92%;

  }

}

.sc-icon{

    width:50px;

    height:50px;

    display:flex;

    align-items:center;

    justify-content:center;

    background:rgba(0,201,167,.12);

    border:1px solid rgba(0,201,167,.25);

    border-radius:16px;

    color:#00c9a7;

    font-size:24px;

    flex-shrink:0;

    transition:.3s;

}

.sc-item:hover .sc-icon{

    background:#00c9a7;

    color:#fff;

    transform:translateY(-3px);

}

/* banner slider */

.hero-slider-container {

   position: relative;

   overflow: hidden;

}

.heroSwiper {

   width: 100%;

   height: 100%;

   padding-bottom: 50px; 

}

.swiper-slide .hero-inner {

   display: flex;

   align-items: center;

   justify-content: space-between;

}

.hero .swiper-button-next,

.hero .swiper-button-prev {

   color: #0000002b; 

   opacity: 0.5;

   transition: opacity 0.3s ease;

}

.hero .swiper-button-next:hover,

.hero .swiper-button-prev:hover {

   opacity: 1;

}

.hero .swiper-button-next::after,

.hero .swiper-button-prev::after {

   font-size: 20px;

   font-weight: bold;

}

.hero .swiper-pagination-bullet {

   background: #ccc;

   opacity: 0.7;

}

.hero .swiper-pagination-bullet-active {

   background: var(--teal-dark); 

   width: 24px;

   border-radius: 4px;

   opacity: 1;

}

.ct-panel-left .tag{

  display: inline-block;

  font-size: 11px;

  font-weight: 600;

  color: var(--teal-deep);

  background: #e0f7f5;

  padding: 4px 12px;

  border-radius: 100px;

  margin-bottom: 1rem;

}

.faq-list-wrap{

    display:flex;

    gap:30px;

    align-items:flex-start;

}

.faq-list{

    flex:1;

    display:flex;

    flex-direction:column;

}

@media (max-width:991px){

    .faq-list-wrap{

        flex-direction:column;

    }

}

.hero-section {

  padding: 80px 0 60px;

  /* background: radial-gradient(circle at 50% 0%, rgba(124, 58, 237, 0.08) 0%, rgba(255, 255, 255, 0) 70%); */

      background: radial-gradient(ellipse at 10% 80%, rgba(25, 186, 172, 0.12) 0%, transparent 50%), radial-gradient(ellipse at 90% 20%, rgba(48, 66, 99, 0.3) 0%, transparent 50%);

}

.browser-frame {

  border: 1px solid var(--cliniify-border);

  border-radius: 20px;

  background: #ffffff;

  box-shadow: 0 30px 60px -12px rgba(15, 23, 42, 0.18);

  overflow: hidden;

  position: relative;

}

.browser-header {

  background: #f1f5f9;

  padding: 12px 20px;

  border-bottom: 1px solid var(--cliniify-border);

  display: flex;

  align-items: center;

  gap: 8px;

}

.dot { width: 10px; height: 10px; border-radius: 50%; display: inline-block; }

.dot-red { background: #ff5f56; }

.dot-yellow { background: #ffbd2e; }

.dot-green { background: #27c93f; }

.mockup-img-wrapper {

  position: relative;

  background: #f8fafc;

  min-height: 400px;

}

.mockup-img-wrapper img {

  width: 100%;

  height: auto;

  display: block;

}

/* Hotspot Pulse Dots & Popovers */

.hotspot {

  position: absolute;

  width: 28px;

  height: 28px;

  border-radius: 50%;

  background: var(--cliniify-primary);

  color: #fff;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 14px;

  cursor: pointer;

  box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7);

  animation: pulse-blue 2s infinite;

  z-index: 10;

}

@keyframes pulse-blue {

  0% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0.7); }

  70% { box-shadow: 0 0 0 12px rgba(37, 99, 235, 0); }

  100% { box-shadow: 0 0 0 0 rgba(37, 99, 235, 0); }

}

/* Hotspot Position Points (Percentages to adjust over screenshot) */

.hotspot-1 { top: 35%; left: 22%; }

.hotspot-2 { top: 52%; left: 58%; }

.hotspot-3 { top: 75%; left: 80%; }



/* --- TABBED SHOWCASE SECTION --- */

.custom-nav-pills .nav-link {

  color: var(--cliniify-dark);

  font-weight: 700;

  padding: 14px 28px;

  border-radius: 50px;

  border: 1px solid var(--cliniify-border);

  background: #fff;

  transition: all 0.3s ease;

}

.custom-nav-pills .nav-link.active {

  background: var(--cliniify-gradient);

  color: #ffffff;

  border-color: transparent;

  box-shadow: 0 8px 20px rgba(37, 99, 235, 0.25);

}

  /* EMR Mockup UI Element */

.emr-preview-box {

  border: 1px solid var(--cliniify-border);

  border-radius: 24px;

  background: #ffffff;

  box-shadow: 0 25px 50px -12px rgba(15, 23, 42, 0.12);

  overflow: hidden;

}

.emr-preview-header {

  background: var(--cliniify-subtle-bg);

  padding: 16px 24px;

  border-bottom: 1px solid var(--cliniify-border);

}

/* Badges */

.badge-pill-custom {

  background: rgba(37, 99, 235, 0.1);

  color: var(--cliniify-primary);

  font-size: 0.85rem;

  font-weight: 700;

  padding: 6px 16px;

  border-radius: 50px;

  display: inline-block;

  margin-bottom: 16px;

}

/* Stat Highlight Box */

.stat-card {

  background: var(--cliniify-subtle-bg);

  border: 1px solid var(--cliniify-border);

  border-radius: 16px;

  /* padding: 24px; */

  text-align: center;

}

.hero-vis .carousel{

    width:100%;

    border-radius:24px;

    overflow:hidden;

}

.hero-vis .carousel-item img{

    width:100%;

    height:auto;

    display:block;

    object-fit:contain;

}

.carousel-indicators{

    margin-bottom:0.8rem;

}

.carousel-indicators button{

    width:10px;

    height:10px;

    border-radius:50%;

}

.carousel-control-prev,

.carousel-control-next{

    width:45px;

}

.carousel-control-prev-icon,

.carousel-control-next-icon{

    width:2.3rem;

    height:2.3rem;

    border-radius:50%;

    background-color:rgba(0,0,0,.45);

    background-size:45%;

}

@media (max-width:991px){

    .hero-vis{

        margin-top:40px;

    }

    .hero-vis .carousel{

        border-radius:18px;

    }

}

@media (max-width:767px){

    .hero-vis .carousel{

        border-radius:14px;

    }

}

.carousel-indicators{

  /* bottom:-10px !important; */

  margin-bottom: 0 !important;

  gap:8px;

}

.carousel-indicators [data-bs-target]{

    width:10px;

    height:10px;

    border-radius:50%;

    border:none;

    background:#cfd8dc;

    opacity:1;

    transition:all .3s ease;

    margin:0;

}

.carousel-indicators .active{

    width:28px;

    border-radius:20px;

    background:#00b4b4; /* Cliniify theme color */

}

.carousel-indicators [data-bs-target] {

  background-color: #006060 !important;

}

#heroSlider .carousel-control-prev,

#heroSlider .carousel-control-next{

    display: none !important;

}

.nav-pills .nav-link.active, .nav-pills .show > .nav-link{

  color: var(--bs-nav-pills-link-active-color);

  background-color: var(--teal-dark) !important;

}

.nav-link:focus, .nav-link:hover {

    color: var(--teal-dark);

}

.hero-btns .nav-link{

  padding: 10px 18px;

  border-radius: 30px;

  background: var(--teal-grad);

  color: #fff;

  font-size: 1rem;

  font-weight: 500;

  border: none;

  cursor: pointer;

  text-decoration: none;

  font-family: "Outfit", sans-serif;

  /* box-shadow: 0 6px 24px rgba(0, 180, 180, .45); */

  transition: all .25s;

  display: inline-flex;

  align-items: center;

  gap: 9px;

}

.hero-btns .nav-link:hover{

    transform:translateY(-2px);

}

.hero-btns .nav-link.active,

.hero-btns .show>.nav-link{

    background:linear-gradient(135deg,#00b4b4,#008b8b);

    color:#fff;

    box-shadow:0 12px 30px rgba(0,180,180,.35);

}

.hero-btns .nav-link i{

    font-size:18px;

}

.custom-nav-pills .nav-link{

    background: transparent !important;

    color: #6c757d;

    border: none;

    box-shadow: none !important;

    /* padding: 12px 18px; */

    border-radius: 30px;

    transition: all .3s ease;

}

.custom-nav-pills .nav-link.active,

.custom-nav-pills .show > .nav-link{

    background: linear-gradient(135deg, #00b4b4, #008b8b) !important;

    color: #fff !important;

    box-shadow: 0 10px 25px rgba(0,180,180,.25);

}

.custom-nav-pills .nav-link:not(.active):hover{

    background: transparent;

    color: #00b4b4;

}

/* featurestyle css */

.reveal { opacity:0; transform:translateY(28px); transition:opacity .65s ease, transform .65s ease; }

.reveal.in { opacity:1; transform:none; }

.careers-hero::before {

    content: '';

    position: absolute;

    inset: 0;

    background: radial-gradient(ellipse at 10% 80%, rgba(25, 186, 172, 0.12) 0%, transparent 50%), radial-gradient(ellipse at 90% 20%, rgba(48, 66, 99, 0.3) 0%, transparent 50%);

    pointer-events: none

}

.careers-hero::after {

    content: '';

    position: absolute;

    inset: 0;

    background-image: linear-gradient(rgba(25, 186, 172, 0.03) 1px, transparent 1px), linear-gradient(90deg, rgba(25, 186, 172, 0.03) 1px, transparent 1px);

    background-size: 50px 50px;

    pointer-events: none

}

.careers-hero-inner {

    max-width: 900px;

    margin: 0 auto;

    /*text-align: justify;*/

    position: relative;

    z-index: 1;

}

.careers-hero {

    display: flex;

    align-items: center;

    gap: 2rem;

    padding: 10.5rem 2.2rem 4.5rem;

}

.careers-hero-inner {

  flex: 1;

}

.careers-hero-image {

  flex: 0 0 420px; 

}

@media (max-width: 768px) {

  .careers-hero {

    flex-direction: column;

  }

  .careers-hero-image {

    flex: unset;

    width: 100%;

  }

}

.careers-hero {

  padding: 80px 0;

  overflow: hidden;

}

.careers-hero {

  padding: 80px 0 56px;

  /* min-height: 720px; */

  display: flex;

  border: 1px solid #5e636e1c;

  align-items: center;

  overflow: hidden;

}

.careers-hero-inner {

  position: relative;

  z-index: 2;

}

.careers-hero-image {

  position: relative;

  display: flex;

  justify-content: center;

  align-items: center;

}

@media (max-width: 991px) {

  .careers-hero {

      padding: 85px 1rem;

      min-height: auto;

      text-align: center;

  }

  .hero-banner-img {

      width: 100%;

      max-width: 100%;

      right: 0;

      margin-top: 40px;

  }

}

.careers-hero h1 {

  font-family: var(--font-display);

  font-size: 32px;

  font-weight: 500;

  color: #161616;

  letter-spacing: -.025em;

  line-height: 1.08;

  margin-bottom: 1.5rem

}

.careers-hero h1 em {

  font-style: normal;

  color: var(--teal)

}

.careers-hero p {

  font-size: 18px;

  color: rgb(76 75 75);

  line-height: 1.75;

  max-width: 900px;

  margin: 0 auto 2rem;

}

.breadcrumb-bar {

  padding: 0.875rem 2.5rem;

  border-top: 1px solid rgba(0,0,0,0.08);

  text-align: center;

}

.breadcrumb-bar .breadcrumb-inner {

  display: flex;

  align-items: center;

  gap: 6px;

}

.breadcrumb-bar a,

.breadcrumb-bar span {

  font-size: inherit;      

  font-family: inherit;     

  font-weight: inherit;     

  line-height: inherit;

  color: inherit;           

  text-decoration: none;

}

.breadcrumb-bar a:hover {

  text-decoration: underline;

}

.breadcrumb-bar .breadcrumb-sep {

  color: inherit;           

  opacity: 0.5;

}

.breadcrumb-inner {

  display: inline-flex;

  align-items: center;

  gap: 6px;

  font-size: 14px;

  font-weight: 400;

}

.breadcrumb-inner a {

  color: #1a1a2e;        

  text-decoration: none;

}

.breadcrumb-inner a:hover {

  text-decoration: underline;

}

.breadcrumb-sep {

  color: #6b7280;        

  font-size: 13px;

}

.breadcrumb-inner span:last-child span {

  color: #6b7280;       

}

.breadcrumb a {

  color: rgba(255, 255, 255, .4);

  text-decoration: none;

  transition: .2s;

}

.breadcrumb a:hover {

  color: var(--teal);

}

@media (max-width: 991px) {



    .breadcrumb-bar {

        padding: 12px 15px;

    }



    .breadcrumb-inner {

        display: flex;

        flex-wrap: wrap;

        align-items: center;

        gap: 5px;

        font-size: 14px;

        line-height: 1.5;

        word-break: break-word;

    }



    .breadcrumb-inner a,

    .breadcrumb-inner span {

        max-width: 100%;

        overflow-wrap: break-word;

    }



    .breadcrumb-sep {

        margin: 0 2px;

        flex-shrink: 0;

    }

}

@media (max-width: 576px) {



    .breadcrumb-bar {

        padding: 20px 15px;  

        min-height: 70px;     

        display: flex;

        align-items: center;

    }



    .breadcrumb-inner {

        font-size: 12px;

        gap: 4px;

    }

}

.mega-ai-box{

    width:100%;

    display:flex;

    flex-direction:column;

    justify-content:center;

    align-items:center;

    text-align:center;

    padding:10px 10px;

    border-radius:18px;

    background:linear-gradient(135deg,#f4fffd,#e8fbf7);

}

.mega-ai-icon{

    width:30px;

    height:30px;

    border-radius:50%;

    display:flex;

    align-items:center;

    justify-content:center;

    background:#00A699;

    color:#fff;

    font-size:17px;

    margin-bottom:20px;

    box-shadow:0 10px 30px rgba(0,166,153,.25);

}

.mega-ai-box h4{

    font-size:17px;

    font-weight:700;

    margin-bottom:12px;

    color:#132238;

}

.mega-ai-box p{

    color:#5b6574;

    line-height:1.7;

    margin-bottom: 18px;

}

/* ── TEAM ── */

.team-sec {

  padding: 80px 2rem;

  background: var(--off-white);;

}

.team-inner {

  max-width: 1280px;

  margin: 0 auto

}

.team-grid {

  display: grid;

  grid-template-columns: repeat(4, 1fr);

  gap: 1.5rem;

  margin-top: 3.5rem

}

.team-card {

  background: #fff;

  border: 1px solid var(--border);

  border-radius: 28px;

  padding: 2rem 1.5rem;

  text-align: center;

  transition: .3s;

  position: relative;

  overflow: hidden

}

.team-card::after {

  content: '';

  position: absolute;

  bottom: 0;

  left: 0;

  right: 0;

  height: 3px;

  background: var(--grad-teal);

  transform: scaleX(0);

  transform-origin: left;

  transition: .3s

}

.team-card:hover {

  transform: translateY(-6px);

  box-shadow: 0 20px 60px rgba(25, 186, 172, 0.1)

}

.team-card:hover::after {

  transform: scaleX(1)

}

.team-avatar {

  width: 80px;

  height: 80px;

  border-radius: 50%;

  margin: 0 auto 1rem;

  display: flex;

  align-items: center;

  justify-content: center;

  font-size: 32px;

  font-weight: 800;

  font-family: var(--font-display);

  border: 3px solid var(--teal-soft)

}

.team-name {

    font-family: var(--font-display);

    font-size: 1.4rem;

    font-weight: 500;

    color: #535556;

    margin-bottom: .25rem;

}

.team-role {

  font-size: 12px;

  font-weight: 600;

  color: var(--teal-deep);

  text-transform: uppercase;

  letter-spacing: .06em;

  margin-bottom: .75rem

}

.team-bio {

  font-size: 13px;

  color: var(--smoke);

  line-height: 1.6

}

.team-linkedin {

  display: inline-flex;

  align-items: center;

  gap: 5px;

  margin-top: 1rem;

  font-size: 12px;

  font-weight: 600;

  color: var(--smoke);

  text-decoration: none;

  padding: 5px 12px;

  border-radius: 100px;

  border: 1px solid var(--border);

  transition: .2s

}

.team-linkedin:hover {

  color: var(--teal);

  border-color: var(--border-teal);

  background: var(--teal-pale)

}

/* ===== Clinic Type CSS ===== */

.solo-feature-section{

    background:#f8fcfc;

}

.feature-card{

    background:#fff;

    border-radius:24px;

    padding:35px 30px;

    border:1px solid #e6f4f2;

    transition:.35s;

    box-shadow:0 12px 35px rgba(0,0,0,.05);

    position: relative;

    min-height: 310px;

    display: flex;

    flex-direction: column;

}

.feature-card:hover{

    /* transform:translateY(-8px); */

    box-shadow:0 20px 45px rgba(0,170,160,.18);

    border-color:#00b3a4;

}

.icon-box{

    width:70px;

    height:70px;

    border-radius:18px;

    background:#e7faf8;

    display:flex;

    justify-content:center;

    align-items:center;

    color:#00a99d;

    font-size:28px;

    margin-bottom:20px;

}

.feature-card h5{

    font-weight:500;

    margin-bottom:15px;

    color:#17394c;

}

.feature-card p{

    color:#6b7280;

    line-height:1.8;

    margin-top:auto;

}

.swiper-pagination-bullet-active{

    background: var(--teal-deep) !important;

}

.swiper{

    padding-bottom:50px;

}

@media(max-width:768px){

.section-title{

    font-size:34px;

}

.feature-card{

    padding:25px;

}

}

.feature-no{

    position:absolute;

    top:20px;

    right:20px;

    font-size:42px;

    font-weight:800;

    color:rgba(0,180,180,.08);

    line-height:1;

}

.icon-teal{background:#E8F8F7;color:#00B4B4;}

.icon-orange{background:#FFF3E8;color:#FF8A00;}

.icon-blue{background:#EEF3FF;color:#3B82F6;}

.icon-purple{background:#F4EEFF;color:#8B5CF6;}

.icon-green{background:#EAFBF1;color:#22C55E;}

.icon-pink{background:#FFF0F6;color:#EC4899;}

.icon-yellow{background:#FFF8E5;color:#F59E0B;}

.icon-sky{background:#EAF6FF;color:#0EA5E9;}



.featuredBlogSlider{

    padding-bottom:55px;

}



.featuredBlogSlider .swiper-slide{

    height:auto;

}



.featuredBlogSlider .blog-feat{

    height:100%;

}



.featuredBlogSlider .swiper-pagination{

    position:relative;

    margin-top:20px;

}



.featuredBlogSlider .swiper-pagination-bullet{

    width:10px;

    height:10px;

    opacity:.4;

}



.featuredBlogSlider .swiper-pagination-bullet-active{

    opacity:1;

    background:var(--teal);

}

@media(max-width:991px){

    .blog-breadcrumb{

        margin-top:0px;

    }

}

@media(max-width:576px){

    .blog-breadcrumb{

        margin-top:0px;

    }

}
/* ===== Blog Detail CSS ====== */
.blog-details-content{ padding: 40px 0 50px; }
.blog-details-content .figure{ display:block; width:100%; margin-bottom:0; }
.blog-details-content img{ border-radius:16px; }
.blog-details-content .rounded-4{
  border-radius:16px !important;
  box-shadow:0 10px 28px rgba(0,180,180,.12);
}
 
.blog-eyebrow{
  font-size:12px; letter-spacing:.1em; text-transform:uppercase;
  color:var(--teal-deep); font-weight:700; margin-bottom:8px; display:block;
}
 
/* ---------- typography — tightened, no extra top/bottom air ---------- */
.blog-details-content h1{
  font-size:2.1rem; line-height:1.25; font-weight:700;
  color:var(--navy); margin:0 0 .75rem;
}
.blog-details-content h2{
  font-size:1.5rem; 
  line-height:1.3; 
  font-weight:700;
  color:var(--navy); 
  /* margin:1.75rem 0 .75rem; */
}
.blog-details-content h3{
  font-size:1.15rem; 
  line-height:1.35; 
  font-weight:700;
  color:var(--teal-deep); 
  /* margin:1.25rem 0 .5rem; */
}
.blog-details-content h4{
  font-size:1rem; 
  line-height:1.4; 
  font-weight:700;
  color:var(--navy); 
  /* margin:1rem 0 .4rem; */
}
.blog-details-content p,
.blog-details-content li{
  font-size:15.5px; line-height:1.75; color:var(--text-mid); margin-bottom:.6rem;
}
.blog-details-content ul{ padding-left:1.1rem; margin-bottom:.75rem; }
 
.blog-details-content ul.pointer-list{
  list-style:none; padding-left:0; margin:0 0 1rem; display:flex; flex-direction:column; gap:0px;
}
.blog-details-content ul.pointer-list li{
  position:relative; padding-left:28px; margin-bottom:0;
}
.blog-details-content ul.pointer-list li::before{
  content:"\f00c"; font-family:"Font Awesome 6 Free"; font-weight:900; font-size:10px;
  position:absolute; left:0; top:7px; width:18px; height:18px; border-radius:6px;
  background:var(--teal-pale); color:var(--teal-deep);
  display:flex; align-items:center; justify-content:center;
}
 
/* byline / share row */
.blog-details-content .border-bottom{ 
  border-color:var(--gray-200) !important; 
  /* padding-bottom:14px;  */
}
.blog-details-content .text-primary{ color:var(--navy) !important; font-size:13px; }
.blog-details-content .fs-sm{ color:var(--text-light); font-size:12px; text-transform:uppercase; letter-spacing:.03em; }
.blog-details-content .text-muted{
  color:var(--navy) !important; background:var(--gray-100); border-radius:50%;
  width:36px; height:36px; display:inline-flex; align-items:center; justify-content:center;
  transition:.2s; padding:0 !important;
}
.blog-details-content .text-muted:hover{ background:var(--teal); color:#fff !important; }
 
/* body links */
.blog-details-content .col-xl-8 p a,
.blog-details-content .col-xl-8 li a{
  color:var(--teal-deep); font-weight:600; text-decoration:none;
  border-bottom:1px solid var(--teal-pale2); transition:.2s;
}
.blog-details-content .col-xl-8 p a:hover,
.blog-details-content .col-xl-8 li a:hover{ color:var(--teal-dark); border-bottom-color:var(--teal); }
 
/* ---------- AXON model steps — compact card, no big connector gaps ---------- */
.axon-pipeline{ margin:1.25rem 0 1.5rem; }
.axon-step{
  position:relative; background:var(--off-white); border:1px solid var(--gray-200);
  border-radius:14px; padding:20px 20px 18px 62px; margin-bottom:14px;
}
.axon-step:last-child{ margin-bottom:0; }
.axon-step::before{
  content:attr(data-step); position:absolute; left:16px; top:20px;
  font-size:13px; font-weight:800; color:#fff;
  width:30px; height:30px; border-radius:8px; background:var(--teal-deep);
  display:flex; align-items:center; justify-content:center;
}
.axon-step h3{ margin-top:0; margin-bottom:.4rem; }
.axon-step p:last-child{ margin-bottom:0; }
 
/* ---------- session metrics stat strip — tight grid ---------- */
.stat-strip{
  display:grid; grid-template-columns:repeat(4,1fr); gap:10px; margin:1rem 0 1.25rem;
}
.stat-card{
  background:var(--teal-pale); border:1px solid var(--teal-pale2); border-radius:12px; padding:14px 12px;
}
.stat-card .stat-label{
  font-size:10.5px; letter-spacing:.05em; text-transform:uppercase;
  color:var(--teal-deep); font-weight:700; display:block; margin-bottom:4px;
}
.stat-card p{ font-size:13px !important; color:var(--text-mid) !important; margin:0 !important; line-height:1.45; }
@media (max-width:767px){ .stat-strip{ grid-template-columns:repeat(2,1fr); } }
 
/* ---------- comparison table ---------- */
/* .blog-details-content .table-responsive{ margin-bottom:1rem; } */
.blog-details-content .table-responsive table{ border-color:var(--gray-200); border-radius:12px; overflow:hidden; }
.blog-details-content .table thead th{
  background:var(--teal-deep); color:#fff; font-weight:700; border:none; padding:11px 16px;
}
.blog-details-content .table tbody td{ padding:10px 16px; border-color:var(--gray-200); font-size:14.5px; }
.blog-details-content .table tbody tr:nth-child(even){ background:var(--off-white); }
.blog-details-content .table tbody tr td:last-child{ color:var(--teal-deep); font-weight:600; }
 
/* ---------- inline CTA ---------- */
.blog-details-content h2 + p a[href*="book-a-demo"]{
  display:inline-block; background:var(--teal); color:#fff !important; font-weight:700;
  border:none !important; padding:11px 24px; border-radius:100px; margin-top:4px; transition:.2s;
}
.blog-details-content h2 + p a[href*="book-a-demo"]:hover{ background:var(--teal-dark); color:#fff !important; }
/* ============================================================
   SIDEBAR — unchanged behaviour, tightened visual only
   ============================================================ */
.blogs-sidewraps{ 
  position:sticky; 
  top:45px; 
  z-index:10; 
}
.blogs-sides{
  position:sticky; top:45px; background:var(--off-white); border:1px solid var(--gray-200);
  border-radius:16px; padding:22px 18px;
}
.blogs-sides h4{ font-size:1rem; font-weight:800; color:var(--navy); margin-bottom:.75rem; }
.blogs-sides .form-control{
  border-radius:100px; border:1px solid var(--gray-200); background:#fff; height:44px; font-size:14px;
}
.blogs-sides .form-control:focus{ 
  box-shadow:0 0 0 3px var(--teal-pale2); 
  border-color:var(--teal); 
}
.blogs-sides .fa-magnifying-glass{ 
  color:var(--text-light); 
}
.recent-blogs-wrapper{ height:70vh; overflow:hidden; transition:height .4s ease; }
.blogs-sidewraps .h6{ margin-bottom:6px; font-size:15px; line-height:1.45; }
.blogs-sidewraps .h6 a{ 
  color:var(--navy); text-decoration:none; font-weight:700; }
.blogs-sidewraps .h6 a:hover{ 
  color:var(--teal-deep); 
}
#loadMoreBtn.btn-dark{
  background:var(--navy); border:none; border-radius:100px; font-weight:700;
}
#loadMoreBtn.btn-dark:hover{ 
  background:var(--teal-deep); 
}
#recent_blogs_wrapper {
  scrollbar-width: thin; /* Firefox */
}
#recent_blogs_wrapper::-webkit-scrollbar {
  width: 6px;
}
/* ============================================================
   FAQ ACCORDION — scoped to the blog FAQ block only
   ============================================================ */
.bg-light-info{ background:var(--teal-pale) !important; }
.exlopi-yut h2{ font-weight:800; color:var(--navy); }
 
.bg-light-info .accordion-item{
  border:1px solid var(--gray-200) !important; border-radius:12px !important; overflow:hidden; background:#fff;
}
.bg-light-info .accordion-button{
  font-weight:700; font-size:15.5px; color:var(--navy); padding:16px 18px; background:#fff;
}
.bg-light-info .accordion-button:not(.collapsed){
  color:var(--teal-deep); background:var(--teal-pale); box-shadow:none;
}
.bg-light-info .accordion-button:focus{ box-shadow:none; }
.bg-light-info .accordion-body{ font-size:14.5px; line-height:1.7; color:var(--text-mid); padding:2px 18px 18px; }
 
/* ============================================================
   RELATED ARTICLES — heading only, cards keep site's own styles
   ============================================================ */
.gray-simple .sec-heading h2{ font-weight:800; color:var(--navy); }
@media (max-width:991px){
  .blogs-sidewraps, .blogs-sides{ position:static; }
}
/* Continue Reading Link */
.verticle-blog-wrap{
  padding: 80px;
}
.article-links{
    margin-top: 20px;
}
.article-links h4 a{
    align-items: center;
    gap: 8px;
    color: #0db5b0;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease;
}
.article-heads h4{
    color: var(--navy);
    font-size: 15px;
    font-weight: 600;
}
.article-desc p{
    color: inherit;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none !important;
}
/* .article-links a i{
    font-size: 13px;
    transition: transform .3s ease;
} */
/* Mobile */
@media (max-width: 767px){
    .article-links a{
        width:100%;
        justify-content:center;
        padding:12px 16px;
    }

} 
/* Continue Reading Link */

.article-links{
    margin-top: 20px;
}

.article-links a{
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 18px;
    border: 1px solid #0db5b0;
    border-radius: 50px;
    color: #0db5b0;
    background: #fff;
    font-size: 15px;
    font-weight: 600;
    text-decoration: none;
    transition: all .3s ease;
}

.article-links a i{
    font-size: 13px;
    transition: transform .3s ease;
}

.verticle-blog-wrap:hover .article-links a{
    background: #0db5b0;
    color: #fff;
    border-color: #0db5b0;
}

.verticle-blog-wrap:hover .article-links a i{
    transform: translateX(5px);
}

/* Mobile */

@media (max-width: 767px){

    .article-links a{
        width:100%;
        justify-content:center;
        padding:12px 16px;
    }

}
/* Popup Form CSS */
.demo-modal-content{
  border-radius:16px;
  border:none;
  padding:20px 8px;
}
.demo-modal-content .faq-form-title{
  font-size:1.3rem;
  color: #00807a;
}
.demo-modal-content .ff-input{
  border-radius:10px;
}
@media (max-width:575.98px){
  .demo-modal-content{
    padding:10px 4px;
  }
  .demo-modal-content .faq-form-title{
    font-size:1.1rem;
  }
}
/* ======== Whats App CTA ======== */
.whatsapp-float{
    position: fixed;
    left: 20px;     
    bottom: 20px;
    width: 60px;
    height: 60px;
    background: #25D366;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    box-shadow: 0 8px 20px rgba(37,211,102,.4);
    z-index: 9999;
    animation: pulse 2s infinite;
    transition: all .3s ease;
}

.whatsapp-float:hover{
    transform: scale(1.08);
}

.whatsapp-float img{
    width: 32px;
    height: 32px;
}

@keyframes pulse{
    0%{
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37,211,102,.6);
    }
    70%{
        transform: scale(1.08);
        box-shadow: 0 0 0 18px rgba(37,211,102,0);
    }
    100%{
        transform: scale(1);
        box-shadow: 0 0 0 0 rgba(37,211,102,0);
    }
}
.ff-input:focus,
.form-control:focus,
.form-select:focus {
    /* border-color: #D1D5DB !important;   */
    box-shadow: none !important;
    outline: none !important;
}
/* Dropdown Style */
.ff-select{
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;

    /* background-color: #fff; */
    /* color: #1f2937; */
    /* border: 1px solid #d1d5db; */
    border-radius: 12px;
    padding: 12px 45px 12px 16px;
    font-size: 15px;
    font-weight: 500;
    cursor: pointer;

    /* Custom Arrow */
    background-image: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='18' height='18' viewBox='0 0 24 24' fill='none' stroke='%236b7280' stroke-width='2.5' stroke-linecap='round' stroke-linejoin='round'%3E%3Cpolyline points='6 9 12 15 18 9'/%3E%3C/svg%3E");
    background-repeat: no-repeat;
    background-position: right 15px center;
    background-size: 18px;
}
/* Focus */
.ff-select:focus{
    outline: none;
    box-shadow: 0 0 0 4px rgba(20,184,166,.12);
}

/* Options */
.ff-select option{
    background: #fff;
    color: #1f2937;
    padding: 10px;
}

/* Placeholder option */
.ff-select option:first-child{
    color: #9ca3af;
}
/* === Specialist CSS ==== */
.specialty-modules-section{
  background: #f8fcfc;
}
.specialty-card{
    background:#fff;
    border:1px solid #e8eef3;
    border-radius:18px;
    padding:28px;
    transition:.35s;
    height:100%;
}
.specialty-card:hover{
    transform:translateY(-8px);
    box-shadow:0 18px 40px rgba(0,0,0,.08);
}
.specialty-header{
    display:flex;
    align-items:center;
    gap:18px;
    margin-bottom:22px;
}
.specialty-icon{
    width:65px;
    height:65px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:26px;
    color:#0d6efd;
    flex-shrink:0;
}
.specialty-header h4{
    margin:0;
    font-weight:700;
}
.specialty-header span{
    color:#6c757d;
    font-size:14px;
}
.feature-list{
    margin:0;
    padding:0;
    list-style:none;
}
.feature-list li{
    display:flex;
    gap:12px;
    align-items:flex-start;
    padding:10px 0;
    border-bottom:1px dashed #ececec;
    font-size:15px;
}
.feature-list li:last-child{
    border:none;
}
.feature-list i{
    color:#16a34a;
    margin-top:3px;
    flex-shrink:0;
}
@media(max-width:991px){
    .specialty-card{
        padding:22px;
    }

    .specialty-icon{
        width:58px;
        height:58px;
        font-size:22px;
    }
}
@media(max-width:576px){

    .specialty-header{
        gap:14px;
    }

    .specialty-header h4{
        font-size:20px;
    }

    .feature-list li{
        font-size:14px;
    }
}
/* === Pricing Page === */
.hero-trust{
  display:flex;
  justify-content:center;
  gap:40px;
  margin-top:25px;
  flex-wrap:wrap;
}
.trust-item{
  display:flex;
  align-items:center;
  gap:8px;
  color: var(--text-mid);
  font-size:13px;
  font-weight:500;
}
.trust-item span{
  color: var(--text-mid);
  font-weight:600;
}
/* CONFIGURATOR SECTION */
.config-section {
  padding: 50px 1rem;
  background: var(--off);
}
.config-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.config-header {
  text-align: center;
  margin-bottom: 48px;
}
.config-header h2 {
  font-size: 36px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.8px;
  margin-bottom: 12px;
}
.config-header h2 span {
  color: var(--teal);
}
.config-header p {
  color: var(--muted);
  font-size: 17px;
}

/* PROGRESS BAR */
.quote-progress {
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 0;
  margin-bottom: 25px;
}
.step-item {
  display: flex;
  align-items: center;
  gap: 0;
}
.step-circle {
  width: 36px;
  height: 36px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 13px;
  font-weight: 700;
  border: 2px solid var(--border);
  color: var(--muted);
  background: var(--white);
  transition: all 0.3s;
  flex-shrink: 0;
  cursor: pointer;
}
.step-circle.active {
  background: var(--teal);
  border-color: var(--teal);
  color: var(--white);
}
.step-circle.done {
  background: #00d3a1;
  border-color: #00d3a1;
  color: #fff;
}
.step-line {
  width: 60px;
  height: 2px;
  background: var(--border);
  transition: background 0.3s;
}
.step-line.done {
  background: #00d3a1;
}
.step-label {
  font-size: 10px;
  color: var(--muted);
  text-align: center;
  margin-top: 6px;
  font-weight: 500;
  white-space: nowrap;
}

/* CONFIGURATOR CARD */
.config-card {
  background: var(--white);
  border-radius: 20px;
  padding: 48px;
  box-shadow: 0 4px 40px rgba(11, 27, 53, 0.08);
  border: 1px solid var(--border);
  min-height: 400px;
}

/* STEP PANELS */
.step-panel {
  display: none;
}
.step-panel.active {
  display: block;
}
.step-title {
  font-size: 24px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 8px;
  letter-spacing: -0.4px;
}
.step-title span {
  color: var(--teal);
}
.step-sub {
  font-size: 15px;
  color: var(--muted);
  margin-bottom: 32px;
}

/* CLINIC TYPE OPTIONS */
.clinic-options {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 16px;
}
.clinic-opt {
  border: 2px solid var(--border);
  border-radius: 14px;
  padding: 24px;
  cursor: pointer;
  transition: all 0.2s;
  position: relative;
}
.clinic-opt:hover {
  border-color: var(--teal);
  background: var(--light);
}
.clinic-opt.selected {
  border-color: var(--teal);
  background: var(--light);
  box-shadow: 0 0 0 3px rgba(15, 184, 201, 0.1);
}
.clinic-opt.selected::after {
  content: "✓";
  position: absolute;
  top: 12px;
  right: 16px;
  width: 24px;
  height: 24px;
  background: var(--teal);
  border-radius: 50%;
  color: white;
  font-size: 12px;
  font-weight: 700;
  display: flex;
  align-items: center;
  justify-content: center;
}
.opt-icon {
  font-size: 28px;
  margin-bottom: 12px;
}
.opt-title {
  font-size: 16px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 4px;
}
.opt-desc {
  font-size: 13px;
  color: var(--muted);
  line-height: 1.5;
}

/* SLIDERS */
.slider-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 32px;
}
.slider-group {
  background: #e3f7f7c7;
  border-radius: 14px;
  padding: 24px;
}
.slider-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 16px;
}
.slider-label {
  font-size: 16px;
  font-weight: 600;
  color: var(--navy);
}
.slider-val {
  background: var(--teal);
  color: var(--white);
  font-size: 14px;
  font-weight: 700;
  padding: 4px 12px;
  border-radius: 20px;
  min-width: 40px;
  text-align: center;
}
.slider-desc {
  font-size: 12px;
  color: var(--muted);
  margin-bottom: 12px;
}
input[type="range"] {
  width: 100%;
  -webkit-appearance: none;
  height: 4px;
  border-radius: 4px;
  background: var(--border);
  outline: none;
}
input[type="range"]::-webkit-slider-thumb {
  -webkit-appearance: none;
  width: 20px;
  height: 20px;
  border-radius: 50%;
  background: var(--teal);
  cursor: pointer;
  box-shadow: 0 2px 8px rgba(15, 184, 201, 0.4);
}
input[type="range"]::-webkit-slider-runnable-track {
  height: 4px;
  border-radius: 4px;
}

/* FEATURES */
.features-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 12px;
}
.feat-item {
  display: flex;
  align-items: center;
  gap: 12px;
  padding: 14px 16px;
  border: 2px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  transition: all 0.2s;
}
.feat-item:hover {
  border-color: var(--teal);
  background: var(--light);
}
.feat-item.selected {
  border-color: var(--teal);
  background: var(--light);
}
.feat-item.included {
    background: #e7fafa;
  cursor: default;
}
.feat-check {
  width: 20px;
  height: 20px;
  border-radius: 5px;
  border: 2px solid var(--border);
  flex-shrink: 0;
  transition: all 0.2s;
  display: flex;
  align-items: center;
  justify-content: center;
}
.feat-item.selected .feat-check,
.feat-item.included .feat-check {
  background: var(--teal);
  border-color: var(--teal);
  color: white;
  font-size: 11px;
  font-weight: 700;
}
.feat-item.included .feat-check {
  background: var(--teal);
}
.feat-text {
  flex: 1;
}
.feat-name {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
      margin-bottom: 11px;
}
.feat-badge {
  font-size: 10px;
  font-weight: 700;
  padding: 2px 7px;
  border-radius: 8px;
  margin-left: 6px;
}
.feat-badge.included {
  color: var(--teal-dark);
}
.feat-badge.ai {
  background: var(--light);
  color: var(--teal);
}

/* CITY SELECTOR */
.city-search {
  width: 100%;
  padding: 14px 18px;
  border: 2px solid var(--border);
  border-radius: 12px;
  font-size: 15px;
  font-family: "Inter", sans-serif;
  outline: none;
  transition: border 0.2s;
  margin-bottom: 16px;
}
.city-search:focus {
  border-color: var(--teal);
}
.city-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 10px;
}
.city-chip {
  padding: 10px 14px;
  border: 2px solid var(--border);
  border-radius: 10px;
  cursor: pointer;
  font-size: 13px;
  font-weight: 500;
  color: var(--text);
  text-align: center;
  transition: all 0.2s;
}
.city-chip:hover {
  border-color: var(--teal);
  color: var(--teal);
}
.city-chip.selected {
  border-color: var(--teal);
  background: var(--light);
  color: var(--teal);
  font-weight: 700;
}

/* CONTACT FORM */
.form-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 20px;
}
.form-group {
  display: flex;
  flex-direction: column;
  gap: 6px;
}
.form-group.full {
  grid-column: 1/-1;
}
.form-label {
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
}
.form-input {
  padding: 13px 16px;
  border: 2px solid var(--border);
  border-radius: 10px;
  font-size: 15px;
  font-family: "Inter", sans-serif;
  outline: none;
  transition: border 0.2s;
  color: var(--text);
}
.form-input:focus {
  border-color: var(--teal);
}

/* ESTIMATE PREVIEW */
.estimate-box {
  background: var(--navy);
  border-radius: 16px;
  padding: 28px;
  margin-bottom: 28px;
  position: relative;
  overflow: hidden;
}
.estimate-box::before {
  content: "";
  position: absolute;
  top: -40px;
  right: -40px;
  width: 120px;
  height: 120px;
  border-radius: 50%;
  background: rgba(15, 184, 201, 0.08);
}
.est-label {
  font-size: 12px;
  color: rgba(255, 255, 255, 0.45);
  text-transform: uppercase;
  letter-spacing: 0.5px;
  margin-bottom: 8px;
}
.est-amount {
  font-size: 36px;
  font-weight: 900;
  color: var(--white);
  letter-spacing: -1px;
  margin-bottom: 4px;
}
.est-amount .blurred {
  filter: blur(6px);
  user-select: none;
  transition: filter 0.5s;
}
.est-sub {
  font-size: 13px;
  color: rgba(255, 255, 255, 0.45);
}
.est-unlock {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  background: rgba(255, 107, 53, 0.15);
  border: 1px solid rgba(255, 107, 53, 0.3);
  color: var(--orange);
  font-size: 12px;
  padding: 5px 12px;
  border-radius: 20px;
  margin-top: 10px;
}
.config-summary {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 16px;
}
.sum-tag {
  background: rgba(15, 184, 201, 0.08);
  border: 1px solid rgba(15, 184, 201, 0.2);
  color: var(--teal);
  font-size: 12px;
  font-weight: 600;
  padding: 4px 10px;
  border-radius: 8px;
}

/* NAV BUTTONS */
.btn-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-top: 36px;
}
.btn-back {
  background: transparent;
  border: 2px solid var(--border);
  color: var(--muted);
  padding: 12px 28px;
  border-radius: 10px;
  font-size: 14px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  font-family: "Inter", sans-serif;
}
.btn-back:hover {
  border-color: var(--navy);
  color: var(--navy);
}
.btn-next {
  background: var(--teal);
  color: var(--white);
  padding: 14px 36px;
  border-radius: 10px;
  font-size: 15px;
  font-weight: 600;
  cursor: pointer;
  transition: all 0.2s;
  border: none;
  font-family: "Inter", sans-serif;
  display: flex;
  align-items: center;
  gap: 8px;
}
/* .btn-next:hover{background:var(--teal2);} */
.btn-submit {
  background: #00b4b4;
  color: var(--white);
  padding: 16px 48px;
  border-radius: 12px;
  font-size: 16px;
  font-weight: 600;
  cursor: pointer;
  border: none;
  font-family: "Inter", sans-serif;
  width: 100%;
  margin-top: 24px;
  transition: all 0.2s;
}
.btn-submit:hover {
  opacity: 0.9;
}

/* SUCCESS STATE */
.success-panel {
  display: none;
  text-align: center;
  padding: 40px 20px;
}
.success-icon {
  width: 80px;
  height: 80px;
  background: linear-gradient(135deg, var(--green), #047857);
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 36px;
  margin: 0 auto 24px;
}
.success-panel h3 {
  font-size: 28px;
  font-weight: 800;
  color: var(--navy);
  margin-bottom: 12px;
}
.success-panel p {
  font-size: 16px;
  color: var(--muted);
  max-width: 420px;
  margin: 0 auto 32px;
  line-height: 1.7;
}
.success-details {
  background: var(--off);
  border-radius: 14px;
  padding: 24px;
  text-align: left;
  max-width: 400px;
  margin: 0 auto 24px;
}
.success-row {
  display: flex;
  justify-content: space-between;
  padding: 8px 0;
  border-bottom: 1px solid var(--border);
  font-size: 14px;
}
.success-row:last-child {
  border-bottom: none;
}
.success-row .label {
  color: var(--muted);
}
.success-row .val {
  font-weight: 700;
  color: var(--navy);
}
.whatsapp-btn {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: #25d366;
  color: white;
  padding: 14px 28px;
  border-radius: 12px;
  font-size: 15px;
  font-weight: 700;
  text-decoration: none;
}

/* INCLUDED SECTION */
.included-section {
  padding: 80px 40px;
  background: var(--off-white);;
}
.included-inner {
  max-width: 960px;
  margin: 0 auto;
}
.included-header {
  text-align: center;
  margin-bottom: 48px;
}
.included-header h2 {
  font-size: 34px;
  font-weight: 800;
  color: var(--navy);
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.included-header p {
  color: var(--muted);
  font-size: 16px;
}
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.inc-card {
  background: var(--off);
  border-radius: 14px;
  padding: 22px;
  border: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.inc-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.inc-text h4 {
  font-size: 14px;
  font-weight: 700;
  color: var(--navy);
  margin-bottom: 3px;
}
.inc-text p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}
.inc-badge {
  display: inline-block;
  background: #d1fae5;
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 6px;
  margin-bottom: 6px;
}
@media (max-width: 768px) {
  .hero h1 {
    font-size: 32px;
  }
  .clinic-options,
  .slider-grid,
  .features-grid,
  .city-grid,
  .form-grid,
  .included-grid,
  .test-cards {
    grid-template-columns: 1fr;
  }
  .city-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  nav .nav-links {
    display: none;
  }
  .step-line {
    width: 30px;
  }
}
/* INCLUDED SECTION */
.included-section {
  padding: 80px 40px;
  background: var(--off-white);
}
.included-inner {
  max-width: 1100px;
  margin: 0 auto;
}
.included-header {
  text-align: center;
  margin-bottom: 48px;
}
.included-header h2 {
  font-size: 34px;
  font-weight: 600;
  color: var(--navy);
  letter-spacing: -0.5px;
  margin-bottom: 10px;
}
.included-header p {
  color: var(--muted);
  font-size: 16px;
}
.included-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.inc-card {
  background: #fff;
  border-radius: 14px;
  padding: 22px;
  border: 1px solid var(--border);
  display: flex;
  align-items: flex-start;
  gap: 14px;
}
.inc-icon {
  width: 40px;
  height: 40px;
  border-radius: 10px;
  background: var(--light);
  display: flex;
  align-items: center;
  justify-content: center;
  font-size: 18px;
  flex-shrink: 0;
}
.inc-text h4 {
  font-size: 14px;
  font-weight: 600;
  color: var(--navy);
  margin-bottom: 3px;
}
.inc-text p {
  font-size: 12px;
  color: var(--muted);
  line-height: 1.5;
}
.inc-badge {
  display: inline-block;
  background: #d1fae5;
  color: var(--green);
  font-size: 10px;
  font-weight: 700;
  padding: 2px 8px;
  border-radius: 6px;
  margin-bottom: 6px;
}
.inc-icon{
    width: 50px;
    height: 50px;
    border-radius:16px;
    display:flex;
    align-items:center;
    justify-content:center;
    font-size:24px;
    flex-shrink:0;
}

.inc-icon i{
    line-height:1;
}

/* Colors */

.inc-icon.teal{
    background:#e6f8f6;
    color:#0f9d8a;
}

.inc-icon.blue{
    background:#eaf3ff;
    color:#2563eb;
}

.inc-icon.green{
    background:#e8f9ef;
    color:#16a34a;
}

.inc-icon.purple{
    background:#f2ecff;
    color:#7c3aed;
}

.inc-icon.orange{
    background:#fff4e8;
    color:#ea580c;
}

.inc-icon.indigo{
    background:#eef2ff;
    color:#4f46e5;
}

.inc-icon.red{
    background:#fdecec;
    color:#dc2626;
}

.inc-icon.gold{
    background:#fff8e1;
    color:#d97706;
}






















