/* =========================================================================
   Field Sales landing — NEW design (2026), parsed from Landing 16-07-2026.png.
   Standalone review page vs /field-sales/. Light cream #F6F5F4 · Poppins.
   main.css/styles.css load globally here and set bare h1/p/a rules, so every
   text element sets font-family/size/weight/color EXPLICITLY.
   ========================================================================= */

.landing-fsv2 {
  --canvas: #F6F5F4;
  --ink: #141414;
  --body: #5b5b5f;
  --muted: #8a8a8f;
  --purple: #4739C2;
  --purple-hover: #3a2ea6;
  --dark: #141414;
  --sans: 'Poppins', 'Montserrat', sans-serif;

  background: var(--canvas);
  color: var(--ink);
  font-family: var(--sans);
  overflow-x: hidden;
}
.landing-fsv2 *, .landing-fsv2 *::before, .landing-fsv2 *::after { box-sizing: border-box; }
.landing-fsv2 img { max-width: 100%; height: auto; display: block; }
.landing-fsv2 h1, .landing-fsv2 p { margin: 0; font-family: var(--sans); }

.landing-fsv2 .fsv2-wrap { max-width: 1300px; margin: 0 auto; padding: 0 56px; }

/* ---- Buttons ---- */
.landing-fsv2 .fsv2-btn {
  display: inline-flex; align-items: center; justify-content: center; gap: 0.6rem;
  font-family: var(--sans); font-size: 13px; font-weight: 700; letter-spacing: 0.05em;
  text-transform: uppercase; text-decoration: none; white-space: nowrap; cursor: pointer;
  border: none; border-radius: 999px; padding: 17px 36px; line-height: 1;
  transition: background-color .2s ease, transform .2s ease;
}
.landing-fsv2 .fsv2-btn-purple { background: var(--purple); color: #fff; }
.landing-fsv2 .fsv2-btn-purple:hover { background: var(--purple-hover); color: #fff; }
.landing-fsv2 .fsv2-btn-dark { background: var(--dark); color: #fff; }
.landing-fsv2 .fsv2-btn-dark:hover { background: #000; color: #fff; }
.landing-fsv2 .fsv2-play { display: inline-flex; }

/* ---- Header ---- */
.landing-fsv2 .fsv2-header { padding: 34px 0 10px; }
.landing-fsv2 .fsv2-header-inner { display: flex; align-items: center; justify-content: space-between; }
.landing-fsv2 .fsv2-logo img { height: 36px; width: auto; }
.landing-fsv2 .fsv2-header .fsv2-btn { padding: 13px 30px; }

/* ---- Hero ---- */
.landing-fsv2 .fsv2-hero { padding: 56px 0 88px; }
.landing-fsv2 .fsv2-hero-grid {
  display: grid; grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.42fr);
  gap: 3.5rem; align-items: center;
}
.landing-fsv2 .fsv2-h1 {
  font-family: var(--sans);
  font-size: 50.2px; font-weight: 600; line-height: 1.08; letter-spacing: -0.02em; color: var(--ink);
}
.landing-fsv2 .fsv2-subhead {
  margin-top: 2rem; font-size: 26.2px; font-style: italic; font-weight: 600;
  line-height: 1.35; color: #0c0b0a; max-width: 30ch;
}
.landing-fsv2 .fsv2-body {
  margin-top: 1.75rem; font-size: 20px; font-weight: 400; line-height: 2.18; color: #0c0b0a; max-width: 34ch;
}
.landing-fsv2 .fsv2-ctas { display: flex; gap: 1rem; margin-top: 3rem; flex-wrap: wrap; }

/* Hero media — static image; clicking it opens the video modal (no play overlay). */
.landing-fsv2 .fsv2-hero-media { position: relative; width: 100%; cursor: pointer; }
.landing-fsv2 .fsv2-hero-fill { width: 100%; height: auto; display: block; border-radius: 20px; }
.landing-fsv2 .fsv2-hero-media:focus-visible { outline: 3px solid var(--purple); outline-offset: 4px; }

/* ---- Trust + Salesforce row ---- */
.landing-fsv2 .fsv2-hero-sub {
  display: grid; grid-template-columns: minmax(0, 0.78fr) minmax(0, 1.42fr); gap: 3.5rem;
  align-items: center; margin-top: 3rem;
}
.landing-fsv2 .fsv2-trust { display: flex; align-items: center; gap: 1.1rem; flex-wrap: wrap; }
.landing-fsv2 .fsv2-trust img { height: 62px; width: auto; }
.landing-fsv2 .fsv2-sf { display: flex; align-items: center; gap: 0.9rem; }
.landing-fsv2 .fsv2-sf-logo { height: 40px; width: auto; }
.landing-fsv2 .fsv2-sf span { font-family: var(--sans); font-size: 1.25rem; font-weight: 600; color: var(--ink); }

/* ---- Moving logo carousel (marquee) ---- */
.landing-fsv2 .fsv2-marquee {
  overflow: hidden; margin-top: 3.75rem;
  -webkit-mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
  mask-image: linear-gradient(90deg, transparent, #000 6%, #000 94%, transparent);
}
.landing-fsv2 .fsv2-marquee-track {
  display: flex; align-items: center; width: max-content; gap: 4.5rem;
  animation: fsv2-scroll var(--fsv2-marquee-speed, 30s) linear infinite;
}
.landing-fsv2 .fsv2-marquee:hover .fsv2-marquee-track { animation-play-state: paused; }
.landing-fsv2 .fsv2-marquee-item { flex: none; display: flex; align-items: center; }
.landing-fsv2 .fsv2-marquee-item img { height: 32px; width: auto; opacity: 0.85; }
@keyframes fsv2-scroll { from { transform: translateX(0); } to { transform: translateX(-50%); } }
@media (prefers-reduced-motion: reduce) {
  .landing-fsv2 .fsv2-marquee-track { animation: none; }
}

/* ---- "See How It Works" video lightbox ---- */
.landing-fsv2 .fsv2-vmodal { position: fixed; inset: 0; z-index: 100050; display: flex; align-items: center; justify-content: center; padding: 24px; }
.landing-fsv2 .fsv2-vmodal[hidden] { display: none; }
.landing-fsv2 .fsv2-vmodal-backdrop { position: absolute; inset: 0; background: rgba(8,11,10,0.82); -webkit-backdrop-filter: blur(4px); backdrop-filter: blur(4px); }
.landing-fsv2 .fsv2-vmodal-dialog { position: relative; z-index: 1; width: min(1040px, 100%); }
.landing-fsv2 .fsv2-vmodal-frame { position: relative; width: 100%; aspect-ratio: 16 / 9; background: #000; border-radius: 14px; overflow: hidden; box-shadow: 0 24px 70px rgba(0,0,0,0.55); }
.landing-fsv2 .fsv2-vmodal-frame iframe,
.landing-fsv2 .fsv2-vmodal-frame video { position: absolute; inset: 0; width: 100%; height: 100%; border: none; }
.landing-fsv2 .fsv2-vmodal-empty { display: flex; align-items: center; justify-content: center; height: 100%; color: #fff; font-family: var(--sans); font-size: 1rem; text-align: center; padding: 2rem; }
.landing-fsv2 .fsv2-vmodal-close { position: absolute; top: -54px; right: 0; z-index: 3; width: 42px; height: 42px; border-radius: 50%; border: none; background: #fff; color: #111; font-size: 26px; line-height: 1; cursor: pointer; display: flex; align-items: center; justify-content: center; box-shadow: 0 6px 18px rgba(0,0,0,0.35); }
.landing-fsv2 .fsv2-vmodal-close:hover { background: #ececec; }

/* ---- Load-in: staggered fade + rise (skipped for reduced motion so nothing hides) ---- */
@media (prefers-reduced-motion: no-preference) {
  .landing-fsv2 .fsv2-header-inner,
  .landing-fsv2 .fsv2-h1,
  .landing-fsv2 .fsv2-subhead,
  .landing-fsv2 .fsv2-body,
  .landing-fsv2 .fsv2-ctas,
  .landing-fsv2 .fsv2-hero-media,
  .landing-fsv2 .fsv2-hero-sub,
  .landing-fsv2 .fsv2-marquee {
    opacity: 0;
    animation: fsv2-rise 0.7s cubic-bezier(.2, .7, .2, 1) forwards;
  }
  .landing-fsv2 .fsv2-header-inner { animation-delay: 0.02s; }
  .landing-fsv2 .fsv2-hero-media   { animation-delay: 0.14s; }
  .landing-fsv2 .fsv2-h1           { animation-delay: 0.10s; }
  .landing-fsv2 .fsv2-subhead      { animation-delay: 0.18s; }
  .landing-fsv2 .fsv2-body         { animation-delay: 0.26s; }
  .landing-fsv2 .fsv2-ctas         { animation-delay: 0.34s; }
  .landing-fsv2 .fsv2-hero-sub     { animation-delay: 0.42s; }
  .landing-fsv2 .fsv2-marquee      { animation-delay: 0.50s; }
}
@keyframes fsv2-rise { from { opacity: 0; transform: translateY(18px); } to { opacity: 1; transform: none; } }

/* ---- Responsive ---- */
@media (max-width: 900px) {
  .landing-fsv2 .fsv2-wrap { padding: 0 24px; }
  .landing-fsv2 .fsv2-header { padding: 22px 0 6px; }

  .landing-fsv2 .fsv2-hero { padding: 26px 0 60px; }
  .landing-fsv2 .fsv2-hero-grid { grid-template-columns: 1fr; gap: 2.5rem; }
  .landing-fsv2 .fsv2-h1 { font-size: 2.6rem; }
  .landing-fsv2 .fsv2-subhead { font-size: 1.3rem; max-width: none; }
  .landing-fsv2 .fsv2-body { max-width: none; }
  .landing-fsv2 .fsv2-ctas .fsv2-btn { flex: 1 1 auto; }

  .landing-fsv2 .fsv2-hero-sub { grid-template-columns: 1fr; gap: 2rem; margin-top: 2.25rem; text-align: center; }
  .landing-fsv2 .fsv2-trust { justify-content: center; gap: 1rem; }
  .landing-fsv2 .fsv2-trust img { height: 54px; }
  .landing-fsv2 .fsv2-sf { justify-content: center; }
  .landing-fsv2 .fsv2-sf span { font-size: 1.1rem; }

  .landing-fsv2 .fsv2-marquee { margin-top: 2.75rem; }
  .landing-fsv2 .fsv2-marquee-track { gap: 3rem; }
  .landing-fsv2 .fsv2-marquee-item img { height: 26px; }
}
@media (max-width: 520px) {
  .landing-fsv2 .fsv2-h1 { font-size: 2.15rem; }
  .landing-fsv2 .fsv2-subhead { font-size: 1.15rem; }
  .landing-fsv2 .fsv2-ctas { flex-direction: column; }
  .landing-fsv2 .fsv2-ctas .fsv2-btn { width: 100%; }
  .landing-fsv2 .fsv2-header .fsv2-btn { padding: 11px 22px; font-size: 12px; }
}
