/* ═══════════════════════════════════════════════════════════════
   IT Services Page — Tbilisi Medical Academy v16
   Scoped: .its-page
   ═══════════════════════════════════════════════════════════════ */

/* ── Variables & base ─────────────────────────────────────────── */
.its-page {
  --its-navy:   #0a3652;
  --its-teal:   #00668e;
  --its-teal2:  #1a8ab4;
  --its-gold:   #c9922a;
  --its-green:  #16a34a;
  --its-panel:  rgba(255,255,255,0.84);
  --its-bdr:    rgba(10,54,82,0.09);
  --its-text:   #163247;
  --its-dim:    #4d7a9a;
  --its-r:      14px;
  --its-r-lg:   22px;
  --its-sh:     0 8px 40px rgba(10,54,82,0.09);
  --its-max:    1200px;
  background: linear-gradient(180deg, #dce8f4 0%, #eef5fc 40%, #f8fbfe 70%, #fff 100%);
  color: var(--its-text);
  overflow-x: hidden;
}

/* ── Shared utilities ─────────────────────────────────────────── */
.its-container {
  max-width: var(--its-max);
  margin: 0 auto;
  padding: 0 clamp(16px, 4vw, 40px);
}
.its-section {
  padding: clamp(1.5rem, 3vw, 2.5rem) 0;
}
.its-section--alt {
  background: rgba(255,255,255,0.55);
  border-top: 1px solid var(--its-bdr);
  border-bottom: 1px solid var(--its-bdr);
}
.its-glass {
  background: var(--its-panel);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.90);
  box-shadow: var(--its-sh);
  border-radius: var(--its-r);
}
.its-section-head {
  margin-bottom: 1.2rem;
  text-align: center;
}
.its-section-head__badge {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: var(--its-teal);
  margin-bottom: 1rem;
}
.its-section-head__badge::before,
.its-section-head__badge::after {
  content: '';
  display: inline-block;
  width: 26px; height: 1px;
  background: var(--its-teal);
  opacity: .4;
}
.its-section-head h2 {
  font-size: clamp(1.4rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--its-navy);
  letter-spacing: -.03em;
  line-height: 1.15;
  margin-bottom: .5rem;
}
.its-section-head p {
  color: var(--its-dim);
  max-width: 560px;
  margin: 0 auto;
  font-size: clamp(.9rem, 1.2vw, 1.05rem);
  line-height: 1.75;
}

