/* ================================================================== *
 * Flowace — Integration Hub template
 * Design tokens & reused-section styles are ported verbatim from
 * template-singleworkforce.css so the Hero, Client Logos, Signature
 * Features, Deployment (steps), Monitoring/Trust, FAQ and Final CTA
 * render identically. Integration-only sections use the .ih-* namespace.
 * Breakpoints: 992 / 768 / 480.
 * ================================================================== */

.fw-page {
  --orange: #ff5c28;
  --orange-2: #f15a2c;
  --orange-grad: linear-gradient(101.82deg, #ff5722 2.73%, #ff8f6b 96.37%);
  --orange-soft: #fff0eb;
  --orange-line: #ff5c2838;
  --green: #039855;
  --green-soft: #d1fadf;
  --ink: #1d2939;
  --ink-2: #344054;
  --muted: #475467;
  --muted-2: #667085;
  --line: #eaecf0;
  --line-2: #e5e7eb;
  --bg: #ffffff;
  --bg-alt: #f5f5f7;
  --dark: #0f1117;
  --dark-2: #1a1d24;
  --radius: 16px;
  --radius-sm: 10px;

  font-family:
    "Inter",
    system-ui,
    -apple-system,
    sans-serif;
  color: var(--ink);
  background: var(--bg);
  overflow-x: clip;
}
.fw-page * {
  box-sizing: border-box;
}

.fw-container {
  max-width: 1200px;
  margin: 0 auto;
  padding: 0 24px;
}
.fw-center {
  text-align: center;
}
.fw-center .fw-lede {
  margin-left: auto;
  margin-right: auto;
}

/* ---------------- Shared typography ---------------- */
.fw-eyebrow {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 100%;
  letter-spacing: 1.8px;
  text-transform: uppercase;
  color: #e8550a;
  margin: 0 0 16px;
}
.fw-h2 {
  max-width: 760px;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 38px;
  line-height: 42px;
  letter-spacing: -1.4px;
  color: #0f1c2e;
  margin: 0 0 16px;
}
.fw-lede {
  font-family: "Inter", sans-serif;
  font-weight: 400;
  font-size: 18px;
  line-height: 28px;
  color: #475467;
  margin: 16px 0 0 0;
  max-width: 620px;
}
.fw-hl {
  color: var(--orange);
}
.fw-sec-head {
  background: transparent;
}
.fw-sec-head.fw-center .fw-lede {
  max-width: 640px;
}
.fw-outcome-title {
  margin: 0 auto;
  max-width: 640px;
  color: #111621;
}

/* ---------------- Shared buttons ---------------- */
.fw-btn-row {
  display: flex;
  align-items: stretch;
  gap: 12px;
  flex-wrap: wrap;
}
.fw-btn-row--center {
  justify-content: center;
}
.hero-cta-primary {
  font-family: "Inter", sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: var(--orange);
  color: #fff;
  border: none;
  border-radius: 12px;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition: box-shadow 0.25s ease;
}
.hero-cta-primary:hover {
  color: #fff;
  font-size: 15px;
  line-height: 1;
  box-shadow: 0 4px 20px 0 #ff5c2852;
}
.hero-cta-primary svg,
.hero-cta-secondary svg {
  width: 16px;
  height: 16px;
  flex-shrink: 0;
  transition: transform 0.3s ease;
}
.hero-cta-primary:hover svg {
  transform: translateX(2px);
}
.hero-cta-secondary {
  font-family: "Inter", sans-serif;
  display: inline-flex;
  align-items: center;
  gap: 8px;
  background: #fff;
  color: var(--ink);
  border: 1.5px solid #d0d5dd;
  border-radius: 12px;
  padding: 14px 28px;
  font-weight: 600;
  font-size: 15px;
  line-height: 1;
  text-decoration: none;
  cursor: pointer;
  white-space: nowrap;
  transition:
    color 0.2s ease,
    border-color 0.2s ease;
}
.hero-cta-secondary:hover {
  font-size: 15px;
  line-height: 1;
  color: var(--orange);
}

/* ---------------- Trust points (checkmarks) ---------------- */
.fw-trust-points {
  display: flex;
  flex-wrap: wrap;
  gap: 8px 20px;
  list-style: none;
  margin: 12px 0 0;
  padding: 0;
}
.fw-trust-points li {
  display: inline-flex;
  align-items: center;
  gap: 5px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 19.2px;
  font-weight: 400;
  color: #6b7280;
}
.fw-trust-points li span {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 19.2px;
  font-weight: 400;
  color: #6b7280;
}
.fw-trust-check {
  flex-shrink: 0;
  width: 16px;
  height: 16px;
}

/* ================================================================== *
 * HERO
 * ================================================================== */
.fw-hero {
  position: relative;
  padding: 60px 0 70px;
}
.fw-hero::before {
  content: "";
  position: absolute;
  inset: 0;
  z-index: 0;
  pointer-events: none;
  background: radial-gradient(
    70% 70% at 22% 6%,
    rgba(255, 100, 42, 0.14) 0%,
    rgba(255, 130, 60, 0.04) 45%,
    rgba(255, 160, 80, 0) 75%
  );
}
.fw-hero .fw-container {
  position: relative;
  z-index: 1;
}
.fw-hero-grid {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: 48px;
  align-items: center;
}
.fw-hero-grid.is-single {
  grid-template-columns: 1fr;
}
.fw-eyebrow-pill {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  padding: 7px 16px;
  border-radius: 100px;
  border: 1px solid var(--orange-line);
  color: var(--orange);
  background: var(--orange-soft);
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 12px;
  line-height: 19px;
  letter-spacing: 0.3px;
  margin-bottom: 12px;
}
.fw-eyebrow-pill .dot {
  width: 8px;
  height: 8px;
  border-radius: 50%;
  background: var(--orange);
}
.fw-hero h1 {
  font-family: "DM Sans", sans-serif;
  font-weight: 700;
  font-size: 45px;
  line-height: 54px;
  letter-spacing: -1.5px;
  color: #0f1c2e;
  margin: 0;
  max-width: 17ch;
}
.fw-hero-desc {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 27px;
  color: #4b5563;
  font-weight: 400;
  margin: 12px 0;
  max-width: 46ch;
}
.fw-hero-badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 12px;
  margin: 12px 0;
}
.fw-hero-badge {
  height: 80px;
  width: auto;
  object-fit: contain;
}
.fw-hero-right {
  display: flex;
  justify-content: flex-end;
}
.fw-hero-img {
  max-width: 100%;
  height: auto;
  border-radius: var(--radius);
}

