*,
*::before,
*::after {
  box-sizing: border-box;
  margin: 0;
  padding: 0
}

html {
  scroll-behavior: smooth
}

body {
  font-family: 'DM Sans', sans-serif;
  background: #F0F8F8;
  color: #1A2E2E;
  overflow-x: hidden;
  line-height: 1.6
}

:root {
  --teal: #00A89D;
  --teal2: #00C4B8;
  --teal3: #007F76;
  --dark: #0D2B2B;
  --dark2: #163535;
  --white: #FFFFFF;
  --light: #F0F8F8;
  --muted: #5E7878;
  --border: #D0E8E6;
  --grad1: linear-gradient(135deg, #0D2B2B 0%, #0E3D3A 55%, #0A4040 100%);
  --grad2: linear-gradient(135deg, #00A89D, #00C4B8);
  --grad3: linear-gradient(135deg, #00C4B8, #3DD6CC);
  --shadow: 0 8px 32px rgba(0, 168, 157, .18);
}

/* ═══════════════════════════ UTILS ═══════════════════════════ */
.container {
  width: 100%;
  max-width: 1160px;
  margin: 0 auto;
  padding: 0 1.5rem
}

.section-pad {
  padding: 5.5rem 0
}

.eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: var(--teal);
  margin-bottom: .9rem;
}

.eyebrow::before {
  content: '';
  display: block;
  width: 22px;
  height: 2px;
  background: var(--teal);
  border-radius: 2px
}

.eyebrow.light {
  color: var(--teal2)
}

.eyebrow.light::before {
  background: var(--teal2)
}

.section-title {
  font-family: 'Outfit', sans-serif;
  font-size: 41.6px;
  font-weight: 700;
  line-height: 1.22;
  color: var(--dark);
  margin-bottom: .9rem;
}

.section-title.white {
  color: var(--white)
}

.section-sub {
  font-size: 15.5px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.78;
  margin-bottom: 2.5rem;
}

.section-sub.white {
  color: rgba(255, 255, 255, .62)
}

.btn-visitor {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 13px 30px;
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 600;
  text-decoration: none;
  cursor: pointer;
  border: none;
  transition: transform .22s, box-shadow .22s;
}

.btn-visitor:hover {
  transform: translateY(-2px)
}

.btn-teal {
  background: var(--grad2);
  color: #fff;
  box-shadow: 0 6px 24px rgba(0, 168, 157, .32)
}

.btn-teal:hover {
  box-shadow: 0 10px 32px rgba(0, 168, 157, .48)
}

.btn-outline-w {
  background: transparent;
  color: #fff;
  border: 1.5px solid rgba(255, 255, 255, .4)
}

.btn-outline-w:hover {
  background: rgba(255, 255, 255, .1);
  border-color: rgba(255, 255, 255, .75)
}

a.btn-outline-w:hover {
  color: #ffffff;
  text-decoration: none;
}

a.btn-visitor:hover {
  color: #ffffff;
  text-decoration: none;
}

.btn-outline-t {
  background: transparent;
  color: var(--teal);
  border: 1.5px solid var(--teal)
}

.btn-outline-t:hover {
  background: var(--teal);
  color: #fff
}

/* ═══════════════════════════ HERO ═══════════════════════════ */
.hero {
  background: var(--grad1);
  padding: 6.5rem 0 5rem;
  position: relative;
  overflow: hidden;
}

.hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(ellipse 70% 60% at 20% 40%, rgba(0, 168, 157, .22), transparent 65%),
    radial-gradient(ellipse 50% 40% at 90% 80%, rgba(0, 196, 184, .1), transparent 55%);
  pointer-events: none;
}

.hero::after {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    linear-gradient(rgba(255, 255, 255, .025) 1px, transparent 1px),
    linear-gradient(90deg, rgba(255, 255, 255, .025) 1px, transparent 1px);
  background-size: 55px 55px;
  pointer-events: none;
}

.hero-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 3.5rem;
  align-items: center;
  position: relative;
  z-index: 1;
}

/* --- hero badge --- */
.hero-badge {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 5px 15px;
  border-radius: 100px;
  border: 1px solid rgba(0, 200, 185, .45);
  background: rgba(0, 168, 157, .15);
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .08em;
  text-transform: uppercase;
  color: var(--teal2);
  margin-bottom: 1.3rem;
}

.hero-badge span {
  width: 6px;
  height: 6px;
  border-radius: 50%;
  background: var(--teal2);
  animation: pulse 1.8s infinite
}

@keyframes pulse {

  0%,
  100% {
    opacity: 1
  }

  50% {
    opacity: .3
  }
}

.hero h1 {
  font-family: 'Outfit', sans-serif;
  font-size: 48px;
  font-weight: 800;
  line-height: 1.15;
  color: #fff;
  margin-bottom: 1.3rem;
}

.hero h1 em {
  font-style: normal;
  background: linear-gradient(90deg, #00C4B8, #5FE8E0);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.hero-sub {
  font-size: 15.5px;
  font-weight: 300;
  color: rgba(255, 255, 255, .65);
  line-height: 1.82;
  margin-bottom: 2rem;
  max-width: 480px;
}

.hero-btns {
  display: flex;
  gap: 1rem;
  flex-wrap: wrap
}

/* ═══════════════════════════ DEMO FORM ═══════════════════════════ */
.demo-form-card {
  background: #fff;
  border-radius: 20px;
  overflow: hidden;
  box-shadow: 0 20px 60px rgba(0, 0, 0, .25);
  position: relative;
}

/* top image strip */
.demo-form-top {
  height: 130px;
  background: linear-gradient(135deg, #e8f4f4, #c5e8e6);
  display: flex;
  align-items: center;
  justify-content: center;
  position: relative;
  overflow: hidden;
}

.demo-form-top::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(circle at 20% 50%, rgba(0, 168, 157, .15), transparent 60%),
    radial-gradient(circle at 80% 30%, rgba(0, 200, 185, .1), transparent 50%);
}

.demo-form-top-inner {
  position: relative;
  z-index: 1;
  text-align: center;
}

.demo-avatar {
  width: 64px;
  height: 64px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--teal), var(--teal2));
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 8px;
  box-shadow: 0 4px 16px rgba(0, 168, 157, .4);
}

.demo-avatar svg {
  width: 32px;
  height: 32px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round
}

.demo-form-top-inner p {
  font-size: 12px;
  color: var(--muted);
  font-weight: 400
}

