/* ========================================================================
   FaiServe — product page design system (loads AFTER styles.css)
   Brand: brochure red #E23127 on field navy #14172B, paper #FBFBFC
   Type:  Bricolage Grotesque display · Instrument Sans body · IBM Plex Mono
   Scope: field-service.html only. Shared shell classes (.site-header, .nav,
          .btn, .reveal, .contact-form, footer) are re-skinned via tokens;
          everything new is namespaced .fx-*.
   ======================================================================== */

:root,
[data-theme="light"] {
  --bg: #FBFBFC;
  --bg-elev: #FFFFFF;
  --surface: #FFFFFF;
  --surface-2: #F4F5F9;
  --text: #14172B;
  --text-muted: #5A607A;
  --text-faint: #9AA0B2;
  --accent-warm: #E23127;
  --accent-cool: #B71C1C;
  --accent-glow: rgba(226, 49, 39, 0.07);
  --border: #E3E5EE;
  --border-soft: #EDEFF4;
  --btn-border: #C9CCD8;

  --red: #E23127;
  --red-dark: #B71C1C;
  --red-soft: #FDEEEC;
  --navy: #14172B;
  --navy-2: #1E2340;
  --green: #16A34A;

  --serif: 'Bricolage Grotesque', 'Poppins', system-ui, sans-serif;
  --sans: 'Instrument Sans', 'Poppins', system-ui, sans-serif;
  --mono: 'IBM Plex Mono', ui-monospace, 'Cascadia Mono', monospace;

  --max-w: 1240px;
  --radius: 14px;
  --radius-lg: 22px;

  --shadow-card: 0 1px 2px rgba(20, 23, 43, 0.04), 0 8px 28px rgba(20, 23, 43, 0.05);
  --shadow-lift: 0 2px 4px rgba(20, 23, 43, 0.05), 0 18px 48px rgba(20, 23, 43, 0.10);
}

/* ---------- Atmosphere: warm paper, faint red aurora, no teal ---------- */
body {
  font-size: 16.5px;
  letter-spacing: 0.001em;
}
body::before {
  background:
    radial-gradient(ellipse 62% 42% at 78% -8%, rgba(226, 49, 39, 0.06), transparent 62%),
    radial-gradient(ellipse 50% 34% at -6% 24%, rgba(20, 23, 43, 0.045), transparent 68%);
}
::selection { background: rgba(226, 49, 39, 0.16); color: var(--navy); }

a:focus-visible,
button:focus-visible,
summary:focus-visible {
  outline: 2px solid var(--red);
  outline-offset: 3px;
  border-radius: 4px;
}

/* ---------- Type re-skin ---------- */
.display {
  font-family: var(--serif);
  font-weight: 700;
  letter-spacing: -0.028em;
  line-height: 1.04;
}
.display em {
  font-style: normal;
  color: var(--red);
}
.lede {
  font-size: clamp(17px, 1.55vw, 20px);
  line-height: 1.55;
}
.eyebrow {
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.22em;
  color: var(--text-muted);
}
.eyebrow::before {
  width: 8px;
  height: 8px;
  border-radius: 2px;
  background: var(--red);
}

/* ---------- Buttons ---------- */
.btn {
  font-family: var(--sans);
  font-size: 15px;
  font-weight: 600;
  letter-spacing: 0.005em;
  border-radius: 12px;
  padding: 15px 26px;
  transition: transform 0.25s var(--ease-out), box-shadow 0.25s var(--ease-out),
              background 0.25s var(--ease-out), border-color 0.25s var(--ease-out),
              color 0.25s var(--ease-out);
}
.btn-primary {
  background: var(--red);
  color: #fff;
  box-shadow: 0 1px 2px rgba(183, 28, 28, 0.3), 0 10px 26px rgba(226, 49, 39, 0.24);
}
.btn-primary:hover {
  background: var(--red-dark);
  transform: translateY(-1px);
  box-shadow: 0 2px 4px rgba(183, 28, 28, 0.3), 0 14px 34px rgba(226, 49, 39, 0.3);
}
.btn-ghost {
  border: 1px solid var(--btn-border);
  color: var(--navy);
  background: var(--bg-elev);
}
.btn-ghost:hover {
  border-color: var(--navy);
  background: var(--navy);
  color: #fff;
  transform: translateY(-1px);
}

/* ---------- Header ---------- */
.site-header {
  position: sticky;
  top: 0;
  z-index: 50;
  background: rgba(251, 251, 252, 0.82);
  -webkit-backdrop-filter: blur(16px) saturate(1.4);
  backdrop-filter: blur(16px) saturate(1.4);
  border-bottom: 1px solid var(--border-soft);
}
.nav-links a {
  font-size: 14.5px;
  font-weight: 500;
}
.nav-links a:hover, .nav-links a.active { color: var(--red-dark); }
.nav-links a.active::after { background: var(--red); }
.nav-login { font-weight: 500; }

