/* Fendix homepage v2 — deliberately isolated from the legacy parent theme. */
html {
  scroll-behavior: smooth;
}

body.fendix-redesign-home {
  margin: 0;
  background: #252f3c;
  color: #f6f6f6;
  font-family: Arial, Helvetica, sans-serif;
}

body.fendix-redesign-home.admin-bar .fx-header {
  top: 32px;
}

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

.fx-home {
  --fx-navy: #252f3c;
  --fx-navy-soft: #313c49;
  --fx-grey: #71777e;
  --fx-light-grey: #c1c1c5;
  --fx-white: #f6f6f6;
  --fx-red: #d1392e;
  --fx-border: rgba(193, 193, 197, 0.52);
  min-height: 100vh;
  overflow: clip;
  background: var(--fx-navy);
  color: var(--fx-white);
  font-size: 16px;
  line-height: 1.5;
}

.fx-home a {
  color: inherit;
  text-decoration: none;
}

.fx-home img,
.fx-home video {
  display: block;
  max-width: 100%;
}

.fx-home button,
.fx-home input,
.fx-home select,
.fx-home textarea {
  font: inherit;
}

.fx-home h1,
.fx-home h2,
.fx-home h3,
.fx-home p,
.fx-home ul,
.fx-home dl,
.fx-home figure {
  margin-top: 0;
}

.fx-home section[id] {
  scroll-margin-top: 92px;
}

.fx-home h1,
.fx-home h2,
.fx-home h3 {
  color: inherit;
  font-family: Arial, Helvetica, sans-serif;
  text-transform: none;
}

.fx-home h2 {
  max-width: 760px;
  margin-bottom: 1rem;
  font-size: clamp(2rem, 4vw, 3.1rem);
  font-weight: 500;
  letter-spacing: -0.035em;
  line-height: 1.06;
}

.fx-home h3 {
  margin-bottom: 0.6rem;
  font-size: 1.08rem;
  font-weight: 600;
  line-height: 1.25;
}

.fx-shell {
  width: min(1180px, calc(100% - 48px));
  margin-inline: auto;
}

.fx-skip-link {
  position: fixed;
  top: 12px;
  left: 12px;
  z-index: 10000;
  padding: 0.7rem 1rem;
  transform: translateY(-160%);
  border-radius: 4px;
  background: #f6f6f6;
  color: #252f3c;
}

.fx-skip-link:focus {
  transform: none;
}

.fx-header {
  position: sticky;
  top: 0;
  z-index: 100;
  border-bottom: 1px solid rgba(255, 255, 255, 0.08);
  background: rgba(37, 47, 60, 0.97);
  backdrop-filter: blur(12px);
}

.fx-header-inner {
  display: flex;
  min-height: 92px;
  align-items: center;
  justify-content: space-between;
  gap: 1.25rem;
}

.fx-logo {
  display: block;
  width: 98px;
  flex: 0 0 auto;
}

.fx-logo img {
  width: 100%;
  height: auto;
}

.fx-nav {
  display: flex;
  align-items: center;
  gap: 0.25rem;
}

.fx-nav > a:not(.fx-button) {
  padding: 0.7rem 0.8rem;
  color: var(--fx-light-grey);
  font-size: 0.84rem;
  font-weight: 600;
}

.fx-nav > a:hover,
.fx-nav > a:focus-visible {
  color: var(--fx-white);
}

.fx-nav .fx-nav-phone {
  margin-right: 0.55rem;
  color: var(--fx-white) !important;
}

.fx-mobile-actions,
.fx-mobile-menu {
  display: none;
}

.fx-button {
  display: inline-flex;
  min-height: 46px;
  align-items: center;
  justify-content: center;
  gap: 0.45rem;
  padding: 0.72rem 1.15rem;
  border: 1px solid var(--fx-red);
  border-radius: 5px;
  background: var(--fx-red);
  color: var(--fx-white) !important;
  font-size: 0.82rem;
  font-weight: 700;
  line-height: 1.1;
  transition: transform 160ms ease, background 160ms ease, border-color 160ms ease;
}

.fx-button:hover,
.fx-button:focus-visible {
  transform: translateY(-1px);
  border-color: #e04b40;
  background: #e04b40;
}

.fx-button-small {
  min-height: 42px;
  margin-left: 0.5rem;
}