/* form body */
.demo-form-body {
  padding: 1.5rem 1.75rem 1.75rem
}

.demo-form-title {
  font-family: 'Outfit', sans-serif;
  font-size: 1.3rem;
  font-weight: 700;
  color: var(--dark);
  text-align: center;
  margin-bottom: 1.25rem;
}

.form-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1rem
}

.form-group {
  display: flex;
  flex-direction: column;
  gap: 5px
}

.form-group label {
  font-size: 11.5px;
  font-weight: 600;
  letter-spacing: .05em;
  color: var(--muted);
  text-transform: uppercase;
}

.form-group input,
.form-group select {
  padding: 10px 12px;
  border: none;
  border-bottom: 1.5px solid #C8DCDA;
  background: transparent;
  font-family: 'DM Sans', sans-serif;
  font-size: 13.5px;
  color: var(--dark);
  outline: none;
  transition: border-color .2s;
  border-radius: 0;
  -webkit-appearance: none;
  appearance: none;
}

.form-group input::placeholder {
  color: #A0B4B2;
  font-size: 13px
}

.form-group input:focus,
.form-group select:focus {
  border-bottom-color: var(--teal)
}

/* captcha row */
.captcha-row {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 1rem;
  margin-bottom: 1.25rem
}

.captcha-box {
  display: flex;
  align-items: center;
  justify-content: center;
  padding: 9px 16px;
  background: linear-gradient(135deg, #e8f4f4, #d5eeec);
  border: 1.5px dashed var(--teal);
  border-radius: 8px;
  font-family: 'Outfit', sans-serif;
  font-size: 18px;
  font-weight: 700;
  color: var(--teal3);
  letter-spacing: .18em;
  user-select: none;
  cursor: default;
  position: relative;
}

.captcha-box::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 7px;
  background: repeating-linear-gradient(45deg, transparent, transparent 5px, rgba(0, 168, 157, .05) 5px, rgba(0, 168, 157, .05) 6px);
}

.captcha-refresh {
  position: absolute;
  right: 8px;
  top: 50%;
  transform: translateY(-50%);
  width: 20px;
  height: 20px;
  cursor: pointer;
  color: var(--teal);
  opacity: .6;
}

.captcha-refresh:hover {
  opacity: 1
}

.captcha-refresh svg {
  width: 14px;
  height: 14px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round
}

.btn-submit {
  width: 100%;
  padding: 13px;
  border-radius: 8px;
  background: linear-gradient(135deg, #00B8AD, #00D5C9);
  color: #fff;
  border: none;
  cursor: pointer;
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  letter-spacing: .03em;
  display: flex;
  align-items: center;
  justify-content: center;
  gap: 8px;
  box-shadow: 0 6px 24px rgba(0, 168, 157, .35);
  transition: transform .2s, box-shadow .2s;
}

.btn-submit:hover {
  transform: translateY(-2px);
  box-shadow: 0 10px 32px rgba(0, 168, 157, .5)
}

.btn-submit svg {
  width: 18px;
  height: 18px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round
}

/* ═══════════════════════════ STATS BAR ═══════════════════════════ */
.stats-bar {
  background: #fff;
  border-bottom: 1px solid var(--border);
  padding: 2rem 0;
  box-shadow: 0 4px 24px rgba(0, 168, 157, .07);
}

.stats-inner {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 1rem
}

.stat-item {
  text-align: center;
  padding: 6px;
  border-right: 1px solid var(--border)
}

.stat-item:last-child {
  border-right: none
}

.stat-number {
  font-family: 'Outfit', sans-serif;
  font-size: 33.6px;
  font-weight: 800;
  color: var(--dark);
  line-height: 1;
  margin-bottom: .3rem;
}

.stat-number span {
  background: var(--grad2);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
}

.stat-label {
  font-size: 13px;
  font-weight: 400;
  color: var(--muted);
  font-family: 'DM Sans', sans-serif;
}

/* ═══════════════════════════ WHAT IS VMS ═══════════════════════════ */
.what-section {
  background: #fff
}

.what-inner {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 5rem;
  align-items: center
}

.benefit-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: 11px 14px;
  border-radius: 10px;
  background: var(--light);
  border: 1px solid var(--border);
  transition: border-color .2s, background .2s;
  margin-bottom: .75rem;
}

.benefit-item:hover {
  background: #E5F5F4;
  border-color: rgba(0, 168, 157, .35)
}

.benefit-check {
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--grad2);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 1px;
}

.benefit-check svg {
  width: 11px;
  height: 11px;
  stroke: #fff;
  fill: none;
  stroke-width: 2.8;
  stroke-linecap: round;
  stroke-linejoin: round
}

.benefit-text {
  font-size: 14px;
  font-weight: 400;
  color: var(--dark);
  line-height: 1.5
}

.feature-mosaic {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 16px
}

.mosaic-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 16px;
  padding: 1.4rem 1.2rem;
  transition: transform .3s, box-shadow .3s;
}

.mosaic-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 36px rgba(0, 168, 157, .14)
}

/* .mosaic-card:nth-child(2){margin-top:2rem}
.mosaic-card:nth-child(3){margin-top:-1rem}
.mosaic-card:nth-child(4){margin-top:1rem} */
.mc-icon {
  width: 46px;
  height: 46px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .9rem;
}

.mc-icon svg {
  width: 23px;
  height: 23px;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none
}

.ic-t1 {
  background: rgba(0, 168, 157, .1)
}

.ic-t1 svg {
  stroke: var(--teal)
}

.ic-t2 {
  background: rgba(0, 168, 157, .18)
}

.ic-t2 svg {
  stroke: var(--teal3)
}

.ic-t3 {
  background: rgba(0, 196, 184, .12)
}

.ic-t3 svg {
  stroke: #00A89D
}

.ic-t4 {
  background: rgba(0, 127, 118, .1)
}

.ic-t4 svg {
  stroke: var(--teal3)
}

.mc-title {
  font-family: 'Outfit', sans-serif;
  font-size: 13.5px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .35rem
}

.mc-desc {
  font-size: 14px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.55
}

/* ═══════════════════════════ HOW IT WORKS ═══════════════════════════ */
.hiw-section {
  background: var(--grad1);
  position: relative;
  overflow: hidden
}

.hiw-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 80% 20%, rgba(0, 168, 157, .22), transparent 50%),
    radial-gradient(circle at 10% 80%, rgba(0, 200, 184, .1), transparent 45%);
  pointer-events: none;
}

