.wfa-page {
  --wfa-black: #05070d;
  --wfa-navy-900: #070b16;
  --wfa-navy-800: #0b1120;
  --wfa-navy-700: #101a30;
  --wfa-blue-900: #0c2a6b;
  --wfa-blue-700: #1d4ed8;
  --wfa-blue-600: #2563eb;
  --wfa-blue-500: #3b82f6;
  --wfa-blue-300: #7dd3fc;
  --wfa-cyan: #22d3ee;
  --wfa-white: #ffffff;
  --wfa-offwhite: #f5f8fd;
  --wfa-paper: #eef2fa;
  --wfa-ink: #0a0f1e;
  --wfa-ink-soft: #384560;
  --wfa-muted-dark: #93a2c4;
  --wfa-muted-light: #5b6785;
  --wfa-glass-bg: rgba(255, 255, 255, 0.045);
  --wfa-glass-bg-strong: rgba(255, 255, 255, 0.07);
  --wfa-glass-border: rgba(255, 255, 255, 0.1);
  --wfa-glass-bg-light: rgba(10, 15, 30, 0.035);
  --wfa-glass-border-light: rgba(10, 15, 30, 0.09);
  --wfa-grad-text: linear-gradient(92deg, #7dd3fc 0%, #3b82f6 45%, #1d4ed8 100%);
  --wfa-grad-line: linear-gradient(90deg, rgba(125,211,252,0) 0%, #7dd3fc 20%, #3b82f6 55%, #22d3ee 80%, rgba(34,211,238,0) 100%);
  --wfa-radius-lg: 22px;
  --wfa-radius-md: 16px;
  --wfa-radius-sm: 10px;
  --wfa-space: 30px;
  position: relative;
  overflow-x: clip;
  color: var(--wfa-ink);
  font-size: 16px;
  line-height: 1.65;
}

.wfa-page *,
.wfa-page *::before,
.wfa-page *::after {
  box-sizing: border-box;
}

.wfa-page img { max-width: 100%; height: auto; }
.wfa-page a { text-decoration: none; }
.wfa-page ul { margin: 0; padding: 0; list-style: none; }
.wfa-page button { border: none; background: none; }

/* ---------- Section rhythm ---------- */
.wfa-section {
  padding: 30px 0;
  position: relative;
}
.wfa-section:last-child { margin-bottom: 0; }
.wfa-section--dark {
  background: radial-gradient(120% 140% at 15% 0%, #0d1a3c 0%, var(--wfa-navy-900) 45%, var(--wfa-black) 100%);
  color: var(--wfa-white);
}
.wfa-section--light {
  background: linear-gradient(180deg, var(--wfa-offwhite) 0%, #ffffff 100%);
  color: var(--wfa-ink);
}
.wfa-section--tight { padding: 30px 0; }

.wfa-container { position: relative; z-index: 2; }

/* ---------- Eyebrow / labels ---------- */
.wfa-eyebrow {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  font-size: 12.5px;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  font-weight: 600;
  padding: 7px 16px;
  border-radius: 999px;
  margin-bottom: 18px;
}
.wfa-section--dark .wfa-eyebrow {
  color: var(--wfa-blue-300);
  background: rgba(59, 130, 246, 0.1);
  border: 1px solid rgba(125, 211, 252, 0.25);
}
.wfa-section--light .wfa-eyebrow {
  color: var(--wfa-blue-700);
  background: rgba(29, 78, 216, 0.07);
  border: 1px solid rgba(29, 78, 216, 0.18);
}
.wfa-eyebrow .wfa-dot {
  width: 6px; height: 6px; border-radius: 50%;
  background: var(--wfa-cyan);
  box-shadow: 0 0 0 3px rgba(34,211,238,0.18);
}

/* ---------- Headings ---------- */
.wfa-page h1,
.wfa-page h2,
.wfa-page h3 {
  font-weight: 700;
  margin: 0 0 16px;
  letter-spacing: -0.01em;
}

/* Headings default to a solid dark blue everywhere. The old light-cyan
   gradient text (#7dd3fc start) was unreadable on white section
   backgrounds, so h1/h2 now use a strong, high-contrast navy blue that
   reads clearly on both light and dark sections. */
.wfa-h1,
.wfa-h2 {
  color: var(--wfa-blue-900);
  background: none;
  -webkit-background-clip: initial;
  background-clip: initial;
  -webkit-text-fill-color: currentColor;
}

.wfa-h1 {
  font-size: 2.6rem;
  line-height: 1.12;
  display: inline-block;
}

.wfa-h2 {
  font-size: clamp(1.65rem, 2.9vw, 2.5rem);
  line-height: 1.2;
  display: inline-block;
}

/* On dark navy sections a plain dark-blue heading loses contrast, so
   dark sections keep a bright blue that pops against the dark backdrop. */
.wfa-section--dark .wfa-h1,
.wfa-section--dark .wfa-h2 {
  color: #6ea8ff;
}

.wfa-h3 {
  font-size: 1.08rem;
  line-height: 1.4;
  margin-bottom: 10px;
}
.wfa-section--dark .wfa-h3 { color: var(--wfa-white); }
.wfa-section--light .wfa-h3 { color: var(--wfa-ink); }

.wfa-section-head { margin-bottom: 44px; max-width: 780px; }
.wfa-section-head--center { max-width: 720px; margin-left: auto; margin-right: auto; text-align: center; }

.wfa-lede {
  font-size: 1.05rem;
  max-width: 760px;
}
.wfa-section--dark .wfa-lede { color: var(--wfa-muted-dark); }
.wfa-section--light .wfa-lede { color: var(--wfa-muted-light); }

.wfa-p { font-size: 0.98rem; margin-bottom: 0; }
.wfa-section--dark .wfa-p { color: var(--wfa-muted-dark); }
.wfa-section--light .wfa-p { color: var(--wfa-muted-light); }

/* ---------- Buttons ---------- */
.wfa-btn {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  gap: 10px;
  padding: 14px 28px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.95rem;
  transition: transform 0.25s ease, box-shadow 0.25s ease, background 0.25s ease;
  white-space: nowrap;
  cursor: pointer;
}
.wfa-btn--primary {
  color: #04101f;
  background: linear-gradient(92deg, #7dd3fc, #3b82f6 60%, #1d4ed8);
  box-shadow: 0 10px 30px -8px rgba(37, 99, 235, 0.65);
}
.wfa-btn--primary:hover {
  transform: translateY(-2px);
  box-shadow: 0 16px 36px -8px rgba(37, 99, 235, 0.8);
  color: #04101f;
}
.wfa-btn--ghost {
  color: var(--wfa-white);
  background: var(--wfa-glass-bg-strong);
  border: 1px solid var(--wfa-glass-border);
  backdrop-filter: blur(12px);
}
.wfa-btn--ghost:hover { transform: translateY(-2px); background: rgba(255,255,255,0.1); color: var(--wfa-white); }
.wfa-btn--ghost-light {
  color: var(--wfa-ink);
  background: rgba(10,15,30,0.04);
  border: 1px solid var(--wfa-glass-border-light);
}
.wfa-btn--ghost-light:hover { transform: translateY(-2px); background: rgba(10,15,30,0.07); color: var(--wfa-ink); }
.wfa-btn--block { width: 100%; }

/* ---------- Glass card base ---------- */
.wfa-glass {
  border-radius: var(--wfa-radius-lg);
  position: relative;
  transition: transform 0.35s ease, box-shadow 0.35s ease, border-color 0.35s ease;
}
.wfa-section--dark .wfa-glass {
  background: var(--wfa-glass-bg);
  border: 1px solid var(--wfa-glass-border);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.wfa-section--light .wfa-glass {
  background: rgba(255,255,255,0.7);
  border: 1px solid var(--wfa-glass-border-light);
  box-shadow: 0 1px 2px rgba(10,15,30,0.04);
  backdrop-filter: blur(14px);
  -webkit-backdrop-filter: blur(14px);
}
.wfa-glass--hover:hover {
  transform: translateY(-6px);
}
.wfa-section--dark .wfa-glass--hover:hover {
  border-color: rgba(125, 211, 252, 0.35);
  box-shadow: 0 22px 44px -18px rgba(37, 99, 235, 0.55);
}
.wfa-section--light .wfa-glass--hover:hover {
  border-color: rgba(29, 78, 216, 0.28);
  box-shadow: 0 22px 44px -20px rgba(29, 78, 216, 0.25);
}

/* ---------- Icon system ---------- */
.wfa-icon-wrap {
  width: 52px;
  height: 52px;
  border-radius: 14px;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  margin-bottom: 18px;
  flex-shrink: 0;
}
.wfa-section--dark .wfa-icon-wrap {
  background: linear-gradient(150deg, rgba(59,130,246,0.22), rgba(34,211,238,0.08));
  border: 1px solid rgba(125,211,252,0.25);
}
.wfa-section--light .wfa-icon-wrap {
  background: linear-gradient(150deg, rgba(29,78,216,0.1), rgba(34,211,238,0.05));
  border: 1px solid rgba(29,78,216,0.15);
}
.wfa-icon { width: 26px; height: 26px; stroke: url(#wfaIconGrad); fill: none; }

/* ---------- Hero ---------- */
.wfa-hero {
padding: 30px;
}
.wfa-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image:
    radial-gradient(circle at 20% 20%, rgba(59,130,246,0.22), transparent 45%),
    radial-gradient(circle at 85% 10%, rgba(34,211,238,0.14), transparent 40%);
  pointer-events: none;
}
.wfa-hero-badges {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 26px;
}
.wfa-badge {
  font-size: 0.78rem;
  font-weight: 600;
  padding: 8px 14px;
  border-radius: 999px;
  color: var(--wfa-blue-300);
  background: rgba(255,255,255,0.05);
  border: 1px solid rgba(125,211,252,0.2);
  display: inline-flex;
  align-items: center;
  gap: 7px;
}
.wfa-badge svg { width: 14px; height: 14px; stroke: var(--wfa-cyan); fill: none; }

.wfa-hero-ctas { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 32px; }

/* Flow-path signature motif */
.wfa-flowline {
  position: relative;
  height: 3px;
  width: 100%;
  border-radius: 999px;
  background: rgba(255,255,255,0.06);
  overflow: hidden;
}
.wfa-flowline::after {
  content: "";
  position: absolute;
  top: 0; left: -40%;
  height: 100%;
  width: 40%;
  background: var(--wfa-grad-line);
  animation: wfaFlow 3.2s linear infinite;
}
.wfa-section--light .wfa-flowline { background: rgba(10,15,30,0.07); }
@keyframes wfaFlow {
  0% { left: -40%; }
  100% { left: 100%; }
}
.wfa-flowline--v {
  width: 3px;
  height: 100%;
}
.wfa-flowline--v::after {
  top: -40%; left: 0;
  width: 100%; height: 40%;
  background: linear-gradient(180deg, rgba(125,211,252,0) 0%, #7dd3fc 20%, #3b82f6 55%, #22d3ee 80%, rgba(34,211,238,0) 100%);
  animation: wfaFlowV 3.2s linear infinite;
}
@keyframes wfaFlowV {
  0% { top: -40%; }
  100% { top: 100%; }
}

.wfa-hero-visual {
  position: relative;
  border-radius: var(--wfa-radius-lg);
  padding: 26px;
}
.wfa-hero-node-row {
  display: flex;
  align-items: center;
  gap: 0;
}
.wfa-hero-node {
  flex: 0 0 auto;
  width: 84px; height: 84px;
  border-radius: 20px;
  display: flex; align-items: center; justify-content: center;
  background: var(--wfa-glass-bg-strong);
  border: 1px solid rgba(125,211,252,0.3);
  position: relative;
  z-index: 2;
}
.wfa-hero-node svg { width: 32px; height: 32px; stroke: url(#wfaIconGrad); fill: none; }
.wfa-hero-node-connector { flex: 1 1 auto; margin: 0 -2px; }
.wfa-hero-visual-caption { margin-top: 22px; font-size: 0.82rem; color: var(--wfa-muted-dark); }
.wfa-hero-node-labels { display: flex; justify-content: space-between; margin-top: 12px; font-size: 0.72rem; color: var(--wfa-muted-dark); text-align: center; }
.wfa-hero-node-labels span { width: 84px; }

/* ---------- Trust badges strip ---------- */
.wfa-trust-strip { display: flex; flex-wrap: wrap; gap: 12px 28px; margin-top: 30px; }
.wfa-trust-item { display: flex; align-items: center; gap: 9px; font-size: 0.85rem; font-weight: 600; color: var(--wfa-muted-dark); }
.wfa-trust-item svg { width: 17px; height: 17px; stroke: var(--wfa-cyan); fill: none; flex-shrink: 0; }
.wfa-logo-chip {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  padding: 14px 18px;
  background: #12192b!important;   
  border: 1px solid rgba(255,255,255,0.08);
  border-radius: 10px;
}

.wfa-logo-chip img {
  max-width: 110px;
  max-height: 36px;
  width: auto;
  height: auto;
  object-fit: contain;
  transition: filter 0.25s ease;
}

.wfa-logo-strip {
  display: flex;
  flex-wrap: wrap;
  gap: 16px;
}
/* ---------- Lead form ----------
   Self-contained "wfa-formbox" styles matching the site's own
   "Start Your Project" form (white pill inputs, blue focus ring,
   gradient submit button). Namespaced under wfa-formbox rather than
   reusing the site's .form_box / #form_modal classes so this form
   doesn't collide with the footer's own forms included later on the
   same page. */
.wfa-lead-panel {
  border-radius: var(--wfa-radius-lg);
  padding: 34px;
  position: relative;
  background: #ffffff;
  border: 1px solid rgba(15,23,42,0.06);
  box-shadow: 0 26px 54px -18px rgba(10,15,30,0.28);
}
.wfa-formbox-title {
  font-weight: 700;
  font-size: 1.5rem;
  color: #0f172a;
  margin-bottom: 4px;
}
.wfa-formbox-sub {
  font-size: 0.85rem;
  color: var(--wfa-muted-light);
  margin-bottom: 20px;
}
.wfa-formbox-form { display: flex; flex-direction: column; gap: 12px; }
.wfa-formbox-form .form-group { margin-bottom: 0; }
.wfa-formbox-form .form-group.d-flex { display: flex; gap: 10px; }

.wfa-formbox-form .form-control,
.wfa-formbox-form select.form-control {
  width: 100%;
  background: #ffffff !important;
  border: 2px solid #b9c6e0;
  border-radius: 24px;
  padding: 11px 18px;
  color: #132038 !important;
  font-size: 0.88rem;
  outline: none;
  transition: border-color 0.2s ease, box-shadow 0.2s ease;
  -webkit-appearance: none;
  appearance: none;
  height: auto;
}

.wfa-formbox-form select.form-control { cursor: pointer; }
.wfa-formbox-form .form-control::placeholder {
  color: #6b7890 !important;
  opacity: 1 !important;
}
.wfa-formbox-form .form-control:focus {
  border-color: var(--wfa-blue-500);
  box-shadow: 0 0 0 3px rgba(59,130,246,0.16);
}
.wfa-formbox-form textarea.form-control { resize: none; line-height: 1.6; border-radius: 20px; }

.wfa-formbox-form .countrycode {
  width: 92px;
  flex-shrink: 0;
  background: #ffffff !important;
  border: 2px solid #b9c6e0;
  border-radius: 24px;
  padding: 11px 8px;
  color: #132038;
  font-size: 0.8rem;
  outline: none;
  cursor: pointer;
  appearance: none;
  -webkit-appearance: none;
}
.wfa-formbox-form .countrycode:focus { border-color: var(--wfa-blue-500); box-shadow: 0 0 0 3px rgba(59,130,246,0.16); }
.wfa-formbox-form .form-group.d-flex .form-control { flex: 1; }

.wfa-formbox-form .cf-turnstile { min-height: 65px; }
.wfa-formbox-form .wfacaptchaRequired { font-size: 12px; color: #ff6b6b; margin-top: 4px; }

.wfa-formbox-form .wfabuttonhide,
.wfa-formbox-form .wfabuttonshow {
  width: 100%;
  background: linear-gradient(135deg, var(--wfa-blue-500) 0%, var(--wfa-blue-700) 100%);
  color: #fff;
  font-weight: 700;
  font-size: 0.92rem;
  padding: 13px;
  border-radius: 999px;
  border: none;
  cursor: pointer;
  transition: opacity 0.2s ease, box-shadow 0.2s ease, transform 0.1s ease;
}
.wfa-formbox-form .wfabuttonhide:hover,
.wfa-formbox-form .wfabuttonshow:hover:not(:disabled) {
  opacity: 0.92;
  box-shadow: 0 12px 30px -8px rgba(37,99,235,0.5);
  transform: translateY(-1px);
}
.wfa-formbox-form .wfabuttonshow { display: none; }
.wfa-formbox-form .wfabuttonshow[disabled] { opacity: 0.6; cursor: not-allowed; transform: none; box-shadow: none; }

.wfa-field-label {
  display: block;
  font-size: 0.78rem;
  font-weight: 600;
  letter-spacing: 0.03em;
  text-transform: uppercase;
  color: var(--wfa-muted-dark);
  margin-bottom: 7px;
}
.wfa-field {
  width: 100%;
  padding: 13px 16px;
  border-radius: var(--wfa-radius-sm);
  background: rgba(255,255,255,0.04);
  border: 1px solid var(--wfa-glass-border);
  color: var(--wfa-white);
  font-size: 0.92rem;
  margin-bottom: 18px;
  transition: border-color 0.2s ease, background 0.2s ease;
}
.wfa-field::placeholder { color: rgba(255,255,255,0.32); }
.wfa-field:focus {
  outline: none;
  border-color: var(--wfa-blue-300);
  background: rgba(255,255,255,0.07);
}
.wfa-field-row { display: flex; gap: 14px; }
.wfa-field-row .wfa-field-group { flex: 1 1 0; }
textarea.wfa-field { resize: vertical; min-height: 92px; }

/* ---------- Logo strip ---------- */
.wfa-logo-strip {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: center;
  gap: 34px;
}
.wfa-logo-chip {
  font-weight: 700;
  font-size: 0.95rem;
  letter-spacing: 0.02em;
  padding: 12px 22px;
  border-radius: 12px;
  color: var(--wfa-ink-soft);
  background: rgba(10,15,30,0.035);
  border: 1px solid var(--wfa-glass-border-light);
}

/* ---------- Process (4-step) ---------- */
.wfa-process-track { position: relative; margin-top: 10px; }
.wfa-process-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 0; position: relative; }
.wfa-process-connector {
  position: absolute;
  top: 40px;
  left: 12.5%;
  right: 12.5%;
  height: 2px;
}
.wfa-process-step { position: relative; padding: 0 18px; text-align: left; }
.wfa-process-num {
  width: 80px; height: 80px;
  border-radius: 22px;
  display: flex; align-items: center; justify-content: center;
  background: var(--wfa-glass-bg-strong);
  border: 1px solid rgba(125,211,252,0.3);
  margin-bottom: 22px;
  position: relative;
  z-index: 2;
}
.wfa-process-num svg { width: 30px; height: 30px; stroke: url(#wfaIconGrad); fill: none; }
.wfa-process-index {
  position: absolute;
  top: -8px; right: -8px;
  width: 26px; height: 26px;
  border-radius: 50%;
  background: linear-gradient(135deg, #7dd3fc, #1d4ed8);
  color: #04101f;
  font-size: 0.72rem;
  font-weight: 800;
  display: flex; align-items: center; justify-content: center;
}

/* ---------- Bento / card grids ---------- */
.wfa-card {
  border-radius: var(--wfa-radius-lg);
  padding: 30px;
  height: 100%;
}
.wfa-card-tags { display: flex; flex-wrap: wrap; gap: 8px; margin-top: 16px; }
.wfa-tag {
  font-size: 0.76rem;
  font-weight: 600;
  padding: 6px 12px;
  border-radius: 999px;
}
.wfa-section--dark .wfa-tag { background: rgba(125,211,252,0.1); color: var(--wfa-blue-300); border: 1px solid rgba(125,211,252,0.18); }
.wfa-section--light .wfa-tag { background: rgba(29,78,216,0.07); color: var(--wfa-blue-700); border: 1px solid rgba(29,78,216,0.14); }

/* ---------- Department grid ---------- */
.wfa-dept-grid { display: flex; flex-wrap: wrap; gap: 14px; }
.wfa-dept-chip {
  display: flex; align-items: center; gap: 10px;
  padding: 14px 20px;
  border-radius: var(--wfa-radius-md);
  font-weight: 700;
  font-size: 0.95rem;
}
.wfa-dept-chip svg { width: 18px; height: 18px; stroke: url(#wfaIconGrad); fill: none; }

/* ---------- Enterprise list ---------- */
.wfa-check-grid { display: grid; grid-template-columns: repeat(2, 1fr); gap: 16px; margin-top: 12px; }
.wfa-check-item {
  display: flex; align-items: flex-start; gap: 12px;
  padding: 16px 18px;
  border-radius: var(--wfa-radius-md);
}
.wfa-check-item svg { width: 20px; height: 20px; stroke: url(#wfaIconGrad); fill: none; flex-shrink: 0; margin-top: 2px; }
.wfa-check-item span { font-weight: 600; font-size: 0.94rem; }

/* ---------- Tabs (platform modules / tech stack) ---------- */
.wfa-tabs { display: flex; flex-wrap: wrap; gap: 10px; margin-bottom: 30px; }
.wfa-tab-btn {
  padding: 11px 20px;
  border-radius: 999px;
  font-weight: 600;
  font-size: 0.88rem;
  cursor: pointer;
  transition: all 0.25s ease;
  border: 1px solid var(--wfa-glass-border-light);
  background: rgba(10,15,30,0.03);
  color: var(--wfa-ink-soft);
}
.wfa-tab-btn.is-active {
  color: #ffffff;
  background: linear-gradient(92deg, #3b82f6, #1d4ed8);
  border-color: transparent;
}
.wfa-tab-panel { display: none; }
.wfa-tab-panel.is-active { display: block; animation: wfaFadeIn 0.4s ease; }
@keyframes wfaFadeIn { from { opacity: 0; transform: translateY(8px); } to { opacity: 1; transform: translateY(0); } }

/* Tech stack tabs: force a single scrollable line, draggable by hand/mouse */
.wfa-tabs--scroll {
  flex-wrap: nowrap;
  overflow-x: auto;
  overscroll-behavior-x: contain;
  -webkit-overflow-scrolling: touch;
  cursor: grab;
  padding-bottom: 14px;
  margin-bottom: 24px;
  scrollbar-width: thin;
  scrollbar-color: var(--wfa-blue-500) rgba(29,78,216,0.08);
}
.wfa-tabs--scroll.is-dragging { cursor: grabbing; scroll-behavior: auto; }
.wfa-tabs--scroll .wfa-tab-btn { flex: 0 0 auto; white-space: nowrap; }

/* Chrome/Edge/Safari: override the default gray system scrollbar with a
   slim blue bar and drop the classic arrow buttons. !important guards
   against any higher-priority global scrollbar rule elsewhere on the site. */
.wfa-tabs--scroll::-webkit-scrollbar {
  height: 8px !important;
  width: 8px !important;
}
.wfa-tabs--scroll::-webkit-scrollbar-track {
  background: rgba(29,78,216,0.08) !important;
  border-radius: 999px !important;
}
.wfa-tabs--scroll::-webkit-scrollbar-thumb {
  background: linear-gradient(90deg, var(--wfa-blue-500), var(--wfa-blue-700)) !important;
  border-radius: 999px !important;
  border: none !important;
}
.wfa-tabs--scroll::-webkit-scrollbar-thumb:hover {
  background: var(--wfa-blue-700) !important;
}
.wfa-tabs--scroll::-webkit-scrollbar-button {
  display: none !important;
  width: 0 !important;
  height: 0 !important;
}
.wfa-tabs--scroll::-webkit-scrollbar-corner { background: transparent !important; }


/* Mock dashboard */
.wfa-mock {
  border-radius: var(--wfa-radius-lg);
  padding: 20px;
  background: linear-gradient(160deg, #0b1120, #060a14);
  border: 1px solid var(--wfa-glass-border-light);
}
.wfa-mock-bar { display: flex; gap: 6px; margin-bottom: 16px; }
.wfa-mock-bar span { width: 10px; height: 10px; border-radius: 50%; background: rgba(255,255,255,0.15); }
.wfa-mock-grid { display: grid; grid-template-columns: repeat(3,1fr); gap: 10px; }
.wfa-mock-card { background: rgba(255,255,255,0.04); border: 1px solid rgba(255,255,255,0.06); border-radius: 10px; padding: 14px; }
.wfa-mock-card b { display: block; color: #fff; font-size: 1.2rem; margin-bottom: 4px; }
.wfa-mock-card em { font-style: normal; font-size: 0.72rem; color: var(--wfa-muted-dark); }
.wfa-mock-bars { display: flex; align-items: flex-end; gap: 6px; height: 70px; margin-top: 14px; }
.wfa-mock-bars i { flex: 1; border-radius: 4px 4px 0 0; background: linear-gradient(180deg, #7dd3fc, #1d4ed8); opacity: 0.85; }

/* ---------- Vertical tabs (Business Workflow Automation Services) ---------- */
.wfa-vtabs {
  display: grid;
  grid-template-columns: 300px 1fr;
  gap: 28px;
  align-items: start;
}
.wfa-vtabs-nav {
  display: flex;
  flex-direction: column;
  gap: 8px;
  position: sticky;
  top: 90px;
  max-height: 78vh;
  overflow-y: auto;
  overscroll-behavior-y: contain;
  padding-right: 6px;
  scrollbar-width: thin;
  scrollbar-color: rgba(29,78,216,0.35) transparent;
}
.wfa-vtabs-nav::-webkit-scrollbar { width: 6px; }
.wfa-vtabs-nav::-webkit-scrollbar-thumb { background: rgba(29,78,216,0.3); border-radius: 999px; }
.wfa-vtabs-nav::-webkit-scrollbar-track { background: transparent; }
.wfa-vtabs-btn {
  display: flex;
  align-items: center;
  gap: 14px;
  width: 100%;
  text-align: left;
  padding: 14px 16px;
  border-radius: var(--wfa-radius-md);
  border: 1px solid var(--wfa-glass-border-light);
  background: rgba(10,15,30,0.02);
  color: var(--wfa-ink-soft);
  font-weight: 700;
  font-size: 0.92rem;
  transition: all 0.25s ease;
}
.wfa-vtabs-icon { width: 34px; height: 34px; border-radius: 10px; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: rgba(29,78,216,0.08); }
.wfa-vtabs-icon svg { width: 18px; height: 18px; stroke: url(#wfaIconGrad); fill: none; }
.wfa-vtabs-btn.is-active {
  color: #fff;
  background: linear-gradient(92deg, #3b82f6, #1d4ed8);
  border-color: transparent;
  box-shadow: 0 14px 30px -12px rgba(29,78,216,0.5);
}
.wfa-vtabs-btn.is-active .wfa-vtabs-icon { background: rgba(255,255,255,0.18); }
.wfa-vtabs-content { min-width: 0; }
.wfa-vtabs-panel { display: none; }
.wfa-vtabs-panel.is-active { display: block; }
.wfa-vtabs-panel .wfa-card { padding: 36px; }

/* ---------- Industries marquee ---------- */
.wfa-marquee { overflow: hidden; position: relative; -webkit-mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); mask-image: linear-gradient(90deg, transparent, #000 8%, #000 92%, transparent); }
.wfa-marquee-track { display: flex; gap: 16px; width: max-content; animation: wfaMarquee 34s linear infinite; }
.wfa-marquee:hover .wfa-marquee-track { animation-play-state: paused; }
.wfa-industry-chip {
  display: flex; align-items: center; gap: 10px;
  padding: 16px 24px;
  border-radius: var(--wfa-radius-md);
  font-weight: 700;
  white-space: nowrap;
}
.wfa-industry-chip svg { width: 18px; height: 18px; stroke: url(#wfaIconGrad); fill: none; }
@keyframes wfaMarquee { from { transform: translateX(0); } to { transform: translateX(-50%); } }

/* ---------- Feature hover tiles (Features of Our Workflow Automation Platform) ---------- */
.wfa-feat-grid {
  display: grid;
  grid-template-columns: repeat(6, 1fr);
  gap: 14px;
}
.wfa-feat-tile {
  position: relative;
  border-radius: var(--wfa-radius-md);
  padding: 20px 16px;
  text-align: center;
  cursor: default;
  overflow: visible;
}
.wfa-feat-tile-face { display: flex; flex-direction: column; align-items: center; }
.wfa-feat-tile-face .wfa-icon-wrap { margin-bottom: 12px; }
.wfa-feat-tile-face .wfa-h3 { font-size: 0.86rem; margin-bottom: 0; line-height: 1.3; }
.wfa-feat-popup {
  position: absolute;
  left: 50%;
  bottom: calc(100% + 12px);
  transform: translateX(-50%) translateY(8px);
  width: 260px;
  background: linear-gradient(160deg, #101a30, #060a14);
  border: 1px solid rgba(125,211,252,0.3);
  border-radius: var(--wfa-radius-md);
  padding: 22px;
  text-align: left;
  opacity: 0;
  pointer-events: none;
  transition: opacity 0.2s ease, transform 0.2s ease;
  box-shadow: 0 24px 50px -14px rgba(0,0,0,0.55);
  z-index: 20;
}
.wfa-feat-popup .wfa-icon-wrap { margin-bottom: 10px; }
.wfa-feat-popup .wfa-h3 { color: #fff; font-size: 1rem; }
.wfa-feat-popup::after {
  content: "";
  position: absolute;
  top: 100%;
  left: 50%;
  transform: translateX(-50%);
  border: 8px solid transparent;
  border-top-color: #0b1120;
}
.wfa-feat-tile:hover .wfa-feat-popup,
.wfa-feat-tile:focus .wfa-feat-popup,
.wfa-feat-tile:focus-within .wfa-feat-popup {
  opacity: 1;
  pointer-events: auto;
  transform: translateX(-50%) translateY(0);
}
.wfa-feat-tile:hover .wfa-feat-tile-face,
.wfa-feat-tile:focus-within .wfa-feat-tile-face {
  opacity: 0.35;
}

/* ---------- Integrations ---------- */
.wfa-integration-grid { display: flex; flex-wrap: wrap; gap: 12px; }
.wfa-integration-chip {
  display: inline-flex;
  align-items: center;
  gap: 10px;
  padding: 12px 18px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.85rem;
}
.wfa-integration-logo { width: 22px; height: 22px; object-fit: contain; flex-shrink: 0; }

/* ---------- Comparison ---------- */
.wfa-compare-wrap { display: grid; grid-template-columns: 1fr 1fr; gap: 20px; position: relative; }
.wfa-compare-col { border-radius: var(--wfa-radius-lg); padding: 30px; }
.wfa-compare-col--before { border: 1px solid rgba(239,68,68,0.25); background: rgba(239,68,68,0.05); }
.wfa-compare-col--after { border: 1px solid rgba(34,211,238,0.3); background: rgba(34,211,238,0.06); }
.wfa-compare-title { font-weight: 800; font-size: 0.85rem; text-transform: uppercase; letter-spacing: 0.06em; margin-bottom: 18px; display: flex; align-items: center; gap: 8px;}
.wfa-compare-col--before .wfa-compare-title { color: #fca5a5; }
.wfa-compare-col--after .wfa-compare-title { color: var(--wfa-cyan); }
.wfa-compare-item { display: flex; align-items: center; gap: 12px; padding: 12px 0; font-weight: 600; font-size: 0.95rem; border-bottom: 1px solid rgba(255,255,255,0.06); }
.wfa-compare-item:last-child { border-bottom: none; }
.wfa-compare-item svg { width: 18px; height: 18px; flex-shrink: 0; }
.wfa-compare-col--before svg { stroke: #f87171; fill: none; }
.wfa-compare-col--after svg { stroke: var(--wfa-cyan); fill: none; }

/* ---------- ROI calculator ---------- */
.wfa-roi-panel { border-radius: var(--wfa-radius-lg); padding: 36px; }
.wfa-roi-slider-group { margin-bottom: 22px; }
.wfa-roi-slider-group label { display: flex; justify-content: space-between; font-size: 0.85rem; font-weight: 600; color: var(--wfa-muted-dark); margin-bottom: 10px; }
.wfa-roi-slider-group output { color: var(--wfa-white); font-weight: 800; }
.wfa-range { -webkit-appearance: none; width: 100%; height: 4px; border-radius: 999px; background: rgba(255,255,255,0.12); }
.wfa-range::-webkit-slider-thumb { -webkit-appearance: none; width: 18px; height: 18px; border-radius: 50%; background: linear-gradient(135deg, #7dd3fc, #1d4ed8); cursor: pointer; box-shadow: 0 0 0 5px rgba(59,130,246,0.18); }
.wfa-range::-moz-range-thumb { width: 18px; height: 18px; border: none; border-radius: 50%; background: linear-gradient(135deg, #7dd3fc, #1d4ed8); cursor: pointer; }
.wfa-roi-result { border-radius: var(--wfa-radius-md); padding: 28px; text-align: center; background: linear-gradient(150deg, rgba(59,130,246,0.16), rgba(34,211,238,0.06)); border: 1px solid rgba(125,211,252,0.28); }
.wfa-roi-result .wfa-roi-figure { font-size: clamp(2.1rem, 4vw, 2.9rem); font-weight: 800; color: #6ea8ff; }
.wfa-roi-gate { margin-top: 18px; }
.wfa-roi-gate.is-hidden { display: none; }
.wfa-roi-locked { filter: blur(7px); user-select: none; }

/* ---------- Why choose us ---------- */
.wfa-stat-grid { display: grid; grid-template-columns: repeat(4, 1fr); gap: 16px; margin-top: 30px; }
.wfa-stat-item { border-radius: var(--wfa-radius-md); padding: 22px; text-align: center; }
.wfa-stat-item svg { width: 24px; height: 24px; stroke: url(#wfaIconGrad); fill: none; margin-bottom: 10px; }
.wfa-stat-item span { display: block; font-weight: 700; font-size: 0.92rem; }

/* ---------- Testimonials ---------- */
.wfa-testi-track { display: flex; gap: 20px; overflow-x: auto; scroll-snap-type: x mandatory; padding-bottom: 8px; -ms-overflow-style: none; scrollbar-width: none; }
.wfa-testi-track::-webkit-scrollbar { display: none; }
.wfa-testi-card { flex: 0 0 88%; max-width: 420px; scroll-snap-align: start; border-radius: var(--wfa-radius-lg); padding: 30px; }
.wfa-testi-stars { display: flex; gap: 3px; margin-bottom: 16px; }
.wfa-testi-stars svg { width: 16px; height: 16px; fill: var(--wfa-cyan); stroke: none; }
.wfa-testi-quote { font-size: 0.98rem; margin-bottom: 22px; }
.wfa-section--dark .wfa-testi-quote { color: #dbe4f5; }
.wfa-testi-person { display: flex; align-items: center; gap: 12px; }
.wfa-testi-avatar { width: 46px; height: 46px; border-radius: 50%; display: flex; align-items: center; justify-content: center; font-weight: 800; font-size: 0.85rem; background: linear-gradient(135deg, #7dd3fc, #1d4ed8); color: #04101f; }
.wfa-testi-name { font-weight: 700; font-size: 0.92rem; }
.wfa-testi-tag { font-size: 0.76rem; color: var(--wfa-muted-dark); }
.wfa-testi-controls { display: flex; gap: 10px; margin-top: 24px; }
.wfa-testi-dot-btn { width: 40px; height: 40px; border-radius: 50%; display: flex; align-items: center; justify-content: center; }
.wfa-testi-dot-btn svg { width: 16px; height: 16px; stroke: #fff; fill: none; color: #fff;}

/* ---------- Tech stack ---------- */
.wfa-tech-category { margin-bottom: 30px; }
.wfa-tech-category:last-child { margin-bottom: 0; }
.wfa-tech-cat-label { font-size: 0.78rem; font-weight: 700; text-transform: uppercase; letter-spacing: 0.08em; color: var(--wfa-blue-700); margin-bottom: 14px; }
.wfa-tech-grid { display: flex; flex-wrap: wrap; gap: 10px; }
.wfa-tech-chip {
  padding: 11px 18px;
  border-radius: 12px;
  font-weight: 700;
  font-size: 0.86rem;
  display: flex; align-items: center; gap: 9px;
}
.wfa-tech-dot { width: 8px; height: 8px; border-radius: 2px; background: linear-gradient(135deg, #7dd3fc, #1d4ed8); flex-shrink: 0; }
.wfa-tech-logo { width: 20px; height: 20px; object-fit: contain; flex-shrink: 0; }
.wfa-tech-logo--fallback,
.wfa-integration-logo--fallback {
  display: inline-flex;
  align-items: center;
  justify-content: center;
}
.wfa-tech-logo--fallback svg,
.wfa-integration-logo--fallback svg {
  width: 18px;
  height: 18px;
  stroke: url(#wfaIconGrad);
  fill: none;
}

/* ---------- FAQ accordion ---------- */
.wfa-accordion-item {
  border-radius: var(--wfa-radius-md);
  margin-bottom: 12px;
  overflow: hidden;
}
.wfa-accordion-btn {
  width: 100%;
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  padding: 20px 24px;
  text-align: left;
  font-weight: 700;
  font-size: 0.98rem;
  cursor: pointer;
  color: var(--wfa-ink);
}
.wfa-accordion-plus { width: 26px; height: 26px; border-radius: 50%; flex-shrink: 0; display: flex; align-items: center; justify-content: center; background: rgba(29,78,216,0.08); position: relative; transition: transform 0.3s ease; }
.wfa-accordion-plus::before, .wfa-accordion-plus::after { content: ""; position: absolute; background: var(--wfa-blue-700); border-radius: 2px; }
.wfa-accordion-plus::before { width: 11px; height: 2px; }
.wfa-accordion-plus::after { width: 2px; height: 11px; transition: transform 0.3s ease; }
.wfa-accordion-item.is-open .wfa-accordion-plus::after { transform: scaleY(0); }
.wfa-accordion-item.is-open .wfa-accordion-plus { background: var(--wfa-blue-700); }
.wfa-accordion-item.is-open .wfa-accordion-plus::before,
.wfa-accordion-item.is-open .wfa-accordion-plus::after { background: #fff; }
.wfa-accordion-panel { max-height: 0; overflow: hidden; transition: max-height 0.35s ease; }
.wfa-accordion-panel-inner { padding: 0 24px 22px; font-size: 0.94rem; color: var(--wfa-muted-light); }

/* ---------- Final CTA ---------- */
.wfa-final-cta {
  border-radius: 28px;
  padding: 64px 40px;
  text-align: center;
  position: relative;
  overflow: hidden;
  background: radial-gradient(120% 160% at 50% -10%, #163a82 0%, #0a1330 55%, #04070f 100%);
}
.wfa-final-cta::after {
  content: "";
  position: absolute; inset: 0;
  background-image: radial-gradient(circle at 80% 120%, rgba(34,211,238,0.22), transparent 55%);
}
.wfa-final-cta > * { position: relative; z-index: 2; }

/* ---------- Counter ---------- */
.wfa-counter { font-variant-numeric: tabular-nums; }

/* ---------- Reveal-on-scroll ---------- */
.wfa-reveal { opacity: 0; transform: translateY(26px); transition: opacity 0.7s ease, transform 0.7s ease; }
.wfa-reveal.is-visible { opacity: 1; transform: translateY(0); }

@media (prefers-reduced-motion: reduce) {
  .wfa-page .wfa-reveal { opacity: 1; transform: none; transition: none; }
  .wfa-page .wfa-flowline::after,
  .wfa-page .wfa-marquee-track { animation: none; }
}

/* ---------- Responsive ---------- */
@media (max-width: 991.98px) {
  .wfa-section { padding: 30px 0; }
  .wfa-process-grid { grid-template-columns: repeat(2, 1fr); row-gap: 40px; }
  .wfa-process-connector { display: none; }
  .wfa-check-grid { grid-template-columns: 1fr; }
  .wfa-compare-wrap { grid-template-columns: 1fr; }
  .wfa-stat-grid { grid-template-columns: repeat(2, 1fr); }
  .wfa-feat-grid { grid-template-columns: repeat(4, 1fr); }
  .wfa-vtabs { grid-template-columns: 240px 1fr; }
}

@media (max-width: 767.98px) {
  .wfa-section { padding: 30px 0; }
  .wfa-hero { padding-top: 40px; }
  .wfa-process-grid { grid-template-columns: 1fr; }
  .wfa-field-row { flex-direction: column; gap: 0; }
  .wfa-hero-node { width: 60px; height: 60px; border-radius: 16px; }
  .wfa-hero-node svg { width: 24px; height: 24px; }
  .wfa-hero-node-labels span { width: 60px; font-size: 0.62rem; }
  .wfa-lead-panel { padding: 24px; }
  .wfa-roi-panel { padding: 24px; }
  .wfa-final-cta { padding: 46px 22px; border-radius: 20px; }

  /* Vertical tabs collapse to a horizontal, hand-scrollable strip on mobile */
  .wfa-vtabs { grid-template-columns: 1fr; gap: 16px; }
  .wfa-vtabs-nav {
    position: static;
    flex-direction: row;
    overflow-x: auto;
    -webkit-overflow-scrolling: touch;
    overscroll-behavior-x: contain;
    padding-bottom: 8px;
    cursor: grab;
  }
  .wfa-vtabs-nav.is-dragging { cursor: grabbing; scroll-behavior: auto; }
  .wfa-vtabs-btn { flex: 0 0 auto; white-space: nowrap; width: auto; }
  .wfa-vtabs-panel .wfa-card { padding: 24px; }

  /* Feature tiles: revert to the original full-card layout on mobile —
     no hover popup, description always visible, same as before. */
  .wfa-feat-grid { grid-template-columns: repeat(2, 1fr); gap: 16px; }
  .wfa-feat-tile { text-align: left; padding: 24px; }
  .wfa-feat-tile-face { align-items: flex-start; opacity: 1 !important; }
  .wfa-feat-tile-face .wfa-h3 { font-size: 1.02rem; text-align: left; }
  .wfa-feat-tile-face::after {
    content: attr(data-desc);
    display: block;
    margin-top: 6px;
    font-size: 0.9rem;
    color: var(--wfa-muted-dark);
  }
  .wfa-feat-popup { display: none; }
}

@media (max-width: 575.98px) {
  .wfa-feat-grid { grid-template-columns: 1fr; }
}

/* keyboard focus visibility */
.wfa-page a:focus-visible,
.wfa-page button:focus-visible,
.wfa-page input:focus-visible,
.wfa-page textarea:focus-visible,
.wfa-page select:focus-visible {
  outline: 2px solid var(--wfa-cyan);
  outline-offset: 3px;
}