.fx-button-outline {
  background: transparent;
}

.fx-button-outline small {
  padding: 0.12rem 0.28rem;
  border: 1px solid var(--fx-border);
  border-radius: 3px;
  color: var(--fx-light-grey);
  font-size: 0.66rem;
}

.fx-eyebrow {
  margin-bottom: 0.8rem;
  color: var(--fx-red);
  font-size: 0.72rem;
  font-weight: 700;
  letter-spacing: 0.13em;
  text-transform: uppercase;
}

.fx-kicker-row {
  display: flex;
  flex-wrap: wrap;
  align-items: center;
  gap: 0.55rem 0.75rem;
  margin-bottom: 0.8rem;
}

.fx-kicker-row .fx-eyebrow {
  margin-bottom: 0;
}

.fx-patent {
  display: inline-flex;
  align-items: center;
  min-height: 24px;
  padding: 0.2rem 0.55rem;
  border: 1px solid rgba(193, 193, 197, 0.42);
  border-radius: 999px;
  color: var(--fx-light-grey);
  font-size: 0.62rem;
  font-weight: 700;
  letter-spacing: 0.08em;
  line-height: 1;
  text-transform: uppercase;
}

.fx-hero {
  padding: clamp(3.5rem, 7vw, 6.25rem) 0 2.5rem;
  background: var(--fx-navy);
}

.fx-hero-grid {
  display: grid;
  grid-template-columns: minmax(0, 1fr) minmax(430px, 1.1fr);
  align-items: center;
  gap: clamp(2.5rem, 6vw, 5rem);
}

.fx-hero h1 {
  margin-bottom: 1.4rem;
  color: var(--fx-white);
  font-size: clamp(3rem, 5.2vw, 4.35rem);
  font-weight: 500;
  letter-spacing: -0.055em;
  line-height: 0.92;
}

.fx-hero h1 span {
  display: block;
}

.fx-lead {
  max-width: 640px;
  margin-bottom: 0;
  color: var(--fx-white);
  font-size: 1.02rem;
  line-height: 1.65;
}

.fx-actions {
  display: flex;
  flex-wrap: wrap;
  gap: 0.7rem;
  margin-top: 1.6rem;
}

.fx-inline-link {
  display: inline-block;
  margin-top: 1.15rem;
  color: var(--fx-white);
  font-size: 0.78rem;
  font-weight: 600;
}

.fx-inline-link:hover,
.fx-inline-link:focus-visible {
  color: var(--fx-light-grey);
}

.fx-carousel-meta {
  display: flex;
  justify-content: space-between;
  gap: 1rem;
  margin-bottom: 0.7rem;
  color: var(--fx-light-grey);
  font-size: 0.68rem;
  font-weight: 700;
  letter-spacing: 0.04em;
  text-transform: uppercase;
}

.fx-carousel-meta b {
  color: inherit;
  font-weight: inherit;
}

.fx-carousel-library-link {
  color: inherit;
  text-decoration: underline;
  text-decoration-color: rgba(255, 255, 255, 0.35);
  text-underline-offset: 0.28em;
  transition: color 0.2s ease, text-decoration-color 0.2s ease;
}

.fx-carousel-library-link:hover,
.fx-carousel-library-link:focus-visible {
  color: var(--fx-white);
  text-decoration-color: var(--fx-red);
}

.fx-carousel-frame {
  position: relative;
  aspect-ratio: 16 / 9;
  overflow: hidden;
  border: 1px solid var(--fx-border);
  border-radius: 10px;
  background: #414141;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.3);
}

.fx-carousel-track {
  display: flex;
  width: 100%;
  height: 100%;
  overflow-x: auto;
  scroll-behavior: smooth;
  scroll-snap-type: x mandatory;
  scrollbar-width: none;
}

.fx-carousel-track::-webkit-scrollbar {
  display: none;
}

.fx-carousel-slide {
  width: 100%;
  min-width: 100%;
  height: 100%;
  margin: 0;
  scroll-snap-align: start;
}

.fx-carousel-slide img {
  width: 100%;
  height: 100%;
  object-fit: contain;
  background: #414141;
}