/* ---------------- CLIENT LOGOS (marquee) ---------------- */
.cmp-trusted {
  padding: 40px 0;
  position: relative;
  background: transparent;
}
.cmp-trusted-title {
  font-family: "Inter", sans-serif;
  font-weight: 600;
  font-size: 14px;
  line-height: 17.6px;
  letter-spacing: 1.8px;
  text-align: center;
  text-transform: uppercase;
  color: #344054;
  margin-bottom: 25px;
}
.cmp-trusted-logos {
  display: flex;
  overflow: hidden;
  width: 100%;
  mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
  -webkit-mask-image: linear-gradient(
    to right,
    transparent 0%,
    black 10%,
    black 90%,
    transparent 100%
  );
}
.cmp-trusted-track {
  display: flex;
  align-items: center;
  gap: 64px;
  animation: cmp-marquee 30s linear infinite;
  will-change: transform;
  flex-shrink: 0;
  padding-right: 64px;
}
.cmp-trusted-logos img {
  max-height: 42px;
  height: auto;
  object-fit: contain;
  filter: grayscale(0);
  opacity: 0.85;
  transition: opacity 0.3s ease;
  flex-shrink: 0;
}
.cmp-trusted-logos img:hover {
  opacity: 1;
}
.cmp-trusted-logos:hover .cmp-trusted-track {
  animation-play-state: paused;
}
@keyframes cmp-marquee {
  0% {
    transform: translateX(0);
  }
  100% {
    transform: translateX(-100%);
  }
}

/* ---------------- Section backgrounds / spacing ---------------- */
.fw-section--alt {
  background: var(--bg-alt);
}
.ih-int,
.fw-trust {
  padding: 60px 0;
}
.fw-tst-section {
  background: var(--bg-alt);
  padding: 60px 0;
}