/* ── Hero ─────────────────────────────────────────────────────── */
.its-hero {
  position: relative;
  min-height: 300px;
  display: flex;
  align-items: center;
  background:
    linear-gradient(135deg, rgba(10,54,82,0.92) 0%, rgba(0,102,142,0.80) 50%, rgba(26,138,180,0.70) 100%),
    url('../img/iad/anatomage-2.webp') center/cover no-repeat;
  overflow: hidden;
}
.its-hero::before {
  content: '';
  position: absolute;
  inset: 0;
  background:
    radial-gradient(ellipse 80% 60% at 90% 50%, rgba(255,255,255,0.05) 0%, transparent 60%),
    repeating-linear-gradient(
      0deg,
      transparent,
      transparent 39px,
      rgba(255,255,255,0.03) 40px
    ),
    repeating-linear-gradient(
      90deg,
      transparent,
      transparent 39px,
      rgba(255,255,255,0.03) 40px
    );
  pointer-events: none;
}
.its-hero__grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(0, 2fr);
  gap: clamp(24px, 4vw, 56px);
  align-items: stretch;
  position: relative;
  z-index: 1;
  padding: clamp(2rem, 4vw, 3.5rem) 0;
}
@media(max-width:768px) {
  .its-hero__grid { grid-template-columns: 1fr; }
  .its-hero { min-height: auto; }
}
.its-hero__content .v16-breadcrumb { margin-bottom: 1.2rem; }
.its-hero__kicker {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: .7rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(180,220,255,0.85);
  margin-bottom: .9rem;
}
.its-hero__kicker::before {
  content: '';
  display: inline-block;
  width: 20px; height: 2px;
  background: rgba(180,220,255,0.55);
  border-radius: 1px;
}
.its-hero h1 {
  font-size: clamp(2.2rem, 5vw, 3.8rem);
  font-weight: 900;
  color: #fff;
  letter-spacing: -.04em;
  line-height: 1.08;
  margin-bottom: 1rem;
}
.its-hero__lead {
  color: rgba(210,235,255,0.85);
  font-size: clamp(1rem, 1.4vw, 1.15rem);
  line-height: 1.7;
  max-width: 500px;
  margin-bottom: 2rem;
}
.its-hero__actions {
  display: flex;
  gap: 12px;
  flex-wrap: wrap;
}
.its-btn-primary {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: linear-gradient(135deg, var(--its-teal), var(--its-teal2));
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  padding: .85rem 2rem;
  border-radius: 8px;
  text-decoration: none;
  transition: box-shadow .25s, transform .2s;
  box-shadow: 0 4px 20px rgba(0,102,142,0.30);
}
.its-btn-primary:hover {
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(0,102,142,0.42);
  transform: translateY(-2px);
}
.its-btn-ghost {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  border: 1.5px solid rgba(255,255,255,0.40);
  color: rgba(255,255,255,0.90);
  font-weight: 600;
  font-size: .9rem;
  padding: .82rem 1.8rem;
  border-radius: 8px;
  text-decoration: none;
  backdrop-filter: blur(8px);
  transition: border-color .22s, background .22s;
}
.its-btn-ghost:hover {
  text-decoration: none;
  color: #fff;
  border-color: rgba(255,255,255,0.70);
  background: rgba(255,255,255,0.10);
}

/* Hero highlights glass card */
.its-hero__panel {
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(20px);
  -webkit-backdrop-filter: blur(20px);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: var(--its-r-lg);
  padding: clamp(1.5rem, 3vw, 2.5rem);
}
.its-hero__panel-title {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .22em;
  text-transform: uppercase;
  color: rgba(180,220,255,0.75);
  margin-bottom: 1.4rem;
}
.its-hero-highlights {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 10px;
}
.its-hero-hl {
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.16);
  border-radius: 10px;
  padding: 1rem 1.1rem;
  display: flex;
  align-items: flex-start;
  gap: 10px;
  transition: background .22s;
}
.its-hero-hl:hover { background: rgba(255,255,255,0.16); }
.its-hero-hl__icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: linear-gradient(135deg, rgba(0,102,142,0.55), rgba(26,138,180,0.55));
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.its-hero-hl__icon svg {
  width: 18px; height: 18px;
  stroke: rgba(200,235,255,0.90);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.its-hero-hl__label {
  font-size: .82rem;
  font-weight: 700;
  color: rgba(230,245,255,0.95);
  line-height: 1.2;
}
.its-hero-hl__sub {
  font-size: .72rem;
  color: rgba(180,215,240,0.70);
  margin-top: 3px;
  line-height: 1.4;
}

/* ── Services catalog ─────────────────────────────────────────── */
.its-catalog-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
  gap: clamp(1rem, 2.5vw, 1.5rem);
}
.its-svc-card {
  background: var(--its-panel);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.90);
  box-shadow: 0 6px 30px rgba(10,54,82,0.07);
  border-radius: var(--its-r);
  padding: clamp(.9rem, 1.5vw, 1.4rem);
  display: flex;
  flex-direction: column;
  cursor: default;
  transition: transform .28s, box-shadow .28s, border-color .28s;
  position: relative;
  overflow: hidden;
}
.its-svc-card::after {
  content: '';
  position: absolute;
  top: 0; left: 0; right: 0;
  height: 3px;
  background: linear-gradient(90deg, var(--svc-accent, var(--its-teal)), transparent);
  opacity: 0;
  transition: opacity .28s;
}
.its-svc-card:hover {
  transform: translateY(-5px);
  box-shadow: 0 16px 50px rgba(10,54,82,0.12);
  border-color: rgba(0,102,142,0.20);
}
.its-svc-card:hover::after { opacity: 1; }
.its-svc-icon {
  width: 52px; height: 52px;
  border-radius: 12px;
  background: rgba(0,102,142,0.08);
  border: 1px solid rgba(0,102,142,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.2rem;
  transition: background .28s, border-color .28s;
}
.its-svc-card:hover .its-svc-icon {
  background: rgba(0,102,142,0.14);
  border-color: rgba(0,102,142,0.28);
}
.its-svc-icon svg {
  width: 22px; height: 22px;
  stroke: var(--svc-accent, var(--its-teal));
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.its-svc-title {
  font-size: 1.02rem;
  font-weight: 700;
  color: var(--its-navy);
  margin-bottom: .5rem;
}
.its-svc-text {
  font-size: .88rem;
  color: var(--its-dim);
  line-height: 1.7;
  flex: 1;
}
.its-svc-tag {
  display: inline-block;
  margin-top: 1rem;
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .14em;
  text-transform: uppercase;
  color: var(--svc-accent, var(--its-teal));
  opacity: .8;
}

/* ── Stats / infographics ─────────────────────────────────────── */
.its-stats-layout {
  display: grid;
  grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
  gap: 1.5rem;
}
.its-big-stat {
  background: var(--its-panel);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.90);
  box-shadow: 0 6px 30px rgba(10,54,82,0.07);
  border-radius: var(--its-r);
  padding: clamp(1.5rem, 2.5vw, 2.2rem);
}
.its-big-stat__value {
  font-size: clamp(2.8rem, 5vw, 4rem);
  font-weight: 900;
  letter-spacing: -.06em;
  line-height: 1;
  color: var(--its-teal);
  margin-bottom: .4rem;
}
.its-big-stat__label {
  font-size: .78rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--its-navy);
  margin-bottom: .3rem;
}
.its-big-stat__note { font-size: .78rem; color: var(--its-dim); }