.fx-carousel-button {
  position: absolute;
  top: 50%;
  display: grid;
  width: 42px;
  height: 42px;
  place-items: center;
  transform: translateY(-50%);
  border: 1px solid rgba(255, 255, 255, 0.35);
  border-radius: 50%;
  background: rgba(37, 47, 60, 0.82);
  color: var(--fx-white);
  font-size: 1.75rem;
  line-height: 1;
  opacity: 0;
  transition: opacity 160ms ease, background 160ms ease;
}

.fx-carousel:hover .fx-carousel-button,
.fx-carousel:focus-within .fx-carousel-button {
  opacity: 1;
}

.fx-carousel-button:hover,
.fx-carousel-button:focus-visible {
  background: var(--fx-red);
}

.fx-carousel-prev { left: 14px; }
.fx-carousel-next { right: 14px; }

.fx-carousel-progress {
  height: 5px;
  margin-top: 0.75rem;
  overflow: hidden;
  border: 1px solid var(--fx-border);
  border-radius: 999px;
}

.fx-carousel-progress span {
  display: block;
  width: calc(100% / 7);
  height: 100%;
  border-radius: inherit;
  background: var(--fx-red);
  transition: transform 180ms ease;
}

.fx-proof {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  margin-top: clamp(2.5rem, 5vw, 4.5rem);
  overflow: hidden;
  border: 1px solid var(--fx-border);
  border-radius: 9px;
  background: var(--fx-grey);
}

.fx-proof div {
  display: grid;
  gap: 0.3rem;
  min-height: 96px;
  align-content: center;
  padding: 1rem 1.1rem;
  border-left: 1px solid var(--fx-border);
}

.fx-proof div:first-child { border-left: 0; }

.fx-proof strong {
  font-size: 0.84rem;
  font-weight: 700;
}

.fx-proof span {
  color: var(--fx-white);
  font-size: 0.7rem;
}

.fx-benefits {
  padding: clamp(3.5rem, 6vw, 5.5rem) 0 1.5rem;
  background: var(--fx-navy);
}

.fx-two-column {
  display: grid;
  grid-template-columns: minmax(0, 0.86fr) minmax(0, 1.14fr);
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: start;
}

.fx-check-list {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 1rem 1.5rem;
  margin: 0;
  padding: 0;
  list-style: none;
}

.fx-check-list li {
  position: relative;
  padding-left: 1.6rem;
  color: var(--fx-white);
  font-size: 0.88rem;
  line-height: 1.55;
}

.fx-check-list li::before {
  content: "✓";
  position: absolute;
  top: 0;
  left: 0;
  color: var(--fx-red);
  font-weight: 800;
}

.fx-fineprint {
  margin-top: 2.5rem;
  padding-top: 1.25rem;
  border-top: 1px solid rgba(255, 255, 255, 0.1);
  color: var(--fx-light-grey);
  font-size: 0.7rem;
}

.fx-section,
.fx-video-section,
.fx-compliance,
.fx-trade,
.fx-contact,
.fx-downloads {
  padding: clamp(4rem, 7vw, 6.5rem) 0;
}

.fx-section-light,
.fx-contact {
  background: var(--fx-white);
  color: var(--fx-navy);
}

.fx-section-heading > p:last-child {
  max-width: 680px;
  color: var(--fx-grey);
}

.fx-steps {
  display: grid;
  grid-template-columns: repeat(3, minmax(0, 1fr));
  gap: 1.25rem;
  margin-top: 2.75rem;
}

.fx-steps article {
  min-height: 230px;
  padding: 1.5rem;
  border: 1px solid var(--fx-light-grey);
  border-radius: 8px;
  background: #fff;
}

.fx-steps article > span,
.fx-application-grid article > span {
  display: block;
  margin-bottom: 2.4rem;
  color: var(--fx-red);
  font-size: 0.78rem;
  font-weight: 800;
  letter-spacing: 0.08em;
}

.fx-steps p,
.fx-application-grid p,
.fx-video-grid p,
.fx-contact p {
  color: var(--fx-grey);
  font-size: 0.9rem;
  line-height: 1.65;
}

.fx-video-section {
  background: var(--fx-navy-soft);
}

.fx-video-grid {
  display: grid;
  grid-template-columns: minmax(0, 0.7fr) minmax(0, 1.3fr);
  gap: clamp(2.5rem, 7vw, 6rem);
  align-items: center;
}

.fx-video-grid > div:first-child {
  max-width: 430px;
}