/* ================================================================== *
 * POPULAR INTEGRATIONS  (new — matches screenshot)
 * ================================================================== */
.fw-int-eyebrow {
  font-family: "Inter", sans-serif;
  font-weight: 700;
  font-size: 12px;
  line-height: 19px;
  text-transform: uppercase;
  color: #f15a2c;
  margin: 0 0 16px;
}
.ih-int-controls {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  flex-wrap: wrap;
  margin: 24px 0 24px;
}
.ih-int-filters {
  display: flex;
  gap: 7px;
  flex-wrap: wrap;
}
.ih-filter {
  font-family: "Inter", sans-serif;
  border: 1px solid #e5e7eb;
  background: #fff;
  color: #475467;
  border-radius: 999px;
  padding: 9px 19px;
  font-weight: 500;
  font-size: 14px;
  line-height: 1;
  cursor: pointer;
  transition:
    background 0.15s ease,
    color 0.15s ease,
    border-color 0.15s ease;
}
.ih-filter:hover {
  border-color: #d0d5dd;
  color: var(--ink);
}
.ih-filter.is-active {
  background: #0f1117;
  color: #fff;
  border-color: #0f1117;
}

.ih-int-search {
  position: relative;
  min-width: 300px;
  flex: 0 1 340px;
}
.ih-search-icon {
  position: absolute;
  left: 16px;
  top: 50%;
  transform: translateY(-50%);
  pointer-events: none;
}
.ih-int-search input {
  font-family: "Inter", sans-serif;
  width: 100%;
  border: 1px solid var(--line);
  border-radius: 10px;
  padding: 12px 16px 12px 44px;
  font-size: 14px;
  line-height: 1.2;
  color: var(--ink);
  background: #fff;
  transition:
    border-color 0.2s ease,
    box-shadow 0.2s ease;
}
.ih-int-search input::placeholder {
  color: #98a2b3;
}
.ih-int-search input:focus {
  outline: none;
  border-color: var(--orange);
  box-shadow: 0 0 0 3px #ff5c2822;
}