/* Progress bars */
.its-bars { display: flex; flex-direction: column; gap: .8rem; margin-top: .5rem; }
.its-bar-row { display: grid; grid-template-columns: 1fr auto; gap: .5rem; align-items: center; font-size: .8rem; }
.its-bar-row__label { color: var(--its-text); font-weight: 600; }
.its-bar-row__pct { color: var(--its-teal); font-weight: 800; min-width: 3ch; text-align: right; }
.its-bar-track {
  height: 6px;
  background: rgba(10,54,82,0.08);
  border-radius: 99px;
  overflow: hidden;
  grid-column: 1 / -1;
}
.its-bar-fill {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--its-teal), var(--its-teal2));
  width: var(--w, 50%);
  transition: width 1.2s cubic-bezier(.25,.8,.25,1);
}

/* Donut chart (CSS only) */
.its-donut {
  position: relative;
  width: 120px; height: 120px;
  border-radius: 50%;
  display: flex;
  align-items: center;
  justify-content: center;
  background: conic-gradient(
    var(--its-teal) 0% var(--pct, 99%),
    rgba(10,54,82,0.10) var(--pct, 99%) 100%
  );
  margin: 0 auto 1rem;
}
.its-donut::before {
  content: '';
  position: absolute;
  inset: 16px;
  background: var(--its-panel);
  border-radius: 50%;
  backdrop-filter: blur(8px);
}
.its-donut__label {
  position: relative;
  z-index: 1;
  font-size: .95rem;
  font-weight: 900;
  color: var(--its-navy);
  letter-spacing: -.02em;
}

