/* ==========================================================================
   FoxInspect — Home page (scoped, fx- namespace). Does not affect other pages.
   ========================================================================== */

:root {
  --fx-purple-50:  #f5f3ff;
  --fx-purple-100: #ede9fe;
  --fx-purple-200: #ddd6fe;
  --fx-purple-400: #a78bfa;
  --fx-purple-500: #8b5cf6;
  --fx-purple-600: #7c3aed;
  --fx-purple-700: #6d28d9;
  --fx-purple-900: #3b0f74;

  --fx-amber:  #f59e0b;   /* fox accent */
  --fx-amber-600: #ea8a04;

  --fx-ink:    #14101f;
  --fx-body:   #4b4658;
  --fx-muted:  #6e6880;
  --fx-line:   #eae7f1;
  --fx-surface:#ffffff;
  --fx-bg:     #ffffff;
  --fx-bg-alt: #faf9fe;

  --fx-green-bg: #dcfce7; --fx-green-fg: #15803d;
  --fx-amber-bg: #fef3c7; --fx-amber-fg: #b45309;

  --fx-grad: linear-gradient(135deg, #7c3aed 0%, #5b21b6 100%);
  --fx-grad-warm: linear-gradient(135deg, #7c3aed 0%, #b23bd6 55%, #f59e0b 130%);

  --fx-shadow-sm: 0 1px 2px rgba(20,16,31,.06), 0 1px 3px rgba(20,16,31,.08);
  --fx-shadow-md: 0 8px 24px rgba(20,16,31,.08), 0 2px 6px rgba(20,16,31,.05);
  --fx-shadow-lg: 0 30px 60px -20px rgba(60,20,120,.35);

  --fx-radius: 16px;
  --fx-radius-lg: 24px;
  --fx-container: 1200px;
  --fx-header-h: 68px;

  --fx-font: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Helvetica, Arial, sans-serif;
}

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

html { scroll-behavior: smooth; scroll-padding-top: calc(var(--fx-header-h) + 12px); -webkit-text-size-adjust: 100%; }

body {
  margin: 0;
  font-family: var(--fx-font);
  color: var(--fx-body);
  background: var(--fx-bg);
  line-height: 1.6;
  -webkit-font-smoothing: antialiased;
  text-rendering: optimizeLegibility;
}

img { max-width: 100%; display: block; }
h1, h2, h3, h4 { color: var(--fx-ink); line-height: 1.12; letter-spacing: -0.02em; margin: 0; }
p { margin: 0; }
a { color: inherit; text-decoration: none; }

:focus-visible { outline: 3px solid var(--fx-purple-400); outline-offset: 2px; border-radius: 6px; }

.fx-container { width: 100%; max-width: var(--fx-container); margin-inline: auto; padding-inline: 24px; }

.fx-skip {
  position: absolute; left: 12px; top: -60px; z-index: 200;
  background: var(--fx-purple-700); color: #fff; padding: 10px 16px; border-radius: 10px;
  transition: top .2s ease;
}
.fx-skip:focus { top: 12px; }

/* --------------------------------------------------------------- Buttons */
.fx-btn {
  --pad: 11px 18px;
  display: inline-flex; align-items: center; justify-content: center; gap: 8px;
  padding: var(--pad); border-radius: 12px; font-weight: 600; font-size: 15px;
  border: 1px solid transparent; cursor: pointer; white-space: nowrap;
  transition: transform .15s ease, box-shadow .2s ease, background .2s ease, color .2s ease, border-color .2s ease;
}
.fx-btn--lg { --pad: 15px 26px; font-size: 16px; border-radius: 14px; }
.fx-btn:active { transform: translateY(1px); }

.fx-btn--primary { background: var(--fx-grad); color: #fff; box-shadow: 0 8px 20px -6px rgba(124,58,237,.6); }
.fx-btn--primary:hover { box-shadow: 0 14px 30px -8px rgba(124,58,237,.7); transform: translateY(-1px); }

.fx-btn--soft { background: var(--fx-purple-50); color: var(--fx-purple-700); border-color: var(--fx-purple-100); }
.fx-btn--soft:hover { background: var(--fx-purple-100); }

.fx-btn--ghost { background: transparent; color: var(--fx-ink); }
.fx-btn--ghost:hover { background: var(--fx-purple-50); color: var(--fx-purple-700); }

.fx-btn--white { background: #fff; color: var(--fx-purple-700); box-shadow: var(--fx-shadow-md); }
.fx-btn--white:hover { transform: translateY(-1px); box-shadow: var(--fx-shadow-lg); }

.fx-btn--outline { background: transparent; color: #fff; border-color: rgba(255,255,255,.5); }
.fx-btn--outline:hover { background: rgba(255,255,255,.12); border-color: #fff; }

.fx-btn__arrow { transition: transform .2s ease; }
.fx-btn--primary:hover .fx-btn__arrow, .fx-btn--white:hover .fx-btn__arrow { transform: translateX(3px); }

/* ---------------------------------------------------------------- Header */
.fx-header {
  position: sticky; top: 0; z-index: 100;
  height: var(--fx-header-h);
  background: rgba(255,255,255,.72);
  backdrop-filter: saturate(180%) blur(14px);
  -webkit-backdrop-filter: saturate(180%) blur(14px);
  border-bottom: 1px solid transparent;
  transition: border-color .2s ease, box-shadow .2s ease, background .2s ease;
}
.fx-header--scrolled { border-bottom-color: var(--fx-line); box-shadow: 0 4px 20px rgba(20,16,31,.05); }
.fx-header__inner { height: 100%; display: flex; align-items: center; justify-content: space-between; gap: 20px; }

.fx-logo { display: inline-flex; align-items: center; gap: 10px; font-weight: 800; color: var(--fx-ink); letter-spacing: -0.02em; }
.fx-logo__img { border-radius: 9px; }
.fx-logo__text { font-size: 19px; }
.fx-logo--light, .fx-logo--light .fx-logo__text { color: #fff; }

.fx-nav { display: flex; align-items: center; gap: 28px; }
.fx-nav__list { display: flex; align-items: center; gap: 26px; list-style: none; margin: 0; padding: 0; }
.fx-nav__link { font-size: 15px; font-weight: 500; color: var(--fx-body); position: relative; padding: 6px 0; }
.fx-nav__link::after {
  content: ""; position: absolute; left: 0; right: 100%; bottom: 0; height: 2px;
  background: var(--fx-grad); border-radius: 2px; transition: right .25s ease;
}
.fx-nav__link:hover { color: var(--fx-ink); }
.fx-nav__link:hover::after { right: 0; }
.fx-nav__actions { display: flex; align-items: center; gap: 10px; }

.fx-nav-toggle { display: none; width: 44px; height: 44px; border: 0; background: transparent; cursor: pointer; padding: 10px; }
.fx-nav-toggle__bar { display: block; height: 2px; width: 100%; background: var(--fx-ink); border-radius: 2px; transition: transform .25s ease, opacity .2s ease; }
.fx-nav-toggle__bar + .fx-nav-toggle__bar { margin-top: 5px; }

/* ------------------------------------------------------------------ Hero */
.fx-hero { position: relative; overflow: hidden; padding: clamp(48px, 8vw, 96px) 0 clamp(56px, 8vw, 100px); }
.fx-hero__glow {
  position: absolute; inset: -20% -10% auto -10%; height: 720px; z-index: 0; pointer-events: none;
  background:
    radial-gradient(closest-side at 22% 30%, rgba(124,58,237,.28), transparent 70%),
    radial-gradient(closest-side at 82% 20%, rgba(245,158,11,.20), transparent 70%),
    radial-gradient(closest-side at 60% 60%, rgba(139,92,246,.20), transparent 70%);
  filter: blur(6px);
}
.fx-hero__inner {
  position: relative; z-index: 1;
  display: grid; grid-template-columns: 1.05fr 1fr; gap: clamp(28px, 5vw, 64px); align-items: center;
}
.fx-hero__copy { max-width: 620px; }

.fx-badge {
  display: inline-flex; align-items: center; gap: 8px;
  padding: 7px 14px; border-radius: 999px; font-size: 13px; font-weight: 600;
  color: var(--fx-purple-700); background: var(--fx-purple-50); border: 1px solid var(--fx-purple-100);
}
.fx-badge__dot { width: 8px; height: 8px; border-radius: 50%; background: #22c55e; box-shadow: 0 0 0 4px rgba(34,197,94,.18); }

.fx-hero__title { font-size: clamp(38px, 6vw, 62px); font-weight: 800; margin: 20px 0 0; }
.fx-grad { background: var(--fx-grad-warm); -webkit-background-clip: text; background-clip: text; color: transparent; }
.fx-hero__subtitle { font-size: clamp(17px, 2vw, 20px); color: var(--fx-body); margin-top: 20px; max-width: 560px; }

.fx-hero__cta { display: flex; flex-wrap: wrap; gap: 14px; margin-top: 30px; }
.fx-hero__trust { display: flex; flex-wrap: wrap; gap: 18px; list-style: none; margin: 24px 0 0; padding: 0; color: var(--fx-muted); font-size: 14px; font-weight: 500; }
.fx-hero__trust li { display: inline-flex; align-items: center; gap: 7px; }
.fx-hero__trust span { color: #22c55e; font-weight: 800; }

/* Product mockup */
.fx-hero__visual { position: relative; min-height: 420px; }

.fx-window {
  position: relative; z-index: 2; border-radius: var(--fx-radius-lg); overflow: hidden;
  background: #fff; box-shadow: var(--fx-shadow-lg); border: 1px solid var(--fx-line);
  transform: perspective(1400px) rotateY(-9deg) rotateX(3deg);
  transform-origin: center;
}
.fx-window__bar { display: flex; align-items: center; gap: 7px; padding: 12px 14px; background: #f4f2f9; border-bottom: 1px solid var(--fx-line); }
.fx-window__dot { width: 11px; height: 11px; border-radius: 50%; background: #d7d2e2; }
.fx-window__dot:nth-child(1){ background:#ff5f57;} .fx-window__dot:nth-child(2){ background:#febc2e;} .fx-window__dot:nth-child(3){ background:#28c840;}
.fx-window__url { margin-left: 10px; flex: 1; font-size: 12px; color: var(--fx-muted); background: #fff; border: 1px solid var(--fx-line); border-radius: 7px; padding: 5px 10px; }
.fx-window__body { display: grid; grid-template-columns: 128px 1fr; min-height: 300px; }

.fx-mini-side { background: #fbfaff; border-right: 1px solid var(--fx-line); padding: 14px 10px; display: flex; flex-direction: column; gap: 4px; }
.fx-mini-brand { display: flex; align-items: center; gap: 7px; font-weight: 800; color: var(--fx-ink); font-size: 13px; margin-bottom: 10px; }
.fx-mini-nav { font-size: 12px; color: var(--fx-muted); padding: 7px 8px; border-radius: 8px; }
.fx-mini-nav.is-active { background: var(--fx-purple-50); color: var(--fx-purple-700); font-weight: 600; }

.fx-mini-main { padding: 16px; display: flex; flex-direction: column; gap: 10px; }
.fx-mini-stats { display: grid; grid-template-columns: repeat(3, 1fr); gap: 10px; }
.fx-mini-stat { background: #fff; border: 1px solid var(--fx-line); border-radius: 12px; padding: 10px; box-shadow: var(--fx-shadow-sm); }
.fx-mini-stat b { display: block; font-size: 18px; color: var(--fx-ink); }
.fx-mini-stat span { font-size: 10px; color: var(--fx-muted); }
.fx-mini-row { display: flex; align-items: center; gap: 10px; background: #fff; border: 1px solid var(--fx-line); border-radius: 12px; padding: 10px 12px; }
.fx-mini-avatar { width: 28px; height: 28px; border-radius: 50%; background: var(--fx-grad); color: #fff; font-size: 10px; font-weight: 700; display: grid; place-items: center; flex: none; }
.fx-mini-lines { flex: 1; display: flex; flex-direction: column; gap: 5px; }
.fx-mini-lines i { height: 7px; border-radius: 4px; background: #ece9f4; display: block; }

.fx-chip { font-size: 10px; font-weight: 700; padding: 4px 9px; border-radius: 999px; background: #eef0f4; color: #64748b; white-space: nowrap; }
.fx-chip--green { background: var(--fx-green-bg); color: var(--fx-green-fg); }
.fx-chip--amber { background: var(--fx-amber-bg); color: var(--fx-amber-fg); }

.fx-phone {
  position: absolute; z-index: 3; right: -8px; bottom: -34px; width: 168px;
  background: #0f0a1e; border-radius: 26px; padding: 8px; box-shadow: var(--fx-shadow-lg);
  border: 1px solid rgba(255,255,255,.08);
}
.fx-phone__notch { width: 54px; height: 5px; background: #2c2540; border-radius: 3px; margin: 4px auto 8px; }
.fx-phone__screen { background: #fff; border-radius: 18px; padding: 14px; display: flex; flex-direction: column; gap: 10px; }
.fx-phone__head { font-size: 11px; font-weight: 700; color: var(--fx-ink); }
.fx-phone__photo { height: 88px; border-radius: 12px; background: linear-gradient(135deg, #ede9fe, #fde9c8); display: grid; place-items: center; font-size: 30px; }
.fx-phone__progress { height: 7px; border-radius: 4px; background: #eee7fb; overflow: hidden; }
.fx-phone__progress i { display: block; height: 100%; width: 33%; background: var(--fx-grad); }
.fx-phone__btn { text-align: center; font-size: 12px; font-weight: 700; color: #fff; background: var(--fx-grad); border-radius: 10px; padding: 9px; }

.fx-float {
  position: absolute; z-index: 4; left: -26px; bottom: 46px;
  display: flex; align-items: center; gap: 10px;
  background: #fff; border: 1px solid var(--fx-line); border-radius: 14px; padding: 10px 14px;
  box-shadow: var(--fx-shadow-md); animation: fx-bob 4.5s ease-in-out infinite;
}
.fx-float__icon { width: 34px; height: 34px; border-radius: 9px; background: var(--fx-green-bg); display: grid; place-items: center; font-size: 17px; }
.fx-float b { display: block; font-size: 13px; color: var(--fx-ink); }
.fx-float small { font-size: 11px; color: var(--fx-muted); }
@keyframes fx-bob { 0%,100% { transform: translateY(0); } 50% { transform: translateY(-9px); } }

/* --------------------------------------------------------------- Trustbar */
.fx-trustbar { border-block: 1px solid var(--fx-line); background: var(--fx-bg-alt); }
.fx-trustbar__inner { display: grid; grid-template-columns: repeat(4, 1fr); gap: 20px; padding: 34px 0; text-align: center; }
.fx-stat b { display: block; font-size: clamp(26px, 4vw, 38px); font-weight: 800; background: var(--fx-grad); -webkit-background-clip: text; background-clip: text; color: transparent; letter-spacing: -0.03em; }
.fx-stat span { font-size: 13px; color: var(--fx-muted); font-weight: 500; }

/* --------------------------------------------------------------- Sections */
.fx-section { padding: clamp(56px, 9vw, 104px) 0; }
.fx-section--alt { background: var(--fx-bg-alt); border-block: 1px solid var(--fx-line); }

.fx-head { max-width: 680px; margin: 0 auto clamp(36px, 5vw, 56px); text-align: center; }
.fx-eyebrow { text-transform: uppercase; letter-spacing: .14em; font-size: 12px; font-weight: 800; color: var(--fx-purple-600); margin-bottom: 12px; }
.fx-head h2 { font-size: clamp(28px, 4.4vw, 44px); font-weight: 800; }
.fx-head__sub { margin-top: 14px; font-size: clamp(16px, 2vw, 19px); color: var(--fx-body); }
.fx-head__cta { text-align: center; margin-top: clamp(32px, 5vw, 48px); }

.fx-rating { margin-top: 14px; font-weight: 600; color: var(--fx-body); }
.fx-rating span { color: var(--fx-amber); letter-spacing: 2px; margin-right: 6px; }

/* Bento */
.fx-bento { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.fx-card {
  background: var(--fx-surface); border: 1px solid var(--fx-line); border-radius: var(--fx-radius-lg);
  padding: 26px; box-shadow: var(--fx-shadow-sm);
  transition: transform .2s ease, box-shadow .2s ease, border-color .2s ease;
}
.fx-card:hover { transform: translateY(-4px); box-shadow: var(--fx-shadow-md); border-color: var(--fx-purple-200); }
.fx-card--lg { grid-row: span 2; display: flex; flex-direction: column; }
.fx-card--wide { grid-column: span 2; }
.fx-card__icon {
  width: 52px; height: 52px; border-radius: 14px; display: grid; place-items: center; font-size: 26px;
  background: var(--fx-purple-50); border: 1px solid var(--fx-purple-100); margin-bottom: 18px;
}
.fx-card h3 { font-size: 20px; margin-bottom: 8px; }
.fx-card p { font-size: 15px; color: var(--fx-body); }
.fx-card__art { display: flex; flex-wrap: wrap; gap: 8px; margin-top: auto; padding-top: 22px; }
.fx-card__art .fx-chip { font-size: 12px; padding: 6px 12px; }

/* Steps */
.fx-steps { list-style: none; margin: 0; padding: 0; display: grid; grid-template-columns: repeat(4, 1fr); gap: 22px; position: relative; }
.fx-steps::before { content: ""; position: absolute; top: 27px; left: 12%; right: 12%; height: 2px; background: linear-gradient(90deg, var(--fx-purple-200), var(--fx-purple-400), var(--fx-purple-200)); z-index: 0; }
.fx-step { position: relative; z-index: 1; text-align: center; padding: 0 6px; }
.fx-step__num {
  width: 54px; height: 54px; border-radius: 50%; margin: 0 auto 18px; display: grid; place-items: center;
  font-size: 22px; font-weight: 800; color: #fff; background: var(--fx-grad);
  box-shadow: 0 10px 22px -8px rgba(124,58,237,.6); border: 4px solid var(--fx-bg-alt);
}
.fx-step h3 { font-size: 18px; margin-bottom: 8px; }
.fx-step p { font-size: 14.5px; color: var(--fx-body); }

/* Testimonials */
.fx-quotes { display: grid; grid-template-columns: repeat(3, 1fr); gap: 20px; }
.fx-quote { background: var(--fx-surface); border: 1px solid var(--fx-line); border-radius: var(--fx-radius-lg); padding: 26px; box-shadow: var(--fx-shadow-sm); margin: 0; display: flex; flex-direction: column; }
.fx-quote blockquote { margin: 0 0 20px; font-size: 16px; color: var(--fx-ink); line-height: 1.6; }
.fx-quote figcaption { display: flex; align-items: center; gap: 12px; margin-top: auto; }
.fx-quote__avatar { width: 42px; height: 42px; border-radius: 50%; background: var(--fx-grad); color: #fff; font-weight: 700; font-size: 14px; display: grid; place-items: center; flex: none; }
.fx-quote figcaption b { display: block; font-size: 14px; color: var(--fx-ink); }
.fx-quote figcaption small { font-size: 13px; color: var(--fx-muted); }

/* Final CTA */
.fx-cta { position: relative; overflow: hidden; background: var(--fx-grad); color: #fff; padding: clamp(60px, 9vw, 100px) 0; text-align: center; }
.fx-cta::before { content: ""; position: absolute; inset: 0; background: radial-gradient(closest-side at 80% 10%, rgba(245,158,11,.35), transparent 60%), radial-gradient(closest-side at 10% 90%, rgba(255,255,255,.18), transparent 60%); pointer-events: none; }
.fx-cta__inner { position: relative; z-index: 1; max-width: 720px; margin: 0 auto; }
.fx-cta h2 { color: #fff; font-size: clamp(28px, 4.6vw, 46px); font-weight: 800; }
.fx-cta p { margin-top: 14px; font-size: clamp(16px, 2vw, 20px); color: rgba(255,255,255,.9); }
.fx-cta__buttons { display: flex; flex-wrap: wrap; gap: 14px; justify-content: center; margin-top: 30px; }
.fx-cta__fine { margin-top: 18px; font-size: 14px; color: rgba(255,255,255,.75); }

/* Contact */
.fx-contact { max-width: 640px; margin: 0 auto; display: grid; gap: 18px; }
.fx-contact__field { display: grid; gap: 8px; }
.fx-contact__field label { font-size: 14px; font-weight: 700; color: var(--fx-ink); }
.fx-contact__field input,
.fx-contact__field textarea {
  width: 100%; padding: 12px 14px; font: inherit; font-size: 15px; color: var(--fx-ink);
  background: var(--fx-surface); border: 1px solid var(--fx-line); border-radius: 12px;
  transition: border-color .15s ease, box-shadow .15s ease;
}
.fx-contact__field input::placeholder,
.fx-contact__field textarea::placeholder { color: var(--fx-muted); }
.fx-contact__field input:focus,
.fx-contact__field textarea:focus { outline: none; border-color: var(--fx-purple-400); box-shadow: 0 0 0 3px var(--fx-purple-100); }
.fx-contact__field textarea { resize: vertical; min-height: 140px; }
.fx-contact__status { font-size: 14px; }
.fx-contact__status:empty { display: none; }
.fx-contact__status--success { color: var(--fx-green-fg); }
.fx-contact__status--error { color: #b91c1c; }
.fx-contact .fx-btn { justify-self: start; }

/* Footer */
.fx-footer { background: #14101f; color: #b9b3c9; padding: clamp(48px, 7vw, 72px) 0 32px; }
.fx-footer__grid { display: grid; grid-template-columns: 1.6fr 1fr 1fr 1fr; gap: 32px; padding-bottom: 40px; border-bottom: 1px solid rgba(255,255,255,.1); }
.fx-footer__brand p { margin-top: 14px; font-size: 14px; max-width: 320px; color: #948da8; }
.fx-footer__col h3 { color: #fff; font-size: 14px; margin-bottom: 14px; letter-spacing: .01em; }
.fx-footer__col a { display: block; font-size: 14px; color: #b9b3c9; padding: 5px 0; transition: color .15s ease; }
.fx-footer__col a:hover { color: #fff; }
.fx-footer__bottom { display: flex; align-items: center; justify-content: space-between; gap: 16px; flex-wrap: wrap; padding-top: 24px; font-size: 13px; color: #8b839e; }
.fx-footer__social { display: flex; gap: 10px; }
.fx-footer__social a { width: 38px; height: 38px; border-radius: 10px; display: grid; place-items: center; background: rgba(255,255,255,.06); color: #cfc9dd; font-weight: 700; transition: background .15s ease, color .15s ease; }
.fx-footer__social a:hover { background: var(--fx-purple-600); color: #fff; }

/* Reveal animation */
.fx-reveal { opacity: 0; transform: translateY(24px); transition: opacity .6s cubic-bezier(.2,.7,.2,1), transform .6s cubic-bezier(.2,.7,.2,1); }
.fx-reveal.is-visible { opacity: 1; transform: none; }

/* ------------------------------------------------------------ Responsive */
@media (max-width: 960px) {
  .fx-hero__inner { grid-template-columns: 1fr; }
  .fx-hero__copy { max-width: none; }
  .fx-hero__visual { margin-top: 20px; }
  .fx-window { transform: none; }
  .fx-bento { grid-template-columns: repeat(2, 1fr); }
  .fx-card--lg { grid-row: auto; }
  .fx-card--wide { grid-column: span 2; }
  .fx-quotes { grid-template-columns: 1fr; max-width: 560px; margin-inline: auto; }
  .fx-footer__grid { grid-template-columns: 1fr 1fr; }
  .fx-footer__brand { grid-column: 1 / -1; }
}

@media (max-width: 760px) {
  .fx-nav {
    position: fixed; inset: var(--fx-header-h) 0 auto 0; z-index: 90;
    flex-direction: column; align-items: stretch; gap: 8px;
    background: #fff; border-bottom: 1px solid var(--fx-line); padding: 16px 24px 22px;
    box-shadow: 0 20px 40px rgba(20,16,31,.12);
    transform: translateY(-140%); transition: transform .28s ease; visibility: hidden;
  }
  .fx-header--nav-open .fx-nav { transform: translateY(0); visibility: visible; }
  .fx-nav__list { flex-direction: column; align-items: stretch; gap: 4px; }
  .fx-nav__link { padding: 12px 8px; border-radius: 10px; }
  .fx-nav__link:hover { background: var(--fx-purple-50); }
  .fx-nav__link::after { display: none; }
  .fx-nav__actions { flex-direction: column; align-items: stretch; margin-top: 8px; }
  .fx-nav__actions .fx-btn { width: 100%; }
  .fx-nav-toggle { display: block; }
  .fx-header--nav-open .fx-nav-toggle__bar:nth-child(1) { transform: translateY(7px) rotate(45deg); }
  .fx-header--nav-open .fx-nav-toggle__bar:nth-child(2) { opacity: 0; }
  .fx-header--nav-open .fx-nav-toggle__bar:nth-child(3) { transform: translateY(-7px) rotate(-45deg); }

  .fx-trustbar__inner { grid-template-columns: 1fr 1fr; gap: 26px 12px; }
  .fx-bento { grid-template-columns: 1fr; }
  .fx-card--wide { grid-column: auto; }
  .fx-steps { grid-template-columns: 1fr; gap: 14px; }
  .fx-steps::before { display: none; }
  .fx-step { text-align: left; display: grid; grid-template-columns: 54px 1fr; column-gap: 16px; row-gap: 2px; align-items: start; }
  .fx-step__num { margin: 0; grid-column: 1; grid-row: 1 / span 2; }
  .fx-step h3 { grid-column: 2; align-self: center; }
  .fx-step p { grid-column: 2; }
  .fx-hero__cta .fx-btn { width: 100%; }
  .fx-phone { width: 132px; right: 4px; bottom: -24px; }
  .fx-float { left: 0; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fx-reveal { opacity: 1; transform: none; transition: none; }
  .fx-float { animation: none; }
  .fx-btn, .fx-card { transition: none; }
}