.fx-lang {
  display: flex;
  gap: 2px;
  border: 1px solid var(--border);
  border-radius: 999px;
  padding: 3px;
  background: var(--bg-elev);
}
.fx-lang a {
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.08em;
  padding: 6px 10px;
  border-radius: 999px;
  color: var(--text-muted);
}
.fx-lang a.active { background: var(--navy); color: #fff; }
.fx-lang a:hover:not(.active) { color: var(--red-dark); }
@media (max-width: 560px) { .fx-lang { display: none; } }

/* ---------- Sections ---------- */
.fx-section { padding-block: clamp(84px, 9.5vw, 148px); }
.fx-section--tight { padding-block: clamp(56px, 6vw, 88px); }
.fx-section--soft {
  background: linear-gradient(180deg, var(--surface-2), rgba(244, 245, 249, 0.35));
  border-block: 1px solid var(--border-soft);
}
.fx-head { max-width: 780px; margin-bottom: clamp(44px, 5vw, 72px); }
.fx-head .display { margin-top: 20px; }
.fx-head .lede { margin-top: 18px; }
.fx-head--center { margin-inline: auto; text-align: center; }
.fx-head--center .lede { margin-inline: auto; }
.fx-head--center .eyebrow::before { display: none; }

/* Scroll-reveal — softer, longer rise than the agency site */
.reveal {
  opacity: 0;
  transform: translateY(26px);
  transition: opacity 0.9s var(--ease-out), transform 0.9s var(--ease-out);
}
.reveal.in { opacity: 1; transform: none; }
.reveal.delay-1 { transition-delay: 0.08s; }
.reveal.delay-2 { transition-delay: 0.16s; }
.reveal.delay-3 { transition-delay: 0.26s; }
.reveal.delay-4 { transition-delay: 0.36s; }

/* ========================================================================
   HERO
   ======================================================================== */
.fx-hero {
  position: relative;
  padding-block: clamp(64px, 8vw, 120px) clamp(56px, 6vw, 96px);
}
.fx-hero::before {
  /* engineering dot-grid, fading out */
  content: "";
  position: absolute;
  inset: 0 0 18% 0;
  background-image: radial-gradient(circle, rgba(20, 23, 43, 0.07) 1px, transparent 1.5px);
  background-size: 26px 26px;
  -webkit-mask-image: radial-gradient(ellipse 74% 88% at 50% 0%, #000 0%, transparent 74%);
  mask-image: radial-gradient(ellipse 74% 88% at 50% 0%, #000 0%, transparent 74%);
  pointer-events: none;
}
.fx-hero-grid {
  position: relative;
  display: grid;
  grid-template-columns: 1.04fr 0.96fr;
  gap: clamp(40px, 5vw, 84px);
  align-items: center;
}
.fx-hero-kicker {
  display: inline-flex;
  align-items: center;
  gap: 12px;
  font-family: var(--mono);
  font-size: 11.5px;
  font-weight: 500;
  letter-spacing: 0.18em;
  text-transform: uppercase;
  color: var(--text-muted);
  padding: 9px 16px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg-elev);
  box-shadow: var(--shadow-card);
}
.fx-hero-kicker .dot {
  width: 7px;
  height: 7px;
  border-radius: 50%;
  background: var(--green);
  box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.4);
  animation: fx-pulse 2.4s infinite;
}
@keyframes fx-pulse {
  0%   { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0.35); }
  70%  { box-shadow: 0 0 0 9px rgba(22, 163, 74, 0); }
  100% { box-shadow: 0 0 0 0 rgba(22, 163, 74, 0); }
}
.fx-hero h1 {
  margin-top: 30px;
  font-size: clamp(40px, 5.2vw, 68px);
  max-width: 16ch;
}
.fx-hero h1 .fx-accent {
  color: var(--red);
}
.fx-hero .lede { margin-top: 26px; max-width: 52ch; }
.fx-hero .actions {
  display: flex;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}
.fx-hero-proof {
  display: flex;
  flex-wrap: wrap;
  gap: 10px 26px;
  margin-top: 30px;
  font-size: 14px;
  color: var(--text-muted);
}
.fx-hero-proof li { display: inline-flex; align-items: center; gap: 9px; }
.fx-hero-proof .tick {
  color: var(--red);
  font-weight: 700;
  font-size: 13px;
}