.hiw-steps {
  display: grid;
  grid-template-columns: repeat(5, 1fr);
  gap: 0;
  margin-top: 3.5rem;
  position: relative
}

.hiw-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: 10%;
  right: 10%;
  height: 1px;
  background: linear-gradient(90deg, rgba(0, 168, 157, .8), rgba(0, 200, 184, .4));
  z-index: 0;
}

.hiw-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 .7rem;
  position: relative;
  z-index: 1
}

.step-circle {
  width: 72px;
  height: 72px;
  border-radius: 50%;
  border: 2px solid rgba(0, 168, 157, .4);
  background: rgba(0, 168, 157, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  transition: transform .3s, background .3s;
  flex-shrink: 0;
  position: relative;
  background: #01b8cf;
}

.step-circle:hover {
  transform: scale(1.08);
  background: rgb(0 168 157);
}

.step-circle svg {
  width: 27px;
  height: 27px;
  stroke: #fff;
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round
}

.step-num-badge {
  position: absolute;
  top: -4px;
  right: -4px;
  width: 22px;
  height: 22px;
  border-radius: 50%;
  background: var(--grad2);
  font-family: 'Outfit', sans-serif;
  font-size: 10px;
  font-weight: 700;
  color: #fff;
  display: flex;
  align-items: center;
  justify-content: center;
}

.step-h {
  font-family: 'Outfit', sans-serif;
  font-size: 13px;
  font-weight: 700;
  color: #fff;
  margin-bottom: .5rem;
  line-height: 1.3
}

.step-p {
  font-size: 12px;
  font-weight: 300;
  color: rgb(255 255 255 / 66%);
  line-height: 1.6
}

/* ═══════════════════════════ FEATURES ═══════════════════════════ */
.features-section {
  background: var(--light)
}

.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 3rem
}

.feat-card {
  background: #fff;
  border: 1px solid var(--border);
  border-radius: 18px;
  padding: 1.9rem 1.65rem;
  position: relative;
  overflow: hidden;
  transition: transform .3s, box-shadow .3s, border-color .3s;
}

.feat-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: var(--grad2);
  opacity: 0;
  transition: opacity .3s;
}

.feat-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(0, 168, 157, .12);
  border-color: rgba(0, 168, 157, .25)
}

.feat-card:hover::before {
  opacity: 1
}

.feat-num {
  font-family: 'Outfit', sans-serif;
  font-size: 11px;
  font-weight: 700;
  letter-spacing: .12em;
  color: rgba(0, 168, 157, .28);
  margin-bottom: 1rem
}

.feat-icon {
  width: 50px;
  height: 50px;
  border-radius: 13px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem
}

.feat-icon svg {
  width: 25px;
  height: 25px;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none
}

.fi1 {
  background: rgba(0, 168, 157, .1)
}

.fi1 svg {
  stroke: var(--teal)
}

.fi2 {
  background: rgba(0, 127, 118, .12)
}

.fi2 svg {
  stroke: var(--teal3)
}

.fi3 {
  background: rgba(0, 196, 184, .1)
}

.fi3 svg {
  stroke: #00B8AC
}

.fi4 {
  background: rgba(0, 168, 157, .15)
}

.fi4 svg {
  stroke: var(--teal)
}

.fi5 {
  background: rgba(13, 43, 43, .08)
}

.fi5 svg {
  stroke: var(--dark2)
}

.fi6 {
  background: rgba(0, 168, 157, .1)
}

.fi6 svg {
  stroke: var(--teal3)
}

.fi7 {
  background: rgba(0, 196, 184, .12)
}

.fi7 svg {
  stroke: var(--teal)
}

.fi8 {
  background: rgba(0, 127, 118, .1)
}

.fi8 svg {
  stroke: var(--teal3)
}

.fi9 {
  background: rgba(13, 43, 43, .08)
}

.fi9 svg {
  stroke: var(--dark)
}

.feat-title {
  font-family: 'Outfit', sans-serif;
  font-size: 15px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .55rem
}

.feat-desc {
  font-size: 15.5px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65
}

/* ═══════════════════════════ INDUSTRIES ═══════════════════════════ */
.industries-section {
  background: #fff
}

.industries-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 3rem
}

.industry-card {
  border-radius: 18px;
  overflow: hidden;
  border: 1px solid var(--border);
  background: #fff;
  display: flex;
  flex-direction: column;
  transition: transform .3s, box-shadow .3s;
  background: linear-gradient(135deg, #E5F5F4, #C8EEEB);
}

.industry-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 18px 44px rgba(0, 168, 157, .1)
}

.ind-header {
  padding: 1.8rem 1.65rem 1.4rem;
  position: relative
}

.ind-icon {
  width: 54px;
  height: 54px;
  border-radius: 15px;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem
}

.ind-icon svg {
  width: 27px;
  height: 27px;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
  fill: none
}

.ind-title {
  font-family: 'Outfit', sans-serif;
  font-size: 15.5px;
  font-weight: 700;
  color: var(--dark);
  margin-bottom: .45rem
}

.ind-desc {
  font-size: 15.5px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.65;
  margin-bottom: 1.1rem
}

.ind-link {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-size: 13px;
  font-weight: 600;
  color: var(--teal);
  text-decoration: none;
  padding: 0 1.65rem 1.65rem;
  transition: gap .2s;
}

.ind-link:hover {
  gap: 10px
}

.ind-link svg {
  width: 14px;
  height: 14px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round
}