.ih-int-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 20px;
}
.ih-int-card {
  display: flex;
  flex-direction: column;
  gap: 16px;
  background: #fff;
  border: 1px solid #e5e7eb;
  border-radius: 12px;
  padding: 25px;
  text-align: left;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease,
    border-color 0.25s ease;
}
.ih-int-card:hover {
  box-shadow: 0 12px 28px rgba(16, 24, 40, 0.08);
  transform: translateY(-2px);
  border-color: #e0e3ea;
}
.ih-int-card__icon {
  /* width: 44px;
  height: 44px;
  border-radius: 10px;
  background: var(--orange-grad);
  display: flex;
  align-items: center;
  justify-content: center; */
  overflow: hidden;
  flex-shrink: 0;
}
.ih-int-card__icon span {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 14px;
  color: #fff;
  letter-spacing: 0.3px;
}
.ih-int-card__icon img {
  width: auto;
  height: auto;
  max-width: 150px;
  object-fit: contain;
}
.ih-int-card__body {
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.ih-int-card__title {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 18px;
  font-weight: 700;
  color: var(--ink);
  margin: 0;
}
.ih-int-card__cat {
  font-weight: 500;
  font-size: 14px;
  line-height: 18px;
  color: var(--muted-2);
}
.ih-int-card__desc {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 21px;
  color: #344054;
  margin: 0;
}
.ih-int-empty {
  text-align: center;
  font-family: "Inter", sans-serif;
  color: var(--muted);
  margin: 28px 0 0;
}

/* ---- Clickable integration cards ---- */
.ih-int-card {
  position: relative;
}
.ih-int-card__link {
  position: absolute;
  inset: 0;
  z-index: 2;
  border-radius: inherit;
}
.ih-int-card.is-clickable {
  cursor: pointer;
}
.ih-int-card.is-clickable:hover .ih-int-card__arrow,
.ih-int-card.is-clickable:focus-within .ih-int-card__arrow {
  opacity: 1;
  transform: translate(0, 0);
}
/* slightly stronger lift for clickable cards; logo nudges up */
/* .ih-int-card.is-clickable:hover,
.ih-int-card.is-clickable:focus-within {
  border-color: #f4cbb7;
  box-shadow: 0 16px 34px rgba(16, 24, 40, 0.12);
} */
.ih-int-card.is-clickable:hover .ih-int-card__icon {
  transform: translateY(-2px);
  transition: transform 0.25s ease;
}

/* ================================================================== *
 * DON'T SEE YOUR SOFTWARE  (dark CTA band — mirrors pricing .fa-ts-box)
 * ================================================================== */
.ih-dsys {
  padding: 32px 0 64px;
}
.ih-dsys-box {
  background: #0f1117;
  border-radius: 12px;
  padding: 38px 76px;
  text-align: center;
  display: flex;
  flex-direction: column;
  align-items: center;
}
.ih-dsys-heading {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 32px;
  line-height: 39px;
  color: #fff;
  margin: 0 0 18px;
}
.ih-dsys-sub {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 14px;
  line-height: 20px;
  color: #f2f4f7;
  margin: 0 0 24px;
  max-width: 800px;
}
.ih-dsys-cta-wrap .hero-cta-primary {
  padding: 14px 32px;
  border-radius: 12px;
  font-size: 16px;
}
.ih-dsys-stat {
  font-family: "Inter", sans-serif;
  text-align: center;
  max-width: 820px;
  margin: 28px auto 0;
  color: var(--muted);
  font-size: 15px;
  line-height: 1.6;
}
.ih-dsys-stat-link {
  color: var(--orange);
  font-weight: 600;
  text-decoration: none;
  white-space: nowrap;
}
.ih-dsys-stat-link:hover {
  color: var(--orange-2);
  text-decoration: underline;
}
.ih-dsys-stat-link svg {
  width: 14px;
  height: 14px;
  vertical-align: -2px;
}

/* ================================================================== *
 * SIGNATURE FEATURES  (light, 3-up cards — matches screenshot)
 * ================================================================== */
.fw-features {
  padding: 60px 0;
}
.fw-feat-grid {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 24px;
  margin: 16px 0 0 0;
}
.fw-feat-card {
  position: relative;
  display: flex;
  flex-direction: column;
  background: #fff;
  border: 1px solid #f2f4f7;
  border-radius: 8px;
  padding: 28px 26px;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease,
    border-color 0.25s ease;
}
.fw-feat-card:hover {
  box-shadow: 0 14px 34px rgba(16, 24, 40, 0.08);
  transform: translateY(-2px);
  border-color: #e5e7eb;
}
.fw-feat-icon {
  margin-bottom: 12px;
  flex-shrink: 0;
}
.fw-feat-icon img {
  width: auto;
  height: auto;
  object-fit: contain;
}
.fw-feat-icon svg {
  width: auto;
  height: auto;
}
.fw-feat-title {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 100%;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 10px;
}
.fw-feat-desc {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 21px;
  color: #344054;
  margin: 0;
  flex: 1;
}

/* ================================================================== *
 * DEPLOYMENT  (dark theme, 4-col — reuses .fw-steps markup)
 * ================================================================== */
.ih-deploy {
  background: var(--dark);
  color: #fff;
  padding: 60px 0;
}
.ih-deploy .fw-h2 {
  color: #fff;
}
.ih-deploy .fw-lede {
  color: #f2f4f7;
  max-width: max-content !important;
}

.fw-steps {
  list-style: none;
  margin: 32px 0 0 0;
  padding: 0;
  display: grid;
  gap: 8px;
}
.ih-deploy-steps {
  grid-template-columns: repeat(4, 1fr);
}
.fw-step-card {
  display: flex;
  flex-direction: column;
  border-radius: 8px;
  padding: 28px 26px;
  transition:
    box-shadow 0.25s ease,
    transform 0.25s ease;
}
/* Dark card skin for deployment */
.ih-deploy .fw-step-card {
  background: #0f1117;
  border: 1px solid #1d2939;
  box-shadow: none;
}
.ih-deploy .fw-step-card:hover {
  background: #16181f;
  transform: translateY(-2px);
}
.fw-step-num {
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 52px;
  height: 52px;
  border-radius: 50%;
  background: #f15a2c;
  color: #fff;
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 16.8px;
  line-height: 26.88px;
  margin-bottom: 12px;
  transition:
    transform 0.3s ease,
    box-shadow 0.3s ease;
}
.ih-deploy .fw-step-card:hover .fw-step-num {
  transform: scale(1.1);
  box-shadow: 0 4px 16px 0 #e8550a4d;
}
.fw-step-title {
  font-family: "Inter", sans-serif;
  font-size: 18px;
  line-height: 100%;
  font-weight: 700;
  margin: 0 0 12px;
}
.ih-deploy .fw-step-title {
  color: #fff;
}
.fw-step-desc {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 21px;
  margin: 0;
  flex: 1;
}
.ih-deploy .fw-step-desc {
  color: #f9fafb;
}
.fw-step-badge {
  width: max-content;
  display: inline-flex;
  align-items: center;
  background: #2a1b12;
  color: #ffb59c;
  border-radius: 14px;
  padding: 6px 13px;
  font-family: "Inter", sans-serif;
  font-size: 12px;
  line-height: 100%;
  font-weight: 700;
}

/* ================================================================== *
 * MONITORING / TRUST  (ported verbatim from Single Workforce)
 * ================================================================== */
.fw-trust-grid {
  display: grid;
  grid-template-columns: 1fr 1fr;
  gap: 56px;
  align-items: center;
}
.fw-trust-cta {
  margin: 26px 0;
}
.fw-trust-compliance {
  padding-top: 24px;
  border-top: 1px solid var(--line);
}
.fw-trust-compliance-title {
  font-family: "Inter", sans-serif;
  font-size: 12px;
  font-weight: 700;
  letter-spacing: 1px;
  text-transform: uppercase;
  color: var(--ink-2);
  margin: 0 0 10px;
}
.fw-trust-compliance-text {
  font-family: "Inter", sans-serif;
  font-size: 13px;
  line-height: 1.55;
  color: var(--muted);
  margin: 0;
}
.fw-trust-badges {
  display: flex;
  align-items: center;
  flex-wrap: wrap;
  gap: 18px;
  margin: 0 0 14px;
}
.fw-trust-badge {
  height: 40px;
  width: auto;
  object-fit: contain;
}
.fw-trust-right {
  border: 1px solid #d3d3d3;
  background: #fcfcfd;
  padding: 36px;
  border-radius: 20px;
}
.fw-trust-cards {
  list-style: none;
  margin: 0 0 20px;
  padding: 0;
  display: grid;
  gap: 20px;
}
.fw-trust-card {
  display: flex;
  gap: 14px;
  align-items: flex-start;
}
.fw-trust-icon {
  flex-shrink: 0;
  display: inline-flex;
  align-items: center;
  justify-content: center;
  width: 38px;
  height: 38px;
  border-radius: 11px;
  border: 1px solid #e9ecf1;
  background: #ffffff;
  color: var(--orange);
}
.fw-trust-icon img {
  width: auto;
  height: auto;
  object-fit: contain;
}
.fw-trust-card-title {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 100%;
  font-weight: 700;
  color: var(--ink);
  margin: 0 0 2px;
}
.fw-trust-card-desc {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 20px;
  color: var(--muted);
  margin: 0;
}
.fw-employee-box {
  border: 1.5px solid #ff5c28;
  background: #fff;
  border-radius: 14px;
  padding: 16px 18px;
}
.fw-employee-title {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 700;
  line-height: 100%;
  letter-spacing: 0.8px;
  text-transform: uppercase;
  color: #e8550a;
  margin: 0 0 12px;
}
.fw-employee-stats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 10px;
}
.fw-employee-stat {
  background: var(--bg-alt);
  border-radius: 10px;
  padding: 9px 11px;
  display: flex;
  flex-direction: column;
  gap: 8px;
}
.fw-employee-val {
  font-family: "Inter", sans-serif;
  font-size: 16px;
  font-weight: 700;
  line-height: 100%;
  color: #344054;
}
.fw-employee-lbl {
  font-family: "Inter", sans-serif;
  font-size: 10px;
  font-weight: 600;
  line-height: 100%;
  letter-spacing: 0.4px;
  text-transform: uppercase;
  color: #667085;
}