/* ── Image strip ─────────────────────────────────────────────── */
.its-strip {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 6px;
  overflow: hidden;
  border-radius: var(--its-r-lg);
}
@media(max-width:640px) { .its-strip { grid-template-columns: repeat(2, 1fr); } }
.its-strip__img {
  aspect-ratio: 3/2;
  overflow: hidden;
  position: relative;
}
.its-strip__img img {
  width: 100%; height: 100%;
  object-fit: cover;
  transition: transform .5s ease;
  display: block;
}
.its-strip__img:hover img { transform: scale(1.06); }
.its-strip__img::after {
  content: '';
  position: absolute; inset: 0;
  background: linear-gradient(180deg, transparent 50%, rgba(10,54,82,0.35) 100%);
  pointer-events: none;
}

/* ── Exam center ─────────────────────────────────────────────── */
.its-exam {
  background: linear-gradient(135deg, #0a3652 0%, #00668e 60%, #1a8ab4 100%);
  position: relative;
  overflow: hidden;
  color: #fff;
}
.its-exam::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(ellipse 70% 80% at 10% 50%, rgba(255,255,255,0.04) 0%, transparent 60%),
    repeating-linear-gradient(90deg,transparent,transparent 59px,rgba(255,255,255,0.03) 60px),
    repeating-linear-gradient(0deg,transparent,transparent 59px,rgba(255,255,255,0.03) 60px);
  pointer-events: none;
}
.its-exam .its-section-head__badge { color: rgba(180,220,255,0.80); }
.its-exam .its-section-head__badge::before,
.its-exam .its-section-head__badge::after { background: rgba(180,220,255,0.40); }
.its-exam .its-section-head h2 { color: #fff; }
.its-exam .its-section-head p { color: rgba(200,230,255,0.80); }

.its-exam-steps {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 1px;
  background: rgba(255,255,255,0.10);
  border: 1px solid rgba(255,255,255,0.14);
  border-radius: var(--its-r-lg);
  overflow: hidden;
  margin-bottom: 1.2rem;
}
@media(max-width:900px) { .its-exam-steps { grid-template-columns: repeat(2,1fr); } }
@media(max-width:540px) { .its-exam-steps { grid-template-columns: 1fr; } }
.its-exam-step {
  background: rgba(255,255,255,0.06);
  padding: clamp(.9rem, 1.5vw, 1.4rem);
  transition: background .25s;
}
.its-exam-step:hover { background: rgba(255,255,255,0.12); }
.its-exam-step__num {
  font-size: 3rem;
  font-weight: 900;
  color: rgba(255,255,255,0.10);
  line-height: 1;
  letter-spacing: -.06em;
  margin-bottom: .3rem;
  user-select: none;
}
.its-exam-step__badge {
  width: 32px; height: 32px;
  border-radius: 8px;
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: .9rem;
}
.its-exam-step__badge svg {
  width: 16px; height: 16px;
  stroke: rgba(200,235,255,0.90);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.its-exam-step__title {
  font-size: .95rem;
  font-weight: 700;
  color: rgba(230,245,255,0.97);
  margin-bottom: .45rem;
}
.its-exam-step__text {
  font-size: .82rem;
  color: rgba(180,215,245,0.72);
  line-height: 1.65;
}

/* Exam dashboard widgets */
.its-exam-widgets {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(200px, 1fr));
  gap: 1rem;
}
.its-exam-widget {
  background: rgba(255,255,255,0.09);
  border: 1px solid rgba(255,255,255,0.15);
  border-radius: var(--its-r);
  padding: 1.2rem 1.4rem;
  display: flex;
  align-items: center;
  gap: 14px;
}
.its-exam-widget__icon {
  width: 44px; height: 44px;
  border-radius: 10px;
  background: rgba(255,255,255,0.12);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.its-exam-widget__icon svg {
  width: 20px; height: 20px;
  stroke: rgba(200,235,255,0.90);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.its-exam-widget__label {
  font-size: .82rem;
  font-weight: 700;
  color: rgba(230,245,255,0.90);
}
.its-exam-widget__sub {
  font-size: .72rem;
  color: rgba(180,215,240,0.65);
  margin-top: 2px;
}

/* Exam card mockup */
.its-exam-card-mock {
  background: rgba(255,255,255,0.14);
  border: 1px solid rgba(255,255,255,0.22);
  border-radius: 12px;
  padding: 1.2rem;
  display: inline-flex;
  flex-direction: column;
  gap: 10px;
  width: 180px;
  align-items: center;
}
.its-exam-card-mock__photo {
  width: 60px; height: 60px;
  border-radius: 8px;
  background: rgba(255,255,255,0.20);
  border: 1px solid rgba(255,255,255,0.30);
  display: flex;
  align-items: center;
  justify-content: center;
}
.its-exam-card-mock__photo svg {
  width: 28px; height: 28px;
  stroke: rgba(200,235,255,0.70);
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.its-exam-card-mock__name {
  font-size: .72rem;
  font-weight: 700;
  color: rgba(230,245,255,0.90);
  text-align: center;
}
.its-exam-card-mock__qr {
  width: 52px; height: 52px;
  background: rgba(255,255,255,0.90);
  border-radius: 6px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.its-exam-card-mock__qr svg {
  width: 38px; height: 38px;
  color: var(--its-navy);
}
.its-exam-card-mock__id {
  font-size: .62rem;
  font-family: monospace;
  color: rgba(180,215,240,0.60);
  letter-spacing: .1em;
}

/* ── Infrastructure ──────────────────────────────────────────── */
.its-infra-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(240px, 1fr));
  gap: clamp(1rem, 2vw, 1.5rem);
}
.its-infra-card {
  background: var(--its-panel);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.90);
  box-shadow: 0 6px 28px rgba(10,54,82,0.07);
  border-radius: var(--its-r);
  padding: clamp(.9rem, 1.5vw, 1.4rem);
  position: relative;
  overflow: hidden;
  transition: transform .28s, box-shadow .28s;
}
.its-infra-card:hover {
  transform: translateY(-4px);
  box-shadow: 0 14px 44px rgba(10,54,82,0.12);
}
.its-infra-card__top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  margin-bottom: 1rem;
  gap: .8rem;
}
.its-infra-icon {
  width: 48px; height: 48px;
  border-radius: 10px;
  background: linear-gradient(135deg, rgba(10,54,82,0.10), rgba(0,102,142,0.14));
  border: 1px solid rgba(0,102,142,0.15);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.its-infra-icon svg {
  width: 22px; height: 22px;
  stroke: var(--its-teal);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.its-infra-status {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-size: .65rem;
  font-weight: 700;
  letter-spacing: .12em;
  text-transform: uppercase;
  color: var(--its-green);
  background: rgba(22,163,74,0.08);
  border: 1px solid rgba(22,163,74,0.18);
  border-radius: 99px;
  padding: .25rem .7rem;
}
.its-infra-status::before {
  content: '';
  width: 6px; height: 6px;
  border-radius: 50%;
  background: var(--its-green);
}
.its-infra-title {
  font-size: 1rem;
  font-weight: 700;
  color: var(--its-navy);
  margin-bottom: .45rem;
}
.its-infra-text {
  font-size: .85rem;
  color: var(--its-dim);
  line-height: 1.68;
}
.its-infra-metric {
  margin-top: 1.2rem;
  padding-top: 1rem;
  border-top: 1px solid var(--its-bdr);
  display: flex;
  align-items: baseline;
  gap: .5rem;
}
.its-infra-metric__val {
  font-size: 1.3rem;
  font-weight: 900;
  color: var(--its-teal);
  letter-spacing: -.03em;
}
.its-infra-metric__lbl {
  font-size: .72rem;
  color: var(--its-dim);
  font-weight: 600;
}

/* ── Systems tiles ───────────────────────────────────────────── */
.its-systems-grid {
  display: grid;
  grid-template-columns: repeat(auto-fill, minmax(120px, 1fr));
  gap: 1rem;
}
.its-sys-tile {
  background: var(--its-panel);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.90);
  box-shadow: 0 4px 18px rgba(10,54,82,0.06);
  border-radius: var(--its-r);
  padding: 1.3rem 1rem;
  text-align: center;
  text-decoration: none;
  color: var(--its-text);
  display: flex;
  flex-direction: column;
  align-items: center;
  gap: .7rem;
  transition: transform .25s, box-shadow .25s, border-color .25s;
  cursor: pointer;
}
.its-sys-tile:hover {
  transform: translateY(-4px);
  box-shadow: 0 10px 36px rgba(10,54,82,0.12);
  border-color: rgba(0,102,142,0.22);
  text-decoration: none;
  color: var(--its-navy);
}
.its-sys-tile__icon {
  width: 46px; height: 46px;
  border-radius: 10px;
  background: rgba(0,102,142,0.08);
  border: 1px solid rgba(0,102,142,0.13);
  display: flex;
  align-items: center;
  justify-content: center;
}
.its-sys-tile__icon svg {
  width: 22px; height: 22px;
  stroke: var(--its-teal);
  fill: none;
  stroke-width: 1.7;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.its-sys-tile__label {
  font-size: .78rem;
  font-weight: 700;
  color: var(--its-navy);
  line-height: 1.3;
  text-align: center;
}

/* ── How support works ───────────────────────────────────────── */
.its-workflow-steps {
  display: grid;
  grid-template-columns: repeat(4,1fr);
  gap: 0;
  position: relative;
}
@media(max-width:768px) {
  .its-workflow-steps { grid-template-columns: repeat(2,1fr); gap: 1rem; }
  .its-workflow-steps::before { display: none; }
}
@media(max-width:480px) {
  .its-workflow-steps { grid-template-columns: 1fr; }
}
.its-workflow-steps::before {
  content: '';
  position: absolute;
  top: 36px;
  left: calc(12.5% + 24px);
  right: calc(12.5% + 24px);
  height: 2px;
  background: linear-gradient(90deg, transparent, var(--its-teal) 10%, var(--its-teal) 90%, transparent);
  opacity: .22;
}
.its-wf-step {
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
  padding: 0 .8rem 1.2rem;
  position: relative;
}
.its-wf-step__num {
  width: 56px; height: 56px;
  border-radius: 50%;
  background: linear-gradient(135deg, var(--its-teal), var(--its-teal2));
  color: #fff;
  font-size: 1.15rem;
  font-weight: 900;
  display: flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 1.1rem;
  box-shadow: 0 4px 18px rgba(0,102,142,0.28);
  position: relative;
  z-index: 1;
  letter-spacing: -.02em;
}
.its-wf-step__title {
  font-size: .95rem;
  font-weight: 700;
  color: var(--its-navy);
  margin-bottom: .4rem;
}
.its-wf-step__text {
  font-size: .82rem;
  color: var(--its-dim);
  line-height: 1.65;
  max-width: 200px;
}

/* ── Why IT matters (trust section) ─────────────────────────── */
.its-trust-layout {
  display: grid;
  grid-template-columns: 1fr 1.2fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: center;
}
@media(max-width:768px) {
  .its-trust-layout { grid-template-columns: 1fr; }
}
.its-trust-visual {
  background: linear-gradient(135deg, #0a3652, #00668e);
  border-radius: var(--its-r-lg);
  padding: clamp(2rem, 4vw, 3.5rem);
  position: relative;
  overflow: hidden;
  min-height: 300px;
  display: flex;
  flex-direction: column;
  justify-content: flex-end;
}
.its-trust-visual::before {
  content: '';
  position: absolute; inset: 0;
  background:
    radial-gradient(circle 200px at 80% 20%, rgba(255,255,255,0.06) 0%, transparent 70%),
    repeating-linear-gradient(45deg, transparent, transparent 19px, rgba(255,255,255,0.02) 20px);
  pointer-events: none;
}
.its-trust-visual__label {
  font-size: .68rem;
  font-weight: 700;
  letter-spacing: .2em;
  text-transform: uppercase;
  color: rgba(180,215,255,0.65);
  margin-bottom: .6rem;
  position: relative;
  z-index: 1;
}
.its-trust-visual__title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: #fff;
  line-height: 1.2;
  position: relative;
  z-index: 1;
}
.its-trust-metrics { display: flex; flex-direction: column; gap: 1.4rem; }
.its-metric-row { display: flex; flex-direction: column; gap: .5rem; }
.its-metric-row__top {
  display: flex;
  justify-content: space-between;
  align-items: baseline;
  gap: .5rem;
}
.its-metric-row__label { font-size: .88rem; font-weight: 600; color: var(--its-text); }
.its-metric-row__val { font-size: .88rem; font-weight: 800; color: var(--its-teal); }
.its-metric-track {
  height: 8px;
  background: rgba(10,54,82,0.08);
  border-radius: 99px;
  overflow: hidden;
}
.its-metric-fill {
  height: 100%;
  border-radius: 99px;
  background: linear-gradient(90deg, var(--its-teal), var(--its-teal2));
  width: var(--w, 80%);
}

/* ── Contact ─────────────────────────────────────────────────── */
.its-contact-layout {
  display: grid;
  grid-template-columns: 1fr 1.5fr;
  gap: clamp(2rem, 4vw, 4rem);
  align-items: start;
}
@media(max-width:768px) {
  .its-contact-layout { grid-template-columns: 1fr; }
}
.its-contact-card {
  background: var(--its-panel);
  backdrop-filter: blur(18px);
  -webkit-backdrop-filter: blur(18px);
  border: 1px solid rgba(255,255,255,0.90);
  box-shadow: var(--its-sh);
  border-radius: var(--its-r-lg);
  overflow: hidden;
}
.its-contact-card__header {
  background: linear-gradient(135deg, var(--its-navy), var(--its-teal));
  padding: 2rem;
  text-align: center;
}
.its-contact-card__avatar {
  width: 80px; height: 80px;
  border-radius: 50%;
  background: rgba(255,255,255,0.18);
  border: 3px solid rgba(255,255,255,0.30);
  display: flex;
  align-items: center;
  justify-content: center;
  margin: 0 auto 1rem;
}
.its-contact-card__avatar svg {
  width: 38px; height: 38px;
  stroke: rgba(200,235,255,0.90);
  fill: none;
  stroke-width: 1.4;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.its-contact-card__name {
  font-size: 1.05rem;
  font-weight: 700;
  color: #fff;
  margin-bottom: .25rem;
}
.its-contact-card__role {
  font-size: .78rem;
  color: rgba(200,230,255,0.72);
  font-weight: 600;
  letter-spacing: .1em;
  text-transform: uppercase;
}
.its-contact-card__body { padding: 1.6rem; }
.its-contact-item {
  display: flex;
  align-items: flex-start;
  gap: 12px;
  padding: .85rem 0;
  border-bottom: 1px solid var(--its-bdr);
}
.its-contact-item:last-child { border-bottom: none; padding-bottom: 0; }
.its-contact-item__icon {
  width: 36px; height: 36px;
  border-radius: 8px;
  background: rgba(0,102,142,0.08);
  border: 1px solid rgba(0,102,142,0.14);
  display: flex;
  align-items: center;
  justify-content: center;
  flex-shrink: 0;
}
.its-contact-item__icon svg {
  width: 17px; height: 17px;
  stroke: var(--its-teal);
  fill: none;
  stroke-width: 1.8;
  stroke-linecap: round;
  stroke-linejoin: round;
}
.its-contact-item__label {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .14em;
  color: var(--its-dim);
  margin-bottom: .2rem;
}
.its-contact-item__val {
  font-size: .88rem;
  font-weight: 600;
  color: var(--its-text);
  word-break: break-all;
}
.its-contact-item__val a {
  color: var(--its-teal);
  text-decoration: none;
}
.its-contact-item__val a:hover { text-decoration: underline; }

/* Right side helpdesk info */
.its-helpdesk {
  display: flex;
  flex-direction: column;
  gap: 1.5rem;
}
.its-helpdesk__title {
  font-size: clamp(1.5rem, 2.5vw, 2rem);
  font-weight: 800;
  color: var(--its-navy);
  letter-spacing: -.03em;
  line-height: 1.15;
  margin-bottom: .5rem;
}
.its-helpdesk__sub {
  font-size: .95rem;
  color: var(--its-dim);
  line-height: 1.72;
}
.its-helpdesk__hours {
  background: var(--its-panel);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
  border: 1px solid rgba(255,255,255,0.90);
  box-shadow: 0 4px 20px rgba(10,54,82,0.07);
  border-radius: var(--its-r);
  padding: 1.4rem 1.6rem;
}
.its-helpdesk__hours-title {
  font-size: .7rem;
  font-weight: 700;
  text-transform: uppercase;
  letter-spacing: .18em;
  color: var(--its-dim);
  margin-bottom: 1rem;
}
.its-hours-row {
  display: flex;
  justify-content: space-between;
  align-items: center;
  padding: .5rem 0;
  border-bottom: 1px solid var(--its-bdr);
  font-size: .85rem;
}
.its-hours-row:last-child { border-bottom: none; }
.its-hours-row__day { font-weight: 600; color: var(--its-text); }
.its-hours-row__time { color: var(--its-teal); font-weight: 700; }
.its-helpdesk__cta {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  background: linear-gradient(135deg, var(--its-navy), var(--its-teal));
  color: #fff;
  font-weight: 700;
  font-size: .9rem;
  padding: 1rem 2.2rem;
  border-radius: 10px;
  text-decoration: none;
  transition: box-shadow .25s, transform .2s;
  box-shadow: 0 4px 20px rgba(10,54,82,0.25);
  align-self: flex-start;
}
.its-helpdesk__cta:hover {
  color: #fff;
  text-decoration: none;
  box-shadow: 0 8px 32px rgba(10,54,82,0.35);
  transform: translateY(-2px);
}
.its-helpdesk__cta svg {
  width: 18px; height: 18px;
  stroke: currentColor;
  fill: none;
  stroke-width: 2;
  stroke-linecap: round;
  stroke-linejoin: round;
}

/* ── Animations ─────────────────────────────────────────────── */
@media (prefers-reduced-motion: no-preference) {
  .its-svc-card,
  .its-infra-card,
  .its-sys-tile,
  .its-hero-hl,
  .its-exam-step {
    animation: its-fadein .55s ease-out both;
  }
  .its-svc-card:nth-child(1)  { animation-delay: .04s; }
  .its-svc-card:nth-child(2)  { animation-delay: .08s; }
  .its-svc-card:nth-child(3)  { animation-delay: .12s; }
  .its-svc-card:nth-child(4)  { animation-delay: .16s; }
  .its-svc-card:nth-child(5)  { animation-delay: .20s; }
  .its-svc-card:nth-child(6)  { animation-delay: .24s; }
  .its-svc-card:nth-child(7)  { animation-delay: .28s; }
  .its-svc-card:nth-child(8)  { animation-delay: .32s; }
  .its-svc-card:nth-child(9)  { animation-delay: .36s; }
  @keyframes its-fadein {
    from { opacity: 0; transform: translateY(18px); }
    to   { opacity: 1; transform: translateY(0); }
  }
}

/* ── Responsive extras ──────────────────────────────────────── */
@media(max-width:640px) {
  .its-exam-widgets { grid-template-columns: 1fr 1fr; }
  .its-big-stat__value { font-size: 2.4rem; }
}
@media(max-width:480px) {
  .its-exam-widgets { grid-template-columns: 1fr; }
  .its-contact-layout { grid-template-columns: 1fr; }
}