/* Hero visual: layered devices over red aurora */
.fx-hero-visual {
  position: relative;
  min-height: clamp(420px, 44vw, 640px);
}
.fx-hero-visual::before {
  content: "";
  position: absolute;
  inset: -8% -14%;
  background:
    radial-gradient(ellipse 58% 48% at 62% 40%, rgba(226, 49, 39, 0.10), transparent 68%),
    radial-gradient(ellipse 40% 36% at 24% 78%, rgba(20, 23, 43, 0.07), transparent 70%);
  filter: blur(2px);
  pointer-events: none;
}
.fx-phone {
  background: var(--navy);
  border-radius: 38px;
  padding: 11px;
  box-shadow:
    inset 0 0 0 1.5px rgba(255, 255, 255, 0.09),
    0 2px 6px rgba(20, 23, 43, 0.18),
    0 34px 70px -18px rgba(20, 23, 43, 0.42);
}
.fx-phone img {
  border-radius: 28px;
  width: 100%;
  height: auto;
}
.fx-hero-visual .fx-phone { position: absolute; }
.fx-hero-phone-main {
  width: clamp(230px, 22vw, 292px);
  left: 8%;
  top: 2%;
  z-index: 2;
  transform: rotate(-2.5deg);
}
.fx-hero-phone-side {
  width: clamp(180px, 17vw, 232px);
  right: 3%;
  bottom: 0;
  z-index: 1;
  transform: rotate(3.5deg);
  opacity: 0.98;
}
.fx-hero-chip {
  position: absolute;
  z-index: 3;
  display: inline-flex;
  align-items: center;
  gap: 9px;
  padding: 11px 16px;
  border-radius: 12px;
  background: rgba(255, 255, 255, 0.94);
  -webkit-backdrop-filter: blur(8px);
  backdrop-filter: blur(8px);
  border: 1px solid var(--border);
  box-shadow: var(--shadow-lift);
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  animation: fx-float 5.5s ease-in-out infinite alternate;
}
.fx-hero-chip .mono {
  font-family: var(--mono);
  font-size: 11px;
  color: var(--text-muted);
  font-weight: 500;
}
.fx-hero-chip--eta { right: 0; top: 16%; animation-delay: 0.8s; }
.fx-hero-chip--gps { left: 0; bottom: 12%; }
.fx-hero-chip .chip-ic {
  display: grid;
  place-items: center;
  width: 26px;
  height: 26px;
  border-radius: 8px;
  background: var(--red-soft);
  color: var(--red);
  flex: none;
}
.fx-hero-chip .chip-ic svg { width: 15px; height: 15px; }
@keyframes fx-float {
  from { transform: translateY(0); }
  to   { transform: translateY(-12px); }
}

@media (max-width: 980px) {
  .fx-hero-grid { grid-template-columns: 1fr; }
  .fx-hero h1 { max-width: none; }
  .fx-hero-visual { min-height: 480px; margin-inline: auto; width: min(100%, 520px); }
}
@media (max-width: 480px) {
  .fx-hero-visual { min-height: 400px; }
  .fx-hero-phone-main { width: 210px; left: 2%; }
  .fx-hero-phone-side { width: 168px; right: 0; }
}

/* ========================================================================
   TRUST BAND — industries marquee + hard facts
   ======================================================================== */
.fx-trust {
  border-block: 1px solid var(--border-soft);
  background: var(--bg-elev);
  padding-block: 34px;
}
.fx-trust-label {
  font-family: var(--mono);
  font-size: 11px;
  font-weight: 500;
  letter-spacing: 0.22em;
  text-transform: uppercase;
  color: var(--text-faint);
  text-align: center;
  margin-bottom: 22px;
}
.fx-marquee {
  overflow: hidden;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 12%, #000 88%, transparent);
}
.fx-marquee-track {
  display: flex;
  gap: 12px;
  width: max-content;
  animation: fx-scroll 46s linear infinite;
}
.fx-marquee:hover .fx-marquee-track { animation-play-state: paused; }
@keyframes fx-scroll {
  to { transform: translateX(-50%); }
}
.fx-marquee-track span {
  flex: none;
  font-size: 14px;
  font-weight: 500;
  color: var(--text-muted);
  padding: 10px 20px;
  border: 1px solid var(--border);
  border-radius: 999px;
  background: var(--bg);
}
.fx-facts {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  margin-top: 34px;
}
.fx-fact {
  text-align: center;
  padding: 8px 12px;
  border-left: 1px solid var(--border);
}
.fx-fact:first-child { border-left: none; }
.fx-fact strong {
  display: block;
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(20px, 2.2vw, 27px);
  letter-spacing: -0.02em;
  color: var(--navy);
}
.fx-fact span {
  display: block;
  margin-top: 5px;
  font-size: 13px;
  color: var(--text-muted);
}
@media (max-width: 760px) {
  .fx-facts { grid-template-columns: repeat(2, 1fr); gap: 22px 0; }
  .fx-fact:nth-child(3) { border-left: none; }
}