/* ================================================================== *
 * FAQ  (ported verbatim from Single Workforce)
 * ================================================================== */
.fw-faq-section {
  padding: 60px 0;
}
.fw-faq-inner {
  max-width: 760px;
  margin: 0 auto;
  padding: 0 24px;
}
.fw-faq-header {
  background: transparent;
  margin-bottom: 36px;
}
.fw-faq-heading {
  font-family: "DM Sans", "Inter", sans-serif;
  font-weight: 700;
  font-size: 38px;
  line-height: 1.15;
  letter-spacing: -1.4px;
  color: var(--ink);
  margin: 0;
}
.fw-faq-list {
  display: flex;
  flex-direction: column;
}
.fw-faq-item {
  border-bottom: 1px solid #1e285014;
}
.fw-faq-item:last-child {
  border-bottom: 0;
}
.fw-faq-trigger {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 16px;
  width: 100%;
  padding: 22px 0;
  background: none;
  border: none;
  cursor: pointer;
  text-align: left;
  -webkit-appearance: none;
  appearance: none;
}
.fw-faq-trigger:focus-visible {
  outline: 2px solid var(--orange);
  outline-offset: 2px;
  border-radius: 4px;
}
.fw-faq-question {
  font-family: "Inter", sans-serif;
  font-weight: 500;
  font-size: 16px;
  line-height: 22px;
  color: var(--ink);
  flex: 1;
}
.fw-faq-icon {
  flex-shrink: 0;
  width: 24px;
  height: 24px;
  display: flex;
  align-items: center;
  justify-content: center;
}
.fw-faq-icon svg {
  width: 24px;
  height: 24px;
}
.fw-faq-minus {
  display: none;
}
.fw-faq-item.active .fw-faq-minus {
  display: block;
}
.fw-faq-item.active .fw-faq-plus {
  display: none;
}
.fw-faq-answer {
  max-height: 0;
  overflow: hidden;
  transition: max-height 0.35s cubic-bezier(0.25, 0.46, 0.45, 0.94);
}
.fw-faq-item.active .fw-faq-answer {
  max-height: 600px;
}
.fw-faq-answer-inner p span,
.fw-faq-answer-inner p {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 25px;
  color: var(--ink-2);
  padding: 0 0 20px;
}
.fw-faq-answer-inner p span a,
.fw-faq-answer-inner p a {
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 25px;
  color: var(--orange-2);
  text-decoration: underline;
}
.fw-faq-answer-inner p span a:hover,
.fw-faq-answer-inner p a:hover {
  font-size: 14px;
  line-height: 25px;
  color: var(--orange-2);
  text-decoration: none;
}

