/* ══════════════════════════════════════════════
   SHARED CSS - Zovintra Website
   Common styles for all pages: reset, variables,
   banner/nav, mega menu, footer, scroll-to-top,
   and responsive breakpoints for shared components.
══════════════════════════════════════════════ */

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

:root {
  --black: #0a0a0a;
  --white: #ffffff;
  --gray-50: #f9f9f9;
  --gray-100: #f4f4f5;
  --gray-200: #e4e4e7;
  --gray-400: #a1a1aa;
  --gray-500: #71717a;
  --gray-600: #52525b;
  --gray-700: #3f3f46;
  --purple: #6b4eff;
  --container: 1300px;
  --font-sans: 'Spline Sans', sans-serif;
  --font-serif: 'Instrument Serif', serif;
}

html { scroll-behavior: smooth; }
body { font-family: var(--font-sans); color: var(--black); background: var(--white); overflow-x: hidden; }

/* ════════════════════════════════════════
   BANNER / NAV
════════════════════════════════════════ */
.banner-wrap {
  padding: 16px 110px;
  position: sticky; top: 0; z-index: 1000;
}
.banner-ring {
  max-width: var(--container);
  margin: 0 auto;
  border-radius: 68px;
  position: relative;
  padding: 2px;
  box-shadow: 0 8px 32px rgba(0,0,0,0.12), 0 2px 8px rgba(0,0,0,0.06);
}
.banner-ring::before {
  content: '';
  position: absolute;
  inset: 0;
  border-radius: 68px;
  padding: 2px;
  background: linear-gradient(90deg, #4921FD 0%, #FF671F 100%);
  -webkit-mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  -webkit-mask-composite: xor;
  mask:
    linear-gradient(#fff 0 0) content-box,
    linear-gradient(#fff 0 0);
  mask-composite: exclude;
  pointer-events: none;
}
.banner {
  display: flex; align-items: center; justify-content: space-between;
  padding: 8px 8px;
  border-radius: 66px;
  background: rgba(255,255,255,0.10);
  backdrop-filter: blur(24px);
  -webkit-backdrop-filter: blur(24px);
  position: relative;
}

/* Left phone pill */
.banner-phone-pill {
  display: flex; align-items: center; gap: 10px;
  padding: 8px 16px 8px 8px;
  border-radius: 100px;
  background: #ebebeb;
  border: 1px solid white;
  box-shadow: inset 0 0 0 1px rgba(255,255,255,0.2), 0 4px 16px rgba(0,0,0,0.11);
  backdrop-filter: blur(17.5px);
  -webkit-backdrop-filter: blur(17.5px);
  flex-shrink: 0;
  text-decoration: none; cursor: pointer;
}
.banner-phone-circle {
  width: 40px; height: 40px; background: var(--black); border-radius: 50%;
  display: flex; align-items: center; justify-content: center; flex-shrink: 0;
}
.banner-phone-circle svg { width: 18px; height: 18px; }
.banner-left-info { line-height: 1.3; }
.banner-left-info strong { font-size: 0.82rem; font-weight: 700; display: block; color: var(--black); }
.banner-left-info span {
  font-size: 0.76rem; color: var(--gray-500);
  display: flex; align-items: center; gap: 5px;
}
.dot-green { width: 7px; height: 7px; background: #22c55e; border-radius: 50%; flex-shrink: 0; }

/* Center logo */
.banner-logo {
  position: absolute; left: 50%; transform: translateX(-50%);
  display: flex; align-items: center;
  text-decoration: none;
}
.banner-logo img { height: 54px; width: auto; display: block; }

/* Right: menu button */
.banner-right { display: flex; align-items: center; flex-shrink: 0; }
.btn-menu {
  display: flex; align-items: center; gap: 10px;
  height: 56px; padding: 0 20px; border-radius: 63px;
  border: 1.5px solid rgba(0,0,0,0.16);
  background: rgba(235,235,235,0.45);
  font-size: 1rem; font-weight: 400; cursor: pointer;
  font-family: var(--font-sans); color: var(--black);
  transition: background 0.2s, border-color 0.2s;
}
.btn-menu:hover { background: rgba(235,235,235,0.72); border-color: rgba(0,0,0,0.22); }
.hamburger { display: flex; flex-direction: column; gap: 4px; transition: transform 0.2s; }
.hamburger i { display: block; width: 17px; height: 1.5px; background: var(--black); border-radius: 2px; transition: transform 0.25s, opacity 0.25s; }
.menu-open .hamburger i:nth-child(1) { transform: translateY(2.75px) rotate(45deg); }
.menu-open .hamburger i:nth-child(2) { transform: translateY(-2.75px) rotate(-45deg); }

/* ════════════════════════════════════════
   MEGA MENU
════════════════════════════════════════ */
.mega-menu {
  position: fixed; top: 0; left: 0; right: 0; bottom: 0;
  z-index: 999;
  display: flex; flex-direction: column;
  opacity: 0; pointer-events: none;
  transition: opacity 0.35s ease;
}
.mega-menu.active { opacity: 1; pointer-events: auto; }

.mega-menu-backdrop {
  position: absolute; inset: 0;
  background: rgba(10,10,10,0.55);
  backdrop-filter: blur(2px);
  -webkit-backdrop-filter: blur(2px);
}

.mega-menu-panel {
  position: relative; z-index: 1;
  width: calc(100% - 220px);
  max-width: var(--container);
  margin: 100px auto 0;
  border-radius: 24px;
  background: rgba(255,255,255,0.97);
  border: 1px solid var(--gray-200);
  box-shadow: 0 32px 80px rgba(0,0,0,0.18);
  overflow: hidden;
  transform: translateY(-16px);
  transition: transform 0.35s cubic-bezier(0.16,1,0.3,1);
}
.mega-menu.active .mega-menu-panel { transform: translateY(0); }

.mega-menu-inner {
  display: grid;
  grid-template-columns: 200px 1.6fr 1fr;
  min-height: 0;
}
/* Services column */
.mega-col-services {
  display: block;
  border-left: 1px solid var(--gray-100);
}
.mega-col-services .mega-col-half {
  padding: 24px 28px;
}
/* Company col */
.mega-col-company {
  border-left: 1px solid var(--gray-100);
  padding: 24px 24px;
  display: flex; flex-direction: column; gap: 28px;
}
.mega-col-group-title {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gray-400);
  margin-bottom: 10px; display: block;
}

/* Left accent column */
.mega-menu-brand {
  padding: 28px 24px;
  background: var(--black);
  display: flex; flex-direction: column; justify-content: space-between;
  gap: 24px;
}
.mega-menu-brand-logo img { height: 28px; }
.mega-menu-brand-tagline {
  font-family: var(--font-serif); font-style: italic;
  font-size: 1.15rem; color: rgba(255,255,255,0.6);
  line-height: 1.4;
}
.mega-menu-brand-cta {
  display: flex; align-items: center; justify-content: center;
  padding: 11px 18px; border-radius: 999px;
  background: linear-gradient(90deg, #4921FD 0%, #FF671F 100%);
  color: white; font-size: 0.85rem; font-weight: 600;
  text-decoration: none; font-family: var(--font-sans);
}

/* Nav columns */
.mega-col {
  padding: 24px 24px;
  border-left: 1px solid var(--gray-100);
}
.mega-col-title {
  font-size: 0.68rem; font-weight: 600; letter-spacing: 0.1em;
  text-transform: uppercase; color: var(--gray-400);
  margin-bottom: 14px; display: block;
}
.mega-col-items { list-style: none; display: flex; flex-direction: column; gap: 2px; }
.mega-col-items li a {
  display: flex; align-items: center; gap: 10px;
  padding: 7px 10px; border-radius: 8px;
  font-family: var(--font-sans); font-size: 0.92rem;
  color: var(--black); text-decoration: none;
  transition: background 0.15s;
}
.mega-col-items li a:hover { background: var(--gray-100); }
.mega-col-items li a .mi-dot {
  width: 6px; height: 6px; border-radius: 50%; flex-shrink: 0;
  background: var(--gray-200);
}
.mega-col-items li a:hover .mi-dot { background: #FF671F; }
.mega-col-items li a .mi-label { flex: 1; }
.mega-col-items li a .mi-sub {
  font-size: 0.72rem; color: var(--gray-400); font-weight: 400;
}

/* Bottom strip */
.mega-menu-footer {
  padding: 16px 32px;
  border-top: 1px solid var(--gray-100);
  display: flex; align-items: center; justify-content: space-between;
  background: var(--gray-50);
}
.mega-footer-links { display: flex; gap: 24px; }
.mega-footer-links a {
  font-size: 0.78rem; color: var(--gray-500);
  text-decoration: none; font-family: var(--font-sans);
}
.mega-footer-links a:hover { color: var(--black); }
.mega-footer-right { font-size: 0.78rem; color: var(--gray-400); font-family: var(--font-sans); }

/* ════════════════════════════════════════
   FOOTER BOTTOM
════════════════════════════════════════ */
.footer-bottom {
  border-top: 1px solid var(--gray-200);
  padding: 20px 110px;
  display: flex; justify-content: space-between; align-items: center;
  max-width: var(--container); margin: 0 auto;
}
.footer-copy { font-size: 0.78rem; color: var(--gray-500); }
.footer-made { font-size: 0.78rem; color: var(--gray-400); }
.footer-links { display: flex; gap: 28px; }
.footer-links a { font-size: 0.78rem; color: var(--gray-500); text-decoration: none; }
.footer-links a:hover { color: var(--black); }

/* ════════════════════════════════════════
   WHATSAPP FLOATING BUTTON
════════════════════════════════════════ */
.wa-float {
  position: fixed; bottom: 92px; right: 32px; z-index: 900;
  display: flex; align-items: center; gap: 10px;
  text-decoration: none;
  transition: transform 0.2s ease;
}
.wa-float:hover { transform: translateY(-2px); }
.wa-float:hover .wa-tooltip { opacity: 1; transform: translateX(0); pointer-events: auto; }

.wa-circle {
  width: 48px; height: 48px; border-radius: 50%; flex-shrink: 0;
  background: #25D366;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(37,211,102,0.40);
}
.wa-circle svg { width: 24px; height: 24px; }

.wa-tooltip {
  background: var(--black); color: white;
  font-size: 0.78rem; font-weight: 600; font-family: var(--font-sans);
  padding: 7px 13px; border-radius: 999px;
  white-space: nowrap;
  opacity: 0; transform: translateX(6px);
  transition: opacity 0.2s ease, transform 0.2s ease;
  pointer-events: none;
  order: -1;
}

@media (max-width: 768px) {
  .wa-float { bottom: 80px; right: 16px; }
  .wa-tooltip { display: none; }
  .wa-circle { width: 44px; height: 44px; }
}

/* ════════════════════════════════════════
   SCROLL TO TOP
════════════════════════════════════════ */
.scroll-top {
  position: fixed; bottom: 32px; right: 32px; z-index: 900;
  width: 48px; height: 48px; border-radius: 50%;
  background: var(--black); color: white;
  border: none; cursor: pointer;
  display: flex; align-items: center; justify-content: center;
  box-shadow: 0 4px 16px rgba(0,0,0,0.22);
  opacity: 0; transform: translateY(12px);
  transition: opacity 0.25s ease, transform 0.25s ease, background 0.2s;
  pointer-events: none;
}
.scroll-top.visible { opacity: 1; transform: translateY(0); pointer-events: auto; }
.scroll-top:hover { background: #333; }
.scroll-top svg { width: 18px; height: 18px; }

/* ════════════════════════════════════════
   RESPONSIVE - Shared Components
════════════════════════════════════════ */

/* ── Tablet landscape (<=1100px) ── */
@media (max-width: 1100px) {
  .banner-wrap { padding: 14px 48px; }
  .mega-menu-panel { width: calc(100% - 96px); margin: 100px auto 0; }
  .footer-bottom { padding: 20px 48px; }
}

/* ── Tablet portrait / large mobile (<=768px) ── */
@media (max-width: 768px) {
  /* Nav */
  .banner-wrap { padding: 10px 12px; }
  .banner { padding: 6px; }
  .banner-logo { position: static; transform: none; flex: 1; justify-content: center; }
  .banner-logo img { height: 36px; }
  .banner-left-info { display: none; }
  .banner-phone-pill { padding: 6px; }
  .banner-phone-circle { width: 34px; height: 34px; }
  .btn-menu { height: 46px; padding: 0 12px; gap: 0; }
  .btn-menu-label { display: none; }

  /* Mega menu mobile */
  .mega-menu-panel { width: calc(100% - 32px); margin: 72px auto 0; border-radius: 20px; }
  .mega-menu-inner {
    grid-template-columns: 1fr;
    overflow-y: auto; max-height: calc(100vh - 100px);
    align-content: start;
  }
  .mega-menu-brand {
    flex-direction: row; align-items: center;
    justify-content: space-between;
    padding: 14px 20px; gap: 12px;
    border-radius: 20px 20px 0 0;
  }
  .mega-menu-brand-logo img { height: 22px; }
  .mega-menu-brand-tagline { display: none; }
  .mega-menu-brand-cta { font-size: 0.78rem; padding: 9px 14px; white-space: nowrap; }
  .mega-col { border-left: none; border-top: 1px solid var(--gray-100); padding: 16px 20px; }
  .mega-col-services { border-left: none; }
  .mega-col-company { padding: 16px 20px; }
  .mega-menu-footer { padding: 16px 20px; flex-direction: column; gap: 12px; align-items: flex-start; }

  /* Footer */
  .footer-bottom { padding: 16px 24px; flex-direction: column; gap: 12px; text-align: center; }
  .footer-links { flex-wrap: wrap; justify-content: center; gap: 16px; }

  /* Scroll to top */
  .scroll-top { bottom: 20px; right: 16px; width: 42px; height: 42px; }
}

/* ═══════════════════════════════════════════════════════════
   INTERACTIVE CONTENT WIDGETS (ZW)
   ═══════════════════════════════════════════════════════════ */
.zw-w { margin: 36px 0; }
.zw-cap { font-size: 0.72rem; font-weight: 700; letter-spacing: 0.08em; text-transform: uppercase; color: var(--gray-400); margin-bottom: 16px; }

/* Reveal-on-scroll (progressive: visible unless JS arms it) */
.zw-reveal.zw-armed { opacity: 0; transform: translateY(18px); }
.zw-reveal.zw-armed.zw-in { opacity: 1; transform: none; transition: opacity 0.6s ease, transform 0.6s ease; }
@media (prefers-reduced-motion: reduce) { .zw-reveal.zw-armed { opacity: 1; transform: none; } }

/* ── Flow diagram ── */
.zw-flow-track { display: flex; align-items: stretch; gap: 4px; flex-wrap: wrap; }
.zw-flow-node { flex: 1 1 0; min-width: 120px; border: 1px solid var(--gray-200); border-radius: 14px; padding: 18px 14px; text-align: center; background: linear-gradient(180deg, #fff, var(--gray-50)); }
.zw-flow-ico { width: 40px; height: 40px; margin: 0 auto 10px; border-radius: 11px; display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 800; color: #fff; background: linear-gradient(135deg, #4921FD, #6b4eff); }
.zw-flow-label { font-size: 0.9rem; font-weight: 700; line-height: 1.25; }
.zw-flow-sub { font-size: 0.76rem; color: var(--gray-500); margin-top: 4px; line-height: 1.4; }
.zw-flow-arrow { display: flex; align-items: center; color: var(--gray-400); font-size: 1.3rem; font-weight: 700; padding: 0 2px; }
@media (max-width: 640px) { .zw-flow-arrow { transform: rotate(90deg); width: 100%; justify-content: center; padding: 2px 0; } .zw-flow-node { min-width: 0; } }

/* ── Accordion ── */
.zw-acc-item { border: 1px solid var(--gray-200); border-radius: 12px; margin-bottom: 10px; overflow: hidden; background: #fff; transition: border-color 0.2s, box-shadow 0.2s; }
.zw-acc-item.open { border-color: var(--purple); box-shadow: 0 8px 30px rgba(107,78,255,0.08); }
.zw-acc-head { width: 100%; display: flex; align-items: center; justify-content: space-between; gap: 14px; padding: 16px 18px; background: none; border: 0; cursor: pointer; font-family: inherit; font-size: 0.96rem; font-weight: 600; color: var(--black); text-align: left; }
.zw-acc-ico { flex-shrink: 0; width: 24px; height: 24px; border-radius: 50%; background: var(--gray-100); color: var(--purple); display: flex; align-items: center; justify-content: center; font-size: 1.1rem; font-weight: 700; line-height: 1; }
.zw-acc-item.open .zw-acc-ico { background: var(--purple); color: #fff; }
.zw-acc-panel { max-height: 0; overflow: hidden; transition: max-height 0.3s ease; }
.zw-acc-inner { padding: 0 18px 18px; font-size: 0.92rem; line-height: 1.65; color: var(--gray-600); }

/* ── Compare toggle ── */
.zw-cmp-toggle { display: inline-flex; padding: 4px; gap: 4px; background: var(--gray-100); border-radius: 999px; margin-bottom: 18px; }
.zw-cmp-toggle button { border: 0; background: none; cursor: pointer; font-family: inherit; font-size: 0.85rem; font-weight: 600; color: var(--gray-500); padding: 9px 20px; border-radius: 999px; transition: all 0.2s; }
.zw-cmp-toggle button.active { background: #fff; color: var(--black); box-shadow: 0 2px 8px rgba(0,0,0,0.08); }
.zw-cmp-panel { display: none; border: 1px solid var(--gray-200); border-radius: 16px; padding: 24px; }
.zw-cmp-panel.active { display: block; }
.zw-cmp-panel h4 { font-size: 1.05rem; font-weight: 700; margin: 0 0 14px; }
.zw-cmp .zw-cmp-panel ul { list-style: none; padding: 0; margin: 0; }
.zw-cmp .zw-cmp-panel li { position: relative; display: block; padding: 8px 4px 8px 30px; font-size: 0.92rem; line-height: 1.55; color: var(--gray-600); border-bottom: 1px solid var(--gray-100); }
.zw-cmp .zw-cmp-panel li:last-child { border-bottom: 0; }
.zw-cmp .zw-cmp-panel li::before { position: absolute; left: 2px; top: 8px; width: auto; height: auto; margin: 0; background: none; border-radius: 0; font-weight: 700; font-size: 0.9rem; line-height: 1.55; }
.zw-cmp-panel.zw-cmp-a li::before { content: '✕'; color: #e2562a; }
.zw-cmp-panel.zw-cmp-b li::before { content: '✓'; color: var(--purple); }
.zw-cmp-a { background: #fff7f3; border-color: #fdd9c8; }
.zw-cmp-b { background: #f5f3ff; border-color: #ddd4ff; }
.zw-cmp-note { margin-top: 14px; padding-top: 12px; border-top: 1px dashed var(--gray-200); font-size: 0.85rem; font-style: italic; color: var(--gray-500); }

/* ── Checklist + meter ── */
.zw-chk { border: 1px solid var(--gray-200); border-radius: 18px; padding: 24px; background: var(--gray-50); }
.zw-chk-meter { height: 10px; border-radius: 999px; background: var(--gray-200); overflow: hidden; }
.zw-chk-fill { height: 100%; width: 0; border-radius: 999px; background: linear-gradient(90deg, #FF671F, #ffa775); transition: width 0.45s ease, background 0.45s ease; }
.zw-chk-mid .zw-chk-fill { background: linear-gradient(90deg, #6b4eff, #9d86ff); }
.zw-chk-full .zw-chk-fill { background: linear-gradient(90deg, #16a34a, #4ade80); }
.zw-chk-status { display: flex; align-items: baseline; gap: 10px; margin: 12px 0 18px; }
.zw-chk-pct { font-size: 1.4rem; font-weight: 800; color: var(--black); font-variant-numeric: tabular-nums; }
.zw-chk-msg { font-size: 0.85rem; color: var(--gray-500); line-height: 1.4; }
.zw-chk-item { display: flex; align-items: flex-start; gap: 12px; padding: 11px 0; border-bottom: 1px solid var(--gray-200); cursor: pointer; font-size: 0.92rem; line-height: 1.5; color: var(--gray-700); }
.zw-chk-item:last-of-type { border-bottom: 0; }
.zw-chk-item input { position: absolute; opacity: 0; width: 0; height: 0; }
.zw-chk-box { flex-shrink: 0; width: 20px; height: 20px; margin-top: 1px; border: 2px solid var(--gray-200); border-radius: 6px; background: #fff; transition: all 0.18s; position: relative; }
.zw-chk-item input:checked + .zw-chk-box { background: var(--purple); border-color: var(--purple); }
.zw-chk-item input:checked + .zw-chk-box::after { content: ''; position: absolute; left: 6px; top: 2px; width: 5px; height: 10px; border: solid #fff; border-width: 0 2px 2px 0; transform: rotate(45deg); }
.zw-chk-item input:focus-visible + .zw-chk-box { outline: 2px solid var(--purple); outline-offset: 2px; }
.zw-chk-item input:checked ~ .zw-chk-label { color: var(--gray-400); text-decoration: line-through; }
.zw-chk-cta { display: inline-flex; margin-top: 18px; padding: 12px 24px; border-radius: 999px; background: var(--black); color: #fff; font-size: 0.88rem; font-weight: 600; text-decoration: none; transition: background 0.2s; }
.zw-chk-cta:hover { background: #222; }

/* ── Stats counters ── */
.zw-stats-grid { display: grid; grid-template-columns: repeat(auto-fit, minmax(150px, 1fr)); gap: 16px; }
.zw-stat-card { border: 1px solid var(--gray-200); border-radius: 16px; padding: 24px 18px; text-align: center; background: linear-gradient(180deg, #fff, var(--gray-50)); }
.zw-stat-num { font-size: clamp(2rem, 5vw, 2.8rem); font-weight: 800; line-height: 1; letter-spacing: -0.02em; background: linear-gradient(135deg, #4921FD, #FF671F); -webkit-background-clip: text; background-clip: text; -webkit-text-fill-color: transparent; font-variant-numeric: tabular-nums; }
.zw-stat-textval { font-size: clamp(1.3rem, 3.5vw, 1.8rem); }
.zw-stat-fix { font-size: 0.7em; }
.zw-stat-label { font-size: 0.84rem; color: var(--gray-600); line-height: 1.4; margin-top: 10px; }

/* ── Tabs ── */
.zw-tab-heads { display: flex; flex-wrap: wrap; gap: 8px; margin-bottom: 18px; }
.zw-tab-h { border: 1px solid var(--gray-200); background: #fff; cursor: pointer; font-family: inherit; font-size: 0.88rem; font-weight: 600; color: var(--gray-500); padding: 10px 18px; border-radius: 999px; transition: all 0.2s; }
.zw-tab-h.active { background: var(--black); color: #fff; border-color: var(--black); }
.zw-tab-p { display: none; border: 1px solid var(--gray-200); border-radius: 16px; padding: 24px; background: #fff; animation: zwFade 0.3s ease; }
.zw-tab-p.active { display: block; }
.zw-tab-p h4 { font-size: 1.05rem; font-weight: 700; margin: 0 0 8px; }
.zw-tab-p p { font-size: 0.93rem; line-height: 1.65; color: var(--gray-600); margin: 0; }
@keyframes zwFade { from { opacity: 0; transform: translateY(6px); } to { opacity: 1; transform: none; } }

/* ── Figure (in-body illustration) ── */
.zw-fig { text-align: center; margin: 38px 0; }
.zw-fig img { max-width: 100%; height: auto; border-radius: 16px; border: 1px solid var(--gray-100); }
.zw-fig figcaption { font-size: 0.82rem; color: var(--gray-500); margin-top: 12px; font-style: italic; }

/* ── Pull-quote ── */
.zw-quote { border-left: 4px solid var(--purple); padding: 4px 0 4px 26px; margin: 40px 0; border-radius: 0; }
.zw-quote p { font-family: var(--font-serif); font-style: italic; font-size: clamp(1.35rem, 3vw, 1.7rem); line-height: 1.4; color: var(--black); margin: 0; }
.zw-quote cite { display: block; margin-top: 14px; font-style: normal; font-size: 0.82rem; font-weight: 600; letter-spacing: 0.02em; color: var(--gray-500); }

/* ── Timeline ── */
.zw-tl-track { position: relative; padding-left: 8px; }
.zw-tl-step { position: relative; padding: 0 0 26px 38px; }
.zw-tl-step::before { content: ''; position: absolute; left: 13px; top: 26px; bottom: -4px; width: 2px; background: var(--gray-200); }
.zw-tl-step:last-child::before { display: none; }
.zw-tl-dot { position: absolute; left: 0; top: 0; width: 28px; height: 28px; border-radius: 50%; background: linear-gradient(135deg, #4921FD, #6b4eff); color: #fff; display: flex; align-items: center; justify-content: center; font-size: 0.8rem; font-weight: 700; }
.zw-tl-body h4 { font-size: 0.98rem; font-weight: 700; margin: 3px 0 5px; }
.zw-tl-body p { font-size: 0.9rem; line-height: 1.6; color: var(--gray-600); margin: 0; }