/* ========================================================================
   WHY — four editorial reason cards
   ======================================================================== */
.fx-why-grid {
  display: grid;
  grid-template-columns: repeat(2, 1fr);
  gap: 18px;
}
.fx-why {
  position: relative;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 42px);
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out),
              border-color 0.35s var(--ease-out);
}
.fx-why:hover {
  transform: translateY(-4px);
  border-color: rgba(20, 23, 43, 0.22);
  box-shadow: var(--shadow-lift);
}
.fx-why .num {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 500;
  letter-spacing: 0.14em;
  color: var(--red);
}
.fx-why h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(21px, 2.1vw, 26px);
  letter-spacing: -0.015em;
  margin-top: 16px;
}
.fx-why p {
  margin-top: 12px;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 52ch;
}
.fx-why--navy {
  background: linear-gradient(150deg, var(--navy), var(--navy-2));
  border-color: var(--navy);
}
.fx-why--navy h3 { color: #fff; }
.fx-why--navy p { color: #B9BDD1; }
.fx-why--navy:hover { border-color: var(--navy); }
.fx-why--navy::after {
  content: "";
  position: absolute;
  inset: 0;
  border-radius: inherit;
  background: radial-gradient(ellipse 70% 60% at 92% -12%, rgba(226, 49, 39, 0.22), transparent 60%);
  pointer-events: none;
}
@media (max-width: 860px) {
  .fx-why-grid { grid-template-columns: 1fr; }
}

/* ========================================================================
   APP SHOWCASE — core screens: grid on desktop, swipe carousel on mobile
   ======================================================================== */
.fx-core-grid {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(18px, 2.4vw, 32px);
}
.fx-core-shot { margin: 0; }
.fx-core-shot .fx-phone {
  transition: transform 0.4s var(--ease-out), box-shadow 0.4s var(--ease-out);
}
.fx-core-shot:hover .fx-phone {
  transform: translateY(-8px);
  box-shadow:
    inset 0 0 0 1.5px rgba(255, 255, 255, 0.09),
    0 2px 6px rgba(20, 23, 43, 0.18),
    0 42px 80px -20px rgba(20, 23, 43, 0.5);
}
.fx-core-shot figcaption { margin-top: 18px; padding-inline: 6px; }
.shot-name {
  display: flex;
  align-items: center;
  gap: 8px;
  font-family: var(--serif);
  font-weight: 700;
  font-size: 17px;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.shot-line {
  display: block;
  margin-top: 6px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-muted);
}
.fx-tag-module {
  font-family: var(--mono);
  font-size: 9.5px;
  font-weight: 600;
  letter-spacing: 0.12em;
  color: var(--red-dark);
  background: var(--red-soft);
  border: 1px solid rgba(226, 49, 39, 0.25);
  padding: 3px 8px;
  border-radius: 6px;
  text-transform: uppercase;
  flex: none;
  width: fit-content;
}
@media (max-width: 1080px) {
  .fx-core-grid {
    grid-template-columns: repeat(2, 1fr);
    max-width: 660px;
    margin-inline: auto;
  }
}
@media (max-width: 640px) {
  .fx-core-grid {
    display: flex;
    overflow-x: auto;
    scroll-snap-type: x mandatory;
    gap: 16px;
    margin-inline: calc(-1 * var(--pad-x));
    padding: 8px var(--pad-x) 16px;
    scrollbar-width: none;
    max-width: none;
  }
  .fx-core-grid::-webkit-scrollbar { display: none; }
  .fx-core-shot {
    flex: 0 0 76%;
    max-width: 300px;
    scroll-snap-align: center;
  }
}

/* ========================================================================
   CORE FEATURES
   ======================================================================== */
.fx-feats {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 16px;
}
.fx-feat {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 26px 26px 28px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out),
              border-color 0.3s var(--ease-out);
}
.fx-feat:hover {
  transform: translateY(-3px);
  box-shadow: var(--shadow-card);
  border-color: rgba(20, 23, 43, 0.2);
}
.fx-feat .ic {
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 11px;
  background: var(--red-soft);
  color: var(--red);
  margin-bottom: 18px;
}
.fx-feat .ic svg { width: 21px; height: 21px; }
.fx-feat h4 {
  font-size: 16.5px;
  font-weight: 600;
  letter-spacing: -0.008em;
  color: var(--navy);
}
.fx-feat p {
  margin-top: 8px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-muted);
}
@media (max-width: 980px) { .fx-feats { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 600px) { .fx-feats { grid-template-columns: 1fr; } }

/* ========================================================================
   HQ — full-bleed navy band
   ======================================================================== */
.fx-hq {
  position: relative;
  background:
    radial-gradient(ellipse 70% 55% at 82% -10%, rgba(226, 49, 39, 0.16), transparent 58%),
    radial-gradient(ellipse 44% 40% at 4% 108%, rgba(94, 110, 255, 0.08), transparent 62%),
    linear-gradient(165deg, #14172B 0%, #191D36 55%, #14172B 100%);
  color: #EDEEF5;
  overflow: hidden;
}
.fx-hq::before {
  content: "";
  position: absolute;
  inset: 0;
  background-image: radial-gradient(circle, rgba(255, 255, 255, 0.05) 1px, transparent 1.4px);
  background-size: 28px 28px;
  -webkit-mask-image: linear-gradient(180deg, #000, transparent 55%);
  mask-image: linear-gradient(180deg, #000, transparent 55%);
  pointer-events: none;
}
.fx-hq .container { position: relative; }
.fx-hq .eyebrow { color: #8F94AE; }
.fx-hq .display { color: #fff; }
.fx-hq .display em { color: #FF7A6E; }
.fx-hq .lede { color: #ABB0C6; }
.fx-hq-grid {
  display: grid;
  grid-template-columns: 0.9fr 1.1fr;
  gap: clamp(40px, 5vw, 76px);
  align-items: center;
}
.fx-hq-points { margin-top: 34px; display: grid; gap: 0; }
.fx-hq-points li {
  display: flex;
  gap: 16px;
  padding: 17px 0;
  border-top: 1px solid rgba(255, 255, 255, 0.09);
  font-size: 15.5px;
  line-height: 1.5;
  color: #C6CADC;
}
.fx-hq-points li:last-child { border-bottom: 1px solid rgba(255, 255, 255, 0.09); }
.fx-hq-points b { color: #fff; font-weight: 600; }
.fx-hq-points .pt {
  flex: none;
  font-family: var(--mono);
  font-size: 11px;
  color: #FF8D82;
  padding-top: 4px;
}
.fx-hq-visual { position: relative; }
.fx-browser {
  border-radius: 14px;
  background: #262B47;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.10),
    0 40px 90px -24px rgba(0, 0, 0, 0.65);
  overflow: hidden;
}
.fx-browser-bar {
  display: flex;
  align-items: center;
  gap: 6px;
  padding: 11px 14px;
}
.fx-browser-bar span {
  width: 9px;
  height: 9px;
  border-radius: 50%;
  background: rgba(255, 255, 255, 0.16);
}
.fx-browser-bar span:first-child { background: rgba(255, 107, 97, 0.7); }
.fx-browser img { width: 100%; height: auto; display: block; }
.fx-hq-visual .fx-browser--mini {
  position: absolute;
  width: 46%;
  right: -4%;
  bottom: -13%;
  border-radius: 11px;
  box-shadow:
    inset 0 0 0 1px rgba(255, 255, 255, 0.12),
    0 30px 70px -18px rgba(0, 0, 0, 0.75);
}
.fx-hq-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 10px;
  margin-top: 34px;
}
.fx-hq-chips span {
  font-family: var(--mono);
  font-size: 11.5px;
  letter-spacing: 0.06em;
  color: #C6CADC;
  border: 1px solid rgba(255, 255, 255, 0.14);
  background: rgba(255, 255, 255, 0.04);
  padding: 9px 15px;
  border-radius: 999px;
}
@media (max-width: 980px) {
  .fx-hq-grid { grid-template-columns: 1fr; }
  .fx-hq-visual { margin-top: 10px; }
  .fx-hq-visual .fx-browser--mini { right: 0; bottom: -10%; }
}

/* ========================================================================
   OPTIONAL MODULES
   ======================================================================== */
.fx-modules {
  display: grid;
  grid-template-columns: repeat(3, 1fr);
  gap: 18px;
}
.fx-module {
  position: relative;
  display: flex;
  flex-direction: column;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px;
  overflow: hidden;
  transition: transform 0.35s var(--ease-out), box-shadow 0.35s var(--ease-out),
              border-color 0.35s var(--ease-out);
}
.fx-module:hover {
  transform: translateY(-4px);
  box-shadow: var(--shadow-lift);
  border-color: rgba(226, 49, 39, 0.35);
}
.fx-module-top {
  display: flex;
  align-items: center;
  justify-content: space-between;
  margin-bottom: 18px;
}
.fx-module .ic {
  display: grid;
  place-items: center;
  width: 44px;
  height: 44px;
  border-radius: 12px;
  background: var(--navy);
  color: #fff;
}
.fx-module .ic svg { width: 21px; height: 21px; }
.fx-module h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 20px;
  letter-spacing: -0.012em;
  color: var(--navy);
}
.fx-module > p {
  margin-top: 9px;
  font-size: 14.5px;
  line-height: 1.58;
  color: var(--text-muted);
}
.fx-module-feats { margin-top: 16px; display: grid; gap: 7px; }
.fx-module-feats li {
  position: relative;
  padding-left: 18px;
  font-size: 13.5px;
  color: var(--text-muted);
}
.fx-module-feats li::before {
  content: "";
  position: absolute;
  left: 0;
  top: 8px;
  width: 7px;
  height: 2px;
  border-radius: 2px;
  background: var(--red);
}
/* Flagship module showcases — alternating copy/visual rows */
.fx-mod-show {
  display: grid;
  grid-template-columns: 1.05fr 0.95fr;
  gap: clamp(32px, 4.5vw, 72px);
  align-items: center;
  padding-block: clamp(30px, 3.5vw, 54px);
  border-top: 1px solid var(--border-soft);
}
.fx-head + .fx-mod-show { border-top: 0; padding-top: 0; }
.fx-mod-show--flip .fx-mod-copy { order: 2; }
.fx-mod-show--flip .fx-mod-visual { order: 1; }
.fx-mod-copy h3 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(23px, 2.4vw, 30px);
  letter-spacing: -0.015em;
  color: var(--navy);
  margin-top: 14px;
}
.fx-mod-copy > p {
  margin-top: 12px;
  font-size: 15.5px;
  line-height: 1.6;
  color: var(--text-muted);
  max-width: 50ch;
}
.fx-mod-copy .fx-module-feats { margin-top: 18px; }
.fx-mod-visual {
  display: flex;
  justify-content: center;
  align-items: flex-end;
}
.fx-mod-visual .fx-phone {
  width: min(240px, 56%);
  transform: rotate(-2deg);
  position: relative;
  z-index: 2;
}
.fx-mod-visual .fx-phone + .fx-phone {
  width: min(198px, 46%);
  margin-left: -7%;
  transform: translateY(7%) rotate(3deg);
  z-index: 1;
}
.fx-pos-panel {
  width: min(420px, 100%);
  background: linear-gradient(155deg, var(--navy), var(--navy-2));
  border-radius: var(--radius-lg);
  padding: clamp(28px, 3vw, 44px);
  color: #fff;
  position: relative;
  overflow: hidden;
  box-shadow: 0 30px 70px -22px rgba(20, 23, 43, 0.5);
}
.fx-pos-panel::after {
  content: "";
  position: absolute;
  inset: 0;
  background: radial-gradient(ellipse 75% 60% at 90% -10%, rgba(226, 49, 39, 0.28), transparent 62%);
  pointer-events: none;
}
.fx-pos-panel .pos-ic {
  display: grid;
  place-items: center;
  width: 52px;
  height: 52px;
  border-radius: 14px;
  background: var(--red);
  margin-bottom: 20px;
}
.fx-pos-panel .pos-ic svg { width: 26px; height: 26px; }
.fx-pos-panel strong {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 21px;
  letter-spacing: -0.01em;
  display: block;
}
.fx-pos-panel .pos-chips {
  display: flex;
  flex-wrap: wrap;
  gap: 8px;
  margin-top: 18px;
  position: relative;
}
.fx-pos-panel .pos-chips span {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.05em;
  color: #C6CADC;
  border: 1px solid rgba(255, 255, 255, 0.16);
  border-radius: 999px;
  padding: 7px 13px;
}
.fx-modules--compact { margin-top: clamp(30px, 3.5vw, 54px); }
@media (max-width: 880px) {
  .fx-mod-show { grid-template-columns: 1fr; gap: 30px; }
  .fx-mod-show--flip .fx-mod-copy { order: 0; }
  .fx-mod-show--flip .fx-mod-visual { order: 0; }
}
.fx-modules-note {
  margin-top: 40px;
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  justify-content: space-between;
  gap: 20px;
  padding: 26px 30px;
  border: 1px dashed rgba(226, 49, 39, 0.4);
  background: var(--red-soft);
  border-radius: var(--radius-lg);
}
.fx-modules-note p {
  font-size: 15.5px;
  color: var(--navy);
  max-width: 60ch;
}
.fx-modules-note p b { font-weight: 600; }
@media (max-width: 980px) { .fx-modules { grid-template-columns: repeat(2, 1fr); } }
@media (max-width: 620px) { .fx-modules { grid-template-columns: 1fr; } }

/* ========================================================================
   INDUSTRIES
   ======================================================================== */
.fx-industries {
  display: flex;
  flex-wrap: wrap;
  gap: 12px;
  max-width: 900px;
}
.fx-industries span {
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text);
  border: 1px solid var(--border);
  background: var(--bg-elev);
  border-radius: 999px;
  padding: 12px 22px;
  transition: border-color 0.25s, color 0.25s, transform 0.25s var(--ease-out);
}
.fx-industries span:hover {
  border-color: var(--red);
  color: var(--red-dark);
  transform: translateY(-2px);
}

/* ========================================================================
   HOW IT WORKS
   ======================================================================== */
.fx-steps {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: clamp(24px, 3vw, 44px);
  position: relative;
}
.fx-steps::before {
  content: "";
  position: absolute;
  top: 21px;
  left: 3%;
  right: 3%;
  height: 1px;
  background: linear-gradient(90deg, transparent, var(--border) 12%, var(--border) 88%, transparent);
}
.fx-step { position: relative; }
.fx-step .num {
  position: relative;
  display: grid;
  place-items: center;
  width: 42px;
  height: 42px;
  border-radius: 50%;
  background: var(--bg);
  border: 1px solid var(--border);
  font-family: var(--mono);
  font-size: 12.5px;
  font-weight: 600;
  color: var(--red);
  margin-bottom: 20px;
}
.fx-step h4 {
  font-family: var(--serif);
  font-weight: 700;
  font-size: 18.5px;
  letter-spacing: -0.01em;
  color: var(--navy);
}
.fx-step p {
  margin-top: 9px;
  font-size: 14.5px;
  line-height: 1.55;
  color: var(--text-muted);
}
@media (max-width: 900px) {
  .fx-steps { grid-template-columns: repeat(2, 1fr); }
  .fx-steps::before { display: none; }
}
@media (max-width: 520px) { .fx-steps { grid-template-columns: 1fr; } }

/* ========================================================================
   PRICING
   ======================================================================== */
.fx-pricing {
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  gap: 16px;
  align-items: stretch;
}
.fx-price {
  display: flex;
  flex-direction: column;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: 30px 28px;
  transition: transform 0.3s var(--ease-out), box-shadow 0.3s var(--ease-out);
}
.fx-price:hover { transform: translateY(-4px); box-shadow: var(--shadow-lift); }
.fx-price .plan {
  font-family: var(--mono);
  font-size: 12px;
  font-weight: 600;
  letter-spacing: 0.16em;
  text-transform: uppercase;
  color: var(--text-muted);
}
.fx-price .amount {
  margin-top: 16px;
  display: flex;
  align-items: baseline;
  gap: 7px;
}
.fx-price .amount strong {
  font-family: var(--serif);
  font-weight: 700;
  font-size: clamp(30px, 2.8vw, 38px);
  letter-spacing: -0.025em;
  color: var(--navy);
}
.fx-price .amount span { font-size: 14px; color: var(--text-faint); }
.fx-price .who {
  margin-top: 9px;
  font-size: 13.5px;
  line-height: 1.5;
  color: var(--text-muted);
  min-height: 40px;
}
.fx-price .seats {
  margin-top: 18px;
  font-size: 13px;
  font-weight: 600;
  color: var(--navy);
  background: var(--surface-2);
  border-radius: 9px;
  padding: 9px 14px;
  width: fit-content;
}
.fx-price ul { margin-top: 20px; display: grid; gap: 10px; flex: 1; }
.fx-price ul li {
  position: relative;
  padding-left: 24px;
  font-size: 14px;
  line-height: 1.45;
  color: var(--text-muted);
}
.fx-price ul li::before {
  content: "✓";
  position: absolute;
  left: 0;
  top: 0;
  font-size: 12px;
  font-weight: 700;
  color: var(--red);
}
.fx-price ul li.carry { font-weight: 600; color: var(--navy); }
.fx-price .btn { margin-top: 26px; width: 100%; justify-content: center; padding: 13px 18px; font-size: 14px; }

.fx-price--hot {
  position: relative;
  background: linear-gradient(160deg, var(--navy), var(--navy-2));
  border-color: var(--navy);
  box-shadow: 0 24px 60px -18px rgba(20, 23, 43, 0.45);
  transform: translateY(-8px);
}
.fx-price--hot:hover { transform: translateY(-12px); }
.fx-price--hot .flag {
  position: absolute;
  top: -13px;
  left: 50%;
  transform: translateX(-50%);
  white-space: nowrap;
  font-family: var(--mono);
  font-size: 10.5px;
  font-weight: 600;
  letter-spacing: 0.14em;
  text-transform: uppercase;
  color: #fff;
  background: var(--red);
  padding: 6px 14px;
  border-radius: 999px;
  box-shadow: 0 6px 18px rgba(226, 49, 39, 0.4);
}
.fx-price--hot .plan { color: #9AA0BC; }
.fx-price--hot .amount strong { color: #fff; }
.fx-price--hot .amount span { color: #8A90AC; }
.fx-price--hot .who { color: #ABB0C6; }
.fx-price--hot .seats { background: rgba(255, 255, 255, 0.08); color: #fff; }
.fx-price--hot ul li { color: #C6CADC; }
.fx-price--hot ul li.carry { color: #fff; }
.fx-price--hot ul li::before { color: #FF7A6E; }

.fx-price--enterprise .amount strong { font-size: clamp(24px, 2.2vw, 29px); }

.fx-price-foot {
  margin-top: 36px;
  text-align: center;
  font-size: 14px;
  color: var(--text-muted);
}
.fx-price-foot a { color: var(--red-dark); font-weight: 600; text-decoration: underline; text-underline-offset: 3px; }
@media (max-width: 1080px) {
  .fx-pricing { grid-template-columns: repeat(2, 1fr); }
  .fx-price--hot { transform: none; }
}
@media (max-width: 620px) { .fx-pricing { grid-template-columns: 1fr; } }

/* ========================================================================
   FAQ
   ======================================================================== */
.fx-faq {
  columns: 2;
  column-gap: 18px;
  max-width: 1000px;
  margin-inline: auto;
}
.fx-faq details {
  break-inside: avoid;
  margin-bottom: 18px;
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius);
  padding: 22px 26px;
  transition: border-color 0.25s;
}
.fx-faq details:hover { border-color: rgba(20, 23, 43, 0.24); }
.fx-faq details[open] { border-color: rgba(226, 49, 39, 0.4); }
.fx-faq summary {
  cursor: pointer;
  list-style: none;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 16px;
  font-size: 15.5px;
  font-weight: 600;
  color: var(--navy);
}
.fx-faq summary::-webkit-details-marker { display: none; }
.fx-faq summary::after {
  content: "+";
  flex: none;
  font-family: var(--mono);
  font-size: 17px;
  color: var(--red);
  transition: transform 0.3s var(--ease-out);
}
.fx-faq details[open] summary::after { transform: rotate(45deg); }
.fx-faq details p {
  margin-top: 12px;
  font-size: 14.5px;
  line-height: 1.6;
  color: var(--text-muted);
}
@media (max-width: 800px) { .fx-faq { columns: 1; } }

/* ========================================================================
   FINAL CTA + CONTACT
   ======================================================================== */
.fx-cta { text-align: center; }
.fx-cta .display { font-size: clamp(34px, 4.6vw, 58px); }
.fx-cta .lede { margin: 22px auto 0; }
.fx-cta .actions {
  display: flex;
  justify-content: center;
  flex-wrap: wrap;
  gap: 14px;
  margin-top: 38px;
}
.fx-cta-wa {
  display: inline-flex;
  align-items: center;
  gap: 8px;
  margin-top: 26px;
  font-size: 14.5px;
  font-weight: 500;
  color: var(--text-muted);
}
.fx-cta-wa a {
  color: var(--green);
  font-weight: 600;
  text-decoration: underline;
  text-underline-offset: 3px;
}

.fx-contact-grid {
  display: grid;
  grid-template-columns: 0.85fr 1.15fr;
  gap: clamp(40px, 5vw, 80px);
  align-items: start;
}
.fx-contact-points { margin-top: 30px; display: grid; gap: 14px; }
.fx-contact-points li {
  display: flex;
  gap: 12px;
  font-size: 15px;
  color: var(--text-muted);
}
.fx-contact-points .tick { color: var(--red); font-weight: 700; flex: none; }
.fx-contact-card {
  background: var(--bg-elev);
  border: 1px solid var(--border);
  border-radius: var(--radius-lg);
  padding: clamp(26px, 3vw, 40px);
  box-shadow: var(--shadow-card);
}
.contact-form input,
.contact-form textarea,
.contact-form select {
  font-family: var(--sans);
  border-radius: 11px;
}
@media (max-width: 900px) {
  .fx-contact-grid { grid-template-columns: 1fr; }
}

/* ---------- Footer ---------- */
.site-footer {
  border-top: 1px solid var(--border-soft);
  background: var(--bg-elev);
}
.fx-foot-tag {
  font-family: var(--mono);
  font-size: 11px;
  letter-spacing: 0.1em;
  color: var(--text-faint);
  text-transform: uppercase;
}

/* ---------- Reduced motion ---------- */
@media (prefers-reduced-motion: reduce) {
  .reveal { opacity: 1; transform: none; transition: none; }
  .fx-marquee-track { animation: none; flex-wrap: wrap; width: auto; }
  .fx-hero-chip { animation: none; }
  .fx-hero-kicker .dot { animation: none; }
  *, *::before, *::after { transition-duration: 0.01ms !important; }
}