/* ================================================================== *
 * FINAL CTA  (Workforce Management Hub — includes fw-final-sub)
 * ================================================================== */
.fw-final {
  padding: 60px 0;
  background: #0e1116;
  position: relative;
  overflow: hidden;
}
.fw-final-inner {
  position: relative;
  max-width: 900px;
  margin: 0 auto;
  padding: 0 24px;
  display: flex;
  flex-direction: column;
  align-items: center;
  text-align: center;
}
.fw-final-heading {
  font-family: "Inter", sans-serif;
  font-weight: 800;
  font-size: 40px;
  line-height: 48px;
  letter-spacing: -1.3px;
  color: #fff;
  margin: 0 0 18px;
}
.fw-final-sub {
  font-family: "Inter", sans-serif;
  font-size: 17px;
  line-height: 27px;
  color: #cdd4df;
  margin: 0 0 22px;
  max-width: 60ch;
}
.fw-final-trust {
  display: flex;
  gap: 24px;
  flex-wrap: wrap;
  justify-content: center;
  list-style: none;
  margin: 0 0 26px;
  padding: 0;
}
.fw-final-trust li {
  display: inline-flex;
  align-items: center;
  gap: 6px;
  font-family: "Inter", sans-serif;
  font-size: 14px;
  line-height: 100%;
  font-weight: 600;
  color: #e9ecf1;
}
.fw-final-trust li::before {
  content: "";
  flex-shrink: 0;
  width: 16px;
  height: 16px;
  background: url("data:image/svg+xml,%3Csvg xmlns='http://www.w3.org/2000/svg' width='16' height='16' viewBox='0 0 16 16' fill='none'%3E%3Cpath d='M13.333 4L6 11.333 2.667 8' stroke='%2334D399' stroke-width='1.6' stroke-linecap='round' stroke-linejoin='round'/%3E%3C/svg%3E")
    center/16px no-repeat;
}