/* teal bands */
.ic1 .ind-header {
  background: linear-gradient(135deg, #E5F5F4, #D0EEEC)
}

.ic1 .ind-icon {
  background: rgba(0, 168, 157, .14)
}

.ic1 .ind-icon svg {
  stroke: var(--teal)
}

.ic2 .ind-header {
  background: linear-gradient(135deg, #E5F5F4, #C8EEEB)
}

.ic2 .ind-icon {
  background: rgba(0, 127, 118, .14)
}

.ic2 .ind-icon svg {
  stroke: var(--teal3)
}

.ic3 .ind-header {
  background: linear-gradient(135deg, #EAF7F6, #D5F0EE)
}

.ic3 .ind-icon {
  background: rgba(0, 196, 184, .14)
}

.ic3 .ind-icon svg {
  stroke: #00B0A6
}

.ic4 .ind-header {
  background: linear-gradient(135deg, #E0F4F2, #CAEDEA)
}

.ic4 .ind-icon {
  background: rgba(0, 168, 157, .18)
}

.ic4 .ind-icon svg {
  stroke: var(--teal)
}

.ic5 .ind-header {
  background: linear-gradient(135deg, #E8F6F5, #CCE9E7)
}

.ic5 .ind-icon {
  background: rgba(0, 127, 118, .16)
}

.ic5 .ind-icon svg {
  stroke: var(--teal3)
}

.ic6 .ind-header {
  background: linear-gradient(135deg, #E3F4F3, #C5EEEB)
}

.ic6 .ind-icon {
  background: rgba(13, 43, 43, .1)
}

.ic6 .ind-icon svg {
  stroke: var(--dark2)
}

/* ═══════════════════════════ ADVANTAGES ═══════════════════════════ */
.adv-section {
  background: var(--grad1);
  position: relative;
  overflow: hidden
}

.adv-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 60% 55% at 100% 0%, rgba(0, 168, 157, .22), transparent),
    radial-gradient(ellipse 50% 40% at 0% 100%, rgba(0, 200, 184, .12), transparent);
  pointer-events: none;
}

.adv-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1.4rem;
  margin-top: 3rem
}

.adv-card {
  background: rgba(255, 255, 255, .05);
  border: 1px solid rgba(255, 255, 255, .08);
  border-radius: 18px;
  padding: 1.85rem 1.65rem;
  transition: background .3s, transform .3s;
}

.adv-card:hover {
  background: rgba(0, 168, 157, .12);
  transform: translateY(-4px)
}

.adv-num {
  font-family: 'Outfit', sans-serif;
  font-size: 2.4rem;
  font-weight: 800;
      background: linear-gradient(135deg, #00c4b85e, #3dd6cc3d);
  -webkit-background-clip: text;
  -webkit-text-fill-color: transparent;
  background-clip: text;
  line-height: 1;
  margin-bottom: .8rem;
}

.adv-title {
  font-family: 'Outfit', sans-serif;
  font-size: 15.5px;
  font-weight: 700;
  color: #fff;
  margin-bottom: .55rem
}

.adv-desc {
  font-size: 13px;
  font-weight: 300;
  color: rgba(255, 255, 255, .48);
  line-height: 1.65
}

/* ═══════════════════════════ COMPARISON ═══════════════════════════ */
.comp-section {
  background: var(--light)
}

.comp-wrap {
  margin-top: 3rem;
  overflow-x: auto;
  border-radius: 16px;
  box-shadow: 0 8px 32px rgba(0, 168, 157, .08)
}

.comp-table {
  width: 100%;
  border-collapse: separate;
  border-spacing: 0
}

.comp-table th {
  font-family: 'Outfit', sans-serif;
  font-size: 14px;
  font-weight: 700;
  padding: 1.1rem 1.4rem;
  text-align: left;
  background: var(--dark);
  color: #fff;
}

.comp-table th:first-child {
  border-radius: 12px 0 0 0;
  width: 33%
}

.comp-table th:last-child {
  border-radius: 0 12px 0 0;
  background: var(--teal)
}

.comp-table td {
  font-size: 15.5px;
  padding: 1rem 1.4rem;
  border-bottom: 1px solid var(--border);
  color: var(--dark);
  background: #fff;
  vertical-align: middle;
}

.comp-table tr:last-child td {
  border-bottom: none
}

.comp-table tr:last-child td:first-child {
  border-radius: 0 0 0 12px
}

.comp-table tr:last-child td:last-child {
  border-radius: 0 0 12px 0
}

.comp-table td:last-child {
  font-weight: 500;
  color: var(--teal);
  background: #EAF7F6
}

.comp-table tr:nth-child(even) td:not(:last-child) {
  background: #F8FFFE
}

.comp-table tr:nth-child(even) td:last-child {
  background: #E2F5F3
}

.comp-cross {
  color: #9BB5B3
}

/* ═══════════════════════════ CTA STRIP ═══════════════════════════ */
.cta-section {
  background: linear-gradient(135deg, #0D2B2B 0%, #0A4040 55%, #0D2B2B 100%);
  position: relative;
  overflow: hidden;
  padding: 5.5rem 0;
}

.cta-section::before {
  content: '';
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 65% 80% at 50% 50%, rgba(0, 168, 157, .2), transparent);
}

.cta-inner {
  text-align: center;
  position: relative;
  z-index: 1
}

.cta-inner h2 {
  font-family: 'Outfit', sans-serif;
  font-size: clamp(1.7rem, 3.5vw, 2.65rem);
  font-weight: 800;
  color: #fff;
  margin-bottom: .9rem;
}

.cta-inner p {
  font-size: 15.5px;
  font-weight: 300;
  color: rgba(255, 255, 255, .62);
  max-width: 520px;
  margin: 0 auto 2.4rem;
}

.cta-btns {
  display: flex;
  justify-content: center;
  gap: 1.2rem;
  flex-wrap: wrap
}

/* ═══════════════════════════ FAQ ═══════════════════════════ */
.faq-section {
  background: #fff
}

.faq-list {
  margin-top: 3rem;
  display: flex;
  flex-direction: column;
  gap: 1rem;
  max-width: 850px;
  margin-left: auto;
  margin-right: auto
}

.faq-item {
  border: 1px solid var(--border);
  border-radius: 14px;
  overflow: hidden;
  background: #fff;
  transition: box-shadow .3s;
}

.faq-item:hover {
  box-shadow: 0 8px 28px rgba(0, 168, 157, .1)
}

.faq-item.open {
  border-color: rgba(0, 168, 157, .35);
  box-shadow: 0 8px 28px rgba(0, 168, 157, .12)
}

.faq-q {
  display: flex;
  align-items: center;
  justify-content: space-between;
  padding: 1.3rem 1.5rem;
  cursor: pointer;
  gap: 1rem;
  font-family: 'DM Sans', sans-serif;
  font-size: 15.5px;
  font-weight: 500;
  color: var(--dark);
  user-select: none;
}

.faq-q:hover {
  background: #F0FAF9
}

.faq-icon {
  width: 28px;
  height: 28px;
  border-radius: 50%;
  border: 1.5px solid var(--border);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  transition: background .25s, border-color .25s, transform .3s;
}

.faq-icon svg {
  width: 13px;
  height: 13px;
  stroke: var(--muted);
  fill: none;
  stroke-width: 2.5;
  stroke-linecap: round;
  stroke-linejoin: round;
  transition: stroke .25s
}

.faq-item.open .faq-icon {
  background: var(--teal);
  border-color: var(--teal);
  transform: rotate(45deg)
}

.faq-item.open .faq-icon svg {
  stroke: #fff
}

.faq-a {
  max-height: 0;
  overflow: hidden;
  font-size: 15.5px;
  font-weight: 300;
  color: var(--muted);
  line-height: 1.75;
  transition: max-height .4s ease, padding .4s ease;
  font-family: 'DM Sans', sans-serif;
}

.faq-item.open .faq-a {
  max-height: 400px;
  padding: 0 1.5rem 1.3rem
}

/* ═══════════════════════════ ANIMATION ═══════════════════════════ */
.anim {
  opacity: 0;
  transform: translateY(22px);
  transition: opacity .6s ease, transform .6s ease
}

.anim.visible {
  opacity: 1;
  transform: translateY(0);
  font-family: 'DM Sans', sans-serif;
}

/* ═══════════════════════════ RESPONSIVE ═══════════════════════════ */
@media(max-width:1024px) {
  .features-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .industries-grid {
    grid-template-columns: repeat(2, 1fr)
  }

  .adv-grid {
    grid-template-columns: repeat(2, 1fr)
  }
}

@media(max-width:820px) {
  .section-pad {
    padding: 4rem 0
  }

  .hero {
    padding: 5rem 0 4rem
  }

  .hero-inner {
    grid-template-columns: 1fr;
    gap: 2.5rem
  }

  .demo-form-card {
    max-width: 500px;
    margin: 0 auto
  }

  .stats-inner {
    grid-template-columns: repeat(2, 1fr)
  }

  .stat-item:nth-child(2) {
    border-right: none
  }

  .stat-item:nth-child(3) {
    border-right: 1px solid var(--border);
    border-top: 1px solid var(--border)
  }

  .stat-item:nth-child(4) {
    border-top: 1px solid var(--border)
  }

  .what-inner {
    grid-template-columns: 1fr;
    gap: 3rem
  }

  .hiw-steps {
    grid-template-columns: 1fr 1fr;
    gap: 2rem
  }

  .hiw-steps::before {
    display: none
  }

  .features-grid {
    grid-template-columns: 1fr
  }

  .industries-grid {
    grid-template-columns: 1fr
  }

  .adv-grid {
    grid-template-columns: 1fr
  }

  .mosaic-card:nth-child(2),
  .mosaic-card:nth-child(3),
  .mosaic-card:nth-child(4) {
    margin-top: 0
  }
}

@media(max-width:540px) {
  .hero h1 {
    font-size: 1.8rem
  }

  .hero-btns,
  .cta-btns {
    flex-direction: column;
    align-items: flex-start
  }

  .cta-btns {
    align-items: center
  }

  .hiw-steps {
    grid-template-columns: 1fr
  }

  .form-row,
  .captcha-row {
    grid-template-columns: 1fr
  }

  .stats-inner {
    grid-template-columns: 1fr 1fr
  }

  .feature-mosaic {
    grid-template-columns: 1fr
  }
}

/*==============VMS key features css start==============*/
.gost-header {
  display: flex;
  align-items: flex-start;
  gap: 1.25rem;
  margin-bottom: 2.75rem;
}

.gost-logo-mark {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: #0F2040;
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
  margin-top: 4px;
}

.gost-logo-mark svg {
  width: 26px;
  height: 26px;
}

.gost-title-block {}

.gost-label {
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.12em;
  text-transform: uppercase;
  color: var(--color-text-tertiary);
  margin-bottom: 4px;
}

.gost-title {
  font-family: 'Playfair Display', Georgia, serif;
  font-size: 28px;
  font-weight: 500;
  color: var(--color-text-primary);
  line-height: 1.2;
  margin: 0;
}

.gost-title em {
  font-style: italic;
  color: #1D6FAE;
}

.gost-divider {
  width: 100%;
  height: 0.5px;
  background: var(--color-border-tertiary);
  margin-bottom: 2rem;
}

.gost-grid {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
  gap: 20px;
}

.gost-card {
  background: var(--color-background-primary);
  border: 0.5px solid var(--color-border-tertiary);
  border-radius: var(--border-radius-lg);
  padding: 1.25rem 1.25rem 1.25rem 1rem;
  display: flex;
  gap: 14px;
  align-items: flex-start;
  transition: border-color 0.18s ease;
  position: relative;
  overflow: hidden;
}

.gost-card::before {
  content: '';
  position: absolute;
  left: 0;
  top: 0;
  bottom: 0;
  width: 3px;
  background: var(--card-accent, #1D6FAE);
  border-radius: 4px 0 0 4px;
}

.gost-card:hover {
  border-color: var(--color-border-secondary);
}

.gost-icon-wrap {
  width: 38px;
  height: 38px;
  border-radius: 10px;
  background: var(--card-bg, #E6F1FB);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}

.gost-icon-wrap i {
  font-size: 18px;
  color: var(--card-color, #185FA5);
}

.gost-card-desc {
  font-size: 15.5px;
  color: var(--color-text-secondary);
  line-height: 1.5;
  margin: 0;
  font-weight: 300;
  font-family: 'DM Sans', sans-serif;
}

.gost-footer {
  margin-top: 2rem;
  padding-top: 1.25rem;
  border-top: 0.5px solid var(--color-border-tertiary);
  display: flex;
  align-items: center;
  justify-content: space-between;
  flex-wrap: wrap;
  gap: 12px;
}

.accent-teal {
  --card-accent: #0F6E56;
  --card-bg: #E1F5EE;
  --card-color: #0F6E56;
}

.accent-blue {
  --card-accent: #185FA5;
  --card-bg: #E6F1FB;
  --card-color: #185FA5;
}

.accent-amber {
  --card-accent: #854F0B;
  --card-bg: #FAEEDA;
  --card-color: #854F0B;
}

.accent-coral {
  --card-accent: #993C1D;
  --card-bg: #FAECE7;
  --card-color: #993C1D;
}

.accent-purple {
  --card-accent: #534AB7;
  --card-bg: #EEEDFE;
  --card-color: #534AB7;
}

.accent-green {
  --card-accent: #3B6D11;
  --card-bg: #EAF3DE;
  --card-color: #3B6D11;
}

.industry-card a:hover {
  text-decoration: none;
  color: #222222;
}

a:focus {
  outline: unset !important;
  outline-offset: unset !important;
}

a:focus,
a:hover {
  color: unset;
  text-decoration: none !important;
}

/*===========how its working meeting room css start===========*/
/* ================================================
   HOW IT WORKS — STEPS
================================================ */
.steps-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 28px;
  margin-top: 3rem
}

.step-card {
  background: var(--white);
  border: 1.5px solid #e2e8f0;
  border-radius: 20px;
  padding: 28px 24px;
  position: relative;
  transition: .3s cubic-bezier(.4, 0, .2, 1);
  overflow: hidden;
}

.step-card::after {
  content: '';
  position: absolute;
  bottom: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1bb8d0, #0f9ab0);
  transform: scaleX(0);
  transition: .3s cubic-bezier(.4, 0, .2, 1);
  transform-origin: left;
}

.step-card:hover {
  border-color: transparent;
  box-shadow: var(--shadow-lg);
  transform: translateY(-6px)
}

.step-card:hover::after {
  transform: scaleX(1)
}

.step-num {
  width: 48px;
  height: 48px;
  border-radius: 50%;
  background: linear-gradient(135deg, #1bb8d0, #0f9ab0);
  display: flex;
  align-items: center;
  justify-content: center;
  font-family: var(--font-head);
  font-size: 17.6px;
  font-weight: 800;
  color: var(--white);
  margin-bottom: 1rem;
  box-shadow: 0 4px 16px rgba(27, 184, 208, .35);
  font-family: 'DM Sans', sans-serif;
}

.step-card h3 {
  font-size: 16px;
  color: #0c1e35;
  margin-bottom: .5rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 600;
}

.step-card p {
  font-size: 15.5px;
  color: var(--gray-600);
  line-height: 1.7;
  font-family: 'DM Sans', sans-serif;
}

.step-connector {
  display: none
}

/*===================*/
/* ================================================
   KEY FEATURES
================================================ */
.features-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin-top: 3rem
}

.feature-card {
  background: #ffffff;
  border: 1.5px solid #e2e8f0;
  border-radius: 20px;
  padding: 28px 24px;
  transition: .3s cubic-bezier(.4, 0, .2, 1);
  position: relative;
  overflow: hidden;
  cursor: default;
}

.feature-card::before {
  content: '';
  position: absolute;
  top: 0;
  left: 0;
  right: 0;
  height: 3px;
  background: linear-gradient(90deg, #1bb8d0, #009688);
  opacity: 0;
  transition: .3s cubic-bezier(.4, 0, .2, 1);
}

.feature-card:hover {
  border-color: rgba(27, 184, 208, .3);
  box-shadow: var(--shadow-md);
  transform: translateY(-5px)
}

.feature-card:hover::before {
  opacity: 1
}

.feature-num {
  font-size: 12px;
  font-weight: 800;
  color: #1bb8d0;
  letter-spacing: .1em;
  text-transform: uppercase;
  margin-bottom: .75rem;
  display: block;
  font-family: 'DM Sans', sans-serif;
}

.feature-icon {
  width: 52px;
  height: 52px;
  border-radius: 12px;
  background: rgba(27, 184, 208, .1);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1rem;
  transition: var(--transition)
}

.feature-card:hover .feature-icon {
  background: linear-gradient(135deg, #1bb8d0, #0f9ab0);
  transform: rotate(-5deg) scale(1.05)
}

.feature-icon svg {
  width: 26px;
  height: 26px;
  stroke: var(--teal);
  fill: none;
  stroke-width: 2;
  transition: .3s cubic-bezier(.4, 0, .2, 1);
}

.feature-card:hover .feature-icon svg {
  stroke: var(--white)
}

.feature-card h3 {
  font-size: 17px;
  color: #0c1e35;
  margin-bottom: .5rem;
  font-family: 'DM Sans', sans-serif;
  font-weight: 500;
}

.feature-card p {
  font-size: 15.5px;
  color: #475569;
  line-height: 1.7;
  font-family: 'DM Sans', sans-serif;
}

.section-intro {
  font-size: 15.5px;
  color: var(--gray-600);
  max-width: 680px;
  margin: .75rem auto 0;
}

 /* ================================================
   INDUSTRIES
================================================ */
    .industries-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 3rem
    }

    .industry-card-m {
    background: var(--white);
    border-radius: 20px;
    overflow: hidden;
    border: 1.5px solid #e2e8f0;
    transition: .3s cubic-bezier(.4, 0, .2, 1);
    position: relative;
    }

    .industry-card-m:hover {
      border-color: #1bb8d0;
    box-shadow: 0 8px 32px rgba(12, 30, 53, .14);
    transform: translateY(-6px);
    }

    .industry-card-header {
     background: linear-gradient(135deg, #0c1e35, #112d4e);
    padding: 28px 24px;
    position: relative;
    overflow: hidden;
    }

    .industry-card-header::before {
      content: '';
      position: absolute;
      right: -20px;
      top: -20px;
      width: 80px;
      height: 80px;
      border-radius: 50%;
      background: rgba(27, 184, 208, .15)
    }

    .industry-icon {
      width: 52px;
      height: 52px;
      border-radius: 12px;
      background: rgba(27, 184, 208, .2);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: 12px
    }

    .industry-icon svg {
      width: 26px;
      height: 26px;
      stroke: var(--teal);
      fill: none;
      stroke-width: 2
    }

    .industry-card-header h3 {
      color: var(--white);
      font-size: 16px;
       font-family: 'DM Sans', sans-serif;
    }

    .industry-card-body {
      padding: 20px 24px
    }

    .industry-card-body p {
      font-size: 15.5px;
    color: #475569;
    line-height: 1.7;
    font-family: 'DM Sans', sans-serif;
    }
.reveal.visible {
    opacity: 1;
    transform: translateY(0);
}
 /* ================================================
   ADVANTAGES
================================================ */
    .advantages-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 24px;
      margin-top: 3rem
    }

    .adv-card {
       background: rgba(255, 255, 255, .06);
    border: 1px solid rgba(255, 255, 255, .1);
    border-radius: 20px;
    padding: 28px 24px;
    transition: .3s cubic-bezier(.4, 0, .2, 1);
    position: relative;
    overflow: hidden;
    }

    .adv-card::before {
     content: '';
    position: absolute;
    inset: 0;
    background: linear-gradient(135deg, rgba(27, 184, 208, .08), transparent);
    opacity: 0;
    transition: .3s cubic-bezier(.4, 0, .2, 1);
    }

    .adv-card:hover {
      background: rgba(255, 255, 255, .1);
      border-color: rgba(27, 184, 208, .4);
      transform: translateY(-5px)
    }

    .adv-card:hover::before {
      opacity: 1
    }

    .adv-num {
      font-size: 40px;
    font-weight: 800;
    color: rgba(27, 184, 208, .25);
    line-height: 1;
    margin-bottom: .75rem;
    display: block;
    font-family: 'DM Sans', sans-serif;
    }

    .adv-card h3 {
     color: var(--white);
    font-size: 16px;
    margin-bottom: .5rem;
    font-family: 'DM Sans', sans-serif;
    }

    .adv-card p {
     font-size: 15.5px;
    color: rgba(255, 255, 255, .65);
    line-height: 1.7;
    }
.section-dark{background: linear-gradient(135deg,#0D2B2B 0%,#0E3D3A 55%,#0A4040 100%);}
 /* ================================================
   COMPARISON TABLE
================================================ */
    .comparison-wrap {
      overflow-x: auto;
    border-radius: 20px;
    box-shadow: 0 8px 32px rgba(12, 30, 53, .14);
    margin-top: 2.5rem;}

    .comparison-table {
      width: 100%;
      border-collapse: collapse;
      background: var(--white)
    }

    .comparison-table th {
    padding: 18px 20px;
    font-size: 15.5px;
    font-weight: 700;
    text-align: left;
    border-bottom: 2px solid #e2e8f0;
    font-family: 'DM Sans', sans-serif;
    }

    .comparison-table th:first-child {
     background: #f1f5f9;
    color: #475569;
    }

    .comparison-table th:nth-child(2) {
      background: #fff5f5;
      color: #ef4444
    }

    .comparison-table th:nth-child(3) {
      background: rgba(27, 184, 208, .1);
      color:#0f9ab0;
    }

    .comparison-table td {
         padding: 16px 20px;
    font-size: 15.5px;
    border-bottom: 1px solid #e2e8f0;
    vertical-align: top;
    transition: .3s cubic-bezier(.4, 0, .2, 1);
    font-family: 'DM Sans', sans-serif;
    }

    .comparison-table tr:last-child td {
      border-bottom: none
    }

    .comparison-table tr:hover td {
      background: rgba(27, 184, 208, .04)
    }

    .comparison-table td:first-child {
      font-weight: 600;
      color: var(--navy);
      background:#f1f5f9;
    }

    .comparison-table td:nth-child(2) {
      color: #ef4444;font-weight: 500;
    }

    .comparison-table td:nth-child(3) {
      color: #0f9ab0;
      font-weight: 500
    }

    .check {
      color: var(--teal);
      font-weight: 700
    }
 /* ============================================================
   HOW IT WORKS — TIMELINE
============================================================ */
    .timeline {
      position: relative;
      margin-top: 3.5rem
    }

    .timeline::before {
      content: '';
      position: absolute;
      left: 50%;
      top: 0;
      bottom: 0;
      width: 2px;
      background: linear-gradient(180deg, var(--teal), rgba(27, 184, 208, .15));
      transform: translateX(-50%)
    }

    .timeline-item {
      display: grid;
      grid-template-columns: 1fr 60px 1fr;
      gap: 0;
      align-items: start;
      margin-bottom: 48px;
      position: relative
    }

    .timeline-item:last-child {
      margin-bottom: 0
    }

    .timeline-content-left {
      text-align: right;
      padding-right: 36px
    }

    .timeline-content-right {
      padding-left: 36px
    }

    .timeline-content-empty {
      text-align: right;
      padding-right: 36px
    }

    .timeline-node {
          width: 52px;
    height: 52px;
    border-radius: 50%;
    background: linear-gradient(135deg, #1bb8d0, #0f9ab0);
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 17.6px;
    font-weight: 800;
    color: #ffffff;
    box-shadow: 0 8px 32px rgba(27, 184, 208, .28);
    z-index: 2;
    position: relative;
    transition: .3s cubic-bezier(.4, 0, .2, 1);
    cursor: default;
    flex-shrink: 0;
    justify-self: center;
    }

    .timeline-node:hover {
      transform: scale(1.12);
    box-shadow: 0 0 0 10px rgba(27, 184, 208, .14), 0 8px 32px rgba(27, 184, 208, .28);
    }

    .timeline-card {
          background: #ffffff;
    border: 1.5px solid #e2e8f0;
    border-radius: 20px;
    padding: 22px 24px;
    transition: .3s cubic-bezier(.4, 0, .2, 1);
    position: relative;
    overflow: hidden;
    }

    .timeline-card::after {
   content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1bb8d0, #13a5bc);
    transform: scaleX(0);
    transition: .3s cubic-bezier(.4, 0, .2, 1);
    transform-origin: left;
    }

    .timeline-card:hover {
      border-color: rgba(27, 184, 208, .35);
      box-shadow: var(--shadow-md);
      transform: translateY(-4px)
    }

    .timeline-card:hover::after {
      transform: scaleX(1)
    }

    .timeline-card h3 {
      font-size: 16px;
    color:#0c1e35;
    margin-bottom: .5rem;
    font-family: 'DM Sans', sans-serif;
    }

    .timeline-card p {
     font-size: 14px;
    color: #475569;
    line-height: 1.75;
    font-family: 'DM Sans', sans-serif;
    }

    /* Alternate sides */
    .timeline-item.left .timeline-content-left .timeline-card {
      display: block
    }

    .timeline-item.right .timeline-content-right {
      order: 3
    }

    .timeline-item.right .timeline-content-left {
      order: 1
    }
/* ============================================================
   KEY FEATURES
============================================================ */
    .features-grid {
      display: grid;
      grid-template-columns: repeat(3, 1fr);
      gap: 22px;
      margin-top: 3rem
    }

    .feat-card {
      background: var(--white);
    border: 1.5px solid #e2e8f0;
    border-radius: 20px;
    padding: 26px 22px;
    transition: .3s cubic-bezier(.4, 0, .2, 1);
    position: relative;
    overflow: hidden;
    cursor: default;
    }

    .feat-card::before {
     content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    height: 3px;
    background: linear-gradient(90deg, #1bb8d0, #03A9F4);
    opacity: 0;
    transition: .3s cubic-bezier(.4, 0, .2, 1);
    }

    .feat-card:hover {
      border-color: rgba(27, 184, 208, .3);
      box-shadow: var(--shadow-md);
      transform: translateY(-5px)
    }

    .feat-card:hover::before {
      opacity: 1
    }

    .feat-num {
         font-size: 14px;
    font-weight: 800;
    letter-spacing: .12em;
    text-transform: uppercase;
    color: #1bb8d0;
    display: block;
    margin-bottom: .7rem;
    }

    .feat-icon {
      width: 50px;
      height: 50px;
      border-radius: 12px;
      background: rgba(27, 184, 208, .1);
      display: flex;
      align-items: center;
      justify-content: center;
      margin-bottom: .9rem;
      transition: .3s cubic-bezier(.4,0,.2,1);
    }

    .feat-card:hover .feat-icon {
    background: linear-gradient(135deg, #1bb8d0, #0f9ab0);
    transform: rotate(-5deg) scale(1.08);
    }

    .feat-icon svg {
      width: 24px;
      height: 24px;
      stroke: var(--teal);
      fill: none;
      stroke-width: 2;
      transition: var(--transition)
    }

    .feat-card:hover .feat-icon svg {
      stroke: var(--white)
    }

    .feat-card h3 {
          font-size: 16px;
    color: #222222;
    margin-bottom: .45rem;
    font-family: 'DM Sans', sans-serif;
    }
     /* ============================================================
   CHART SECTION
============================================================ */
    .chart-section {
      padding: 88px 0;
      background: var(--gray-50)
    }

    .charts-grid {
      display: grid;
      grid-template-columns: 1fr 1fr;
      gap: 32px;
      margin-top: 3rem
    }

    .chart-card {
      background: var(--white);
      border: 1.5px solid var(--gray-200);
      border-radius: var(--radius-lg);
      padding: 28px;
      box-shadow: var(--shadow-sm);
      transition: var(--transition)
    }

    .chart-card:hover {
      box-shadow: var(--shadow-md);
      transform: translateY(-4px);
      border-color: rgba(27, 184, 208, .25)
    }

    .chart-card h4 {
      font-size: .97rem;
      color: var(--navy);
      margin-bottom: .3rem;
      font-weight: 700
    }

    .chart-card p {
      font-size: .8rem;
      color: var(--gray-500);
      margin-bottom: 1.5rem
    }

    canvas {
      width: 100% !important
    }

    /* Bar chart visual */
    .bar-chart {
      display: flex;
      align-items: flex-end;
      gap: 8px;
      height: 160px;
      padding-bottom: 4px;
      border-bottom: 2px solid var(--gray-200)
    }

    .bar-group {
      display: flex;
      flex-direction: column;
      align-items: center;
      gap: 6px;
      flex: 1
    }

    .bar-wrap {
      display: flex;
      gap: 4px;
      align-items: flex-end;
      width: 100%
    }

    .bar {
      border-radius: 5px 5px 0 0;
      width: 50%;
      transition: height .8s cubic-bezier(.4, 0, .2, 1), opacity .3s;
      cursor: pointer;
      position: relative
    }

    .bar:hover {
      filter: brightness(1.12)
    }

    .bar-paper {
      background: var(--red);
      opacity: .7
    }

    .bar-digital {
      background: var(--teal)
    }

    .bar-label {
      font-size: .68rem;
      color: var(--gray-500);
      text-align: center;
      line-height: 1.3;
      font-weight: 500
    }

    /* Donut */
    .donut-wrap {
      display: flex;
      align-items: center;
      gap: 24px
    }

    .donut-canvas {
      position: relative;
      width: 140px;
      height: 140px;
      flex-shrink: 0
    }

    .donut-canvas canvas {
      width: 140px !important;
      height: 140px !important
    }

    .donut-legend {
      flex: 1;
      display: flex;
      flex-direction: column;
      gap: 10px
    }

    .legend-item {
      display: flex;
      align-items: center;
      gap: 10px
    }

    .legend-dot {
      width: 12px;
      height: 12px;
      border-radius: 3px;
      flex-shrink: 0
    }

    .legend-label {
      font-size: .8rem;
      color: var(--gray-600)
    }

    .legend-val {
      font-family: var(--font-head);
      font-size: .9rem;
      font-weight: 700;
      color: var(--navy);
      margin-left: auto
    }

    /* Progress bars */
    .progress-list {
      display: flex;
      flex-direction: column;
      gap: 16px
    }

    .progress-item {}

    .progress-header {
      display: flex;
      justify-content: space-between;
      margin-bottom: 6px
    }

    .progress-label {
      font-size: .82rem;
      font-weight: 600;
      color: var(--navy)
    }

    .progress-val {
      font-size: .82rem;
      font-weight: 700;
      color: var(--teal)
    }

    .progress-track {
      height: 8px;
      background: var(--gray-200);
      border-radius: 100px;
      overflow: hidden
    }

    .progress-fill {
      height: 100%;
      border-radius: 100px;
      width: 0;
      transition: width 1.2s cubic-bezier(.4, 0, .2, 1)
    }

    .pf-teal {
      background: linear-gradient(90deg, var(--teal), var(--teal-dark))
    }

    .pf-orange {
      background: linear-gradient(90deg, var(--orange), var(--orange-dark))
    }

    .pf-green {
      background: linear-gradient(90deg, #22c55e, #16a34a)
    }

    .pf-purple {
      background: linear-gradient(90deg, #8b5cf6, #7c3aed)
    }

    /* Metric cards */
    .metric-cards {
      display: grid;
      grid-template-columns: repeat(4, 1fr);
      gap: 14px;
      margin-top: 3rem
    }

    .metric-card {
      background: var(--white);
      border: 1.5px solid var(--gray-200);
      border-radius: var(--radius);
      padding: 20px 18px;
      text-align: center;
      transition: var(--transition);
      cursor: default
    }

    .metric-card:hover {
      border-color: var(--teal);
      box-shadow: var(--shadow-md);
      transform: translateY(-4px)
    }

    .metric-icon {
      width: 44px;
      height: 44px;
      border-radius: 10px;
      margin: 0 auto 10px;
      display: flex;
      align-items: center;
      justify-content: center
    }

    .metric-card h3 {
      font-size: 1.55rem;
      font-weight: 800;
      font-family: var(--font-head);
      color: var(--navy);
      line-height: 1;
      margin-bottom: 4px
    }

    .metric-card p {
      font-size: .75rem;
      color: var(--gray-500);
      line-height: 1.4
    }