.fx-video-grid p:not(.fx-eyebrow) {
  color: var(--fx-light-grey);
}

.fx-video-frame {
  overflow: hidden;
  border: 1px solid var(--fx-border);
  border-radius: 10px;
  background: #111;
  box-shadow: 0 24px 54px rgba(0, 0, 0, 0.25);
}

.fx-video-frame video {
  width: 100%;
  aspect-ratio: 16 / 9;
  background: #111;
}

.fx-application-grid {
  display: grid;
  grid-template-columns: repeat(4, minmax(0, 1fr));
  gap: 1.4rem;
  margin-top: 2.75rem;
}

.fx-application-grid article {
  padding-top: 1.25rem;
  border-top: 1px solid var(--fx-grey);
}

.fx-application-grid article > span {
  margin-bottom: 2rem;
}

.fx-compliance {
  background: var(--fx-navy);
}

.fx-compliance-heading,
.fx-trade-inner {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 2rem;
}

.fx-compliance-heading {
  margin-bottom: 2rem;
}

.fx-table-wrap {
  overflow: hidden;
  border: 1px solid var(--fx-border);
  border-radius: 9px;
}

.fx-table-wrap table {
  width: 100%;
  border-collapse: collapse;
  color: var(--fx-white);
  font-size: 0.82rem;
  text-align: left;
}

.fx-table-wrap th {
  padding: 1rem;
  background: var(--fx-grey);
  color: var(--fx-white);
  font-weight: 700;
}

.fx-table-wrap td {
  padding: 1rem;
  border-top: 1px solid var(--fx-border);
  color: var(--fx-light-grey);
}

