/* Home refresh v1.2.28
 * Keeps the existing Full Protection typography and section-title language.
 * The refreshed blocks use the same red divider/bar, stronger scale, generous
 * spacing and card proportions already present elsewhere in the theme.
 */

.fp-home-refresh-v128{
  --fp-home-red:#C81F26;
  --fp-home-ink:#111827;
  --fp-home-muted:#64748b;
  --fp-home-line:#e5e7eb;
  --fp-home-soft:#f7f8fa;
}

.fp-home-refresh-v128 .fp-home-solutions,
.fp-home-refresh-v128 .fp-home-why,
.fp-home-refresh-v128 .fp-home-brands,
.fp-home-refresh-v128 .fp-home-stats,
.fp-home-refresh-v128 .fp-home-ready{
  font-family:inherit;
}

/* Reuse the visual scale of the original Home section headings. */
.fp-home-refresh-heading{
  margin-bottom:38px;
}
.fp-home-refresh-heading .fp-home-section-header{
  min-height:72px;
  display:flex;
  align-items:flex-end;
  gap:22px;
}
.fp-home-refresh-heading .fp-home-section-header__title{
  flex:1 1 auto;
  min-width:0;
}
.fp-home-refresh-heading .fp-home-section-header__title > div{
  flex:0 0 4px;
}
.fp-home-refresh-heading .fp-home-section-header__title h2{
  margin:0;
  max-width:780px;
  font-family:inherit;
  font-size:clamp(28px,2.7vw,36px);
  line-height:1.03;
  font-weight:900;
  letter-spacing:.05em;
  color:#081225;
  text-transform:uppercase;
  text-wrap:balance;
}
.fp-home-action-link{
  display:inline-flex;
  align-items:center;
  gap:10px;
  color:#182237;
  font-size:12px;
  line-height:1.2;
  font-weight:800;
  letter-spacing:.065em;
  text-decoration:none;
  text-transform:uppercase;
  white-space:nowrap;
}
.fp-home-action-link:hover{
  color:var(--fp-home-red,#C81F26);
}
.fp-home-action-link__arrow{
  width:28px;
  height:28px;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(200,31,38,.22);
  border-radius:999px;
  color:var(--fp-home-red,#C81F26);
  font-size:16px;
  line-height:1;
  transition:transform .18s ease,background .18s ease,color .18s ease,border-color .18s ease;
}
.fp-home-action-link:hover .fp-home-action-link__arrow{
  background:var(--fp-home-red,#C81F26);
  border-color:var(--fp-home-red,#C81F26);
  color:#fff;
  transform:translateX(2px);
}
.fp-home-carousel-controls{
  display:flex;
  align-items:center;
  gap:8px;
}
.fp-home-carousel-arrow{
  width:38px;
  height:38px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:0 0 2px;
  border:1px solid #d8dbe0;
  border-radius:999px;
  background:#fff;
  color:#68707b;
  font-size:24px;
  line-height:1;
  cursor:pointer;
  box-shadow:0 4px 12px rgba(15,23,42,.035);
  transition:border-color .18s ease,color .18s ease,background .18s ease,transform .18s ease;
}
.fp-home-carousel-arrow:hover,
.fp-home-carousel-arrow:focus-visible{
  border-color:#c9cdd3;
  color:var(--fp-home-red,#C81F26);
  background:#fff;
  transform:translateY(-1px);
}
.fp-home-carousel-arrow:disabled{
  opacity:.32;
  cursor:default;
  transform:none;
}

/* ---------------------------------------------------------
   EXPLORE OUR SOLUTIONS
--------------------------------------------------------- */
.fp-home-solutions{
  position:relative;
  padding:64px 0 72px;
  background:#fff;
  overflow:hidden;
}
.fp-home-solutions::after{
  content:"";
  position:absolute;
  width:420px;
  height:420px;
  right:-210px;
  bottom:-250px;
  border-radius:50%;
  background:radial-gradient(circle,rgba(200,31,38,.055),rgba(200,31,38,0) 68%);
  pointer-events:none;
}
.fp-home-solutions__header{
  align-items:flex-end;
}
.fp-home-solutions__head-actions{
  position:relative;
  z-index:3;
  flex:0 0 auto;
  display:flex;
  align-items:center;
  gap:16px;
  margin-left:auto;
  padding-left:18px;
  background:#fff;
}
.fp-home-solutions__viewport{
  position:relative;
  z-index:1;
  overflow:hidden;
  outline:none;
  padding:4px 0 12px;
}
.fp-home-solutions__track{
  display:flex;
  align-items:stretch;
  gap:20px;
  width:max-content;
}
.fp-home-solution-card{
  position:relative;
  display:flex;
  min-height:330px;
  width:250px;
  max-width:250px;
  min-width:250px;
  flex:0 0 250px;
  flex-direction:column;
  overflow:hidden;
  border:1px solid #e5e7eb;
  border-radius:14px;
  background:#fff;
  color:var(--fp-home-ink,#111827);
  text-decoration:none;
  box-shadow:0 8px 24px rgba(15,23,42,.055);
  transition:transform .22s ease,border-color .22s ease,box-shadow .22s ease;
}
.fp-home-solution-card::before{
  content:"";
  position:absolute;
  left:0;
  top:0;
  width:100%;
  height:4px;
  background:var(--fp-home-red,#C81F26);
  transform:scaleX(0);
  transform-origin:left center;
  transition:transform .24s ease;
  z-index:2;
}
.fp-home-solution-card:hover,
.fp-home-solution-card:focus-visible{
  transform:translateY(-5px);
  border-color:#d8dbe1;
  box-shadow:0 18px 42px rgba(15,23,42,.11);
  color:var(--fp-home-ink,#111827);
}
.fp-home-solution-card:hover::before,
.fp-home-solution-card:focus-visible::before{
  transform:scaleX(1);
}
.fp-home-solution-card__media{
  height:198px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:20px 20px 14px;
  background:linear-gradient(180deg,#fff 0%,#fafafa 100%);
}
.fp-home-solution-card__img{
  width:100%;
  height:100%;
  max-width:210px;
  max-height:170px;
  display:block;
  object-fit:contain;
  transition:transform .28s ease;
}
.fp-home-solution-card:hover .fp-home-solution-card__img{
  transform:scale(1.035);
}
.fp-home-solution-card__img--fallback{
  max-width:150px;
  max-height:150px;
}
.fp-home-solution-card__body{
  position:relative;
  flex:1 1 auto;
  padding:18px 52px 22px 20px;
  border-top:1px solid #f0f1f3;
}
.fp-home-solution-card__name{
  margin:0 0 10px;
  color:#111827;
  font-family:inherit;
  font-size:15px;
  line-height:1.24;
  font-weight:900;
  letter-spacing:.045em;
  text-transform:uppercase;
}
.fp-home-solution-card__product{
  display:-webkit-box;
  overflow:hidden;
  margin:0;
  color:#667085;
  font-size:13.5px;
  line-height:1.5;
  font-weight:400;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
}
.fp-home-solution-card__arrow{
  position:absolute;
  right:18px;
  bottom:20px;
  width:34px;
  height:34px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(200,31,38,.18);
  border-radius:999px;
  color:var(--fp-home-red,#C81F26);
  font-size:19px;
  line-height:1;
  transition:background .2s ease,color .2s ease,transform .2s ease;
}
.fp-home-solution-card:hover .fp-home-solution-card__arrow{
  background:var(--fp-home-red,#C81F26);
  color:#fff;
  transform:translateX(2px);
}

/* ---------------------------------------------------------
   WHY PARTNER
--------------------------------------------------------- */
.fp-home-why{
  position:relative;
  padding:64px 0 76px;
  background:#f7f8fa;
  border-top:1px solid #eceef1;
  border-bottom:1px solid #eceef1;
}
.fp-home-why__grid{
  display:grid;
  grid-template-columns:repeat(3,minmax(0,1fr));
  gap:22px;
}
.fp-home-why-card{
  min-width:0;
  display:flex;
  align-items:flex-start;
  gap:20px;
  min-height:180px;
  padding:28px 28px 26px;
  border:1px solid #e4e7ec;
  border-radius:14px;
  background:#fff;
  box-shadow:0 6px 20px rgba(15,23,42,.04);
  transition:transform .2s ease,box-shadow .2s ease,border-color .2s ease;
}
.fp-home-why-card:hover{
  transform:translateY(-3px);
  border-color:#dadde3;
  box-shadow:0 14px 32px rgba(15,23,42,.075);
}
.fp-home-why-card__icon{
  width:60px;
  height:60px;
  flex:0 0 60px;
  display:flex;
  align-items:flex-start;
  justify-content:center;
  color:var(--fp-home-red,#C81F26);
}
.fp-home-why-card__icon svg{
  width:54px;
  height:54px;
  fill:none;
  stroke:currentColor;
  stroke-width:1.55;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.fp-home-why-card__icon-img{
  width:54px;
  height:54px;
  display:block;
  object-fit:contain;
}
.fp-home-why-card__copy{
  min-width:0;
  padding-top:2px;
}
.fp-home-why-card__title{
  margin:0 0 10px;
  color:#1f2937;
  font-size:17px;
  line-height:1.28;
  font-weight:900;
  letter-spacing:.035em;
  text-transform:uppercase;
}
.fp-home-why-card__text{
  margin:0;
  color:#667085;
  font-size:15px;
  line-height:1.62;
}

/* ---------------------------------------------------------
   BRANDS CAROUSEL
--------------------------------------------------------- */
.fp-home-brands{
  position:relative;
  padding:64px 0 62px;
  background:#fff;
  overflow:hidden;
}
.fp-home-brands__heading{
  margin-bottom:30px;
}
.fp-home-brands__heading .fp-home-section-header{
  align-items:flex-end;
}
.fp-home-brands__heading .fp-home-section-header__title{
  flex:1 1 auto;
}
.fp-home-brands__heading .fp-home-section-header__title h2{
  max-width:790px;
  font-size:clamp(27px,2.45vw,35px);
}
.fp-home-brands__head-actions{
  position:relative;
  z-index:3;
  flex:0 0 auto;
  display:flex;
  align-items:center;
  gap:16px;
  margin-left:auto;
  padding-left:20px;
  background:#fff;
}
.fp-home-brands__all{
  color:#182237;
}
.fp-home-brands__viewport{
  width:100%;
  overflow:hidden;
  outline:none;
  padding:18px 0 10px;
  -webkit-mask-image:linear-gradient(to right,transparent 0,#000 6%,#000 94%,transparent 100%);
  mask-image:linear-gradient(to right,transparent 0,#000 6%,#000 94%,transparent 100%);
}
.fp-home-brands__track{
  display:flex;
  align-items:center;
  width:max-content;
  will-change:scroll-position;
}
.fp-home-brands__group{
  display:flex;
  align-items:center;
  gap:82px;
  padding:10px 82px 10px 0;
}
.fp-home-brand-logo{
  width:168px;
  height:88px;
  flex:0 0 168px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:8px;
  color:#242424;
  text-decoration:none;
  opacity:.92;
  filter:grayscale(.08);
  transition:opacity .2s ease,transform .2s ease,filter .2s ease;
}
.fp-home-brand-logo:hover{
  opacity:1;
  filter:none;
  transform:translateY(-2px);
}
.fp-home-brand-logo__img{
  width:100%;
  height:100%;
  max-width:162px;
  max-height:74px;
  display:block;
  object-fit:contain;
}
.fp-home-brand-logo__name{
  display:block;
  max-width:154px;
  color:#2f3742;
  font-size:15px;
  line-height:1.2;
  font-weight:900;
  letter-spacing:.04em;
  text-align:center;
  text-transform:uppercase;
}

/* ---------------------------------------------------------
   COMPANY FACTS STRIP
--------------------------------------------------------- */
.fp-home-stats{
  padding:35px 0;
  background:linear-gradient(180deg,#151b23 0%,#0d1218 100%);
  color:#fff;
  border-top:1px solid rgba(255,255,255,.04);
  border-bottom:1px solid rgba(255,255,255,.04);
}
.fp-home-stats__grid{
  display:grid;
  grid-template-columns:repeat(5,minmax(0,1fr));
  align-items:stretch;
}
.fp-home-stat{
  min-width:0;
  min-height:106px;
  display:flex;
  align-items:center;
  justify-content:center;
  gap:17px;
  padding:12px 24px;
  border-right:1px solid rgba(255,255,255,.12);
}
.fp-home-stat:last-child{
  border-right:0;
}
.fp-home-stat__icon{
  width:50px;
  height:50px;
  flex:0 0 50px;
  color:#e1262e;
}
.fp-home-stat__icon svg{
  width:100%;
  height:100%;
  fill:none;
  stroke:currentColor;
  stroke-width:1.45;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.fp-home-stat__copy{
  min-width:0;
}
.fp-home-stat__value{
  color:#ef3038;
  font-size:27px;
  line-height:1;
  font-weight:900;
  letter-spacing:-.02em;
  text-transform:uppercase;
}
.fp-home-stat--textual .fp-home-stat__value{
  max-width:150px;
  font-size:17px;
  line-height:1.12;
  letter-spacing:.025em;
}
.fp-home-stat__label{
  margin-top:5px;
  color:#fff;
  font-size:12px;
  line-height:1.24;
  font-weight:900;
  letter-spacing:.035em;
  text-transform:uppercase;
}
.fp-home-stat__text{
  margin-top:5px;
  color:#b7c0cb;
  font-size:11px;
  line-height:1.45;
}

/* ---------------------------------------------------------
   READY TO GROW
--------------------------------------------------------- */
.fp-home-ready{
  padding:72px 0 78px;
  background:#f4f5f7;
}
.fp-home-ready__panel{
  position:relative;
  display:grid;
  grid-template-columns:minmax(0,1.08fr) minmax(390px,.92fr);
  min-height:470px;
  overflow:hidden;
  border:1px solid #e1e4e8;
  border-radius:18px;
  background:#fff;
  box-shadow:0 18px 46px rgba(15,23,42,.075);
}
.fp-home-ready__panel--no-image{
  grid-template-columns:1fr;
}
.fp-home-ready__content{
  display:flex;
  flex-direction:column;
  justify-content:center;
  padding:58px 62px;
}
.fp-home-ready__heading{
  display:flex;
  align-items:stretch;
  gap:17px;
  margin-bottom:18px;
}
.fp-home-ready__bar{
  width:5px;
  min-height:52px;
  flex:0 0 5px;
  background:var(--fp-home-red,#C81F26);
}
.fp-home-ready__title{
  margin:0;
  color:#101318;
  font-family:inherit;
  font-size:clamp(29px,2.9vw,38px);
  line-height:1.08;
  font-weight:900;
  letter-spacing:.06em;
  text-transform:uppercase;
}
.fp-home-ready__lead{
  max-width:650px;
  margin:0 0 28px;
  color:#56606d;
  font-size:16px;
  line-height:1.72;
}
.fp-home-ready__bullets{
  display:grid;
  grid-template-columns:repeat(2,minmax(0,1fr));
  gap:14px 26px;
  margin:0 0 30px;
  padding:0;
  list-style:none;
}
.fp-home-ready__bullets li{
  display:flex;
  align-items:flex-start;
  gap:10px;
  color:#454e59;
  font-size:14px;
  line-height:1.5;
}
.fp-home-ready__check{
  width:18px;
  height:18px;
  flex:0 0 18px;
  color:var(--fp-home-red,#C81F26);
  margin-top:1px;
}
.fp-home-ready__check svg{
  width:100%;
  height:100%;
  fill:none;
  stroke:currentColor;
  stroke-width:2.15;
  stroke-linecap:round;
  stroke-linejoin:round;
}
.fp-home-ready__button{
  align-self:flex-start;
  gap:10px;
  min-height:46px;
  padding:0 24px;
  border-radius:999px;
  font-size:12px;
  letter-spacing:.065em;
  box-shadow:0 10px 24px rgba(200,31,38,.18);
}
.fp-home-ready__media{
  position:relative;
  min-height:470px;
  overflow:hidden;
  background:#d9dde2;
}
.fp-home-ready__media::after{
  content:"";
  position:absolute;
  inset:0;
  box-shadow:inset 20px 0 38px rgba(15,23,42,.08);
  pointer-events:none;
}
.fp-home-ready__img{
  width:100%;
  height:100%;
  min-height:470px;
  display:block;
  object-fit:cover;
  object-position:center;
  transition:transform .55s ease;
}
.fp-home-ready__panel:hover .fp-home-ready__img{
  transform:scale(1.018);
}

/* ---------------------------------------------------------
   RESPONSIVE
--------------------------------------------------------- */
@media (max-width:1180px){
  .fp-home-solution-card{width:238px;min-width:238px;max-width:238px;flex-basis:238px;}
  .fp-home-why__grid{grid-template-columns:repeat(2,minmax(0,1fr));}
  .fp-home-stats__grid{grid-template-columns:repeat(3,minmax(0,1fr));}
  .fp-home-stat:nth-child(3){border-right:0;}
  .fp-home-stat:nth-child(n+4){border-top:1px solid rgba(255,255,255,.09);}
  .fp-home-ready__panel{grid-template-columns:minmax(0,1fr) minmax(340px,.9fr);}
  .fp-home-ready__content{padding:50px 44px;}
}

@media (max-width:960px){
  .fp-home-refresh-heading{margin-bottom:34px;}
  .fp-home-refresh-heading .fp-home-section-header__title h2{font-size:clamp(26px,4.7vw,34px);}
  .fp-home-brands__heading .fp-home-section-header{align-items:flex-start;flex-wrap:wrap;}
  .fp-home-solutions__head-actions,.fp-home-brands__head-actions{width:100%;justify-content:flex-end;padding-left:0;margin-top:8px;}
  .fp-home-ready__panel{grid-template-columns:1fr;}
  .fp-home-ready__content{padding:48px 46px;}
  .fp-home-ready__media,.fp-home-ready__img{min-height:390px;}
}

@media (max-width:767px){
  .fp-home-solutions,
  .fp-home-why,
  .fp-home-brands{padding:46px 0 52px;}
  .fp-home-ready{padding:52px 0 58px;}
  .fp-home-refresh-heading{margin-bottom:28px;}
  .fp-home-refresh-heading .fp-home-section-header{min-height:64px;padding-top:17px;align-items:flex-start;flex-wrap:wrap;}
  .fp-home-refresh-heading .fp-home-section-header__title{gap:12px;align-items:center;}
  .fp-home-refresh-heading .fp-home-section-header__title > div{height:42px!important;}
  .fp-home-refresh-heading .fp-home-section-header__title h2{
    font-size:clamp(24px,6.8vw,30px);
    letter-spacing:.045em;
  }
  .fp-home-solutions__head-actions{justify-content:space-between;gap:12px;flex-wrap:wrap;}
  .fp-home-solutions__viewport{overflow-x:auto;scroll-snap-type:x mandatory;scrollbar-width:none;padding:4px 4px 14px;}
  .fp-home-solutions__viewport::-webkit-scrollbar{display:none;}
  .fp-home-solutions__track{gap:16px;}
  .fp-home-solution-card{
    flex:0 0 78%;
    width:78%;
    min-width:78%;
    max-width:none;
    min-height:330px;
    scroll-snap-align:start;
  }
  .fp-home-solution-card__media{height:195px;padding:20px 18px 14px;}
  .fp-home-solution-card__body{padding:18px 50px 20px 18px;}
  .fp-home-why__grid{grid-template-columns:1fr;gap:14px;}
  .fp-home-why-card{min-height:0;padding:24px 22px;}
  .fp-home-brands__heading .fp-home-section-header__title h2{font-size:clamp(23px,6.5vw,30px);}
  .fp-home-brands__head-actions{justify-content:space-between;gap:12px;}
  .fp-home-brands__all{font-size:10px;}
  .fp-home-brands__viewport{padding-top:8px;mask-image:none;-webkit-mask-image:none;}
  .fp-home-brands__group{gap:46px;padding-right:46px;}
  .fp-home-brand-logo{width:128px;height:68px;flex-basis:128px;}
  .fp-home-brand-logo__img{max-width:124px;max-height:56px;}
  .fp-home-stats{padding:24px 0;}
  .fp-home-stats__grid{grid-template-columns:1fr 1fr;}
  .fp-home-stat{
    min-height:105px;
    justify-content:flex-start;
    padding:16px 18px;
    border-top:1px solid rgba(255,255,255,.09);
  }
  .fp-home-stat:nth-child(odd){border-right:1px solid rgba(255,255,255,.12);}
  .fp-home-stat:nth-child(even){border-right:0;}
  .fp-home-stat:first-child,.fp-home-stat:nth-child(2){border-top:0;}
  .fp-home-stat:nth-child(3){border-right:1px solid rgba(255,255,255,.12);}
  .fp-home-stat:last-child{grid-column:1/-1;justify-content:center;border-right:0;}
  .fp-home-ready__content{padding:42px 28px;}
  .fp-home-ready__title{font-size:clamp(28px,8vw,36px);}
  .fp-home-ready__bullets{grid-template-columns:1fr;gap:12px;}
  .fp-home-ready__lead{font-size:14px;}
  .fp-home-ready__media,.fp-home-ready__img{min-height:310px;}
}

@media (max-width:520px){
  .fp-home-solution-card{flex-basis:86%;min-width:86%;width:86%;}
  .fp-home-solution-card__name{font-size:16px;}
  .fp-home-why-card{gap:17px;}
  .fp-home-why-card__icon{width:56px;height:56px;flex-basis:56px;}
  .fp-home-why-card__icon svg{width:42px;height:42px;}
  .fp-home-why-card__title{font-size:15px;}
  .fp-home-why-card__text{font-size:13px;}
  .fp-home-brands__head-actions{align-items:center;}
  .fp-home-action-link{white-space:normal;}
  .fp-home-brands__all{max-width:190px;line-height:1.35;}
  .fp-home-brands__arrow{width:34px;height:34px;}
  .fp-home-stat{gap:12px;padding:14px 12px;}
  .fp-home-stat__icon{width:43px;height:43px;flex-basis:43px;}
  .fp-home-stat__value{font-size:23px;}
  .fp-home-ready__content{padding:36px 22px;}
  .fp-home-ready__panel{border-radius:14px;}
}

@media (prefers-reduced-motion:reduce){
  .fp-home-solution-card,
  .fp-home-solution-card__img,
  .fp-home-brand-logo,
  .fp-home-ready__img,
  .fp-home-brands__viewport{
    scroll-behavior:auto!important;
    transition:none!important;
  }
}

/* ---------------------------------------------------------
   v1.2.30 premium refinement
   Smaller, cleaner headings; stronger content typography; standalone icons;
   better aligned action links and carousel controls.
--------------------------------------------------------- */
.fp-home-refresh-v128 .fp-home-refresh-heading{
  margin-bottom:34px;
}
.fp-home-refresh-v128 .fp-home-refresh-heading .fp-home-section-header{
  min-height:68px;
  gap:18px;
}
.fp-home-refresh-v128 .fp-home-refresh-heading .fp-home-section-header__title{
  gap:14px;
  align-items:center;
}
.fp-home-refresh-v128 .fp-home-refresh-heading .fp-home-section-header__title > div{
  width:4px!important;
  height:44px!important;
  border-radius:3px;
}
.fp-home-refresh-v128 .fp-home-refresh-heading .fp-home-section-header__title h2{
  max-width:760px;
  font-size:clamp(27px,2.45vw,34px);
  line-height:1.06;
  letter-spacing:.038em;
  color:#0d172a;
}
.fp-home-refresh-v128 .fp-home-section-divider{
  opacity:.82;
}

.fp-home-refresh-v128 .fp-home-action-link{
  gap:9px;
  padding:6px 4px 6px 8px;
  border-radius:999px;
  font-size:12.5px;
  letter-spacing:.05em;
  color:#1c2638;
  transition:color .18s ease,background .18s ease;
}
.fp-home-refresh-v128 .fp-home-action-link:hover{
  background:#faf6f6;
}
.fp-home-refresh-v128 .fp-home-action-link__arrow{
  width:31px;
  height:31px;
  border-color:rgba(200,31,38,.28);
  background:#fff;
  box-shadow:0 3px 10px rgba(15,23,42,.04);
}
.fp-home-refresh-v128 .fp-home-carousel-arrow:disabled{
  opacity:.34;
  cursor:default;
  transform:none;
}

.fp-home-refresh-v128 .fp-home-solutions__head-actions,
.fp-home-refresh-v128 .fp-home-brands__head-actions{
  align-self:flex-end;
  padding-bottom:1px;
}

.fp-home-refresh-v128 .fp-home-solutions__track{
  gap:24px;
}
.fp-home-refresh-v128 .fp-home-solution-card{
  width:calc((min(100vw - 48px, 1200px) - 48px) / 3);
  min-width:350px;
  max-width:384px;
  flex-basis:calc((min(100vw - 48px, 1200px) - 48px) / 3);
  min-height:376px;
  border-radius:12px;
  box-shadow:0 7px 22px rgba(15,23,42,.05);
}
.fp-home-refresh-v128 .fp-home-solution-card__media{
  height:235px;
  padding:25px 26px 16px;
}
.fp-home-refresh-v128 .fp-home-solution-card__body{
  padding:23px 62px 28px 26px;
}
.fp-home-refresh-v128 .fp-home-solution-card__name{
  margin-bottom:9px;
  font-size:17px;
  line-height:1.24;
  letter-spacing:.035em;
}
.fp-home-refresh-v128 .fp-home-solution-card__product{
  font-size:13.5px;
  line-height:1.5;
}
.fp-home-refresh-v128 .fp-home-solution-card__arrow{
  width:36px;
  height:36px;
}

.fp-home-refresh-v128 .fp-home-why__grid{
  gap:20px;
}
.fp-home-refresh-v128 .fp-home-why-card{
  min-height:174px;
  gap:19px;
  padding:28px 27px 26px;
  border-color:#e7e9ed;
  border-radius:12px;
  box-shadow:0 5px 16px rgba(15,23,42,.032);
}
.fp-home-refresh-v128 .fp-home-why-card__icon{
  width:68px;
  height:68px;
  flex:0 0 68px;
  align-items:center;
  background:transparent!important;
  border:0!important;
  border-radius:0!important;
  box-shadow:none!important;
}
.fp-home-refresh-v128 .fp-home-why-card__icon svg{
  width:60px;
  height:60px;
  stroke-width:1.45;
}
.fp-home-refresh-v128 .fp-home-why-card__icon-img{
  width:60px;
  height:60px;
}
.fp-home-refresh-v128 .fp-home-why-card__copy{
  padding-top:3px;
}
.fp-home-refresh-v128 .fp-home-why-card__title{
  margin-bottom:9px;
  font-size:16.5px;
  line-height:1.3;
  letter-spacing:.027em;
}
.fp-home-refresh-v128 .fp-home-why-card__text{
  font-size:15px;
  line-height:1.64;
}

.fp-home-refresh-v128 .fp-home-brands__heading .fp-home-section-header__title h2{
  max-width:760px;
  font-size:clamp(26px,2.35vw,33px);
}
.fp-home-refresh-v128 .fp-home-brands__group{
  gap:76px;
  padding-right:76px;
}
.fp-home-refresh-v128 .fp-home-brand-logo{
  width:172px;
  height:90px;
  flex-basis:172px;
}
.fp-home-refresh-v128 .fp-home-brand-logo__img{
  max-width:166px;
  max-height:74px;
}

.fp-home-refresh-v128 .fp-home-stat__value{
  font-size:29px;
}
.fp-home-refresh-v128 .fp-home-stat--textual .fp-home-stat__value{
  font-size:18px;
}
.fp-home-refresh-v128 .fp-home-stat__label{
  font-size:12.5px;
}
.fp-home-refresh-v128 .fp-home-stat__text{
  font-size:11.5px;
}

.fp-home-refresh-v128 .fp-home-ready__title{
  max-width:620px;
  font-size:clamp(28px,2.65vw,36px);
  line-height:1.08;
  letter-spacing:.042em;
}
.fp-home-refresh-v128 .fp-home-ready__lead{
  font-size:16px;
}
.fp-home-refresh-v128 .fp-home-ready__bullets li{
  font-size:14.5px;
}
.fp-home-refresh-v128 .fp-home-ready__button{
  min-height:48px;
  padding-inline:26px;
  font-size:12px;
}

@media (max-width:1180px){
  .fp-home-refresh-v128 .fp-home-solution-card{
    width:calc((100vw - 120px) / 2);
    min-width:360px;
    max-width:460px;
    flex-basis:calc((100vw - 120px) / 2);
  }
}
@media (max-width:960px){
  .fp-home-refresh-v128 .fp-home-refresh-heading .fp-home-section-header__title h2,
  .fp-home-refresh-v128 .fp-home-brands__heading .fp-home-section-header__title h2{
    font-size:clamp(25px,4.6vw,32px);
  }
}
@media (max-width:767px){
  .fp-home-refresh-v128 .fp-home-refresh-heading{
    margin-bottom:25px;
  }
  .fp-home-refresh-v128 .fp-home-refresh-heading .fp-home-section-header__title > div{
    height:38px!important;
  }
  .fp-home-refresh-v128 .fp-home-refresh-heading .fp-home-section-header__title h2,
  .fp-home-refresh-v128 .fp-home-brands__heading .fp-home-section-header__title h2{
    font-size:clamp(23px,6.4vw,29px);
    line-height:1.08;
    letter-spacing:.032em;
  }
  .fp-home-refresh-v128 .fp-home-action-link{
    font-size:11.5px;
  }
  .fp-home-refresh-v128 .fp-home-solutions__head-actions,
  .fp-home-refresh-v128 .fp-home-brands__head-actions{
    align-self:auto;
  }
  .fp-home-refresh-v128 .fp-home-solution-card{
    width:84%;
    min-width:84%;
    max-width:none;
    flex-basis:84%;
  }
  .fp-home-refresh-v128 .fp-home-why-card__icon{
    width:60px;
    height:60px;
    flex-basis:60px;
  }
  .fp-home-refresh-v128 .fp-home-why-card__icon svg,
  .fp-home-refresh-v128 .fp-home-why-card__icon-img{
    width:52px;
    height:52px;
  }
  .fp-home-refresh-v128 .fp-home-ready__title{
    font-size:clamp(26px,7.3vw,33px);
  }
  .fp-home-refresh-v128 .fp-home-ready__lead{
    font-size:15px;
  }
}
@media (max-width:520px){
  .fp-home-refresh-v128 .fp-home-solution-card{
    width:90%;
    min-width:90%;
    flex-basis:90%;
  }
  .fp-home-refresh-v128 .fp-home-why-card__title{
    font-size:15px;
  }
  .fp-home-refresh-v128 .fp-home-why-card__text{
    font-size:14px;
  }
}

/* ---------------------------------------------------------
   v1.2.33 - denser Home rhythm + narrower solution cards
   Only the card width/gaps are reduced; product imagery and typography retain
   the established scale.
--------------------------------------------------------- */
body.fp-home-refresh-v128.home .fp-home-hero-slider + .fp-hero-media{
  padding-top:36px!important;
}
body.fp-home-refresh-v128 .fp-hero-media{
  padding-top:36px;
  padding-bottom:8px;
}

.fp-home-refresh-v128 .fp-home-refresh-heading{
  margin-bottom:22px;
}
.fp-home-refresh-v128 .fp-home-refresh-heading .fp-home-section-header{
  min-height:64px;
}
.fp-home-refresh-v128 .fp-home-refresh-heading .fp-home-section-header__title h2,
.fp-home-refresh-v128 .fp-home-brands__heading .fp-home-section-header__title h2{
  font-size:clamp(28px,2.55vw,35px);
  line-height:1.06;
}

.fp-home-refresh-v128 .fp-home-solutions{
  padding:34px 0 36px;
}
.fp-home-refresh-v128 .fp-home-solutions__track{
  gap:14px;
}
.fp-home-refresh-v128 .fp-home-solution-card{
  width:222px;
  min-width:222px;
  max-width:222px;
  flex:0 0 222px;
  min-height:376px;
}
.fp-home-refresh-v128 .fp-home-solution-card__media{
  height:235px;
  padding:22px 14px 15px;
}
.fp-home-refresh-v128 .fp-home-solution-card__img{
  max-width:205px;
  max-height:210px;
}
.fp-home-refresh-v128 .fp-home-solution-card__body{
  padding:22px 48px 27px 21px;
}
.fp-home-refresh-v128 .fp-home-solution-card__name{
  font-size:17px;
  line-height:1.22;
}
.fp-home-refresh-v128 .fp-home-solution-card__product{
  font-size:13.5px;
  line-height:1.48;
}
.fp-home-refresh-v128 .fp-home-solution-card__arrow{
  right:13px;
  bottom:22px;
}

.fp-home-refresh-v128 .fp-home-why{
  padding:34px 0 38px;
}
.fp-home-refresh-v128 .fp-home-brands{
  padding:32px 0 34px;
}
.fp-home-refresh-v128 .fp-home-brands__heading{
  margin-bottom:20px;
}
.fp-home-refresh-v128 .fp-home-stats{
  padding:25px 0;
}
.fp-home-refresh-v128 .fp-home-ready{
  padding:38px 0 44px;
}

@media (max-width:767px){
  body.fp-home-refresh-v128.home .fp-home-hero-slider + .fp-hero-media{
    padding-top:28px!important;
  }
  body.fp-home-refresh-v128 .fp-hero-media{
    padding-top:28px;
    padding-bottom:6px;
  }
  .fp-home-refresh-v128 .fp-home-solutions,
  .fp-home-refresh-v128 .fp-home-why,
  .fp-home-refresh-v128 .fp-home-brands{
    padding-top:28px;
    padding-bottom:30px;
  }
  .fp-home-refresh-v128 .fp-home-ready{
    padding:32px 0 36px;
  }
  .fp-home-refresh-v128 .fp-home-refresh-heading{
    margin-bottom:20px;
  }
  .fp-home-refresh-v128 .fp-home-solution-card{
    width:78%;
    min-width:78%;
    max-width:none;
    flex-basis:78%;
    min-height:360px;
  }
  .fp-home-refresh-v128 .fp-home-solution-card__media{
    height:225px;
  }
}
@media (max-width:520px){
  .fp-home-refresh-v128 .fp-home-solution-card{
    width:86%;
    min-width:86%;
    flex-basis:86%;
  }
}

/* ---------------------------------------------------------
   v1.2.34 - actual products + tighter Home rhythm
   Product cards are intentionally narrower so more products fit per row,
   while section titles and product imagery keep the established visual scale.
--------------------------------------------------------- */
body.fp-home-refresh-v128 .fp-home-products{
  padding:18px 0 19px;
  background:#fff;
  overflow:hidden;
}
body.fp-home-refresh-v128 .fp-home-products__heading{
  margin-bottom:16px;
}
body.fp-home-refresh-v128 .fp-home-products__header{
  min-height:64px;
  display:flex;
  align-items:flex-end;
  gap:18px;
}
body.fp-home-refresh-v128 .fp-home-products__head-actions{
  position:relative;
  z-index:3;
  flex:0 0 auto;
  display:flex;
  align-items:center;
  gap:12px;
  margin-left:auto;
  padding-left:16px;
  background:#fff;
}
body.fp-home-refresh-v128 .fp-home-products__viewport{
  overflow:hidden;
  outline:none;
  padding:3px 0 8px;
}
body.fp-home-refresh-v128 .fp-home-products__track{
  display:flex;
  align-items:stretch;
  gap:10px;
  width:max-content;
}
body.fp-home-refresh-v128 .fp-home-product-card{
  position:relative;
  width:202px;
  min-width:202px;
  max-width:202px;
  flex:0 0 202px;
  display:flex;
  flex-direction:column;
  overflow:hidden;
  border:1px solid #e2e5e9;
  border-radius:11px;
  background:#fff;
  color:#111827;
  text-decoration:none;
  box-shadow:0 4px 14px rgba(15,23,42,.035);
  transition:transform .2s ease,border-color .2s ease,box-shadow .2s ease;
}
body.fp-home-refresh-v128 .fp-home-product-card:hover,
body.fp-home-refresh-v128 .fp-home-product-card:focus-visible{
  transform:translateY(-3px);
  border-color:#d3d7dc;
  box-shadow:0 12px 28px rgba(15,23,42,.085);
  color:#111827;
}
body.fp-home-refresh-v128 .fp-home-product-card__media{
  height:205px;
  display:flex;
  align-items:center;
  justify-content:center;
  padding:15px 10px 11px;
  background:linear-gradient(180deg,#fff 0%,#fbfbfb 100%);
}
body.fp-home-refresh-v128 .fp-home-product-card__img{
  width:100%;
  height:100%;
  max-width:186px;
  max-height:184px;
  display:block;
  object-fit:contain;
  transition:transform .24s ease;
}
body.fp-home-refresh-v128 .fp-home-product-card:hover .fp-home-product-card__img{
  transform:scale(1.025);
}
body.fp-home-refresh-v128 .fp-home-product-card__body{
  position:relative;
  flex:1 1 auto;
  min-height:122px;
  padding:17px 43px 18px 17px;
  border-top:1px solid #eef0f2;
}
body.fp-home-refresh-v128 .fp-home-product-card__name{
  margin:0 0 7px;
  color:#101827;
  font-family:inherit;
  font-size:15.5px;
  line-height:1.24;
  font-weight:900;
  letter-spacing:.03em;
  text-transform:uppercase;
}
body.fp-home-refresh-v128 .fp-home-product-card__summary{
  display:-webkit-box;
  overflow:hidden;
  margin:0;
  color:#64748b;
  font-size:12.5px;
  line-height:1.45;
  -webkit-box-orient:vertical;
  -webkit-line-clamp:2;
}
body.fp-home-refresh-v128 .fp-home-product-card__arrow{
  position:absolute;
  right:11px;
  bottom:16px;
  width:30px;
  height:30px;
  display:flex;
  align-items:center;
  justify-content:center;
  border:1px solid rgba(200,31,38,.2);
  border-radius:999px;
  color:#c81f26;
  font-size:16px;
  line-height:1;
  transition:background .18s ease,color .18s ease,transform .18s ease;
}
body.fp-home-refresh-v128 .fp-home-product-card:hover .fp-home-product-card__arrow{
  background:#c81f26;
  color:#fff;
  transform:translateX(1px);
}

/* All main Home titles use the same full-size hierarchy. */
body.fp-home-refresh-v128 .fp-home-products .fp-home-section-header__title h2,
body.fp-home-refresh-v128 .fp-home-academy .fp-home-section-header__title h2,
body.fp-home-refresh-v128 .fp-home-why .fp-home-section-header__title h2,
body.fp-home-refresh-v128 .fp-home-brands .fp-home-section-header__title h2{
  margin:0;
  font-family:inherit;
  font-size:clamp(32px,3vw,40px)!important;
  line-height:1.05!important;
  font-weight:900!important;
  letter-spacing:.045em!important;
  color:#081225!important;
  text-transform:uppercase;
}

/* Compact the vertical rhythm between every current Home section. */
body.fp-home-refresh-v128.home .fp-home-hero-slider + .fp-hero-media{
  padding-top:18px!important;
}
body.fp-home-refresh-v128 .fp-hero-media{
  padding-top:18px!important;
  padding-bottom:0!important;
}
body.fp-home-refresh-v128 .fp-home-academy.fp-home-section-pad{
  padding:18px 0 19px!important;
}
body.fp-home-refresh-v128 .fp-home-academy .mb-10{
  margin-bottom:16px!important;
}
body.fp-home-refresh-v128 .fp-home-why{
  padding:18px 0 20px!important;
}
body.fp-home-refresh-v128 .fp-home-brands{
  padding:18px 0 20px!important;
}
body.fp-home-refresh-v128 .fp-home-brands__heading,
body.fp-home-refresh-v128 .fp-home-refresh-heading{
  margin-bottom:16px!important;
}
body.fp-home-refresh-v128 .fp-home-stats{
  padding:16px 0!important;
}
body.fp-home-refresh-v128 .fp-home-ready{
  padding:20px 0 22px!important;
}

@media (max-width:960px){
  body.fp-home-refresh-v128 .fp-home-products__header{
    align-items:flex-start;
    flex-wrap:wrap;
  }
  body.fp-home-refresh-v128 .fp-home-products__head-actions{
    width:100%;
    justify-content:flex-end;
    padding-left:0;
  }
}
@media (max-width:767px){
  body.fp-home-refresh-v128 .fp-home-products,
  body.fp-home-refresh-v128 .fp-home-academy.fp-home-section-pad,
  body.fp-home-refresh-v128 .fp-home-why,
  body.fp-home-refresh-v128 .fp-home-brands{
    padding-top:18px!important;
    padding-bottom:20px!important;
  }
  body.fp-home-refresh-v128 .fp-home-ready{
    padding:22px 0 24px!important;
  }
  body.fp-home-refresh-v128 .fp-home-products__viewport{
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    scrollbar-width:none;
    -webkit-overflow-scrolling:touch;
  }
  body.fp-home-refresh-v128 .fp-home-products__viewport::-webkit-scrollbar{
    display:none;
  }
  body.fp-home-refresh-v128 .fp-home-product-card{
    width:66%;
    min-width:66%;
    max-width:none;
    flex-basis:66%;
    scroll-snap-align:start;
  }
  body.fp-home-refresh-v128 .fp-home-product-card__media{
    height:220px;
  }
  body.fp-home-refresh-v128 .fp-home-products .fp-home-section-header__title h2,
  body.fp-home-refresh-v128 .fp-home-academy .fp-home-section-header__title h2,
  body.fp-home-refresh-v128 .fp-home-why .fp-home-section-header__title h2,
  body.fp-home-refresh-v128 .fp-home-brands .fp-home-section-header__title h2{
    font-size:clamp(27px,7vw,34px)!important;
  }
}
@media (max-width:520px){
  body.fp-home-refresh-v128 .fp-home-product-card{
    width:78%;
    min-width:78%;
    flex-basis:78%;
  }
}
body.fp-home-refresh-v128 .fp-home-ready__title{
  font-size:clamp(32px,3vw,40px)!important;
  line-height:1.05!important;
  letter-spacing:.045em!important;
}
@media (max-width:767px){
  body.fp-home-refresh-v128 .fp-home-ready__title{
    font-size:clamp(27px,7vw,34px)!important;
  }
}

/* ---------------------------------------------------------
   v1.2.35 - restore original Featured Products presentation
--------------------------------------------------------- */
body.fp-home-refresh-v128 .fp-featured{
  padding:18px 0 20px!important;
  background:#fff;
}
body.fp-home-refresh-v128 .fp-featured .fp-home-section-header{
  margin-bottom:16px!important;
  min-height:64px;
}
body.fp-home-refresh-v128 .fp-featured .fp-home-section-header__title h2{
  margin:0;
  font-family:inherit;
  font-size:clamp(32px,3vw,40px)!important;
  line-height:1.05!important;
  font-weight:900!important;
  letter-spacing:.045em!important;
  color:#081225!important;
  text-transform:uppercase;
}
body.fp-home-refresh-v128 .fp-featured__catalog-cta{
  margin-top:22px!important;
}

/* Requested 1:1 media relationship for product cards. */
body.fp-home-refresh-v128 .fp-card__media{
  aspect-ratio:4 / 4!important;
}

/* Keep the complete Home tighter regardless of the saved section order. */
body.fp-home-refresh-v128 .fp-featured,
body.fp-home-refresh-v128 .fp-home-academy.fp-home-section-pad,
body.fp-home-refresh-v128 .fp-home-why,
body.fp-home-refresh-v128 .fp-home-brands{
  padding-top:16px!important;
  padding-bottom:18px!important;
}
body.fp-home-refresh-v128 .fp-home-stats{
  padding-top:14px!important;
  padding-bottom:14px!important;
}
body.fp-home-refresh-v128 .fp-home-ready{
  padding-top:18px!important;
  padding-bottom:20px!important;
}
body.fp-home-refresh-v128 .fp-hero-media{
  padding-top:14px!important;
  padding-bottom:0!important;
}

@media (max-width:767px){
  body.fp-home-refresh-v128 .fp-featured .fp-home-section-header__title h2{
    font-size:clamp(27px,7vw,34px)!important;
  }
  body.fp-home-refresh-v128 .fp-featured,
  body.fp-home-refresh-v128 .fp-home-academy.fp-home-section-pad,
  body.fp-home-refresh-v128 .fp-home-why,
  body.fp-home-refresh-v128 .fp-home-brands{
    padding-top:16px!important;
    padding-bottom:18px!important;
  }
}

/* ---------------------------------------------------------
   v1.2.36 - Featured Products carousel + editable icon sections
--------------------------------------------------------- */

/* Featured Products: title + CTA + controls share the same header line. */
body.fp-home-refresh-v128 .fp-featured__header{
  min-height:64px;
  display:flex;
  align-items:flex-end;
  gap:18px;
  margin-bottom:16px!important;
}
body.fp-home-refresh-v128 .fp-featured__header .fp-home-section-header__title{
  flex:1 1 auto;
  min-width:0;
}
body.fp-home-refresh-v128 .fp-featured__head-actions{
  position:relative;
  z-index:3;
  flex:0 0 auto;
  display:flex;
  align-items:center;
  gap:12px;
  margin-left:auto;
  padding-left:16px;
  background:#fff;
}
body.fp-home-refresh-v128 .fp-featured__all{
  font-size:11.5px;
}
body.fp-home-refresh-v128 .fp-home-carousel-arrow:disabled{
  opacity:.32;
  cursor:default;
  transform:none;
}

/* Desktop and mobile both use the same horizontal product carousel. */
body.fp-home-refresh-v128 .fp-featured__viewport{
  width:100%;
  overflow:hidden;
  outline:none;
  padding:3px 1px 10px;
}
body.fp-home-refresh-v128 .fp-featured__grid.fp-featured__track{
  display:flex!important;
  flex-wrap:nowrap!important;
  align-items:stretch;
  width:max-content!important;
  max-width:none!important;
  min-width:0;
  overflow:visible!important;
  gap:14px!important;
  padding:0!important;
  scroll-snap-type:none;
}
body.fp-home-refresh-v128 .fp-featured__track > .fp-product-card{
  width:220px!important;
  min-width:220px!important;
  max-width:220px!important;
  flex:0 0 220px!important;
  scroll-snap-align:start;
  box-sizing:border-box;
}

/* Requested 4/4 image relationship. */
body.fp-home-refresh-v128 .fp-featured .fp-card__media,
body.fp-home-refresh-v128 .fp-card__media{
  aspect-ratio:4 / 4!important;
}
body.fp-home-refresh-v128 .fp-featured .fp-card__media img{
  width:100%;
  height:100%;
  object-fit:contain;
}

/* Brands: reduce horizontal whitespace between neighboring logos. */
body.fp-home-refresh-v128 .fp-home-brands__group{
  gap:40px!important;
  padding-right:40px!important;
}
body.fp-home-refresh-v128 .fp-home-brand-logo{
  width:160px;
  flex-basis:160px;
}
body.fp-home-refresh-v128 .fp-home-brand-logo__img{
  max-width:154px;
}

/* Why Partner: icon above copy, significantly larger icon and text. */
body.fp-home-refresh-v128 .fp-home-why__grid{
  gap:18px;
}
body.fp-home-refresh-v128 .fp-home-why-card{
  display:flex;
  flex-direction:column;
  align-items:flex-start;
  justify-content:flex-start;
  gap:14px;
  min-height:210px;
  padding:26px 28px 28px;
}
body.fp-home-refresh-v128 .fp-home-why-card__icon{
  width:82px!important;
  height:82px!important;
  flex:0 0 82px!important;
  display:flex;
  align-items:center!important;
  justify-content:flex-start;
  margin:0;
}
body.fp-home-refresh-v128 .fp-home-why-card__icon svg,
body.fp-home-refresh-v128 .fp-home-why-card__icon-img{
  width:76px!important;
  height:76px!important;
  max-width:76px;
  max-height:76px;
  object-fit:contain;
}
body.fp-home-refresh-v128 .fp-home-why-card__copy{
  width:100%;
  padding-top:0!important;
}
body.fp-home-refresh-v128 .fp-home-why-card__title{
  margin:0 0 8px;
  font-size:18px!important;
  line-height:1.28!important;
  letter-spacing:.025em!important;
}
body.fp-home-refresh-v128 .fp-home-why-card__text{
  font-size:16px!important;
  line-height:1.62!important;
}

/* Company facts: uploaded icon above the text, with larger typography. */
body.fp-home-refresh-v128 .fp-home-stats{
  padding:18px 0!important;
}
body.fp-home-refresh-v128 .fp-home-stat{
  min-height:150px;
  display:flex;
  flex-direction:column;
  align-items:center;
  justify-content:center;
  gap:10px;
  padding:18px 20px;
  text-align:center;
}
body.fp-home-refresh-v128 .fp-home-stat__icon{
  width:66px!important;
  height:66px!important;
  flex:0 0 66px!important;
  display:flex;
  align-items:center;
  justify-content:center;
}
body.fp-home-refresh-v128 .fp-home-stat__icon svg,
body.fp-home-refresh-v128 .fp-home-stat__icon-img{
  width:62px!important;
  height:62px!important;
  max-width:62px;
  max-height:62px;
  object-fit:contain;
}
body.fp-home-refresh-v128 .fp-home-stat__copy{
  width:100%;
}
body.fp-home-refresh-v128 .fp-home-stat__value{
  font-size:31px!important;
  line-height:1.02;
}
body.fp-home-refresh-v128 .fp-home-stat--textual .fp-home-stat__value{
  max-width:none;
  font-size:20px!important;
  line-height:1.12;
}
body.fp-home-refresh-v128 .fp-home-stat__label{
  margin-top:6px;
  font-size:14px!important;
  line-height:1.25;
}
body.fp-home-refresh-v128 .fp-home-stat__text{
  margin-top:5px;
  font-size:12.5px!important;
  line-height:1.45;
}

@media (max-width:960px){
  body.fp-home-refresh-v128 .fp-featured__header{
    align-items:flex-start;
    flex-wrap:wrap;
  }
  body.fp-home-refresh-v128 .fp-featured__head-actions{
    width:100%;
    justify-content:flex-end;
    padding-left:0;
  }
}

@media (max-width:767px){
  body.fp-home-refresh-v128 .fp-featured__viewport{
    overflow-x:auto;
    scroll-snap-type:x mandatory;
    scrollbar-width:none;
    -webkit-overflow-scrolling:touch;
  }
  body.fp-home-refresh-v128 .fp-featured__viewport::-webkit-scrollbar{
    display:none;
  }
  body.fp-home-refresh-v128 .fp-featured__track > .fp-product-card{
    width:72%!important;
    min-width:72%!important;
    max-width:72%!important;
    flex-basis:72%!important;
  }
  body.fp-home-refresh-v128 .fp-home-why-card{
    min-height:0;
  }
  body.fp-home-refresh-v128 .fp-home-why-card__icon{
    width:72px!important;
    height:72px!important;
    flex-basis:72px!important;
  }
  body.fp-home-refresh-v128 .fp-home-why-card__icon svg,
  body.fp-home-refresh-v128 .fp-home-why-card__icon-img{
    width:66px!important;
    height:66px!important;
  }
  body.fp-home-refresh-v128 .fp-home-why-card__title{
    font-size:17px!important;
  }
  body.fp-home-refresh-v128 .fp-home-why-card__text{
    font-size:15px!important;
  }
  body.fp-home-refresh-v128 .fp-home-stat{
    min-height:145px;
  }
}

@media (max-width:520px){
  body.fp-home-refresh-v128 .fp-featured__track > .fp-product-card{
    width:82%!important;
    min-width:82%!important;
    max-width:82%!important;
    flex-basis:82%!important;
  }
  body.fp-home-refresh-v128 .fp-featured__head-actions{
    justify-content:space-between;
    gap:10px;
  }
  body.fp-home-refresh-v128 .fp-featured__all{
    white-space:normal;
  }
}


/* ---------------------------------------------------------
   v1.2.38 - Home heading protection + corrected action arrows
--------------------------------------------------------- */
/* SEO H1 remains semantic but can never replace a visible Home section title. */
.fp-home-seo-h1{
  position:absolute!important;
  width:1px!important;
  height:1px!important;
  padding:0!important;
  margin:-1px!important;
  overflow:hidden!important;
  clip:rect(0,0,0,0)!important;
  white-space:nowrap!important;
  border:0!important;
}

/* "View more" is a text action with a simple arrow, not a third carousel button. */
body.fp-home-refresh-v128 .fp-home-action-link{
  gap:7px;
  padding:6px 0;
  border-radius:0;
  background:transparent!important;
}
body.fp-home-refresh-v128 .fp-home-action-link__arrow{
  width:18px!important;
  height:18px!important;
  display:inline-flex;
  align-items:center;
  justify-content:center;
  border:0!important;
  border-radius:0!important;
  background:transparent!important;
  box-shadow:none!important;
  color:var(--fp-home-red,#C81F26);
}
body.fp-home-refresh-v128 .fp-home-action-link__arrow svg{
  width:18px;
  height:18px;
  display:block;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}
body.fp-home-refresh-v128 .fp-home-action-link:hover .fp-home-action-link__arrow{
  background:transparent!important;
  color:var(--fp-home-red,#C81F26)!important;
  transform:translateX(3px);
}

/* Carousel navigation stays circular and uses optically centered SVG chevrons. */
body.fp-home-refresh-v128 .fp-home-carousel-arrow{
  padding:0!important;
  line-height:1;
}
body.fp-home-refresh-v128 .fp-home-carousel-arrow svg{
  width:16px;
  height:16px;
  display:block;
  fill:none;
  stroke:currentColor;
  stroke-width:1.8;
  stroke-linecap:round;
  stroke-linejoin:round;
}
body.fp-home-refresh-v128 .fp-featured__head-actions,
body.fp-home-refresh-v128 .fp-home-brands__head-actions{
  gap:14px;
}