/* ================================================================== *
 * SCROLL ANIMATION
 * ================================================================== */
.fade-up {
  opacity: 0;
  transform: translateY(20px);
  transition:
    opacity 0.6s ease,
    transform 0.6s ease;
}
.fade-up.is-visible {
  opacity: 1;
  transform: none;
}

/* ================================================================== *
 * RESPONSIVE
 * ================================================================== */
@media (max-width: 992px) {
  .fw-hero-grid {
    grid-template-columns: 1fr;
    gap: 28px;
  }
  .fw-hero h1 {
    max-width: none;
    font-size: 40px;
  }
  /* Center the hero image (integration diagram) on tablets and phones. */
  .fw-hero-right {
    justify-content: center;
  }
  .fw-h2 {
    font-size: 34px;
    letter-spacing: -1px;
  }
  .ih-int-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  /* Safety net: on a single/two-column layout the integration grid is far
   * taller than the viewport, so the 12% IntersectionObserver threshold can
   * never be met and the grid would stay hidden (opacity:0) until a filter
   * shrinks it. Reveal it unconditionally at <=992px; desktop keeps the
   * scroll-in animation. */
  #ih-int-grid.fade-up {
    opacity: 1;
    transform: none;
  }
  .fw-feat-grid {
    grid-template-columns: repeat(2, 1fr);
  }
  .ih-deploy-steps {
    grid-template-columns: repeat(2, 1fr);
  }
  .fw-trust-grid {
    grid-template-columns: 1fr;
    gap: 36px;
  }
  .fw-final-heading {
    font-size: 36px;
  }
}

@media (max-width: 768px) {
  .ih-int,
  .fw-trust,
  .fw-faq-section,
  .fw-tst-section,
  .ih-deploy,
  .fw-features {
    padding: 48px 0;
  }
  .ih-dsys {
    padding: 24px 0 48px;
  }
  .fw-final {
    padding: 48px 0;
  }
  .fw-hero {
    padding: 40px 0 24px;
  }
  .fw-hero h1 {
    font-size: 34px;
    letter-spacing: -1px;
  }
  .ih-int-controls {
    flex-direction: column;
    align-items: stretch;
  }
  .ih-int-search {
    min-width: 0;
    flex: 1 1 auto;
  }
  .ih-int-search input {
    width: 100%;
  }
  .ih-int-grid {
    grid-template-columns: 1fr;
  }
  .fw-feat-grid {
    grid-template-columns: 1fr;
  }
  .ih-deploy-steps {
    grid-template-columns: 1fr;
  }
  .ih-dsys-box {
    padding: 40px 24px;
  }
  .ih-dsys-heading {
    font-size: 28px;
  }
  .fw-faq-heading {
    font-size: 30px;
  }
  .fw-final-heading {
    font-size: 30px;
    letter-spacing: -1px;
  }
  .hero-cta-primary,
  .hero-cta-secondary {
    width: 100%;
    justify-content: center;
  }
}

@media (max-width: 480px) {
  .fw-employee-stats {
    grid-template-columns: 1fr;
  }
  .fw-hero h1 {
    font-size: 30px;
  }
  .fw-h2 {
    font-size: 28px;
    letter-spacing: -0.6px;
  }
  .ih-dsys-heading {
    font-size: 24px;
    letter-spacing: -0.5px;
  }
  .fw-final-trust {
    gap: 12px 20px;
  }
}

@media (prefers-reduced-motion: reduce) {
  .fade-up {
    opacity: 1 !important;
    transform: none !important;
    transition: none !important;
  }
  .cmp-trusted-track {
    animation: none !important;
  }
  .fw-page *,
  .fw-page *::before,
  .fw-page *::after {
    animation-duration: 0.001ms !important;
    transition-duration: 0.001ms !important;
  }
}