.fx-table-wrap td:first-child,
.fx-table-wrap td:nth-last-child(-n + 2) {
  color: var(--fx-white);
  font-weight: 700;
  white-space: nowrap;
}
.fx-table-wrap .fx-table-group th {
  padding: 0.68rem 1rem;
  border-top: 1px solid var(--fx-border);
  background: rgba(209, 57, 46, 0.16);
  color: var(--fx-white);
  font-size: 0.72rem;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fx-table-wrap .fx-table-group span {
  color: var(--fx-red);
}

.fx-table-wrap .fx-table-group small {
  margin-left: 0.7rem;
  color: var(--fx-light-grey);
  font-size: 0.68rem;
  font-weight: 400;
  letter-spacing: 0;
  text-transform: none;
}

.fx-compliance-intro {
  max-width: 410px;
  margin: 0;
  color: var(--fx-light-grey);
  font-size: 0.9rem;
  line-height: 1.6;
}

.fx-compliance-groups {
  display: grid;
  gap: 1.5rem;
}

.fx-compliance-group {
  padding: clamp(1rem, 2.5vw, 1.5rem);
  border: 1px solid var(--fx-border);
  border-radius: 10px;
  background: rgba(255, 255, 255, 0.025);
}

.fx-compliance-group-heading {
  display: flex;
  align-items: end;
  justify-content: space-between;
  gap: 1.5rem;
  margin-bottom: 1rem;
}

.fx-compliance-material {
  margin: 0 0 0.25rem;
  color: var(--fx-red);
  font-size: 0.7rem;
  font-weight: 800;
  letter-spacing: 0.1em;
  text-transform: uppercase;
}

.fx-compliance-group-heading h3 {
  margin: 0;
  color: var(--fx-white);
  font-size: clamp(1.35rem, 2vw, 1.75rem);
}

.fx-compliance-group-heading div > p:last-child {
  margin: 0.25rem 0 0;
  color: var(--fx-light-grey);
  font-size: 0.86rem;
}

.fx-compliance-group-heading .fx-button {
  flex: 0 0 auto;
  min-height: 42px;
  padding: 0.7rem 0.95rem;
  font-size: 0.76rem;
}

.fx-assessment-notes {
  display: grid;
  grid-template-columns: 0.5fr 1.5fr;
  gap: 2rem;
  margin-top: 1.75rem;
  padding-top: 1.5rem;
  border-top: 1px solid var(--fx-border);
}

.fx-assessment-notes ul {
  margin: 0;
  padding-left: 1.1rem;
  color: var(--fx-light-grey);
  font-size: 0.84rem;
  line-height: 1.65;
}

.fx-trade {
  padding-block: 3.75rem;
  background: var(--fx-grey);
}

.fx-trade-inner > div:first-child {
  max-width: 720px;
}

.fx-trade h2 {
  font-size: clamp(1.8rem, 3vw, 2.7rem);
}

.fx-trade p:not(.fx-eyebrow) {
  margin-bottom: 0;
}

.fx-contact-grid {
  display: grid;
  grid-template-columns: minmax(250px, 0.68fr) minmax(0, 1.32fr);
  gap: clamp(3rem, 8vw, 7rem);
  align-items: start;
}

.fx-contact-details {
  display: grid;
  grid-template-columns: auto 1fr;
  gap: 0.55rem 1.1rem;
  margin: 2rem 0 0;
  padding-top: 1.5rem;
  border-top: 1px solid var(--fx-light-grey);
  font-size: 0.85rem;
}

.fx-contact-details dt {
  color: var(--fx-grey);
}

.fx-contact-details dd {
  margin: 0;
  font-weight: 700;
}

.fx-form-wrap {
  padding: 1.45rem;
  border: 1px solid var(--fx-light-grey);
  border-radius: 10px;
  background: #fff;
}

.fx-form-wrap .cf7-dark-modern,
.fx-form-wrap .wpcf7-form {
  margin: 0;
  padding: 0;
  border: 0;
  background: transparent;
  color: var(--fx-navy);
  box-shadow: none;
}

.fx-form-wrap .cf7-grid {
  display: grid;
  grid-template-columns: repeat(2, minmax(0, 1fr));
  gap: 0.9rem;
}

.fx-form-wrap .cf7-field {
  margin-bottom: 0.9rem;
}

.fx-form-wrap label {
  display: block;
  color: var(--fx-navy);
  font-size: 0.75rem;
  font-weight: 700;
}

.fx-form-wrap .wpcf7-form-control-wrap {
  display: block;
  margin-top: 0.4rem;
}

.fx-form-wrap input:not([type="submit"]),
.fx-form-wrap select,
.fx-form-wrap textarea {
  width: 100%;
  min-height: 46px;
  margin: 0;
  padding: 0.72rem 0.8rem;
  border: 1px solid var(--fx-light-grey);
  border-radius: 5px;
  background: var(--fx-white);
  color: var(--fx-navy);
  box-shadow: none;
}

.fx-form-wrap textarea {
  min-height: 120px;
  resize: vertical;
}

.fx-form-wrap label > input,
.fx-form-wrap label > select,
.fx-form-wrap label > textarea {
  margin-top: 0.4rem;
}

.fx-form-wrap .wpcf7-not-valid-tip {
  margin-top: 0.3rem;
  color: var(--fx-red);
  font-size: 0.72rem;
}

.fx-form-wrap .wpcf7-response-output {
  margin: 1rem 0 0 !important;
  padding: 0.8rem !important;
  border-radius: 5px;
  font-size: 0.8rem;
}

.fx-form-wrap input[type="submit"] {
  width: 100%;
  min-height: 48px;
  margin-top: 0.25rem;
  border: 1px solid var(--fx-red);
  border-radius: 5px;
  background: var(--fx-red);
  color: var(--fx-white);
  font-weight: 700;
  cursor: pointer;
}

.fx-form-wrap .fendix-honeypot {
  position: absolute !important;
  left: -9999px !important;
}

.fx-form-fallback {
  margin: 0;
}

.fx-downloads {
  padding-block: 4rem;
  background: var(--fx-light-grey);
  color: var(--fx-navy);
}

.fx-downloads-grid {
  display: grid;
  grid-template-columns: minmax(240px, 0.58fr) minmax(0, 1.42fr);
  gap: 4rem;
}

.fx-download-list {
  display: grid;
}

.fx-download-list a {
  display: flex;
  align-items: center;
  justify-content: space-between;
  gap: 1rem;
  padding: 1rem 0;
  border-top: 1px solid var(--fx-grey);
}

.fx-download-list span {
  display: grid;
  gap: 0.2rem;
}

.fx-download-list strong,
.fx-download-list b {
  font-size: 0.86rem;
}

.fx-download-list small {
  color: var(--fx-grey);
}

.fx-download-list b {
  color: var(--fx-red);
}

.fx-footer {
  padding: 2.5rem 0;
  background: var(--fx-navy);
  color: var(--fx-light-grey);
}

.fx-footer-grid {
  display: grid;
  grid-template-columns: auto minmax(260px, 1fr) auto;
  gap: 2.5rem;
  align-items: center;
  font-size: 0.76rem;
}

.fx-footer .fx-logo {
  width: 82px;
}

.fx-footer p {
  margin-bottom: 0;
}

.fx-footer-grid > div {
  display: grid;
  gap: 0.25rem;
  text-align: right;
}

.fx-linkedin {
  justify-self: end;
  margin-top: 0.35rem;
  color: var(--fx-white);
  font-weight: 700;
  letter-spacing: 0.02em;
}

.fx-linkedin:hover {
  color: var(--fx-red);
}

.fx-mobile-bar {
  display: none;
}

.fx-home :focus-visible {
  outline: 3px solid #ffffff;
  outline-offset: 3px;
}

@media (max-width: 960px) {
  .fx-nav { display: none; }

  .fx-mobile-actions {
    display: flex;
    align-items: center;
    gap: 0.6rem;
  }

  .fx-mobile-actions > a,
  .fx-menu-toggle {
    display: inline-grid;
    min-width: 46px;
    min-height: 42px;
    place-items: center;
    padding: 0.55rem 0.75rem;
    border: 1px solid rgba(255, 255, 255, 0.18);
    border-radius: 5px;
    background: transparent;
    color: var(--fx-white);
    font-size: 0.76rem;
  }

  .fx-mobile-actions > a {
    min-height: 44px;
    padding: 0.55rem 0.9rem;
    border-color: var(--fx-red);
    border-radius: 4px;
    background: var(--fx-red);
    color: #fff;
    font-weight: 700;
  }

  .fx-mobile-actions > a:hover,
  .fx-mobile-actions > a:focus-visible {
    border-color: #b52f27;
    background: #b52f27;
  }

  .fx-menu-toggle {
    gap: 4px;
    cursor: pointer;
  }

  .fx-menu-toggle span {
    display: block;
    width: 18px;
    height: 2px;
    background: currentColor;
  }

  .fx-mobile-menu[hidden] { display: none; }

  .fx-mobile-menu:not([hidden]) {
    display: grid;
    width: min(1180px, calc(100% - 48px));
    margin-inline: auto;
    padding: 0 0 1rem;
  }

  .fx-mobile-menu a {
    padding: 0.8rem 0;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    font-size: 0.85rem;
  }

  .fx-hero-grid,
  .fx-two-column,
  .fx-video-grid,
  .fx-contact-grid,
  .fx-downloads-grid {
    grid-template-columns: 1fr;
  }

  .fx-hero-grid {
    gap: 3rem;
  }

  .fx-two-column,
  .fx-video-grid,
  .fx-contact-grid,
  .fx-downloads-grid {
    gap: 2.5rem;
  }

  .fx-steps { grid-template-columns: 1fr; }
  .fx-steps article { min-height: 0; }
  .fx-steps article > span { margin-bottom: 1.5rem; }
  .fx-application-grid { grid-template-columns: repeat(2, minmax(0, 1fr)); }
}

@media (max-width: 782px) {
  body.fendix-redesign-home.admin-bar .fx-header { top: 46px; }
}

@media (max-width: 700px) {
  .fx-home {
    padding-bottom: 72px;
  }

  .fx-home section[id] {
    scroll-margin-top: 76px;
  }

  .fx-shell,
  .fx-mobile-menu:not([hidden]) {
    width: min(100% - 32px, 1180px);
  }

  .fx-header-inner {
    min-height: 76px;
  }

  .fx-logo { width: 82px; }

  .fx-hero {
    padding-top: 3rem;
  }

  .fx-hero h1 {
    font-size: clamp(2.75rem, 15vw, 4rem);
  }

  .fx-lead { font-size: 0.94rem; }

  .fx-actions {
    display: grid;
    grid-template-columns: 1fr 1fr;
  }

  .fx-actions .fx-button {
    padding-inline: 0.55rem;
    text-align: center;
  }

  .fx-carousel-button {
    width: 38px;
    height: 38px;
    opacity: 1;
  }

  .fx-proof {
    grid-template-columns: repeat(2, minmax(0, 1fr));
  }

  .fx-proof div:nth-child(3) {
    border-left: 0;
  }

  .fx-proof div:nth-child(n + 3) {
    border-top: 1px solid var(--fx-border);
  }

  .fx-check-list,
  .fx-application-grid,
  .fx-assessment-notes,
  .fx-footer-grid,
  .fx-form-wrap .cf7-grid {
    grid-template-columns: 1fr;
  }

  .fx-section,
  .fx-video-section,
  .fx-compliance,
  .fx-trade,
  .fx-contact,
  .fx-downloads {
    padding-block: 3.5rem;
  }

  .fx-compliance-heading,
  .fx-trade-inner {
    align-items: flex-start;
    flex-direction: column;
  }

  .fx-table-wrap {
    border: 0;
    overflow: visible;
  }

  .fx-table-wrap thead { display: none; }

  .fx-table-wrap table,
  .fx-table-wrap tbody,
  .fx-table-wrap tr,
  .fx-table-wrap td {
    display: block;
    width: 100%;
  }

  .fx-table-wrap tr {
    margin-bottom: 0.8rem;
    padding: 0.85rem;
    border: 1px solid var(--fx-border);
    border-radius: 8px;
  }

  .fx-table-wrap td,
  .fx-table-wrap td:first-child,
  .fx-table-wrap td:nth-last-child(-n + 2) {
    display: grid;
    grid-template-columns: 7rem minmax(0, 1fr);
    gap: 0.8rem;
    padding: 0.4rem 0;
    border: 0;
    white-space: normal;
  }

  .fx-table-wrap td::before {
    content: attr(data-label);
    color: var(--fx-light-grey);
    font-weight: 400;
  }

  .fx-table-wrap .fx-table-group {
    margin: 1.25rem 0 0.55rem;
    padding: 0;
    border: 0;
    border-radius: 0;
  }

  .fx-table-wrap .fx-table-group:first-child { margin-top: 0; }

  .fx-table-wrap .fx-table-group th {
    display: flex;
    align-items: baseline;
    width: 100%;
    gap: 0.55rem;
    padding: 0.65rem 0.8rem;
    border: 1px solid rgba(209, 57, 46, 0.38);
    border-radius: 6px;
  }

  .fx-table-wrap .fx-table-group small { margin-left: 0; }

  .fx-compliance-heading {
    gap: 1rem;
  }

  .fx-compliance-intro {
    max-width: none;
  }

  .fx-compliance-groups {
    gap: 1.25rem;
  }

  .fx-compliance-group {
    padding: 1rem;
  }

  .fx-compliance-group-heading {
    align-items: flex-start;
    flex-direction: column;
    gap: 0.85rem;
    margin-bottom: 0.9rem;
  }

  .fx-compliance-group-heading .fx-button {
    width: 100%;
    text-align: center;
  }

  .fx-assessment-notes { gap: 1rem; }

  .fx-footer-grid {
    gap: 1.25rem;
  }

  .fx-footer-grid > div { text-align: left; }
  .fx-linkedin { justify-self: start; }

  .fx-mobile-bar {
    position: fixed;
    right: 0;
    bottom: 0;
    left: 0;
    z-index: 120;
    display: grid;
    grid-template-columns: 1.45fr 0.65fr;
    gap: 0.5rem;
    padding: 0.6rem;
    background: rgba(49, 60, 73, 0.98);
    box-shadow: 0 -8px 24px rgba(0, 0, 0, 0.25);
  }

  .fx-mobile-bar a {
    display: grid;
    min-height: 46px;
    place-items: center;
    border: 1px solid var(--fx-red);
    border-radius: 5px;
    color: var(--fx-white);
    font-size: 0.8rem;
    font-weight: 700;
  }

  .fx-mobile-bar a:first-child { background: var(--fx-red); }
}

@media (max-width: 430px) {
  .fx-home h2 { font-size: 2rem; }
  .fx-actions { grid-template-columns: 1fr; }
  .fx-carousel-meta { font-size: 0.6rem; }
  .fx-proof div { min-height: 90px; padding: 0.85rem; }
}

@media (prefers-reduced-motion: reduce) {
  html { scroll-behavior: auto; }
  .fx-home *,
  .fx-home *::before,
  .fx-home *::after {
    scroll-behavior: auto !important;
    transition-duration: 0.01ms !important;
  }
}
